/* =========================================================
   Hotel Luz — Elevated
   Brand palette drawn from the Hotel Luz logo:
   deep tropical green, signature pink, and the three-sun
   light motif (pale → gold → orange). Editorial bones from
   the C.T. Lee & Associates design system.
   ========================================================= */


:root {
  /* ---- Paper / neutrals ---- */
  --paper: #F6F3EC;
  --paper-warm: #EFE7D6;
  --paper-cool: #FBFAF5;
  --ink: #1A211D;          /* warm near-black for body text */
  --ink-soft: #3A4340;
  --stone: #6B6760;        /* darkened from #8B8680 for WCAG AA contrast on light backgrounds */
  --stone-soft: #B8B3AB;

  /* ---- Logo green ---- */
  --green: #00634B;
  --green-deep: #004B39;
  --green-dark: #00382A;
  --green-soft: #D9E6E0;

  /* ---- Logo pink ---- */
  --pink: #ED4D9E;
  --pink-bright: #FF6BBB;
  --pink-deep: #C92F7D;
  --pink-soft: #FBDCEC;

  /* ---- Sun trio (the three dots) ---- */
  --sun-pale: #FFEFA9;
  --sun: #FDD534;
  --sun-orange: #F69024;

  /* ---- Back-compat aliases (older inline styles) ---- */
  --coral: var(--pink);
  --coral-deep: var(--pink-deep);
  --coral-soft: var(--pink-soft);

  /* ---- Type families ---- */
  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --font-sans: 'Instrument Sans', 'Helvetica Neue', Arial, system-ui, sans-serif;
  --font-logo: 'Poppins', 'Instrument Sans', sans-serif;
  --font-script: 'Parisienne', cursive;

  /* ---- Spacing ---- */
  --s1: 4px;  --s2: 8px;  --s3: 12px; --s4: 16px; --s5: 24px;
  --s6: 32px; --s7: 48px; --s8: 64px; --s9: 96px; --s10: 128px;

  --rule-hair: 0.5px;
  --ease: cubic-bezier(0.2, 0.6, 0.2, 1);
  --dur: 200ms;
  --dur-slow: 600ms;

  --container: 1280px;
  --gutter: clamp(20px, 5vw, 80px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
figure { margin: 0; } /* reset UA default margin-inline:40px (caused mobile right-bleed on .hero-figure) */
a { color: inherit; text-decoration: none; }
::selection { background: var(--pink); color: var(--paper-cool); }
/* visible keyboard focus everywhere (WCAG 2.4.7); light variant over dark hero/nav */
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; border-radius: 1px; }
.hero-immersive :focus-visible, .nav.over-hero :focus-visible { outline-color: var(--paper-cool); }
/* skip-to-content link (WCAG 2.4.1) — hidden until keyboard-focused */
.skip-link { position: fixed; top: 10px; left: 10px; z-index: 600; background: var(--green); color: var(--paper-cool); padding: 10px 18px; border-radius: 4px; font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.04em; text-decoration: none; transform: translateY(-180%); transition: transform var(--dur) var(--ease); }
.skip-link:focus { transform: none; }

/* ---------------- Type primitives ---------------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 12px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.24em;
  color: var(--green);
}
.eyebrow.on-dark { color: var(--sun); }

.display {
  font-family: var(--font-display);
  font-weight: 400; line-height: 1.02; letter-spacing: -0.01em;
}
.lede {
  font-family: var(--font-body);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5; font-weight: 400; color: var(--ink-soft);
}
p { text-wrap: pretty; }

/* ---------------- Sun motif ---------------- */
.suns { display: inline-flex; gap: 7px; align-items: center; }
.suns i { display: block; width: 13px; height: 13px; border-radius: 50%; }
.suns i:nth-child(1) { background: var(--sun-pale); }
.suns i:nth-child(2) { background: var(--sun); }
.suns i:nth-child(3) { background: var(--sun-orange); }
.suns.lg i { width: 22px; height: 22px; }
.suns.sm i { width: 9px; height: 9px; gap: 5px; }
body.hide-suns .suns, body.hide-suns .fig-suns { display: none !important; }

/* ---------------- Logo lockup ---------------- */
.logo { display: inline-flex; flex-direction: column; align-items: center; gap: 6px; line-height: 1; }
.logo .logo-suns { display: flex; gap: 8px; }
.logo .logo-suns i { width: 16px; height: 16px; border-radius: 50%; }
.logo .logo-suns i:nth-child(1){ background: var(--sun-pale);} 
.logo .logo-suns i:nth-child(2){ background: var(--sun);} 
.logo .logo-suns i:nth-child(3){ background: var(--sun-orange);} 
.logo .logo-word {
  font-family: var(--font-logo); font-weight: 700;
  font-size: 30px; letter-spacing: 0.06em; color: var(--green);
  text-transform: uppercase;
}
.logo .logo-script {
  font-family: var(--font-script); font-size: 24px; color: var(--pink);
  margin-top: -2px; line-height: 1;
}
.logo.reverse .logo-word { color: var(--paper-cool); }
.logo.reverse .logo-script { color: var(--pink-bright); }

/* compact horizontal lockup (nav) */
.logo-mini { display: inline-flex; align-items: center; gap: 12px; }
.logo-mini .logo-suns { display: flex; gap: 6px; }
.logo-mini .logo-suns i { width: 12px; height: 12px; border-radius: 50%; }
.logo-mini .logo-suns i:nth-child(1){ background: var(--sun-pale);} 
.logo-mini .logo-suns i:nth-child(2){ background: var(--sun);} 
.logo-mini .logo-suns i:nth-child(3){ background: var(--sun-orange);} 
.logo-mini .mini-text { display: flex; flex-direction: column; line-height: 0.95; }
.logo-mini .mini-word { font-family: var(--font-logo); font-weight: 700; font-size: 19px; letter-spacing: 0.08em; color: var(--green); text-transform: uppercase; }
.logo-mini .mini-script { font-family: var(--font-script); font-size: 16px; color: var(--pink-deep); margin-top: 1px; }
.logo-mini.reverse .mini-word { color: var(--paper-cool); }
.logo-mini.reverse .mini-script { color: var(--pink-bright); }
/* the three suns slide in from the left on load, staggered */
.logo-mini .logo-suns i { animation: logoSunIn 620ms var(--ease) both; }
.logo-mini .logo-suns i:nth-child(1) { animation-delay: 140ms; }
.logo-mini .logo-suns i:nth-child(2) { animation-delay: 250ms; }
.logo-mini .logo-suns i:nth-child(3) { animation-delay: 360ms; }
@keyframes logoSunIn { from { opacity: 0; transform: translateX(-14px); } to { opacity: 1; transform: none; } }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 15px 26px;
  border: var(--rule-hair) solid var(--green);
  background: var(--green); color: var(--paper-cool); cursor: pointer;
  transition: background var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn:hover { background: var(--green-deep); border-color: var(--green-deep); }
.btn .arrow { transition: transform var(--dur) var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn.ghost { background: transparent; color: var(--green); }
.btn.ghost:hover { background: var(--green); color: var(--paper-cool); }
.btn.pink, .btn.coral { background: var(--pink-deep); border-color: var(--pink-deep); color: var(--paper-cool); }
.btn.pink:hover, .btn.coral:hover { background: color-mix(in srgb, var(--pink-deep) 84%, #000); border-color: color-mix(in srgb, var(--pink-deep) 84%, #000); }
.btn.on-dark { border-color: var(--paper); background: transparent; color: var(--paper); }
.btn.on-dark:hover { background: var(--paper); color: var(--green); }

.link-underline {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 10px;
  padding-bottom: 4px; border-bottom: 1px solid currentColor;
  transition: gap var(--dur) var(--ease), color var(--dur) var(--ease);
}
.link-underline:hover { gap: 16px; color: var(--pink); }
.link-underline .arrow { transition: transform var(--dur) var(--ease); }

/* ---------------- Layout helpers ---------------- */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 150px); position: relative; }

.chapter-tag {
  font-family: var(--font-sans); font-size: 12px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--pink-deep);
  display: inline-flex; align-items: center; gap: 12px;
  text-transform: uppercase;
}
.chapter-tag .num {
  font-family: var(--font-display); font-style: italic; font-size: 26px;
  font-weight: 500; color: var(--green); letter-spacing: 0; line-height: 1;
}
.chapter-tag .suns { margin-left: 2px; }

.rule { height: var(--rule-hair); background: var(--green); border: 0; width: 100%; }
.rule.soft { background: var(--stone-soft); }

/* dotted sun texture */
.dot-texture {
  background-image: radial-gradient(circle, rgba(253,213,52,0.18) 1.4px, transparent 1.6px);
  background-size: 26px 26px;
}

/* ============================================================
   INTRO — sunrise light-wash (Luz = light)
   A warm band of dawn light sweeps across the paper and reveals
   the wordmark, then the whole panel lifts away to the hero.
   ============================================================ */
#intro {
  position: fixed; inset: 0; z-index: 1000;
  background: var(--paper); display: grid; place-items: center;
  cursor: pointer; overflow: hidden;
}
/* pre-dawn shade that lifts as the light arrives */
#intro::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background: var(--green-dark); opacity: 0.24;
  animation: introWarm 1700ms var(--ease) forwards;
}
@keyframes introWarm { to { opacity: 0; } }
/* the sweeping beam of dawn light */
#intro .dawn {
  position: absolute; top: -25%; bottom: -25%; left: -70%; width: 58%; z-index: 1;
  background: linear-gradient(105deg,
    rgba(255,239,169,0) 0%,
    rgba(255,243,200,0.62) 38%,
    rgba(255,253,245,0.88) 50%,
    rgba(253,213,52,0.58) 60%,
    rgba(246,144,36,0.22) 76%,
    rgba(255,239,169,0) 100%);
  filter: blur(30px);
  transform: translateX(0) skewX(-9deg);
  animation: introSweep 2000ms var(--ease) forwards;
}
@keyframes introSweep {
  0%   { transform: translateX(0) skewX(-9deg); opacity: 0; }
  18%  { opacity: 1; }
  82%  { opacity: 1; }
  100% { transform: translateX(320%) skewX(-9deg); opacity: 0; }
}
#intro .intro-inner { position: relative; z-index: 2; text-align: center; }
#intro .intro-suns { justify-content: center; margin-bottom: 26px; opacity: 0; transform: translateY(8px); animation: introUp 500ms var(--ease) 0ms forwards; }
#intro .intro-word {
  font-family: var(--font-logo); font-weight: 700; white-space: nowrap;
  font-size: clamp(38px, 7.5vw, 80px); letter-spacing: 0.08em; color: var(--green);
  text-transform: uppercase; opacity: 0; transform: translateY(12px);
  animation: introUp 520ms var(--ease) 90ms forwards;
}
#intro .intro-script {
  font-family: var(--font-script); font-size: clamp(26px, 5vw, 50px); color: var(--pink);
  margin-top: 4px; opacity: 0; transform: translateY(10px);
  animation: introUp 520ms var(--ease) 190ms forwards;
}
#intro .intro-sub { margin-top: 24px; opacity: 0; animation: introFade 480ms var(--ease) 290ms forwards; }
@keyframes introUp { to { opacity: 1; transform: none; } }
@keyframes introFade { to { opacity: 1; } }
#intro .skip { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); opacity: 0; color: var(--stone); animation: introFade 600ms var(--ease) 1300ms forwards; }
/* dismiss: the whole panel lifts away to reveal the hero */
#intro.dismiss { animation: introLift 600ms var(--ease) forwards; pointer-events: none; }
@keyframes introLift { to { transform: translateY(-101%); } }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px var(--gutter);
  transition: background var(--dur-slow) var(--ease), padding var(--dur-slow) var(--ease), border-color var(--dur-slow) var(--ease);
  border-bottom: var(--rule-hair) solid transparent;
}
.nav.scrolled {
  background: rgba(246,243,236,0.93); backdrop-filter: blur(8px);
  padding-block: 12px; border-bottom-color: var(--green);
}
/* over the dark immersive hero (homepage top) — light nav text so the logo + links read */
.nav.over-hero .mini-word { color: var(--paper-cool); }
.nav.over-hero .mini-script { color: var(--pink-bright); }
.nav.over-hero .nav-links a { color: var(--paper-cool); }
.nav.over-hero .nav-burger span { background: var(--paper-cool); }
.nav.over-hero .mini-word,
.nav.over-hero .mini-script,
.nav.over-hero .nav-links a { text-shadow: 0 1px 12px rgba(0,0,0,0.4); }
.nav .nav-links { display: flex; gap: clamp(18px, 2.4vw, 38px); align-items: center; }
.nav .nav-links a {
  font-family: var(--font-sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--green);
  position: relative; padding-bottom: 3px;
}
.nav .nav-links a::after { content:""; position:absolute; left:0; bottom:0; width:0; height:1px; background: var(--pink); transition: width var(--dur) var(--ease); }
.nav .nav-links a:hover::after { width: 100%; }
.nav .nav-cta { display: flex; align-items: center; gap: 18px; }
.nav-burger { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav-burger span { width: 26px; height: 1.5px; background: var(--green); display: block; transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease); transform-origin: center; }
/* burger morphs into an X while the menu is open */
.nav-burger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.is-open span:nth-child(2) { opacity: 0; }
.nav-burger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
@media (max-width: 980px) {
  .nav .nav-links { display: none; }
  .nav-burger { display: flex; }
}
@media (max-width: 600px) {
  .nav .nav-book { display: none; }
}

