/* extracted from apps/portal/index.html */
/* ===== HERO ===== */
    .full-hero {
      position: relative;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: var(--paper);
      overflow: hidden;
      isolation: isolate;
    }
    .full-hero__bg {
      position: absolute;
      inset: 0;
      z-index: -2;
      will-change: transform;
    }
    .full-hero__bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(15,14,12,0.30) 0%, rgba(15,14,12,0.0) 30%, rgba(15,14,12,0.65) 100%);
      z-index: 2;
      pointer-events: none;
    }
    .full-hero__slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center;
      opacity: 0;
      animation: hero-fade 18s infinite ease-in-out;
    }
    .full-hero__slide:nth-child(1) { animation-delay: 0s; }
    .full-hero__slide:nth-child(2) { animation-delay: -12s; }
    .full-hero__slide:nth-child(3) { animation-delay: -6s; }
    @keyframes hero-fade {
      0%    { opacity: 0; }
      5.5%  { opacity: 1; }
      33.3% { opacity: 1; }
      38.9% { opacity: 0; }
      100%  { opacity: 0; }
    }
    @media (prefers-reduced-motion: reduce) {
      .full-hero__slide { animation: none; opacity: 0; }
      .full-hero__slide:nth-child(1) { opacity: 1; }
    }
    .full-hero__grain {
      position: absolute;
      inset: 0;
      z-index: -1;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='180' height='180'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.08 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
      opacity: 0.5;
      mix-blend-mode: overlay;
      pointer-events: none;
    }
    .full-hero__inner {
      width: 100%;
      max-width: var(--container);
      margin: 0 auto;
      padding: 0 var(--gutter) clamp(3rem, 8vw, 7rem);
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: end;
    }
    @media (min-width: 900px) {
      .full-hero__inner { grid-template-columns: 1.4fr 1fr; gap: 4rem; }
    }
    .hero-title {
      font-family: var(--serif);
      font-weight: 400;
      line-height: 0.98;
      letter-spacing: -0.015em;
      font-size: clamp(2.8rem, 7vw, 6.5rem);
      margin: 1rem 0 1.5rem;
    }
    .hero-title em { font-style: italic; color: rgba(250,248,243,0.92); }
    .hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem 2.5rem;
      font-size: 0.85rem;
      color: rgba(250,248,243,0.85);
      padding-top: 1.5rem;
      border-top: 1px solid rgba(250,248,243,0.25);
    }
    .hero-meta__item { display: flex; flex-direction: column; gap: 0.3rem; }
    .hero-meta__label {
      font-size: 0.66rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.6);
    }
    .hero-meta__value {
      font-family: var(--serif);
      font-size: 1.15rem;
    }
    .hero-cta-row {
      display: flex;
      gap: 1rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }

    /* ===== SECTION HEADS ===== */
    .sec-head {
      max-width: 56rem;
      margin-bottom: 4rem;
    }
    .sec-head .display-sm { margin: 1rem 0 1rem; }
    .sec-head__center { margin-left: auto; margin-right: auto; text-align: center; }

    /* ===== INTRO ===== */
    .intro {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--paper);
    }
    .intro__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }
    @media (min-width: 900px) {
      .intro__grid { grid-template-columns: 1fr 1.1fr; gap: 6rem; }
    }
    .intro__photo {
      aspect-ratio: 4 / 5;
      background-image: url('../../photos/suite-01.jpg');
      background-size: cover;
      background-position: center;
    }
    .stat-row {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-top: 2.5rem;
      border-top: 1px solid var(--line);
    }
    @media (min-width: 700px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }
    .stat {
      padding: 1.5rem 0;
      border-bottom: 1px solid var(--line);
      border-right: 1px solid var(--line);
      padding-left: 1.25rem;
    }
    @media (min-width: 700px) {
      .stat { border-bottom: none; padding-bottom: 0; }
      .stat:last-child { border-right: none; }
    }
    .stat__num {
      font-family: var(--serif);
      font-size: 2.4rem;
      line-height: 1;
      color: var(--ink);
    }
    .stat__label {
      font-size: 0.68rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--mute);
      margin-top: 0.5rem;
    }

    /* ===== EDITORIAL GALLERY ===== */
    .gallery {
      padding: clamp(4rem, 8vw, 7rem) 0;
      background: var(--paper-2);
    }
    .gallery__grid {
      display: grid;
      grid-template-columns: 1fr;
      grid-auto-rows: 220px;
      gap: 1rem;
    }
    @media (min-width: 700px) {
      .gallery__grid {
        grid-template-columns: repeat(6, 1fr);
        grid-auto-rows: 180px;
        gap: 1.25rem;
      }
    }
    .g-cell {
      position: relative;
      overflow: hidden;
      background: var(--paper);
    }
    .g-cell img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1200ms cubic-bezier(.22,.61,.36,1), filter 600ms ease;
    }
    .g-cell:hover img { transform: scale(1.06); filter: brightness(1.04); }
    .g-cell::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(0deg, rgba(15,14,12,0.25), transparent 50%);
      opacity: 0;
      transition: opacity 400ms;
    }
    .g-cell:hover::after { opacity: 1; }
    @media (min-width: 700px) {
      .g-1 { grid-column: span 4; grid-row: span 2; }
      .g-2 { grid-column: span 2; grid-row: span 1; }
      .g-3 { grid-column: span 2; grid-row: span 1; }
      .g-4 { grid-column: span 2; grid-row: span 1; }
      .g-5 { grid-column: span 2; grid-row: span 2; }
      .g-6 { grid-column: span 2; grid-row: span 1; }
      .g-7 { grid-column: span 3; grid-row: span 1; }
      .g-8 { grid-column: span 3; grid-row: span 1; }
      .g-9 { grid-column: span 6; grid-row: span 2; }
    }

    /* ===== AMENITIES ===== */
    .amenities {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--paper);
    }
    .amenities__grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      border-top: 1px solid var(--line);
    }
    @media (min-width: 700px) { .amenities__grid { grid-template-columns: repeat(3, 1fr); } }
    @media (min-width: 1100px) { .amenities__grid { grid-template-columns: repeat(4, 1fr); } }
    .amenity {
      padding: 1.75rem 1.5rem;
      border-bottom: 1px solid var(--line);
      border-right: 1px solid var(--line);
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      transition: background 280ms ease;
    }
    .amenity:hover { background: var(--paper-2); }
    .amenity__icon {
      width: 32px;
      height: 32px;
      color: var(--gold);
    }
    .amenity__name {
      font-family: var(--serif);
      font-size: 1.05rem;
      line-height: 1.2;
    }
    .amenity__sub {
      font-size: 0.82rem;
      color: var(--mute);
      line-height: 1.45;
    }

    /* ===== REVIEWS ===== */
    .reviews {
      padding: clamp(5rem, 10vw, 9rem) 0;
      background: var(--ink);
      color: var(--paper);
      position: relative;
      overflow: hidden;
    }
    .reviews__bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(180deg, rgba(15,14,12,0.7), rgba(15,14,12,0.93)),
        url('../../photos/exterior.jpg');
      background-size: cover;
      background-position: center;
      filter: blur(2px) saturate(0.6);
    }
    .reviews .wrap { position: relative; z-index: 1; }
    .reviews .eyebrow { color: rgba(250,248,243,0.6); }
    .stars { display: inline-flex; gap: 0.2rem; color: var(--gold); }
    .review-block {
      max-width: 64rem;
      margin: 3rem auto 0;
      text-align: center;
    }
    .review-quote {
      font-family: var(--serif);
      font-style: italic;
      font-size: clamp(1.5rem, 3vw, 2.5rem);
      line-height: 1.3;
      letter-spacing: -0.005em;
      color: var(--paper);
    }
    .review-quote::before, .review-quote::after { content: '“'; color: var(--gold); }
    .review-quote::after { content: '”'; }
    .review-cite {
      margin-top: 2rem;
      font-size: 0.78rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.65);
    }
    .review-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      margin-top: 4rem;
      border-top: 1px solid rgba(250,248,243,0.15);
    }
    @media (min-width: 800px) { .review-grid { grid-template-columns: repeat(5, 1fr); } }
    .review-stat {
      padding: 2rem 1rem 0;
      border-right: 1px solid rgba(250,248,243,0.15);
      text-align: center;
    }
    .review-stat:last-child { border-right: none; }
    .review-stat__num {
      font-family: var(--serif);
      font-size: 2.2rem;
      color: var(--gold);
    }
    .review-stat__label {
      font-size: 0.65rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.65);
      margin-top: 0.5rem;
    }

    /* ===== LOCATION ===== */
    .location {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--paper);
    }
    .location__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 4rem;
      align-items: center;
    }
    @media (min-width: 900px) { .location__grid { grid-template-columns: 1.1fr 1fr; gap: 6rem; } }
    .location__photo {
      aspect-ratio: 5 / 4;
      background-image: url('../../photos/exterior.jpg');
      background-size: cover;
      background-position: center;
    }
    .poi-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0 0;
    }
    .poi-list li {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: 1rem 0;
      border-bottom: 1px solid var(--line);
      font-size: 0.95rem;
    }
    .poi-list li:last-child { border-bottom: none; }
    .poi-list .poi-dist {
      font-family: var(--serif);
      color: var(--gold);
      font-size: 1.05rem;
    }

    /* ===== BOOKING (token login section) ===== */
    .booking {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--paper-2);
      position: relative;
      overflow: hidden;
    }
    .booking::before {
      content: 'CHECK-IN';
      position: absolute;
      top: -2rem;
      right: -3rem;
      font-family: var(--serif);
      font-size: clamp(8rem, 22vw, 22rem);
      color: rgba(176,134,66,0.06);
      letter-spacing: -0.04em;
      line-height: 0.8;
      pointer-events: none;
      user-select: none;
    }
    .booking__card {
      position: relative;
      max-width: 46rem;
      margin: 0 auto;
      background: var(--paper);
      padding: clamp(2.5rem, 5vw, 4.5rem);
      border: 1px solid var(--line);
    }
    .token-input {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 1rem;
      align-items: end;
      padding: 1rem 0 0.85rem;
      border-bottom: 1px solid var(--ink);
    }
    .token-input input {
      background: transparent;
      border: none;
      outline: none;
      font-family: var(--serif);
      font-size: clamp(1.4rem, 2.2vw, 1.85rem);
      color: var(--ink);
      padding: 0;
      letter-spacing: 0.08em;
      width: 100%;
    }
    .token-input input::placeholder { color: var(--line); }

    /* ===== ADD-ONS TEASE ===== */
    .addons-tease {
      padding: clamp(5rem, 10vw, 8rem) 0;
      background: var(--paper);
    }
    .tease-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
    @media (min-width: 800px) { .tease-grid { grid-template-columns: repeat(3, 1fr); } }
    .tease {
      position: relative;
      aspect-ratio: 3 / 4;
      overflow: hidden;
      background: var(--ink);
    }
    .tease img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 1100ms cubic-bezier(.22,.61,.36,1), filter 700ms ease;
      filter: brightness(0.78) saturate(0.95);
    }
    .tease:hover img { transform: scale(1.06); filter: brightness(0.92) saturate(1); }
    .tease__inner {
      position: absolute;
      inset: 0;
      z-index: 2;
      padding: 2rem;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      color: var(--paper);
      background: linear-gradient(180deg, transparent 40%, rgba(15,14,12,0.65) 100%);
    }
    .tease__title {
      font-family: var(--serif);
      font-size: 1.75rem;
      line-height: 1.15;
      margin-bottom: 0.4rem;
    }
    .tease__price {
      font-size: 0.8rem;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.85);
    }
    .tease__arrow {
      position: absolute;
      top: 1.5rem;
      right: 1.5rem;
      width: 38px;
      height: 38px;
      border: 1px solid rgba(250,248,243,0.5);
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--paper);
      transition: background 320ms ease, border-color 320ms ease, transform 320ms ease;
    }
    .tease:hover .tease__arrow { background: var(--gold); border-color: var(--gold); transform: rotate(-45deg); }

    /* ===== TRUST STRIP ===== */
    .trust-strip {
      padding: 3.5rem 0;
      background: var(--paper);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }
    .trust-strip__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }
    @media (min-width: 800px) { .trust-strip__grid { grid-template-columns: repeat(4, 1fr); gap: 3rem; } }
    .trust-item {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
    }
    .trust-item__icon {
      color: var(--gold);
      flex-shrink: 0;
    }
    .trust-item__title {
      font-family: var(--serif);
      font-size: 1.05rem;
      margin: 0 0 0.25rem;
    }
    .trust-item__body {
      font-size: 0.82rem;
      color: var(--mute);
      line-height: 1.5;
    }

    /* ===== FOOTER ===== */
    .full-foot {
      background: var(--ink);
      color: rgba(250,248,243,0.7);
      padding: 5rem 0 2.5rem;
    }
    .full-foot__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid rgba(250,248,243,0.15);
    }
    @media (min-width: 800px) { .full-foot__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 4rem; } }
    .full-foot h3 {
      font-family: var(--serif);
      font-size: 1.05rem;
      color: var(--paper);
      margin: 0 0 1rem;
    }
    .full-foot a { color: rgba(250,248,243,0.7); text-decoration: none; display: block; padding: 0.35rem 0; }
    .full-foot a:hover { color: var(--gold); }
    .full-foot__bot {
      display: flex;
      justify-content: space-between;
      gap: 1.5rem;
      flex-wrap: wrap;
      padding-top: 2.5rem;
      font-size: 0.78rem;
    }

    .nav { mix-blend-mode: difference; }
    .nav--solid { mix-blend-mode: normal; }

    /* ===== INTRO OVERLAY =====
       Timeline:
       0.00s  white screen
       0.25s  "Urban Wolf" eyebrow in
       0.70s  "Soho Suites" title in
       1.40s  hairline rule draws
       2.20s  content fades out
       2.80s  curtain lifts (translateY -100%)
       3.70s  curtain gone
       3.80s  nav fades in (sits over hero)
       Hero text/meta fade-ins delayed to ~3.2s+ to follow curtain.
    */
    .intro-overlay {
      position: absolute;
      inset: 0;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 1.25rem;
      pointer-events: none;
      isolation: isolate;
    }
    .intro-overlay::before {
      content: '';
      position: absolute;
      inset: 0;
      background: #faf8f3;
      z-index: 0;
      animation: intro-curtain-out 0.8s 2.6s cubic-bezier(.55,0,.35,1) forwards;
    }
    .intro-overlay__eyebrow,
    .intro-overlay__title,
    .intro-overlay__rule {
      position: relative;
      z-index: 1;
    }
    body.past-hero .intro-overlay__title {
      opacity: 0 !important;
      transition: opacity 500ms ease;
    }
    .intro-overlay__content {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 1.25rem;
      animation: intro-content-out 0.6s 2.2s ease-out forwards;
    }
    .intro-overlay__eyebrow {
      position: absolute;
      top: calc(50% - clamp(4.5rem, 7vw, 6.5rem));
      left: 50%;
      font-size: 0.7rem;
      letter-spacing: 0.45em;
      text-transform: uppercase;
      color: rgba(15,14,12,0.55);
      opacity: 0;
      transform: translate(-50%, 8px);
      animation:
        intro-line 1.2s 0.25s ease-out forwards,
        intro-fade-out 0.5s 2.1s ease-out forwards;
    }
    .intro-overlay__title {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(1);
      font-family: var(--serif);
      font-weight: 500;
      font-style: italic;
      font-size: clamp(3.5rem, 10vw, 8rem);
      line-height: 1.02;
      letter-spacing: -0.02em;
      color: #0F0E0C;
      opacity: 0;
      white-space: nowrap;
      animation:
        intro-title-in 1.2s 0.7s ease-out forwards,
        intro-title-slide 1.4s 2.4s cubic-bezier(.55,0,.35,1) forwards;
      will-change: transform, top, left, opacity;
    }
    .intro-overlay__rule {
      position: absolute;
      top: calc(50% + clamp(4.5rem, 7vw, 6.5rem));
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 1px;
      background: rgba(15,14,12,0.35);
      margin-top: 0.4rem;
      animation:
        intro-rule 1s 1.4s ease-out forwards,
        intro-fade-out 0.5s 2.1s ease-out forwards;
    }
    @keyframes intro-line {
      to { opacity: 1; transform: translate(-50%, 0); }
    }
    @keyframes intro-rule {
      to { width: 6rem; }
    }
    @keyframes intro-fade-out {
      to { opacity: 0; }
    }
    @keyframes intro-title-in {
      to { opacity: 1; }
    }
    @keyframes intro-title-slide {
      0%   { opacity: 1; }
      100% { opacity: 0; }
    }
    @keyframes intro-curtain-out {
      0%   { opacity: 1; }
      100% { opacity: 0; visibility: hidden; }
    }

    /* nav stays hidden on hero; revealed once user scrolls past the hero photo */
    .nav {
      opacity: 0;
      pointer-events: none;
      transition: opacity 600ms ease;
    }
    body.past-hero .nav {
      opacity: 1;
      pointer-events: auto;
    }
    @keyframes nav-in { to { opacity: 1; } }

    /* delay hero title + scroll-hint so they appear AFTER the curtain */
    .full-hero .fade-in   { animation-delay: 3.2s; }
    .full-hero .scroll-hint {
      opacity: 0;
      animation: nav-in 0.9s 4.2s ease-out forwards;
    }

    /* minimal hero: title sits at bottom-left with proper gutter + breathing room */
    .full-hero__inner--minimal {
      grid-template-columns: 1fr !important;
      padding: 0 var(--gutter) clamp(10rem, 20vw, 16rem) var(--gutter) !important;
      align-items: end !important;
    }
    .full-hero__inner--minimal > .fade-in {
      width: 100%;
      padding-left: 0;
    }
    .full-hero__inner--minimal .hero-title {
      max-width: 18ch;
      margin: 0;
      font-size: clamp(2.6rem, 6.4vw, 5.8rem);
      font-weight: 500;
      line-height: 1.02;
      padding-bottom: 0.15em;
      text-shadow: 0 1px 30px rgba(0,0,0,0.35);
    }
    .full-hero__inner--minimal .hero-eyebrow {
      font-size: 0.68rem;
      letter-spacing: 0.28em;
      text-transform: uppercase;
      color: rgba(250,248,243,0.9);
      margin: 0 0 1.4rem;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 0.65rem;
      text-shadow: 0 1px 12px rgba(0,0,0,0.4);
    }
    .full-hero__inner--minimal .hero-eyebrow::before {
      content: "";
      width: 1.6rem;
      height: 1px;
      background: var(--gold);
      display: inline-block;
      flex: none;
    }
    .full-hero__inner--minimal .hero-lede {
      margin: 1.6rem 0 0;
      max-width: 42ch;
      font-family: var(--sans, ui-sans-serif, system-ui, sans-serif);
      font-style: normal;
      font-weight: 400;
      font-size: clamp(1.15rem, 1.6vw, 1.5rem);
      line-height: 1.5;
      letter-spacing: 0.01em;
      color: rgba(250,248,243,0.98);
      text-shadow: 0 2px 22px rgba(0,0,0,0.55);
    }
    .full-hero__inner--minimal .hero-lede em {
      color: var(--gold);
      font-style: normal;
      font-weight: 500;
    }

    @media (prefers-reduced-motion: reduce) {
      .intro-overlay,
      .intro-overlay__content,
      .intro-overlay__eyebrow,
      .intro-overlay__title,
      .intro-overlay__rule,
      .nav,
      .full-hero .scroll-hint {
        animation-duration: 0.3s;
        animation-delay: 0s;
      }
    }

