/* ============================================================
   Saint Sky Bar — Sky Bar Santorini
   Editorial-luxury Cycladic aesthetic
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, sans-serif;

  /* light theme (Cycladic whitewash) */
  --bg: #eef4f8;
  --bg-2: #f7fbfd;
  --surface: #ffffff;
  --ink: #122a38;
  --ink-soft: #4c6576;
  --ink-faint: #8aa1af;
  --line: rgba(18, 42, 56, 0.12);
  --line-soft: rgba(18, 42, 56, 0.07);
  --sky: #8ec6e6;      /* light Aegean */
  --sea: #2f80ab;      /* deeper sea */
  --sea-deep: #164a68;
  --sand: #c3a15a;     /* whisper of sunset gold */
  --scrim: linear-gradient(180deg, rgba(8,26,38,.28) 0%, rgba(8,26,38,.05) 30%, rgba(8,26,38,.12) 60%, rgba(8,26,38,.55) 100%);
  --shadow-soft: 0 18px 50px -22px rgba(18, 42, 56, 0.35);
  --shadow-card: 0 30px 70px -30px rgba(18, 42, 56, 0.45);

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

:root[data-theme="dark"] {
  --bg: #0a0e11;
  --bg-2: #0d1216;
  --surface: #12181d;
  --ink: #e9f3f8;
  --ink-soft: #a6c0cf;
  --ink-faint: #6d8b9c;
  --line: rgba(233, 243, 248, 0.14);
  --line-soft: rgba(233, 243, 248, 0.08);
  --sky: #93c9ea;
  --sea: #5aa9d0;
  --sea-deep: #bfe0f1;
  --sand: #d8b978;
  --scrim: linear-gradient(180deg, rgba(4,14,21,.45) 0%, rgba(4,14,21,.12) 35%, rgba(4,14,21,.25) 60%, rgba(4,14,21,.75) 100%);
  --shadow-soft: 0 18px 50px -22px rgba(0, 0, 0, 0.6);
  --shadow-card: 0 34px 80px -30px rgba(0, 0, 0, 0.7);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: clip; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  transition: background-color .6s var(--ease), color .6s var(--ease);
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---------- Shared type ---------- */
.kicker {
  font-size: .72rem; font-weight: 500; letter-spacing: .34em;
  text-transform: uppercase; color: var(--sea);
}
.kicker.light { color: rgba(255,255,255,.85); }
.section-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.6rem); line-height: 1.06;
  letter-spacing: .005em; color: var(--ink);
}
.section-head { margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head.center { text-align: center; }
.section-head .kicker { margin-bottom: 1.1rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color .5s var(--ease), backdrop-filter .5s var(--ease), border-color .5s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.2);
  border-bottom-color: var(--line-soft);
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.35rem clamp(1.25rem, 4vw, 3rem);
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
}
.brand { display: inline-flex; align-items: center; }
.brand-logo { height: 46px; width: auto; display: block; }
/* default (over hero): show white logo */
.brand-logo--dark { display: none; }
/* light theme, scrolled header → switch to dark logo */
.site-header.scrolled .brand-logo--light { display: none; }
.site-header.scrolled .brand-logo--dark { display: block; }
/* dark theme keeps the white logo even when scrolled */
:root[data-theme="dark"] .site-header.scrolled .brand-logo--light { display: block; }
:root[data-theme="dark"] .site-header.scrolled .brand-logo--dark { display: none; }
.site-header:not(.scrolled) .main-nav a,
.site-header:not(.scrolled) .header-controls { color: #fff; }
.main-nav { display: flex; gap: 2.4rem; }
.main-nav a {
  font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 400;
  position: relative; opacity: .9; transition: opacity .3s;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 1px; width: 0;
  background: currentColor; transition: width .4s var(--ease);
}
.main-nav a:hover { opacity: 1; }
.main-nav a:hover::after { width: 100%; }

.header-controls { display: flex; align-items: center; gap: 1.1rem; }
.lang-toggle {
  font-size: .74rem; letter-spacing: .12em; font-weight: 500;
  display: inline-flex; align-items: center; gap: .35em;
}
.lang-toggle .lang { opacity: .45; transition: opacity .3s; }
.lang-toggle .lang-sep { opacity: .3; }
.lang-toggle[data-active="en"] .lang.en,
.lang-toggle[data-active="el"] .lang.el { opacity: 1; }
.theme-toggle {
  display: inline-grid; place-items: center; width: 34px; height: 34px;
  border: 1px solid currentColor; border-radius: 50%; opacity: .8;
  transition: opacity .3s, transform .5s var(--ease), background-color .3s;
}
.theme-toggle:hover { opacity: 1; transform: rotate(18deg); }
.theme-toggle .ico-moon { display: none; }
:root[data-theme="dark"] .theme-toggle .ico-sun { display: none; }
:root[data-theme="dark"] .theme-toggle .ico-moon { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100svh; height: 100svh;
  display: flex; flex-direction: column; color: #fff; overflow: visible;
}
/* top: media + brand overlay, fills the space above the selector */
.hero-stage {
  position: relative; z-index: 1; flex: 1 1 auto; min-height: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 2.5rem 1.5rem;
}
/* media fills the WHOLE hero (behind the selector too); its own clip contains the blurred fill */
.hero-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
/* per-experience video: mobile fills (cover); crossfades on swap */
.hero-vid {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s var(--ease);
}
.hero-vid-blur { display: none; } /* only used on desktop as a blurred fill */
.hero-media.is-swapping .hero-vid { opacity: 0; }
.hero-scrim { position: absolute; inset: 0; background: var(--scrim); }
/* desktop / landscape: portrait video contained, blurred enlarged copy fills the sides */
@media (min-width: 768px) {
  .hero-vid-main { object-fit: contain; }
  .hero-vid-blur { display: block; object-fit: cover; filter: blur(30px) saturate(1.15); transform: scale(1.12); }
}

.hero-content { position: relative; z-index: 2; padding: 0 1.5rem; }
.hero-content .kicker { margin-bottom: 1.8rem; }
.hero-logo-wrap { margin: 0; }
.hero-logo {
  width: min(540px, 76vw); height: auto; margin: 0 auto;
  filter: drop-shadow(0 4px 44px rgba(0, 0, 0, 0.4));
}
.hero-sub {
  margin-top: 1.4rem; font-size: clamp(.85rem, 1.6vw, 1.05rem);
  letter-spacing: .22em; text-transform: uppercase; font-weight: 300;
  color: rgba(255,255,255,.85);
}
.hero-cta {
  margin-top: clamp(1.6rem, 4vw, 2.4rem); align-self: center;
  padding: .85rem 2.3rem; border: 1px solid rgba(255,255,255,.65); border-radius: 100px;
  color: #fff; font-family: inherit; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase;
  background: rgba(255,255,255,.05); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  transition: background-color .4s var(--ease), color .4s var(--ease), border-color .4s var(--ease);
}
.hero-cta:hover { background: #fff; color: #10222e; border-color: #fff; }

/* ---- experience selector (bottom of the hero screen) ---- */
.hero-selector {
  position: relative; z-index: 3;
  flex: 0 0 auto; background: var(--bg); color: var(--ink);
  border-top: 1px solid var(--line);
  padding: clamp(.75rem, 2.6vw, 1.1rem) clamp(.9rem, 3vw, 1.5rem) clamp(.7rem, 2.4vw, 1.1rem);
  display: flex; flex-direction: column; gap: clamp(.5rem, 1.8vw, .75rem);
  transition: background-color .6s var(--ease), color .6s var(--ease);
}
.selector-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px;
  background: var(--line);
  border: 1px solid var(--line); border-radius: 14px; overflow: hidden;
}
/* row 1: Cocktails + Sushi (span 3 each) · row 2: Shisha + Pastry + Location (span 2 each) */
.exp-tile { grid-column: span 2; }
.exp-tile:nth-child(1), .exp-tile:nth-child(2) { grid-column: span 3; }
.exp-tile {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .4rem;
  padding: clamp(.6rem, 2.6vw, 1rem) .5rem; background: var(--bg); color: var(--ink); cursor: pointer;
  transition: background-color .35s var(--ease), color .35s var(--ease);
}
.exp-tile:hover, .exp-tile.is-active { background: color-mix(in srgb, var(--ink) 8%, var(--bg)); }
.exp-tile.is-active { color: var(--sand); }
.exp-ico { line-height: 0; }
.exp-ico svg { width: 26px; height: 26px; display: block; }
.exp-label { font-size: .74rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 400; }
.exp-reserve {
  padding: .8rem 1rem; border: 1px solid var(--sand); border-radius: 14px; background: transparent;
  color: var(--sand); font-family: inherit; font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; cursor: pointer;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}
.exp-reserve:hover { background: var(--sand); color: #0a0e11; }

/* desktop: selector becomes a horizontal bar pinned at the hero's bottom */
@media (min-width: 768px) {
  .hero-selector {
    /* hangs on the hero's bottom edge: top half over the media, bottom half below */
    position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 50%); z-index: 5;
    flex-direction: row; align-items: center; gap: clamp(1.5rem, 3vw, 3rem);
    max-width: var(--maxw); width: calc(100% - clamp(2rem, 6vw, 4rem));
    margin: 0;
    padding: 1.2rem clamp(1.25rem, 4vw, 3rem);
    border: 1px solid var(--line);
    border-radius: 26px;
    box-shadow: 0 22px 50px -24px rgba(0, 0, 0, .4);
  }
  .selector-grid {
    flex: 1; grid-template-columns: repeat(5, 1fr); gap: 0;
    background: transparent; border: none; border-radius: 0;
  }
  .exp-tile,
  .exp-tile:nth-child(1), .exp-tile:nth-child(2) { grid-column: auto; }
  .exp-tile {
    padding: .7rem .5rem; background: transparent;
    border-right: 1px solid var(--line);
  }
  .exp-tile:last-child { border-right: none; }
  .exp-ico svg { width: 26px; height: 26px; }
  .exp-reserve { white-space: nowrap; padding: .95rem 2.1rem; }
}
.scroll-cue {
  position: absolute; bottom: 2.2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .8rem;
  font-size: .66rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255,255,255,.8);
}
.scroll-line { width: 1px; height: 46px; background: rgba(255,255,255,.6); position: relative; overflow: hidden; }
.scroll-line::after {
  content: ""; position: absolute; inset: 0; background: #fff;
  animation: scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse { 0% { transform: translateY(-100%); } 60%,100% { transform: translateY(100%); } }

/* ============================================================
   WELCOME
   ============================================================ */
.welcome {
  max-width: 900px; margin: 0 auto; text-align: center;
  padding: clamp(6rem, 14vw, 11rem) 1.5rem clamp(4rem, 8vw, 6rem);
}
.welcome .kicker { margin-bottom: 2rem; }
.welcome-line {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2rem, 5.2vw, 4rem); line-height: 1.12; letter-spacing: .005em;
  color: var(--ink);
}
.welcome-body {
  margin-top: 2rem; max-width: 620px; margin-left: auto; margin-right: auto;
  color: var(--ink-soft); font-size: clamp(1rem, 1.5vw, 1.15rem);
}
.rule { display: block; width: 60px; height: 1px; background: var(--sand); margin: 3.5rem auto 0; }