/* ============================================================
   MOBILE MENU — full-screen editorial overlay
   ============================================================ */
.mobile-menu {
  position: fixed; inset: 0; z-index: 400;
  background: var(--paper);
  display: grid; place-items: center;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity var(--dur-slow) var(--ease), visibility var(--dur-slow) var(--ease);
}
.mobile-menu.open { opacity: 1; visibility: visible; pointer-events: auto; }
/* keep the logo + burger above the overlay so the X stays tappable */
body.menu-open .nav { z-index: 401; background: transparent; border-bottom-color: transparent; }
body.menu-open { overflow: hidden; }
.mobile-menu::before {
  content: ""; position: absolute; left: 50%; top: -8%; width: 92vmax; height: 92vmax;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(253,213,52,0.16) 0%, rgba(246,243,236,0) 60%);
  pointer-events: none;
}
.mm-inner { position: relative; text-align: center; padding: var(--gutter); display: flex; flex-direction: column; align-items: center; }
.mm-eyebrow { display: inline-flex; align-items: center; gap: 10px; margin-bottom: 34px; }
.mm-links { display: flex; flex-direction: column; gap: 4px; }
.mm-links a {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 11vw, 66px);
  line-height: 1.1; color: var(--green); letter-spacing: -0.01em;
  opacity: 0; transform: translateY(14px); transition: color var(--dur) var(--ease);
}
.mm-links a:hover { color: var(--pink); font-style: italic; }
.mobile-menu.open .mm-links a { animation: mmIn 600ms var(--ease) forwards; }
.mobile-menu.open .mm-links a:nth-child(1) { animation-delay: 120ms; }
.mobile-menu.open .mm-links a:nth-child(2) { animation-delay: 190ms; }
.mobile-menu.open .mm-links a:nth-child(3) { animation-delay: 260ms; }
.mobile-menu.open .mm-links a:nth-child(4) { animation-delay: 330ms; }
@keyframes mmIn { to { opacity: 1; transform: none; } }
.mm-book { margin-top: 38px; opacity: 0; }
.mobile-menu.open .mm-book { animation: mmIn 600ms var(--ease) 420ms forwards; }
.mm-foot {
  margin-top: 44px; display: flex; flex-direction: column; gap: 8px;
  font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--stone);
}
.mm-foot a { color: var(--green); }
@media (prefers-reduced-motion: reduce) {
  .mm-links a, .mm-book { opacity: 1; transform: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; display: grid;
  grid-template-columns: 1.02fr 0.98fr; align-items: center; gap: clamp(28px, 4.5vw, 72px);
  padding: 140px var(--gutter) 72px; max-width: var(--container); margin: 0 auto;
}
.hero-copy { max-width: 600px; }
/* hero accent: a thin sunrise bar (the three sun colors) that scales in from the left,
   instead of repeating the logo's three dots */
.hero-rise { height: 3px; width: clamp(48px, 9vw, 74px); border-radius: 3px; margin-bottom: 24px;
  background: linear-gradient(90deg, var(--sun-pale), var(--sun) 55%, var(--sun-orange));
  transform-origin: left center; animation: heroRise 760ms var(--ease) 200ms both; }
@keyframes heroRise { from { transform: scaleX(0); opacity: 0; } to { transform: scaleX(1); opacity: 1; } }
.hero-copy .eyebrow { display: block; margin-bottom: 26px; }
.hero-headline {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(40px, 5.4vw, 82px); line-height: 1.0; letter-spacing: -0.015em; margin: 0;
}
.hero-headline em { font-style: italic; font-weight: 500; color: var(--pink); }
.hero-headline br.m-br { display: none; }
.hero-copy .lede { margin: 26px 0 0; max-width: 34ch; }

/* booking bar pulled up into the hero */
.hero-book {
  margin-top: 34px; display: flex; align-items: stretch; flex-wrap: nowrap;
  max-width: 690px; background: var(--paper); border: var(--rule-hair) solid var(--stone-soft);
  border-radius: 7px; overflow: hidden; box-shadow: 0 16px 38px rgba(0, 40, 30, 0.12);
}
.hero-book .booking-field {
  flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; gap: 3px;
  padding: 12px 14px; border-left: var(--rule-hair) solid var(--stone-soft); border-top: 0;
}
.hero-book .booking-field:first-child { border-left: 0; }
.hero-book .booking-field:nth-child(3) { flex: 0 1 auto; }  /* guests sizes to content; dates get the room */
.hero-book .booking-field label { font-family: var(--font-sans); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--stone); }
.hero-book .booking-field input, .hero-book .booking-field select { border: 0; background: transparent; font-family: var(--font-body); font-size: 14px; color: var(--ink); padding: 1px 0; outline: none; width: 100%; }
.hero-book .booking-field input::-webkit-calendar-picker-indicator { opacity: 0.4; }
.hero-book .booking-field input:focus-visible, .hero-book .booking-field select:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.hero-book-cta { flex: 0 0 auto; border: 0; border-radius: 0; padding-inline: 22px; font-size: 12px; letter-spacing: 0.08em; display: flex; align-items: center; background: var(--green); color: var(--paper-cool); transition: background var(--dur) var(--ease); }
.hero-book-cta:hover { background: var(--green-deep); }

