/* =============================================================
   1. Tokens
   ============================================================= */
:root {
  --bg:        #0e0b09;   /* warm-tinted near-black, never pure #000 */
  --bg-2:      #15110e;
  --bg-3:      #1e1813;   /* card */
  --cream:     #f2ebda;   /* text on dark, never pure white */
  --cream-2:   #ddd2bc;
  --cream-3:   #a89a80;   /* metadata / muted */
  --accent:    #c49a5b;   /* champagne gold — matches the real brand mark */
  --accent-2:  #e9c98a;
  --ink-dark:  #241a0d;   /* text on gold buttons */
  --line:      rgba(242,235,218,.14);

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-h: 76px;
  --container: 1180px;
}


/* =============================================================
   2. Reset & base
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; }
html { -webkit-text-size-adjust: 100%; tab-size: 2; overflow-x: clip; scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  overscroll-behavior-y: none;
}
img, svg, video { display: block; max-width: 100%; }
img { height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; }
a { color: inherit; text-decoration: none; }
p { text-wrap: pretty; }
h1, h2, h3, h4 { text-wrap: balance; line-height: 1.05; letter-spacing: -0.01em; font-family: var(--serif); font-weight: 500; }
ul { list-style: none; padding: 0; }
::selection { background: var(--accent); color: var(--ink-dark); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* =============================================================
   3. Utilities
   ============================================================= */
.skip-link {
  position: fixed; top: -100px; left: 1rem;
  padding: .6rem 1rem; background: var(--cream); color: var(--bg);
  z-index: 9999; border-radius: 8px; font-weight: 600;
}
.skip-link:focus { top: 1rem; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.kicker {
  font-size: .82rem; text-transform: uppercase; letter-spacing: .14em;
  color: var(--accent); font-weight: 600; display: flex; align-items: center; gap: .5em;
}
.kicker .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); display: inline-block; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
.section-head { max-width: 640px; margin-bottom: clamp(2rem, 5vw, 3.5rem); }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-top: .5rem; }
.section-head p { color: var(--cream-3); margin-top: .9rem; font-size: 1.05rem; }
.eyebrow-em { font-style: italic; color: var(--accent-2); }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease-out), transform .8s var(--ease-out); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =============================================================
   4. Typography
   ============================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .95rem 1.7rem; border-radius: 999px; font-weight: 600; font-size: .95rem;
  transition: transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .35s var(--ease-out);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(120deg, var(--accent-2), var(--accent));
  color: var(--ink-dark);
  box-shadow: 0 14px 30px -12px rgba(196,154,91,.55);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -14px rgba(196,154,91,.7); }
.btn-ghost {
  border: 1px solid var(--line); color: var(--cream);
  background: rgba(242,235,218,.03);
}
.btn-ghost:hover { border-color: var(--accent); background: rgba(196,154,91,.08); }
.btn[disabled] { opacity: .5; cursor: not-allowed; transform: none !important; }

/* =============================================================
   5. Components
   ============================================================= */

/* -- nav -- */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 200;
  display: flex; flex-direction: column;
  background: transparent;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), backdrop-filter .4s var(--ease-out);
  border-bottom: 1px solid transparent;
}
.nav.is-solid {
  background: rgba(14,11,9,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-color: var(--line);
}
.nav-banner {
  font-size: .76rem; text-align: center; padding: .5rem 1rem;
  background: linear-gradient(90deg, rgba(196,154,91,.2), rgba(196,154,91,.07));
  border-bottom: 1px solid var(--line); color: var(--cream-2);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; min-height: var(--nav-h); }
.nav-brand { display: flex; align-items: center; gap: .65rem; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .01em; }
.nav-monogram {
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center; font-size: .8rem; letter-spacing: .02em; color: var(--accent); font-family: var(--serif);
  flex-shrink: 0;
}
.nav-links { display: none; align-items: center; gap: 1.8rem; font-size: .92rem; color: var(--cream-2); }
.nav-links a { position: relative; padding-block: 4px; }
.nav-links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 1px; background: var(--accent);
  transition: right .35s var(--ease-out);
}
.nav-links a:hover::after { right: 0; }
.nav-cta { display: flex; align-items: center; gap: .7rem; }
.nav-cta .btn { padding: .7rem 1.3rem; font-size: .88rem; }
.nav-phone { display: none; font-size: .88rem; color: var(--cream-2); }
@media (min-width: 960px) {
  .nav-links { display: flex; }
  .nav-phone { display: inline; }
}

