: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;
}

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

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

.c2fad2: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);
}

.c2fad14 {
  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 */
.c2fad11 {
  position: sticky;
  top: 0;
  z-index: 120;
  backdrop-filter: blur(12px);
}

.c2fad12 {
  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);
}

.c2fad18 {
  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 .c2fad24 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;
}

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

.c2fad47 {
  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;
}

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

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

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

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

.c2fad27,
.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;
}

.c2fad31 {
  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 .c2fad26 {
  margin: 28px 0 34px;
}

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

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

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

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

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

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

.c2fad34 {
  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;
}

.c2fad34::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));
}

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

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

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

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

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

.widget a:hover,
.widget a:focus-visible,
.c2fad21 a:hover,
.c2fad21 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;
}

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

.c2fad51 button,
.c2fad1 {
  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);
}

.c2fad51 button:hover,
.c2fad51 button:focus-visible,
.c2fad1:hover,
.c2fad1: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;
}

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

.c2fad29 {
  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 */
.c2fad8 {
  padding-top: 28px;
}

.c2fad41 {
  margin-bottom: 20px;
}

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

.contact-form .c2fad22 {
  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);
}

.c2fad42 {
  max-width: 320px;
}

.c2fad25 {
  max-width: 720px;
}

.c2fad1 {
  min-width: 210px;
}

/* Responsive */
@media (max-width: 991px) {
  .c2fad40 {
    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,
  .c2fad42,
  .c2fad25 {
    max-width: 100%;
  }
}

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

  .c2fad11 {
    position: sticky;
  }

  .c2fad12 {
    position: relative;
  }

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

  .c2fad18 {
    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;
  }

  .c2fad46 {
    padding-top: 24px;
  }

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

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

  .c2fad32 {
    margin-top: 22px;
  }

  .c2fad30 {
    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) {
  .c2fad6 {
    width: min(var(--container), calc(100% - 22px));
  }

  .c2fad18 {
    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;
  }

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

  .c2fad47::before,
  .c2fad47::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;
  }

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

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

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

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

/* Generated theme override */
:root{
  --wf-accent:#3e797d;
  --wf-panel-bg:linear-gradient(145deg,rgba(21,43,50,0.9),rgba(14,31,38,0.96));
  --wf-panel-border:rgba(97,145,148,0.32);
  --wf-panel-shadow:0 20px 56px rgba(6,12,13,0.34);
  --wf-site-title-bg:rgba(16,30,31,0.44);
  --wf-site-title-border:rgba(97,145,148,0.28);
  --wf-search-bg:rgba(20,39,40,0.42);
  --wf-scroll-start:rgba(62,121,125,0.96);
  --wf-scroll-end:rgba(93,142,146,0.58);
}
body{color:#354548;background-color:#eaf2f3 !important;}
body.custom-background{background-color:#eaf2f3 !important;}
#page.c2fad14,.c2fad11{background:transparent !important;}
#main.wrapper{background:#fff !important;border-color:#ecf2f2 !important;box-shadow:0 18px 42px rgba(62,121,125,0.12);}
#primary.c2fad30,#content,article.page.hentry{background:transparent !important;}
.c2fad4 a,.entry-title,.c2fad34,.c2fad53,h1,h2,h3,h4{color:#18292c;}
a{color:#3e797d;}
a:hover,.nav-menu li a:hover,.nav-menu li.current-menu-item a{color:#35686c;}
.c2fad3,.c2fad10,.c2fad48{background:#2f5c5f;color:#ffffff;}
.c2fad48:hover,.c2fad10:hover{background:#3e797d;}
.widget{border-color:#ecf2f2;background:#fafcfc !important;box-shadow:0 12px 28px rgba(62,121,125,0.1);}
#colophon,.c2fad16{background:#264b4e;color:#ffffff;}
.entry-content h2{border-left:4px solid #3e797d;padding-left:12px;}
.entry-content .c2fad26{margin:24px 0 28px;}
.entry-content .c2fad26 figure{margin:0 auto;max-width:1024px;}
.entry-content .c2fad26 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);}
.c2fad44{display:block;width:100%;max-width:100%;aspect-ratio:560 / 315;height:auto;min-height:240px;border:0;border-radius:8px;background:#000;}
.c2fad36 .c2fad44{margin:0 auto;}
.c2fad45{margin:12px 0 0;font-size:14px;}
.c2fad45 a{font-weight:700;text-decoration:underline;}