.scroll-cue {
  position: absolute; left: var(--gutter); bottom: 32px; display: flex; align-items: center; gap: 12px;
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--stone);
}
.scroll-cue .line { width: 46px; height: 1px; background: var(--stone); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; inset:0; background: var(--green); animation: cue 2.4s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(100%)} }
@media (max-width: 860px) {
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 116px; gap: 36px; }
  .scroll-cue { display: none; }
}
@media (max-width: 600px) {
  .hero-book { max-width: 100%; flex-wrap: wrap; }
  .hero-book .booking-field { flex: 1 1 50%; }
  .hero-book .booking-field:nth-child(3) { flex: 1 1 100%; border-left: 0; border-top: var(--rule-hair) solid var(--stone-soft); }
  .hero-book-cta { flex: 1 1 100%; justify-content: center; padding-block: 14px; }
}

/* ============================================================
   IMMERSIVE HERO (homepage) — full-bleed exterior + overlaid type
   ============================================================ */
.hero.hero-immersive { display: block; position: relative; max-width: none; margin: 0; padding: 0; min-height: auto; gap: 0; }
.hero-immersive .hero-bg { position: absolute; inset: 0; overflow: hidden; z-index: 0; background: var(--green-dark); }
.hero-immersive .hero-bg .hero-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 46%; opacity: 0; transition: opacity 1500ms var(--ease); }
.hero-immersive .hero-bg .hero-slide.is-active { opacity: 1; }
@keyframes heroBgIn { from { transform: scale(1.06); opacity: 0; } to { transform: none; opacity: 1; } }
.hero-immersive .hero-scrim { position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    /* darken the left column where the copy sits; keep the sun glow on the right */
    linear-gradient(to right, rgba(22,11,7,0.92) 0%, rgba(22,11,7,0.80) 24%, rgba(22,11,7,0.52) 44%, rgba(24,13,8,0.22) 60%, rgba(26,15,9,0) 76%),
    /* darken the bottom for the lede + booking bar */
    linear-gradient(to top, rgba(18,9,6,0.82) 0%, rgba(18,9,6,0.46) 22%, rgba(18,9,6,0.10) 44%, rgba(18,9,6,0) 60%),
    /* slight top for the nav */
    linear-gradient(to bottom, rgba(18,9,6,0.34) 0%, rgba(18,9,6,0) 16%);
}
.hero-immersive .hero-inner {
  position: relative; z-index: 2; min-height: 100svh; box-sizing: border-box;
  max-width: var(--container); margin: 0 auto; padding: 150px var(--gutter) 56px;
  display: flex; flex-direction: column; justify-content: flex-end;
}
.hero-immersive .hero-copy { max-width: 1100px; }
.hero-immersive .eyebrow { color: var(--sun); text-shadow: 0 1px 2px rgba(0,20,14,0.9), 0 0 16px rgba(0,20,14,0.6); }
.hero-immersive .hero-headline { color: var(--paper-cool); font-size: clamp(53px, 8.05vw, 124px); line-height: 1.0; text-shadow: 0 2px 30px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.45); }
.hero-immersive .hero-headline em { color: var(--pink-bright); }
.hero-immersive .lede { color: rgba(251,250,245,0.94); max-width: 42ch; text-shadow: 0 1px 16px rgba(0,0,0,0.5); }
.hero-immersive .hero-promo { display: inline-flex; align-items: center; gap: 11px; align-self: flex-start; margin-top: 26px; font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sun); text-shadow: 0 1px 2px rgba(0,20,14,0.9), 0 0 14px rgba(0,20,14,0.6); }
.hero-immersive .hero-book { margin-top: 16px; }
.hero-immersive .scroll-cue { display: none; }
@media (max-width: 860px) {
  .hero-immersive .hero-inner { padding: 118px var(--gutter) 40px; min-height: 90svh; }
  .hero-immersive .hero-headline { font-size: clamp(38px, 10vw, 62px); }
  .hero-immersive .hero-bg .hero-slide { object-position: center 44%; }
}
@media (max-width: 600px) {
  /* phones: stack the headline into shorter lines so the type can go bigger */
  .hero-immersive .hero-headline { font-size: clamp(40px, 12vw, 54px); }
  .hero-headline br.m-br { display: inline; }
  .hero-headline br.d-br { display: none; }
}
@media (prefers-reduced-motion: reduce) { .hero-immersive .hero-bg .hero-slide { transition: none; } }


