/* ==========================================================================
   Lumoria Studios — design tokens
   Single deliberate visual world: a night sky. The brand mark only exists
   on deep navy with gold — there is no "light mode" version of a moon and
   a star, so this page commits to one theme rather than forcing a second.
   ========================================================================== */

:root {
  /* -- color: night sky + gold + photo-print ivory -- */
  --ink-950: #060912;
  --ink-900: #0b1330;
  --ink-850: #0f1938;
  --ink-800: #131c3f;
  --ink-700: #1c2650;
  --ink-line: rgba(201, 162, 39, 0.16);
  --ink-line-strong: rgba(201, 162, 39, 0.32);

  --gold-300: #e8c766;
  --gold-500: #c9a227;
  --gold-600: #ab8a22;
  --gold-700: #8c7018;

  --mist: #d9d2be;
  --mist-dim: #a6a08e;

  --paper-100: #f7f1e1;
  --paper-200: #efe6cc;
  --ink-on-paper: #1e2238;
  --muted-on-paper: #6b6555;

  --danger: #e0665a;

  /* -- type -- */
  --face-display: "Cormorant Garamond", "Iowan Old Style", "Georgia", serif;
  --face-body: "Jost", "Century Gothic", "Futura", sans-serif;
  --face-stamp: "Space Mono", "Courier New", monospace;

  --fs-display: clamp(2.75rem, 2.1rem + 3vw, 5.25rem);
  --fs-h2: clamp(2rem, 1.65rem + 1.5vw, 3.15rem);
  --fs-h3: clamp(1.3rem, 1.15rem + 0.6vw, 1.65rem);
  --fs-lead: clamp(1.1rem, 1.02rem + 0.35vw, 1.35rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-eyebrow: 0.8rem;

  /* -- space (8px rhythm) -- */
  --sp-1: 0.5rem;
  --sp-2: 0.75rem;
  --sp-3: 1rem;
  --sp-4: 1.5rem;
  --sp-5: 2rem;
  --sp-6: 3rem;
  --sp-7: 4.5rem;
  --sp-8: 6.5rem;
  --sp-9: 9rem;

  --container: 1180px;
  --radius-card: 2px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

*, *::before, *::after { box-sizing: border-box; }
/* No `scroll-behavior: smooth` here on purpose — Lenis owns scroll position
   every frame in script.js; the browser's own CSS smooth-scroll would layer
   a second round of easing on top of Lenis's and compound into input lag. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
}

body {
  margin: 0;
  background: var(--ink-900);
  color: var(--mist);
  font-family: var(--face-body);
  font-size: var(--fs-body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-4);
}

h1, h2, h3 {
  font-family: var(--face-display);
  font-weight: 600;
  color: #fbf6e9;
  margin: 0;
  text-wrap: balance;
}

h2 { font-size: var(--fs-h2); line-height: 1.08; }
h3 { font-size: var(--fs-h3); line-height: 1.2; }

p { margin: 0; }
.lead { font-size: var(--fs-lead); color: var(--mist); max-width: 60ch; line-height: 1.6; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--face-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-500);
}
.eyebrow::before {
  content: "";
  width: 1.4em;
  height: 1px;
  background: var(--gold-500);
}
.hero .eyebrow::after {
  content: "";
  width: 1.4em;
  height: 1px;
  background: var(--gold-500);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--gold-300);
  outline-offset: 3px;
  border-radius: 1px;
}

.on-paper :focus-visible { outline-color: var(--ink-900); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--gold-500);
  color: var(--ink-900);
  padding: 0.75em 1.25em;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: var(--sp-4); top: var(--sp-4); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6em;
  min-height: 48px;
  padding: 0.9em 1.6em;
  font-family: var(--face-body);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  border-radius: 1px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease-out), background-color 0.25s, color 0.25s, border-color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn-solid { background: var(--gold-500); color: var(--ink-950); }
.btn-solid:hover { background: var(--gold-300); }
.btn-outline { background: transparent; color: var(--gold-300); border-color: var(--ink-line-strong); }
.btn-outline:hover { border-color: var(--gold-300); background: rgba(201, 162, 39, 0.08); }
.btn-whatsapp { background: #2e7d5b; color: #f4fbf7; }
.btn-whatsapp:hover { background: #379068; }
.btn[disabled] { opacity: 0.55; cursor: progress; transform: none; }

/* ---------- scroll progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold-700), var(--gold-300));
  z-index: 200;
  transition: width 0.1s linear;
}

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 9, 18, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--ink-line);
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  min-height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.brand-logo { display: block; height: 52px; width: auto; flex-shrink: 0; }
.hero-logo { display: block; height: clamp(96px, 12vw, 148px); width: auto; margin-bottom: var(--sp-2); }
.footer-logo { display: block; height: 92px; width: auto; }

.main-nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav-links { display: flex; gap: var(--sp-4); list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  color: var(--mist);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px;
  width: 0;
  background: var(--gold-500);
  transition: width 0.3s var(--ease-out);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold-300); }
.nav-links a:hover::after, .nav-links a:focus-visible::after { width: 100%; }
.nav-links a.is-active { color: var(--gold-300); }
.nav-links a.is-active::after { width: 100%; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--ink-line-strong);
  color: var(--gold-300);
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 1px;
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; }
  .main-nav .nav-links {
    position: fixed;
    inset: 76px 0 0 0;
    flex-direction: column;
    background: var(--ink-950);
    padding: var(--sp-6) var(--sp-5);
    gap: var(--sp-4);
    font-size: 1.15rem;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s var(--ease-out), transform 0.25s var(--ease-out);
  }
  .main-nav.open .nav-links { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav .btn-outline.header-cta { display: none; }
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--sp-9);
  padding-bottom: var(--sp-8);
  isolation: isolate;
}
@media (max-width: 640px) {
  .hero { padding-top: var(--sp-7); padding-bottom: var(--sp-6); }
  .hero-inner { gap: var(--sp-3); }
  .hero-meta { margin-top: var(--sp-4); gap: var(--sp-3) var(--sp-4); }
}
.hero-canvas { position: absolute; inset: 0; z-index: -2; }
.cursor-glow {
  position: absolute;
  top: 0; left: 0;
  width: 460px; height: 460px;
  margin: -230px 0 0 -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,199,102,0.14), rgba(232,199,102,0) 70%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }
@media (hover: none) { .cursor-glow { display: none; } }
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse 70% 55% at 50% 12%, rgba(201, 162, 39, 0.14), transparent 60%),
    linear-gradient(180deg, var(--ink-950) 0%, var(--ink-900) 45%, var(--ink-900) 100%);
}
.hero-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: var(--sp-4); }
.hero h1 { font-size: var(--fs-display); max-width: 16ch; }
.hero h1 em { font-style: italic; color: var(--gold-300); }
.hero .lead { margin-inline: auto; }
.hero-ctas { display: flex; gap: var(--sp-3); flex-wrap: wrap; justify-content: center; margin-top: var(--sp-3); }
.hero-meta {
  display: flex;
  gap: var(--sp-5);
  flex-wrap: wrap;
  justify-content: center;
  margin-top: var(--sp-6);
  font-family: var(--face-stamp);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mist-dim);
}
.hero-meta-item { white-space: normal; }
.hero-meta-item strong { color: var(--gold-500); font-weight: 700; }
.hero-meta-sep { color: var(--gold-700); }
@media (max-width: 560px) {
  .hero-meta-sep { display: none; }
}

/* ---------- event strip ---------- */
.event-strip {
  border-top: 1px solid var(--ink-line);
  border-bottom: 1px solid var(--ink-line);
  padding: var(--sp-4) 0;
  background: var(--ink-950);
}
.event-strip ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-6);
  font-family: var(--face-body);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist-dim);
}
.event-strip li span { color: var(--gold-500); margin-right: 0.5em; }