/* -- cards -- */
.card {
  background: var(--bg-3); border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; position: relative;
  transition: transform .5s var(--ease-out), box-shadow .5s var(--ease-out), border-color .5s var(--ease-out);
}
.card:hover { transform: translateY(-6px); border-color: rgba(196,154,91,.4); box-shadow: 0 30px 50px -30px rgba(0,0,0,.65); }
.card-img { aspect-ratio: 4/3; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease-out), filter .7s var(--ease-out); }
.card:hover .card-img img { transform: scale(1.08); filter: saturate(1.1) brightness(1.03); }
.card-body { padding: 1.3rem 1.4rem 1.5rem; }
.card-body h3 { font-size: 1.15rem; margin-bottom: .4rem; }
.card-body p { color: var(--cream-3); font-size: .92rem; }
.card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: 1rem; }
.duration-pill {
  font-size: .78rem; padding: .3rem .7rem; border-radius: 999px; border: 1px solid var(--line);
  color: var(--cream-2);
}
.card-book {
  font-size: .85rem; font-weight: 600; color: var(--accent); display: inline-flex; align-items: center; gap: .35em;
}
.card-book:hover { color: var(--accent-2); }

/* -- form -- */
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .82rem; color: var(--cream-3); }
.field input, .field select {
  padding: .85rem 1rem; border-radius: 11px; border: 1px solid var(--line);
  background: rgba(255,255,255,.03); color: var(--cream); font: inherit;
}
.field input:focus, .field select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(196,154,91,.16); }
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--accent) 50%), linear-gradient(135deg, var(--accent) 50%, transparent 50%); background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 14px) calc(50% - 3px); background-size: 6px 6px; background-repeat: no-repeat; }

/* =============================================================
   6. Sections
   ============================================================= */

/* -- splash -- */
.splash {
  position: fixed; inset: 0; z-index: 500; background: var(--bg);
  display: grid; place-items: center; transition: opacity .5s var(--ease-out), clip-path .6s var(--ease-out);
  animation: splashSafety .01s 4.2s forwards;
}
.splash.is-out { opacity: 0; clip-path: inset(0 0 100% 0); pointer-events: none; }
@keyframes splashSafety { to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); } }
.splash-mark { width: 64px; height: 64px; border-radius: 50%; border: 1px solid var(--accent); display: grid; place-items: center; font-family: var(--serif); color: var(--accent); font-size: 1.3rem; animation: splashPulse 1.6s ease-in-out infinite; }
@keyframes splashPulse { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.06); } }

/* -- hero -- */
.hero {
  position: relative; min-height: 100svh; display: flex; align-items: flex-end;
  padding-top: var(--hero-pad-top, 118px);   /* JS refines this to the real (banner + nav) height */
  overflow: hidden;
}
.hero-bg {
  position: absolute; z-index: -2; overflow: hidden; border-radius: 22px;
  inset: var(--hero-pad-top, 118px) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem);
}
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg-tint {
  position: absolute; border-radius: 22px;
  inset: var(--hero-pad-top, 118px) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem) clamp(1rem, 4vw, 2.5rem);
  background: linear-gradient(180deg, rgba(14,11,9,.55) 0%, rgba(14,11,9,.75) 55%, var(--bg) 100%);
}
.hero-mesh {
  position: absolute; inset: -25%; z-index: -1; mix-blend-mode: soft-light; opacity: .8; pointer-events: none;
  background: conic-gradient(from 0deg, rgba(196,154,91,.35), transparent 30%, rgba(196,154,91,.25) 60%, transparent 85%);
  filter: blur(70px);
  transform-origin: 50% 50%;
  animation: meshRotate 26s linear infinite;
  will-change: transform;
}
/* transform-only rotation: GPU-composited, far cheaper than animating the
   gradient's own angle (which would force a full repaint every frame). */
