
    /* Global Design Variables */
    :root {
      --ink: #17201a;
      --muted: #5f6b62;
      --light: #f6f4ee;
      --soft: #e8e1d4;
      --field: #5f7a55;
      --field-dark: #385134;
      --sand: #d8c8aa;
      --white: #ffffff;
      --line: rgba(23, 32, 26, 0.12);
      --shadow: 0 24px 70px rgba(23, 32, 26, 0.14);
      --radius: 24px;
      --max: 1180px;
    }

    /* Global Reset and Base Styles */
    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--ink);
      background: var(--light);
      line-height: 1.65;
    }

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

    a {
      color: inherit;
      text-decoration: none;
    }

    /* Optional Top Disclosure Bar */
    .top-disclosure {
      background: var(--ink);
      color: rgba(255, 255, 255, .82);
      font-size: 13px;
      letter-spacing: .02em;
      text-align: center;
      padding: 8px 18px;
    }

    /* Header and Navigation */
    #site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
    }

    header {
      position: relative;
      width: 100%;
      background: rgba(246, 244, 238, 0.92);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }

    .nav,
    .site-nav {
      width: 100%;
      max-width: var(--max);
      margin: 0 auto;
      padding: 14px clamp(20px, 3vw, 36px);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      column-gap: clamp(14px, 1.8vw, 28px);
      position: relative;
    }

    .site-nav > nav {
      display: none;
    }

    .site-nav-center {
      display: none;
      grid-column: 2;
      justify-self: center;
      text-align: center;
      min-width: 0;
      max-width: 100%;
      padding: 0 12px;
    }

    .site-nav-tagline {
      margin: 0;
      font-size: clamp(14px, 1.15vw, 17px);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.25;
      color: var(--field-dark);
    }

    .site-nav-contact {
      margin-top: 7px;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 6px 10px;
      font-size: 13px;
      font-weight: 600;
      color: var(--muted);
    }

    .site-nav-contact a {
      color: var(--ink);
      white-space: nowrap;
      transition: color 0.2s ease;
    }

    .site-nav-contact a:hover,
    .site-nav-contact a:focus-visible {
      color: var(--field-dark);
    }

    .site-nav-contact-sep {
      color: var(--sand);
      user-select: none;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      flex-shrink: 0;
    }

    .brand-text {
      min-width: 0;
    }

    .mark {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: var(--ink);
      color: white;
      display: grid;
      place-items: center;
      font-weight: 800;
      letter-spacing: -0.06em;
    }

    .brand-logo {
      display: block;
      height: 80px;
      width: auto;
      max-width: 360px;
      object-fit: contain;
      flex-shrink: 0;
    }

    .brand-text strong {
      display: block;
      font-size: 15px;
      letter-spacing: -0.03em;
      line-height: 1.1;
    }

    .brand-text span {
      display: block;
      color: var(--muted);
      font-size: 11px;
      margin-top: 2px;
      line-height: 1.25;
    }

    nav > ul {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      gap: clamp(14px, 1.6vw, 24px);
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--muted);
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .01em;
      white-space: nowrap;
    }

    nav > ul a {
      white-space: nowrap;
    }

    .nav-has-dropdown {
      position: relative;
    }

    .nav-has-dropdown > a::after {
      content: "";
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-left: 6px;
      border-right: 2px solid currentColor;
      border-bottom: 2px solid currentColor;
      transform: translateY(-2px) rotate(45deg);
      opacity: 0.7;
    }

    .nav-dropdown {
      display: flex;
      flex-direction: column;
      gap: 0;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 230px;
      margin: 0;
      padding: 8px 0;
      list-style: none;
      background: rgba(255, 255, 255, 0.98);
      border: none;
      border-radius: 14px;
      box-shadow: var(--shadow);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.2s ease, visibility 0.2s ease;
      z-index: 40;
    }

    .nav-dropdown > li {
      background: none;
      border: none;
      border-radius: 0;
      box-shadow: none;
    }

    .nav-dropdown a {
      position: relative;
      display: block;
      padding: 11px 18px 11px 18px;
      border-radius: 0;
      color: var(--ink);
      white-space: nowrap;
      transition: padding-left 0.2s ease, background 0.2s ease;
    }

    .nav-dropdown a::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      bottom: 8px;
      width: 4px;
      background: var(--field-dark);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .nav-dropdown a:hover,
    .nav-dropdown a:focus-visible {
      padding-left: 28px;
      background: rgba(23, 32, 26, 0.04);
      color: var(--ink);
    }

    .nav-dropdown a:hover::before,
    .nav-dropdown a:focus-visible::before {
      opacity: 1;
    }

    .nav-has-dropdown:hover .nav-dropdown,
    .nav-has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-menu-group {
      display: flex;
      flex-direction: column;
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.55);
      border: 1px solid var(--line);
      overflow: hidden;
      flex-shrink: 0;
      transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .mobile-menu-group[open] {
      background: rgba(255, 255, 255, 0.92);
      border-color: rgba(56, 81, 52, 0.18);
      box-shadow: 0 10px 28px rgba(23, 32, 26, 0.07);
      overflow: visible;
    }

    .mobile-menu-group summary {
      display: block;
      padding: 15px 18px;
      font-weight: 700;
      font-size: 15px;
      letter-spacing: 0.01em;
      color: var(--ink);
      cursor: pointer;
      list-style: none;
      transition: color 0.2s ease, background 0.2s ease;
    }

    .mobile-menu-group[open] summary {
      color: var(--field-dark);
      border-bottom: 1px solid var(--line);
      background: rgba(216, 200, 170, 0.12);
    }

    .mobile-menu-group summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu-group summary::after {
      content: "";
      float: right;
      width: 8px;
      height: 8px;
      margin-top: 4px;
      border-right: 2px solid var(--field);
      border-bottom: 2px solid var(--field);
      transform: rotate(45deg);
      transition: transform 0.25s ease, border-color 0.2s ease;
    }

    .mobile-menu-group[open] summary::after {
      transform: rotate(-135deg);
      margin-top: 7px;
      border-color: var(--field-dark);
    }

    .mobile-menu-group a {
      display: block;
      width: 100%;
      position: relative;
      margin-left: 0;
      padding: 11px 18px 11px 34px;
      font-size: 14px;
      font-weight: 600;
      color: var(--muted);
      transition: color 0.2s ease, background 0.2s ease;
    }

    .mobile-menu-group a::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 50%;
      width: 5px;
      height: 5px;
      margin-top: -2px;
      border-radius: 50%;
      background: var(--sand);
      opacity: 1;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu-group a:hover,
    .mobile-menu-group a:focus-visible {
      padding-left: 34px;
      color: var(--field-dark);
      background: rgba(95, 122, 85, 0.08);
    }

    .mobile-menu-group a:hover::before,
    .mobile-menu-group a:focus-visible::before {
      background: var(--field);
      transform: scale(1.2);
    }

    /* Slide-in menu (all viewports) */
    .mobile-menu-toggle {
      display: flex;
      grid-column: 3;
      justify-self: end;
      width: 50px;
      height: 50px;
      border: 1px solid rgba(56, 81, 52, 0.22);
      border-radius: 16px;
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.95) 0%, rgba(232, 225, 212, 0.55) 100%);
      box-shadow:
        0 4px 14px rgba(23, 32, 26, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      cursor: pointer;
      padding: 0;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      gap: 5px;
      transition:
        transform 0.22s ease,
        border-color 0.22s ease,
        background 0.22s ease,
        box-shadow 0.22s ease;
    }

    .mobile-menu-toggle:hover {
      border-color: var(--field);
      background: linear-gradient(145deg, #ffffff 0%, rgba(216, 200, 170, 0.45) 100%);
      box-shadow:
        0 8px 22px rgba(56, 81, 52, 0.14),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
      transform: translateY(-1px);
    }

    .mobile-menu-toggle:focus-visible {
      outline: 2px solid var(--field);
      outline-offset: 3px;
    }

    .mobile-menu-toggle.active {
      border-color: var(--field-dark);
      background: linear-gradient(135deg, var(--field) 0%, var(--field-dark) 100%);
      box-shadow: 0 10px 28px rgba(56, 81, 52, 0.28);
      transform: translateY(0);
    }

    .mobile-menu-toggle span {
      display: block;
      width: 20px;
      height: 2.5px;
      background: var(--field-dark);
      border-radius: 999px;
      transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.2s ease, width 0.2s ease, background 0.2s ease;
    }

    .mobile-menu-toggle span:nth-child(2) {
      width: 15px;
    }

    .mobile-menu-toggle:hover span {
      background: var(--field);
    }

    .mobile-menu-toggle:hover span:nth-child(2) {
      width: 17px;
    }

    .mobile-menu-toggle.active span {
      width: 20px;
      background: #fff;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
      transform: translateY(7.5px) rotate(45deg);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
      opacity: 0;
      transform: scaleX(0);
    }

    .mobile-menu-toggle.active span:nth-child(3) {
      transform: translateY(-7.5px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(23, 32, 26, 0.52);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.35s ease, visibility 0.35s ease;
      z-index: 110;
    }

    .mobile-menu-backdrop.active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }

    .mobile-menu {
      --menu-pad: 20px;
      position: fixed;
      top: 0;
      right: 0;
      bottom: auto;
      width: min(320px, 88vw);
      max-height: 100dvh;
      height: auto;
      background:
        linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, var(--light) 42%, #ebe4d6 100%);
      border-left: 3px solid var(--field-dark);
      border-bottom-left-radius: 28px;
      padding: 0;
      box-shadow:
        -24px 0 64px rgba(23, 32, 26, 0.16),
        inset 1px 0 0 rgba(255, 255, 255, 0.65);
      display: flex;
      flex-direction: column;
      gap: 0;
      z-index: 120;
      overflow: hidden;
      min-height: 0;
      transform: translateX(100%);
      visibility: hidden;
      transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.4s ease;
    }

    .mobile-menu-close {
      position: absolute;
      top: max(12px, calc(6px + env(safe-area-inset-top)));
      right: 12px;
      z-index: 3;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(56, 81, 52, 0.2);
      border-radius: 14px;
      background: linear-gradient(145deg, #ffffff 0%, rgba(232, 225, 212, 0.7) 100%);
      box-shadow: 0 4px 14px rgba(23, 32, 26, 0.1);
      cursor: pointer;
      padding: 0;
      transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu-close::before,
    .mobile-menu-close::after {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 18px;
      height: 2.5px;
      margin-left: -9px;
      margin-top: -1px;
      background: var(--field-dark);
      border-radius: 999px;
      transition: background 0.2s ease;
    }

    .mobile-menu-close::before {
      transform: rotate(45deg);
    }

    .mobile-menu-close::after {
      transform: rotate(-45deg);
    }

    .mobile-menu-close:hover {
      border-color: var(--field);
      background: #fff;
      box-shadow: 0 8px 20px rgba(56, 81, 52, 0.14);
      transform: scale(1.04);
    }

    .mobile-menu-close:hover::before,
    .mobile-menu-close:hover::after {
      background: var(--field);
    }

    .mobile-menu-close:focus-visible {
      outline: 2px solid var(--field);
      outline-offset: 2px;
    }

    .mobile-menu-scroll {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      flex: 1 1 auto;
      min-height: 0;
      overflow-x: hidden;
      overflow-y: auto;
      overscroll-behavior: contain;
      -webkit-overflow-scrolling: touch;
      padding: 0 var(--menu-pad) max(28px, env(safe-area-inset-bottom));
    }

    .mobile-menu-scroll > a,
    .mobile-menu-scroll > .mobile-menu-group {
      display: block;
      width: 100%;
      flex-shrink: 0;
    }

    .mobile-menu-header {
      display: block;
      margin: 0 calc(var(--menu-pad) * -1) 4px;
      padding: max(16px, calc(10px + env(safe-area-inset-top))) 52px 18px 18px;
      background: transparent;
      text-align: center;
      flex-shrink: 0;
      border-bottom: 1px solid rgba(23, 32, 26, 0.08);
      transition: opacity 0.2s ease;
    }

    .mobile-menu-header strong {
      display: block;
      font-size: 17px;
      font-weight: 800;
      letter-spacing: -0.03em;
      line-height: 1.15;
      color: var(--ink);
    }

    .mobile-menu-header span {
      display: block;
      margin-top: 5px;
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.02em;
      line-height: 1.3;
      color: var(--muted);
    }

    .mobile-menu-header:hover strong {
      color: var(--field-dark);
    }

    .mobile-menu-scroll > a:not(.mobile-menu-header),
    .mobile-menu-scroll > .mobile-menu-group {
      margin-top: 6px;
    }

    .mobile-menu-scroll > a:first-of-type {
      margin-top: 14px;
    }

    .mobile-menu-scroll > a:not(.mobile-menu-header):not(.mobile-menu-cta) {
      position: relative;
      padding: 15px 18px 15px 44px;
      border-radius: 16px;
      border: 1px solid transparent;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 0.01em;
      color: var(--ink);
      transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
    }

    .mobile-menu-scroll > a:not(.mobile-menu-header):not(.mobile-menu-cta)::before {
      content: "";
      position: absolute;
      left: 18px;
      top: 50%;
      width: 6px;
      height: 6px;
      margin-top: -3px;
      border-radius: 50%;
      background: var(--field);
      opacity: 0.55;
      transition: opacity 0.2s ease, transform 0.2s ease, background 0.2s ease;
    }

    .mobile-menu-scroll > a:not(.mobile-menu-header):not(.mobile-menu-cta):hover,
    .mobile-menu-scroll > a:not(.mobile-menu-header):not(.mobile-menu-cta):focus-visible {
      color: var(--field-dark);
      background: rgba(255, 255, 255, 0.88);
      border-color: rgba(56, 81, 52, 0.14);
      box-shadow: 0 6px 20px rgba(23, 32, 26, 0.07);
      transform: translateX(-2px);
    }

    .mobile-menu-scroll > a:not(.mobile-menu-header):not(.mobile-menu-cta):hover::before,
    .mobile-menu-scroll > a:not(.mobile-menu-header):not(.mobile-menu-cta):focus-visible::before {
      opacity: 1;
      background: var(--field-dark);
      transform: scale(1.15);
    }

    .mobile-menu-group a {
      border-radius: 0;
      font-weight: 600;
    }

    .mobile-menu-group a:hover,
    .mobile-menu-group a:focus-visible {
      transform: none;
      box-shadow: none;
      border-color: transparent;
    }

    .mobile-menu-cta {
      display: none;
      margin-top: 14px;
      padding: 15px 20px;
      text-align: center;
      background: linear-gradient(135deg, var(--field) 0%, var(--field-dark) 100%);
      color: white;
      border-radius: 999px;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: 0.02em;
      box-shadow: 0 10px 28px rgba(56, 81, 52, 0.28);
      transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
    }

    .mobile-menu-cta::before {
      display: none;
    }

    .mobile-menu-cta:hover,
    .mobile-menu-cta:focus-visible {
      transform: translateY(-1px);
      box-shadow: 0 14px 32px rgba(56, 81, 52, 0.34);
      filter: brightness(1.05);
      background: linear-gradient(135deg, var(--field) 0%, var(--field-dark) 100%);
    }

    .mobile-menu.active {
      transform: translateX(0);
      visibility: visible;
    }

    .mobile-menu.active .mobile-menu-scroll > * {
      animation: mobileMenuItemIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) backwards;
    }

    .mobile-menu.active .mobile-menu-scroll > *:nth-child(1) { animation-delay: 0.04s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(2) { animation-delay: 0.08s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(3) { animation-delay: 0.12s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(4) { animation-delay: 0.16s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(5) { animation-delay: 0.2s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(6) { animation-delay: 0.24s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(7) { animation-delay: 0.28s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(8) { animation-delay: 0.32s; }
    .mobile-menu.active .mobile-menu-scroll > *:nth-child(9) { animation-delay: 0.36s; }

    @keyframes mobileMenuItemIn {
      from {
        opacity: 0;
        transform: translateX(14px);
      }

      to {
        opacity: 1;
        transform: translateX(0);
      }
    }

    body.mobile-menu-open {
      overflow: hidden;
    }

    @media (min-width: 981px) {
      .site-nav-center {
        display: block;
      }

      .mobile-menu {
        width: min(360px, 32vw);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .mobile-menu,
      .mobile-menu-backdrop,
      .mobile-menu-toggle,
      .mobile-menu-toggle span,
      .mobile-menu-close {
        transition-duration: 0.01ms;
      }

      .mobile-menu-toggle:hover,
      .mobile-menu-toggle.active,
      .mobile-menu-close:hover {
        transform: none;
      }

      .mobile-menu.active .mobile-menu-scroll > * {
        animation: none;
      }
    }

    /* Honeypot Spam Protection Field */
    .hidden-field {
      position: absolute;
      left: -9999px;
      top: auto;
      width: 1px;
      height: 1px;
      overflow: hidden;
      opacity: 0;
      pointer-events: none;
    }

    /* Hero Section */
    .hero {
      max-width: var(--max);
      margin: 0 auto;
      padding: 82px 22px 72px;
      display: grid;
      grid-template-columns: .94fr 1.06fr;
      gap: 42px;
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--field-dark);
      background: rgba(95, 122, 85, 0.12);
      border: 1px solid rgba(95, 122, 85, 0.2);
      padding: 7px 12px;
      border-radius: 999px;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 22px;
    }

    h1 {
      font-size: clamp(44px, 7vw, 82px);
      line-height: .92;
      letter-spacing: -0.075em;
      margin: 0 0 22px;
    }

    .hero p {
      font-size: clamp(18px, 2vw, 22px);
      color: var(--muted);
      max-width: 620px;
      margin: 0 0 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 20px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid var(--line);
    }

    .btn.primary {
      background: var(--ink);
      color: white;
    }

    .btn.secondary {
      background: rgba(255, 255, 255, .65);
      color: var(--ink);
    }

    .hero-card {
      position: relative;
      border-radius: 26px;
      overflow: hidden;
      transform: translateY(10px);
      min-height: 560px;
      box-shadow: var(--shadow);
      background: #ddd;
    }

    .hero-card img {
      width: 100%;
      height: 100%;
      min-height: 560px;
      object-fit: cover;
      object-position: left center;
    }

       /* About Page */
      .about-hero {
      padding-top: 90px;
      padding-bottom: 90px;
     }

    .about-hero .hero-card {
     max-height: 620px;
     overflow: hidden;
     border-radius: 32px;
   }

   .about-hero .hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }

    .about-page {
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 16%, rgba(216, 200, 170, 0.26), transparent 28%),
        radial-gradient(circle at 88% 38%, rgba(95, 122, 85, 0.12), transparent 30%),
        var(--light);
    }

    .about-page .container {
      max-width: var(--max);
      margin: 0 auto;
      position: relative;
    }

    .about-page section {
      padding-top: 86px;
      padding-bottom: 86px;
    }

    .about-page .content-section,
    .about-page .image-feature-section {
      background: transparent;
    }

    .about-page .muted {
      background: linear-gradient(135deg, rgba(255, 255, 255, .44), rgba(232, 225, 212, .38));
      border-top: 1px solid rgba(23, 32, 26, 0.06);
      border-bottom: 1px solid rgba(23, 32, 26, 0.06);
    }

    .about-page .split {
      align-items: center;
    }

    .about-page .content-section .split > div:first-child,
    .about-page .section-heading {
      position: relative;
      padding-left: 26px;
    }

    .about-page .content-section .split > div:first-child::before,
    .about-page .section-heading::before {
      content: "";
      position: absolute;
      left: 0;
      top: 10px;
      width: 5px;
      height: calc(100% - 16px);
      min-height: 54px;
      border-radius: 999px;
      background: linear-gradient(var(--field), rgba(216, 200, 170, .75));
    }

    .about-page .content-stack {
      background: rgba(255, 255, 255, .58);
      border: 1px solid rgba(23, 32, 26, 0.08);
      border-radius: 30px;
      padding: 30px;
      box-shadow: 0 18px 48px rgba(23, 32, 26, 0.07);
    }

    .about-page .content-stack p {
      margin-top: 0;
      color: var(--muted);
      font-size: 17px;
    }

    .about-page .content-stack p:last-child {
      margin-bottom: 0;
    }

    .about-page .feature-image {
      border-radius: 32px;
      overflow: hidden;
      box-shadow: var(--shadow);
      transform: none;
    }

    .about-page .image-feature-section:nth-of-type(even) .feature-image {
      transform: none;
    }

    .about-page .feature-image img {
      width: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    .about-page .about-military-image {
      margin: 24px 0 0;
      max-width: 700px;
    }

    .about-page .about-military-image img {
      width: 100%;
      height: auto;
      object-fit: contain;
    }

    .about-page .section-heading {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .about-page .section-heading p {
      color: var(--muted);
      font-size: 17px;
      margin: 18px 0 0;
    }

    .about-page .listing-card,
    .about-page .trust-card {
      box-shadow: 0 16px 38px rgba(23, 32, 26, 0.06);
    }

    .about-page .trust-card {
      background: rgba(95, 122, 85, 0.1);
      border: 1px solid rgba(95, 122, 85, 0.2);
      border-radius: 22px;
      padding: 22px;
      margin-bottom: 22px;
    }

    .about-page .trust-card strong {
      display: block;
      margin-bottom: 8px;
    }

    .about-page .cta-section {
      background: linear-gradient(135deg, var(--field-dark), var(--ink));
      color: white;
      text-align: center;
    }

    .about-page .cta-section .container {
      max-width: 760px;
    }

    .about-page .cta-section p {
      color: rgba(255, 255, 255, .76);
      font-size: 18px;
      margin: 18px auto 28px;
      max-width: 620px;
    }

    .about-page .cta-section .btn.primary {
      background: white;
      color: var(--ink);
    }

    .policy-page {
      background:
        radial-gradient(circle at 14% 12%, rgba(216, 200, 170, 0.24), transparent 30%),
        var(--light);
    }

    .policy-page .container {
      max-width: 920px;
      margin: 0 auto;
    }

    .policy-hero {
      padding-top: 92px;
      padding-bottom: 54px;
    }

    .policy-hero h1 {
      max-width: 820px;
    }

    .policy-hero p {
      color: var(--muted);
      font-size: 18px;
      max-width: 720px;
      margin: 0 0 16px;
    }

    .policy-updated {
      font-size: 14px !important;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .policy-content {
      padding-top: 0;
    }

    .policy-card {
      background: rgba(255, 255, 255, .66);
      border: 1px solid rgba(23, 32, 26, 0.08);
      border-radius: 30px;
      padding: 42px;
      box-shadow: 0 18px 48px rgba(23, 32, 26, 0.07);
    }

    .policy-card h2 {
      font-size: clamp(24px, 3vw, 34px);
      line-height: 1;
      margin: 34px 0 12px;
    }

    .policy-card h2:first-child {
      margin-top: 0;
    }

    .policy-card p {
      color: var(--muted);
      margin: 0 0 16px;
    }

    .policy-card a {
      color: var(--field-dark);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* Resource / Article Pages */
    .resource-page {
      background:
        radial-gradient(circle at 14% 12%, rgba(216, 200, 170, 0.24), transparent 30%),
        var(--light);
    }

    .resource-hero {
      padding: 88px 22px 72px;
      background:
        radial-gradient(circle at 8% 18%, rgba(95, 122, 85, .22), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(216, 200, 170, .58), transparent 34%),
        radial-gradient(circle at 72% 88%, rgba(156, 116, 65, .2), transparent 28%),
        linear-gradient(135deg, #fbfaf6 0%, var(--light) 48%, #eadfce 100%);
    }

    .resource-hero .container {
      max-width: var(--max);
      margin: 0 auto;
    }

    .resource-hero .breadcrumbs {
      margin-bottom: 28px;
    }

    .resource-hero .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 14px;
      color: var(--muted);
    }

    .resource-hero .breadcrumbs li:not(:first-child)::before {
      content: "/";
      margin-right: 8px;
      color: rgba(23, 32, 26, .35);
    }

    .resource-hero .breadcrumbs a {
      color: var(--field-dark);
    }

    .resource-hero .breadcrumbs a:hover {
      text-decoration: underline;
    }

    .resource-hero .breadcrumbs [aria-current="page"] {
      color: var(--ink);
      font-weight: 600;
    }

    .resource-hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 52px;
      align-items: center;
    }

    .resource-hero-grid--stacked {
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: start;
    }

    .resource-hero-grid--stacked .resource-hero-copy h1 {
      max-width: 28ch;
    }

    .resource-hero-grid--stacked .resource-hero-copy p {
      max-width: 720px;
    }

    .resource-hero-grid--stacked .resource-hero-image img {
      aspect-ratio: 16 / 9;
      min-height: 0;
    }

    /* Buying-property cluster articles — stacked hero, full-width images without crop */
    .easements-access-resource-page .resource-hero-grid--stacked .resource-hero-copy h1,
    .flood-drainage-resource-page .resource-hero-grid--stacked .resource-hero-copy h1 {
      max-width: none;
    }

    .easements-access-resource-page .resource-hero-grid--stacked .resource-hero-image img,
    .flood-drainage-resource-page .resource-hero-grid--stacked .resource-hero-image img {
      width: 100%;
      height: auto;
      min-height: 0;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
      background: rgba(255, 255, 255, 0.72);
    }

    @media (max-width: 768px) {
      .easements-access-resource-page .resource-hero-grid--stacked .resource-hero-image img,
      .flood-drainage-resource-page .resource-hero-grid--stacked .resource-hero-image img {
        border-radius: 20px;
      }
    }

    .easements-access-resource-page .resource-content .resource-image,
    .flood-drainage-resource-page .resource-content .resource-image {
      background: rgba(255, 255, 255, 0.72);
    }

    .easements-access-resource-page .resource-content .resource-image img,
    .flood-drainage-resource-page .resource-content .resource-image img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    .buying-property-resource-page .resource-content .resource-image {
      background: rgba(255, 255, 255, 0.72);
    }

    .buying-property-resource-page .resource-content .resource-image img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    @media (max-width: 768px) {
      .buying-property-resource-page .resource-hero-image img {
        min-height: 0;
        height: auto;
        aspect-ratio: auto;
        object-fit: contain;
        object-position: center;
        background: rgba(255, 255, 255, 0.72);
      }
    }

    .resource-page h1 {
      font-size: clamp(38px, 5.5vw, 64px);
      max-width: 16ch;
      line-height: .94;
      letter-spacing: -0.07em;
      margin: 0 0 20px;
    }

    .resource-hero-copy p {
      color: var(--muted);
      font-size: clamp(17px, 1.8vw, 19px);
      max-width: 680px;
      margin: 0 0 16px;
    }

    .resource-intro {
      color: #344238 !important;
      font-size: clamp(18px, 2vw, 21px) !important;
      font-weight: 500;
    }

    .resource-meta {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px 16px;
      margin-top: 24px;
      font-size: 14px;
      font-weight: 700;
      color: rgba(23, 32, 26, 0.62);
    }

    .resource-meta span:not(:first-child)::before {
      content: "·";
      margin-right: 16px;
      color: rgba(23, 32, 26, 0.35);
    }

    .resource-hero-image img {
      width: 100%;
      min-height: 380px;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .resource-content-section {
      padding: 72px 22px 96px;
    }

    .resource-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 320px;
      gap: 48px;
      align-items: start;
      max-width: var(--max);
      margin: 0 auto;
    }

    .resource-content {
      background: rgba(255, 255, 255, .66);
      border: 1px solid rgba(23, 32, 26, 0.08);
      border-radius: 30px;
      padding: 42px 44px;
      box-shadow: 0 18px 48px rgba(23, 32, 26, 0.07);
    }

    .resource-content h2 {
      font-size: clamp(26px, 3.5vw, 38px);
      line-height: 1;
      letter-spacing: -0.06em;
      margin: 48px 0 16px;
      padding-left: 18px;
      border-left: 5px solid var(--field);
    }

    .resource-content h2:first-child {
      margin-top: 0;
    }

    .resource-content p {
      color: var(--muted);
      font-size: 17px;
      margin: 0 0 16px;
    }

    .resource-content a {
      color: var(--field-dark);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .resource-image {
      margin: 32px 0;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 16px 42px rgba(23, 32, 26, 0.1);
    }

    .resource-image img {
      width: 100%;
      aspect-ratio: 16 / 10;
      object-fit: cover;
    }

    .resource-image figcaption {
      padding: 14px 18px 16px;
      font-size: 14px;
      line-height: 1.55;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.88);
    }

    .resource-image--contain {
      background: rgba(255, 255, 255, 0.72);
    }

    .resource-image--contain img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
      display: block;
    }

    /* Infographic hero — show full image without cropping. */
    .acreage-mistakes-resource-page .resource-hero-grid--stacked .resource-hero-image img {
      width: 100%;
      height: auto;
      min-height: 0;
      aspect-ratio: auto;
      object-fit: contain;
      object-position: center;
      background: rgba(255, 255, 255, 0.72);
    }

    @media (max-width: 768px) {
      .acreage-mistakes-resource-page .resource-hero-image {
        margin-inline: -22px;
      }

      .acreage-mistakes-resource-page .resource-hero-grid--stacked .resource-hero-image img {
        width: calc(100% + 44px);
        border-radius: 0;
      }

      .acreage-mistakes-resource-page .resource-content .resource-image--contain {
        margin-inline: -24px;
        border-radius: 0;
        box-shadow: none;
      }

      .acreage-mistakes-resource-page .resource-content .resource-image--contain img {
        border-radius: 0;
      }
    }

    /* Page-specific image behavior for inland vs coastal guide. */
    .inland-vs-coastal-resource-page .resource-image img {
      width: 100%;
      height: auto;
      aspect-ratio: auto;
      object-fit: initial;
    }

    @media (max-width: 768px) {
      .inland-vs-coastal-resource-page .resource-hero-image {
        margin-inline: -22px;
      }

      .inland-vs-coastal-resource-page .resource-hero-image img {
        width: calc(100% + 44px);
        height: 240px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
      }

      .inland-vs-coastal-resource-page .resource-image img {
        width: calc(100% + 44px);
        height: 240px;
        aspect-ratio: auto;
        object-fit: cover;
        object-position: center;
      }

      .inland-vs-coastal-resource-page .resource-image {
        margin-inline: -22px;
      }
    }

    .internal-link-box {
      margin: 40px 0;
      padding: 28px 30px;
      border-radius: 24px;
      background: rgba(95, 122, 85, 0.1);
      border: 1px solid rgba(95, 122, 85, 0.2);
    }

    .internal-link-box h3 {
      margin: 0 0 10px;
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .internal-link-box p {
      margin: 0;
    }

    .internal-link-box ul {
      margin: 0;
      padding-left: 22px;
      color: var(--muted);
    }

    .internal-link-box li + li {
      margin-top: 8px;
    }

    .pillar-topic-nav {
      margin: 56px 0 0;
      padding-top: 48px;
      border-top: 1px solid rgba(23, 32, 26, 0.08);
    }

    .pillar-topic-nav h2 {
      margin-top: 0;
    }

    .pillar-topic-nav-intro {
      margin: 0 0 24px;
      color: var(--muted);
      font-size: 17px;
    }

    .areas-link-grid--compact {
      grid-template-columns: 1fr;
      gap: 14px;
      margin-top: 0;
    }

    .pillar-topic-nav .areas-link-grid--compact {
      grid-template-columns: 1fr;
      gap: 16px;
    }

    .areas-link-grid--compact .areas-link-card {
      min-height: 0;
      padding: 22px 24px;
    }

    .pillar-topic-nav .areas-link-card {
      display: block;
      text-decoration: none;
      color: inherit;
      padding: 24px 26px 22px;
    }

    .pillar-topic-nav .areas-link-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 48px rgba(23, 32, 26, 0.1);
    }

    .pillar-topic-nav .areas-link-card h3 {
      margin: 0 0 10px;
      font-size: 21px;
      line-height: 1.2;
      letter-spacing: -0.04em;
      color: var(--ink);
      font-weight: 800;
      text-decoration: none;
    }

    .pillar-topic-nav .areas-link-card p {
      margin: 0;
      color: var(--muted);
      font-size: 16px;
      line-height: 1.6;
      font-weight: 400;
      text-decoration: none;
    }

    .pillar-topic-nav .areas-link-card::after {
      content: "Explore Topic →";
      display: inline-block;
      margin-top: 16px;
      color: var(--field-dark);
      font-size: 15px;
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    .pillar-topic-nav .areas-link-card:hover h3 {
      color: var(--field-dark);
    }

    .areas-link-grid--compact .areas-link-card h3 {
      font-size: 20px;
    }

    .pillar-topic-nav-back {
      margin: 28px 0 0;
    }

    .pillar-topic-nav .pillar-topic-nav-back a {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 16px 18px;
      border-radius: 16px;
      background: rgba(95, 122, 85, 0.1);
      border: 1px solid rgba(95, 122, 85, 0.22);
      color: var(--field-dark);
      font-weight: 800;
      font-size: 15px;
      line-height: 1.45;
      text-decoration: none;
      transition:
        background 0.18s ease,
        border-color 0.18s ease,
        transform 0.18s ease;
    }

    .pillar-topic-nav .pillar-topic-nav-back a::before {
      content: "←";
      flex-shrink: 0;
      font-size: 18px;
      line-height: 1.2;
      font-weight: 800;
      color: var(--field);
    }

    .pillar-topic-nav .pillar-topic-nav-back a:hover {
      background: rgba(95, 122, 85, 0.16);
      border-color: rgba(95, 122, 85, 0.34);
      transform: translateX(-3px);
    }

    .pillar-topic-nav--cluster-only {
      padding-top: 40px;
    }

    .pillar-topic-nav--cluster-only .pillar-topic-nav-back {
      margin-top: 0;
    }

    .pillar-topic-nav--cluster-only .pillar-topic-nav-back a {
      padding: 18px 20px;
    }

    .resource-last-reviewed {
      margin: 48px 0 0;
      font-size: 14px;
      font-weight: 700;
      color: rgba(23, 32, 26, 0.62);
    }

    .resource-last-reviewed + .resource-cta {
      margin-top: 24px;
    }

    .resource-cta {
      margin-top: 48px;
      padding: 36px 38px;
      border-radius: 28px;
      background: linear-gradient(135deg, var(--field-dark), var(--ink));
      color: white;
      text-align: center;
    }

    .resource-cta h2 {
      color: white;
      border-left: none;
      padding-left: 0;
      margin: 0 0 14px;
    }

    .resource-cta p {
      color: rgba(255, 255, 255, .76);
      font-size: 18px;
      max-width: 560px;
      margin: 0 auto 24px;
    }

    .resource-cta .btn.primary {
      background: white;
      color: var(--ink);
    }

    .resource-cta .btn + .btn {
      margin-left: 12px;
    }

    .resource-cta .btn.secondary {
      background: transparent;
      color: white;
      border-color: rgba(255, 255, 255, 0.45);
    }

    .resource-cta .btn.secondary:hover {
      background: rgba(255, 255, 255, 0.12);
      border-color: rgba(255, 255, 255, 0.7);
    }

    .resource-sidebar {
      display: flex;
      flex-direction: column;
      gap: 18px;
      position: sticky;
      top: 100px;
    }

    .sidebar-card {
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(23, 32, 26, 0.08);
      border-radius: 22px;
      padding: 22px 20px 20px;
      box-shadow: 0 14px 36px rgba(23, 32, 26, 0.06);
    }

    .resource-sidebar .sidebar-card:first-child {
      position: relative;
      overflow: hidden;
    }

    .resource-sidebar .sidebar-card:first-child::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 5px;
      background: var(--field);
    }

    .resource-sidebar .sidebar-card:has(> p) {
      background: rgba(95, 122, 85, 0.07);
      border-color: rgba(95, 122, 85, 0.16);
    }

    .sidebar-card h3 {
      margin: 0 0 14px;
      font-size: 17px;
      letter-spacing: -0.03em;
      color: var(--field-dark);
      font-weight: 800;
      padding-bottom: 12px;
      border-bottom: 1px solid rgba(23, 32, 26, 0.08);
    }

    .resource-sidebar .sidebar-card:first-child h3 {
      padding-top: 4px;
    }

    .sidebar-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.55;
      margin: 0 0 14px;
    }

    .sidebar-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .sidebar-card li + li {
      margin-top: 7px;
    }

    .resource-sidebar .sidebar-card ul a {
      display: block;
      padding: 11px 14px 11px 16px;
      border-radius: 12px;
      background: rgba(255, 255, 255, 0.92);
      border: 1px solid rgba(23, 32, 26, 0.07);
      color: var(--ink);
      font-weight: 700;
      font-size: 14px;
      line-height: 1.35;
      text-decoration: none;
      transition:
        background 0.18s ease,
        border-color 0.18s ease,
        color 0.18s ease,
        transform 0.18s ease;
    }

    .resource-sidebar .sidebar-card ul a:hover {
      background: rgba(95, 122, 85, 0.1);
      border-color: rgba(95, 122, 85, 0.22);
      color: var(--field-dark);
      transform: translateX(3px);
    }

    .resource-sidebar .sidebar-card > a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin: 0 8px 0 0;
      padding: 10px 16px;
      border-radius: 999px;
      background: var(--field);
      color: white;
      font-weight: 700;
      font-size: 14px;
      text-decoration: none;
      transition: background 0.18s ease, transform 0.18s ease;
    }

    .resource-sidebar .sidebar-card > a:hover {
      background: var(--field-dark);
      transform: translateY(-1px);
    }

    .resource-sidebar .sidebar-card > a + a {
      background: transparent;
      color: var(--field-dark);
      border: 1px solid rgba(95, 122, 85, 0.35);
    }

    .resource-sidebar .sidebar-card > a + a:hover {
      background: rgba(95, 122, 85, 0.08);
    }

    /* Resources Hub */
    .resources-hub-page {
      background:
        radial-gradient(circle at 14% 12%, rgba(216, 200, 170, 0.24), transparent 30%),
        var(--light);
    }

    .resources-hub-intro {
      max-width: 760px;
    }

    .resources-hub-intro p {
      color: var(--muted);
      font-size: clamp(17px, 1.8vw, 20px);
      max-width: 680px;
      margin: 0 0 16px;
    }

    .resources-hub-list {
      padding: 0 22px 96px;
    }

    .resources-hub-list > .container {
      max-width: var(--max);
      margin: 0 auto;
    }

    .resources-hub-list .section-heading {
      max-width: 720px;
      margin-bottom: 34px;
    }

    .resources-hub-list .section-heading p {
      color: var(--muted);
      font-size: 17px;
      margin: 16px 0 0;
    }

    .resources-hub-list .section-heading.resources-hub-topics {
      margin-top: 48px;
    }

    .resources-hub-list .areas-list {
      margin: 0 0 24px;
    }

    .resources-hub-list > .container > p a {
      color: var(--field-dark);
      font-weight: 800;
      text-decoration: underline;
      text-underline-offset: 3px;
    }

    /* Global Section Layout */
    section {
      padding: 80px 22px;
    }

    .wrap {
      max-width: var(--max);
      margin: 0 auto;
    }

    .section-head {
      display: grid;
      grid-template-columns: 1fr .9fr;
      gap: 32px;
      align-items: end;
      margin-bottom: 54px;
    }

    h2 {
      font-size: clamp(32px, 5vw, 54px);
      line-height: .94;
      letter-spacing: -0.07em;
      margin: 0;
    }

    .section-head p,
    .section-head .lead {
      color: var(--muted);
      font-size: 17px;
      margin: 0;
      max-width: 640px;
    }

    /* Service Area / County Cards */
    .county-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 20px;
    }

    .county-card {
      background: var(--white);
      border: 1px solid rgba(23, 32, 26, 0.07);
      border-radius: 18px;
      padding: 28px;
      min-height: 170px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    a.county-card {
      text-decoration: none;
      color: inherit;
      cursor: pointer;
    }

    .county-card span {
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .county-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    /* Property Focus / Specialty Cards */
    .specialties {
      background: var(--ink);
      color: white;
    }

    .specialties .section-head p {
      color: rgba(255, 255, 255, .68);
    }

    .specialty-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .specialty-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 24px;
      padding: 26px;
    }

    .specialty-card small {
      color: var(--sand);
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .specialty-card h3 {
      font-size: 25px;
      margin: 16px 0 10px;
      letter-spacing: -0.04em;
    }

    .specialty-card p {
      color: rgba(255, 255, 255, .7);
      margin: 0;
    }

    /* Why YyHoop Split Section */
    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 52px;
      align-items: start;
    }

    .split-image-stack {
      display: grid;
      gap: 5px;
    }

    .split-img {
      border-radius: 30px;
      overflow: hidden;
      box-shadow: var(--shadow);
      min-height: 390px;
      align-self: start;
      margin-top: 78px;
    }

    .split-img img {
      width: 100%;
      height: 390px;
      object-fit: cover;
    }

    .split-img-secondary {
      min-height: auto;
    }

    .split-img-secondary img {
      height: 220px;
    }

    .desktop-balance-image {
      display: block;
    }

    .check-list {
      display: grid;
      gap: 10px;
      margin-top: 20px;
    }

    .check {
      display: flex;
      gap: 12px;
      align-items: flex-start;
      background: rgba(255, 255, 255, .38);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 13px 15px;
    }

    .dot {
      width: 14px;
      height: 14px;
      border-radius: 999px;
      background: var(--field);
      flex: 0 0 22px;
      margin-top: 6px;
    }

    /* Market / Listings Section */
    .market {
      background: #fff;
    }

    .listing-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 28px;
    }

    .listing-card {
      border: 1px solid rgba(23, 32, 26, 0.07);
      border-radius: 24px;
      overflow: hidden;
      background: white;
    }

    .listing-card > span,
    .listing-card > h3,
    .listing-card > p {
      margin-left: 24px;
      margin-right: 24px;
    }

    .listing-card > span {
      display: block;
      margin-top: 24px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 800;
      letter-spacing: .08em;
    }

    .listing-card > h3 {
      margin-top: 10px;
      margin-bottom: 8px;
      font-size: 22px;
      letter-spacing: -0.04em;
      line-height: 1.15;
    }

    .listing-card > p {
      margin-top: 0;
      margin-bottom: 24px;
      color: var(--muted);
    }

    .listing-card img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .listing-body {
      padding: 24px;
    }

    .listing-body small {
      color: var(--muted);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .listing-body h3 {
      margin: 8px 0 8px;
      font-size: 22px;
      letter-spacing: -0.04em;
    }

    .listing-body p {
      color: var(--muted);
      margin: 0;
    }

    .market-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    /* Featured MLS listing cards */
    .featured-listings {
      padding: 90px 24px;
      background: #f7f3ec;
    }

    .featured-listings-layout {
      display: grid;
      gap: 26px;
    }

    .featured-listings-row {
      display: grid;
      gap: 26px;
    }

    .featured-listings-row--three {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      align-items: stretch;
    }

    .featured-listing-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      background: #fff;
      border-radius: 24px;
      overflow: hidden;
      border: 1px solid rgba(31, 43, 34, .08);
      box-shadow: 0 18px 45px rgba(35, 28, 20, .08);
    }

    .featured-listing-copy {
      padding: 22px 22px 16px;
    }

    .featured-listing-copy span {
      display: inline-block;
      margin-bottom: 10px;
      color: #9a7a46;
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
    }

    .featured-listing-copy h3 {
      margin: 0 0 10px;
      color: #1f2b22;
      font-size: 1.2rem;
      line-height: 1.2;
    }

    .featured-listing-copy p {
      margin: 0;
      color: #575149;
      line-height: 1.55;
      font-size: .95rem;
    }

    .featured-listing-frame,
    .featured-listing-cta {
      flex-shrink: 0;
      margin-top: auto;
      height: 520px;
      min-height: 520px;
      max-height: 520px;
    }

    .featured-listing-frame {
      overflow: hidden;
      background: #fff;
    }

    .featured-listing-frame iframe {
      display: block;
      width: 100%;
      height: 520px;
      max-height: 520px;
      border: 0;
    }

    .featured-listing-card--pending .featured-listing-frame {
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #fff 0%, #f7f3ec 100%);
    }

    .featured-listing-card--pending .featured-listing-frame iframe {
      display: none;
    }

    .featured-listing-card--pending .featured-listing-frame::after {
      content: "MLS preview coming soon";
      color: #575149;
      font-size: 14px;
      font-weight: 700;
    }

    .featured-listing-card--pending {
      border-style: dashed;
      border-color: rgba(31, 43, 34, .14);
      box-shadow: none;
    }

    .featured-listing-cta {
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
      background: linear-gradient(180deg, #fff 0%, #f7f3ec 100%);
    }

    .featured-listing-card--cta .btn {
      width: min(100%, 320px);
      text-align: center;
      justify-content: center;
    }

    @media (max-width: 980px) {
      .featured-listings-row--three {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-inline: auto;
      }
    }

    @media (max-width: 700px) {
      .featured-listings {
        padding: 70px 18px;
      }

      .featured-listing-frame,
      .featured-listing-cta {
        height: 620px;
        min-height: 620px;
        max-height: 620px;
      }

      .featured-listing-frame iframe {
        height: 620px;
        max-height: 620px;
      }
    }

    /* Buyer and Seller Pathway Cards */
    .pathways {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
    }

    .path-card {
      background: white;
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 34px;
    }

    .path-card h3 {
      font-size: 34px;
      letter-spacing: -0.06em;
      line-height: 1;
      margin: 0 0 14px;
    }

    .path-card p {
      color: var(--muted);
      margin: 0 0 24px;
    }

    /* FAQ Section */
    .faq-section {
      padding: 92px 22px;
      background: var(--light);
    }

    .faq-wrap {
      display: grid;
      grid-template-columns: .8fr 1.2fr;
      gap: 52px;
      align-items: start;
    }

    .faq-intro p {
      color: var(--muted);
      font-size: 17px;
      max-width: 460px;
      margin: 18px 0 0;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-list details {
      background: rgba(255, 255, 255, .55);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 0;
      overflow: hidden;
    }

    .faq-list summary {
      cursor: pointer;
      list-style: none;
      padding: 18px 20px;
      font-weight: 800;
      letter-spacing: -0.02em;
      color: var(--ink);
      display: flex;
      justify-content: space-between;
      gap: 18px;
    }

    .faq-list summary::-webkit-details-marker {
      display: none;
    }

    .faq-list summary::after {
      content: "+";
      color: var(--field-dark);
      font-weight: 900;
      flex: 0 0 auto;
    }

    .faq-list details[open] summary::after {
      content: "–";
    }

    .faq-list details p {
      margin: 0;
      padding: 0 20px 20px;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.65;
    }

    /* Contact CTA and Contact Form */
    .cta {
      padding: 84px 22px;
      background: linear-gradient(135deg, var(--field-dark), var(--ink));
      color: white;
    }

    .cta-box {
      max-width: var(--max);
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr .8fr;
      gap: 34px;
      align-items: center;
    }

    .cta p {
      color: rgba(255, 255, 255, .72);
      font-size: 18px;
      margin: 18px 0 0;
    }

    .contact-card {
      background: rgba(255, 255, 255, .07);
      border: 1px solid rgba(255, 255, 255, .18);
      border-radius: 22px;
      padding: 26px;
      position: relative;
    }

    .contact-card label {
      display: block;
      font-size: 13px;
      font-weight: 800;
      color: rgba(255, 255, 255, .7);
      margin-bottom: 7px;
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .contact-card input,
    .contact-card textarea {
      width: 100%;
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 12px;
      background: rgba(255, 255, 255, .08);
      color: white;
      padding: 15px 15px;
      margin-bottom: 16px;
      font: inherit;
    }

    .contact-card input::placeholder,
    .contact-card textarea::placeholder {
      color: rgba(255, 255, 255, .55);
    }

    .contact-card textarea {
      min-height: 110px;
      resize: vertical;
    }

    .contact-card button {
      width: 100%;
      border: 0;
      border-radius: 999px;
      background: white;
      color: var(--ink);
      padding: 17px 22px;
      font-weight: 800;
      cursor: pointer;
    }

    /* Contact Page */
    .contact-hero {
      padding: 120px 24px 80px;
    }

    .contact-hero-grid {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 48px;
      align-items: center;
    }

    .contact-hero .contact-card,
    .contact-form,
    .contact-note {
      border: 1px solid rgba(31, 59, 45, .14);
      background: #fff;
      border-radius: 24px;
      box-shadow: 0 18px 50px rgba(20, 34, 27, .08);
    }

    .contact-hero .contact-card {
      padding: 34px;
    }

    .contact-hero .contact-card h2 {
      margin-bottom: 10px;
    }

    .contact-section {
      padding: 90px 24px;
    }

    .contact-layout {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 54px;
      align-items: start;
    }

    .contact-intro h2 {
      margin-bottom: 18px;
    }

    .contact-note {
      margin-top: 28px;
      padding: 24px;
    }

    .contact-note p {
      margin-bottom: 0;
    }

    .contact-form {
      padding: 34px;
    }

    .form-row {
      display: grid;
      gap: 8px;
      margin-bottom: 20px;
    }

    .form-row label {
      font-weight: 700;
      color: #1f3b2d;
    }

    .form-row input,
    .form-row select,
    .form-row textarea {
      width: 100%;
      border: 1px solid rgba(31, 59, 45, .18);
      border-radius: 14px;
      padding: 14px 15px;
      font: inherit;
      color: #1d2a22;
      background: #fbfbf8;
    }

    .form-row textarea {
      resize: vertical;
    }

    .form-row input:focus,
    .form-row select:focus,
    .form-row textarea:focus {
      outline: 2px solid rgba(31, 59, 45, .22);
      border-color: rgba(31, 59, 45, .4);
    }

    .honey-field {
      position: absolute;
      left: -9999px;
      opacity: 0;
      height: 0;
      overflow: hidden;
    }

    .form-disclaimer {
      margin-top: 18px;
      font-size: .92rem;
      color: #5f6b63;
    }

    /* Areas Page */
    .container {
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
    }

    .container.narrow {
      max-width: 850px;
    }

    .breadcrumbs-bar {
      padding: 18px 22px 0;
      background: #fbfaf6;
    }

    .breadcrumbs {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      font-size: 14px;
      color: var(--muted);
    }

    .breadcrumbs a {
      color: var(--field-dark);
      text-decoration: none;
    }

    .breadcrumbs a:hover {
      text-decoration: underline;
    }

    .breadcrumbs [aria-current="page"] {
      color: var(--ink);
      font-weight: 600;
    }

    .areas-hero {
      padding: 96px 22px 86px;
      background:
        radial-gradient(circle at 8% 18%, rgba(95, 122, 85, .22), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(216, 200, 170, .58), transparent 34%),
        radial-gradient(circle at 72% 88%, rgba(156, 116, 65, .2), transparent 28%),
        linear-gradient(135deg, #fbfaf6 0%, var(--light) 48%, #eadfce 100%);
      overflow: hidden;
    }

    .areas-hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 56px;
      align-items: center;
    }

    .areas-hero-content .lead {
      font-size: clamp(19px, 2vw, 23px);
      line-height: 1.55;
      color: #344238;
      max-width: 700px;
      margin: 0 0 22px;
    }

    .areas-hero-content p {
      color: var(--muted);
      max-width: 680px;
      margin: 0 0 18px;
    }

    .hero-button-row {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 30px;
    }

    .hero-context-strip {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 32px;
      max-width: 720px;
    }

    .hero-context-strip div {
      padding: 18px;
      border-radius: 20px;
      background: rgba(255, 255, 255, .72);
      border: 1px solid rgba(23, 32, 26, .08);
      box-shadow: 0 16px 34px rgba(23, 32, 26, .08);
    }

    .hero-context-strip span,
    .areas-feature-card span {
      display: block;
      color: var(--field-dark);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .hero-context-strip strong {
      display: block;
      color: var(--ink);
      font-size: 14px;
      line-height: 1.35;
    }

    .primary-btn,
    .secondary-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid var(--line);
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .primary-btn {
      background: var(--ink);
      color: white;
      box-shadow: 0 14px 34px rgba(23, 32, 26, .18);
    }

    .secondary-btn {
      background: rgba(255, 255, 255, .72);
      color: var(--ink);
    }

    .primary-btn:hover,
    .secondary-btn:hover,
    .areas-link-card:hover,
    .county-card:hover {
      transform: translateY(-2px);
    }

    .section-tag {
      display: inline-flex;
      margin-bottom: 18px;
      color: var(--field-dark);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .areas-overview,
    .county-differences,
    .property-types,
    .commuting-section,
    .relocation-section,
    .areas-links,
    .areas-cta {
      padding: 88px 22px;
    }

    .areas-overview:nth-of-type(even) {
      background:
        radial-gradient(circle at 88% 12%, rgba(216, 200, 170, .34), transparent 26%),
        rgba(255, 255, 255, .42);
    }

    .commuting-section {
      background:
        linear-gradient(135deg, rgba(23, 32, 26, .94), rgba(56, 81, 52, .88)),
        var(--ink);
      color: white;
    }

    .areas-links {
      background:
        radial-gradient(circle at 14% 18%, rgba(95, 122, 85, .16), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(216, 200, 170, .42), transparent 30%),
        #f2eee5;
    }

    .areas-overview p,
    .relocation-section p,
    .areas-links > .container > p,
    .areas-cta p {
      color: var(--muted);
      font-size: 17px;
      margin: 18px 0 0;
    }

    .commuting-section p {
      color: rgba(255, 255, 255, .74);
      font-size: 17px;
      margin: 18px 0 0;
    }

    .commuting-section .section-tag {
      color: var(--sand);
    }

    .commuting-grid {
      display: grid;
      grid-template-columns: 1.05fr .75fr;
      gap: 46px;
      align-items: center;
    }

    .coastal-access-card {
      margin: 0;
      padding: 12px;
      border-radius: 28px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .14);
      box-shadow: 0 24px 64px rgba(0, 0, 0, .22);
    }

    .coastal-access-card img {
      width: 100%;
      height: 245px;
      object-fit: cover;
      border-radius: 20px;
      filter: saturate(.9) contrast(.96);
    }

    .coastal-access-card figcaption {
      color: rgba(255, 255, 255, .7);
      font-size: 14px;
      line-height: 1.55;
      padding: 14px 4px 2px;
    }

    .areas-feature-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin: 34px 0 30px;
    }

    .areas-feature-card {
      padding: 24px;
      border-radius: 24px;
      border: 1px solid rgba(23, 32, 26, .08);
      box-shadow: 0 18px 44px rgba(23, 32, 26, .08);
      position: relative;
      overflow: hidden;
    }

    .areas-feature-card:nth-child(1) {
      background: linear-gradient(145deg, #fffaf0, #ead8b7);
    }

    .areas-feature-card:nth-child(2) {
      background: linear-gradient(145deg, #f3f8ee, #cbd9bd);
    }

    .areas-feature-card:nth-child(3) {
      background: linear-gradient(145deg, #eef6f3, #b9d2c4);
    }

    .areas-feature-card::after {
      content: "";
      position: absolute;
      right: -28px;
      bottom: -28px;
      width: 96px;
      height: 96px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .42);
    }

    .areas-feature-card h3 {
      margin: 0 0 10px;
      font-size: 21px;
      letter-spacing: -.04em;
    }

    .areas-feature-card p {
      margin: 0;
      color: #405044;
      font-size: 15px;
    }

    .split-section {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 54px;
      align-items: center;
    }

    .split-section.reverse {
      grid-template-columns: 1.08fr .92fr;
    }

    .split-content {
      min-width: 0;
    }

    .split-image,
    .areas-hero-image {
      min-width: 0;
    }

    .areas-hero-image img {
      width: 100%;
      min-height: 460px;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .split-image img {
      width: 100%;
      min-height: 430px;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .property-image-stack {
      position: relative;
      min-height: 430px;
      padding: 0 34px 46px 0;
    }

    .property-image-stack::before {
      content: "";
      position: absolute;
      inset: 38px 0 0 58px;
      border-radius: 32px;
      background: linear-gradient(135deg, rgba(216, 200, 170, .5), rgba(95, 122, 85, .18));
      z-index: 0;
    }

    .split-image .property-image-main {
      position: relative;
      z-index: 1;
      min-height: 310px;
      height: 310px;
      border-radius: 28px;
      object-position: center;
    }

    .split-image .property-image-overlap {
      position: absolute;
      z-index: 2;
      right: 0;
      bottom: 0;
      width: 68%;
      min-height: 185px;
      height: 185px;
      border: 8px solid var(--light);
      border-radius: 24px;
      object-position: center;
      box-shadow: 0 22px 48px rgba(23, 32, 26, .2);
    }

    .image-placeholder {
      min-height: 460px;
      border-radius: 30px;
      padding: 34px;
      color: white;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow);
      isolation: isolate;
    }

    .image-placeholder::before,
    .image-placeholder::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
    }

    .image-placeholder::before {
      background:
        linear-gradient(180deg, transparent 0 42%, rgba(12, 24, 16, .78) 100%),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, .08) 0 1px, transparent 1px 96px);
    }

    .image-placeholder::after {
      opacity: .8;
    }

    .image-placeholder-road::after {
      background:
        radial-gradient(circle at 22% 28%, rgba(216, 200, 170, .9) 0 8%, transparent 9%),
        linear-gradient(140deg, #253620 0%, #5f7a55 45%, #d8c8aa 46%, #7b694c 50%, #2d3a2f 51%, #17201a 100%);
    }

    .image-placeholder-acreage::after {
      background:
        linear-gradient(160deg, #263821 0%, #5f7a55 44%, #b9a777 45%, #806f43 52%, #3d552f 53%, #1b271e 100%);
    }

    .image-placeholder-home::after {
      background:
        radial-gradient(circle at 74% 18%, rgba(216, 200, 170, .8) 0 10%, transparent 11%),
        linear-gradient(140deg, #152119 0%, #385134 42%, #6f875b 43%, #d8c8aa 58%, #4e633f 59%, #17201a 100%);
    }

    .image-placeholder span {
      color: rgba(255, 255, 255, .78);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: .11em;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .image-placeholder strong {
      max-width: 430px;
      font-size: clamp(27px, 4vw, 44px);
      line-height: .98;
      letter-spacing: -.06em;
    }

    .areas-list {
      display: grid;
      gap: 12px;
      margin: 24px 0 0;
      padding: 0;
      list-style: none;
    }

    .areas-list li {
      position: relative;
      padding-left: 28px;
      color: #344238;
    }

    .areas-list li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .72em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--field);
      box-shadow: 0 0 0 5px rgba(95, 122, 85, .12);
    }

    .county-differences .county-grid {
      margin-top: 36px;
    }

    .county-card {
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .county-card::before,
    .areas-link-card::before {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 7px;
      background: var(--field);
    }

    .county-card:nth-child(1)::before,
    .areas-link-card:nth-child(1)::before {
      background: #5f7a55;
    }

    .county-card:nth-child(2)::before,
    .areas-link-card:nth-child(2)::before {
      background: #9c7441;
    }

    .county-card:nth-child(3)::before,
    .areas-link-card:nth-child(3)::before {
      background: #4f7f87;
    }

    .county-card:nth-child(4)::before,
    .areas-link-card:nth-child(4)::before {
      background: #7b6a43;
    }

    .county-card:nth-child(5)::before,
    .areas-link-card:nth-child(5)::before {
      background: #385134;
    }

    .county-card strong {
      display: block;
      font-size: 19px;
      letter-spacing: -.03em;
    }

    .county-card a {
      display: inline-flex;
      margin-top: 18px;
      color: var(--field-dark);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    .areas-link-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .areas-link-card {
      min-height: 210px;
      padding: 28px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86)),
        white;
      border: 1px solid rgba(23, 32, 26, .08);
      box-shadow: 0 16px 44px rgba(23, 32, 26, .07);
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .areas-link-card h3 {
      margin: 0 0 12px;
      font-size: 22px;
      letter-spacing: -.04em;
    }

    .areas-link-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
    }

    .areas-link-card:hover,
    .county-card:hover {
      box-shadow: 0 20px 54px rgba(23, 32, 26, .11);
    }

    .areas-cta {
      background: var(--ink);
      color: white;
      text-align: center;
    }

    .areas-cta .section-tag {
      color: var(--sand);
    }

    .areas-cta p {
      color: rgba(255, 255, 255, .72);
      margin-left: auto;
      margin-right: auto;
      max-width: 700px;
    }

    .areas-cta .primary-btn {
      margin-top: 28px;
      background: white;
      color: var(--ink);
    }

    .text-link {
      display: inline-flex;
      margin-top: 22px;
      color: var(--field-dark);
      font-weight: 900;
      text-decoration: underline;
      text-underline-offset: 4px;
    }

    /* County Pages */
    .county-page h1 {
      font-size: clamp(38px, 5.5vw, 68px);
      max-width: 14ch;
    }

    .county-hero {
      padding: 88px 22px 80px;
      background:
        radial-gradient(circle at 8% 18%, rgba(95, 122, 85, .22), transparent 30%),
        radial-gradient(circle at 90% 8%, rgba(216, 200, 170, .58), transparent 34%),
        radial-gradient(circle at 72% 88%, rgba(156, 116, 65, .2), transparent 28%),
        linear-gradient(135deg, #fbfaf6 0%, var(--light) 48%, #eadfce 100%);
    }

    .county-hero-inner,
    .county-container {
      max-width: var(--max);
      margin: 0 auto;
      width: 100%;
    }

    .county-container.narrow {
      max-width: 850px;
    }

    .county-hero .breadcrumbs {
      margin-bottom: 28px;
    }

    .county-hero .breadcrumbs ol {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px;
      margin: 0;
      padding: 0;
      list-style: none;
      font-size: 14px;
      color: var(--muted);
    }

    .county-hero .breadcrumbs li:not(:first-child)::before {
      content: "/";
      margin-right: 8px;
      color: rgba(23, 32, 26, .35);
    }

    .county-hero .breadcrumbs a {
      color: var(--field-dark);
    }

    .county-hero .breadcrumbs a:hover {
      text-decoration: underline;
    }

    .county-hero-grid {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 52px;
      align-items: center;
    }

    .county-hero-copy p {
      color: var(--muted);
      font-size: clamp(17px, 1.8vw, 20px);
      max-width: 680px;
      margin: 0 0 18px;
    }

    .county-page .page-updated {
      font-size: 0.92rem;
      line-height: 1.4;
      font-weight: 600;
      color: rgba(23, 32, 26, 0.62);
      margin: -8px 0 14px;
    }

    .county-page .page-updated time {
      font-weight: inherit;
    }

    .county-page .county-map-context {
      font-size: clamp(16px, 1.65vw, 18px);
      line-height: 1.65;
      font-weight: 600;
      color: var(--ink);
      max-width: 680px;
      margin: 0 0 14px;
    }

    .county-hero-image .image-placeholder,
    .county-hero-image img {
      width: 100%;
      min-height: 440px;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .county-section {
      padding: 88px 22px;
    }

    .county-section.soft-bg {
      background:
        radial-gradient(circle at 88% 12%, rgba(216, 200, 170, .34), transparent 26%),
        rgba(255, 255, 255, .42);
    }

    .county-page .county-section:nth-of-type(even):not(.county-access-section):not(.county-buyer-insights-section):not(.county-links-section):not(.county-relocation-section):not(.faq-section) {
      background:
        radial-gradient(circle at 88% 12%, rgba(216, 200, 170, .34), transparent 26%),
        rgba(255, 255, 255, .42);
    }

    .county-page .county-relocation-section {
      background:
        radial-gradient(circle at 10% 18%, rgba(95, 122, 85, .16), transparent 28%),
        radial-gradient(circle at 90% 82%, rgba(216, 200, 170, .3), transparent 32%),
        #f3f0e8;
    }

    .county-page .county-access-section,
    .county-page .county-buyer-insights-section {
      background:
        linear-gradient(135deg, rgba(23, 32, 26, .94), rgba(56, 81, 52, .88)),
        var(--ink);
      color: white;
    }

    .county-page .county-access-section .eyebrow,
    .county-page .county-buyer-insights-section .eyebrow {
      color: var(--sand);
      background: rgba(255, 255, 255, .1);
      border-color: rgba(255, 255, 255, .16);
    }

    .county-page .county-access-section h2,
    .county-page .county-buyer-insights-section h2 {
      color: white;
    }

    .county-page .county-access-section p,
    .county-page .county-buyer-insights-section p {
      color: rgba(255, 255, 255, .74);
    }

    .county-page .county-access-section .image-placeholder {
      border-color: rgba(255, 255, 255, .14);
      background: rgba(255, 255, 255, .08);
    }

    .county-page .county-access-section .image-placeholder span,
    .county-page .county-access-section .image-placeholder strong {
      color: rgba(255, 255, 255, .82);
    }

    .county-page .county-links-section {
      background:
        radial-gradient(circle at 14% 18%, rgba(95, 122, 85, .16), transparent 28%),
        radial-gradient(circle at 85% 70%, rgba(216, 200, 170, .42), transparent 30%),
        #f2eee5;
    }

    .county-section p {
      color: var(--muted);
      font-size: 17px;
      margin: 18px 0 0;
    }

    .county-section .section-heading {
      max-width: 760px;
      margin-bottom: 34px;
    }

    .county-section .section-heading p {
      margin-top: 16px;
    }

    .county-feature-grid,
    .property-grid,
    .community-grid {
      display: grid;
      gap: 18px;
      margin-top: 34px;
    }

    .county-feature-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .property-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .community-grid {
      grid-template-columns: repeat(3, 1fr);
    }

    .county-feature-grid article,
    .property-grid article,
    .community-grid article {
      padding: 24px;
      border-radius: 24px;
      border: 1px solid rgba(23, 32, 26, .08);
      background: white;
      box-shadow: 0 16px 40px rgba(23, 32, 26, .07);
    }

    .county-feature-grid article:nth-child(1) {
      background: linear-gradient(145deg, #fffaf0, #ead8b7);
    }

    .county-feature-grid article:nth-child(2) {
      background: linear-gradient(145deg, #f3f8ee, #cbd9bd);
    }

    .county-feature-grid article:nth-child(3) {
      background: linear-gradient(145deg, #eef6f3, #b9d2c4);
    }

    .property-grid article:nth-child(3n+1),
    .community-grid article:nth-child(3n+1),
    .county-demographic-infographic article:nth-child(3n+1) {
      background: linear-gradient(145deg, #fffaf0, #ead8b7);
    }

    .property-grid article:nth-child(3n+2),
    .community-grid article:nth-child(3n+2),
    .county-demographic-infographic article:nth-child(3n+2) {
      background: linear-gradient(145deg, #f3f8ee, #cbd9bd);
    }

    .property-grid article:nth-child(3n+3),
    .community-grid article:nth-child(3n+3),
    .county-demographic-infographic article:nth-child(3n+3) {
      background: linear-gradient(145deg, #eef6f3, #b9d2c4);
    }

    .county-feature-grid h3,
    .property-grid h3,
    .community-grid h3 {
      margin: 0 0 10px;
      font-size: 21px;
      letter-spacing: -.04em;
    }

    .county-feature-grid p,
    .property-grid p,
    .community-grid p {
      margin: 0;
      font-size: 15px;
      color: #405044;
    }

    .county-split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .callout-card {
      padding: 28px;
      border-radius: 24px;
      background: white;
      border: 1px solid rgba(23, 32, 26, .08);
      box-shadow: 0 18px 44px rgba(23, 32, 26, .08);
    }

    .callout-card h3 {
      margin: 0 0 16px;
      font-size: 22px;
      letter-spacing: -.04em;
    }

    .callout-card ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 12px;
    }

    .callout-card li {
      position: relative;
      padding-left: 28px;
      color: #344238;
      font-size: 15px;
    }

    .callout-card li::before {
      content: "";
      position: absolute;
      left: 0;
      top: .72em;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--field);
      box-shadow: 0 0 0 5px rgba(95, 122, 85, .12);
    }

    .county-demographic-infographic {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      margin-top: 34px;
    }

    .county-demographic-infographic article {
      border: 1px solid rgba(15, 61, 46, 0.12);
      border-radius: 22px;
      padding: 24px;
      box-shadow: 0 14px 34px rgba(18, 38, 32, 0.06);
    }

    .demo-number {
      display: block;
      font-size: clamp(2rem, 4vw, 3rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -0.04em;
      color: #0f3d2e;
      margin-bottom: 14px;
    }

    .county-demographic-infographic h3,
    .county-living-notes h3 {
      margin: 0 0 10px;
    }

    .county-demographic-infographic p,
    .county-living-notes p {
      margin: 0;
    }

    .county-living-notes {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 34px;
    }

    .county-living-notes > div {
      background: rgba(15, 61, 46, 0.06);
      border-radius: 22px;
      padding: 26px;
    }

    .data-note {
      margin-top: 24px;
      font-size: 0.9rem;
      opacity: 0.72;
    }

    .county-page .section-image img {
      width: 100%;
      min-height: 360px;
      height: 100%;
      object-fit: cover;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .county-intro-block {
      display: flex;
      flex-direction: column;
      gap: 40px;
    }

    .county-intro-copy {
      max-width: 760px;
    }

    .county-location-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
      gap: 22px;
      align-items: stretch;
    }

    .county-page .county-location-map {
      margin: 0;
      height: auto;
      align-self: start;
      max-width: 640px;
      background: #f6f4ee;
      border-radius: 28px;
      border: 1px solid rgba(23, 32, 26, 0.08);
      box-shadow: 0 18px 44px rgba(23, 32, 26, 0.08);
      overflow: visible;
    }

    .county-page .county-location-map img {
      width: 100%;
      max-width: 640px;
      height: auto;
      min-height: 0;
      object-fit: contain;
      display: block;
      margin-inline: auto;
      background: #f6f4ee;
      border-radius: 28px 28px 0 0;
    }

    .county-page .county-location-map figcaption {
      margin: 0;
      padding: 16px 24px 20px;
      font-size: 14px;
      line-height: 1.6;
      color: var(--muted);
      text-align: left;
    }

    .jackson-county-page .county-location-panel {
      grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.5fr);
    }

    .jackson-county-page .county-location-map,
    .jackson-county-page .county-location-map img {
      max-width: 780px;
    }

    /* Calhoun County — hero image crop */
    .calhoun-county-page .county-hero-image img {
      object-position: calc(50% + 110px) center;
    }

    .county-distance-card {
      display: flex;
      flex-direction: column;
      padding: 28px 26px;
      border-radius: 28px;
      background: #ffffff;
      border: 1px solid rgba(23, 32, 26, 0.08);
      box-shadow: 0 18px 44px rgba(23, 32, 26, 0.08);
    }

    .county-distance-card h3 {
      margin: 0 0 22px;
      font-size: 20px;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: var(--ink);
    }

    .county-distance-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0;
      flex: 1;
    }

    .county-distance-list li {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 16px 0;
      border-bottom: 1px solid rgba(23, 32, 26, 0.08);
    }

    .county-distance-list li:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .county-distance-list li:first-child {
      padding-top: 0;
    }

    .county-distance-list span {
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      line-height: 1.3;
    }

    .county-distance-list strong {
      font-size: 17px;
      font-weight: 800;
      color: var(--field-dark);
      white-space: nowrap;
      letter-spacing: -0.02em;
    }

    .distance-note {
      margin: 20px 0 0;
      font-size: 13px;
      line-height: 1.5;
      color: var(--muted);
    }

    .county-photo-gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 34px;
    }

    .county-photo-gallery figure {
      margin: 0;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 14px 34px rgba(18, 38, 32, 0.08);
    }

    .county-photo-gallery img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
      display: block;
    }

    .county-property-intro {
      align-items: center;
      margin-bottom: 42px;
    }

    .county-property-intro .split-image {
      min-width: 0;
    }

    .county-relocation-layout,
    .county-intro-split,
    .county-agent-split,
    .county-access-layout {
      align-items: center;
    }

    .relocation-aside {
      display: grid;
      gap: 22px;
      min-width: 0;
    }

    .relocation-aside .section-image img {
      min-height: 280px;
    }

    .county-page .county-access-section .coastal-access-card {
      margin: 0;
      min-width: 0;
    }

    .washington-county-page .county-access-section .coastal-access-card img {
      height: 445px;
    }

    .county-page .county-visual-card {
      padding: 0;
      overflow: hidden;
      background: #ffffff;
    }

    .county-page .county-visual-card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .county-page .county-feature-grid .county-visual-card,
    .county-page .property-grid .county-visual-card,
    .county-page .community-grid .county-visual-card {
      background: #ffffff;
    }

    .county-page .county-visual-card h3 {
      margin: 0;
      padding: 20px 24px 10px;
    }

    .county-page .county-visual-card p {
      margin: 0;
      padding: 0 24px 24px;
    }

    .county-agent-split .section-image {
      width: 100%;
      max-width: 440px;
      margin-inline: auto;
      overflow: hidden;
      border-radius: 30px;
      box-shadow: var(--shadow);
    }

    .county-agent-split .section-image img {
      width: 100%;
      height: auto;
      min-height: 0;
      aspect-ratio: 3 / 2;
      object-fit: cover;
      object-position: center 18%;
    }

    @media (max-width: 900px) {
      .county-demographic-infographic {
        grid-template-columns: repeat(2, 1fr);
      }

      .county-living-notes {
        grid-template-columns: 1fr;
      }

      .county-buyer-mistakes-list {
        grid-template-columns: 1fr;
      }

      .county-photo-gallery {
        grid-template-columns: repeat(2, 1fr);
      }

      .county-location-panel {
        grid-template-columns: 1fr;
      }

      .county-distance-card {
        max-width: 420px;
      }
    }

    @media (max-width: 620px) {
      .county-demographic-infographic {
        grid-template-columns: 1fr;
      }

      .county-photo-gallery {
        grid-template-columns: 1fr;
      }
    }

    .image-text-section .section-image .image-placeholder {
      width: 100%;
      min-height: 400px;
    }

    .internal-link-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 34px;
    }

    .internal-link-grid a {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 58px;
      padding: 16px 20px;
      border-radius: 18px;
      background: white;
      border: 1px solid rgba(23, 32, 26, .08);
      font-weight: 800;
      text-align: center;
      box-shadow: 0 12px 30px rgba(23, 32, 26, .06);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .internal-link-grid a:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 40px rgba(23, 32, 26, .1);
    }

    .county-buyer-insights-layout {
      display: grid;
      gap: 36px;
    }

    .county-buyer-insights-intro {
      max-width: 760px;
    }

    .county-buyer-insights-intro p:last-child {
      margin-bottom: 0;
    }

    .county-buyer-mistakes-list {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 18px;
    }

    .county-page .county-buyer-insights-section .county-buyer-mistakes-list li {
      font-size: 15px;
      line-height: 1.65;
      color: rgba(255, 255, 255, .76);
      padding: 20px 22px;
      border-radius: 18px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
    }

    .county-page .county-buyer-insights-section .county-buyer-mistakes-list strong {
      color: white;
    }

    .county-page .faq-section {
      padding-top: 0;
    }

    .county-page .faq-section .faq-list {
      margin-top: 28px;
    }

    .county-page .faq-section h2 {
      margin-top: 0;
    }

    .county-cta {
      padding: 88px 22px;
      background: linear-gradient(135deg, var(--field-dark), var(--ink));
      color: white;
      text-align: center;
    }

    .county-cta h2 {
      color: white;
      margin-bottom: 16px;
    }

    .county-cta p {
      color: rgba(255, 255, 255, .76);
      margin: 0 auto 28px;
      max-width: 680px;
    }

    .county-cta .btn.primary {
      background: white;
      color: var(--ink);
    }

    /* Footer */
    footer {
      background: var(--ink);
      color: rgba(255, 255, 255, .68);
      border-top: 1px solid rgba(255, 255, 255, .1);
      padding: 34px 22px;
      font-size: 14px;
    }

    .footer-inner {
      max-width: var(--max);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    .footer-links {
      display: grid;
      gap: 8px;
      min-width: 150px;
    }

    .footer-social-block {
      min-width: 220px;
    }

    .footer-social-block > strong {
      display: block;
      margin-bottom: 12px;
    }

    .footer-social-subheading {
      margin: 18px 0 12px;
      font-size: 14px;
      font-weight: 700;
      color: white;
    }

    .footer-icon-list {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-icon-list a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 42px;
      height: 42px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, .2);
      background: rgba(255, 255, 255, .06);
      color: rgba(255, 255, 255, .9);
      transition: background .2s ease, border-color .2s ease, color .2s ease;
    }

    .footer-icon-list a:hover {
      background: rgba(255, 255, 255, .14);
      border-color: rgba(255, 255, 255, .38);
      color: white;
    }

    .footer-icon-list a[hidden] {
      display: none;
    }

    .footer-icon-list svg {
      width: 18px;
      height: 18px;
      fill: currentColor;
    }

    footer strong {
      color: white;
    }

    footer a {
      color: rgba(255, 255, 255, .82);
    }

    footer a:hover {
      color: white;
    }

    .footer-bottom {
      max-width: var(--max);
      margin: 28px auto 0;
      padding-top: 18px;
      border-top: 1px solid rgba(255, 255, 255, .1);
      color: rgba(255, 255, 255, .5);
      font-size: 13px;
    }

    /* Tablet Responsive Styles */
    @media (max-width: 980px) {
      .hero,
      .section-head,
      .split,
      .cta-box,
      .faq-wrap {
        grid-template-columns: 1fr;
      }

      .hero {
        padding: 56px 22px 70px;
      }

      .hero-card,
      .hero-card img {
        min-height: 420px;
      }

      .about-page section {
        padding-top: 72px;
        padding-bottom: 72px;
      }

      .about-page .content-stack {
        padding: 26px;
      }

      .county-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .specialty-grid,
      .listing-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .faq-wrap {
        gap: 30px;
      }

      .contact-hero-grid,
      .contact-layout {
        grid-template-columns: 1fr;
      }

      .contact-hero {
        padding-top: 96px;
      }

      .areas-hero-grid,
      .county-hero-grid,
      .resource-hero-grid,
      .resource-layout,
      .county-split,
      .split-section,
      .split-section.reverse,
      .commuting-grid {
        grid-template-columns: 1fr;
        gap: 34px;
      }

      .calhoun-county-page .county-hero-image img {
        object-position: center center;
      }

      .county-feature-grid,
      .property-grid,
      .community-grid,
      .internal-link-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .hero-context-strip,
      .areas-feature-grid {
        grid-template-columns: 1fr;
      }

      .areas-link-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .image-placeholder {
        min-height: 360px;
      }

      .property-image-stack {
        max-width: 620px;
        min-height: 390px;
      }

      .coastal-access-card {
        max-width: 560px;
        transform: none;
      }
    }

    /* Mobile Responsive Styles */
    @media (max-width: 640px) {
      section {
        padding: 82px 20px;
      }

      .nav {
        padding: 12px 16px;
        gap: 10px;
        min-height: 74px;
      }

      .mobile-menu-header strong {
        font-size: 15px;
      }

      .mobile-menu-header span {
        font-size: 11px;
      }

      .mobile-menu-cta {
        display: block;
      }

      .hero {
        padding: 38px 20px 58px;
        gap: 26px;
      }

      h1 {
        font-size: clamp(38px, 11vw, 50px);
        line-height: .96;
      }

      h2 {
        font-size: clamp(34px, 10vw, 46px);
      }

      .hero p {
        font-size: 18px;
      }

      .btn,
      .hero-actions,
      .market-actions {
        width: 100%;
      }

      .hero-actions,
      .market-actions {
        align-items: stretch;
      }

      .hero-actions .btn,
      .market-actions .btn {
        width: 100%;
      }

      .hero-card {
        transform: none;
      }

      .hero-card,
      .hero-card img {
        min-height: 300px;
      }

      .about-page section {
        padding-top: 62px;
        padding-bottom: 62px;
      }

      .about-page .content-stack {
        padding: 22px;
        border-radius: 24px;
      }

      .about-page .feature-image {
        transform: none;
      }

      .about-page .feature-image img {
        min-height: 300px;
      }

      .policy-hero {
        padding-top: 62px;
        padding-bottom: 36px;
      }

      .policy-card {
        padding: 24px;
        border-radius: 24px;
      }

      .resource-hero {
        padding: 54px 20px 48px;
      }

      .resource-content-section {
        padding: 56px 20px 72px;
      }

      .resource-content {
        padding: 24px;
        border-radius: 24px;
      }

      .resource-content h2 {
        margin-top: 36px;
        padding-left: 14px;
      }

      .resource-sidebar {
        position: static;
      }

      .resource-cta {
        padding: 28px 24px;
      }

      .section-head {
        gap: 14px;
        margin-bottom: 32px;
      }

      .county-grid,
      .specialty-grid,
      .listing-grid,
      .pathways {
        grid-template-columns: 1fr;
        gap: 18px;
      }

      .areas-hero,
      .areas-overview,
      .county-differences,
      .property-types,
      .commuting-section,
      .relocation-section,
      .areas-links,
      .areas-cta {
        padding: 66px 20px;
      }

      .areas-hero {
        padding-top: 54px;
      }

      .areas-link-grid,
      .county-feature-grid,
      .property-grid,
      .community-grid,
      .internal-link-grid {
        grid-template-columns: 1fr;
      }

      .county-section,
      .county-hero,
      .county-cta {
        padding: 66px 20px;
      }

      .county-hero-image .image-placeholder,
      .county-hero-image img,
      .image-text-section .section-image .image-placeholder {
        min-height: 280px;
        border-radius: 24px;
      }

      .areas-link-card {
        min-height: auto;
        padding: 24px;
      }

      .hero-button-row,
      .primary-btn,
      .secondary-btn {
        width: 100%;
      }

      .hero-context-strip {
        grid-template-columns: 1fr;
        gap: 10px;
      }

      .hero-context-strip div,
      .areas-feature-card {
        padding: 20px;
      }

      .image-placeholder {
        min-height: 300px;
        padding: 26px;
        border-radius: 24px;
      }

      .areas-hero-image img {
        min-height: 300px;
        border-radius: 24px;
      }

      .split-image img {
        min-height: 300px;
        border-radius: 24px;
      }

      .property-image-stack {
        min-height: auto;
        padding: 0;
        display: grid;
        gap: 14px;
      }

      .property-image-stack::before {
        display: none;
      }

      .split-image .property-image-main,
      .split-image .property-image-overlap {
        position: static;
        width: 100%;
        height: 220px;
        min-height: 220px;
        border-radius: 24px;
      }

      .split-image .property-image-overlap {
        border: 0;
      }

      .coastal-access-card {
        padding: 10px;
      }

      .coastal-access-card img {
        height: 220px;
      }

      .image-placeholder strong {
        font-size: clamp(28px, 9vw, 38px);
      }

      .county-card {
        min-height: auto;
        padding: 22px;
      }

      .desktop-balance-image {
        display: none;
      }

      .split-img,
      .split-img img {
        min-height: 320px;
        height: 320px;
      }

      .listing-card img {
        height: 230px;
      }

      .path-card {
        padding: 26px;
      }

      .faq-section {
        padding: 76px 20px;
      }

      .faq-list summary {
        padding: 16px 18px;
      }

      .faq-list details p {
        padding: 0 18px 18px;
      }

      .cta {
        padding: 82px 20px;
      }

      .contact-card {
        padding: 22px;
      }

      .contact-form,
      .contact-hero .contact-card,
      .contact-note {
        padding: 24px;
        border-radius: 20px;
      }

      .mark {
        width: 42px;
        height: 42px;
      }

      .brand-logo {
        height: 60px;
        max-width: 280px;
      }

      .footer-inner {
        display: grid;
        gap: 18px;
      }
    }

/* =========================================================
   PROPERTY SEARCH PAGE
========================================================= */

.property-search-page .idx-hero {
  padding: 120px 24px 90px;
  background:
    linear-gradient(
      135deg,
      rgba(31, 43, 34, .94),
      rgba(31, 43, 34, .76)
    ),
    url("/images/property-search-hero.webp") center center / cover no-repeat;
  color: #fff;
}

.property-search-page .idx-hero-inner {
  max-width: 1120px;
  margin: 0 auto;
}

.property-search-page .idx-hero h1 {
  max-width: 860px;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: .98;
  margin: 0 0 24px;
}

.property-search-page .idx-hero p {
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .86);
}

.property-search-page .idx-viewer-bar {
  padding: 28px 24px 0;
  background: #f7f3ec;
}

.property-search-page .idx-viewer-bar-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
}

.property-search-page .breadcrumbs-bar {
  background: #f7f3ec;
}

.property-search-page .idx-viewer-breadcrumb {
  font-size: .92rem;
}

.property-search-page .idx-viewer-back {
  display: inline-flex;
  align-items: center;
  padding: 10px 18px;
  font-size: .9rem;
  text-decoration: none;
}

.property-search-page .idx-search-layout {
  max-width: 1180px;
  margin: 0 auto;
}

.property-search-page .idx-search-switcher {
  margin: 0 0 16px;
  border: 1px solid rgba(31, 43, 34, .1);
  border-radius: 14px;
  background: rgba(255, 255, 255, .72);
}

.property-search-page .idx-search-switcher summary {
  padding: 12px 16px;
  font-size: .88rem;
  font-weight: 700;
  color: #575149;
  cursor: pointer;
  list-style: none;
}

.property-search-page .idx-search-switcher summary::-webkit-details-marker {
  display: none;
}

.property-search-page .idx-search-switcher summary::after {
  content: "Show";
  float: right;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9a7a46;
}

.property-search-page .idx-search-switcher[open] summary::after {
  content: "Hide";
}

.property-search-page .idx-search-switcher-panel {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px 20px;
  max-height: 240px;
  overflow-y: auto;
  padding: 4px 16px 16px;
  border-top: 1px solid rgba(31, 43, 34, .08);
  scrollbar-width: thin;
}

.property-search-page .idx-switcher-group-label {
  margin: 0 0 6px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9a7a46;
}

.property-search-page .idx-switcher-group--two-col {
  grid-column: span 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
  row-gap: 2px;
  align-content: start;
}

.property-search-page .idx-switcher-group--two-col .idx-switcher-group-label {
  grid-column: 1 / -1;
}

.property-search-page .idx-switcher-group--two-col .idx-switcher-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px 20px;
}

.property-search-page .idx-switcher-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.property-search-page .idx-switcher-list a {
  display: block;
  padding: 3px 0;
  font-size: .84rem;
  font-weight: 600;
  line-height: 1.35;
  color: #575149;
  text-decoration: none;
}

.property-search-page .idx-switcher-list a:hover,
.property-search-page .idx-switcher-list a:focus-visible {
  color: #1f2b22;
  text-decoration: underline;
}

.property-search-page .idx-switcher-list a.is-active {
  color: #1f2b22;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.property-search-page .idx-disclaimer {
  max-width: none;
  margin: 0 0 16px;
  font-size: .82rem;
  line-height: 1.55;
  color: #6a6258;
}

.property-search-page .idx-search-section {
  padding: 90px 24px 70px;
  background: #f7f3ec;
}

.property-search-page .idx-viewer-bar + .idx-search-section {
  padding-top: 24px;
}

.property-search-page .idx-frame-wrap {
  max-width: none;
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 18px 50px rgba(35, 28, 20, .12);
}

.property-search-page .idx-frame-wrap iframe {
  display: block;
  width: 100%;
  min-height: 850px;
  border: 0;
  background: #fff;
}

.property-search-page .saved-search-section {
  padding: 88px 24px;
  background: #fff;
}

.property-search-page .saved-search-section.search-alt {
  background: #f7f3ec;
}

.property-search-page .section-heading {
  max-width: 1180px;
  margin: 0 auto 38px;
}

.property-search-page .section-heading h2 {
  max-width: 820px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 18px;
  color: #1f2b22;
}

.property-search-page .section-heading p {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #575149;
}

.property-search-page .eyebrow {
  display: block;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 800;
  color: #9a7a46;
  margin-bottom: 14px;
  background: none;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.property-search-page .idx-hero .eyebrow {
  color: #d8b36a;
}

.property-search-page .saved-search-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.property-search-page .saved-search-card {
  display: block;
  padding: 28px;
  border-radius: 22px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  border: 1px solid rgba(31, 43, 34, .08);
  box-shadow: 0 18px 45px rgba(35, 28, 20, .08);
  transition:
    transform .2s ease,
    box-shadow .2s ease,
    border-color .2s ease;
}

.property-search-page .saved-search-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(35, 28, 20, .14);
  border-color: rgba(154, 122, 70, .35);
}

.property-search-page .saved-search-card span {
  display: inline-block;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .75rem;
  font-weight: 800;
  color: #9a7a46;
}

.property-search-page .saved-search-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  line-height: 1.2;
  color: #1f2b22;
}

.property-search-page .saved-search-card p {
  margin: 0;
  line-height: 1.65;
  color: #575149;
}

.property-search-page .saved-search-category {
  max-width: 1180px;
  margin: 0 auto 24px;
  padding: 28px;
  border-radius: 22px;
  background: #f7f3ec;
  border: 1px solid rgba(31, 43, 34, .08);
}

.property-search-page .search-alt .saved-search-category {
  background: #fff;
}

.property-search-page .saved-search-category h3 {
  margin: 0 0 18px;
  font-size: 1.35rem;
  color: #1f2b22;
}

.property-search-page .saved-search-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.property-search-page .saved-search-list a {
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 14px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(31, 43, 34, .08);
  color: #1f2b22;
  font-weight: 700;
  text-decoration: none;
  transition:
    background .2s ease,
    color .2s ease,
    border-color .2s ease;
}

.property-search-page .search-alt .saved-search-list a {
  background: #f7f3ec;
}

.property-search-page .saved-search-list a:hover {
  background: #26382b;
  border-color: #26382b;
  color: #fff;
}

.property-search-page .wide-list {
  max-width: 1180px;
  margin: 0 auto;
  grid-template-columns: repeat(4, 1fr);
}

.property-search-page .acreage-search-wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 28px;
  border-radius: 22px;
  background: #f7f3ec;
  border: 1px solid rgba(31, 43, 34, .08);
}

.property-search-page .acreage-search-wrap .wide-list {
  max-width: none;
  margin: 0;
}

.property-search-page .property-search-guidance {
  padding: 90px 24px;
  background: #26382b;
  color: #fff;
}

.property-search-page .guidance-content {
  max-width: 1180px;
  margin: 0 auto;
}

.property-search-page .guidance-content h2 {
  max-width: 850px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 18px;
}

.property-search-page .guidance-content > p {
  max-width: 780px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, .84);
}

.property-search-page .guidance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.property-search-page .guidance-item {
  padding: 24px;
  border-radius: 20px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
}

.property-search-page .guidance-item h3 {
  margin: 0 0 10px;
  color: #fff;
}

.property-search-page .guidance-item p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, .8);
}

.property-search-page .search-page-cta {
  padding: 90px 24px;
  background: #f7f3ec;
}

.property-search-page .search-page-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 44px;
  border-radius: 30px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(35, 28, 20, .1);
}

.property-search-page .search-page-cta-inner h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.06;
  margin: 0 0 18px;
  color: #1f2b22;
}

.property-search-page .search-page-cta-inner > p {
  max-width: 760px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #575149;
}

.property-search-page .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.property-search-page .btn-primary,
.property-search-page .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
}

.property-search-page .btn-primary {
  background: #d8b36a;
  color: #1d1a14;
}

.property-search-page .btn-secondary {
  border: 1px solid currentColor;
  color: inherit;
  background: transparent;
}

.property-search-page .idx-hero .btn-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, .55);
}

