/* ============================================================
   COCOON HOTEL — Demo Site
   Hand-written CSS design system (no Tailwind build required)
   Built for OrbitalTech Studio · deployable as static files
   ============================================================ */

/* ---------- 1. TOKENS ---------- */
:root {
  /* Brand palette — pulled from the real Cocoon logo */
  --espresso:      #17110d;   /* deepest base */
  --espresso-2:    #201811;   /* raised surface */
  --espresso-3:    #2b2119;   /* cards / borders */
  --copper:        #b96e4c;   /* primary accent (logo wordmark) */
  --copper-light:  #cf8b63;
  --copper-deep:   #9a5638;
  --gold:          #d9a566;   /* glow / particles highlight */
  --ivory:         #f6efe6;
  --cream:         #ece1d3;
  --slate:         #6b6f72;   /* logo "HOTEL" grey */
  --emerald:       #3b5c4c;   /* subtle secondary accent */

  --text:          #f2e9dd;
  --text-dim:      #b6a794;
  --text-mute:     #8a7d6e;
  --line:          rgba(185,110,76,0.22);
  --line-soft:     rgba(246,239,230,0.10);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;

  /* Rhythm */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  --nav-h: 78px;
}

/* ---------- 2. RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
body {
  font-family: var(--sans);
  background: var(--espresso);
  color: var(--text);
  line-height: 1.6;
  font-weight: 300;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; color: inherit; }

body.lock { overflow: hidden; height: 100svh; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- 3. TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.08; letter-spacing: -0.01em; }
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--copper-light);
  display: inline-flex;
  align-items: center;
  gap: 0.8em;
}
.eyebrow::before {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--copper));
}
.eyebrow.center::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, var(--copper), transparent);
}

.h-xl { font-size: clamp(2.6rem, 7vw, 6.2rem); }
.h-lg { font-size: clamp(2.2rem, 5.2vw, 4.4rem); }
.h-md { font-size: clamp(1.8rem, 3.6vw, 3rem); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.3rem); color: var(--text-dim); font-weight: 300; }
.muted { color: var(--text-mute); }
.copper-text { color: var(--copper-light); }

/* ---------- 4. LAYOUT ---------- */
.container { width: min(100% - (var(--gutter) * 2), var(--container)); margin-inline: auto; }
.container-wide { width: min(100% - (var(--gutter) * 2), 1440px); margin-inline: auto; }
section { position: relative; }
.section-pad { padding: clamp(80px, 12vh, 160px) 0; }
.center { text-align: center; }
.stack-sm > * + * { margin-top: 0.9rem; }