@keyframes meshRotate { to { transform: rotate(360deg); } }
.hero-inner { position: relative; padding-bottom: clamp(3rem, 7vw, 5.5rem); width: 100%; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .6rem; padding: .5rem .9rem .5rem .5rem;
  border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.04); margin-bottom: 1.6rem;
}
.hero-badge .nav-monogram { width: 28px; height: 28px; font-size: .68rem; }
.hero-badge span { font-size: .85rem; color: var(--cream-2); }
.hero-title { font-size: clamp(2.6rem, 6.2vw, 4.6rem); max-width: 16ch; }
.hero-title em { font-style: italic; color: var(--accent-2); }
.hero-sub { margin-top: 1.3rem; color: var(--cream-2); max-width: 46ch; font-size: 1.08rem; }
.hero-foot { display: flex; flex-wrap: wrap; align-items: center; gap: 1.6rem; margin-top: 2.2rem; }
.hero-rating { display: flex; align-items: center; gap: .5em; font-size: .95rem; color: var(--cream-2); }
.hero-rating strong { color: var(--accent-2); font-weight: 700; }
.hero-actions { display: flex; gap: .8rem; flex-wrap: wrap; }

/* -- about / concept -- */
.about { display: grid; gap: clamp(2rem, 5vw, 4rem); grid-template-columns: 1fr; align-items: center; }
.about-figure { border-radius: 20px; overflow: hidden; aspect-ratio: 16/10; }
.about-figure img { width: 100%; height: 100%; object-fit: cover; }
.about-text .num { font-family: var(--serif); font-size: 1rem; color: var(--accent); margin-bottom: .8rem; display: block; }
.about-text p { color: var(--cream-2); font-size: 1.08rem; margin-top: 1rem; }
.about-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; margin-top: 2rem; }
.about-pillars div { border-top: 1px solid var(--line); padding-top: .9rem; }
.about-pillars strong { display: block; font-family: var(--serif); font-size: 1.3rem; color: var(--accent-2); }
.about-pillars span { font-size: .82rem; color: var(--cream-3); }
@media (min-width: 960px) { .about { grid-template-columns: 1.1fr .9fr; } }

/* -- services grid -- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.4rem; }

/* -- booking -- */
.booking { background: var(--bg-2); border-radius: 28px; border: 1px solid var(--line); padding: clamp(1.6rem, 4vw, 3rem); position: relative; overflow: hidden; }
/* Bounded halo (fixed px, not %-of-section) — a huge blurred layer on a tall
   section is expensive to rasterize and can stall rendering on weaker GPUs. */