/* ---------- section shells ---------- */
.section { padding-block: var(--sp-8); }
.section-head { max-width: 46rem; margin-bottom: var(--sp-6); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: var(--sp-2); }
.section-alt { background: var(--ink-850); }
@media (max-width: 640px) {
  .section { padding-block: var(--sp-6); }
  .section-head { margin-bottom: var(--sp-4); }
}

/* ---------- services grid ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--ink-line);
  border: 1px solid var(--ink-line);
}
@media (max-width: 860px) {
  .features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .features { grid-template-columns: 1fr; }
}
.feature-card {
  background: var(--ink-900);
  padding: var(--sp-5) var(--sp-4);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}
.feature-icon {
  width: 40px; height: 40px;
  color: var(--gold-500);
}
.feature-card h3 { font-size: 1.15rem; }
.feature-card p { color: var(--mist-dim); font-size: 0.94rem; }

/* ---------- how it works ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  counter-reset: step;
}
.step { position: relative; padding-top: var(--sp-4); border-top: 1px solid var(--ink-line-strong); }
.step-index {
  font-family: var(--face-stamp);
  font-size: 0.75rem;
  color: var(--gold-500);
  letter-spacing: 0.1em;
  display: block;
  margin-bottom: var(--sp-2);
}
.step h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.step p { color: var(--mist-dim); font-size: 0.94rem; }

/* ---------- about ---------- */
.about-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (max-width: 860px) {
  .about-layout { grid-template-columns: 1fr; gap: var(--sp-5); }
}
.about-intro .eyebrow { margin-bottom: var(--sp-2); }
.about-intro h2 { margin-bottom: var(--sp-4); }
.about-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.about-tags li {
  border: 1px solid var(--ink-line-strong);
  color: var(--gold-500);
  font-family: var(--face-stamp);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5em 0.9em;
  border-radius: 999px;
}
.about-copy {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding-top: var(--sp-2);
}
.about-copy p {
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 62ch;
}