/* ============================================================
   SHOWCASE — fanned cards
   ============================================================ */
.showcase { padding: clamp(4rem, 8vw, 7rem) clamp(1.25rem, 4vw, 3rem); }
.coverflow { position: relative; max-width: var(--maxw); margin: 0 auto; padding-top: 1rem; overflow: hidden; }
.cf-stage {
  position: relative; height: 560px;
  display: flex; align-items: center; justify-content: center;
  touch-action: pan-y; cursor: grab;
}
.cf-stage:active { cursor: grabbing; }
.cf-card {
  position: absolute; top: 50%; left: 50%;
  width: clamp(240px, 26vw, 320px); aspect-ratio: 3 / 4;
  border-radius: 16px; overflow: hidden; cursor: pointer; background: var(--surface);
  transform-origin: center center;
  -webkit-user-select: none; user-select: none;
  transition: transform .7s var(--ease), opacity .7s var(--ease),
              filter .7s var(--ease), box-shadow .7s var(--ease);
  will-change: transform, opacity, filter;
}
/* image is transparent to the pointer so drags/clicks land on the card (no native image-drag) */
.cf-card img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; user-select: none; }
.cf-card figcaption { pointer-events: none; }
.cf-card figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.8rem 1rem 1.3rem; text-align: center;
  font-family: var(--font-display); font-size: 1.3rem; letter-spacing: .04em; color: #fff;
  background: linear-gradient(180deg, transparent, rgba(6, 20, 30, 0.8));
  opacity: 0; transform: translateY(10px);
  transition: opacity .5s var(--ease) .15s, transform .5s var(--ease) .15s;
}