/* ============================================================
   WELCOME (01)
   ============================================================ */
.welcome-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 7vw, 110px); align-items: center; }
.welcome-copy .display { font-size: clamp(34px, 4.6vw, 60px); margin: 26px 0 0; }
.welcome-copy .display em { font-style: italic; color: var(--pink); }
.welcome-copy p { margin: 26px 0 0; color: var(--ink-soft); max-width: 46ch; }
.welcome-copy .signature { margin-top: 34px; font-family: var(--font-script); font-size: 38px; color: var(--pink); }
.welcome-media { display: grid; grid-template-columns: 1.25fr 1fr; gap: 14px; }
.welcome-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.welcome-media .wm-a { grid-column: 1 / -1; position: relative; aspect-ratio: 16 / 10; overflow: hidden; }
.welcome-media .wm-a .cap {
  position: absolute; left: 0; bottom: 0; background: var(--green); color: var(--paper-cool);
  font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 10px 16px;
}
.welcome-media .wm-b { aspect-ratio: 1 / 1; overflow: hidden; }
.welcome-media .wm-stat {
  background: var(--green); color: var(--paper-cool); padding: 26px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 6px;
}
.welcome-media .wm-stat b { font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(46px, 6vw, 68px); line-height: 0.9; }
.welcome-media .wm-stat .wm-stat-suns { margin-bottom: 8px; }
.welcome-media .wm-stat span { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--green-soft); }
.welcome-media.single { grid-template-columns: 1fr; }
.welcome-media.single .wm-a { aspect-ratio: 4 / 5; }
.welcome-media.single .wm-b, .welcome-media.single .wm-stat { display: none; }
@media (max-width: 860px) {
  .welcome-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INTERLUDE — full-bleed cement-tile band (the hotel's own
   Puerto Rican star tile, toned to the deep-green palette)
   ============================================================ */
.interlude {
  position: relative; min-height: 76vh; display: grid; place-items: center;
  background-color: var(--green-dark); overflow: hidden; text-align: center;
  padding: clamp(56px, 9vw, 110px) var(--gutter);
}
.interlude .bg {
  position: absolute; inset: 0;
  background-image: url('/img/tile.webp');
  background-repeat: repeat;
  background-size: 188px auto;
  background-color: var(--green);
  background-blend-mode: multiply;
  opacity: 0.9;
}
/* vignette so the edges deepen and the cream plate reads cleanly */
.interlude::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 92% at 50% 50%, rgba(0,56,42,0.10) 0%, rgba(0,40,30,0.66) 100%);
}
.interlude .interlude-inner {
  position: relative; z-index: 2; max-width: 720px; margin: 0 auto;
  padding: clamp(36px, 4.5vw, 60px) clamp(28px, 5vw, 64px);
  background: rgba(246, 243, 236, 0.95);
  border-top: 2px solid var(--pink);
  box-shadow: 0 24px 64px rgba(0, 40, 30, 0.35);
  -webkit-backdrop-filter: blur(2px); backdrop-filter: blur(2px);
}
.interlude .suns { margin-bottom: 26px; }
.interlude blockquote { font-family: var(--font-display); font-weight: 400; font-style: italic; font-size: clamp(26px, 4vw, 50px); line-height: 1.16; margin: 0; color: var(--green); }
.interlude blockquote em { color: var(--pink); font-style: italic; }
.interlude cite { display: block; margin-top: 24px; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--stone); font-style: normal; }