.grain {
  position: fixed; inset: 0; z-index: 3; pointer-events: none;
  opacity: 0.045; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- 5. BUTTONS ---------- */
.btn {
  position: relative;
  display: inline-flex; align-items: center; gap: 0.7em;
  padding: 1.05em 2.1em;
  font-family: var(--sans);
  font-size: 0.82rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.18em;
  border-radius: 100px;
  overflow: hidden;
  transition: color 0.4s var(--ease), transform 0.4s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary { background: var(--copper); color: #fff; }
.btn-primary::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--copper-deep);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn-primary:hover::before { transform: translateY(0); }

.btn-ghost { border: 1px solid var(--line); color: var(--text); }
.btn-ghost::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: var(--copper);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.btn-ghost:hover { color: #fff; border-color: var(--copper); }
.btn-ghost:hover::before { transform: scaleX(1); }

/* ---------- 6. NAV ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.nav.scrolled {
  background: rgba(23,17,13,0.72);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  box-shadow: 0 1px 0 var(--line-soft), 0 20px 40px -30px rgba(0,0,0,0.8);
}
.nav__inner { width: min(100% - (var(--gutter) * 2), 1440px); margin-inline: auto; display: flex; align-items: center; justify-content: space-between; }
.nav__logo { display: flex; align-items: center; gap: 0.7rem; }
.nav__logo img { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 2.2rem; }
.nav__link {
  position: relative; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-dim); transition: color 0.35s var(--ease); padding: 4px 0;
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1px; width: 100%;
  background: var(--copper); transform: scaleX(0); transform-origin: right;
  transition: transform 0.4s var(--ease);
}
.nav__link:hover, .nav__link.active { color: var(--text); }
.nav__link:hover::after, .nav__link.active::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: inline-flex; }

.nav__burger { display: none; flex-direction: column; gap: 5px; width: 34px; height: 34px; align-items: center; justify-content: center; z-index: 120; }
.nav__burger span { width: 24px; height: 1.5px; background: var(--text); transition: transform 0.4s var(--ease), opacity 0.3s; }
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 110;
  background: var(--espresso-2);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 1.5rem;
  clip-path: circle(0% at calc(100% - 42px) 42px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
.mobile-menu.open { clip-path: circle(150% at calc(100% - 42px) 42px); pointer-events: auto; }
.mobile-menu a { font-family: var(--display); font-size: 2rem; color: var(--text); opacity: 0; transform: translateY(20px); }
.mobile-menu.open a { animation: menuIn 0.5s var(--ease) forwards; }
.mobile-menu.open a:nth-child(1){animation-delay:.15s}.mobile-menu.open a:nth-child(2){animation-delay:.22s}.mobile-menu.open a:nth-child(3){animation-delay:.29s}.mobile-menu.open a:nth-child(4){animation-delay:.36s}.mobile-menu.open a:nth-child(5){animation-delay:.43s}.mobile-menu.open a:nth-child(6){animation-delay:.5s}
@keyframes menuIn { to { opacity: 1; transform: translateY(0); } }

/* ---------- 7. INTRO SEQUENCE ---------- */
.intro {
  position: fixed; inset: 0; z-index: 1000;
  background: radial-gradient(120% 120% at 50% 40%, #241a12 0%, #17110d 55%, #0d0906 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  overflow: hidden;
}
.intro__particles { position: absolute; inset: 0; overflow: hidden; }
.intro__p {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  filter: blur(1px); opacity: 0;
}
.intro__glow {
  position: absolute; width: 60vmax; height: 60vmax; left: 50%; top: 45%;
  transform: translate(-50%,-50%);
  background: radial-gradient(circle, rgba(217,165,102,0.18), transparent 60%);
  opacity: 0; pointer-events: none;
}
.intro__stage { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; }
.intro__mark { width: clamp(120px, 22vw, 200px); height: auto; overflow: visible; }
.intro__mark path, .intro__mark circle, .intro__mark line { fill: none; stroke: var(--copper-light); stroke-width: 2; }
.intro__logo { width: clamp(200px, 34vw, 340px); margin-top: 26px; opacity: 0; filter: brightness(0) invert(1); }
.intro__tagline {
  margin-top: 22px; font-family: var(--sans); text-transform: uppercase;
  letter-spacing: 0.42em; font-size: clamp(0.6rem, 1.4vw, 0.8rem); color: var(--text-dim);
  display: flex; gap: 0.05em; overflow: hidden;
}
.intro__tagline span { display: inline-block; opacity: 0; transform: translateY(100%); filter: blur(8px); }
.intro__skip {
  position: absolute; bottom: 34px; right: 34px; z-index: 3;
  font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--text-mute);
  display: inline-flex; align-items: center; gap: 0.6em; transition: color 0.3s;
}
.intro__skip:hover { color: var(--text); }
.intro__skip .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--copper); animation: pulse 1.6s infinite; }
@keyframes pulse { 0%,100%{opacity:.4;transform:scale(1)} 50%{opacity:1;transform:scale(1.5)} }

/* Curtain wipe (page transitions + intro exit) */
.curtain {
  position: fixed; inset: 0; z-index: 900; pointer-events: none;
  display: grid; grid-template-columns: repeat(5, 1fr);
}
.curtain span { background: var(--espresso); transform: scaleY(0); transform-origin: bottom; }

/* ---------- 8. HERO / PORTALS ---------- */
.portals {
  height: 100svh; min-height: 640px;
  display: grid; grid-template-columns: repeat(3, 1fr);
  position: relative;
}
.portal {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(28px, 4vw, 56px);
  border-right: 1px solid rgba(0,0,0,0.4);
  transition: flex 0.6s var(--ease);
  cursor: pointer;
}
.portal:last-child { border-right: none; }
.portal__bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  transform: scale(1.08);
  transition: transform 1.4s var(--ease), filter 0.7s var(--ease);
  filter: brightness(0.62) saturate(0.95);
}
.portal__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(13,9,6,0.92) 0%, rgba(13,9,6,0.25) 55%, rgba(13,9,6,0.45) 100%);
  transition: opacity 0.6s var(--ease);
}
.portal__tint {
  position: absolute; inset: 0; z-index: 1; opacity: 0;
  background: linear-gradient(to top, rgba(185,110,76,0.55), rgba(154,86,56,0.1));
  transition: opacity 0.6s var(--ease);
}
.portal__num {
  position: absolute; top: clamp(24px,4vw,48px); left: clamp(24px,4vw,48px); z-index: 2;
  font-family: var(--display); font-size: 1rem; color: var(--copper-light);
  letter-spacing: 0.1em;
}
.portal__content { position: relative; z-index: 2; transform: translateY(10px); }
.portal__icon {
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center; margin-bottom: 20px;
  border: 1px solid var(--line); background: rgba(23,17,13,0.35);
  backdrop-filter: blur(4px);
  opacity: 0; transform: translateY(14px) scale(0.9);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease), background 0.4s;
}
.portal__icon svg { width: 24px; height: 24px; color: var(--copper-light); }
.portal__title { font-size: clamp(1.6rem, 2.6vw, 2.5rem); line-height: 1.05; }
.portal__sub {
  font-size: 0.85rem; color: var(--text-dim); margin-top: 10px;
  max-width: 30ch; max-height: 0; overflow: hidden; opacity: 0;
  transition: max-height 0.6s var(--ease), opacity 0.5s var(--ease), margin 0.5s;
}
.portal__go {
  margin-top: 18px; display: inline-flex; align-items: center; gap: 0.6em;
  font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper-light);
  opacity: 0; transform: translateX(-8px); transition: opacity 0.5s var(--ease) 0.05s, transform 0.5s var(--ease) 0.05s;
}
.portal__go svg { width: 15px; height: 15px; }