/* distance-based stack: centre in front & larger, 3 cards tucked BEHIND on each side */
.cf-card[data-dist="0"] {
  transform: translate(-50%, -50%) scale(1.14); opacity: 1; z-index: 6;
  filter: none; box-shadow: var(--shadow-card); cursor: default;
}
.cf-card[data-dist="0"] figcaption { opacity: 1; transform: translateY(0); }
.cf-card[data-dist="1"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 53%)) scale(0.86);
  opacity: 0.74; z-index: 4; filter: blur(2.5px) saturate(.92); box-shadow: var(--shadow-soft);
}
.cf-card[data-dist="2"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 92%)) scale(0.74);
  opacity: 0.48; z-index: 3; filter: blur(4.5px) saturate(.88);
}
.cf-card[data-dist="3"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 128%)) scale(0.62);
  opacity: 0.28; z-index: 2; filter: blur(6.5px) saturate(.82);
}
/* extra cards wait off-stage behind dist-3, invisible, until they rotate in */
.cf-card[data-dist="hidden"] {
  transform: translate(-50%, -50%) translateX(calc(var(--side) * 150%)) scale(0.55);
  opacity: 0; z-index: 1; pointer-events: none;
}
.cf-card[data-dist="1"]:hover { opacity: 0.92; filter: blur(1px); }