/* ============================================================
   ROOMS (02)
   ============================================================ */
.section-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 30px; margin-bottom: clamp(40px, 6vw, 76px); }
.section-head .head-left .display { font-size: clamp(34px, 5vw, 64px); margin: 18px 0 0; }
.section-head .head-left .display em { font-style: italic; color: var(--pink); }

.rooms-gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(16px, 2.2vw, 28px); }
.room-card { display: flex; flex-direction: column; background: var(--paper-cool); border-top: var(--rule-hair) solid var(--green); }
.room-card .rc-img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.room-card .rc-img img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease); }
.room-card:hover .rc-img img { transform: scale(1.04); }
.room-card .rc-body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.room-card .rc-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; }
.room-card .rc-name { font-family: var(--font-display); font-size: clamp(24px, 2.2vw, 32px); font-weight: 500; line-height: 1.05; color: var(--green); }
.room-card .rc-meta { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--stone); white-space: nowrap; }
.room-card .rc-desc { color: var(--ink-soft); font-size: 16px; margin: 0; flex: 1; }
.room-card .rc-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: 4px; }

/* featured room spans full width, image beside copy */
.room-card.featured { grid-column: 1 / -1; flex-direction: row; }
.room-card.featured .rc-img { flex: 0 0 58%; aspect-ratio: auto; }
.room-card.featured .rc-body { justify-content: center; padding: clamp(24px, 4vw, 56px); }
.room-card.featured .rc-name { font-size: clamp(30px, 3.4vw, 46px); }
.room-card.featured .rc-desc { font-size: 18px; max-width: 42ch; }
.room-card.featured .rc-badge { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--pink); display: inline-flex; align-items: center; gap: 10px; }

@media (max-width: 860px) {
  .rooms-gallery { grid-template-columns: 1fr; }
  .room-card.featured { flex-direction: column; }
  .room-card.featured .rc-img { flex: none; width: 100%; aspect-ratio: 4/3; }
}

/* ============================================================
   TESTIMONIALS — guest words
   ============================================================ */
