:root {
  --bg: #f2ede2;
  --paper: rgba(251, 247, 240, 0.88);
  --paper-strong: rgba(255, 252, 248, 0.94);
  --nav-bg: rgba(225, 236, 245, 0.88);
  --accent: #9d6cc0;
  --accent-strong: #7a4fa0;
  --accent-soft: rgba(157, 108, 192, 0.14);
  --text: #5b5a5a;
  --heading: #2f3035;
  --muted: #77747a;
  --border: rgba(66, 53, 44, 0.12);
  --widget-border: rgba(66, 53, 44, 0.08);
  --footer-bg: #191716;
  --surface-shadow: 0 24px 60px rgba(53, 38, 26, 0.12);
  --soft-shadow: 0 16px 30px rgba(53, 38, 26, 0.08);
  --container: 1120px;
  --transition: 240ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text);
  background-color: var(--bg);
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.62), rgba(246, 239, 228, 0.8)),
    var(--bg-image, url("https://norrisrealestategroup.com/wp-content/uploads/2026/01/old-paper-2025-10-28-21-15-00-utc-scaled.jpg"));
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  font-family: "Lora", serif;
  font-size: 15px;
  line-height: 1.9;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

img,
iframe {
  display: block;
  max-width: 100%;
}

img {
  height: auto;
}

a {
  color: #35353b;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition), opacity var(--transition), transform var(--transition), box-shadow var(--transition);
}

a:hover,
a:focus-visible {
  color: var(--accent-strong);
}

button,
input,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid rgba(157, 108, 192, 0.38);
  outline-offset: 2px;
}

.cfaa544 {
  width: min(var(--container), calc(100% - 36px));
  margin: 0 auto;
}

.cfaa511 {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cfaa511:focus {
  left: 16px;
  top: 14px;
  width: auto;
  height: auto;
  padding: 12px 16px;
  background: #fff;
  color: #1d1e24;
  z-index: 100000;
  border-radius: 10px;
  box-shadow: var(--soft-shadow);
}

.cfaa51 {
  position: relative;
}

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), #d4a6f1);
  transform: scaleX(0);
  transform-origin: left center;
  z-index: 9999;
}

/* Header */
.cfaa524 {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
}

.cfaa535 {
  background: var(--nav-bg);
  border-bottom: 1px solid rgba(66, 53, 44, 0.08);
  box-shadow: 0 8px 24px rgba(49, 55, 68, 0.06);
}

.cfaa510 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
}

.menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(66, 53, 44, 0.12);
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(53, 38, 26, 0.08);
  color: #3b3940;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  margin: 5px auto;
  border-radius: 999px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  color: #232832;
  text-transform: uppercase;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  position: relative;
}

.nav-menu .cfaa561 a,
.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.72);
}

.nav-search {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
  min-width: 0;
}

.nav-search input {
  width: clamp(170px, 18vw, 196px);
  height: 42px;
  border: 1px solid rgba(66, 53, 44, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.82);
  color: #55525c;
  padding: 0 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-search input::placeholder {
  color: #8b8790;
}

.nav-search button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #5f5a64;
  cursor: pointer;
}

.nav-search button:hover,
.nav-search button:focus-visible {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.64);
}

.nav-search svg {
  width: 18px;
  height: 18px;
}

.cfaa563 {
  padding: 34px 0 0;
  text-align: center;
}

.cfaa59 {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #1f2330;
  font-size: clamp(2rem, 2.5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.cfaa59::before,
.cfaa59::after {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(157, 108, 192, 0.42), transparent);
}

.cfaa543 {
  margin: 28px 0 10px;
  border-bottom: 1px solid rgba(66, 53, 44, 0.12);
}

/* Content */
.cfaa558 {
  padding: 28px 0 64px;
}

.cfaa534 {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 315px;
  gap: 38px;
  align-items: start;
}

.cfaa517,
.sidebar {
  min-width: 0;
}

.post-card,
.widget {
  background: linear-gradient(180deg, var(--paper-strong), rgba(252, 249, 242, 0.82));
  border: 1px solid rgba(66, 53, 44, 0.08);
  border-radius: 28px;
  box-shadow: var(--surface-shadow);
  backdrop-filter: blur(10px);
}

.post-card {
  padding: 30px clamp(20px, 4vw, 42px) 38px;
}

.cfaa546 {
  text-align: center;
}

.entry-title {
  margin: 0;
  color: var(--heading);
  font-family: "Lora", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-style: italic;
  font-weight: 400;
  line-height: 1.18;
  letter-spacing: -0.025em;
}

.entry-meta-bar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0 8px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(157, 108, 192, 0.1);
  color: #594f67;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.meta-chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(157, 108, 192, 0.12);
}