@media (hover: hover) and (min-width: 921px) {
  .portals:hover .portal { flex: 1; }
  .portals:hover .portal:hover { flex: 1.9; }
  .portal:hover .portal__bg { transform: scale(1); filter: brightness(0.8) saturate(1.05); }
  .portal:hover .portal__scrim { opacity: 0.55; }
  .portal:hover .portal__tint { opacity: 1; }
}
.portal.reveal .portal__icon,
.portal:hover .portal__icon { opacity: 1; transform: translateY(0) scale(1); }
.portal:hover .portal__sub { max-height: 120px; opacity: 1; margin-top: 10px; }
.portal:hover .portal__go { opacity: 1; transform: translateX(0); }
.portal:hover .portal__icon { background: var(--copper); }
.portal:hover .portal__icon svg { color: #fff; }

.scroll-cue {
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); z-index: 30;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--text-dim);
  pointer-events: none; mix-blend-mode: difference;
}
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(var(--copper-light), transparent); position: relative; overflow: hidden; }
.scroll-cue .line::after { content:""; position:absolute; top:0; left:0; width:100%; height:40%; background: var(--ivory); animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateY(-100%)} 60%,100%{transform:translateY(280%)} }

/* ---------- 9. PAGE HERO (sub-pages) ---------- */
.phero { position: relative; height: 78svh; min-height: 520px; display: flex; align-items: flex-end; overflow: hidden; }
.phero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.12); filter: brightness(0.55); }
.phero__scrim { position: absolute; inset: 0; background: linear-gradient(to top, var(--espresso) 2%, rgba(23,17,13,0.35) 45%, rgba(23,17,13,0.55) 100%); }
.phero__inner { position: relative; z-index: 2; padding-bottom: clamp(48px, 8vh, 96px); }
.phero__title { font-size: clamp(2.8rem, 8vw, 6.5rem); }

/* ---------- 10. REVEAL PRIMITIVES ---------- */
.reveal-up { opacity: 0; transform: translateY(38px); }
.reveal-fade { opacity: 0; }
.is-in.reveal-up { opacity: 1; transform: translateY(0); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.is-in.reveal-fade { opacity: 1; transition: opacity 1.1s var(--ease); }

.split-line { display: block; overflow: hidden; }
.split-line > span { display: inline-block; transform: translateY(110%); transition: transform 0.9s var(--ease); }
.is-in .split-line > span { transform: translateY(0); }
.is-in .split-line:nth-child(2) > span { transition-delay: 0.08s; }
.is-in .split-line:nth-child(3) > span { transition-delay: 0.16s; }

/* ---------- 11. STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(20px, 4vw, 60px); }
.stat { text-align: center; position: relative; }
.stat + .stat::before { content: ""; position: absolute; left: calc(-1 * clamp(10px,2vw,30px)); top: 10%; height: 80%; width: 1px; background: var(--line-soft); }
.stat__num { font-family: var(--display); font-size: clamp(2.4rem, 5vw, 3.8rem); color: var(--copper-light); line-height: 1; }
.stat__num .suffix { color: var(--text); }
.stat__label { margin-top: 12px; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--text-dim); }

/* ---------- 12. CARDS / GALLERY ---------- */
.tilt { transition: transform 0.4s var(--ease); transform-style: preserve-3d; will-change: transform; }

.card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  background: var(--espresso-2); border: 1px solid var(--line-soft);
}
.card__img { position: relative; overflow: hidden; aspect-ratio: 4/3; }
.card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s var(--ease); }
.card:hover .card__img img { transform: scale(1.07); }
.card__body { padding: 26px 26px 30px; }
.card__body h3 { font-size: 1.5rem; margin-bottom: 8px; }

.masonry { columns: 3; column-gap: 18px; }
.masonry img, .masonry .m-item { width: 100%; margin-bottom: 18px; border-radius: var(--radius); break-inside: avoid; }
.m-item { position: relative; overflow: hidden; cursor: zoom-in; }
.m-item img { transition: transform 1s var(--ease), filter 0.6s; }
.m-item::after { content:""; position:absolute; inset:0; background: linear-gradient(to top, rgba(23,17,13,0.5), transparent 60%); opacity:0; transition: opacity 0.5s; }
.m-item:hover img { transform: scale(1.06); }
.m-item:hover::after { opacity: 1; }

.amenity-row { display: flex; flex-wrap: wrap; gap: 12px; }
.amenity {
  display: inline-flex; align-items: center; gap: 0.55em;
  padding: 0.6em 1.1em; border-radius: 100px; border: 1px solid var(--line);
  font-size: 0.78rem; color: var(--text-dim); background: rgba(185,110,76,0.05);
}
.amenity svg { width: 16px; height: 16px; color: var(--copper-light); }