.testimonials { background: var(--paper-warm); }
.testimonials .t-head { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; margin-bottom: clamp(40px, 6vw, 70px); }
.testimonials .t-head .chapter-tag { justify-content: center; }
.testimonials .t-head .display { font-size: clamp(32px, 4.6vw, 58px); }
.testimonials .t-head .display em { font-style: italic; color: var(--pink); }
.t-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 30px); }
.t-card { margin: 0; background: var(--paper-cool); border-top: var(--rule-hair) solid var(--green); padding: clamp(28px, 3vw, 40px); display: flex; flex-direction: column; gap: 24px; }
.t-card blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: clamp(20px, 1.7vw, 25px); line-height: 1.4; color: var(--ink); }
.t-card figcaption { margin-top: auto; font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--stone); }
@media (max-width: 860px) { .t-grid { grid-template-columns: 1fr; } }

/* ============================================================
   AMENITIES (03) — green section
   ============================================================ */
.amen { background: var(--green); color: var(--paper); position: relative; overflow: hidden; }
.amen .amen-texture { position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(circle, rgba(253,213,52,0.16) 1.5px, transparent 1.7px); background-size: 30px 30px; pointer-events: none; }
.amen .wrap { position: relative; z-index: 2; }
.amen .display { color: var(--paper); }
.amen .display em { font-style: italic; color: var(--sun); }
.amen .lede { color: var(--green-soft); }
.amen-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: clamp(40px, 6vw, 70px); border-top: var(--rule-hair) solid rgba(255,239,169,0.4); }
.amen-item { padding: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 36px); border-bottom: var(--rule-hair) solid rgba(255,239,169,0.4); border-right: var(--rule-hair) solid rgba(255,239,169,0.4); }
.amen-grid .amen-item:nth-child(3n) { border-right: 0; }
.amen-item .a-index { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; color: var(--sun); }
.amen-item h3 { font-family: var(--font-display); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); margin: 18px 0 12px; }
.amen-item p { color: var(--green-soft); font-size: 16px; margin: 0; }
@media (max-width: 860px) { .amen-grid { grid-template-columns: 1fr; } .amen-item { border-right: 0 !important; } }

/* ============================================================
   NEIGHBORHOOD (04)
   ============================================================ */
.hood-head { display:grid; grid-template-columns: 1fr 1fr; gap: var(--gutter); align-items: end; margin-bottom: clamp(40px,6vw,70px); }
.hood-head .display { font-size: clamp(34px, 5vw, 64px); margin: 18px 0 0; }
.hood-head .display em { font-style: italic; color: var(--pink); }
.hood-head p { color: var(--ink-soft); max-width: 48ch; margin: 0; }
.hood-cols { display: grid; grid-template-columns: 0.9fr 1.4fr; gap: clamp(40px, 6vw, 80px); align-items: start; }
.hood-tabs { display: flex; flex-direction: column; }
.hood-tab {
  font-family: var(--font-display); font-size: clamp(26px, 3vw, 40px); font-weight: 500; color: var(--stone-soft);
  padding: 12px 0; border: 0; background: none; text-align: left; cursor: pointer;
  display: flex; align-items: baseline; gap: 14px; transition: color var(--dur) var(--ease);
  border-bottom: var(--rule-hair) solid var(--stone-soft);
}
.hood-tab .t-count { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.1em; }
.hood-tab:hover { color: var(--green); }
.hood-tab.active { color: var(--pink-deep); }
.hood-panel { display: none; }
.hood-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 2px 40px; }
.hood-entry { padding: 18px 0; border-bottom: var(--rule-hair) solid var(--stone-soft); }
.hood-entry h4 { font-family: var(--font-display); font-size: 24px; font-weight: 500; margin: 0 0 4px; color: var(--green); transition: color var(--dur) var(--ease); }
.hood-entry:hover h4 { color: var(--pink); }
.hood-entry p { margin: 0; font-size: 15px; color: var(--ink-soft); }
@media (max-width: 860px) { .hood-head, .hood-cols { grid-template-columns: 1fr; } .hood-panel.active { grid-template-columns: 1fr; } }

.map-band { margin-top: clamp(56px, 8vw, 100px); }
.map-band .map-figure { position: relative; overflow: hidden; border: var(--rule-hair) solid var(--green); background: var(--paper-cool); }
.map-band img { display: block; width: 100%; height: auto; }
.map-band .map-cta { position: absolute; right: 24px; bottom: 24px; }

/* ============================================================
   EXPERIENCES (05)
   ============================================================ */
.exp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.exp-card { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--green-dark); }
.exp-card.wide { grid-column: span 2; aspect-ratio: auto; }
.exp-card img { width:100%; height:100%; object-fit: cover; transition: transform var(--dur-slow) var(--ease), opacity var(--dur-slow); opacity: 0.94; }
.exp-card:hover img { transform: scale(1.05); opacity: 1; }
.exp-card .exp-body { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px;
  background: linear-gradient(to top, rgba(0,56,42,0.82) 0%, rgba(0,56,42,0.15) 52%, rgba(0,56,42,0) 100%); color: var(--paper); }
.exp-card .exp-body .eyebrow { color: var(--sun-pale); }
.exp-card .exp-body h3 { font-family: var(--font-display); font-weight: 500; font-size: 30px; margin: 8px 0 0; }
.exp-card .exp-body p { font-size: 15px; margin: 8px 0 0; color: rgba(246,243,236,0.88); }
@media (max-width: 860px) { .exp-grid { grid-template-columns: 1fr 1fr; } .exp-card.wide { grid-column: span 2; aspect-ratio: 4/3; } }

/* ============================================================
   MARQUEE — life at Luz
   ============================================================ */
