    :root {
      --barn-wood: #4A3728;
      --sage: #6B7C5E;
      --gold: #C4904A;
      --stone: #8C8178;
      --ivory: #FAF7F2;
      --white: #FFFFFF;
      --overlay: rgba(74, 55, 40, 0.52);
      --font-serif: "Playfair Display", "Cormorant Garamond", Georgia, serif;
      --font-display: "Cormorant Garamond", Georgia, serif;
      --font-body: "Lato", "Segoe UI", sans-serif;
      --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
      --section-space: clamp(5rem, 10vw, 8rem);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      scroll-behavior: smooth;
      font-size: 16px;
      margin: 0;
      padding: 0;
      background: var(--ivory);
    }

    body {
      font-family: var(--font-body);
      color: var(--barn-wood);
      background: var(--ivory);
      margin: 0;
      padding: 0;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    /* Clip-path defs only — inline SVG was leaving a ~line-height gap at top */
    body > svg[aria-hidden] {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
      pointer-events: none;
    }

    main {
      margin: 0;
      padding: 0;
    }

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

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

    .label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--sage);
    }

    .container {
      width: min(1120px, 92vw);
      margin-inline: auto;
    }

    /* ── Header ── */
    .site-header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 100;
      height: 0;
      padding: 0;
      background: transparent;
      box-shadow: none;
      pointer-events: none;
      overflow: visible;
      transition: background 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease), height 0.45s var(--ease);
    }

    .site-header.scrolled {
      height: auto;
      padding: 1.25rem 0;
      background: rgba(250, 247, 242, 0.94);
      backdrop-filter: blur(8px);
      box-shadow: 0 1px 0 rgba(74, 55, 40, 0.08);
      pointer-events: auto;
    }

    .site-header .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: min(1120px, 92vw);
      margin-inline: auto;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      visibility: hidden;
      transform: translateY(-8px);
      transition:
        opacity 0.45s var(--ease),
        transform 0.45s var(--ease),
        visibility 0.45s var(--ease),
        max-height 0.45s var(--ease);
    }

    .site-header.scrolled .inner {
      max-height: 6rem;
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .logo-link {
      display: flex;
      align-items: center;
    }

    .logo-link img {
      height: clamp(2.75rem, 6vw, 3.5rem);
      width: auto;
      filter: drop-shadow(0 1px 10px rgba(0, 0, 0, 0.25));
    }

    .nav-cta {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--barn-wood);
      border-bottom: 1px solid var(--gold);
      padding-bottom: 0.15rem;
      transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
    }

    .nav-cta:hover { color: var(--gold); border-color: var(--barn-wood); }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 1.25rem;
    }

    .nav-link {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--barn-wood);
      text-decoration: none;
      border-bottom: 1px solid transparent;
      padding-bottom: 0.15rem;
      transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
    }

    .nav-link:hover {
      color: var(--gold);
      border-color: var(--gold);
    }

    .btn--pricing {
      background: var(--gold);
      color: var(--white);
      box-shadow: 0 4px 20px rgba(196, 144, 74, 0.45);
      padding: 0.85rem 1.5rem;
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      white-space: nowrap;
    }

    .btn--pricing:hover {
      background: #b07f3d;
      transform: translateY(-2px);
      box-shadow: 0 6px 28px rgba(196, 144, 74, 0.55);
    }

    .btn--lg {
      padding: 1.15rem 2.5rem;
      font-size: 0.75rem;
    }

    .hero__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      justify-content: center;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    /* ── Hero ── */
    .hero {
      position: relative;
      min-height: 100svh;
      min-height: 100dvh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      background: var(--barn-wood);
    }

    .hero__media {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .hero__media img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      max-width: none;
      object-fit: cover;
      object-position: center 38%;
    }

    .hero__overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        to bottom,
        rgba(74, 55, 40, 0.46) 0%,
        rgba(74, 55, 40, 0.66) 55%,
        rgba(74, 55, 40, 0.80) 100%
      );
    }

    .hero__content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      color: var(--ivory);
      width: min(52rem, 92vw);
      padding: 1.5rem 1.5rem 5rem;
      margin-inline: auto;
    }

    .hero__content .label {
      color: rgba(250, 247, 242, 0.9);
      margin-bottom: 1.25rem;
      text-shadow: 0 1px 10px rgba(0, 0, 0, 0.5);
    }

    .hero__logo {
      display: flex;
      justify-content: center;
      width: 100%;
      margin: 0 0 0.5rem;
    }

    .hero__logo img {
      display: block;
      width: min(20rem, 82vw);
      height: auto;
      margin-inline: auto;
      filter: drop-shadow(0 2px 12px rgba(0, 0, 0, 0.35));
    }

    .hero__content .label--below-logo {
      position: relative;
      z-index: 2;
      margin-top: 1.25rem;
      margin-bottom: 1.5rem;
    }

    .hero__badge {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: var(--ivory);
      border: 1px solid rgba(250, 247, 242, 0.55);
      background: rgba(45, 32, 22, 0.4);
      backdrop-filter: blur(6px);
      padding: 0.55rem 1.4rem;
      margin-bottom: 1.75rem;
      text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    }

    .hero__title {
      font-family: var(--font-serif);
      font-size: clamp(2rem, 5vw, 3.1rem);
      font-weight: 400;
      font-style: italic;
      line-height: 1.35;
      margin-bottom: 1.25rem;
      letter-spacing: 0.01em;
      text-shadow:
        0 2px 28px rgba(0, 0, 0, 0.55),
        0 1px 6px rgba(0, 0, 0, 0.45);
    }

    .hero__text {
      font-size: clamp(1rem, 2vw, 1.15rem);
      font-weight: 400;
      color: var(--ivory);
      max-width: 36rem;
      margin: 0 auto 1.75rem;
      line-height: 1.8;
      text-shadow: 0 1px 16px rgba(0, 0, 0, 0.55), 0 1px 4px rgba(0, 0, 0, 0.4);
    }

    .btn {
      display: inline-block;
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      padding: 1rem 2.2rem;
      border: none;
      cursor: pointer;
      transition: background 0.35s var(--ease), color 0.35s var(--ease), transform 0.35s var(--ease);
    }

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

    .btn--gold:hover {
      background: #b07f3d;
      transform: translateY(-2px);
    }

    .btn--outline {
      background: transparent;
      color: var(--ivory);
      border: 1px solid rgba(250, 247, 242, 0.5);
    }

    .btn--outline:hover {
      background: rgba(250, 247, 242, 0.12);
    }

    .hero__scroll {
      position: absolute;
      left: 50%;
      bottom: 0;
      z-index: 3;
      display: block;
      width: 24px;
      height: 36px;
      padding: 0;
      border: none;
      background: none;
      color: var(--ivory);
      cursor: pointer;
      text-decoration: none;
      transform: translateX(-50%);
      filter: drop-shadow(0 1px 8px rgba(0, 0, 0, 0.5));
      animation: scroll-hint 2.8s ease-in-out infinite;
    }

    .hero__scroll svg {
      display: block;
      width: 100%;
      height: 100%;
    }

    @keyframes scroll-hint {
      0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.9; }
      50% { transform: translateX(-50%) translateY(8px); opacity: 1; }
    }

    /* ── Intro ── */
    .intro {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    .split {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: center;
    }

    .split__image {
      position: relative;
    }

    .split__image::before {
      content: "";
      position: absolute;
      inset: -1rem -1rem 1rem 1rem;
      border: 1px solid var(--sage);
      opacity: 0.35;
      pointer-events: none;
    }

    .split__image img {
      width: 100%;
      aspect-ratio: 4 / 5;
      object-fit: cover;
    }

    .split__content h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      line-height: 1.2;
      margin: 0.75rem 0 1.5rem;
      color: var(--barn-wood);
    }

    .split__content p {
      color: var(--stone);
      font-size: 1.05rem;
      margin-bottom: 1.25rem;
    }

    .ornament {
      width: 3rem;
      height: 1px;
      background: var(--gold);
      margin: 2rem 0 0;
    }

    /* ── Experience ── */
    .experience {
      padding: var(--section-space) 0;
      background: var(--ivory);
    }

    .section-head {
      text-align: center;
      max-width: 40rem;
      margin: 0 auto 3.5rem;
    }

    .section-head h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      line-height: 1.2;
      margin: 0.75rem 0 1rem;
    }

    .section-head p {
      color: var(--stone);
      font-size: 1.05rem;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: clamp(1rem, 2vw, 1.5rem);
    }

    .experience-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 5 / 4;
    }

    .experience-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.8s var(--ease);
    }

    .experience-card:hover img { transform: scale(1.04); }

    .experience-card__overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background: linear-gradient(to top, rgba(74, 55, 40, 0.78) 0%, transparent 60%);
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: clamp(1.25rem, 3vw, 2rem);
      color: var(--ivory);
    }

    .experience-card__overlay h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .experience-card__overlay p {
      font-size: 0.92rem;
      font-weight: 300;
      opacity: 0.88;
      line-height: 1.6;
    }

    /* ── Features ── */
    .features {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    /* ── Weekend ── */
    .weekend {
      padding: var(--section-space) 0;
      background: var(--barn-wood);
      color: var(--ivory);
    }

    .weekend .section-head { max-width: 44rem; }

    .weekend .section-head .label { color: rgba(250, 247, 242, 0.55); }

    .weekend .section-head h2 { color: var(--ivory); }

    .weekend .section-head p { color: rgba(250, 247, 242, 0.78); }

    .weekend-timeline {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(250, 247, 242, 0.12);
      margin-top: 3rem;
    }

    .weekend-day {
      background: var(--barn-wood);
      padding: 2rem 1.5rem;
    }

    .weekend-day__label {
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.35rem;
    }

    .weekend-day h3 {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
    }

    .weekend-day p {
      font-size: 0.92rem;
      font-weight: 300;
      line-height: 1.65;
      color: rgba(250, 247, 242, 0.78);
    }

    .weekend__image {
      margin-top: 2.5rem;
      position: relative;
      overflow: hidden;
      max-height: 420px;
    }

    .weekend__image img {
      width: 100%;
      height: 420px;
      object-fit: cover;
      object-position: center 60%;
    }

    .weekend__pricing-cta {
      text-align: center;
      margin-top: 2.5rem;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      border-top: 1px solid rgba(107, 124, 94, 0.25);
    }

    .feature {
      position: relative;
      padding: 2.5rem 1.5rem;
      text-align: center;
      border-right: 1px solid rgba(107, 124, 94, 0.25);
      border-bottom: 1px solid rgba(107, 124, 94, 0.25);
      opacity: 0;
      transform: translateY(18px);
      transition:
        opacity 0.65s var(--ease),
        transform 0.65s var(--ease),
        background 0.45s var(--ease);
    }

    .features.visible .feature {
      opacity: 1;
      transform: translateY(0);
    }

    .features.visible .feature:nth-child(1) { transition-delay: 0.08s; }
    .features.visible .feature:nth-child(2) { transition-delay: 0.16s; }
    .features.visible .feature:nth-child(3) { transition-delay: 0.24s; }
    .features.visible .feature:nth-child(4) { transition-delay: 0.32s; }
    .features.visible .feature:nth-child(5) { transition-delay: 0.4s; }

    .feature:nth-child(5) {
      grid-column: 2 / span 2;
      border-right: none;
    }

    .feature::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--gold);
      transform: translateX(-50%);
      transition: width 0.45s var(--ease);
    }

    .feature__icon {
      width: 2rem;
      height: 2rem;
      margin: 0 auto 1.25rem;
      color: var(--sage);
      transition: color 0.4s var(--ease), transform 0.45s var(--ease);
    }

    .feature h3 {
      font-family: var(--font-display);
      font-size: 1.05rem;
      font-weight: 600;
      margin-bottom: 0.6rem;
      line-height: 1.35;
      transition: color 0.35s var(--ease);
    }

    @media (hover: hover) and (pointer: fine) {
      .feature:hover {
        background: rgba(196, 144, 74, 0.06);
      }

      .feature:hover::after {
        width: 3.5rem;
      }

      .feature:hover .feature__icon {
        color: var(--gold);
        transform: translateY(-4px) scale(1.08);
      }

      .feature:hover h3 {
        color: var(--barn-wood);
      }
    }

    .feature p {
      font-size: 0.88rem;
      color: var(--stone);
      line-height: 1.6;
    }

    /* ── Features (What Awaits — editorial layout) ── */
    .features-lead {
      max-width: 44rem;
      margin: 0 auto 3rem;
      text-align: center;
    }

    .features-lead__title {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.5rem, 2.6vw, 2.15rem);
      line-height: 1.25;
      color: var(--barn-wood);
      margin: 0 0 1rem;
    }

    .features-lead__body {
      font-size: 1rem;
      line-height: 1.7;
      color: var(--stone);
      margin: 0;
    }

    .features-list {
      max-width: 52rem;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.25rem;
    }

    .feature-feature {
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 1.5rem;
      align-items: start;
      padding: 1.75rem 0;
      border-top: 1px solid rgba(74, 55, 40, 0.12);
    }

    .feature-feature:last-child {
      border-bottom: 1px solid rgba(74, 55, 40, 0.12);
    }

    .feature-feature__icon {
      width: 2.25rem;
      height: 2.25rem;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .feature-feature__body h3 {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.25rem, 2vw, 1.6rem);
      line-height: 1.2;
      color: var(--barn-wood);
      margin: 0 0 0.6rem;
      letter-spacing: 0.01em;
    }

    .feature-feature__body p {
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--stone);
      margin: 0;
      max-width: 38rem;
    }

    @media (min-width: 720px) {
      .feature-feature {
        gap: 2rem;
        padding: 2rem 0;
      }
      .feature-feature__icon {
        width: 2.5rem;
        height: 2.5rem;
      }
    }

    .features-fineprint {
      max-width: 52rem;
      margin: 2.5rem auto 0;
      font-size: 0.82rem;
      line-height: 1.6;
      color: var(--stone);
      font-style: italic;
      text-align: center;
      opacity: 0.78;
    }

    .tour-cta {
      max-width: 38rem;
      margin: 3rem auto 0;
      padding: 2.5rem 2rem;
      background: var(--cream);
      border: 1px solid rgba(196, 144, 74, 0.35);
      border-radius: 2px;
      text-align: center;
    }

    .tour-cta__title {
      font-family: var(--font-display);
      font-style: italic;
      font-weight: 400;
      font-size: clamp(1.35rem, 2.2vw, 1.75rem);
      line-height: 1.25;
      color: var(--barn-wood);
      margin: 0 0 0.85rem;
    }

    .tour-cta__body {
      font-size: 0.98rem;
      line-height: 1.7;
      color: var(--stone);
      margin: 0 0 1.5rem;
    }

    .tour-cta .btn {
      margin: 0 auto 0.85rem;
    }

    .tour-cta__note {
      font-size: 0.82rem;
      line-height: 1.5;
      color: var(--stone);
      font-style: italic;
      opacity: 0.82;
      margin: 0;
    }

    /* ── Story / Gallery ── */
    .story {
      padding: var(--section-space) 0;
      background: var(--ivory);
    }

    .story__lead {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 1.25rem;
      margin-bottom: 1.25rem;
    }

    .story__lead img {
      width: 100%;
      height: 100%;
      min-height: 420px;
      object-fit: cover;
    }

    .story__lead-text {
      background: var(--barn-wood);
      color: var(--ivory);
      padding: clamp(2rem, 5vw, 3.5rem);
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .story__lead-text .label { color: rgba(250, 247, 242, 0.6); }

    .story__lead-text h2 {
      font-family: var(--font-display);
      font-size: clamp(1.75rem, 3.5vw, 2.4rem);
      font-weight: 600;
      line-height: 1.25;
      margin: 0.75rem 0 1.25rem;
    }

    .story__lead-text p {
      font-size: 1rem;
      font-weight: 300;
      opacity: 0.88;
      line-height: 1.8;
    }

    .story__grid {
      display: grid;
      grid-template-columns: repeat(12, 1fr);
      grid-auto-rows: minmax(200px, auto);
      gap: 1.25rem;
    }

    .story__grid figure {
      margin: 0;
      overflow: hidden;
      min-width: 0;
    }

    .story__grid img {
      width: 100%;
      height: 100%;
      min-height: 220px;
      object-fit: cover;
      transition: transform 0.8s var(--ease);
    }

    .story__grid figure:hover img { transform: scale(1.03); }

    .story__grid .g1 { grid-column: span 5; }
    .story__grid .g2 { grid-column: span 4; }
    .story__grid .g3 { grid-column: span 3; grid-row: span 2; }
    .story__grid .g4 { grid-column: span 4; }
    .story__grid .g5 { grid-column: span 5; }

    .story__grid .g3 img { min-height: 100%; }

    .story__caption {
      text-align: center;
      margin-top: 2.5rem;
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-style: italic;
      color: var(--stone);
    }

    /* ── Inquiry ── */
    .inquiry {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    .inquiry-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(2rem, 5vw, 5rem);
      align-items: start;
    }

    .inquiry__intro h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      line-height: 1.2;
      margin: 0.75rem 0 1.25rem;
    }

    .inquiry__intro p {
      color: var(--stone);
      font-size: 1.05rem;
      margin-bottom: 1rem;
    }

    .inquiry__note {
      font-size: 0.92rem;
      color: var(--stone);
      font-style: italic;
      line-height: 1.65;
    }

    .inquiry__contact {
      margin-top: 2rem;
      padding-top: 2rem;
      border-top: 1px solid rgba(107, 124, 94, 0.25);
    }

    .inquiry__contact a {
      color: var(--gold);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s;
    }

    .inquiry__contact a:hover { border-color: var(--gold); }

    .inquiry__contact .social-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.75rem;
      height: 2.75rem;
      margin-top: 0.75rem;
      border: none;
      border-bottom: none;
      color: var(--sage);
      transition: color 0.3s var(--ease), transform 0.3s var(--ease);
    }

    .inquiry__contact .social-link:hover {
      color: var(--gold);
      border-color: transparent;
      transform: translateY(-2px);
    }

    .social-link__icon {
      width: 1.65rem;
      height: 1.65rem;
      fill: currentColor;
    }

    .form {
      background: var(--ivory);
      padding: clamp(2rem, 4vw, 3rem);
      border: 1px solid rgba(107, 124, 94, 0.2);
    }

    .form-group {
      margin-bottom: 1.25rem;
    }

    .form-group label {
      display: block;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--barn-wood);
      margin-bottom: 0.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      font-family: var(--font-body);
      font-size: 1rem;
      padding: 0.85rem 1rem;
      border: 1px solid rgba(107, 124, 94, 0.35);
      background: var(--white);
      color: var(--barn-wood);
      transition: border-color 0.3s;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: var(--gold);
    }

    .form-group textarea { resize: vertical; min-height: 120px; }

    .form-note {
      font-size: 0.82rem;
      color: var(--stone);
      margin-top: 1rem;
      line-height: 1.6;
    }

    /* ── Footer ── */
    .site-footer {
      background: var(--barn-wood);
      color: rgba(250, 247, 242, 0.75);
      padding: 3.5rem 0 2.5rem;
      text-align: center;
    }

    .site-footer .footer-logo {
      margin: 0 auto 1rem;
    }

    .site-footer .footer-logo img {
      width: min(14rem, 70vw);
      height: auto;
      margin-inline: auto;
      filter: drop-shadow(0 2px 16px rgba(0, 0, 0, 0.25));
    }

    .site-footer h2 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 400;
      color: rgba(250, 247, 242, 0.7);
      margin-bottom: 0.35rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .site-footer p {
      font-size: 0.88rem;
      font-weight: 300;
    }

    .site-footer .divider {
      width: 2.5rem;
      height: 1px;
      background: var(--gold);
      margin: 1.75rem auto;
      opacity: 0.6;
    }

    .site-footer .fine {
      font-size: 0.75rem;
      opacity: 0.5;
      margin-top: 2rem;
    }

    /* ── Reveal animation ── */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    }

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

    [id] { scroll-margin-top: 5.5rem; }

    .hero__scroll:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 4px;
      border-radius: 2px;
    }

    .btn:focus-visible,
    .nav-cta:focus-visible,
    .form-group input:focus-visible,
    .form-group select:focus-visible,
    .form-group textarea:focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }
      .reveal { opacity: 1; transform: none; transition: none; }
      .feature { opacity: 1; transform: none; transition: none; }
      .feature::after { display: none; }
      .feature__icon { transition: none; }
      .experience-card img,
      .story__grid img { transition: none; }
      .hero__scroll { animation: none; transform: none; }
      .site-header .inner,
      .site-header.scrolled .inner { transition: none; }
    }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      .split,
      .inquiry-wrap,
      .story__lead { grid-template-columns: 1fr; }

      .split__image { order: -1; }

      .split__image::before { display: none; }

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

      .weekend-timeline { grid-template-columns: 1fr 1fr; }

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

      .feature:nth-child(5) { grid-column: auto; }

      .feature:nth-child(2n) { border-right: none; }

      .feature:nth-child(5) { border-right: none; }

      .story__lead img {
        min-height: 0;
        aspect-ratio: 4 / 3;
      }

      .story__grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: auto;
        gap: 1rem;
      }

      .story__grid .g1,
      .story__grid .g2,
      .story__grid .g4,
      .story__grid .g5 {
        grid-column: span 1;
        grid-row: auto;
      }

      .story__grid .g3 {
        grid-column: 1 / -1;
        grid-row: auto;
      }

      .story__grid img {
        min-height: 0;
        height: auto;
        aspect-ratio: 4 / 3;
      }

      .story__grid .g3 img {
        aspect-ratio: 16 / 9;
      }
    }

    @media (max-width: 700px) {
      .hero {
        align-items: flex-start;
        padding-top: 0;
      }

      .hero__content {
        padding: 2rem 1.25rem 1.5rem;
        width: min(52rem, 94vw);
      }

      .hero__logo img {
        width: min(18rem, 78vw);
      }

      .hero__content .label--below-logo {
        margin-top: 1.15rem;
      }

      .hero__actions {
        margin-top: 0.25rem;
        margin-bottom: 0.25rem;
      }

      .hero__scroll {
        position: static;
        transform: none;
        left: auto;
        bottom: auto;
        margin: 2rem auto 0;
        animation: scroll-hint-mobile 2.8s ease-in-out infinite;
      }

      @keyframes scroll-hint-mobile {
        0%, 100% { transform: translateY(0); opacity: 0.85; }
        50% { transform: translateY(6px); opacity: 1; }
      }
    }

    @media (max-width: 560px) {
      .hero__content { padding: 2rem 1.25rem 1.5rem; }

      .hero__logo img {
        width: min(16rem, 74vw);
      }

      .hero__content .label--below-logo {
        margin-top: 1rem;
      }

      .btn { width: 100%; text-align: center; }

      .hero__actions { flex-direction: column; width: 100%; }

      .hero__actions .btn { width: 100%; }

      .header-actions { gap: 0.65rem; }

      .btn--pricing { padding: 0.75rem 1rem; font-size: 0.62rem; }

      .weekend-timeline,
      .features-grid {
        grid-template-columns: 1fr;
      }

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

      .story__grid .g1,
      .story__grid .g2,
      .story__grid .g3,
      .story__grid .g4,
      .story__grid .g5 {
        grid-column: 1;
        grid-row: auto;
      }

      .story__grid img,
      .story__grid .g3 img {
        aspect-ratio: 4 / 3;
      }

      .feature { border-right: none; }
    }
  /* ── Special Promotional Pricing ── */
    .promo {
      padding: var(--section-space) 0;
      background: var(--white);
    }

    .promo__inner {
      max-width: 56rem;
      margin: 0 auto;
      text-align: center;
    }

    .promo__intro h2 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 2.75rem);
      font-weight: 600;
      line-height: 1.2;
      margin: 0.75rem 0 1rem;
      color: var(--barn-wood);
    }

    .promo__intro p {
      color: var(--stone);
      font-size: 1.05rem;
      margin-bottom: 1rem;
      max-width: 40rem;
      margin-inline: auto;
    }

    .promo__card {
      margin-top: 3rem;
      background: var(--ivory);
      border: 1px solid rgba(107, 124, 94, 0.25);
      padding: clamp(2.5rem, 5vw, 3.5rem);
      text-align: center;
      box-shadow: 0 16px 48px rgba(74, 55, 40, 0.07);
    }

    .promo__card-label {
      font-family: var(--font-body);
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.5rem;
    }

    .promo__amount {
      font-family: var(--font-display);
      font-size: clamp(3rem, 8vw, 4.25rem);
      font-weight: 600;
      color: var(--barn-wood);
      line-height: 1;
      margin: 0.5rem 0 0.25rem;
    }

    .promo__amount span {
      font-size: 0.5em;
      vertical-align: super;
      margin-right: 0.1em;
      color: var(--gold);
    }

    .promo__tagline {
      font-family: var(--font-serif);
      font-size: 1.2rem;
      font-style: italic;
      color: var(--barn-wood);
      margin-bottom: 2rem;
    }

    .promo__conditions {
      list-style: none;
      padding: 0;
      margin: 0 auto 2rem;
      max-width: 30rem;
      text-align: left;
    }

    .promo__conditions li {
      position: relative;
      padding: 0.6rem 0 0.6rem 1.85rem;
      font-size: 0.98rem;
      color: var(--barn-wood);
      border-bottom: 1px solid rgba(107, 124, 94, 0.18);
    }

    .promo__conditions li:last-child {
      border-bottom: none;
    }

    .promo__conditions li::before {
      content: "";
      position: absolute;
      left: 0.5rem;
      top: 1.15rem;
      width: 6px;
      height: 6px;
      background: var(--gold);
      border-radius: 50%;
    }

    .promo__urgency {
      margin-top: 1.5rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(107, 124, 94, 0.2);
      font-family: var(--font-serif);
      font-style: italic;
      font-size: 0.98rem;
      color: var(--stone);
      line-height: 1.6;
    }

    @media (max-width: 600px) {
      .promo__conditions {
        text-align: left;
      }
    }