/* Menu list */
.menu-cat { margin-bottom: 54px; }
.menu-cat h3 { font-size: 1.9rem; margin-bottom: 6px; }
.menu-item { display: flex; align-items: baseline; gap: 14px; padding: 14px 0; border-bottom: 1px dashed var(--line-soft); }
.menu-item .name { font-family: var(--serif); font-size: 1.28rem; color: var(--text); white-space: nowrap; }
.menu-item .dots { flex: 1; border-bottom: 1px dotted var(--line); transform: translateY(-4px); }
.menu-item .price { font-family: var(--display); color: var(--copper-light); }
.menu-item .desc { display: block; font-size: 0.82rem; color: var(--text-mute); width: 100%; margin-top: 2px; }

.badge {
  display: inline-block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.18em;
  padding: 0.4em 0.9em; border-radius: 100px; border: 1px solid var(--line);
  color: var(--copper-light); background: rgba(185,110,76,0.08);
}

/* Spec grid (banquet) */
.specs { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 2px; background: var(--line-soft); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); overflow: hidden; }
.spec { background: var(--espresso-2); padding: 34px 26px; text-align: center; transition: background 0.4s; }
.spec:hover { background: var(--espresso-3); }
.spec svg { width: 28px; height: 28px; color: var(--copper-light); margin-bottom: 14px; }
.spec .big { font-family: var(--display); font-size: 2.2rem; color: var(--text); line-height: 1; }
.spec .cap { margin-top: 10px; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-dim); }

/* Event types */
.etypes { display: flex; flex-wrap: wrap; gap: 14px; }
.etype { padding: 0.8em 1.4em; border-radius: 100px; border: 1px solid var(--line); font-family: var(--serif); font-size: 1.2rem; transition: all 0.4s var(--ease); }
.etype:hover { background: var(--copper); color: #fff; border-color: var(--copper); transform: translateY(-3px); }

/* Testimonials */
.testi { max-width: 820px; margin-inline: auto; text-align: center; }
.testi__track { position: relative; min-height: 200px; }
.testi__slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s var(--ease); }
.testi__slide.active { opacity: 1; position: relative; }
.testi__quote { font-family: var(--serif); font-size: clamp(1.4rem, 3vw, 2.1rem); font-style: italic; line-height: 1.4; color: var(--cream); }
.testi__who { margin-top: 22px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper-light); }
.testi__dots { display: flex; gap: 10px; justify-content: center; margin-top: 34px; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all 0.4s; }
.testi__dots button.active { background: var(--copper); width: 26px; border-radius: 5px; }

/* ---------- 13. FORM ---------- */
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 26px 24px; }
.field { position: relative; grid-column: span 1; }
.field.full { grid-column: 1 / -1; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 12px 2px; color: var(--text); font-weight: 300; transition: border-color 0.4s;
}
.field textarea { resize: vertical; min-height: 90px; }
.field label {
  position: absolute; left: 2px; top: 12px; color: var(--text-mute); pointer-events: none;
  transition: all 0.35s var(--ease); font-size: 1rem;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--copper); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select.filled + label {
  top: -14px; font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--copper-light);
}
.field .bar { position: absolute; bottom: 0; left: 0; height: 1px; width: 100%; background: var(--copper); transform: scaleX(0); transform-origin: left; transition: transform 0.5s var(--ease); }
.field input:focus ~ .bar, .field textarea:focus ~ .bar, .field select:focus ~ .bar { transform: scaleX(1); }
.field select option { background: var(--espresso-2); color: var(--text); }
.form__note { grid-column: 1 / -1; font-size: 0.78rem; color: var(--text-mute); }

/* ---------- 14. NEARBY ---------- */
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.near {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 340px;
  display: flex; flex-direction: column; justify-content: flex-end; padding: 26px;
  border: 1px solid var(--line-soft);
}
.near__bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform 1.1s var(--ease); }
.near:hover .near__bg { transform: scale(1.08); }
.near__scrim { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,9,6,0.92), rgba(13,9,6,0.15) 65%); }
.near__c { position: relative; z-index: 2; }
.near__dist { display: inline-flex; align-items: center; gap: 0.5em; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--copper-light); margin-bottom: 10px; }
.near__dist svg { width: 14px; height: 14px; }
.near h3 { font-size: 1.5rem; }
.near p { font-size: 0.85rem; color: var(--text-dim); margin-top: 8px; }
.placeholder-flag {
  position: absolute; top: 14px; right: 14px; z-index: 3;
  font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.12em;
  background: rgba(23,17,13,0.75); color: var(--gold); padding: 5px 10px; border-radius: 100px;
  border: 1px solid rgba(217,165,102,0.35); backdrop-filter: blur(4px);
}
.near__bg.ph { background: linear-gradient(135deg, #2a2019, #1c1510); display: grid; place-items: center; }

/* ---------- 14b. HORIZONTAL SCROLLER (sideways) ---------- */
.hscroll { position: relative; }
.hscroll__head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; margin-bottom: 34px; }
.hscroll__arrows { display: flex; gap: 12px; }
.hscroll__arrow {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--text); transition: all 0.35s var(--ease);
}
.hscroll__arrow svg { width: 20px; height: 20px; }
.hscroll__arrow:hover:not(:disabled) { background: var(--copper); border-color: var(--copper); color: #fff; }
.hscroll__arrow:disabled { opacity: 0.3; cursor: default; }

.hscroll__track {
  display: flex; gap: 22px;
  overflow-x: auto; overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: 4px 4px 20px;
  margin: 0 -4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
  scroll-behavior: smooth;
}
.hscroll__track::-webkit-scrollbar { display: none; }
.hscroll__track.dragging { cursor: grabbing; scroll-behavior: auto; scroll-snap-type: none; }
.hscroll__track.dragging * { pointer-events: none; }
.hscroll__track > * { flex: 0 0 clamp(268px, 80vw, 360px); scroll-snap-align: start; }

.hscroll__progress { height: 2px; background: var(--line-soft); border-radius: 2px; overflow: hidden; margin-top: 6px; }
.hscroll__progress i { display: block; height: 100%; width: 20%; background: var(--copper); border-radius: 2px; transition: transform 0.15s linear, width 0.3s; transform-origin: left; }
.hscroll__hint { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); display: inline-flex; align-items: center; gap: 0.6em; margin-top: 16px; }
.hscroll__hint svg { width: 15px; height: 15px; color: var(--copper-light); }