.booking-halo { position: absolute; top: -120px; left: -80px; width: 480px; height: 480px; background: radial-gradient(45% 45% at 40% 40%, rgba(196,154,91,.28), transparent 70%); filter: blur(60px); pointer-events: none; }
.booking-grid { display: grid; gap: 2.2rem; position: relative; }
@media (min-width: 900px) { .booking-grid { grid-template-columns: 1fr 1.15fr; } }
.booking-steps { display: flex; flex-direction: column; gap: 1.1rem; }
.booking-row { display: grid; gap: 1rem; grid-template-columns: 1fr; }
@media (min-width: 540px) { .booking-row { grid-template-columns: 1fr 1fr; } }
.slots { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: .3rem; min-height: 46px; }
.slot-btn {
  padding: .6rem 1rem; border-radius: 10px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: var(--cream-2); font-size: .9rem; transition: all .25s var(--ease-out);
}
.slot-btn:hover { border-color: var(--accent); color: var(--cream); }
.slot-btn.is-selected { background: var(--accent); border-color: var(--accent); color: var(--ink-dark); font-weight: 700; }
.slots-empty, .slots-loading { color: var(--cream-3); font-size: .9rem; }
.slots-note { font-size: .78rem; color: var(--cream-3); margin-top: .6rem; }
.booking-form { display: none; flex-direction: column; gap: 1rem; margin-top: 1.4rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.booking-form.is-active { display: flex; }
.booking-summary { border: 1px dashed var(--line); border-radius: 12px; padding: .9rem 1.1rem; font-size: .92rem; color: var(--cream-2); }
.booking-summary strong { color: var(--accent-2); }
.booking-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: 12px; font-size: .9rem; border: 1px solid var(--line); display: none; }
.booking-status.is-visible { display: block; }
.booking-status.ok { background: rgba(120,200,140,.12); border-color: rgba(120,200,140,.4); color: #dff5e4; }
.booking-status.error { background: rgba(230,120,90,.12); border-color: rgba(230,120,90,.4); color: #ffd9cd; }
.booking-status.info { background: rgba(196,154,91,.1); border-color: rgba(196,154,91,.35); color: var(--cream-2); }
.booking-side { display: flex; flex-direction: column; gap: 1.1rem; }
.booking-side .hours { border: 1px solid var(--line); border-radius: 16px; padding: 1.3rem 1.4rem; background: rgba(255,255,255,.02); }
.hours-row { display: flex; justify-content: space-between; padding: .4rem 0; font-size: .9rem; color: var(--cream-2); border-bottom: 1px solid rgba(242,235,218,.06); }
.hours-row:last-child { border-bottom: 0; }
.hours-row.is-today { color: var(--accent-2); font-weight: 600; }
.booking-side .promise { display: flex; gap: .8rem; align-items: flex-start; font-size: .9rem; color: var(--cream-3); }
.check-icon { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; border: 1px solid var(--accent); display: grid; place-items: center; color: var(--accent); font-size: .7rem; margin-top: .1rem; }

/* -- gallery -- */
.gallery-track { display: flex; gap: 1rem; overflow-x: auto; overflow-y: visible; scroll-snap-type: x mandatory; padding-block: .5rem 1rem; }
.gallery-track img { scroll-snap-align: start; width: min(78vw, 340px); aspect-ratio: 4/5; object-fit: cover; border-radius: 16px; flex-shrink: 0; }

/* -- faq -- */
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 0; text-align: left; font-family: var(--serif); font-size: 1.1rem; }
.faq-q .plus { transition: transform .35s var(--ease-out); color: var(--accent); font-size: 1.4rem; flex-shrink: 0; margin-left: 1rem; }
.faq-item.is-open .plus { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease-out); color: var(--cream-3); }
.faq-a p { padding-bottom: 1.3rem; max-width: 60ch; }
.faq-item.is-open .faq-a { max-height: 220px; }

/* -- contact -- */
.contact-grid { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-card { border: 1px solid var(--line); border-radius: 18px; padding: 1.6rem 1.7rem; background: rgba(255,255,255,.02); }
.contact-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.2rem; }
.contact-list a, .contact-list p { display: flex; gap: .8rem; align-items: center; font-size: .95rem; color: var(--cream-2); }
.contact-list a:hover { color: var(--accent-2); }
.map-embed { border-radius: 18px; overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.3) invert(.92) contrast(.9); }

/* -- footer -- */
.footer { border-top: 1px solid var(--line); padding: 2.6rem 0; }
.footer-inner { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; align-items: center; }
.footer-inner p { color: var(--cream-3); font-size: .85rem; }
.footer-inner a { color: var(--cream-3); }
.footer-inner a:hover { color: var(--accent); }

/* =============================================================
   7. Effects
   ============================================================= */
[data-tilt] { transform-style: preserve-3d; will-change: transform; }

/* =============================================================
   8. Responsive niceties
   ============================================================= */
@media (min-width: 720px) {
  .hero-title { max-width: 20ch; }
}
@media (min-width: 1280px) {
  .services-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =============================================================
   9. Reduced motion — only the truly intrusive
   ============================================================= */
@media (prefers-reduced-motion: reduce) {
  .hero-mesh { animation: none; }
  .splash-mark { animation: none; }
}