/* ---------- gallery (reel) ---------- */
.reel {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  padding: var(--sp-5) var(--sp-2);
  margin: 0 calc(var(--sp-2) * -1);
  scrollbar-width: none;
}
.reel::-webkit-scrollbar { display: none; width: 0; height: 0; }
.reel-item {
  position: relative;
  flex: 0 0 auto;
  width: min(84vw, 680px);
  scroll-snap-align: center;
  scroll-snap-stop: always;
  border-radius: 2px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 24px 40px -20px rgba(0,0,0,0.65);
  border: 1px solid var(--ink-line-strong);
  transform: scale(0.8);
  opacity: 0.32;
  filter: blur(1.5px);
  transition: transform 0.5s var(--ease-out), opacity 0.5s var(--ease-out), filter 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out);
  will-change: transform;
}
.reel-item.is-focused {
  transform: scale(1);
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 30px 54px -18px rgba(201,162,39,0.28), 0 24px 40px -20px rgba(0,0,0,0.7);
}
.reel-item img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  background: var(--ink-800);
  transition: transform 0.6s var(--ease-out);
}
.reel-item:hover img { transform: scale(1.04); }
.gallery-note {
  margin-top: var(--sp-2);
  font-size: 0.85rem;
  color: var(--mist-dim);
  text-align: center;
}