/* ---------- 14c. REVIEWS ---------- */
.reviews__summary { display: flex; align-items: center; gap: clamp(20px, 4vw, 46px); flex-wrap: wrap; margin-bottom: 46px; }
.rating-big { display: flex; flex-direction: column; align-items: center; padding-right: clamp(20px,4vw,46px); border-right: 1px solid var(--line-soft); }
.rating-big .score { font-family: var(--display); font-size: clamp(3rem, 7vw, 4.6rem); line-height: 1; color: var(--copper-light); }
.rating-big .count { margin-top: 8px; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--text-dim); }
.stars { display: inline-flex; gap: 3px; color: var(--gold); font-size: 1rem; line-height: 1; }
.stars.lg { font-size: 1.4rem; }
.stars .s { color: rgba(217,165,102,0.25); }
.stars .s.on { color: var(--gold); }
.reviews__summary .breakdown { flex: 1; min-width: 220px; display: grid; gap: 7px; }
.bd-row { display: flex; align-items: center; gap: 12px; font-size: 0.8rem; color: var(--text-dim); }
.bd-row .lbl { width: 42px; }
.bd-bar { flex: 1; height: 5px; border-radius: 3px; background: var(--line-soft); overflow: hidden; }
.bd-bar i { display: block; height: 100%; background: var(--copper); border-radius: 3px; }

