:root {
      --forest: #0f2d24;
      --forest-mid: #1a4a3a;
      --forest-soft: #2d6b52;
      --river: #1a5f8a;
      --river-light: #3d8ab8;
      --sunrise: #d96d1a;
      --sunrise-hover: #b85a12;
      --gold: #c4a035;
      --gold-bright: #e8c547;
      --cream: #f4f1ea;
      --cream-warm: #ebe6dc;
      --ink: #0d1814;
      --ink-muted: #4a5a52;
      --white: #fff;
      --header-h: 4.25rem;
      --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
      --shadow-soft: 0 25px 80px rgba(15, 45, 36, 0.12);
      --shadow-lift: 0 20px 50px rgba(13, 24, 20, 0.18);
    }
    * {
      box-sizing: border-box;
    }
    html {
      scroll-behavior: smooth;
    }
    body {
      margin: 0;
      font-family: Outfit, system-ui, sans-serif;
      font-weight: 400;
      color: var(--ink);
      background: var(--cream);
      line-height: 1.65;
      font-size: 1.0625rem;
    }
    .font-display {
      font-family: "Cormorant Garamond", Georgia, serif;
    }
    a {
      color: var(--river);
    }
    a:hover {
      color: var(--forest-mid);
    }
    .skip-link {
      position: absolute;
      left: -9999px;
      top: 0;
      background: var(--forest);
      color: var(--white);
      padding: 0.5rem 1rem;
      z-index: 200;
    }
    .skip-link:focus {
      left: 0.5rem;
      top: 0.5rem;
    }
    .shell {
      width: min(1240px, 100% - 2.5rem);
      margin-inline: auto;
    }
    @media (max-width: 640px) {
      .shell {
        width: min(1240px, 100% - 1.75rem);
      }
    }

    /* —— Sticky glass header (Iceland-style minimal bar) —— */
    .top-header {
      position: fixed;
      inset: 0 0 auto 0;
      z-index: 100;
      height: var(--header-h);
      display: flex;
      align-items: center;
      transition: background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out), backdrop-filter 0.45s;
    }
    body:has(.interior-page) .top-header:not(.top-header--interior) {
      visibility: hidden;
    }
    .top-header.top-header--interior {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      visibility: visible;
    }
    .top-header.is-scrolled {
      background: rgba(15, 45, 36, 0.88);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
    }
    .top-header:not(.is-scrolled) {
      background: linear-gradient(to bottom, rgba(13, 24, 20, 0.55), transparent);
    }
    .top-header__inner {
      width: min(1240px, 100% - 2.5rem);
      margin-inline: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
    }
    .brand-row {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      color: inherit;
    }
    .brand-row:hover {
      color: inherit;
    }
    .brand-row .logo-sm {
      width: clamp(210px, 44vw, 500px);
      height: auto;
      margin-top: 70px;
      border-radius: 0;
      border: none;
      background: transparent;
      padding: 0;
      box-shadow: none;
      transition: width 0.35s var(--ease-out);
    }
    .top-header.is-scrolled .brand-row .logo-sm {
      width: 225px;
      margin-top: 0;
    }
    nav.main-nav > ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-end;
      gap: 0.15rem 1.35rem;
    }
    nav.main-nav > ul > li {
      position: relative;
      /* Bigger hover target so dropdowns stay open */
      padding-bottom: 0.55rem;
      margin-bottom: -0.55rem;
    }
    nav.main-nav > ul > li > a {
      color: rgba(255, 255, 255, 0.92);
      text-decoration: none;
      font-weight: 500;
      font-size: 0.84rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.35rem 0;
      position: relative;
      display: inline-block;
    }
    nav.main-nav > ul > li > a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--gold-bright);
      transition: width 0.35s var(--ease-out);
    }
    nav.main-nav > ul > li > a:hover {
      color: var(--white);
    }
    nav.main-nav > ul > li > a:hover::after {
      width: 100%;
    }
    .nav-dropdown__toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.35rem;
      background: none;
      border: none;
      cursor: pointer;
      color: rgba(255, 255, 255, 0.92);
      font-family: inherit;
      font-weight: 500;
      font-size: 0.84rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      padding: 0.55rem 0;
      position: relative;
    }
    .nav-dropdown__toggle::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 1px;
      background: var(--gold-bright);
      transition: width 0.35s var(--ease-out);
    }
    .nav-dropdown__toggle:hover,
    .nav-dropdown__toggle[aria-expanded="true"] {
      color: var(--white);
    }
    .nav-dropdown:hover .nav-dropdown__toggle::after,
    .nav-dropdown:focus-within .nav-dropdown__toggle::after,
    .nav-dropdown__toggle:hover::after,
    .nav-dropdown__toggle[aria-expanded="true"]::after {
      width: 100%;
    }
    .nav-dropdown__toggle .nav-chevron {
      font-size: 0.55rem;
      opacity: 0.75;
      transition: transform 0.25s var(--ease-out);
    }
    .nav-dropdown.is-open .nav-dropdown__toggle .nav-chevron {
      transform: rotate(180deg);
    }
    .nav-submenu {
      list-style: none;
      margin: 0;
      padding: 0.5rem 0;
      position: absolute;
      top: 100%;
      left: 50%;
      transform: translateX(-50%);
      min-width: 16.5rem;
      background: rgba(15, 45, 36, 0.97);
      border: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
      border-radius: 2px;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s var(--ease-out), visibility 0.25s;
      z-index: 120;
    }
    .nav-submenu::before {
      content: "";
      position: absolute;
      top: -12px;
      left: 0;
      right: 0;
      height: 12px;
      /* invisible bridge between trigger and menu */
    }
    @media (min-width: 901px) {
      .top-header.is-scrolled nav.main-nav > ul > li > a,
      .top-header.is-scrolled .nav-dropdown__toggle {
        white-space: nowrap;
      }
      .top-header.is-scrolled .nav-dropdown:hover .nav-submenu,
      .top-header.is-scrolled .nav-dropdown:focus-within .nav-submenu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
      }
    }
    .nav-submenu a {
      display: block;
      padding: 0.55rem 1.15rem;
      color: rgba(255, 255, 255, 0.9);
      text-decoration: none;
      font-size: 0.8rem;
      font-weight: 500;
      letter-spacing: 0.02em;
      text-transform: none;
      border-left: 3px solid transparent;
      transition: background 0.2s, border-color 0.2s, color 0.2s;
    }
    .nav-submenu a:hover {
      color: var(--white);
      background: rgba(255, 255, 255, 0.06);
      border-left-color: var(--gold-bright);
    }
    .nav-submenu a:focus-visible {
      outline: 2px solid var(--gold-bright);
      outline-offset: -2px;
    }
    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--white);
      font-size: 2.5rem;
      padding: 0.35rem;
      cursor: pointer;
    }
    @media (max-width: 900px) {
      .nav-toggle {
        display: block;
      }
      nav.main-nav {
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        background: rgba(15, 45, 36, 0.97);
        backdrop-filter: blur(12px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s var(--ease-out);
      }
      nav.main-nav.is-open {
        max-height: min(85vh, 720px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      }
      nav.main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.25rem;
        gap: 0;
      }
      nav.main-nav > ul > li > a {
        display: block;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        white-space: normal;
      }
      .nav-dropdown__toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: left;
        white-space: normal;
      }
      .nav-dropdown__toggle::after {
        display: none;
      }
      .nav-submenu {
        position: static;
        transform: none;
        left: auto;
        min-width: 0;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.18);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        padding: 0;
        transition: max-height 0.45s var(--ease-out);
      }
      .nav-dropdown.is-open .nav-submenu {
        max-height: 560px;
        pointer-events: auto;
        padding: 0.35rem 0 0.5rem;
      }
      .nav-submenu a {
        padding: 0.55rem 1rem 0.55rem 1.25rem;
        font-size: 0.85rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }
    }

    /* Desktop wide: hero = hamburger only; after scroll = full horizontal nav */
    @media (min-width: 901px) {
      .top-header:not(.is-scrolled) .nav-toggle {
        display: block;
        margin-left: auto;
        position: relative;
        z-index: 2;
      }

      .top-header:not(.is-scrolled) nav.main-nav {
        /* Fixed panel must span the viewport — width:0 + left/right was collapsing to 0px wide. */
        flex: 0 0 auto;
        position: fixed;
        top: var(--header-h);
        left: 0;
        right: 0;
        width: auto;
        z-index: 1;
        background: rgba(15, 45, 36, 0.97);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s var(--ease-out);
        pointer-events: none;
      }

      .top-header:not(.is-scrolled) nav.main-nav.is-open {
        max-height: min(85vh, 720px);
        overflow-y: auto;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        pointer-events: auto;
      }

      .top-header:not(.is-scrolled) nav.main-nav > ul {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem 1.5rem 1.25rem;
        gap: 0;
      }

      .top-header:not(.is-scrolled) nav.main-nav > ul > li > a {
        display: block;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        white-space: normal;
      }

      .top-header:not(.is-scrolled) .nav-dropdown__toggle {
        display: flex;
        width: 100%;
        justify-content: space-between;
        padding: 0.65rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        text-align: left;
        white-space: normal;
      }

      .top-header:not(.is-scrolled) .nav-dropdown__toggle::after {
        display: none;
      }

      .top-header:not(.is-scrolled) .nav-submenu {
        position: static;
        transform: none;
        left: auto;
        min-width: 0;
        box-shadow: none;
        border: none;
        background: rgba(0, 0, 0, 0.18);
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        opacity: 1;
        visibility: visible;
        pointer-events: none;
        padding: 0;
        transition: max-height 0.45s var(--ease-out);
      }

      .top-header:not(.is-scrolled) .nav-dropdown.is-open .nav-submenu {
        max-height: 560px;
        pointer-events: auto;
        padding: 0.35rem 0 0.5rem;
      }

      .top-header:not(.is-scrolled) .nav-submenu a {
        padding: 0.55rem 1rem 0.55rem 1.25rem;
        font-size: 0.85rem;
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
      }

      .top-header.is-scrolled .nav-toggle {
        display: none;
      }

      .top-header.is-scrolled nav.main-nav {
        flex: 1 1 auto;
        width: auto;
        min-width: 0;
        position: static;
        z-index: auto;
        max-height: none !important;
        overflow: visible !important;
        background: transparent;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border-bottom: none;
        pointer-events: auto;
      }

      .top-header.is-scrolled nav.main-nav > ul {
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        padding: 0;
        gap: 0.15rem 1.35rem;
      }

      .top-header.is-scrolled nav.main-nav > ul > li > a {
        display: inline-block;
        padding: 0.35rem 0;
        border-bottom: none;
      }

      .top-header.is-scrolled .nav-dropdown__toggle {
        display: inline-flex;
        width: auto;
        justify-content: flex-start;
        padding: 0.55rem 0;
        border-bottom: none;
        text-align: left;
      }

      .top-header.is-scrolled .nav-dropdown__toggle::after {
        display: block;
      }

      .top-header.is-scrolled .nav-submenu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        min-width: 17.5rem;
        background: rgba(15, 45, 36, 0.97);
        border: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
        border-radius: 2px;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: none;
        overflow: visible;
        padding: 0.5rem 0;
        transition: opacity 0.25s var(--ease-out), visibility 0.25s;
      }

      .top-header.is-scrolled .nav-submenu a {
        padding: 0.55rem 1.15rem;
        font-size: 1rem;
        border-left: 3px solid transparent;
        border-bottom: none;
      }
    }

    /* —— Full-viewport hero —— */
    .hero-cinematic {
      position: relative;
      min-height: 100svh;
      height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding-bottom: clamp(2.5rem, 8vh, 5rem);
      padding-top: calc(var(--header-h) + 2rem);
      overflow: hidden;
    }
    .hero-cinematic__bg {
      position: absolute;
      inset: 0;
      overflow: hidden;
      transform: scale(1.02);
      animation: hero-ken 28s ease-in-out infinite alternate;
    }
    .hero-cinematic__bg-video {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    @keyframes hero-ken {
      from { transform: scale(1.02) translate(0, 0); }
      to { transform: scale(1.08) translate(-1%, 0.5%); }
    }
    .hero-cinematic__veil {
      position: absolute;
      inset: 0;
      background:
        linear-gradient(160deg, rgba(13, 24, 20, 0.25) 0%, rgba(15, 45, 36, 0.55) 35%, rgba(13, 24, 20, 0.88) 100%);
      pointer-events: none;
    }
    .hero-cinematic__grain {
      position: absolute;
      inset: 0;
      opacity: 0.07;
      pointer-events: none;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    }
    .hero-cinematic__content {
      position: relative;
      z-index: 2;
      max-width: 56rem;
      animation: fade-up 1.1s var(--ease-out) 0.15s both;
    }
    .hero-play-btn {
      position: absolute;
      top: calc(var(--header-h) + 1.1rem);
      right: clamp(0.9rem, 3vw, 2rem);
      z-index: 3;
      width: 4.5rem;
      height: 4.5rem;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, 0.92);
      background: radial-gradient(circle at 30% 30%, #ef953e 0%, var(--sunrise) 45%, #b84f0a 100%);
      color: var(--white);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      box-shadow: 0 14px 38px rgba(217, 109, 26, 0.52), 0 2px 18px rgba(0, 0, 0, 0.35);
      transition: transform 0.25s var(--ease-out), filter 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
    }
    .hero-play-btn i {
      font-size: 1.35rem;
      transform: translateX(2px);
    }
    .hero-play-btn::before {
      content: "";
      position: absolute;
      inset: -10px;
      border-radius: 999px;
      border: 2px solid rgba(255, 255, 255, 0.38);
      animation: hero-play-pulse 2s ease-out infinite;
      pointer-events: none;
    }
    .hero-play-btn::after {
      content: "WATCH VIDEO";
      position: absolute;
      top: calc(100% + 0.55rem);
      left: 50%;
      transform: translateX(-50%);
      font-size: 0.62rem;
      letter-spacing: 0.18em;
      font-weight: 700;
      color: var(--white);
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.55);
      white-space: nowrap;
      pointer-events: none;
    }
    @keyframes hero-play-pulse {
      0% {
        opacity: 0.7;
        transform: scale(0.96);
      }
      70% {
        opacity: 0;
        transform: scale(1.2);
      }
      100% {
        opacity: 0;
        transform: scale(1.2);
      }
    }
    .hero-play-btn:hover {
      color: var(--white);
      border-color: rgba(255, 255, 255, 0.7);
      transform: translateY(-2px) scale(1.05);
      filter: brightness(1.08);
    }
    .hero-play-btn:focus-visible {
      outline: 3px solid rgba(232, 197, 71, 0.65);
      outline-offset: 3px;
    }
    @keyframes fade-up {
      from {
        opacity: 0;
        transform: translateY(2rem);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .eyebrow {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold-bright);
      margin: 0 0 1rem;
    }
    .display-hero {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 600;
      font-size: clamp(2.75rem, 7.5vw, 4.75rem);
      line-height: 1.02;
      color: var(--white);
      margin: 0 0 1.25rem;
      letter-spacing: -0.02em;
    }
    .display-hero em {
      font-style: italic;
      font-weight: 500;
      color: rgba(255, 255, 255, 0.92);
    }
    .hero-lead {
      font-size: clamp(1rem, 2.2vw, 1.2rem);
      font-weight: 300;
      color: rgba(255, 255, 255, 0.88);
      max-width: 48rem;
      margin: 0 0 2rem;
      line-height: 1.7;
    }
    .hero-lead strong {
      font-weight: 600;
      color: var(--white);
    }
    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.85rem;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.55rem;
      font-family: inherit;
      font-weight: 600;
      font-size: 0.8125rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 1rem 1.75rem;
      border-radius: 2px;
      text-decoration: none;
      border: none;
      cursor: pointer;
      transition: transform 0.3s var(--ease-out), box-shadow 0.3s, background 0.3s, color 0.3s;
    }
    .btn-primary {
      background: var(--sunrise);
      color: var(--white);
      box-shadow: 0 12px 40px rgba(217, 109, 26, 0.35);
    }
    .btn-primary:hover {
      background: var(--sunrise-hover);
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 18px 50px rgba(217, 109, 26, 0.4);
    }
    .btn-ghost {
      background: rgba(255, 255, 255, 0.1);
      color: var(--white);
      border: 1px solid rgba(255, 255, 255, 0.35);
      backdrop-filter: blur(6px);
    }
    .btn-ghost:hover {
      background: rgba(255, 255, 255, 0.18);
      color: var(--white);
      transform: translateY(-2px);
    }
    .scroll-hint {
      position: absolute;
      bottom: 1.25rem;
      left: 50%;
      transform: translateX(-50%);
      z-index: 2;
      color: rgba(255, 255, 255, 0.55);
      font-size: 0.7rem;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      animation: fade-up 1.2s var(--ease-out) 0.5s both;
    }
    .scroll-hint i {
      font-size: 1rem;
      animation: bounce-soft 2.2s ease-in-out infinite;
    }
    @keyframes bounce-soft {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(6px); }
    }
    .scroll-hint:hover {
      color: var(--gold-bright);
    }

    main {
      position: relative;
    }
    .section-pad {
      padding: clamp(4rem, 12vw, 7rem) 0;
    }
    .section-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--river);
      margin: 0 0 0.75rem;
    }
    .section-title {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-weight: 600;
      font-size: clamp(2rem, 4.5vw, 3.25rem);
      color: var(--forest);
      margin: 0 0 1.5rem;
      line-height: 1.12;
      letter-spacing: -0.02em;
    }
    .section-intro {
      color: var(--ink-muted);
      max-width: 40rem;
      margin: 0 0 2.5rem;
      font-weight: 300;
    }

    /* Split feature (editorial) */
    .split-feature {
      display: grid;
      gap: 0;
      min-height: min(520px, 70vw);
    }
    @media (min-width: 960px) {
      .split-feature {
        grid-template-columns: 1fr 1fr;
      }
      .split-feature.reverse .split-feature__visual {
        order: 2;
      }
      .split-feature.reverse .split-feature__body {
        order: 1;
      }
    }
    .split-feature__visual {
      position: relative;
      min-height: 280px;
      overflow: hidden;
    }
    .split-feature__visual img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 1.2s var(--ease-out);
    }
    .split-feature:hover .split-feature__visual img {
      transform: scale(1.04);
    }
    .split-feature__visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent 40%, rgba(244, 241, 234, 0.15));
      pointer-events: none;
    }
    .split-feature.reverse .split-feature__visual::after {
      background: linear-gradient(270deg, transparent 40%, rgba(244, 241, 234, 0.12));
    }
    .split-feature__body {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: clamp(2rem, 5vw, 4rem);
      background: var(--cream);
    }
    .split-feature.dark .split-feature__body {
      background: var(--forest);
      color: rgba(255, 255, 255, 0.88);
    }
    .split-feature.dark .section-label {
      color: var(--gold-bright);
    }
    .split-feature.dark .section-title {
      color: var(--white);
    }
    .split-feature.dark .section-intro,
    .split-feature.dark .feature-list {
      color: rgba(255, 255, 255, 0.94);
    }
    .split-feature.dark .feature-list strong {
      color: var(--white);
    }

    .feature-list {
      margin: 0;
      padding: 0;
      list-style: none;
    }
    .feature-list li {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1rem;
      padding: 1.15rem 0;
      border-top: 1px solid rgba(15, 45, 36, 0.1);
      color: var(--ink-muted);
      font-weight: 400;
    }
    .split-feature.dark .feature-list li {
      border-top-color: rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.96);
    }
    .split-feature.dark .feature-list a {
      color: var(--gold-bright);
      text-decoration: underline;
      text-underline-offset: 2px;
      font-weight: 600;
    }
    .split-feature.dark .feature-list a:hover {
      color: var(--white);
    }
    .feature-list li:first-child {
      border-top: none;
      padding-top: 0;
    }
    .feature-list .fi {
      width: 2.5rem;
      height: 2.5rem;
      border-radius: 50%;
      background: rgba(26, 95, 138, 0.12);
      color: var(--river);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.95rem;
    }
    .split-feature.dark .feature-list .fi {
      background: rgba(232, 197, 71, 0.15);
      color: var(--gold-bright);
    }

    /* Stat strip */
    .stat-strip {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 1.5rem;
      padding: 2.5rem 0;
      border-block: 0;
      margin-bottom: 3rem;
    }
    .stat-item {
      text-align: center;
    }
    .stat-item .num {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 700;
      color: var(--forest);
      line-height: 1;
    }
    .stat-item .lbl {
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--ink-muted);
      margin-top: 0.5rem;
    }
    .stat-item .city-blurb {
      margin: 0.85rem 0 0;
      color: var(--ink-muted);
      font-size: 1.05rem;
      font-weight: 300;
      line-height: 1.55;
      text-align: left;
    }
    .stat-item .city-link {
      margin-top: 0.95rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.62rem 1.05rem;
      border-radius: 6px;
      border: 1px solid var(--sunrise);
      background: var(--sunrise);
      color: var(--white);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .stat-item .city-link:hover {
      background: var(--sunrise-hover);
      border-color: var(--sunrise-hover);
      color: var(--white);
      transform: translateY(-1px);
    }

    /* Cards row */
    .cards-row {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    .card-lift {
      background: var(--white);
      border-radius: 2px;
      padding: 2rem 1.75rem;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(15, 45, 36, 0.06);
      transition: transform 0.45s var(--ease-out), box-shadow 0.45s;
    }
    .card-lift:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lift);
    }
    .card-lift h4 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--forest);
      margin: 0 0 0.75rem;
    }
    .card-lift p {
      margin: 0;
      color: var(--ink-muted);
      font-weight: 300;
      font-size: 0.98rem;
    }
    .card-lift .icon-ring {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(26, 95, 138, 0.15), rgba(196, 160, 53, 0.2));
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--river);
      margin-bottom: 1.25rem;
      font-size: 1.1rem;
    }

    /* Dark variant for Location section */
    .location-dark {
      background: var(--forest);
      border-radius: 0;
      box-shadow: none;
    }
    .location-dark .stat-strip {
      border-block: 1px solid rgba(255, 255, 255, 0.14);
    }
    .location-dark .stat-item .num {
      color: var(--white);
    }
    .location-dark .stat-item .lbl {
      color: rgba(255, 255, 255, 0.78);
    }
    .location-dark .card-lift {
      background: rgba(255, 255, 255, 0.96);
    }
    .location-dark .card-lift h4 {
      color: var(--forest);
    }
    .location-dark .card-lift p {
      color: var(--ink-muted);
    }

    /* Gallery */
    .gallery-section {
      background: linear-gradient(180deg, var(--cream-warm) 0%, var(--cream) 45%, var(--white) 100%);
    }
    .gallery-head {
      text-align: center;
      max-width: 36rem;
      margin: 0 auto 3rem;
    }
    .gallery-head .section-title {
      margin-bottom: 0.75rem;
    }
    .gallery-grid {
      display: grid;
      gap: 1.25rem;
      grid-template-columns: repeat(12, 1fr);
    }
    .gallery-item {
      grid-column: span 12;
      border-radius: 2px;
      overflow: hidden;
      position: relative;
      box-shadow: var(--shadow-soft);
      aspect-ratio: 16 / 10;
    }
    @media (min-width: 700px) {
      .gallery-item:nth-child(1) { grid-column: span 7; aspect-ratio: 4 / 3; }
      .gallery-item:nth-child(2) { grid-column: span 5; aspect-ratio: 4 / 3; }
      .gallery-item:nth-child(3) { grid-column: span 5; aspect-ratio: 4 / 3; }
      .gallery-item:nth-child(4) { grid-column: span 7; aspect-ratio: 4 / 3; }
    }
    .gallery-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.9s var(--ease-out);
    }
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    .gallery-item .venobox-link {
      position: absolute;
      inset: auto 0 0 0;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      padding: 1rem;
      background: linear-gradient(to top, rgba(15, 45, 36, 0.92), transparent);
      color: var(--white);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.75rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      opacity: 0;
      transform: translateY(8px);
      transition: opacity 0.35s, transform 0.35s var(--ease-out);
    }
    .gallery-item:hover .venobox-link {
      opacity: 1;
      transform: translateY(0);
    }

    /* Contact */
    .contact-wrap {
      display: grid;
      gap: 3rem;
      align-items: start;
    }
    @media (min-width: 900px) {
      .contact-wrap {
        grid-template-columns: 1fr 1fr;
      }
    }
    .contact-panel {
      background: var(--white);
      padding: clamp(2rem, 4vw, 2.75rem);
      border-radius: 2px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(15, 45, 36, 0.06);
      border-top: 3px solid var(--sunrise);
    }
    .contact-panel label {
      display: block;
      font-weight: 600;
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 0.4rem;
      color: var(--forest);
    }
    .contact-panel input,
    .contact-panel textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      margin-bottom: 1.1rem;
      border-radius: 2px;
      border: 1px solid var(--cream-warm);
      font-family: inherit;
      font-size: 1rem;
      background: var(--cream);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .contact-panel input:focus,
    .contact-panel textarea:focus {
      outline: none;
      border-color: var(--river-light);
      box-shadow: 0 0 0 3px rgba(61, 138, 184, 0.2);
    }
    .contact-panel button[type="submit"] {
      width: 100%;
    }

    footer.site-footer {
      background: var(--forest);
      color: rgba(255, 255, 255, 0.75);
      padding: 3rem 0;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }
    .footer-grid {
      display: grid;
      gap: 2.5rem;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      margin-bottom: 0;
      text-align: left;
    }
    .footer-col h4 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.45rem;
      color: var(--white);
      margin: 0 0 1rem;
      font-weight: 600;
    }
    .footer-col p,
    .footer-col a {
      font-size: 1rem;
      line-height: 1.6;
    }
    .footer-col a {
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      display: inline-block;
      margin-bottom: 0.35rem;
    }
    .footer-col a:hover {
      color: var(--gold-bright);
    }
    .footer-socials {
      display: flex;
      gap: 1rem;
      margin-top: 0.5rem;
    }
    .footer-socials a {
      font-size: 1.5rem;
      margin: 0;
    }
    .footer-bottom {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      font-size: 0.95rem;
      text-align: left;
      line-height: 1.65;
      width: min(1240px, 100% - 2.5rem);
      margin-left: auto;
      margin-right: auto;
    }
    .footer-bottom a {
      color: var(--gold-bright);
    }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(1.75rem);
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* Utility: responsive image sizing */
    .img-fluid {
      width: 100%;
      height: auto;
      display: block;
    }
    .shell img {
      margin-top: 20px;
      border: 1px solid #6d6d6d;
    }

    /* In-page anchors clear fixed header */
    [id] {
      scroll-margin-top: calc(var(--header-h) + 1rem);
    }

    .about-deep {
      background: linear-gradient(180deg, var(--cream) 0%, var(--cream-warm) 100%);
      border-top: 1px solid rgba(15, 45, 36, 0.08);
      border-bottom: 1px solid rgba(15, 45, 36, 0.08);
    }
    .about-dark {
      background: var(--forest);
      border: 0 !important;
      box-shadow: none;
    }
    .about-dark .section-label {
      color: var(--gold-bright);
    }
    .about-dark .section-title {
      color: var(--white);
    }
    .about-dark .section-intro {
      color: rgba(255, 255, 255, 0.82);
    }
    .about-dark .stat-strip {
      border-block: 0 !important;
    }
    .about-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    @media (max-width: 980px) {
      .about-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }
    @media (max-width: 640px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }
    .about-tile {
      background: var(--white);
      padding: 1.65rem 1.5rem;
      border-radius: 2px;
      box-shadow: var(--shadow-soft);
      border-top: 3px solid var(--sunrise);
    }
    .about-tile h3 {
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--forest);
      margin: 20px 0 0.65rem;
      text-align: center;
    }
    .about-tile p {
      margin: 0;
      color: var(--ink-muted);
      font-weight: 300;
      font-size: 0.98rem;
    }
    .about-link {
      display: inline-block;
      margin-top: 1rem;
      color: var(--river);
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      border-bottom: 1px solid transparent;
      transition: color 0.2s, border-color 0.2s;
    }
    .about-link:hover {
      color: var(--forest);
      border-bottom-color: var(--gold);
    }
    .about-tile .about-link {
      margin-top: 0.95rem;
      display: flex;
      align-items: center;
      justify-content: center;
      width: fit-content;
      margin-left: auto;
      margin-right: auto;
      padding: 0.62rem 1.05rem;
      border-radius: 6px;
      border: 1px solid var(--sunrise);
      background: var(--sunrise);
      color: var(--white);
      font-size: 0.74rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      text-decoration: none;
      transition: background 0.2s, border-color 0.2s, transform 0.2s;
    }
    .about-tile .about-link:hover {
      background: var(--sunrise-hover);
      border-color: var(--sunrise-hover);
      color: var(--white);
      transform: translateY(-1px);
    }

