    /* ======= THEME PALETTES =======
       Each palette defines both --hex vars (for custom CSS) and
       --c-* rgb tuples (for Tailwind's color utilities with opacity). */

    /* A · Heritage — cream + wine + juniper + gold (default) */
    :root, body[data-palette="a"] {
      --cream: #FAF6EE;    --c-cream: 250 246 238;
      --paper: #F4ECDD;    --c-paper: 244 236 221;
      --wine: #8E1B36;     --c-wine: 142 27 54;
      --wine-deep: #5C1A2E; --c-wine-deep: 92 26 46;
      --wine-bright: #D04A66; --c-wine-bright: 208 74 102;
      --juniper: #3C4E3E;  --c-juniper: 60 78 62;
      --juniper-deep: #26332A; --c-juniper-deep: 38 51 42;
      --gold: #C9A862;     --c-gold: 201 168 98;
      --gold-soft: #E2C998; --c-gold-soft: 226 201 152;
      --ink: #1A1A1A;      --c-ink: 26 26 26;
      --ink-soft: #3C3936; --c-ink-soft: 60 57 54;
      --line: #E8DEC9;     --c-line: 232 222 201;
      --line-soft: #EFE7D4; --c-line-soft: 239 231 212;
    }

    /* B · Coastal — white + deep navy + teal + warm gold */
    body[data-palette="b"] {
      --cream: #FFFFFF;    --c-cream: 255 255 255;
      --paper: #F5F7F9;    --c-paper: 245 247 249;
      --wine: #2C6E78;     --c-wine: 44 110 120;        /* teal as primary accent */
      --wine-deep: #1C4F58; --c-wine-deep: 28 79 88;
      --wine-bright: #5EB1BD; --c-wine-bright: 94 177 189; /* bright teal on dark */
      --juniper: #0F2B40;  --c-juniper: 15 43 64;        /* deep navy */
      --juniper-deep: #091E2E; --c-juniper-deep: 9 30 46;
      --gold: #C19A55;     --c-gold: 193 154 85;        /* warm brass */
      --gold-soft: #E2C58B; --c-gold-soft: 226 197 139;
      --ink: #0F2B40;      --c-ink: 15 43 64;
      --ink-soft: #3B4E64; --c-ink-soft: 59 78 100;
      --line: #E2E6EC;     --c-line: 226 230 236;
      --line-soft: #F0F3F7; --c-line-soft: 240 243 247;
    }

    /* C · Vineyard — deep cream + burgundy + forest + antique gold */
    body[data-palette="c"] {
      --cream: #F2E8D0;    --c-cream: 242 232 208;
      --paper: #E9DCB9;    --c-paper: 233 220 185;
      --wine: #7A1E29;     --c-wine: 122 30 41;          /* deeper burgundy */
      --wine-deep: #5A1019; --c-wine-deep: 90 16 25;
      --wine-bright: #C24858; --c-wine-bright: 194 72 88;
      --juniper: #1F3829;  --c-juniper: 31 56 41;        /* deep forest */
      --juniper-deep: #14261B; --c-juniper-deep: 20 38 27;
      --gold: #B08D57;     --c-gold: 176 141 87;         /* antique gold */
      --gold-soft: #D4B47D; --c-gold-soft: 212 180 125;
      --ink: #2A1810;      --c-ink: 42 24 16;            /* warm dark */
      --ink-soft: #533829; --c-ink-soft: 83 56 41;
      --line: #D5C09B;     --c-line: 213 192 155;
      --line-soft: #E1D2AC; --c-line-soft: 225 210 172;
    }

    /* ======= DISPLAY FONTS ======= */
    :root, body[data-display-font="cormorant"] { --f-display: 'Cormorant Garamond', Georgia, serif; }
    body[data-display-font="playfair"]         { --f-display: 'Playfair Display', Georgia, serif; }
    body[data-display-font="spectral"]         { --f-display: 'Spectral', Georgia, serif; }
    body[data-display-font="newsreader"]       { --f-display: 'Newsreader', Georgia, serif; }

    /* ======= BODY FONTS ======= */
    :root, body[data-body-font="manrope"]   { --f-sans: 'Manrope', system-ui, sans-serif; }
    body[data-body-font="karla"]            { --f-sans: 'Karla', system-ui, sans-serif; }
    body[data-body-font="inter"]            { --f-sans: 'Inter', system-ui, sans-serif; }
    body[data-body-font="ibm-plex"]         { --f-sans: 'IBM Plex Sans', system-ui, sans-serif; }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 96px;
    }

    body {
      background-color: var(--cream);
      color: var(--ink);
      font-feature-settings: "kern", "liga", "calt";
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* Remove 300ms tap delay on iOS */
    a, button, input, select, textarea, [role="button"] {
      touch-action: manipulation;
    }

    /* Tabular numerals for prices and stats — even widths */
    .stat-num, .num-tabular, .price {
      font-variant-numeric: tabular-nums;
    }

    /* Skip-to-content — invisible until focused */
    .skip-link {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 200;
      padding: 12px 18px;
      background: var(--wine);
      color: var(--cream);
      font-family: var(--f-sans);
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      transform: translateY(-200%);
      transition: transform 0.3s ease;
    }
    .skip-link:focus-visible { transform: translateY(0); outline: 2px solid var(--cream); outline-offset: 2px; }

    /* Subtle paper grain — adds warmth without being noisy */
    .grain::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.04;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
    }

    /* Hero gradient overlay — keeps text readable, doesn't kill the photo */
    .hero-vignette {
      background:
        linear-gradient(180deg, rgba(20,16,12,0.0) 0%, rgba(20,16,12,0.05) 38%, rgba(20,16,12,0.55) 100%),
        linear-gradient(90deg, rgba(20,16,12,0.50) 0%, rgba(20,16,12,0.15) 55%, rgba(20,16,12,0.0) 100%);
    }

    /* Roman numeral hairline rule */
    .rule {
      display: inline-block;
      width: 36px;
      height: 1px;
      background: var(--gold);
      vertical-align: middle;
      margin: 0 16px 4px 0;
    }
    .rule-after {
      display: inline-block;
      width: 16px;
      height: 1px;
      background: var(--line);
      vertical-align: middle;
      margin: 0 0 4px 14px;
    }

    /* Section eyebrows */
    .eyebrow {
      font-family: var(--f-sans);
      font-weight: 500;
      font-size: 11px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      color: var(--juniper);
    }

    /* Big display headlines */
    .display {
      font-family: var(--f-display);
      font-weight: 500;
      line-height: 1.08;
      letter-spacing: -0.01em;
    }
    .display em, .display i {
      font-style: italic;
      font-weight: 500;
      color: inherit;
    }
    /* On dark photo backgrounds, italic emphasis pops as bright rose-wine */
    .on-dark .display em, .on-dark .display i {
      font-weight: 600;
      color: var(--wine-bright);
    }
    /* Opt-in red accent for occasional words (prices, key value moments) */
    .display .accent-wine {
      color: var(--wine);
      font-style: italic;
      font-weight: 600;
    }

    /* Underline / link styles */
    .link-arrow {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: var(--f-sans);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--wine);
      transition: gap 0.35s ease;
    }
    .link-arrow .arrow {
      display: inline-block;
      width: 28px;
      height: 1px;
      background: currentColor;
      position: relative;
      transition: width 0.35s ease;
    }
    .link-arrow .arrow::after {
      content: "";
      position: absolute;
      right: 0;
      top: -3px;
      width: 7px;
      height: 7px;
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
      transform: rotate(45deg);
    }
    .link-arrow:hover .arrow { width: 40px; }
    .link-arrow:hover { gap: 14px; }

    /* Header scroll state */
    header.is-scrolled {
      background-color: var(--cream);
      border-bottom: 1px solid var(--line);
    }
    header.is-scrolled .nav-link,
    header.is-scrolled .brand-line-1,
    header.is-scrolled .lang-toggle {
      color: var(--ink);
    }
    header.is-scrolled .brand-line-2 {
      color: var(--wine);
    }

    /* Booking widget hairline dividers */
    .booking-field + .booking-field {
      border-left: 1px solid var(--line);
    }

    /* Cards */
    .card-property {
      position: relative;
      cursor: pointer;
      transition: transform 0.5s ease;
    }
    .card-property .photo {
      overflow: hidden;
      position: relative;
    }
    .card-property .photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
      filter: brightness(0.95) saturate(0.95);
    }
    .card-property:hover .photo img {
      transform: scale(1.05);
      filter: brightness(1.0) saturate(1.05);
    }
    .card-property:hover .link-arrow .arrow { width: 40px; }
    .card-property:hover .link-arrow { gap: 14px; }

    /* FAQ accordion */
    .faq-item {
      border-bottom: 1px solid var(--line);
    }
    .faq-item:first-child { border-top: 1px solid var(--line); }
    .faq-trigger {
      width: 100%;
      text-align: left;
      padding: 28px 0;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
      cursor: pointer;
      background: transparent;
      transition: color 0.3s ease;
    }
    .faq-trigger:hover { color: var(--wine); }
    .faq-icon {
      flex-shrink: 0;
      width: 32px;
      height: 32px;
      border: 1px solid var(--line);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform 0.4s ease, border-color 0.3s ease, background-color 0.3s ease;
    }
    .faq-icon::before, .faq-icon::after {
      content: "";
      position: absolute;
      background: var(--ink);
      transition: background-color 0.3s ease, opacity 0.3s ease;
    }
    .faq-icon::before { width: 12px; height: 1px; }
    .faq-icon::after { width: 1px; height: 12px; }
    .faq-item.is-open .faq-icon { transform: rotate(45deg); background: var(--wine); border-color: var(--wine); }
    .faq-item.is-open .faq-icon::before,
    .faq-item.is-open .faq-icon::after { background: var(--cream); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .faq-item.is-open .faq-answer { max-height: 400px; }
    .faq-answer-inner { padding: 0 0 28px 0; max-width: 720px; }

    /* Stat block */
    .stat-num {
      font-family: var(--f-display);
      font-weight: 400;
      font-size: clamp(48px, 5.5vw, 76px);
      line-height: 1;
      color: var(--wine);
      letter-spacing: -0.02em;
    }
    .stat-num sup {
      font-size: 0.4em;
      vertical-align: super;
      color: var(--juniper);
    }

    /* Quote marks */
    .qmark {
      font-family: var(--f-display);
      font-size: 84px;
      line-height: 0.6;
      color: var(--gold);
      display: inline-block;
      vertical-align: top;
      font-style: italic;
    }

    /* CTA buttons */
    .btn-wine {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--wine);
      color: var(--cream);
      padding: 16px 28px;
      font-family: var(--f-sans);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      transition: background-color 0.35s ease, gap 0.35s ease;
    }
    .btn-wine:hover { background: var(--wine-deep); gap: 18px; }

    .btn-cream-outline {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      color: var(--cream);
      padding: 16px 28px;
      border: 1px solid rgba(250, 246, 238, 0.5);
      font-family: var(--f-sans);
      font-weight: 500;
      font-size: 13px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      transition: background-color 0.35s ease, border-color 0.35s ease, color 0.35s ease;
    }
    .btn-cream-outline:hover { background: var(--cream); color: var(--juniper-deep); border-color: var(--cream); }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 1s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .reveal.is-visible {
      opacity: 1;
      transform: none;
    }

    /* Mobile sticky CTA */
    .mobile-cta {
      position: fixed;
      bottom: 16px;
      left: 16px;
      right: 16px;
      z-index: 60;
      display: none;
    }

    @media (max-width: 768px) {
      .mobile-cta { display: flex; }
      body { padding-bottom: 86px; }
    }

    /* Focus rings — visible only for keyboard */
    a:focus-visible,
    button:focus-visible,
    input:focus-visible,
    select:focus-visible,
    .faq-trigger:focus-visible {
      outline: 2px solid var(--wine);
      outline-offset: 3px;
      border-radius: 2px;
    }
    header.is-scrolled a:focus-visible,
    header.is-scrolled button:focus-visible {
      outline-color: var(--wine);
    }

    /* Reduced motion — respect user preference */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
      .reveal { opacity: 1 !important; transform: none !important; }
      .card-property:hover .photo img { transform: none !important; }
    }

    /* Drop cap — editorial touch on intro (calm juniper, not screaming red) */
    .drop-cap::first-letter {
      font-family: var(--f-display);
      font-weight: 500;
      font-size: 4.4em;
      line-height: 0.85;
      float: left;
      margin: 0.08em 0.12em -0.1em 0;
      color: var(--juniper);
    }

    /* Hide native arrows on date input but keep it usable */
    input[type="date"] {
      appearance: none;
      -webkit-appearance: none;
      background: transparent;
      border: none;
      font-family: var(--f-display);
      font-size: 19px;
      color: var(--ink);
      width: 100%;
      outline: none;
      padding: 0;
      font-weight: 500;
    }
    input[type="date"]::-webkit-calendar-picker-indicator {
      cursor: pointer;
      opacity: 0.6;
    }
    select.guests-select {
      appearance: none;
      -webkit-appearance: none;
      background: transparent;
      border: none;
      font-family: var(--f-display);
      font-size: 19px;
      color: var(--ink);
      font-weight: 500;
      width: 100%;
      outline: none;
      padding-right: 16px;
    }

    /* Whatsapp icon (single-color, no emoji) */
    .icon-wa { width: 16px; height: 16px; }

    /* ==================== MOBILE DRAWER ==================== */
    .drawer {
      position: fixed;
      inset: 0;
      z-index: 80;
      pointer-events: none;
      visibility: hidden;
    }
    .drawer.is-open { pointer-events: auto; visibility: visible; }
    .drawer__backdrop {
      position: absolute;
      inset: 0;
      background: rgba(20, 16, 12, 0.6);
      opacity: 0;
      transition: opacity 0.35s ease;
    }
    .drawer.is-open .drawer__backdrop { opacity: 1; }
    .drawer__panel {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(88vw, 380px);
      background: var(--cream);
      transform: translateX(100%);
      transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
      display: flex;
      flex-direction: column;
      padding: 28px 28px 32px;
      overflow-y: auto;
    }
    .drawer.is-open .drawer__panel { transform: translateX(0); }
    .drawer__head {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 40px;
    }
    .drawer__close {
      width: 44px;
      height: 44px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      color: var(--ink);
      border: 1px solid var(--line);
      background: transparent;
      transition: border-color 0.2s ease;
    }
    .drawer__close:hover { border-color: var(--wine); color: var(--wine); }
    .drawer__close svg { width: 16px; height: 16px; }
    .drawer__nav a {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
      font-family: var(--f-display);
      font-size: 26px;
      color: var(--ink);
      font-weight: 500;
      line-height: 1;
      transition: color 0.2s ease, padding-left 0.3s ease;
    }
    .drawer__nav a:hover { color: var(--wine); padding-left: 4px; }
    .drawer__nav a .num {
      font-family: var(--f-sans);
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--juniper);
      font-weight: 500;
    }
    .drawer__foot {
      margin-top: auto;
      padding-top: 32px;
      border-top: 1px solid var(--line);
    }
    .drawer__foot .label {
      font-family: var(--f-sans);
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: var(--juniper);
      margin-bottom: 8px;
    }
    .drawer__foot a {
      font-family: var(--f-display);
      font-size: 22px;
      color: var(--ink);
      display: block;
      margin-bottom: 6px;
      transition: color 0.2s ease;
    }
    .drawer__foot a:hover { color: var(--wine); }
    /* Hamburger button */
    .hamburger {
      width: 44px;
      height: 44px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      background: transparent;
      border: none;
    }
    .hamburger span {
      display: block;
      width: 20px;
      height: 1.5px;
      background: currentColor;
      transition: transform 0.3s ease, opacity 0.3s ease;
    }

    /* ==================== DESIGN LAB ==================== */
    .lab {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 100;
      font-family: 'Manrope', system-ui, sans-serif;
    }
    .lab__toggle {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #1A1A1A;
      color: #FAF6EE;
      padding: 12px 16px;
      font-size: 11px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      font-weight: 500;
      cursor: pointer;
      border: 1px solid #1A1A1A;
      box-shadow: 0 16px 40px -16px rgba(0,0,0,0.4);
      transition: background-color 0.25s ease;
    }
    .lab__toggle:hover { background: #2A2A2A; }
    .lab__toggle svg { width: 14px; height: 14px; }
    .lab__panel {
      display: none;
      position: absolute;
      right: 0;
      bottom: calc(100% + 10px);
      width: 300px;
      background: #FFFFFF;
      border: 1px solid #E5E5E5;
      box-shadow: 0 30px 80px -20px rgba(0,0,0,0.35);
      padding: 22px 22px 18px;
      color: #1A1A1A;
    }
    .lab[data-open="true"] .lab__panel { display: block; }
    .lab__panel h4 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 22px;
      font-weight: 500;
      line-height: 1;
      margin: 0 0 4px 0;
      color: #1A1A1A;
    }
    .lab__panel .sub {
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 18px;
    }
    .lab__section { margin-bottom: 18px; }
    .lab__section:last-of-type { margin-bottom: 12px; }
    .lab__section > p {
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      color: #777;
      font-weight: 500;
      margin: 0 0 9px 0;
    }
    .lab__opts {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px;
    }
    .lab__opts.stack { grid-template-columns: 1fr; }
    .lab__opt {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 10px;
      padding: 10px 12px;
      border: 1px solid #E5E5E5;
      background: #FFFFFF;
      cursor: pointer;
      font-size: 12px;
      color: #1A1A1A;
      transition: border-color 0.2s ease, background-color 0.2s ease;
      text-align: left;
      line-height: 1;
    }
    .lab__opt:hover { border-color: #B0B0B0; }
    .lab__opt input { position: absolute; opacity: 0; pointer-events: none; }
    .lab__opt:has(input:checked) {
      border-color: #1A1A1A;
      background: #F7F7F7;
    }
    .lab__swatches {
      display: inline-flex;
      gap: 2px;
      flex-shrink: 0;
    }
    .lab__swatches span {
      width: 12px;
      height: 18px;
      display: block;
    }
    .lab__opt span.label {
      font-weight: 500;
      letter-spacing: 0.04em;
      white-space: nowrap;
    }
    .lab__opt span.preview {
      font-size: 18px;
      line-height: 1;
      font-weight: 500;
      color: #1A1A1A;
      width: 22px;
      text-align: center;
      flex-shrink: 0;
    }
    .lab__reset {
      width: 100%;
      margin-top: 8px;
      padding: 10px;
      background: transparent;
      border: 1px solid #E5E5E5;
      color: #888;
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      cursor: pointer;
      transition: color 0.2s ease, border-color 0.2s ease;
    }
    .lab__reset:hover { color: #1A1A1A; border-color: #1A1A1A; }
    @media (max-width: 768px) {
      .lab { right: 12px; bottom: 96px; }
      .lab__panel { width: calc(100vw - 24px); right: 0; }
    }

    /* ==================== ROOM TILES (sub-pages) ==================== */
    .room-card {
      position: relative;
      display: block;
      transition: transform 0.4s ease;
    }
    .room-tile {
      position: relative;
      aspect-ratio: 4 / 5;
      overflow: hidden;
      background: linear-gradient(155deg,
        var(--paper) 0%,
        color-mix(in srgb, var(--paper) 88%, var(--gold) 12%) 50%,
        color-mix(in srgb, var(--paper) 80%, var(--juniper) 6%) 100%);
      transition: filter 0.4s ease;
    }
    .room-card:hover .room-tile { filter: brightness(0.98) saturate(1.05); }
    .room-tile::before {
      content: "";
      position: absolute; inset: 0;
      opacity: 0.10;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%' height='100%' filter='url(%23n)' opacity='0.6'/></svg>");
      pointer-events: none;
    }
    .room-tile__top {
      position: absolute;
      top: 22px; left: 22px;
      right: 22px;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
    }
    .room-tile__eyebrow {
      font-family: var(--f-sans);
      font-size: 10px;
      letter-spacing: 0.32em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--juniper);
    }
    .room-tile__brand {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 14px;
      color: var(--juniper);
    }
    .room-tile__number {
      position: absolute;
      left: 0; right: 0; top: 50%;
      transform: translateY(-50%);
      text-align: center;
      font-family: var(--f-display);
      font-size: clamp(96px, 14vw, 168px);
      font-weight: 400;
      color: var(--wine);
      line-height: 0.85;
      letter-spacing: -0.04em;
    }
    .room-tile__number sub {
      font-size: 0.45em;
      font-style: italic;
      color: var(--wine);
      vertical-align: baseline;
      margin-left: 0.05em;
    }
    .room-tile__foot {
      position: absolute;
      left: 22px; right: 22px; bottom: 22px;
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      font-family: var(--f-sans);
      font-size: 10px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--juniper);
    }
    .room-tile__tier {
      font-family: var(--f-display);
      font-style: italic;
      font-size: 14px;
      letter-spacing: 0;
      text-transform: none;
      color: var(--ink-soft);
    }

    /* Tier variants */
    .room-tile.tier-comfort {
      background: linear-gradient(155deg, var(--paper) 0%, color-mix(in srgb, var(--paper) 78%, var(--gold) 22%) 100%);
    }
    .room-tile.tier-premier {
      background: linear-gradient(155deg, color-mix(in srgb, var(--paper) 85%, var(--wine) 15%) 0%, color-mix(in srgb, var(--paper) 75%, var(--wine) 25%) 100%);
    }
    .room-tile.tier-premier .room-tile__number { color: var(--wine-deep); }
    .room-tile.tier-premier .room-tile__eyebrow,
    .room-tile.tier-premier .room-tile__foot,
    .room-tile.tier-premier .room-tile__brand,
    .room-tile.tier-premier .room-tile__tier { color: var(--wine-deep); }

    /* Card details below tile */
    .room-card__body {
      padding-top: 22px;
    }
    .room-card__head {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      gap: 16px;
      margin-bottom: 10px;
    }
    .room-card__name {
      font-family: var(--f-display);
      font-size: 26px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1;
    }
    .room-card__price {
      font-family: var(--f-display);
      font-size: 18px;
      color: var(--wine);
      font-variant-numeric: tabular-nums;
      white-space: nowrap;
    }
    .room-card__price i {
      font-style: italic;
      font-size: 0.85em;
      color: var(--ink-soft);
      margin-right: 0.15em;
    }
    .room-card__desc {
      font-family: var(--f-sans);
      font-size: 14px;
      color: var(--ink-soft);
      line-height: 1.65;
      margin-bottom: 14px;
    }
    .room-card__chips {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }
    .room-card__chip {
      display: inline-block;
      padding: 4px 10px;
      border: 1px solid var(--line);
      font-family: var(--f-sans);
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--juniper);
      font-weight: 500;
    }

    /* Breadcrumb */
    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 14px;
      font-family: var(--f-sans);
      font-size: 10px;
      letter-spacing: 0.24em;
      text-transform: uppercase;
      font-weight: 500;
      color: var(--cream);
      opacity: 0.7;
    }
    .breadcrumb a:hover { color: var(--gold-soft); opacity: 1; }
    .breadcrumb .sep { width: 16px; height: 1px; background: currentColor; }

    /* ==================== GALLERY (inside cards) ==================== */
    .gallery { position: relative; }
    .gallery__track {
      display: flex;
      width: 100%;
      height: 100%;
      transition: transform 0.55s cubic-bezier(0.2, 0.8, 0.2, 1);
      will-change: transform;
    }
    .gallery__slide {
      flex: 0 0 100%;
      width: 100%;
      height: 100%;
      position: relative;
      overflow: hidden;
    }
    .gallery__slide--photo img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
    }
    /* First slide = the typographic tile; restore its background here */
    .room-tile.gallery .room-tile__inner {
      position: absolute; inset: 0;
      background: inherit;
    }
    .room-tile.gallery {
      /* When .gallery is on .room-tile, the visible bg should be on the inner slide, not on tile (which scrolls). Move bg via __inner. */
    }
    /* Nav buttons */
    .gallery__nav {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      background: rgba(250, 246, 238, 0.92);
      color: var(--ink);
      border: none;
      cursor: pointer;
      z-index: 5;
      opacity: 0;
      transition: opacity 0.25s ease, background-color 0.25s ease;
      font-family: var(--f-display);
      font-size: 22px;
      line-height: 1;
      }
    .gallery__nav:hover { background: rgba(250, 246, 238, 1); }
    .gallery__nav svg { width: 14px; height: 14px; }
    .gallery__prev { left: 10px; }
    .gallery__next { right: 10px; }
    .gallery:hover .gallery__nav,
    .gallery:focus-within .gallery__nav { opacity: 1; }
    @media (hover: none), (max-width: 768px) {
      .gallery__nav { opacity: 0.88; }
    }
    /* Dots */
    .gallery__dots {
      position: absolute;
      left: 0; right: 0;
      bottom: 12px;
      display: flex;
      justify-content: center;
      gap: 6px;
      z-index: 5;
      pointer-events: none;
    }
    .gallery__dot {
      pointer-events: auto;
      width: 6px; height: 6px;
      padding: 0;
      border: none;
      border-radius: 50%;
      background: rgba(250, 246, 238, 0.55);
      cursor: pointer;
      transition: width 0.3s ease, background-color 0.25s ease;
      box-shadow: 0 1px 2px rgba(0,0,0,0.2);
    }
    .gallery__dot.is-active {
      width: 22px;
      border-radius: 3px;
      background: rgba(250, 246, 238, 1);
    }

    /* Room card CTA — bottom of body */
    .room-card__cta {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-top: 16px;
      font-family: var(--f-sans);
      font-weight: 500;
      font-size: 12px;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--wine);
      transition: gap 0.3s ease, color 0.25s ease;
    }
    .room-card__cta:hover { gap: 14px; color: var(--wine-deep); }
    .room-card__cta .arrow {
      display: inline-block;
      width: 22px; height: 1px;
      background: currentColor;
      position: relative;
    }
    .room-card__cta .arrow::after {
      content: "";
      position: absolute;
      right: 0; top: -3px;
      width: 7px; height: 7px;
      border-top: 1px solid currentColor;
      border-right: 1px solid currentColor;
      transform: rotate(45deg);
    }


    /* ==================== PERFORMANCE TWEAKS ==================== */
    /* Promote gallery tracks and tiles to their own layer; isolate paint */
    .gallery, .room-tile {
      contain: layout paint;
      transform: translateZ(0);
    }
    .gallery__track { backface-visibility: hidden; }

    /* Hero image: promote to GPU */
    #top > img { transform: translateZ(0); }

    /* Don't transition layout-affecting properties on .reveal once visible */
    .reveal.is-visible { transition: none; }