/* reviews marquee — single row, auto-scrolls sideways to save vertical space */
.marquee {
  position: relative; overflow-x: auto; overflow-y: hidden;
  scrollbar-width: none; -ms-overflow-style: none;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.marquee::-webkit-scrollbar { display: none; }
.marquee__track { display: flex; gap: 22px; width: max-content; padding: 4px 2px 8px; }
.marquee__track > * { flex: 0 0 clamp(272px, 82vw, 348px); }

.review-card {
  background: var(--espresso-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 28px 26px 26px; height: auto; display: flex; flex-direction: column;
}
.review-card .stars { margin-bottom: 14px; }
.review-card p { font-family: var(--serif); font-size: 1.18rem; line-height: 1.5; color: var(--cream); flex: 1; }
.review-card .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.review-card .av { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; background: var(--copper); color: #fff; font-family: var(--display); font-size: 1.05rem; flex: 0 0 auto; }
.review-card .who .nm { font-size: 0.92rem; color: var(--text); }
.review-card .who .mt { font-size: 0.72rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: 0.1em; }
.review-card.new { animation: revIn 0.6s var(--ease); }
@keyframes revIn { from { opacity: 0; transform: translateY(16px); } }

/* review form */
.review-form { background: var(--espresso-2); border: 1px solid var(--line-soft); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 42px); }
.star-input { display: inline-flex; gap: 6px; margin: 6px 0 4px; }
.star-input button { font-size: 1.9rem; line-height: 1; color: rgba(217,165,102,0.28); transition: transform 0.2s var(--ease), color 0.2s; }
.star-input button:hover { transform: scale(1.15); }
.star-input button.on { color: var(--gold); }
.star-input__label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.16em; color: var(--copper-light); }

/* ---------- 14d. TOGGLE + CELEBRATIONS BOARD ---------- */
.toggle { display: inline-flex; flex-wrap: wrap; justify-content: center; gap: 4px; padding: 5px; border: 1px solid var(--line); border-radius: 100px; background: rgba(185,110,76,0.05); }
.toggle__btn { padding: 0.7em 1.5em; border-radius: 100px; font-size: 0.8rem; letter-spacing: 0.05em; color: var(--text-dim); white-space: nowrap; transition: color 0.35s var(--ease), background 0.35s var(--ease); }
.toggle__btn:hover { color: var(--text); }
.toggle__btn.active { background: var(--copper); color: #fff; }
.toggle-panel { display: none; }
.toggle-panel.active { display: block; animation: togIn 0.6s var(--ease); }
@keyframes togIn { from { opacity: 0; transform: translateY(14px); } }

.celebrate-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.celebrate {
  position: relative; overflow: hidden; border-radius: var(--radius-lg);
  min-height: 460px; padding: 44px 30px;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  border: 1px solid var(--line);
}
.celebrate__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.34) saturate(0.9); transform: scale(1.06); }
.celebrate__glow { position: absolute; inset: 0; background: radial-gradient(circle at 50% 32%, rgba(217,165,102,0.28), transparent 62%); }
.celebrate > *:not(.celebrate__bg):not(.celebrate__glow):not(.flag) { position: relative; z-index: 2; }
.celebrate .live { display: inline-flex; align-items: center; gap: 0.55em; font-size: 0.64rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--gold); border: 1px solid rgba(217,165,102,0.4); padding: 0.45em 1em; border-radius: 100px; margin-bottom: 24px; background: rgba(23,17,13,0.35); }
.celebrate .live .dot { width: 7px; height: 7px; border-radius: 50%; background: #ff6b6b; box-shadow: 0 0 0 0 rgba(255,107,107,0.6); animation: livePulse 1.8s infinite; }
@keyframes livePulse { 0% { box-shadow: 0 0 0 0 rgba(255,107,107,0.5); } 100% { box-shadow: 0 0 0 9px rgba(255,107,107,0); } }
.celebrate .monogram { width: 78px; height: 78px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; font-family: var(--display); font-size: 1.35rem; color: var(--gold); background: rgba(23,17,13,0.45); margin-bottom: 18px; }
.celebrate .kicker { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.3em; color: var(--text-dim); }
.celebrate .names { font-family: var(--display); font-size: clamp(1.9rem, 3.4vw, 2.7rem); line-height: 1.1; margin: 10px 0 4px; }
.celebrate .names .amp { color: var(--copper-light); font-style: italic; }
.celebrate .msg { font-family: var(--serif); font-style: italic; font-size: 1.06rem; color: var(--cream); max-width: 30ch; margin: 16px auto 0; }
.celebrate .meta { margin-top: 22px; display: flex; gap: 8px 20px; justify-content: center; flex-wrap: wrap; font-size: 0.76rem; color: var(--text-dim); }
.celebrate .meta span { display: inline-flex; align-items: center; gap: 0.5em; }
.celebrate .meta svg { width: 15px; height: 15px; color: var(--copper-light); }
.celebrate .flag { position: absolute; top: 14px; right: 14px; z-index: 3; font-size: 0.58rem; text-transform: uppercase; letter-spacing: 0.12em; background: rgba(23,17,13,0.75); color: var(--gold); padding: 5px 10px; border-radius: 100px; border: 1px solid rgba(217,165,102,0.35); backdrop-filter: blur(4px); }

.event-list { display: grid; gap: 14px; max-width: 840px; margin-inline: auto; }
.event-row { display: flex; align-items: center; gap: 20px; padding: 18px 24px; border: 1px solid var(--line-soft); border-radius: var(--radius); background: var(--espresso-2); transition: border-color 0.35s var(--ease), transform 0.35s var(--ease); }
.event-row:hover { border-color: var(--line); transform: translateX(5px); }
.event-date { flex: 0 0 58px; text-align: center; }
.event-date .d { font-family: var(--display); font-size: 1.7rem; line-height: 1; color: var(--copper-light); }
.event-date .m { font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.14em; color: var(--text-mute); margin-top: 5px; }
.event-sep { width: 1px; align-self: stretch; background: var(--line-soft); }
.event-info { flex: 1; min-width: 0; }
.event-info .t { font-family: var(--serif); font-size: 1.25rem; }
.event-info .s { font-size: 0.8rem; color: var(--text-dim); margin-top: 2px; }
.event-tag { flex: 0 0 auto; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.1em; padding: 0.45em 0.9em; border-radius: 100px; border: 1px solid var(--line); color: var(--copper-light); }
@media (max-width: 760px) {
  .celebrate-grid { grid-template-columns: 1fr; }
  .celebrate { min-height: 400px; }
  .event-row { flex-wrap: wrap; gap: 12px 16px; }
  .event-tag { order: 3; }
}

/* celebration pop-up — full-screen "now celebrating" welcome with confetti */
.cbrate-pop { position: fixed; inset: 0; z-index: 950; display: none; align-items: center; justify-content: center; padding: 6vw 5vw; background: radial-gradient(120% 120% at 50% 22%, rgba(43,30,20,0.97), rgba(9,6,4,0.985)); }
.cbrate-pop.open { display: flex; }
.cbrate-pop__bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.26) saturate(0.9); opacity: 0; }
.cbrate-pop.open .cbrate-pop__bg { animation: popBg 1.1s var(--ease) forwards; }
@keyframes popBg { to { opacity: 0.5; transform: scale(1.04); } }
.cbrate-pop .confetti-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 2; }
.cbrate-pop__close { position: absolute; top: 22px; right: 24px; z-index: 4; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); color: var(--text); display: grid; place-items: center; transition: all 0.3s; }
.cbrate-pop__close:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: rotate(90deg); }
.cbrate-pop__card { position: relative; z-index: 3; max-width: 660px; width: 100%; text-align: center; opacity: 0; transform: scale(0.92) translateY(12px); }
.cbrate-pop.open .cbrate-pop__card { animation: popIn 0.85s var(--ease) 0.12s forwards; }
@keyframes popIn { to { opacity: 1; transform: none; } }
.cbrate-pop .live { display: inline-flex; align-items: center; gap: 0.55em; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.24em; color: var(--gold); border: 1px solid rgba(217,165,102,0.45); padding: 0.5em 1.1em; border-radius: 100px; background: rgba(23,17,13,0.4); margin-bottom: 26px; }
.cbrate-pop .live .dot { width: 8px; height: 8px; border-radius: 50%; background: #ff6b6b; box-shadow: 0 0 0 0 rgba(255,107,107,0.6); animation: livePulse 1.8s infinite; }
.cbrate-pop .monogram { width: 100px; height: 100px; margin: 0 auto 20px; border-radius: 50%; border: 1px solid var(--gold); display: grid; place-items: center; font-family: var(--display); font-size: 1.8rem; color: var(--gold); background: rgba(23,17,13,0.45); box-shadow: 0 0 60px rgba(217,165,102,0.25); }
.cbrate-pop .kicker { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.34em; color: var(--text-dim); }
.cbrate-pop .names { font-family: var(--display); font-size: clamp(2.4rem, 6.5vw, 4.2rem); line-height: 1.08; margin: 12px 0 6px; }
.cbrate-pop .names .amp { color: var(--copper-light); font-style: italic; }
.cbrate-pop .msg { font-family: var(--serif); font-style: italic; font-size: clamp(1.05rem, 2vw, 1.3rem); color: var(--cream); max-width: 40ch; margin: 16px auto 0; }
.cbrate-pop .meta { margin-top: 26px; display: flex; gap: 10px 24px; justify-content: center; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-dim); }
.cbrate-pop .meta span { display: inline-flex; align-items: center; gap: 0.5em; }
.cbrate-pop .meta svg { width: 15px; height: 15px; color: var(--copper-light); }