/* —— Reusable interior page layout system —— */
.interior-page {
  width: 100%;
  margin: 0 0 4rem;
  color: var(--ink-dark, #10241d);
}

.interior-page__hero {
  position: relative;
  border-radius: 0;
  overflow: hidden;
  min-height: clamp(200px, 28vw, 380px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.2);
}

.interior-page__hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interior-page__hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(8, 22, 17, 0.84) 8%,
    rgba(8, 22, 17, 0.45) 40%,
    rgba(8, 22, 17, 0.16) 70%,
    rgba(8, 22, 17, 0) 100%
  );
}

.interior-page__content {
  width: min(1320px, calc(100% - 100px));
  margin: 3rem auto 0;
}

.interior-page__intro {
  margin-bottom: 2.25rem;
}

.interior-page__intro .section-title {
  margin-bottom: 0.7rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.interior-page__lead {
  margin: 0;
  color: rgba(16, 36, 29, 0.88);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
}

.interior-page__split {
  display: grid;
  grid-template-columns: 1.25fr 0.95fr;
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 3.5rem;
}

/* Space between a full-width section block and a split row (e.g. hospital → clinics/regional) */
.interior-page__section + .interior-page__split {
  margin-top: 2.75rem;
}

/* Two equal “panels” in a split row (headings live inside the card, not on page background) */
.interior-page__split-panel {
  display: flex;
  flex-direction: column;
  height: 100%;
  margin: 0;
}

.interior-page__card.interior-page__split-panel > h2 {
  margin: 0 0 0.5rem;
}

.interior-page__split-panel > .interior-page__section-note {
  margin-top: 0;
  margin-bottom: 1.35rem;
}

.interior-page__split-stack-inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  flex: 1;
}