/* dots — minimal; active elongates into a soft gold bar */
.cf-dots { display: flex; justify-content: center; align-items: center; gap: .6rem; margin-top: 2.4rem; }
.cf-dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--ink-faint); opacity: .35;
  cursor: pointer; transition: width .45s var(--ease), opacity .4s, background-color .4s;
}
.cf-dot:hover { opacity: .6; }
.cf-dot.is-active { width: 24px; opacity: 1; background: var(--sand); }

/* ============================================================
   SERVICES — tabs + alternating rows
   ============================================================ */
.services { padding: clamp(4rem, 9vw, 8rem) clamp(1.25rem, 4vw, 3rem); background: var(--bg-2); }
.services .section-head, .services .tabs, .services .panels { max-width: var(--maxw); margin-left: auto; margin-right: auto; }
.tabs {
  display: flex; justify-content: center; gap: clamp(1.5rem, 5vw, 3.75rem);
  border-bottom: 1px solid var(--line); margin-bottom: clamp(1.25rem, 3vw, 2rem);
}
.tab {
  position: relative; padding: 0 .2rem 1.1rem; font-size: .82rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--ink-faint); transition: color .4s;
  display: inline-flex; flex-direction: column; align-items: center; gap: .75rem;
}
.tab-ico { line-height: 0; }
.tab-ico svg { width: 20px; height: 20px; display: block; }
.tab::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px;
  background: var(--sand); transform: scaleX(0); transform-origin: center;
  transition: transform .45s var(--ease);
}
.tab:hover { color: var(--ink-soft); }
.tab.is-active { color: var(--ink); }
.tab.is-active::after { transform: scaleX(1); }

.panel { display: none; }
.panel.is-active { display: block; }