/* ---------- pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: var(--sp-4);
  align-items: stretch;
}
.price-card {
  position: relative;
  background: var(--paper-100);
  color: var(--ink-on-paper);
  border-radius: var(--radius-card);
  padding: 0 var(--sp-4) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: 0 20px 34px -22px rgba(0,0,0,0.6);
}
.price-card::before {
  content: "";
  display: block;
  height: 12px;
  margin: 0 calc(var(--sp-4) * -1) var(--sp-3);
  background-image: radial-gradient(circle, var(--ink-900) 2.6px, transparent 2.8px);
  background-size: 16px 12px;
  background-position: top center;
  background-repeat: repeat-x;
}
.price-card.featured { outline: 2px solid var(--gold-500); outline-offset: -2px; transform: translateY(-10px); }
.price-flag {
  position: absolute;
  top: var(--sp-3);
  right: var(--sp-3);
  background: var(--gold-500);
  color: var(--ink-950);
  font-family: var(--face-stamp);
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3em 0.6em;
  transform: rotate(3deg);
}
.price-duration { font-family: var(--face-display); font-size: 1.5rem; font-weight: 600; }
.price-amount { font-family: var(--face-stamp); font-size: 1.7rem; font-weight: 700; letter-spacing: -0.01em; }
.price-amount sup { font-size: 0.9rem; font-weight: 400; color: var(--muted-on-paper); }
.price-includes { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.5em; font-size: 0.86rem; color: var(--ink-on-paper); }
.price-includes li { display: flex; gap: 0.55em; align-items: flex-start; }
.price-includes svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 0.15em; color: var(--gold-600); }
.price-card .btn { margin-top: auto; width: 100%; }
.price-card .btn-solid { background: var(--ink-900); color: var(--paper-100); }
.price-card .btn-solid:hover { background: var(--ink-700); }

.pricing-footnote {
  margin-top: var(--sp-5);
  padding: var(--sp-3) var(--sp-4);
  border: 1px dashed var(--ink-line-strong);
  font-size: 0.88rem;
  color: var(--mist-dim);
  display: flex;
  gap: 0.7em;
}
.pricing-footnote svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; margin-top: 0.15em; }

/* ---------- reviews ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
@media (max-width: 700px) {
  .testimonial-grid { grid-template-columns: 1fr; }
}
.testimonial {
  margin: 0;
  padding: var(--sp-5) var(--sp-4);
  border: 1px solid var(--ink-line);
}
.testimonial::before {
  content: "“";
  display: block;
  font-family: var(--face-display);
  font-size: 3.25rem;
  line-height: 0.6;
  color: var(--gold-700);
  margin-bottom: var(--sp-3);
}
.testimonial p {
  margin: 0;
  color: var(--mist);
  font-size: 1.02rem;
  line-height: 1.7;
  font-style: italic;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 48rem; margin-inline: auto; display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--ink-line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  font-family: var(--face-display);
  font-size: 1.1rem;
  color: #fbf6e9;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon { flex-shrink: 0; width: 22px; height: 22px; color: var(--gold-500); transition: transform 0.3s var(--ease-out); }
.faq-item[open] .faq-icon { transform: rotate(45deg); }
.faq-answer { padding: 0 0 var(--sp-4); color: var(--mist-dim); max-width: 60ch; }

/* ---------- booking / contact ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--sp-7);
  align-items: start;
}
@media (max-width: 900px) { .contact-layout { grid-template-columns: 1fr; } }

.booking-form {
  background: var(--ink-850);
  border: 1px solid var(--ink-line);
  padding: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-3); }
@media (max-width: 520px) { .form-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 0.5em; }
.field label { font-size: 0.82rem; letter-spacing: 0.03em; color: var(--mist); }
.field .req { color: var(--gold-300); }
.field input, .field select, .field textarea {
  background: var(--ink-900);
  border: 1px solid var(--ink-line-strong);
  color: #fbf6e9;
  padding: 0.85em 0.9em;
  font-family: var(--face-body);
  font-size: 0.96rem;
  min-height: 48px;
  border-radius: 1px;
}
.field textarea { min-height: 110px; resize: vertical; }
.field input::placeholder, .field textarea::placeholder { color: var(--mist-dim); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-500); }
.field-error {
  display: none;
  font-size: 0.8rem;
  color: var(--danger);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--danger); }
.field.invalid .field-error { display: block; }
.field.invalid .date-trigger { border-color: var(--danger); }

/* ---------- custom date picker ---------- */
.date-field { position: relative; }
.date-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6em;
  width: 100%;
  background: var(--ink-900);
  border: 1px solid var(--ink-line-strong);
  color: #fbf6e9;
  padding: 0.85em 0.9em;
  font-family: var(--face-body);
  font-size: 0.96rem;
  min-height: 48px;
  border-radius: 1px;
  cursor: pointer;
  text-align: left;
}
.date-trigger:hover { border-color: var(--gold-700); }
.date-trigger[aria-expanded="true"] { border-color: var(--gold-500); }
.date-trigger svg { width: 18px; height: 18px; color: var(--gold-500); flex-shrink: 0; }
.date-trigger-text { color: var(--mist-dim); }
.date-trigger-text.has-value { color: #fbf6e9; }

.date-panel {
  position: absolute;
  top: calc(100% + 0.6em);
  left: 0;
  z-index: 60;
  width: min(320px, 100%);
  background: var(--ink-850);
  border: 1px solid var(--ink-line-strong);
  box-shadow: 0 24px 40px -16px rgba(0, 0, 0, 0.6);
  padding: var(--sp-3);
}
.date-panel[hidden] { display: none; }
.date-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--sp-2);
}
.date-panel-title {
  font-family: var(--face-display);
  font-size: 1.15rem;
  color: #fbf6e9;
}
.date-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: none;
  border: 1px solid var(--ink-line-strong);
  color: var(--gold-500);
  border-radius: 50%;
  cursor: pointer;
}
.date-nav:hover { border-color: var(--gold-500); background: rgba(201, 162, 39, 0.08); }
.date-nav svg { width: 14px; height: 14px; }
.date-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 0.3rem;
}
.date-weekdays span {
  text-align: center;
  font-family: var(--face-stamp);
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--gold-700);
  padding-block: 0.3rem;
}
.date-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.date-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid transparent;
  color: var(--mist);
  font-family: var(--face-body);
  font-size: 0.85rem;
  border-radius: 50%;
  cursor: pointer;
}
.date-day:hover:not(:disabled) { background: rgba(201, 162, 39, 0.12); }
.date-day.is-today { border-color: var(--gold-700); color: var(--gold-300); }
.date-day.is-selected { background: var(--gold-500); color: var(--ink-950); font-weight: 700; }
.date-day.is-selected.is-today { border-color: var(--gold-500); }
.date-day:disabled { color: var(--ink-line-strong); cursor: not-allowed; }
.date-day-empty { visibility: hidden; }
.date-panel-footer {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-2);
  padding-top: var(--sp-2);
  border-top: 1px solid var(--ink-line);
}
.date-today {
  background: none;
  border: none;
  color: var(--gold-500);
  font-family: var(--face-body);
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  padding: 0.3em 0.6em;
}
.date-today:hover { color: var(--gold-300); text-decoration: underline; }
.date-today:disabled { color: var(--ink-line-strong); cursor: not-allowed; text-decoration: none; }