.property-search-page .search-page-cta-inner .btn-secondary {
  color: #1f2b22;
  border-color: rgba(31, 43, 34, .25);
}

.property-search-page .licensed-box {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 43, 34, .12);
}

.property-search-page .licensed-box p {
  margin: 4px 0;
  font-size: .95rem;
  color: #575149;
}

@media (max-width: 980px) {
  .property-search-page .saved-search-grid,
  .property-search-page .guidance-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-search-page .saved-search-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .property-search-page .wide-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .property-search-page .wide-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .property-search-page .idx-hero {
    padding: 90px 18px 68px;
  }

  .property-search-page .idx-search-section,
  .property-search-page .saved-search-section,
  .property-search-page .property-search-guidance,
  .property-search-page .search-page-cta {
    padding: 70px 18px;
  }

  .property-search-page .idx-search-switcher-panel {
    grid-template-columns: 1fr;
    max-height: 280px;
  }

  .property-search-page .idx-switcher-group--two-col {
    grid-column: span 1;
    display: block;
  }

  .property-search-page .idx-switcher-group--two-col .idx-switcher-list {
    grid-template-columns: 1fr;
  }

  .property-search-page .idx-frame-wrap {
    border-radius: 16px;
  }

  .property-search-page .idx-frame-wrap iframe {
    min-height: 720px;
  }

  .property-search-page .saved-search-grid,
  .property-search-page .saved-search-list,
  .property-search-page .wide-list,
  .property-search-page .guidance-grid {
    grid-template-columns: 1fr;
  }

  .property-search-page .saved-search-card,
  .property-search-page .saved-search-category,
  .property-search-page .search-page-cta-inner {
    padding: 24px;
    border-radius: 20px;
  }

  .property-search-page .saved-search-list a {
    border-radius: 16px;
  }

  .property-search-page .acreage-search-wrap {
    padding: 24px;
    border-radius: 20px;
  }

  .property-search-page .wide-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .property-search-page .wide-list a {
    width: 100%;
    justify-content: center;
    text-align: center;
    box-sizing: border-box;
  }

  .property-search-page .hero-actions {
    flex-direction: column;
  }

  .property-search-page .btn-primary,
  .property-search-page .btn-secondary {
    width: 100%;
  }
}