.marquee-section { padding-block: clamp(56px, 8vw, 110px); overflow: hidden; }
.marquee-head { text-align: center; margin-bottom: clamp(36px, 5vw, 56px); }
.marquee-head .display { font-size: clamp(32px, 4.6vw, 58px); margin: 16px 0 0; }
.marquee-head .display em { font-style: italic; color: var(--pink); }
.marquee { display: flex; gap: 16px; width: max-content; animation: scrollx 48s linear infinite; }
.marquee:hover { animation-play-state: paused; }
.marquee .m-item { width: clamp(220px, 26vw, 380px); aspect-ratio: 3/4; overflow: hidden; flex: 0 0 auto; }
.marquee .m-item:nth-child(even) { aspect-ratio: 4/3; align-self: center; }
.marquee .m-item img { width: 100%; height: 100%; object-fit: cover; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   BOOK DIRECT CTA — pink
   ============================================================ */
.cta { background: var(--pink); color: var(--paper-cool); text-align: center; position: relative; overflow: hidden; }
.cta .rays { position: absolute; left: 50%; top: 50%; width: 150vmax; height: 150vmax; transform: translate(-50%,-50%);
  background: repeating-conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.06) 0deg 3deg, transparent 3deg 9deg); pointer-events: none; }
.cta .wrap { position: relative; z-index: 2; }
.cta .suns { margin-bottom: 6px; }
.cta .eyebrow { color: var(--paper-cool); }
.cta .display { color: var(--paper-cool); font-size: clamp(40px, 7vw, 92px); margin: 22px auto 0; max-width: 16ch; }
.cta .display em { font-style: italic; }
.cta p { margin: 28px auto 0; max-width: 44ch; color: rgba(251,250,245,0.92); }
.cta .cta-actions { margin-top: 44px; display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }
.cta .btn.solid { background: var(--paper-cool); color: var(--green); border-color: var(--paper-cool); }
.cta .btn.solid:hover { background: var(--green); color: var(--paper-cool); border-color: var(--green); }
.cta .btn.on-dark { border-color: var(--paper-cool); }
.cta .btn.on-dark:hover { background: var(--paper-cool); color: var(--pink); }
.cta .phone { margin-top: 36px; font-family: var(--font-script); font-size: 34px; color: var(--paper-cool); }

/* ============================================================
   FOOTER — green
   ============================================================ */
.footer { background: var(--green-dark); color: var(--paper); padding-block: clamp(60px, 8vw, 96px); }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: var(--gutter); }
.footer .logo { align-items: flex-start; }
.footer address { font-style: normal; color: var(--green-soft); margin-top: 24px; line-height: 1.8; font-size: 16px; }
.footer address a:hover { color: var(--sun); }
.footer h5 { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sun); margin: 0 0 18px; }
.footer .f-links { display: flex; flex-direction: column; gap: 12px; }
.footer .f-links a { color: var(--paper); font-size: 16px; transition: color var(--dur); }
.footer .f-links a:hover { color: var(--sun); }
.footer .f-bottom { margin-top: clamp(48px, 7vw, 80px); padding-top: 28px; border-top: var(--rule-hair) solid rgba(255,239,169,0.3); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.08em; color: var(--green-soft); }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   CONCIERGE — Luz
   ============================================================ */
.concierge-fab { position: fixed; right: 28px; bottom: max(18px, env(safe-area-inset-bottom)); z-index: 300; display: flex; align-items: center; gap: 12px;
  background: var(--green); color: var(--paper); padding: 12px 22px 12px 14px; cursor: pointer; border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--paper-cool) 24%, transparent);
  box-shadow: 0 10px 28px rgba(0, 40, 30, 0.32), 0 2px 6px rgba(0, 40, 30, 0.20);
  transition: background var(--dur) var(--ease), bottom var(--dur-slow) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease); }
.concierge-fab:hover { background: var(--green-deep); box-shadow: 0 14px 34px rgba(0, 40, 30, 0.38), 0 2px 6px rgba(0, 40, 30, 0.20); transform: translateY(-1px); }
.concierge-fab .dot { width: 36px; height: 36px; border-radius: 999px; background: var(--paper-cool); display: grid; place-items: center; }
.concierge-fab .dot .suns { gap: 4px; }
.concierge-fab .dot .suns i { width: 7px; height: 7px; }
.concierge-fab .label { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.06em; display: flex; flex-direction: column; line-height: 1.25; text-align: left; }
.concierge-fab .label b { font-weight: 600; }
.concierge-fab .label span { color: var(--green-soft); font-size: 11px; }

.concierge-panel { position: fixed; right: 28px; bottom: 28px; z-index: 301; width: min(380px, calc(100vw - 40px)); height: min(560px, calc(100vh - 56px));
  background: var(--paper); border: var(--rule-hair) solid var(--green); display: flex; flex-direction: column;
  transform: translateY(20px) scale(0.98); opacity: 0; pointer-events: none;
  transition: transform var(--dur-slow) var(--ease), opacity var(--dur-slow) var(--ease); }