.entry-content {
  margin-top: 24px;
}

.entry-content p {
  margin: 0 0 18px;
  font-size: 1.06rem;
}

.entry-content strong {
  color: #46424f;
  font-weight: 700;
}

.entry-content h2 {
  margin: 34px 0 16px;
  color: #2d3138;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.45rem, 2vw, 1.8rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

.entry-image {
  margin: 24px 0 28px;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--soft-shadow);
  position: relative;
}

.entry-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(22, 18, 16, 0.08));
  pointer-events: none;
}

.entry-image img {
  width: 100%;
  transition: transform 600ms ease;
}

.entry-image:hover img {
  transform: scale(1.03);
}


.entry-content .cfaa553 {
  margin: 28px 0 34px;
}

.entry-content .cfaa553 figure,
.entry-content .cfaa553 .cfaa531 {
  margin: 0 auto;
  max-width: 1024px;
}

.entry-content .cfaa553 img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  box-shadow: var(--soft-shadow);
}

.cfaa521 {
  font: inherit;
  color: inherit;
}

/* Sidebar */
.sidebar {
  padding-top: 2px;
}

.widget {
  margin-bottom: 22px;
  overflow: hidden;
  padding: 24px;
}

.widget:last-child {
  margin-bottom: 0;
}

.cfaa557 {
  position: relative;
  margin: 0 0 18px;
  padding-bottom: 14px;
  color: #544f5d;
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.cfaa557::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 44px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), rgba(157, 108, 192, 0.2));
}

.cfaa55,
.cfaa515 {
  margin: -4px 0 16px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.widget ul,
.cfaa532 {
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.96rem;
  line-height: 1.55;
}

.widget li,
.cfaa532 li {
  margin: 0;
  padding: 0 0 12px;
}

.widget li + li,
.cfaa532 li + li {
  border-top: 1px solid var(--widget-border);
  padding-top: 12px;
}

.widget a,
.cfaa532 a {
  color: #403d44;
}

.widget a:hover,
.widget a:focus-visible,
.cfaa532 a:hover,
.cfaa532 a:focus-visible {
  color: var(--accent-strong);
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 14px 24px rgba(53, 38, 26, 0.08);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.cfaa57 {
  display: grid;
  gap: 10px;
}

.cfaa57 button,
.cfaa554 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(157, 108, 192, 0.16);
  border-radius: 14px;
  background: rgba(157, 108, 192, 0.1);
  color: #4c4656;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  box-shadow: 0 8px 18px rgba(157, 108, 192, 0.08);
}

.cfaa57 button:hover,
.cfaa57 button:focus-visible,
.cfaa554:hover,
.cfaa554:focus-visible {
  background: rgba(157, 108, 192, 0.17);
  color: var(--accent-strong);
  transform: translateY(-1px);
}

/* Footer */
.site-footer {
  background: rgba(25, 23, 22, 0.97);
  color: rgba(255, 255, 255, 0.86);
  text-align: center;
  padding: 24px 15px 28px;
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

/* Enhancements */
.back-to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(157, 108, 192, 0.88);
  color: #fff;
  box-shadow: 0 16px 32px rgba(157, 108, 192, 0.28);
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition), background var(--transition);
  z-index: 80;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  background: var(--accent-strong);
}

.toast-stack {
  position: fixed;
  right: 22px;
  bottom: 88px;
  display: grid;
  gap: 10px;
  width: min(360px, calc(100% - 32px));
  z-index: 150;
}

