
    @font-face {
      font-family: "Feijoa";
      src: url("../fonts/feijoa-medium.woff2") format("woff2");
      font-weight: 500;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Founders Grotesk";
      src: url("../fonts/founders-grotesk-regular.woff2") format("woff2");
      font-weight: 400;
      font-style: normal;
      font-display: swap;
    }

    @font-face {
      font-family: "Founders Grotesk";
      src: url("../fonts/founders-grotesk-semibold.woff2") format("woff2");
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }

    :root {
      --peach: #f7a573;
      --green: #2d3f31;
      --gold: #ca8817;
      --cream: #e5dcd7;
      --ink: #241f21;
      --cream-soft: #efe8e3;
      --green-deep: #243428;
      --text-muted: rgba(36, 31, 33, 0.68);
      --ease: cubic-bezier(0.22, 1, 0.36, 1);
      --gutter: clamp(1.5rem, 5vw, 4rem);
      --container: 1240px;
      --nav-h: 5.5rem;
      --section-y: clamp(5.5rem, 11vw, 9.5rem);
      --content-gap: clamp(2rem, 4vw, 3.25rem);
      --text-xs: 0.78rem;
      --text-sm: 0.9rem;
      --text-base: 1.125rem;
      --text-md: 1.2rem;
      --text-lg: clamp(1.2rem, 2vw, 1.35rem);
      --title: clamp(2.35rem, 5vw, 3.75rem);
      --display: clamp(2.75rem, 6.5vw, 5rem);
      /* Default Amargo imagery so HTML-to-Figma works without JS */
      --hero-image: url("../images/amargo-apt-1404-liv-din-kit.jpg");
      --location-image: url("../images/amargo-liv-din-kit-email.jpg");
      --amenities-image: url("../images/amargo-rooftop-flourish.jpg");
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-h) + 0.75rem);
    }

    body {
      font-family: "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
      font-weight: 400;
      font-size: var(--text-base);
      color: var(--ink);
      background: var(--cream);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

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

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

    button,
    input,
    select,
    textarea {
      font: inherit;
      color: inherit;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      border: 0;
    }

    .container {
      width: min(var(--container), calc(100% - (var(--gutter) * 2)));
      margin-inline: auto;
    }

    /* Nav - sticky + solid (fixed/blur/hidden-by-mq often drops in HTML-to-Figma) */
    .site-nav {
      --nav-bg: #e5dcd7;
      --nav-fg: #241f21;
      --nav-border: rgba(36, 31, 33, 0.08);
      --nav-shadow: 0 0 0 transparent;
      --nav-hover: #2d3f31;
      --nav-cta-bg: #241f21;
      --nav-cta-fg: #e5dcd7;
      --nav-cta-border: #241f21;

      position: sticky;
      top: 0;
      z-index: 100;
      width: 100%;
      color: var(--nav-fg);
      background: var(--nav-bg);
      border-bottom: 1px solid var(--nav-border);
      box-shadow: var(--nav-shadow);
      transition:
        background-color 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        border-color 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        box-shadow 0.55s cubic-bezier(0.33, 1, 0.68, 1),
        color 0.55s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .site-nav.is-scrolled {
      --nav-bg: #2d3f31;
      --nav-fg: #e5dcd7;
      --nav-border: rgba(229, 220, 215, 0.12);
      --nav-shadow: 0 12px 32px rgba(36, 31, 33, 0.16);
      --nav-hover: #f7a573;
      --nav-cta-bg: transparent;
      --nav-cta-fg: #e5dcd7;
      --nav-cta-border: rgba(229, 220, 215, 0.85);
    }

    .nav-bar {
      width: min(var(--container), calc(100% - (var(--gutter) * 2)));
      margin-inline: auto;
      min-height: var(--nav-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.25rem;
    }

    .nav-brand {
      position: relative;
      display: block;
      flex-shrink: 0;
      width: clamp(8.5rem, 14vw, 11rem);
      height: 3.15rem;
    }

    .nav-brand img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: left center;
    }

    .nav-brand .logo-cream {
      opacity: 0;
      visibility: hidden;
    }

    .site-nav.is-scrolled .nav-brand .logo-ink {
      opacity: 0;
      visibility: hidden;
    }

    .site-nav.is-scrolled .nav-brand .logo-cream {
      opacity: 1;
      visibility: visible;
    }

    .nav-center {
      display: flex;
      flex: 1;
      justify-content: center;
      min-width: 0;
    }

    .nav-links {
      list-style: none;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: clamp(0.2rem, 1vw, 0.65rem);
      justify-content: center;
    }

    .nav-links > li {
      position: relative;
    }

    .nav-link,
    .nav-drop-toggle {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.7rem 0.75rem;
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      background: none;
      border: 0;
      cursor: pointer;
      color: var(--nav-fg);
      transition: color 0.45s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .nav-link:hover,
    .nav-drop-toggle:hover,
    .has-dropdown.is-open > .nav-drop-toggle {
      color: var(--nav-hover);
    }

    .nav-chevron {
      width: 0.55rem;
      height: 0.55rem;
      border-right: 1.5px solid currentColor;
      border-bottom: 1.5px solid currentColor;
      transform: rotate(45deg) translateY(-1px);
      transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1);
      opacity: 0.8;
    }

    .has-dropdown.is-open .nav-chevron {
      transform: rotate(225deg) translateY(-1px);
    }

    /* Locations dropdown (designed for up to 8 destinations) */
    .nav-dropdown {
      position: absolute;
      top: calc(100% + 0.45rem);
      left: 0;
      transform: translateY(10px);
      width: min(34rem, calc(100vw - 2rem));
      padding: 0.85rem 0.85rem 0.95rem;
      background: var(--cream);
      color: var(--ink);
      border: 1px solid rgba(36, 31, 33, 0.1);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
      box-shadow: 0 18px 40px rgba(36, 31, 33, 0.14);
      z-index: 120;
    }

    .has-dropdown.is-open .nav-dropdown,
    .has-dropdown:focus-within .nav-dropdown {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateY(0);
    }

    @media (hover: hover) and (pointer: fine) {
      .has-dropdown:hover .nav-dropdown {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
      }

      .has-dropdown:hover .nav-chevron {
        transform: rotate(225deg) translateY(-1px);
      }
    }

    .nav-dropdown::before {
      content: "";
      position: absolute;
      top: -6px;
      left: 1.6rem;
      width: 10px;
      height: 10px;
      background: var(--cream);
      border-left: 1px solid rgba(36, 31, 33, 0.1);
      border-top: 1px solid rgba(36, 31, 33, 0.1);
      transform: rotate(45deg);
    }

    .dropdown-label {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 1rem;
      padding: 0.25rem 0.6rem 0.8rem;
      font-size: var(--text-xs);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(36, 31, 33, 0.55);
      border-bottom: 1px solid rgba(36, 31, 33, 0.1);
      margin-bottom: 0.35rem;
    }

    .dropdown-label span {
      color: var(--gold);
      letter-spacing: 0.08em;
    }

    #navLocationItems {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0.15rem;
    }

    .dropdown-item {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.15rem;
      width: 100%;
      text-align: left;
      padding: 0.7rem 0.65rem;
      color: var(--ink);
      background: none;
      border: 0;
      cursor: pointer;
      transition: background 0.2s ease;
    }

    .dropdown-item:hover,
    .dropdown-item.is-active {
      background: rgba(247, 165, 115, 0.28);
    }

    .dropdown-name {
      font-family: "Feijoa", Georgia, serif;
      font-size: 1.1rem;
      line-height: 1.15;
    }

    .dropdown-meta {
      font-size: 0.72rem;
      letter-spacing: 0.04em;
      color: rgba(36, 31, 33, 0.55);
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0.7rem 1.05rem;
      border: 1px solid var(--nav-cta-border);
      background: var(--nav-cta-bg);
      color: var(--nav-cta-fg);
      font-size: 0.62rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      white-space: nowrap;
      transition:
        background-color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        color 0.45s cubic-bezier(0.33, 1, 0.68, 1),
        border-color 0.45s cubic-bezier(0.33, 1, 0.68, 1);
    }

    .nav-cta:hover {
      background: var(--green);
      border-color: var(--green);
      color: var(--cream);
    }

    .site-nav.is-scrolled .nav-cta:hover {
      background: var(--cream);
      border-color: var(--cream);
      color: var(--green);
    }

    .nav-toggle {
      display: none;
      position: relative;
      width: 2.65rem;
      height: 2.65rem;
      padding: 0;
      margin: 0;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 0.35rem;
      background: none;
      border: 0;
      cursor: pointer;
      color: var(--nav-fg);
      z-index: 110;
    }

    .nav-toggle span {
      display: block;
      width: 1.35rem;
      height: 1.5px;
      background: currentColor;
      transition: transform 0.28s var(--ease), opacity 0.2s ease;
      transform-origin: center;
    }

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

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

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

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      flex-shrink: 0;
    }

    .nav-cta-desktop {
      display: inline-flex;
    }

    /* Mobile: hamburger + full-screen panel (desktop links collapse) */
    @media (max-width: 979px) {
      .nav-center {
        display: none;
      }

      .nav-cta-desktop {
        display: none;
      }

      .nav-toggle {
        display: inline-flex;
      }

      .nav-bar {
        flex-wrap: nowrap;
        min-height: 4.25rem;
      }
    }

    .dropdown-item.is-muted {
      opacity: 0.55;
      cursor: default;
    }

    .dropdown-item.is-muted:hover {
      background: transparent;
    }

    .dropdown-status {
      margin-top: 0.2rem;
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--green);
    }

    .dropdown-item.is-muted .dropdown-status {
      color: rgba(36, 31, 33, 0.45);
    }

    /* Mobile panel - only one menu is exposed at a time */
    .mobile-panel {
      position: fixed;
      inset: 0;
      z-index: 95;
      background: var(--green);
      color: var(--cream);
      display: none;
      flex-direction: column;
      padding: calc(var(--nav-h) + 1.25rem) var(--gutter) 2.5rem;
      transform: translateY(-110%);
      transition: transform 0.5s var(--ease);
      overflow-y: auto;
    }

    .mobile-panel.is-ready {
      display: flex;
    }

    .mobile-panel.is-open {
      transform: translateY(0);
    }

    @media (min-width: 980px) {
      .mobile-panel {
        display: none !important;
      }
    }

    .mobile-nav {
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      margin: auto 0;
    }

    .mobile-nav > a,
    .mobile-acc-toggle {
      font-family: "Feijoa", Georgia, serif;
      font-size: clamp(1.9rem, 7.5vw, 2.7rem);
      padding: 0.5rem 0;
      text-align: left;
      background: none;
      border: 0;
      color: inherit;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      width: 100%;
    }

    .mobile-acc-toggle .nav-chevron {
      flex-shrink: 0;
    }

    .mobile-acc-panel {
      display: grid;
      gap: 0.35rem;
      padding: 0.35rem 0 1rem 0.15rem;
      max-height: 0;
      overflow: hidden;
      opacity: 0;
      transition: max-height 0.45s var(--ease), opacity 0.3s ease;
    }

    .mobile-acc.is-open .mobile-acc-panel {
      max-height: min(28rem, 55vh);
      overflow-y: auto;
      opacity: 1;
    }

    .mobile-acc.is-open .nav-chevron {
      transform: rotate(225deg) translateY(-1px);
    }

    .mobile-loc {
      display: grid;
      gap: 0.1rem;
      padding: 0.7rem 0.85rem;
      border-left: 2px solid rgba(247, 165, 115, 0.55);
      background: rgba(229, 220, 215, 0.05);
    }

    .mobile-loc .dropdown-name {
      color: var(--cream);
      font-size: 1.05rem;
    }

    .mobile-loc .dropdown-meta,
    .mobile-loc .dropdown-status {
      color: rgba(229, 220, 215, 0.65);
    }

    .mobile-loc.is-muted {
      opacity: 0.45;
      border-left-color: rgba(229, 220, 215, 0.25);
    }

    .mobile-cta {
      margin-top: 1.5rem;
      align-self: flex-start;
    }

    /* Hero */
    .hero {
      position: relative;
      min-height: min(88svh, 46rem);
      display: grid;
      align-items: center;
      overflow: hidden;
      color: var(--cream);
      background-color: #243428;
      transition: opacity 0.4s ease;
    }

    .hero.is-switching {
      opacity: 0.55;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
    }

    .hero-bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 42%;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          105deg,
          rgba(36, 31, 33, 0.72) 0%,
          rgba(36, 52, 40, 0.55) 38%,
          rgba(36, 31, 33, 0.28) 72%,
          rgba(36, 31, 33, 0.18) 100%
        ),
        linear-gradient(180deg, rgba(36, 31, 33, 0.22) 0%, transparent 38%, rgba(36, 31, 33, 0.55) 100%);
      pointer-events: none;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
      width: min(var(--container), calc(100% - (var(--gutter) * 2)));
      margin-inline: auto;
      padding: clamp(1.25rem, 3vw, 2rem) 0 clamp(2.5rem, 5vw, 3.75rem);
    }

    .hero-title {
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: clamp(1.35rem, 5.2vw, 3.35rem);
      line-height: 1.08;
      letter-spacing: -0.01em;
      color: var(--cream);
      white-space: nowrap;
      margin: 0 0 0.55rem;
    }

    .hero-location {
      display: block;
      margin: 0 0 1.5rem;
      font-family: "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(229, 220, 215, 0.72);
    }

    .hero-offers {
      display: grid;
      gap: 1rem;
      width: 100%;
      max-width: 52rem;
    }

    @media (min-width: 800px) {
      .hero-offers {
        grid-template-columns: 1fr 1fr;
        gap: 1.15rem;
      }
    }

    .hero-offer {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 0.85rem;
      padding: 1.35rem 1.4rem 1.45rem;
      background: rgba(36, 31, 33, 0.42);
      border: 1px solid rgba(229, 220, 215, 0.22);
      backdrop-filter: blur(6px);
      color: inherit;
      text-align: left;
      text-decoration: none;
      transition: border-color 0.25s ease, background 0.25s ease, transform 0.25s ease;
    }

    .hero-offer:hover {
      background: rgba(36, 31, 33, 0.55);
      border-color: rgba(247, 165, 115, 0.55);
      transform: translateY(-2px);
    }

    .hero-offer-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(247, 165, 115, 0.95);
    }

    .hero-offer h2 {
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: clamp(1.55rem, 3.2vw, 2.15rem);
      line-height: 1.15;
      letter-spacing: -0.01em;
      margin: 0;
      color: var(--cream);
    }

    .hero-offer p {
      font-family: "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
      font-size: var(--text-sm);
      line-height: 1.55;
      color: rgba(229, 220, 215, 0.88);
      margin: 0;
      flex: 1;
    }

    .hero-offer .btn {
      margin-top: 0.35rem;
      min-height: 2.75rem;
      padding: 0.7rem 1.1rem;
      font-size: 0.68rem;
      white-space: normal;
      text-align: center;
      line-height: 1.3;
    }

    /* Mobile hero: bottom-anchor content, readable title, compact offers */
    @media (max-width: 799px) {
      .hero {
        min-height: min(100svh, 44rem);
        align-items: end;
        padding-bottom: 4.25rem;
      }

      .hero-bg img {
        object-position: 58% 40%;
      }

      .hero::before {
        background:
          linear-gradient(
            180deg,
            rgba(36, 31, 33, 0.35) 0%,
            rgba(36, 31, 33, 0.12) 28%,
            rgba(36, 31, 33, 0.45) 55%,
            rgba(36, 31, 33, 0.82) 100%
          );
      }

      .hero-inner {
        width: min(var(--container), calc(100% - 2rem));
        padding: 0.5rem 0 0;
        position: relative;
        z-index: 4;
      }

      .hero-title {
        white-space: normal;
        font-size: clamp(1.7rem, 8.2vw, 2.15rem);
        line-height: 1.12;
        max-width: 12ch;
        margin: 0 0 0.4rem;
      }

      .hero-location {
        margin: 0 0 1.1rem;
        font-size: 0.72rem;
        letter-spacing: 0.12em;
      }

      .hero-offers {
        gap: 0.7rem;
      }

      .hero-offer {
        padding: 1.05rem 1.1rem 1.15rem;
        gap: 0.5rem;
      }

      .hero-offer:hover {
        transform: none;
      }

      .hero-offer h2 {
        font-size: 1.28rem;
        line-height: 1.18;
      }

      .hero-offer p {
        font-size: 0.88rem;
        line-height: 1.45;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        overflow: hidden;
      }

      .hero-offer .btn {
        width: 100%;
        min-height: 2.55rem;
        margin-top: 0.25rem;
        padding: 0.6rem 0.85rem;
        font-size: 0.64rem;
        letter-spacing: 0.08em;
      }
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.95rem;
      margin-top: 1.5rem;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 3.25rem;
      padding: 0.9rem 1.55rem;
      font-size: var(--text-xs);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid transparent;
      transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .btn:hover {
      transform: translateY(-1px);
    }

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

    .btn-primary:hover {
      background: #ffb588;
    }

    .btn-ghost {
      border-color: rgba(229, 220, 215, 0.55);
      color: var(--cream);
    }

    .btn-ghost:hover {
      background: rgba(229, 220, 215, 0.1);
      border-color: var(--cream);
    }

    .scroll-cue {
      position: absolute;
      left: 50%;
      bottom: 1.5rem;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.45rem;
      color: rgba(229, 220, 215, 0.72);
      font-size: var(--text-xs);
      letter-spacing: 0.18em;
      text-transform: uppercase;
      animation: bob 2.4s ease-in-out infinite;
      pointer-events: none;
    }

    @media (max-width: 799px) {
      .scroll-cue {
        bottom: 0.85rem;
        z-index: 5;
        font-size: 0.62rem;
        letter-spacing: 0.16em;
      }

      html {
        scroll-padding-top: 5.25rem;
      }
    }

    .scroll-cue svg {
      width: 1.1rem;
      height: 1.1rem;
      display: block;
      opacity: 0.88;
    }

    @keyframes rise {
      from {
        opacity: 1;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes bob {
      0%, 100% { transform: translate(-50%, 0); }
      50% { transform: translate(-50%, 6px); }
    }

    /* Shared sections */
    .section {
      padding-block: var(--section-y);
    }

    .eyebrow {
      font-size: var(--text-xs);
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 1rem;
      opacity: 0.68;
    }

    .section-title {
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: var(--title);
      line-height: 1.12;
      letter-spacing: -0.01em;
      margin-bottom: 1.15rem;
      max-width: 18ch;
    }

    .section-copy {
      max-width: 44rem;
      font-size: var(--text-md);
      line-height: 1.7;
      color: var(--text-muted);
    }

    .section-copy strong {
      color: inherit;
      font-weight: 600;
    }

    .section-header {
      margin-bottom: var(--content-gap);
    }

    /* Keep visible for design tools (HTML to Figma). Motion is transform-only. */
    .reveal {
      opacity: 1;
      transform: none;
    }

    /* Intro */
    .intro {
      background: var(--peach);
      color: var(--ink);
    }

    .intro .section-copy {
      color: rgba(36, 31, 33, 0.78);
    }

    .intro .section-title {
      margin-bottom: 0;
    }

    .intro-grid {
      display: grid;
      gap: clamp(1.75rem, 4vw, 3.5rem);
    }

    @media (min-width: 860px) {
      .intro-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
        align-items: start;
        gap: clamp(2.5rem, 6vw, 5rem);
      }
    }

    .intro-body {
      display: grid;
      gap: 1.1rem;
      padding-top: 0.15rem;
    }

    @media (min-width: 860px) {
      .intro-body {
        padding-top: 2.1rem;
      }
    }

    /* Locations */
    .locations {
      background: var(--cream);
    }

    .location-toolbar {
      display: flex;
      flex-wrap: wrap;
      align-items: flex-end;
      justify-content: space-between;
      gap: 1.25rem 2rem;
      margin-bottom: var(--content-gap);
    }

    .location-toolbar .section-title {
      margin-bottom: 0.85rem;
    }

    .location-select-wrap {
      position: relative;
      min-width: min(100%, 280px);
      width: min(100%, 22rem);
    }

    .location-select-label {
      display: block;
      margin-bottom: 0.5rem;
      font-size: var(--text-xs);
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(36, 31, 33, 0.55);
    }

    .location-select-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      min-height: 3.4rem;
      padding: 0.85rem 1.05rem;
      background: transparent;
      border: 1px solid rgba(36, 31, 33, 0.22);
      cursor: pointer;
      text-align: left;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .location-select-btn:hover,
    .location-select.is-open .location-select-btn {
      border-color: var(--ink);
      background: rgba(255, 255, 255, 0.28);
    }

    .location-select-btn .label-main {
      font-family: "Feijoa", Georgia, serif;
      font-size: 1.3rem;
      font-weight: 500;
    }

    .location-select-btn .label-sub {
      display: block;
      margin-top: 0.15rem;
      font-size: var(--text-sm);
      letter-spacing: 0.06em;
      color: rgba(36, 31, 33, 0.55);
    }

    .location-select-menu {
      position: absolute;
      top: calc(100% + 0.4rem);
      left: 0;
      right: 0;
      z-index: 20;
      width: auto;
      max-height: min(24rem, 70vh);
      overflow-y: auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: 0.2rem;
      background: var(--ink);
      color: var(--cream);
      padding: 0.55rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(6px);
      transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
      box-shadow: 0 16px 36px rgba(36, 31, 33, 0.18);
    }

    @media (min-width: 720px) {
      .location-select-menu {
        left: auto;
        right: 0;
        width: min(22rem, calc(100vw - 2.5rem));
        grid-template-columns: 1fr;
      }
    }

    .location-select.is-open .location-select-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .location-select.is-open .nav-chevron {
      transform: rotate(225deg) translateY(-1px);
    }

    .location-option {
      width: 100%;
      display: grid;
      gap: 0.15rem;
      min-height: 3.9rem;
      padding: 0.8rem 0.85rem;
      background: none;
      border: 0;
      color: inherit;
      text-align: left;
      cursor: pointer;
      align-content: center;
      transition: background 0.2s ease;
    }

    .location-option:hover,
    .location-option[aria-selected="true"] {
      background: rgba(247, 165, 115, 0.22);
    }

    .location-option[disabled] {
      opacity: 0.38;
      cursor: not-allowed;
      color: rgba(229, 220, 215, 0.5);
    }

    .location-option[disabled]:hover {
      background: transparent;
    }

    .location-option[disabled] .dropdown-name {
      color: rgba(229, 220, 215, 0.48);
    }

    .location-option[disabled] .dropdown-meta {
      color: rgba(229, 220, 215, 0.38);
    }

    .location-option .coming-soon-tag {
      display: inline-block;
      margin-top: 0.2rem;
      font-size: 0.65rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(229, 220, 215, 0.42);
    }

    .location-option .dropdown-name {
      color: var(--cream);
      font-size: 1.15rem;
    }

    .location-option .dropdown-meta {
      color: rgba(229, 220, 215, 0.62);
      font-size: var(--text-sm);
    }

    .location-stage {
      display: grid;
      gap: 1.35rem;
    }

    @media (min-width: 920px) {
      .location-stage {
        grid-template-columns: 1.4fr 0.9fr;
        gap: 1.5rem;
        min-height: 540px;
      }
    }

    .location-visual {
      position: relative;
      min-height: clamp(280px, 46vw, 540px);
      overflow: hidden;
      background-color: #2d3f31;
    }

    .location-carousel-track {
      position: absolute;
      inset: 0;
    }

    .location-slide {
      position: absolute;
      inset: 0;
      margin: 0;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.7s ease, visibility 0.7s ease;
      pointer-events: none;
    }

    .location-slide.is-active {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      z-index: 1;
    }

    .location-slide img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .location-carousel-ui {
      position: absolute;
      inset: auto 0 0 0;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.75rem;
      padding: 0.85rem 0.9rem;
      background: linear-gradient(180deg, transparent 0%, rgba(36, 31, 33, 0.55) 100%);
      pointer-events: none;
    }

    .location-carousel-ui > * {
      pointer-events: auto;
    }

    .location-carousel-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 2.4rem;
      height: 2.4rem;
      border: 1px solid rgba(229, 220, 215, 0.45);
      background: rgba(36, 31, 33, 0.35);
      color: var(--cream);
      cursor: pointer;
      transition: background 0.2s ease, border-color 0.2s ease;
    }

    .location-carousel-btn:hover,
    .location-carousel-btn:focus-visible {
      background: rgba(247, 165, 115, 0.9);
      border-color: rgba(247, 165, 115, 0.95);
      color: var(--ink);
      outline: none;
    }

    .location-carousel-btn svg {
      width: 1.05rem;
      height: 1.05rem;
      display: block;
    }

    .location-carousel-dots {
      display: flex;
      flex: 1;
      align-items: center;
      justify-content: center;
      gap: 0.45rem;
      list-style: none;
      margin: 0;
      padding: 0;
    }

    .location-carousel-dots button {
      width: 0.45rem;
      height: 0.45rem;
      padding: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(229, 220, 215, 0.4);
      cursor: pointer;
      transition: background 0.2s ease, transform 0.2s ease;
    }

    .location-carousel-dots button[aria-current="true"] {
      background: var(--peach);
      transform: scale(1.25);
    }

    .location-carousel-dots button:focus-visible {
      outline: 2px solid var(--peach);
      outline-offset: 2px;
    }

    .location-content.is-switching .location-visual,
    .location-content.is-switching .location-panel,
    .amenities.is-switching,
    .wellness.is-switching,
    .experience.is-switching .experience-block {
      opacity: 0.35;
    }

    .location-panel,
    .amenity-feature,
    .amenity-icons,
    .wellness-grid,
    .experience-block {
      transition: opacity 0.35s ease;
    }

    .location-panel {
      background: var(--green);
      color: var(--cream);
      padding: clamp(2rem, 4vw, 2.85rem);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 2.25rem;
    }

    .location-panel h3 {
      font-family: "Feijoa", Georgia, serif;
      font-size: clamp(1.9rem, 3vw, 2.5rem);
      font-weight: 500;
      line-height: 1.15;
      margin-bottom: 1rem;
    }

    .location-panel p {
      color: rgba(229, 220, 215, 0.82);
      max-width: 34ch;
      line-height: 1.65;
      font-size: var(--text-md);
    }

    .meta-list {
      list-style: none;
      display: grid;
      gap: 1rem;
      padding-top: 1.5rem;
      border-top: 1px solid rgba(229, 220, 215, 0.2);
    }

    .meta-list li {
      display: flex;
      justify-content: space-between;
      gap: 1rem;
      font-size: 1.02rem;
    }

    .meta-list span:first-child {
      opacity: 0.62;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      font-size: var(--text-xs);
    }

    /* Stay / Dining */
    .experience {
      background: var(--green-deep);
      color: var(--cream);
    }

    .experience .section-copy {
      color: rgba(229, 220, 215, 0.78);
    }

    .experience .section-title {
      max-width: 16ch;
    }

    .experience-grid {
      display: grid;
      gap: 1.35rem;
      margin-top: var(--content-gap);
    }

    @media (min-width: 860px) {
      .experience-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    .experience-block {
      position: relative;
      min-height: clamp(380px, 48vw, 460px);
      overflow: hidden;
      isolation: isolate;
      color: var(--cream);
    }

    .experience-block > img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      transform: scale(1.03);
      transition: transform 1.2s var(--ease);
    }

    .experience-block:hover > img {
      transform: scale(1.07);
    }

    .experience-block::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(
          180deg,
          rgba(36, 31, 33, 0.22) 0%,
          rgba(36, 31, 33, 0.4) 35%,
          rgba(36, 31, 33, 0.78) 72%,
          rgba(36, 31, 33, 0.88) 100%
        );
      pointer-events: none;
    }

    .experience-content {
      position: absolute;
      inset: auto 0 0 0;
      z-index: 2;
      box-sizing: border-box;
      width: 100%;
      padding: clamp(1.75rem, 3.5vw, 2.4rem);
      display: grid;
      grid-template-rows: auto minmax(7.25rem, auto) auto;
      gap: 0.75rem 0;
      align-content: end;
    }

    .experience-content h3 {
      font-family: "Feijoa", Georgia, serif;
      font-size: clamp(2rem, 3.2vw, 2.6rem);
      font-weight: 500;
      margin: 0;
      line-height: 1.15;
      color: #e5dcd7;
      text-shadow: 0 1px 12px rgba(36, 31, 33, 0.35);
    }

    .experience-content p {
      max-width: 36ch;
      margin: 0;
      color: rgba(229, 220, 215, 0.94);
      line-height: 1.65;
      font-size: var(--text-md);
    }

    .experience-content .text-link {
      justify-self: start;
      margin-top: 0.35rem;
    }

    .text-link {
      font-size: var(--text-xs);
      letter-spacing: 0.12em;
      text-transform: uppercase;
      border-bottom: 1px solid rgba(229, 220, 215, 0.45);
      padding-bottom: 0.2rem;
      transition: border-color 0.25s ease;
    }

    .text-link:hover {
      border-color: var(--cream);
    }

    /* Amenities */
    .amenities {
      background: var(--cream-soft);
    }

    .amenity-feature {
      position: relative;
      min-height: clamp(280px, 42vw, 480px);
      margin-bottom: clamp(2rem, 4vw, 3rem);
      overflow: hidden;
      background-color: #e5dcd7;
    }

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

    .amenities-intro {
      display: grid;
      gap: 1.5rem;
      margin-bottom: var(--content-gap);
    }

    @media (min-width: 860px) {
      .amenities-intro {
        grid-template-columns: 1fr 1fr;
        align-items: end;
        gap: 3rem;
      }
    }

    /* Amenities — text grid with Amargo line icons */
    .amenity-icons {
      --amenity-rule: rgba(45, 63, 49, 0.12);
      list-style: none;
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0;
      margin: 0;
      padding: 0.15rem 0 0;
      border-top: 1px solid var(--amenity-rule);
      color: var(--green);
    }

    @media (min-width: 700px) {
      .amenity-icons {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (min-width: 1020px) {
      .amenity-icons {
        grid-template-columns: repeat(4, minmax(0, 1fr));
      }
    }

    .amenity-icons li {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      min-height: 3.35rem;
      margin: 0;
      padding: 0.95rem 1rem 0.95rem 0;
      border-bottom: 1px solid var(--amenity-rule);
      text-align: left;
    }

    @media (min-width: 700px) {
      .amenity-icons li {
        padding-right: 1.15rem;
      }

      .amenity-icons li:nth-child(3n) {
        padding-right: 0;
      }
    }

    @media (min-width: 1020px) {
      .amenity-icons li:nth-child(3n) {
        padding-right: 1.15rem;
      }

      .amenity-icons li:nth-child(4n) {
        padding-right: 0;
      }
    }

    .amenity-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 1.65rem;
      height: 1.65rem;
      line-height: 0;
    }

    .amenity-icon img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain;
      object-position: center;
    }

    .amenity-label {
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      line-height: 1.4;
      color: var(--green);
    }

    /* Club Flourish (reuses wellness section shell) */
    .wellness {
      background: var(--gold);
      color: var(--ink);
    }

    .wellness .section-copy {
      color: rgba(36, 31, 33, 0.78);
    }

    .wellness .section-title {
      max-width: 16ch;
    }

    .club-intro {
      display: grid;
      gap: clamp(1.75rem, 3.5vw, 2.75rem);
      margin-bottom: clamp(2.25rem, 4.5vw, 3.5rem);
      align-items: stretch;
    }

    @media (min-width: 900px) {
      .club-intro {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: clamp(2rem, 4vw, 3.5rem);
        align-items: end;
      }
    }

    .club-intro .section-header {
      margin-bottom: 0;
      max-width: 36rem;
    }

    .club-intro .section-copy {
      max-width: 40ch;
    }

    .club-feature {
      margin: 0;
      position: relative;
      min-height: clamp(200px, 36vw, 280px);
      overflow: hidden;
      background-color: #e5dcd7;
    }

    @media (min-width: 900px) {
      .club-feature {
        min-height: clamp(240px, 26vw, 320px);
      }
    }

    .club-feature img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center 55%;
      display: block;
    }

    .club-subhead {
      margin-top: 0;
      margin-bottom: clamp(1.5rem, 3vw, 2.25rem);
    }

    .club-subhead .eyebrow {
      margin-bottom: 0.65rem;
      opacity: 0.72;
    }

    .club-subhead h3 {
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: clamp(1.65rem, 2.8vw, 2.1rem);
      line-height: 1.15;
      margin: 0;
      color: var(--ink);
    }

    .wellness-grid {
      display: grid;
      gap: clamp(1.75rem, 4vw, 2.75rem);
    }

    @media (min-width: 860px) {
      .wellness-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: clamp(2.5rem, 5vw, 4rem);
      }
    }

    .wellness-item {
      padding-top: 1.75rem;
      border-top: 1px solid rgba(36, 31, 33, 0.2);
      display: flex;
      flex-direction: column;
      gap: 0.55rem;
    }

    .wellness-item .gear-time {
      display: block;
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: rgba(36, 31, 33, 0.55);
      margin: 0 0 0.25rem;
    }

    .wellness-item h3,
    .wellness-item h4 {
      font-family: "Feijoa", Georgia, serif;
      font-size: clamp(1.5rem, 2.4vw, 1.85rem);
      font-weight: 500;
      margin: 0 0 0.35rem;
      line-height: 1.2;
    }

    .wellness-item p {
      color: rgba(36, 31, 33, 0.78);
      font-size: var(--text-md);
      line-height: 1.7;
      margin: 0;
      max-width: 38ch;
    }

    .club-tagline {
      margin-top: clamp(2.5rem, 5vw, 3.75rem);
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: clamp(1.5rem, 4.2vw, 2.85rem);
      line-height: 1.2;
      letter-spacing: -0.01em;
      color: var(--ink);
      max-width: none;
      width: 100%;
    }

    /* Map — mono cream/green treatment so it sits with brand (not stock OSM colours) */
    .map-section {
      background: var(--cream-soft);
    }

    .map-section .section-title {
      max-width: 18ch;
    }

    .map-section.is-switching .map-layout {
      opacity: 0.4;
    }

    .map-layout {
      display: grid;
      gap: clamp(2rem, 4vw, 3.25rem);
      align-items: stretch;
      transition: opacity 0.35s ease;
    }

    @media (min-width: 900px) {
      .map-layout {
        grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.25fr);
        gap: clamp(2.5rem, 5vw, 4rem);
        align-items: center;
      }

      .map-shell {
        align-self: stretch;
        min-height: 400px;
      }

      .map-frame {
        height: 100%;
        min-height: 400px;
      }
    }

    .map-intro {
      max-width: 28rem;
    }

    .map-address {
      margin-top: 1.15rem;
      font-size: var(--text-md);
      color: var(--text-muted);
    }

    .map-address strong {
      display: block;
      font-family: "Feijoa", Georgia, serif;
      font-size: 1.3rem;
      font-weight: 500;
      color: var(--ink);
      margin-bottom: 0.3rem;
    }

    .map-shell {
      min-width: 0;
    }

    .map-frame {
      position: relative;
      width: 100%;
      height: min(48vh, 420px);
      min-height: 300px;
      background: #c9bfb6;
      overflow: hidden;
      border: 1px solid rgba(36, 31, 33, 0.08);
    }

    .map-canvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 1;
      background: #c9bfb6;
    }

    /* Grey base map first — then brand duotone panes (JS) sit above tiles */
    .map-canvas .leaflet-tile-pane {
      filter: grayscale(1) contrast(0.9) brightness(1.08);
    }

    .map-canvas .leaflet-tint-pane {
      z-index: 350;
      pointer-events: none;
    }

    .map-brand-tint {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #2d3f31;
      mix-blend-mode: color;
      opacity: 0.72;
    }

    .map-brand-warm {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      background: #e5dcd7;
      mix-blend-mode: soft-light;
      opacity: 0.55;
    }

    .map-frame::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background:
        linear-gradient(180deg, rgba(239, 232, 227, 0.35) 0%, transparent 18%, transparent 78%, rgba(239, 232, 227, 0.45) 100%),
        radial-gradient(ellipse at 50% 45%, transparent 42%, rgba(36, 31, 33, 0.12) 100%);
      box-shadow: inset 0 0 0 1px rgba(36, 31, 33, 0.05);
    }

    .map-frame .leaflet-control-attribution {
      background: transparent !important;
      color: rgba(36, 31, 33, 0.45);
      font-size: 0.65rem;
      padding: 0.35rem 0.55rem;
      border: 0;
      box-shadow: none;
      margin: 0;
    }

    .map-frame .leaflet-control-attribution a {
      color: rgba(36, 31, 33, 0.45);
    }

    .map-frame .leaflet-control-container {
      z-index: 5;
    }

    .map-pin {
      background: transparent !important;
      border: 0 !important;
    }

    .map-pin-inner {
      display: flex;
      align-items: center;
      gap: 0.55rem;
      transform: translate(-14px, -14px);
    }

    .map-marker {
      flex-shrink: 0;
      width: 16px;
      height: 16px;
      border: 2px solid var(--cream);
      background: var(--peach);
      border-radius: 50%;
      box-shadow: 0 2px 10px rgba(36, 31, 33, 0.35);
    }

    .map-pin-label {
      display: inline-flex;
      align-items: center;
      min-height: 2rem;
      padding: 0.35rem 0.7rem;
      background: var(--cream);
      color: var(--ink);
      font-family: "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
      font-size: 0.72rem;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      white-space: nowrap;
      border: 1px solid rgba(36, 31, 33, 0.1);
      box-shadow: 0 6px 18px rgba(36, 31, 33, 0.12);
    }

    .map-link {
      position: absolute;
      right: 1rem;
      bottom: 1rem;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      min-height: 2.5rem;
      padding: 0.55rem 0.95rem;
      background: var(--green);
      color: var(--cream);
      font-size: var(--text-xs);
      font-weight: 600;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      border: 1px solid transparent;
      transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
    }

    .map-link:hover {
      background: var(--cream);
      color: var(--ink);
      border-color: rgba(36, 31, 33, 0.12);
    }

    /* EOI - solid fields (transparent underline inputs collapse in HTML→Figma) */
    .eoi {
      background: #2d3f31;
      color: #e5dcd7;
    }

    .eoi .section-copy {
      color: rgba(229, 220, 215, 0.78);
    }

    .eoi-layout {
      display: flex;
      flex-direction: column;
      gap: clamp(1.75rem, 3.5vw, 2.5rem);
    }

    @media (min-width: 920px) {
      .eoi-layout {
        flex-direction: row;
        align-items: flex-start;
        justify-content: space-between;
        gap: clamp(2.5rem, 5vw, 4.5rem);
      }

      .eoi-aside {
        flex: 1 1 auto;
        min-width: 0;
        max-width: 44rem;
      }

      .eoi-form {
        flex: 0 0 auto;
        width: min(34rem, 100%);
        margin-left: auto;
      }
    }

    .eoi .eyebrow {
      opacity: 0.68;
    }

    .eoi .section-title {
      color: #e5dcd7;
    }

    .eoi-form {
      background: #243428;
      border: 1px solid rgba(229, 220, 215, 0.18);
      padding: clamp(1.5rem, 3vw, 2rem);
      color: #e5dcd7;
      max-width: 34rem;
    }

    @media (max-width: 919px) {
      .eoi-form {
        width: 100%;
        max-width: 34rem;
        margin-inline: auto;
      }
    }

    .form-lead {
      margin: 0 0 0.35rem;
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: clamp(1.2rem, 2vw, 1.45rem);
      line-height: 1.3;
      color: #e5dcd7;
    }

    .form-stack {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .form-grid {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 640px) {
      .form-grid.two {
        flex-direction: row;
        gap: 0.85rem;
      }

      .form-grid.two .field {
        flex: 1 1 50%;
        min-width: 0;
      }
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.4rem;
    }

    .field label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: rgba(229, 220, 215, 0.72);
    }

    .field label .req,
    .check .req {
      color: #f7a573;
      margin-left: 0.15rem;
    }

    .field input,
    .field .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-not-valid-tip) {
      width: 100%;
      box-sizing: border-box;
      background: #e5dcd7;
      color: #241f21;
      border: 1px solid rgba(36, 31, 33, 0.12);
      border-radius: 0;
      padding: 0.8rem 0.95rem;
      font-size: 1rem;
      line-height: 1.35;
      outline: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .field input::placeholder,
    .field .wpcf7-form-control:not(.wpcf7-submit)::placeholder {
      color: rgba(36, 31, 33, 0.42);
    }

    .field input:focus,
    .field .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-not-valid-tip):focus {
      border-color: #f7a573;
      box-shadow: 0 0 0 1px #f7a573;
    }

    .check {
      position: relative;
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
      margin-top: 0.15rem;
      font-size: 0.95rem;
      color: rgba(229, 220, 215, 0.92);
      cursor: pointer;
      line-height: 1.45;
    }

    /* Visually hidden but still clickable via the label. */
    .check-input {
      position: absolute;
      width: 1.15rem;
      height: 1.15rem;
      margin: 0.15rem 0 0;
      padding: 0;
      opacity: 0;
      cursor: pointer;
      flex-shrink: 0;
    }

    /* Solid box — visible node for HTML→Figma and browser. */
    .check-box {
      flex-shrink: 0;
      display: block;
      width: 1.15rem;
      height: 1.15rem;
      min-width: 1.15rem;
      min-height: 1.15rem;
      margin-top: 0.15rem;
      box-sizing: border-box;
      background: #e5dcd7;
      border: 1.5px solid rgba(36, 31, 33, 0.35);
      border-radius: 0;
      pointer-events: none;
    }

    .check-input:focus-visible ~ .wpcf7-list-item-label .check-box,
    .eoi-form .check-input:focus-visible ~ .wpcf7-list-item-label .check-box {
      outline: 2px solid #f7a573;
      outline-offset: 2px;
    }

    .check-input:checked ~ .wpcf7-list-item-label .check-box,
    .eoi-form .check-input:checked ~ .wpcf7-list-item-label .check-box {
      background: #f7a573;
      border-color: #f7a573;
    }

    /* Check mark as nested span (more reliable than pseudo for exporters). */
    .check-mark {
      display: none;
      width: 100%;
      height: 100%;
      background:
        linear-gradient(#241f21, #241f21) 42% 62% / 0.16rem 0.55rem no-repeat,
        linear-gradient(#241f21, #241f21) 58% 52% / 0.9rem 0.16rem no-repeat;
      transform: rotate(-45deg) scale(0.72);
      transform-origin: center;
      pointer-events: none;
    }

    .check-input:checked ~ .wpcf7-list-item-label .check-mark,
    .eoi-form .check-input:checked ~ .wpcf7-list-item-label .check-mark {
      display: block;
    }

    .check a {
      color: #f7a573;
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

    .check a:hover {
      color: #e5dcd7;
    }

    .form-actions {
      margin-top: 0.35rem;
    }

    .eoi-form .form-actions .btn-primary,
    .eoi-form .form-actions .wpcf7-submit {
      width: 100%;
      max-width: none;
      min-height: 3.1rem;
      padding: 0.85rem 1.25rem;
      font-size: 0.8rem;
    }

    .eoi-form .wpcf7-form-control-wrap {
      display: block;
    }

    .eoi-form .screen-reader-response {
      position: absolute;
      overflow: hidden;
      clip: rect(1px, 1px, 1px, 1px);
      clip-path: inset(50%);
      height: 1px;
      width: 1px;
      margin: -1px;
      padding: 0;
      border: 0;
      white-space: nowrap;
    }

    .eoi-form .wpcf7-not-valid-tip {
      display: block;
      margin-top: 0.35rem;
      color: #ffb588;
      font-size: var(--text-sm);
    }

    .eoi-form .wpcf7-response-output {
      display: none !important;
    }

    .eoi-form form.invalid .wpcf7-response-output,
    .eoi-form form.failed .wpcf7-response-output,
    .eoi-form form.spam .wpcf7-response-output,
    .eoi-form form.unaccepted .wpcf7-response-output {
      display: none !important;
    }

    .eoi-form .wpcf7-spinner {
      margin-left: 0.5rem;
    }

    .eoi-form .hidden-fields-container {
      display: none;
    }

    .eoi-form .wpcf7-form p {
      margin: 0;
    }

    .eoi-form .field label br {
      display: none;
    }

    .eoi-form .check > p,
    .eoi-form .check .wpcf7-form-control-wrap,
    .eoi-form .check .wpcf7-acceptance,
    .eoi-form .check .wpcf7-list-item {
      display: contents;
    }

    .eoi-form .check .wpcf7-list-item label {
      position: relative;
      display: block;
      margin-top: 0.15rem;
      font-size: 0.95rem;
      color: rgba(229, 220, 215, 0.92);
      cursor: pointer;
      line-height: 1.45;
    }

    .eoi-form .check .wpcf7-list-item-label {
      display: flex;
      align-items: flex-start;
      gap: 0.65rem;
    }

    .eoi-form .check .check-input {
      position: absolute;
      top: 0.15rem;
      left: 0;
      width: 1.15rem;
      height: 1.15rem;
      margin: 0;
      opacity: 0;
      cursor: pointer;
      z-index: 1;
    }

    .eoi-form .check .check-text {
      flex: 1;
    }

    .eoi-form .check .check-text a {
      position: relative;
      z-index: 2;
    }

    .eoi-form .check.is-checked .check-box {
      background: #f7a573;
      border-color: #f7a573;
    }

    .eoi-form .check.is-checked .check-mark {
      display: block;
    }

    .eoi-form.is-submitted .wpcf7 {
      display: none;
    }

    .form-success {
      display: none;
      padding: 0.35rem 0 0;
      color: #f7a573;
      font-family: "Feijoa", Georgia, serif;
      font-size: clamp(1.35rem, 2.2vw, 1.65rem);
    }

    .form-error {
      display: block;
      margin-top: 0.75rem;
      color: #ffb588;
      font-size: var(--text-sm);
    }

    .eoi-form.is-submitted .form-fields {
      display: none;
    }

    .eoi-form.is-submitted .form-success {
      display: block;
    }

    /* Legal pages */
    .legal-page {
      background: var(--cream-soft);
      padding-top: calc(var(--nav-h) + 2rem);
      padding-bottom: var(--section-y);
    }

    .legal-layout {
      width: min(var(--container), calc(100% - (var(--gutter) * 2)));
    }

    .legal-header {
      margin-bottom: clamp(2rem, 4vw, 3rem);
      padding-bottom: clamp(1.5rem, 3vw, 2rem);
      border-bottom: 1px solid rgba(36, 31, 33, 0.12);
    }

    .legal-title {
      font-family: "Feijoa", Georgia, serif;
      font-weight: 500;
      font-size: var(--title);
      line-height: 1.12;
      letter-spacing: -0.01em;
      max-width: none;
    }

    .legal-body,
    .legal-body .legal-content {
      width: 100%;
      max-width: none;
    }

    .legal-content h2 {
      font-family: "Feijoa", Georgia, serif;
      font-size: clamp(1.5rem, 3vw, 2rem);
      font-weight: 500;
      margin: 2.5rem 0 1rem;
      line-height: 1.2;
    }

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

    .legal-content h3 {
      font-family: "Founders Grotesk", "Helvetica Neue", Arial, sans-serif;
      font-size: var(--text-md);
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      margin: 1.75rem 0 0.75rem;
    }

    .legal-content p,
    .legal-content li {
      color: var(--text-muted);
      margin-bottom: 0.85rem;
    }

    .legal-content ul {
      margin: 0 0 1rem 1.25rem;
      padding: 0;
    }

    .legal-content li {
      margin-bottom: 0.45rem;
    }

    .legal-content a {
      color: var(--green);
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

    .legal-content a:hover {
      color: var(--peach);
    }

    .legal-meta {
      margin-top: 2rem;
      font-size: var(--text-sm);
      color: var(--text-muted);
    }

    /* Footer */
    .site-footer {
      background: var(--ink);
      color: var(--cream);
      padding: 3rem 0 2.5rem;
    }

    .footer-inner {
      display: grid;
      gap: 1.75rem;
    }

    @media (max-width: 799px) {
      .footer-inner {
        justify-items: center;
        text-align: center;
      }

      .footer-brand {
        justify-content: center;
      }

      .footer-meta {
        text-align: center;
      }
    }

    @media (min-width: 800px) {
      .footer-inner {
        grid-template-columns: 1fr auto 1fr;
        align-items: end;
        gap: 2rem;
      }

      .footer-brand {
        justify-self: start;
      }

      .footer-meta {
        justify-self: end;
        text-align: right;
      }

      .footer-legal {
        align-self: center;
        transform: translateY(-0.4rem);
      }
    }

    .footer-brand {
      display: flex;
      align-items: center;
      gap: 1rem;
    }

    .footer-brand img.logo {
      width: 9rem;
    }

    .footer-brand img.mono {
      width: 2.15rem;
      opacity: 0.85;
    }

    .footer-meta {
      font-size: var(--text-sm);
      color: rgba(229, 220, 215, 0.62);
      line-height: 1.75;
    }

    .footer-meta a:hover {
      color: var(--cream);
    }

    .footer-legal {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 0.35rem 0.55rem;
      font-size: var(--text-sm);
      text-align: center;
    }

    .footer-legal a {
      color: rgba(229, 220, 215, 0.82);
      text-decoration: none;
    }

    .footer-legal a:hover {
      color: var(--cream);
      text-decoration: underline;
      text-underline-offset: 0.15em;
    }

    .footer-legal span {
      opacity: 0.45;
    }
  