.concierge-panel.open { transform: none; opacity: 1; pointer-events: auto; }
.cp-head { padding: 18px 22px; border-bottom: var(--rule-hair) solid var(--green); display: flex; align-items: center; gap: 14px; background: var(--green); color: var(--paper-cool); }
.cp-head .dot { width: 44px; height: 44px; border-radius: 999px; background: var(--paper-cool); display:grid; place-items:center; }
.cp-head .cp-title { font-family: var(--font-display); font-size: 24px; font-weight: 500; line-height: 1; }
.cp-head .cp-sub { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--green-soft); margin-top: 4px; }
.cp-close { margin-left: auto; background: none; border: 0; font-size: 22px; cursor: pointer; color: var(--paper-cool); line-height: 1; }
.cp-body { flex: 1; overflow-y: auto; padding: 22px; display: flex; flex-direction: column; gap: 14px; }
.cp-msg { font-family: var(--font-body); font-size: 15px; line-height: 1.5; padding: 14px 16px; max-width: 85%; }
.cp-msg.bot { background: var(--paper-warm); color: var(--ink); align-self: flex-start; border-left: 2px solid var(--pink); }
.cp-msg.user { background: var(--green); color: var(--paper); align-self: flex-end; }
.cp-suggest { display: flex; flex-wrap: wrap; gap: 8px; }
.cp-chip { font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.04em; padding: 9px 14px; border: var(--rule-hair) solid var(--stone); background: transparent; cursor: pointer; color: var(--ink-soft); border-radius: 999px; transition: background var(--dur), color var(--dur), border-color var(--dur); }
.cp-chip:hover { background: var(--green); color: var(--paper); border-color: var(--green); }
.cp-foot { border-top: var(--rule-hair) solid var(--green); padding: 14px; display: flex; gap: 10px; }
.cp-foot input { flex: 1; border: 0; background: transparent; font-family: var(--font-body); font-size: 15px; outline: none; color: var(--ink); }
.cp-foot input:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }
.cp-foot button { background: none; border: 0; cursor: pointer; font-family: var(--font-sans); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); font-weight: 600; }
@media (max-width: 560px) { .concierge-fab .label { display: none; } .concierge-fab { padding: 10px; } }

/* ============================================================
   SHARED COMPONENT WRAPPERS + extras
   ============================================================ */
luz-nav, luz-footer, luz-concierge, luz-bookbar { display: contents; }

/* chat typing indicator */
.cp-msg.typing { color: var(--stone); letter-spacing: 0.22em; }
/* in-chat "book this" button */
.cp-book {
  display: flex; align-items: center; gap: 10px; align-self: flex-start; max-width: 92%;
  background: var(--green); color: var(--paper-cool); text-decoration: none;
  padding: 13px 16px; border-left: 2px solid var(--pink);
  font-family: var(--font-sans); transition: background var(--dur) var(--ease);
}
.cp-book:hover { background: var(--green-deep); }
.cp-book b { font-weight: 600; font-size: 14px; line-height: 1.2; }
.cp-book span { font-size: 11px; color: var(--green-soft); display: block; }
.cp-book .cp-book-arrow { margin-left: auto; font-size: 16px; }
.cp-book.viator { border-left-color: var(--sun-orange); }

/* footer attribution credit */
.footer .f-credit a { color: var(--green-soft); transition: color var(--dur); }
.footer .f-credit a:hover { color: var(--sun); }

/* sticky availability bar (sub-pages) */
.bookbar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 250;
  background: var(--paper-cool); border-top: var(--rule-hair) solid var(--green);
  transform: translateY(101%); transition: transform var(--dur-slow) var(--ease);
  box-shadow: 0 -10px 30px rgba(0, 40, 30, 0.10);
}
.bookbar.in { transform: none; }
.bookbar-inner { max-width: var(--container); margin: 0 auto; padding: 13px var(--gutter); display: flex; align-items: center; gap: 14px; }
.bookbar-label { font-family: var(--font-display); font-style: italic; font-size: 19px; color: var(--green); display: flex; align-items: center; gap: 12px; flex: 1 1 auto; min-width: 0; }
.bookbar-label em { font-style: italic; }
.bookbar-save {
  font-family: var(--font-sans); font-style: normal; font-size: 10px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--pink); white-space: nowrap;
  padding: 3px 9px; border-radius: 999px; border: 1px solid color-mix(in srgb, var(--pink) 38%, transparent);
}
.bookbar-cta {
  margin-left: auto; flex: 0 0 auto; display: inline-flex; align-items: center; gap: 8px;
  background: var(--green); color: #fff; text-decoration: none; border: 0; cursor: pointer;
  font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.05em; padding: 10px 20px; border-radius: 999px;
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.bookbar-cta:hover { background: var(--green-deep); transform: translateY(-1px); }
.bookbar-cta .arrow { transition: transform var(--dur) var(--ease); }
.bookbar-cta:hover .arrow { transform: translateX(3px); }
.bookbar-close { background: none; border: 0; cursor: pointer; font-size: 20px; line-height: 1; color: var(--stone); padding: 2px 4px; margin-left: 2px; flex: 0 0 auto; opacity: 0.55; transition: opacity var(--dur) var(--ease); }
.bookbar-close:hover { opacity: 1; }
@media (max-width: 600px) {
  .bookbar-inner { gap: 10px; padding: 11px 16px; }
  .bookbar-label { font-size: 16px; gap: 9px; flex-wrap: wrap; }
  .bookbar-label .suns.sm { display: none; }
  .bookbar-save { font-size: 9px; padding: 2px 7px; letter-spacing: 0.12em; }
  .bookbar-cta { padding: 9px 16px; font-size: 12px; }
}
/* The band is the mobile counterpart to the header CTA: above 600px the nav's
   "Book direct — save 10%" button is visible and does this job, so hide the band there. */
@media (min-width: 601px) { .bookbar { display: none; } }
/* lift the Luz concierge above the band so the two never collide (only where the band shows) */
@media (max-width: 600px) { body.bookbar-up .concierge-fab { bottom: calc(var(--bookbar-h, 64px) + 16px); } }
body.chat-open .bookbar { transform: translateY(101%); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 900ms var(--ease), transform 900ms var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 90ms; }
.reveal.d2 { transition-delay: 180ms; }
.reveal.d3 { transition-delay: 270ms; }
.reveal.d4 { transition-delay: 360ms; }

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .marquee { animation: none !important; }
  #intro { display: none; }
  html { scroll-behavior: auto; }
}

/* Mobile: skip the intro splash. It's an opaque full-screen overlay that
   blocks first paint until it lifts (~3.7s on throttled mobile), which
   Lighthouse scores as FCP/LCP. Desktop keeps the full intro. */
@media (max-width: 768px) {
  #intro { display: none; }
}