/* ===== HOME PAGE — overhaul additions ===== */

/* Suite-strip section (was anonymous) */
.suite-strip {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--paper);
}
.suite-strip__head { margin-bottom: 2rem; }
.suite-strip__title { margin-top: 0.75rem; max-width: 36rem; }

/* House rules section (was anonymous) */
.house-rules {
  padding: 2.5rem 0 4rem;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}
.house-rules__head {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.house-rules__title { font-size: 1.6rem; margin: 0.5rem 0 0; }
.house-rules__source {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.house-rules__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
@media (max-width: 600px) {
  .house-rules__list { grid-template-columns: 1fr; }
}

/* ===== FAQ section ===== */
.faq {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  border-top: 1px solid var(--line);
}
.faq__item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}
.faq__item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
  outline: none;
  transition: color 200ms ease;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after {
  content: '+';
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--mute);
  transition: transform 250ms ease;
  flex-shrink: 0;
}
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__item summary:hover { color: var(--gold); }
.faq__item summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
.faq__answer {
  margin-top: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 60ch;
}

/* ===== Sticky Reserve CTA pill ===== */
.reserve-pill {
  position: fixed;
  right: clamp(1rem, 3vw, 2.5rem);
  bottom: clamp(5rem, 9vw, 6rem); /* sits above .concierge hosts pill */
  z-index: 90;
  padding: 0.95rem 1.6rem;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 28px rgba(15, 14, 12, 0.25);
  opacity: 0;
  transform: translateY(120%);
  pointer-events: none;
  transition: opacity 350ms cubic-bezier(.22,.61,.36,1), transform 450ms cubic-bezier(.22,.61,.36,1), background 200ms;
}
.reserve-pill.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.reserve-pill:hover {
  background: var(--gold);
  color: var(--ink);
}
.reserve-pill:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}
@media (max-width: 600px) {
  .reserve-pill {
    left: 1rem;
    right: 1rem;
    bottom: 5rem; /* clears .concierge hosts pill at bottom-right */
    text-align: center;
    padding: 1.1rem 1rem;
    border-radius: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .reserve-pill { transition: opacity 200ms; transform: none; }
  .reserve-pill.is-visible { transform: none; }
}

/* ===== 3rd-party review badges ===== */
.review-badges {
  display: flex;
  gap: 1rem 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin: 1.5rem auto 3rem;
  max-width: 60rem;
}
.review-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.1rem;
  background: rgba(250, 248, 243, 0.6);
  border: 1px solid var(--line);
  border-radius: 999px;
  text-decoration: none;
  color: var(--ink);
  font-size: 0.82rem;
  transition: background 200ms, border-color 200ms;
}
.review-badge:hover {
  background: var(--paper);
  border-color: var(--gold);
}
.review-badge__star { color: var(--gold); font-size: 0.95rem; }
.review-badge__source {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mute);
}