.celebrate .btn { margin-top: 26px; }

/* ---------- 14e. MENU MODAL (in-room dining) ---------- */
.menu-modal { position: fixed; inset: 0; z-index: 850; display: none; align-items: center; justify-content: center; padding: max(4vw, 18px); background: rgba(9,6,4,0.92); backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px); }
.menu-modal.open { display: flex; animation: mmFade 0.3s var(--ease); }
@keyframes mmFade { from { opacity: 0; } }
.menu-modal__card { position: relative; width: 100%; max-width: 900px; max-height: 88vh; overflow-y: auto; background: var(--espresso-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 48px); }
.menu-modal.open .menu-modal__card { animation: mmIn 0.55s var(--ease); }
@keyframes mmIn { from { opacity: 0; transform: translateY(22px) scale(0.98); } }
.menu-modal__card::-webkit-scrollbar { width: 8px; }
.menu-modal__card::-webkit-scrollbar-thumb { background: var(--line); border-radius: 8px; }
.menu-modal__close { position: absolute; top: 20px; right: 22px; z-index: 5; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); background: rgba(23,17,13,0.6); color: var(--text); display: grid; place-items: center; transition: all 0.3s; }
.menu-modal__close:hover { background: var(--copper); border-color: var(--copper); color: #fff; transform: rotate(90deg); }

/* ---------- 15. LIGHTBOX ---------- */
.lightbox { position: fixed; inset: 0; z-index: 800; background: rgba(9,6,4,0.94); display: none; align-items: center; justify-content: center; padding: 4vw; opacity: 0; transition: opacity 0.4s; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 90vw; max-height: 86vh; border-radius: var(--radius); box-shadow: 0 40px 120px rgba(0,0,0,0.6); }
.lightbox__close { position: absolute; top: 26px; right: 30px; color: var(--text); width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: all 0.3s; }
.lightbox__close:hover { background: var(--copper); border-color: var(--copper); color: #fff; }
.lightbox__nav { position: absolute; top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; transition: all 0.3s; }
.lightbox__nav:hover { background: var(--copper); border-color: var(--copper); }
.lightbox__nav.prev { left: 3vw; } .lightbox__nav.next { right: 3vw; }

/* ---------- 16. FOOTER + CONTACT ---------- */
.footer { background: var(--espresso-2); border-top: 1px solid var(--line-soft); padding-top: clamp(70px, 10vh, 120px); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.4fr; gap: 40px; padding-bottom: 60px; }
.footer h4 { font-family: var(--sans); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--copper-light); margin-bottom: 20px; font-weight: 500; }
.footer__logo { height: 40px; filter: brightness(0) invert(1); margin-bottom: 20px; }
.footer a.f-link { display: block; color: var(--text-dim); padding: 5px 0; transition: color 0.3s, padding-left 0.3s; }
.footer a.f-link:hover { color: var(--copper-light); padding-left: 6px; }
.footer__map { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line-soft); min-height: 180px; }
.footer__map iframe { width: 100%; height: 100%; min-height: 200px; border: 0; filter: grayscale(0.3) contrast(1.05) brightness(0.9); }
.footer__bottom { border-top: 1px solid var(--line-soft); padding: 26px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; color: var(--text-mute); }
.footer__bottom a:hover { color: var(--copper-light); }