/* cinematic panel + floating frosted-glass card */
.svc-cinema {
  position: relative; overflow: hidden; border-radius: 18px;
  min-height: clamp(440px, 64vh, 640px);
  display: flex; align-items: flex-end;
  box-shadow: var(--shadow-card);
}
.svc-slides { position: absolute; inset: 0; }
.svc-slide {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.6s var(--ease);
  will-change: opacity, transform;
}
.svc-slide.is-active { opacity: 1; animation: svcKen 7s ease-out forwards; }
@keyframes svcKen { from { transform: scale(1.06); } to { transform: scale(1.15); } }
.svc-cinema::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, rgba(6, 20, 30, 0.62) 0%, rgba(6, 20, 30, 0.18) 46%, rgba(6, 20, 30, 0) 68%);
}
.svc-glass {
  position: relative; z-index: 2; margin: clamp(1.25rem, 3.5vw, 3rem);
  max-width: 360px; padding: clamp(1.3rem, 2.2vw, 1.9rem);
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.4); backdrop-filter: blur(18px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.24); border-radius: 16px;
  box-shadow: 0 24px 70px -24px rgba(0, 0, 0, 0.55); color: #fff;
}
.svc-index {
  font-family: var(--font-display); font-style: italic; font-weight: 400;
  font-size: 1.9rem; line-height: 1; color: var(--sand); margin-bottom: .5rem;
}
.svc-glass h3 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem); line-height: 1.1; margin-bottom: .7rem; color: #fff;
}
.svc-glass p { color: rgba(255, 255, 255, 0.9); font-size: .92rem; line-height: 1.55; margin-bottom: 1.1rem; }
.svc-chips { list-style: none; display: flex; flex-wrap: wrap; gap: .6rem; }
.svc-chips li {
  font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 400;
  padding: .55rem .95rem; border: 1px solid rgba(255, 255, 255, 0.38); border-radius: 100px;
  color: #fff; transition: background-color .3s, border-color .3s;
}
.svc-chips li:hover { background: rgba(255, 255, 255, 0.16); border-color: rgba(255, 255, 255, 0.6); }

/* long-press peek (touch): hide the glass to reveal the dish behind it */
.svc-glass { transition: opacity .5s var(--ease), transform .5s var(--ease); -webkit-touch-callout: none; -webkit-user-select: none; user-select: none; }
.svc-cinema::after { transition: opacity .5s var(--ease); }
.svc-cinema.is-peeking .svc-glass { opacity: 0; transform: scale(.96) translateY(10px); pointer-events: none; }
.svc-cinema.is-peeking::after { opacity: 0; }

/* ============================================================
   REVIEWS — minimal testimonial slider
   ============================================================ */
.reviews { padding: clamp(5rem, 10vw, 8rem) clamp(1.25rem, 4vw, 3rem); text-align: center; }
.reviews .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.reviews-slider { position: relative; max-width: 760px; margin: 0 auto; min-height: clamp(200px, 40vw, 230px); }
.review {
  position: absolute; inset: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
  opacity: 0; transition: opacity 1s var(--ease); pointer-events: none;
}
.review.is-active { opacity: 1; pointer-events: auto; }
.review-stars { color: var(--sand); letter-spacing: .35em; font-size: .95rem; padding-left: .35em; }
.review-quote {
  font-family: var(--font-display); font-weight: 300; font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2.3rem); line-height: 1.32; color: var(--ink);
  margin: 0; max-width: 680px;
}
.review-name { font-style: normal; font-size: .74rem; letter-spacing: .24em; text-transform: uppercase; color: var(--ink-soft); }
.review-dots { display: flex; justify-content: center; align-items: center; gap: .6rem; margin-top: clamp(1.6rem, 3vw, 2.4rem); }
.rv-dot {
  width: 6px; height: 6px; border-radius: 100px; background: var(--ink-faint); opacity: .35;
  cursor: pointer; border: none; padding: 0; transition: width .45s var(--ease), opacity .4s, background-color .4s;
}
.rv-dot:hover { opacity: .6; }
.rv-dot.is-active { width: 24px; opacity: 1; background: var(--sand); }

/* ============================================================
   RESERVE — scroll reveal (full image → form rises to cover it)
   ============================================================ */
.reserve-scroll { position: relative; height: 200svh; }
.reserve-stage { position: sticky; top: 0; height: 100svh; overflow: hidden; }
.reserve-photo { position: absolute; inset: 0; will-change: transform; }
.reserve-photo img { width: 100%; height: 100%; object-fit: cover; }
.reserve-photo-scrim {
  position: absolute; inset: 0; opacity: 0;
  background: linear-gradient(180deg, rgba(6, 20, 30, .15), rgba(6, 20, 30, .7));
}
.reserve-panel {
  position: absolute; inset: 0; z-index: 2;
  background: var(--bg); color: var(--ink);
  transform: translateY(100%); will-change: transform;
  display: flex; align-items: center; justify-content: center; overflow-y: auto;
}
.reserve-panel-inner {
  width: 100%; max-width: 560px;
  padding: clamp(2rem, 7vw, 4rem) clamp(1.5rem, 6vw, 3rem);
}
.reserve-panel-inner .kicker { margin-bottom: 1rem; }
.reserve-panel-inner .section-title { margin-bottom: .6rem; }
.reserve-panel-inner .contact-sub { margin-bottom: clamp(1.4rem, 4vw, 2.2rem); }