/* ===== Pricing tier section ===== */
.pricing {
  padding: clamp(4rem, 8vw, 7rem) 0;
  background: var(--paper-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pricing__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 720px) {
  .pricing__grid { grid-template-columns: repeat(3, 1fr); }
}
.price-card {
  padding: 2rem 1.75rem;
  background: var(--paper);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: border-color 250ms, transform 250ms;
}
.price-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
}
.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card--featured .price-card__rate { color: var(--paper); }
.price-card--featured .price-card__sub { color: rgba(250, 248, 243, 0.7); }
.price-card__label {
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--mute);
}
.price-card--featured .price-card__label { color: var(--gold); }
.price-card__rate {
  font-family: var(--serif);
  font-size: 2.2rem;
  line-height: 1;
  margin-top: 0.5rem;
}
.price-card__rate small { font-size: 0.9rem; color: var(--mute); font-family: var(--sans); }
.price-card__sub {
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin-top: auto;
  padding-top: 1.25rem;
}
.price-card__cta {
  margin-top: 1rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.pricing__foot {
  margin-top: 2.5rem;
  font-size: 0.85rem;
  color: var(--mute);
  text-align: center;
}

/* ===== SECTION TINTS (subtle, warm-paper base) =====
   Each section gets faint hue shift so eye knows where one ends, next begins.
   Saturation low, lightness high — never fights ink/gold palette. */
/* alternate: pure white ↔ warm tint. Sharp rhythm, one palette family. */
:root:not([data-theme="dark"]) .intro          { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .the-space      { background: #EFE0BE; } /* honey */
:root:not([data-theme="dark"]) .story          { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .drift-gallery  { background: #ECD3A8; } /* sand */
:root:not([data-theme="dark"]) .flats          { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .pricing        { background: #F1D8B0; } /* biscuit */
:root:not([data-theme="dark"]) .suite-strip    { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .amenities      { background: #EFCFA0; } /* apricot */
:root:not([data-theme="dark"]) .reviews        { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .location       { background: #E8CFAA; } /* dune */
:root:not([data-theme="dark"]) .booking        { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .addons-tease   { background: #F0CFA3; } /* peach */
:root:not([data-theme="dark"]) .faq            { background: #FFFFFF; } /* white */
:root:not([data-theme="dark"]) .trust-strip    { background: #E5C9A0; } /* taupe */
:root:not([data-theme="dark"]) .house-rules    { background: #FFFFFF; } /* white */