.toast {
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(28, 29, 36, 0.92);
  color: #f5f2f6;
  box-shadow: 0 14px 30px rgba(10, 8, 12, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  gap: 4px;
}

.toast strong {
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.toast span {
  font-size: 14px;
  line-height: 1.55;
}

.cfaa536 {
  border-color: rgba(98, 182, 126, 0.22);
}

.cfaa555 {
  border-color: rgba(214, 105, 105, 0.22);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 560ms ease, transform 560ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Contact */
.cfaa547 {
  padding-top: 28px;
}

.cfaa527 {
  margin-bottom: 20px;
}

.contact-form {
  max-width: 720px;
  margin: 0 auto 0 0;
}

.contact-form .cfaa551 {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  color: #5f5967;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.5;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(66, 53, 44, 0.1);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  color: #3d3941;
  padding: 0 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.contact-form input {
  height: 48px;
}

.contact-form textarea {
  min-height: 198px;
  padding: 14px 16px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 0;
  border-color: rgba(157, 108, 192, 0.4);
  box-shadow: 0 0 0 4px rgba(157, 108, 192, 0.1);
}

.cfaa559 {
  max-width: 320px;
}

.cfaa548 {
  max-width: 720px;
}

.cfaa554 {
  min-width: 210px;
}

/* Responsive */
@media (max-width: 991px) {
  .cfaa534 {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .sidebar {
    max-width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: start;
  }

  .widget {
    margin-bottom: 0;
  }

  .contact-form,
  .cfaa559,
  .cfaa548 {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 1.75;
    background-attachment: scroll;
  }

  .cfaa524 {
    position: sticky;
  }

  .cfaa535 {
    position: relative;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    order: 1;
  }

  .cfaa510 {
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 12px 0;
    gap: 12px;
  }

  .nav-menu {
    order: 3;
    flex: 0 0 100%;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    padding: 0;
    margin: 0;
    transition: max-height 320ms ease, opacity var(--transition), padding var(--transition);
  }

  .nav-menu.is-open {
    max-height: 360px;
    opacity: 1;
    pointer-events: auto;
    padding: 8px 0 2px;
  }

  .nav-menu a {
    justify-content: flex-start;
    width: 100%;
    min-height: 0;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.66);
    box-shadow: 0 8px 20px rgba(53, 38, 26, 0.06);
  }

  .nav-search {
    order: 2;
    margin-left: auto;
  }

  .nav-search input {
    width: min(48vw, 190px);
  }

  .nav-menu.is-open + .nav-search,
  .nav-menu + .nav-search {
    margin-left: auto;
  }

  .cfaa563 {
    padding-top: 24px;
  }

  .cfaa59 {
    font-size: clamp(1.65rem, 7vw, 2.15rem);
  }

  .cfaa59::before,
  .cfaa59::after {
    width: 24px;
  }

  .cfaa543 {
    margin-top: 22px;
  }

  .cfaa558 {
    padding: 18px 0 48px;
  }

  .post-card {
    padding: 22px 18px 26px;
    border-radius: 24px;
  }

  .entry-title {
    font-size: clamp(1.7rem, 8vw, 2.3rem);
  }

  .entry-content h2 {
    font-size: 1.4rem;
  }

  .sidebar {
    grid-template-columns: 1fr;
  }

  .widget {
    padding: 20px;
    border-radius: 22px;
  }

  .back-to-top {
    right: 16px;
    bottom: 16px;
  }

  .toast-stack {
    right: 12px;
    bottom: 80px;
    width: min(360px, calc(100% - 24px));
  }
}

@media (max-width: 576px) {
  .cfaa544 {
    width: min(var(--container), calc(100% - 22px));
  }

  .cfaa510 {
    gap: 10px;
  }

  .menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .menu-toggle span {
    width: 20px;
  }

  .nav-search {
    flex: 1 1 auto;
    justify-content: flex-end;
  }

  .nav-search input {
    width: calc(100% - 50px);
    min-width: 0;
  }

  .cfaa59 {
    gap: 10px;
    font-size: 1.45rem;
  }

  .cfaa59::before,
  .cfaa59::after {
    display: none;
  }

  .entry-title {
    font-size: 1.65rem;
  }

  .entry-content p {
    font-size: 1rem;
  }

  .entry-content h2 {
    font-size: 1.28rem;
  }

  .entry-meta-bar {
    justify-content: flex-start;
  }

  .meta-chip {
    font-size: 10px;
  }

  .video-frame {
    border-radius: 16px;
  }

  .cfaa57 button,
  .cfaa554 {
    width: 100%;
  }
}
.cfaa534{
  display: grid;
  grid-template-columns: 315px minmax(0, 1fr);
  grid-template-areas: "sidebar content";
  gap: 38px;
  align-items: start;
}

.cfaa517{
  grid-area: content;
  min-width: 0;
}

.sidebar{
  grid-area: sidebar;
  min-width: 0;
}

@media (max-width: 991px){
  .cfaa534{
    grid-template-columns: 1fr;
    grid-template-areas:
      "content"
      "sidebar";
    gap: 24px;
  }
}

/* Generated theme override */
:root{
  --wf-accent:#43639f;
  --wf-light-box-1:#f4f6f9;
  --wf-light-box-2:#fbfcfe;
  --wf-light-box-3:#f3f5f9;
  --wf-light-box-4:#fefeff;
  --wf-panel-bg:linear-gradient(145deg,#f4f6f9,#fbfcfe);
  --wf-panel-border:#e8ecf3;
  --wf-panel-shadow:0 20px 56px rgba(67,99,159,0.1);
  --wf-site-title-bg:#f3f5f9;
  --wf-site-title-border:#e8ecf3;
  --wf-search-bg:#fefeff;
  --wf-scroll-start:rgba(67,99,159,0.96);
  --wf-scroll-end:rgba(67,99,159,0.24);
}
body{color:#374253;background-color:#ecf1f8 !important;}
body.custom-background{background-color:#ecf1f8 !important;}
#page.cfaa51,.cfaa524{background:transparent !important;}
#main.wrapper{background:#fff !important;border-color:#e8ecf3 !important;box-shadow:0 18px 42px rgba(67,99,159,0.12);}
#primary.cfaa558,#content,article.page.cfaa556{background:transparent !important;}
.cfaa538 a,.entry-title,.cfaa557,.cfaa54,h1,h2,h3,h4{color:#1b263b;}
a{color:#43639f;}
a:hover,.nav-menu li a:hover,.nav-menu li.current-menu-item a{color:#385386;}
.cfaa540,.cfaa56,.cfaa530{background:#364f7f;color:#ffffff;}
.cfaa530:hover,.cfaa56:hover{background:#43639f;}
.widget,.cfaa549,.cfaa53,main article{border-color:#e8ecf3;background:var(--wf-light-box-1) !important;background-image:none !important;opacity:1 !important;box-shadow:0 12px 28px rgba(67,99,159,0.1);}
.cfaa525,.cfaa520,.cfaa550,.cfaa547,.cfaa552{border-color:#e8ecf3;background:var(--wf-light-box-2) !important;background-image:none !important;opacity:1 !important;box-shadow:0 12px 28px rgba(67,99,159,0.1);}
.cfaa545,#top-bar,#main-nav{border-color:#e8ecf3;background:var(--wf-light-box-3) !important;background-image:none !important;opacity:1 !important;box-shadow:0 12px 28px rgba(67,99,159,0.1);}
article.page,.cfaa539,.cfaa556{border-color:#e8ecf3;background:var(--wf-light-box-4) !important;background-image:none !important;opacity:1 !important;box-shadow:0 12px 28px rgba(67,99,159,0.1);}
#colophon,.cfaa521{background:#2c4067;color:#ffffff;}
.entry-content h2{border-left:4px solid #43639f;padding-left:12px;}
.entry-content .cfaa553{margin:24px 0 28px;}
.entry-content .cfaa553 figure{margin:0 auto;max-width:1024px;}
.entry-content .cfaa553 img{display:block;width:100%;max-width:1024px;height:auto;aspect-ratio:1024 / 683;object-fit:cover;border:4px solid #ffffff;box-shadow:0 8px 22px rgba(0,0,0,.08);}
.cfaa523{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:8px;background:#000;}
.cfaa514{width:min(100%,420px) !important;max-width:100% !important;height:740px !important;aspect-ratio:9 / 16 !important;margin:0 auto;}
.cfaa528 .cfaa523{margin:0 auto;}
.cfaa52{margin:12px 0 0;font-size:14px;}
.cfaa52 a{font-weight:700;text-decoration:underline;}


/* wf-sample-26-theme-vars-start */
:root{--bg:#ecf1f8;--paper:rgba(252,252,254,0.88);--paper-strong:rgba(255,255,255,0.94);--nav-bg:#6f80a0;--nav-bg-alt:#687ca3;--accent:#43639f;--accent-strong:#385386;--accent-soft:rgba(67,99,159,0.14);--text:#374253;--heading:#1b263b;--muted:#8b919b;--border:rgba(232,236,243,0.72);--widget-border:rgba(232,236,243,0.42);--footer-bg:#4f5b72;--wf-s26-nav-text:#f8fafc;--wf-s26-nav-active-bg:rgba(0,0,0,0.16);--wf-s26-nav-active-text:#f8fafc;--wf-s26-footer-text:#f8fafc;--bg-image:url("assets/generated/aurora_forest.jpg?wfbg=ade13b96");}body,body.custom-background{color:var(--text) !important;background:linear-gradient(180deg, rgba(236,241,248,0.18), rgba(236,241,248,0.44)), var(--bg-image) center top / cover fixed no-repeat !important;background-color:var(--bg) !important;}@media (max-width: 860px){body,body.custom-background{background-attachment:scroll !important;}}.cfaa51,.cfaa516,.cfaa519,.cfaa562,.cfaa518{background:transparent !important;}.cfaa535{background:linear-gradient(90deg, var(--nav-bg), var(--nav-bg-alt)) !important;border-bottom:1px solid rgba(67,99,159,0.2) !important;box-shadow:0 14px 34px rgba(67,99,159,0.22) !important;}.nav-menu a,.nav-search button,.menu-toggle,.nav-search input{color:var(--wf-s26-nav-text) !important;}.nav-search input{background:rgba(255,255,255,0.82) !important;border-color:rgba(67,99,159,0.24) !important;}.nav-search button{background:rgba(67,99,159,0.14) !important;border-color:rgba(67,99,159,0.24) !important;color:var(--wf-s26-nav-text) !important;}.menu-toggle{background:rgba(255,255,255,0.24) !important;border-color:rgba(67,99,159,0.2) !important;}.nav-menu .cfaa561 a,.nav-menu a:hover,.nav-menu a:focus-visible{color:var(--wf-s26-nav-active-text) !important;background:var(--wf-s26-nav-active-bg) !important;}.cfaa59{color:#1b263b !important;}.cfaa59::before,.cfaa59::after{background:linear-gradient(90deg, transparent, rgba(67,99,159,0.54), transparent) !important;}.cfaa543{border-bottom-color:rgba(232,236,243,0.64) !important;}.post-card,.widget{background:linear-gradient(180deg, var(--paper-strong), rgba(252,252,254,0.82)) !important;border-color:rgba(232,236,243,0.42) !important;box-shadow:0 18px 40px rgba(67,99,159,0.12) !important;}.entry-title,.entry-content h2,.cfaa557{color:var(--heading) !important;}.cfaa557::after{background:linear-gradient(90deg, var(--accent), rgba(67,99,159,0.2)) !important;}.widget a,.cfaa532 a{color:#2e3746 !important;}.widget a:hover,.widget a:focus-visible{color:var(--accent-strong) !important;}.contact-form label{color:#303a49 !important;}.contact-form input,.contact-form textarea{background:rgba(255,255,255,0.76) !important;border-color:rgba(67,99,159,0.16) !important;color:#2d3644 !important;}.contact-form input:focus,.contact-form textarea:focus{border-color:rgba(67,99,159,0.42) !important;box-shadow:0 0 0 4px rgba(67,99,159,0.12) !important;}.cfaa554,.cfaa57 button{background:rgba(67,99,159,0.1) !important;border-color:rgba(67,99,159,0.18) !important;color:#2d3644 !important;}.cfaa554:hover,.cfaa554:focus-visible,.cfaa57 button:hover,.cfaa57 button:focus-visible{background:rgba(67,99,159,0.18) !important;color:#385386 !important;}.video-frame{background:#000 !important;}.video-frame iframe,.cfaa523{width:100% !important;height:100% !important;border:0 !important;}.site-footer{background:var(--footer-bg) !important;color:var(--wf-s26-footer-text) !important;}.site-footer .cfaa521,.site-footer .cfaa521 *{color:var(--wf-s26-footer-text) !important;opacity:1 !important;visibility:visible !important;}.entry-image img{display:block;width:100%;height:auto;aspect-ratio:1024 / 683;object-fit:cover;}
/* wf-sample-26-theme-vars-end */
/* WF final opaque text container override start */
:root{--wf-final-box-1:#f5f3ff;--wf-final-box-2:#f7fee7;--wf-final-box-3:#f4f4f5;--wf-final-box-4:#f8fafc;--wf-final-text:#334155;--wf-final-title:#111827;--wf-final-muted:#475569;--wf-final-border:rgba(15,23,42,.14);--wf-final-shadow:rgba(15,23,42,.10);}\nhtml body article,html body main article,html body main > section,html body main > div,html body [role="main"] article,html body [role="main"] section,html body [role="main"] > div,html body :where(article,section,div,aside)[class*="article"],html body :where(article,section,div,aside)[class*="Article"],html body :where(article,section,div,aside)[class*="content"],html body :where(article,section,div,aside)[class*="Content"],html body :where(article,section,div,aside)[class*="entry"],html body :where(article,section,div,aside)[class*="Entry"],html body :where(article,section,div,aside)[class*="post"],html body :where(article,section,div,aside)[class*="Post"],html body :where(article,section,div,aside)[class*="card"],html body :where(article,section,div,aside)[class*="Card"],html body :where(article,section,div,aside)[class*="panel"],html body :where(article,section,div,aside)[class*="Panel"],html body :where(article,section,div,aside)[class*="box"],html body :where(article,section,div,aside)[class*="Box"],html body :where(article,section,div,aside)[class*="widget"],html body :where(article,section,div,aside)[class*="Widget"],html body .content-card,html body .article-card,html body .post-card,html body .page-card,html body .contact-card,html body .contact-panel,html body .widget,html body section.widget,html body aside.widget,html body .sidebar .widget{background:var(--wf-final-box-1) !important;background-color:var(--wf-final-box-1) !important;background-image:none !important;opacity:1 !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;color:var(--wf-final-text) !important;border:1px solid var(--wf-final-border) !important;box-shadow:0 18px 42px var(--wf-final-shadow) !important;}\nhtml body main > section:nth-of-type(2n),html body main > div:nth-of-type(2n),html body article:nth-of-type(2n),html body :where(article,section,div,aside)[class*="card"]:nth-of-type(2n),html body :where(article,section,div,aside)[class*="panel"]:nth-of-type(2n),html body :where(article,section,div,aside)[class*="content"]:nth-of-type(2n),html body .widget:nth-of-type(2n){background:var(--wf-final-box-2) !important;background-color:var(--wf-final-box-2) !important;background-image:none !important;}\nhtml body main > section:nth-of-type(3n),html body main > div:nth-of-type(3n),html body article:nth-of-type(3n),html body :where(article,section,div,aside)[class*="card"]:nth-of-type(3n),html body :where(article,section,div,aside)[class*="panel"]:nth-of-type(3n),html body :where(article,section,div,aside)[class*="content"]:nth-of-type(3n),html body .widget:nth-of-type(3n){background:var(--wf-final-box-3) !important;background-color:var(--wf-final-box-3) !important;background-image:none !important;}\nhtml body article.page,html body .post,html body .hentry{background:var(--wf-final-box-4) !important;background-color:var(--wf-final-box-4) !important;background-image:none !important;opacity:1 !important;color:var(--wf-final-text) !important;}\nhtml body article :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body main :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body :where(article,section,div,aside)[class*="card"] :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text),html body :where(article,section,div,aside)[class*="panel"] :where(.entry-content,.post-content,.article-body,.article-content,.content,.copy,.text){background:transparent !important;background-image:none !important;opacity:1 !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;}\nhtml body article::before,html body article::after,html body main > section::before,html body main > section::after,html body main > div::before,html body main > div::after,html body :where(article,section,div,aside)[class*="card"]::before,html body :where(article,section,div,aside)[class*="card"]::after,html body :where(article,section,div,aside)[class*="panel"]::before,html body :where(article,section,div,aside)[class*="panel"]::after,html body :where(article,section,div,aside)[class*="content"]::before,html body :where(article,section,div,aside)[class*="content"]::after{background:transparent !important;background-image:none !important;opacity:0 !important;box-shadow:none !important;backdrop-filter:none !important;-webkit-backdrop-filter:none !important;pointer-events:none !important;}\nhtml body article :where(p,li,span,div,blockquote,small,strong,em),html body main > section :where(p,li,span,div,blockquote,small,strong,em),html body main > div :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="card"] :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="panel"] :where(p,li,span,div,blockquote,small,strong,em),html body :where(article,section,div,aside)[class*="content"] :where(p,li,span,div,blockquote,small,strong,em),html body .widget :where(p,li,span,div,blockquote,small,strong,em){color:var(--wf-final-text) !important;}\nhtml body article :where(h1,h2,h3,h4,h5,h6),html body main > section :where(h1,h2,h3,h4,h5,h6),html body main > div :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="card"] :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="panel"] :where(h1,h2,h3,h4,h5,h6),html body :where(article,section,div,aside)[class*="content"] :where(h1,h2,h3,h4,h5,h6),html body .widget :where(h1,h2,h3,h4,h5,h6){color:var(--wf-final-title) !important;}\nhtml body article a,html body main > section a,html body main > div a,html body :where(article,section,div,aside)[class*="card"] a,html body :where(article,section,div,aside)[class*="panel"] a,html body :where(article,section,div,aside)[class*="content"] a,html body .widget a{color:var(--wf-accent, var(--accent, #2563eb)) !important;}\nhtml body article small,html body article .muted,html body main > section small,html body main > section .muted,html body main > div small,html body main > div .muted,html body .widget small,html body .widget .muted{color:var(--wf-final-muted) !important;}\n/* WF final opaque text container override end */