/* ============================================================
   CONTACT (form styles reused by the reserve panel)
   ============================================================ */
.contact { padding: clamp(5rem, 10vw, 9rem) clamp(1.25rem, 4vw, 3rem); }
.contact-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2.5rem, 7vw, 6rem); align-items: start;
}
.contact-intro .kicker { margin-bottom: 1.1rem; }
.contact-sub { margin: 1.2rem 0 2.6rem; color: var(--ink-soft); font-size: 1.1rem; max-width: 40ch; }

.contact-form { display: flex; flex-direction: column; gap: 1.5rem; max-width: 520px; }
.field-row { display: flex; gap: 1.5rem; }
.field-row .field { flex: 1; }
.field { position: relative; }
.field input, .field textarea {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .7rem 0; resize: none; transition: border-color .4s;
}
.field textarea { line-height: 1.6; }
.field input[type="number"] { -moz-appearance: textfield; appearance: textfield; }
.field input[type="number"]::-webkit-inner-spin-button,
.field input[type="number"]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
.field input:focus, .field textarea:focus { outline: none; border-bottom-color: var(--sea); }
.field label {
  position: absolute; left: 0; top: .7rem; color: var(--ink-faint);
  font-size: 1rem; letter-spacing: .02em; pointer-events: none;
  transition: transform .35s var(--ease), color .35s, font-size .35s;
}
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.5rem); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sea);
}
/* select field: same underline treatment, label sits permanently raised */
.field select {
  width: 100%; background: transparent; border: none; border-bottom: 1px solid var(--line);
  color: var(--ink); font-family: inherit; font-size: 1rem; font-weight: 300;
  padding: .7rem 0; appearance: none; -webkit-appearance: none; cursor: pointer;
  transition: border-color .4s; border-radius: 0;
}
.field select:focus { outline: none; border-bottom-color: var(--sea); }
.field select:invalid { color: var(--ink-faint); }        /* placeholder state */
.field select option { color: #1a1a1a; background: #fff; } /* readable native menu in both themes */
.field--select label {
  transform: translateY(-1.5rem); font-size: .68rem; letter-spacing: .18em;
  text-transform: uppercase; color: var(--sea);
}
.field-caret { position: absolute; right: .1rem; top: .85rem; pointer-events: none; color: var(--ink-faint); font-size: .8rem; }
.btn {
  align-self: flex-start; margin-top: .6rem;
  padding: .95rem 2.4rem; border: 1px solid var(--ink);
  font-size: .78rem; letter-spacing: .22em; text-transform: uppercase; color: var(--ink);
  position: relative; overflow: hidden; transition: color .5s var(--ease);
}
.btn::before {
  content: ""; position: absolute; inset: 0; background: var(--ink); z-index: -1;
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease);
}
.btn:hover { color: var(--bg); }
.btn:hover::before { transform: scaleX(1); }
.form-success { color: var(--sea); font-size: .95rem; letter-spacing: .04em; }