.interior-page__sub-panel {
  padding: 1rem 1.15rem;
  background: rgba(15, 45, 36, 0.045);
  border: 1px solid rgba(16, 36, 29, 0.1);
  border-radius: 8px;
}

.interior-page__sub-panel h3 {
  margin: 0 0 0.55rem;
  color: var(--green-deep, #0f2d24);
  line-height: 1.22;
}

.interior-page__sub-panel p:last-child {
  margin-bottom: 0;
}

.interior-page__grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

.interior-page__grid-2 > .interior-page__card {
  margin: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.interior-page__grid-2--full {
  grid-column: 1 / -1;
}

/* Three-column lightweight grid (used for investor lists, etc.) */
.interior-page__grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 1200px) {
  .interior-page__grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .interior-page__grid-3 {
    grid-template-columns: 1fr;
  }
}

.interior-page__district-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
  margin-bottom: 3.5rem;
}

.interior-page__district-grid .interior-page__card h3 {
  margin-top: 0;
  color: var(--green-deep, #0f2d24);
}

.interior-page__district-meta {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  font-size: 0.94rem;
  color: rgba(16, 36, 29, 0.88);
}

.interior-page__district-meta li {
  margin-bottom: 0.35rem;
  padding-left: 0;
}

.interior-page__district-meta strong {
  color: var(--green-deep, #0f2d24);
  font-weight: 600;
}

.interior-page__district-schools {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: rgba(16, 36, 29, 0.86);
  font-size: 0.94rem;
}

.interior-page__district-schools li {
  margin-bottom: 0.25rem;
}

.interior-page__district-label {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  color: rgba(16, 36, 29, 0.86);
}

.interior-page__district-links {
  margin: 1rem 0 0;
}

.interior-page__invite-note {
  margin-top: 1rem;
}

/* Economic Development Board — member headshot grid */
.interior-page__board-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .interior-page__board-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .interior-page__board-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .interior-page__board-grid {
    grid-template-columns: 1fr;
  }
}

.interior-page__board-card {
  margin: 0;
  background: #fff;
  border: 1px solid rgba(16, 36, 29, 0.1);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(10, 31, 24, 0.08);
  display: flex;
  flex-direction: column;
}

.interior-page__board-photo-wrap {
  aspect-ratio: 4 / 5;
  background: rgba(15, 45, 36, 0.08);
  overflow: hidden;
}

.interior-page__board-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.interior-page__board-photo-wrap--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(
    145deg,
    rgba(15, 45, 36, 0.12) 0%,
    rgba(15, 45, 36, 0.06) 100%
  );
}