.form-summary {
  display: none;
  border: 1px solid var(--danger);
  background: rgba(224, 102, 90, 0.1);
  color: #ffd9d4;
  padding: var(--sp-3);
  font-size: 0.88rem;
}
.form-summary.show { display: block; }
.form-summary a { color: #ffd9d4; text-decoration: underline; }

.form-status {
  font-size: 0.9rem;
  padding: var(--sp-2) var(--sp-3);
  border-left: 3px solid var(--gold-500);
  display: none;
}
.form-status.show { display: block; }
.form-status.success { border-color: #6cbf8b; color: #cdeedb; }
.form-status.error { border-color: var(--danger); color: #ffd9d4; }

.contact-cards { display: flex; flex-direction: column; gap: var(--sp-3); }
.contact-card {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1px solid var(--ink-line);
  text-decoration: none;
  transition: border-color 0.25s, transform 0.25s var(--ease-out);
}
.contact-card:hover { border-color: var(--gold-500); transform: translateX(4px); }
.contact-card svg { width: 26px; height: 26px; color: var(--gold-500); flex-shrink: 0; }
.contact-card strong { display: block; color: #fbf6e9; font-family: var(--face-display); font-size: 1.05rem; }
.contact-card span { color: var(--mist-dim); font-size: 0.88rem; }

.location-note {
  margin-top: var(--sp-2);
  font-size: 0.85rem;
  color: var(--mist-dim);
  padding: var(--sp-3);
  border: 1px dashed var(--ink-line-strong);
}

/* ---------- footer ---------- */
.site-footer {
  background: var(--ink-950);
  border-top: 1px solid var(--ink-line);
  padding-block: var(--sp-6) var(--sp-5);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: var(--sp-6);
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-tag { color: var(--mist-dim); font-size: 0.9rem; margin-top: var(--sp-3); max-width: 32ch; }
.footer-col h4 {
  font-family: var(--face-body);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: var(--sp-2);
}
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6em; }
.footer-col a { text-decoration: none; color: var(--mist-dim); font-size: 0.9rem; }
.footer-col a:hover { color: var(--gold-300); }
.footer-bottom {
  margin-top: var(--sp-6);
  padding-top: var(--sp-4);
  border-top: 1px solid var(--ink-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--sp-2);
  font-size: 0.78rem;
  color: var(--mist-dim);
}

/* ---------- floating whatsapp ---------- */
.float-whatsapp {
  position: fixed;
  right: var(--sp-4);
  bottom: var(--sp-4);
  z-index: 90;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #2e7d5b;
  color: #f4fbf7;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 26px -8px rgba(0,0,0,0.6);
  transition: transform 0.25s var(--ease-out), background-color 0.25s;
}
.float-whatsapp:hover { transform: scale(1.06); background: #379068; }
.float-whatsapp svg { width: 26px; height: 26px; }

/* ---------- mobile sticky "book now" bar ---------- */
.mobile-book-bar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 0.75rem var(--sp-4);
  padding-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgba(6, 9, 18, 0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--ink-line);
  transform: translateY(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-book-bar.is-visible { transform: translateY(0); }
.mobile-book-bar .btn { width: 100%; }

@media (max-width: 860px) {
  .mobile-book-bar { display: block; }
  .float-whatsapp { bottom: calc(var(--sp-4) + 68px); }
}

/* ---------- reveal-on-scroll ----------
   Visible by default (safe fallback if JS never runs or errors). Only ever
   hidden pre-reveal when the `.js` class (set synchronously in <head>)
   confirms script.js is active — that way content can't get stuck invisible
   because of a slow/blocked script instead of a deliberate reveal state. */
[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(18px); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out); }
@media (prefers-reduced-motion: reduce) {
  .js [data-reveal] { opacity: 1; transform: none; }
}

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