.contact-info { display: flex; flex-direction: column; gap: 1.8rem; }
.contact-img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 12px; box-shadow: var(--shadow-soft); margin-bottom: .6rem; }
.info-label { font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; color: var(--sea); margin-bottom: .35rem; }
.info-value { font-size: 1.05rem; color: var(--ink); }
.info-value a { transition: color .3s; }
.info-value a:hover { color: var(--sea); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { border-top: 1px solid var(--line); padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 3rem); text-align: center; }
.footer-info {
  max-width: var(--maxw); margin: 0 auto clamp(2.5rem, 5vw, 4rem);
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1.5rem, 4vw, 3rem);
  text-align: left; padding-bottom: clamp(2rem, 4vw, 3rem); border-bottom: 1px solid var(--line);
}
.footer-info .info-block { margin: 0; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.footer-brand .brand-logo { height: 54px; }
.footer-brand .brand-logo--light { display: none; }
.footer-brand .brand-logo--dark { display: block; }
:root[data-theme="dark"] .footer-brand .brand-logo--light { display: block; }
:root[data-theme="dark"] .footer-brand .brand-logo--dark { display: none; }
.footer-tag { font-size: .74rem; letter-spacing: .28em; text-transform: uppercase; color: var(--sea); }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: .76rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); transition: color .3s; }
.footer-nav a:hover { color: var(--ink); }
.footer-rights { font-size: .72rem; letter-spacing: .1em; color: var(--ink-faint); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity 1s var(--ease), transform 1s var(--ease); }
[data-reveal="left"] { transform: translateX(-46px); }
[data-reveal="right"] { transform: translateX(46px); }
[data-reveal].in-view { opacity: 1; transform: none; }

/* page-load stagger (hero) */
.reveal-load { opacity: 0; transform: translateY(24px); animation: revealUp 1.2s var(--ease) forwards; }
.reveal-load.d1 { animation-delay: .2s; }
.reveal-load.d2 { animation-delay: .45s; }
.reveal-load.d3 { animation-delay: .8s; }
.reveal-load.d4 { animation-delay: 1.15s; }
@keyframes revealUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .hero-img { animation: none; }
  [data-reveal] { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { order: -1; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }

  /* coverflow: smaller cards, show 3 on mobile */
  .cf-stage { height: 480px; }
  .cf-card { width: min(66vw, 300px); }
  .cf-card[data-dist="1"] { transform: translate(-50%, -50%) translateX(calc(var(--side) * 42%)) scale(0.82); }
  .cf-card[data-dist="2"], .cf-card[data-dist="3"] { opacity: 0; pointer-events: none; }
}

@media (max-width: 680px) {
  /* 5 tabs shrink to fit the phone width in one row */
  .tabs { gap: 0; }
  .tab { flex: 1 1 0; min-width: 0; padding: 0 .05rem 1rem; font-size: .56rem; letter-spacing: .03em; gap: .5rem; }
  .tab-ico svg { width: 21px; height: 21px; }

  /* full-width, taller picture that comes right up under the tabs */
  .svc-cinema { width: 100vw; margin-left: calc(50% - 50vw); border-radius: 0; min-height: 70vh; }
  /* much smaller glass card */
  .svc-glass { max-width: 235px; margin: .9rem; padding: 1rem 1.15rem; }
  .svc-index { font-size: 1.6rem; margin-bottom: .3rem; }
  .svc-glass h3 { font-size: 1.25rem; margin-bottom: .45rem; }
  .svc-glass p { font-size: .78rem; line-height: 1.45; margin-bottom: 0; }
  .svc-chips { display: none; } /* hidden on mobile — long-press the card to see the dish */
  .field-row { flex-direction: column; gap: 1.5rem; }
  .header-inner { padding: 1rem 1.25rem; }
  .wordmark { font-size: 1.25rem; }
  .footer-nav { flex-wrap: wrap; justify-content: center; gap: 1.2rem; }
  .footer-info { grid-template-columns: 1fr 1fr; gap: 1.5rem 1.2rem; }

  /* full-screen showcase cards on phones */
  .coverflow { width: 100vw; margin-left: calc(50% - 50vw); padding-top: 0; }
  .cf-stage { height: 82vh; }
  .cf-card { width: 100vw; height: 82vh; aspect-ratio: auto; border-radius: 0; }
  /* all cards sit centred & full-bleed; only the active one is visible → clean crossfade */
  .cf-card[data-dist="0"] { transform: translate(-50%, -50%) scale(1); }
  .cf-card[data-dist="1"],
  .cf-card[data-dist="2"],
  .cf-card[data-dist="3"],
  .cf-card[data-dist="hidden"] { transform: translate(-50%, -50%) scale(1); opacity: 0; filter: none; pointer-events: none; }
  .cf-card figcaption { font-size: 1.6rem; padding: 3rem 1.4rem 2.2rem; }
  .cf-dots { margin-top: 1.6rem; }
}