.interior-page__board-placeholder-initials {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: clamp(2rem, 8vw, 2.75rem);
  font-weight: 600;
  color: rgba(15, 45, 36, 0.35);
  letter-spacing: 0.04em;
  user-select: none;
}

.interior-page__board-body {
  padding: 1rem 1.1rem 1.15rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.interior-page__board-name {
  font-family: var(--font-display, "Cormorant Garamond", Georgia, serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--green-deep, #0f2d24);
  line-height: 1.25;
}

.interior-page__board-role {
  font-size: 0.9rem;
  line-height: 1.45;
  color: rgba(16, 36, 29, 0.78);
}

.interior-page__card--director {
  display: grid;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  align-items: start;
  padding: clamp(1.1rem, 1.9vw, 1.65rem);
}

.interior-page__director-photo-wrap {
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 360px;
  background: rgba(15, 45, 36, 0.08);
  box-shadow: 0 8px 24px rgba(10, 31, 24, 0.1);
}

.interior-page__director-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}

.interior-page__card--director h2 {
  margin: 0 0 0.5rem;
}

.interior-page__card--director .interior-page__section-note {
  margin-bottom: 0.85rem;
}

@media (max-width: 720px) {
  .interior-page__card--director {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .interior-page__director-photo-wrap {
    max-height: none;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* Site Selection Center promo (Why Howard County / available sites) */
.interior-page__card--site-selection {
  padding: 0;
  overflow: hidden;
  max-width: 560px;
  margin: 0 auto;
}

.interior-page__card--site-selection-grid {
  max-width: none;
  margin: 0;
}

.interior-page__site-selection-link {
  display: block;
  line-height: 0;
  text-decoration: none;
  background: rgba(15, 45, 36, 0.06);
  transition: opacity 0.2s ease, box-shadow 0.2s ease;
}

.interior-page__site-selection-link:hover {
  opacity: 0.96;
}

.interior-page__site-selection-link:focus-visible {
  outline: 3px solid var(--gold-bright, #f0af45);
  outline-offset: 2px;
}

.interior-page__site-selection-link img {
  width: 100%;
  height: auto;
  display: block;
}

.interior-page__site-selection-caption {
  padding: 0.85rem 1rem;
  border-top: 1px solid rgba(16, 36, 29, 0.1);
}

.interior-page__site-selection-caption p {
  margin: 0;
}

.interior-page__card {
  background: #fff;
  border: 1px solid rgba(16, 36, 29, 0.1);
  border-radius: 10px;
  padding: clamp(1.1rem, 1.9vw, 1.65rem);
  box-shadow: 0 12px 32px rgba(10, 31, 24, 0.08);
}

.interior-page__card h2,
.interior-page__card h3 {
  margin: 0 0 0.7rem;
  color: var(--green-deep, #0f2d24);
  line-height: 1.22;
}

.interior-page__card p {
  margin: 0;
  color: rgba(16, 36, 29, 0.86);
}

.interior-page__card p + p {
  margin-top: 0.85rem;
}

.interior-page__highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.8rem;
}

.interior-page__highlights li {
  display: grid;
  gap: 0.18rem;
  padding: 0.75rem 0.8rem;
  background: rgba(15, 45, 36, 0.04);
  border-left: 3px solid var(--gold-bright, #f0af45);
  border-radius: 0 6px 6px 0;
}

.interior-page__highlights strong {
  color: var(--green-deep, #0f2d24);
  font-size: 0.95rem;
  letter-spacing: 0.015em;
}

.interior-page__highlights span {
  color: rgba(16, 36, 29, 0.82);
  font-size: 0.94rem;
}

.interior-page__section {
  margin-top: 3.5rem;
}

.interior-page__section h2 {
  margin: 0 0 0.9rem;
  color: var(--green-deep, #0f2d24);
}

.interior-page__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 2px solid rgba(15, 45, 36, 0.2);
  display: grid;
  gap: 0.9rem;
}

.interior-page__timeline li {
  position: relative;
  margin-left: 1rem;
  padding: 0.72rem 0.95rem;
  border-radius: 8px;
  background: #fff;
  border: 1px solid rgba(16, 36, 29, 0.08);
  box-shadow: 0 10px 22px rgba(10, 31, 24, 0.06);
}

.interior-page__timeline li::before {
  content: "";
  position: absolute;
  left: -1.44rem;
  top: 0.95rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--gold-bright, #f0af45);
  box-shadow: 0 0 0 4px rgba(240, 175, 69, 0.2);
}

.interior-page__timeline strong {
  color: var(--green-deep, #0f2d24);
  display: block;
  margin-bottom: 0.2rem;
}

.interior-page__timeline span {
  color: rgba(16, 36, 29, 0.84);
}

.interior-page__section-note {
  margin: 0 0 1rem;
  color: rgba(16, 36, 29, 0.86);
  font-size: 1rem;
  line-height: 1.65;
}

.interior-page__card--flush-top {
  margin-top: 0;
}

@media (max-width: 900px) {
  .interior-page__content {
    width: calc(100% - 2rem);
    margin-top: 2rem;
  }

  .interior-page__split {
    grid-template-columns: 1fr;
  }

  .interior-page__district-grid {
    grid-template-columns: 1fr;
  }

  .interior-page__grid-2 {
    grid-template-columns: 1fr;
  }

  .interior-page__grid-2--full {
    grid-column: auto;
  }
}