/* ---------- 17. FLOATING ACTIONS + CURSOR ---------- */
.fab { position: fixed; right: 22px; bottom: 22px; z-index: 200; display: flex; flex-direction: column; gap: 12px; }
.fab a { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 30px rgba(0,0,0,0.4); transition: transform 0.3s var(--ease); position: relative; }
.fab a:hover { transform: scale(1.1) translateY(-2px); }
.fab .wa { background: #25d366; color: #fff; }
.fab .call { background: var(--copper); color: #fff; }
.fab .pay { background: var(--gold); color: var(--espresso); }
.fab .pay svg { stroke-width: 2.4; }
.fab a svg { width: 24px; height: 24px; }
.fab a::before { content:""; position:absolute; inset:0; border-radius:50%; border:2px solid currentColor; opacity:.5; animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0%{transform:scale(1);opacity:.5} 100%{transform:scale(1.6);opacity:0} }

.cursor { position: fixed; top: 0; left: 0; width: 8px; height: 8px; border-radius: 50%; background: var(--copper-light); z-index: 999; pointer-events: none; transform: translate(-50%,-50%); mix-blend-mode: difference; }
.cursor-ring { position: fixed; top: 0; left: 0; width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--copper); z-index: 999; pointer-events: none; transform: translate(-50%,-50%); transition: width 0.3s var(--ease), height 0.3s var(--ease), background 0.3s, border-color 0.3s; }
.cursor-ring.hover { width: 64px; height: 64px; background: rgba(185,110,76,0.12); border-color: var(--copper-light); }
@media (hover: none), (pointer: coarse) { .cursor, .cursor-ring { display: none; } }

/* ---------- 18. RESPONSIVE ---------- */
@media (max-width: 1100px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px 20px; }
  .stat:nth-child(3)::before, .stat:nth-child(2)::before, .stat:nth-child(4)::before { display: none; }
}
@media (max-width: 920px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .portals { grid-template-columns: 1fr; grid-auto-rows: 1fr; height: auto; }
  .portal { min-height: 62svh; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.4); }
  .portal__icon, .portal__go { opacity: 1; transform: none; }
  .portal__sub { max-height: 120px; opacity: 1; }
  .portal__bg { transform: scale(1); filter: brightness(0.72); }
  .scroll-cue { display: none; }
  .masonry { columns: 2; }
  .form { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
  .masonry { columns: 1; }
  .footer__grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .cursor, .cursor-ring { display: none; }
}

/* ---------- 18b. MOBILE REFINEMENTS ---------- */
@media (max-width: 760px) {
  /* Collapse every inline two-column feature/duo grid to a single column.
     (Class grids like .stats / .specs / .nearby-grid keep their own responsive rules.) */
  [style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
  /* Stacked feature blocks: tighten the gap and never let an image become a sliver */
  [style*="grid-template-columns"] > * { min-width: 0; }
  [style*="grid-template-columns"] { gap: 26px !important; }

  .section-pad { padding: clamp(52px, 8vh, 88px) 0; }
  .container, .container-wide { width: min(100% - 40px, var(--container)); }

  /* Heroes: cap height so a phone isn't endless scrolling; unify inline-set heights */
  .phero { height: clamp(440px, 66svh, 620px) !important; min-height: 0; }
  .portal { min-height: 52svh; }

  /* Typography scales down a touch on small screens */
  .phero__title { font-size: clamp(2.3rem, 12vw, 3.6rem); }
  .h-xl { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .h-lg { font-size: clamp(2rem, 9vw, 2.9rem); }
  .h-md { font-size: clamp(1.6rem, 7.5vw, 2.3rem); }
  .lead { font-size: 1rem; }
  .eyebrow { font-size: 0.66rem; letter-spacing: 0.26em; }

  /* Menu rows: wrap the name, drop the leader dots, keep price aligned right */
  .menu-item { flex-wrap: wrap; }
  .menu-item .name { white-space: normal; }
  .menu-item .dots { display: none; }
  .menu-item .price { margin-left: auto; }

  /* Cards / tilt: disable 3D tilt so nothing looks skewed on touch */
  .tilt { transform: none !important; }

  /* Floating buttons: smaller and clear of the edge */
  .fab { right: 14px; bottom: 14px; gap: 10px; }
  .fab a { width: 50px; height: 50px; }
  .fab a svg { width: 22px; height: 22px; }

  /* Testimonials: comfortable line length */
  .testi__quote { font-size: 1.3rem; line-height: 1.45; }

  /* Footer breathing room */
  .footer__grid { gap: 30px; }
}

@media (max-width: 420px) {
  :root { --gutter: 18px; }
  .btn { padding: 0.95em 1.6em; font-size: 0.76rem; }
  .amenity { font-size: 0.72rem; padding: 0.5em 0.9em; }
  .stat__num { font-size: clamp(2rem, 12vw, 2.6rem); }
}

/* ---------- 19. REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.15s !important; scroll-behavior: auto !important; }
  .intro { display: none !important; }
  .reveal-up, .reveal-fade { opacity: 1 !important; transform: none !important; }
  .split-line > span { transform: none !important; }
  .portal__bg { transform: scale(1) !important; }
  .cursor, .cursor-ring, .fab a::before, .scroll-cue { animation: none !important; }
  .scroll-cue .line::after { display: none; }
}
