/* ==========================================================================
   SMOCLOCK — Shisha Lounge, Paphos
   Global stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Reset & base
   3.  Typography helpers
   4.  Layout helpers
   5.  Buttons & links
   6.  Ornaments
   7.  Ambient smoke background
   8.  Loader
   9.  Header & navigation
   10. Mobile navigation overlay
   11. Footer
   12. Reveal animations
   13. Home page
   14. Menu page
   15. Reserve page
   16. Reduced-motion & print
   ========================================================================== */

/* 1. Design tokens ========================================================= */
:root {
  --bg:      #0a140e;
  --bg-2:    #0f1e15;
  --bg-3:    #0b1a12;
  --panel:   #10231a;
  --gold:    #c7a25c;
  --gold-2:  #e3c483;
  --cream:   #efe6d4;
  --muted:   #92a48d;
  --line:    rgba(199, 162, 92, 0.20);

  --font-display: 'Bodoni Moda', Georgia, serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Jost', system-ui, sans-serif;

  --header-h: clamp(64px, 8vw, 92px);
  --wrap:     1120px;
  --ease:     cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* 2. Reset & base ========================================================== */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

::selection { background: rgba(199, 162, 92, 0.32); color: #fff; }

:focus-visible { outline: 2px solid var(--gold-2); outline-offset: 3px; }

/* 3. Typography helpers ==================================================== */
.eyebrow {
  margin: 0;
  font-weight: 500;
  font-size: clamp(11px, 1.3vw, 13px);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}

.display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1;
  color: var(--cream);
}
.display em { font-style: italic; color: var(--gold-2); }

.lead {
  margin: 0;
  color: var(--muted);
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.75;
}

/* 4. Layout helpers ======================================================== */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; }

.section { padding: clamp(70px, 10vw, 130px) clamp(24px, 6vw, 80px); }
.section--bg2 { background: var(--bg-2); }

.page { animation: pageIn 0.6s var(--ease) both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* 5. Buttons & links ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 15px 32px;
  border-radius: 2px;
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.btn--primary { background: var(--gold); color: #0e1c14; }
.btn--primary:hover { background: var(--gold-2); }
.btn--ghost { background: transparent; color: var(--gold-2); border-color: var(--gold); }
.btn--ghost:hover { background: rgba(199, 162, 92, 0.12); border-color: var(--gold-2); }

.link-underline {
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--gold-2);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
  transition: border-color 0.3s ease;
}
.link-underline:hover { border-color: var(--gold-2); }

/* 6. Ornaments ============================================================= */
.ornament { color: var(--gold); }

/* 7. Ambient smoke background ============================================== */
.smoke {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.smoke::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 60% at 82% 6%, rgba(199, 162, 92, 0.06), transparent 60%),
    radial-gradient(70% 60% at 8% 92%, rgba(30, 80, 55, 0.12), transparent 60%);
}
.smoke span {
  position: absolute;
  border-radius: 50%;
  filter: blur(30px);
}
.smoke span:nth-child(1) { width: 62vmax; height: 62vmax; left: -12vmax; top: 18vmax;
  background: radial-gradient(circle, rgba(185, 205, 190, 0.05), transparent 60%);
  animation: drift 28s ease-in-out infinite; }
.smoke span:nth-child(2) { width: 52vmax; height: 52vmax; right: -10vmax; top: -12vmax;
  background: radial-gradient(circle, rgba(199, 162, 92, 0.05), transparent 60%);
  animation: drift2 36s ease-in-out infinite; }
.smoke span:nth-child(3) { width: 46vmax; height: 46vmax; left: 38vw; bottom: -16vmax;
  background: radial-gradient(circle, rgba(160, 190, 175, 0.045), transparent 62%);
  animation: drift 44s ease-in-out infinite 6s; }

@keyframes drift  { 0% { transform: translate3d(0,0,0) scale(1); opacity: 0; } 22% { opacity: .6; } 100% { transform: translate3d(6%,-16%,0) scale(1.35); opacity: 0; } }
@keyframes drift2 { 0% { transform: translate3d(0,0,0) scale(1); opacity: 0; } 28% { opacity: .5; } 100% { transform: translate3d(-9%,-20%,0) scale(1.4); opacity: 0; } }

/* 8. Loader ================================================================ */
.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3.4vw, 30px);
  background: var(--bg);
  transition: opacity 0.7s ease, visibility 0.7s ease;
}
.loader.is-hidden { opacity: 0; visibility: hidden; }
.loader__mark { height: clamp(66px, 9vw, 104px); width: auto; animation: markIn 1s var(--ease) both; }
.loader__bar { position: relative; width: clamp(150px, 26vw, 210px); height: 1px; background: rgba(199, 162, 92, 0.16); overflow: hidden; }
.loader__bar::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, transparent, var(--gold-2), transparent); animation: barSlide 1.4s ease-in-out infinite; }
.loader__label { margin: 0; font-weight: 500; font-size: clamp(10px, 1.2vw, 12px); letter-spacing: 0.36em; text-transform: uppercase; color: var(--gold); animation: fadeIn 1.1s ease 0.35s both; }

@keyframes markIn  { from { opacity: 0; transform: translateY(12px) scale(0.94); } to { opacity: 1; transform: none; } }
@keyframes barSlide { from { transform: translateX(-100%); } to { transform: translateX(100%); } }
@keyframes fadeIn  { from { opacity: 0; } to { opacity: 1; } }

/* 9. Header & navigation =================================================== */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: clamp(13px, 1.8vw, 19px) clamp(16px, 4vw, 44px);
  background: linear-gradient(to bottom, rgba(6, 12, 9, 0.82), rgba(6, 12, 9, 0));
  transition: background 0.4s ease;
}
.header.is-scrolled { background: rgba(7, 12, 9, 0.95); }

.header__logo { display: flex; align-items: center; background: none; border: 0; padding: 0; }
.header__logo img { height: clamp(40px, 4.6vw, 56px); width: auto; }

.nav { display: flex; align-items: center; gap: clamp(15px, 2.4vw, 30px); }
.nav__links { display: flex; align-items: center; gap: clamp(15px, 2.4vw, 30px); }
.nav__link {
  position: relative;
  background: none;
  border: 0;
  padding: 6px 1px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(11px, 1.35vw, 13px);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav__link:hover { color: var(--gold-2); }
.nav__link[aria-current="page"]::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -3px;
  height: 1px;
  background: var(--gold);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  padding: 11px 8px;
  background: none;
  border: 0;
}
.nav__toggle span { display: block; height: 1.5px; width: 100%; background: var(--cream); }
.nav__toggle span:last-child { width: 64%; background: var(--gold); }

@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
}

/* 10. Mobile navigation overlay =========================================== */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 26px;
  background: rgba(7, 13, 10, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  visibility: hidden;
  opacity: 0;
}
.mobile-nav.is-open { visibility: visible; opacity: 1; }
.mobile-nav__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 46px; height: 46px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  font-size: 24px;
  line-height: 1;
}
.mobile-nav__logo { height: 76px; width: auto; margin-bottom: 10px; }
.mobile-nav__link {
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 10vw, 48px);
  color: var(--cream);
  text-decoration: none;
  transition: color 0.25s ease;
}
.mobile-nav__link:hover { color: var(--gold-2); }
.mobile-nav__ig {
  margin-top: 16px;
  font-family: var(--font-sans);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 12px;
  color: var(--gold-2);
  text-decoration: none;
}
/* Staggered entrance for overlay items (applied when open) */
.mobile-nav.is-open [data-stagger] { animation: navItemIn 0.6s var(--ease) both; }
.mobile-nav.is-open [data-stagger]:nth-child(2) { animation-delay: 0.08s; }
.mobile-nav.is-open [data-stagger]:nth-child(3) { animation-delay: 0.16s; }
.mobile-nav.is-open [data-stagger]:nth-child(4) { animation-delay: 0.24s; }
.mobile-nav.is-open [data-stagger]:nth-child(5) { animation-delay: 0.32s; }
@keyframes navItemIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* 11. Footer =============================================================== */
.footer {
  position: relative;
  z-index: 1;
  background: var(--bg-3);
  border-top: 1px solid var(--line);
  padding: clamp(50px, 7vw, 90px) clamp(24px, 6vw, 80px) 38px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
}
.footer__brand { display: flex; flex-direction: column; gap: 12px; }
.footer__wordmark { font-family: var(--font-display); font-weight: 500; font-size: 20px; letter-spacing: 0.3em; }
.footer__tag { margin: 0; max-width: 240px; font-family: var(--font-serif); font-style: italic; font-size: 16px; color: var(--muted); }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__heading { margin: 0 0 4px; font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.footer__col p, .footer__col a { margin: 0; font-size: 13.5px; color: var(--muted); text-decoration: none; }
.footer__col a:hover, .footer__brand a:hover { color: var(--gold-2); }
.footer__ig { margin-top: 4px; font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.1em; color: var(--gold-2); text-decoration: none; }
.footer__bar {
  max-width: var(--wrap);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
}

/* 12. Reveal animations =================================================== */
[data-reveal],
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.85s ease, transform 0.85s var(--ease);
  will-change: opacity, transform;
}
[data-reveal].is-in,
[data-reveal-group] > *.is-in { opacity: 1; transform: none; }
.no-js [data-reveal],
.no-js [data-reveal-group] > * { opacity: 1; transform: none; }

/* Main content sits above the ambient smoke background
   (header z-60 and loader z-200 are already fixed with their own stacking). */
.page { position: relative; z-index: 1; }

/* ==========================================================================
   13. Home page
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.12);
  will-change: transform;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 90% at 50% 32%, rgba(6, 14, 10, 0.2), rgba(6, 12, 9, 0.82) 68%, rgba(5, 10, 8, 0.97));
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 1%, transparent 42%);
}
.hero__inner {
  position: relative;
  z-index: 2;
  padding: 0 24px;
  max-width: 940px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 3vw, 26px);
}
.hero__title { font-size: clamp(44px, 8.6vw, 112px); line-height: 0.98; }
.hero__text { max-width: 530px; }
.hero__actions { display: flex; gap: 14px; width: 100%; max-width: 480px; margin: 6px auto 0; }
.hero__actions .btn { flex: 1 1 0; min-width: 0; }              /* equal width */
@media (max-width: 560px) {
  .hero__actions { flex-direction: column; max-width: 360px; } /* stack, full width */
  .hero__actions .btn { flex: 0 0 auto; width: 100%; }
}

/* The Room */
.room__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
}
.room__figure { position: relative; }
.room__frame { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px; }
.room__frame img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.room__figure:hover .room__frame img { transform: scale(1.05); }
.room__figure::after { content: ""; position: absolute; inset: 14px; border: 1px solid var(--line); pointer-events: none; }
.room__body { display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.room__title { font-family: var(--font-serif); font-weight: 600; font-size: clamp(30px, 5vw, 54px); line-height: 1.04; margin: 0; color: var(--cream); }
.room__text { margin: 0; max-width: 520px; color: var(--muted); font-size: clamp(14px, 1.55vw, 16.5px); line-height: 1.8; }

/* Quote */
.quote {
  position: relative;
  min-height: 72vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.quote__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.quote::before { content: ""; position: absolute; inset: 0; background: radial-gradient(110% 90% at 50% 50%, rgba(6, 12, 9, 0.42), rgba(6, 12, 9, 0.86)); }
.quote::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, var(--bg) 1%, transparent 30%), linear-gradient(to bottom, var(--bg) 1%, transparent 30%); }
.quote__inner { position: relative; z-index: 2; padding: 0 24px; max-width: 820px; display: flex; flex-direction: column; align-items: center; gap: 18px; }
.quote__text { margin: 0; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: clamp(30px, 5.6vw, 66px); line-height: 1.05; color: var(--cream); }
.quote__rule { width: 60px; height: 1px; background: var(--gold); }
.quote__sub { margin: 0; max-width: 460px; color: var(--muted); font-size: clamp(13px, 1.5vw, 16px); line-height: 1.7; }

/* Gallery */
.gallery__head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; margin-bottom: clamp(34px, 5vw, 56px); }
.gallery__title { margin: 0; max-width: 600px; font-family: var(--font-serif); font-weight: 600; font-size: clamp(28px, 4.6vw, 50px); line-height: 1.05; color: var(--cream); }
.gallery__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 10px; }
.gallery__tile { overflow: hidden; aspect-ratio: 1 / 1; border-radius: 2px; }
.gallery__tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.gallery__tile:hover img { transform: scale(1.07); }
.gallery__follow { text-align: center; margin-top: clamp(28px, 4vw, 44px); }

/* Call to action */
.cta { text-align: center; }
.cta__inner { max-width: 640px; margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.cta__title { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(30px, 5.4vw, 60px); line-height: 1.02; color: var(--cream); }
.cta__text { margin: 0; color: var(--muted); font-size: clamp(14px, 1.55vw, 16.5px); line-height: 1.7; }
.cta__hours { margin: 2px 0 0; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; font-size: 13px; color: var(--gold-2); }
.cta__addr { margin: 10px 0 0; font-size: 13.5px; color: var(--muted); }

/* ==========================================================================
   14. Menu page
   ========================================================================== */
.menu-page { padding: clamp(116px, 15vh, 172px) clamp(20px, 5vw, 40px) clamp(70px, 10vw, 120px); }
.menu-wrap { max-width: 820px; margin: 0 auto; }
.menu-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; }
.menu-head h1 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(44px, 8vw, 92px); line-height: 1; color: var(--cream); }
.menu-head__note { margin: 0; font-size: 13px; color: var(--muted); }

.menu-tabs {
  position: sticky;
  top: 80px;
  z-index: 30;
  width: fit-content;
  max-width: 100%;
  margin: clamp(20px, 3vw, 34px) auto 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  padding: 8px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
}
@media (min-width: 561px) { .menu-tabs { top: 100px; } } /* a touch more clearance on desktop */
.menu-tab {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: clamp(12px, 1.5vw, 14px);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--muted);
  transition: border-color 0.25s, background 0.25s, color 0.25s;
}
.menu-tab:hover { border-color: var(--gold); color: var(--gold-2); }
.menu-tab[aria-selected="true"] { border-color: var(--gold); background: var(--gold); color: #0e1c14; }

.menu-panel { margin-top: 26px; }
.menu-panel[hidden] { display: none; }

.menu-intro { text-align: center; max-width: 560px; margin: 0 auto clamp(28px, 4vw, 40px);
  font-family: var(--font-serif); font-style: italic; font-size: clamp(16px, 2vw, 20px); color: var(--muted); }

/* Shisha cards */
.shisha-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px, 1fr)); gap: 18px; }
.shisha-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(26px, 3vw, 36px);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.shisha-card:hover { transform: translateY(-5px); border-color: var(--gold); }
.shisha-card__head { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; }
.shisha-card__name { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(22px, 3vw, 28px); color: var(--cream); }
.shisha-card__price { font-family: var(--font-sans); font-weight: 500; font-size: clamp(17px, 2vw, 20px); color: var(--gold-2); white-space: nowrap; }
.shisha-card__desc { margin: 12px 0 0; font-size: 14px; line-height: 1.65; color: var(--muted); }

/* Category lists */
.menu-group { margin-top: clamp(30px, 4vw, 48px); }
.menu-group__head { display: flex; align-items: center; gap: 16px; margin-bottom: 8px; }
.menu-group__title { margin: 0; font-family: var(--font-serif); font-weight: 600; font-size: clamp(21px, 3vw, 30px); letter-spacing: 0.01em; color: var(--gold-2); white-space: nowrap; }
.menu-group__rule { flex: 1; height: 1px; background: var(--line); }
.menu-group__note { margin: 0 0 10px; font-family: var(--font-sans); font-style: italic; font-size: 12.5px; letter-spacing: 0.02em; color: var(--muted); }

.menu-item {
  padding: 13px 8px;
  border-bottom: 1px solid var(--line);
  border-radius: 4px;
  transition: background 0.25s ease, padding 0.25s ease;
}
.menu-item:hover { background: rgba(199, 162, 92, 0.06); padding-inline: 14px; }
.menu-item__row { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; }
.menu-item__name { font-family: var(--font-serif); font-weight: 600; font-size: clamp(17px, 2.2vw, 21px); letter-spacing: 0.01em; color: var(--cream); }
.menu-item__price { font-family: var(--font-sans); font-weight: 500; font-size: clamp(14px, 1.7vw, 16px); color: var(--gold-2); white-space: nowrap; }
.menu-item__desc { margin: 5px 0 0; max-width: 85%; font-family: var(--font-sans); font-weight: 300; font-size: clamp(12.5px, 1.5vw, 14px); line-height: 1.55; color: var(--muted); }

/* ==========================================================================
   15. Reserve page
   ========================================================================== */
.reserve-page { position: relative; min-height: 100vh; overflow: hidden;
  padding: clamp(116px, 15vh, 180px) clamp(20px, 5vw, 40px) clamp(70px, 10vw, 120px); }
.reserve-page__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.13; filter: saturate(0.9); }
.reserve-page::before { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to bottom, var(--bg) 4%, rgba(8, 15, 11, 0.7) 40%, var(--bg)); }
.reserve-wrap { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; }
.reserve-head { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 15px; margin-bottom: clamp(34px, 5vw, 54px); }
.reserve-head h1 { margin: 0; font-family: var(--font-display); font-weight: 500; font-size: clamp(42px, 7.4vw, 86px); line-height: 1; color: var(--cream); }
.reserve-head__intro { margin: 0; max-width: 500px; color: var(--muted); font-size: clamp(14px, 1.6vw, 17px); line-height: 1.7; }

.reserve-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 16px; }
.reserve-card {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: clamp(26px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.reserve-card svg { color: var(--gold); }
.reserve-card__label { margin: 0; font-family: var(--font-sans); font-weight: 500; font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
.reserve-card__value { margin: 0; font-family: var(--font-serif); font-weight: 600; color: var(--cream); text-decoration: none; line-height: 1.25; transition: color 0.25s ease; }
a.reserve-card__value:hover { color: var(--gold-2); }
.reserve-card__value--lg { font-size: clamp(23px, 3.2vw, 32px); }
.reserve-card__value--md { font-size: clamp(19px, 2.5vw, 26px); word-break: break-word; }
.reserve-card__value--sm { font-size: clamp(19px, 2.4vw, 24px); }
.reserve-card__sub { margin: 0; font-size: 13px; color: var(--muted); }
.reserve-card__time { margin: 0; font-family: var(--font-sans); font-weight: 500; letter-spacing: 0.06em; font-size: clamp(16px, 2vw, 19px); color: var(--gold-2); }
.reserve-card__map {
  align-self: flex-start;
  margin-top: 2px;
  font-family: var(--font-sans);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 11.5px;
  color: var(--gold-2);
  text-decoration: none;
  border: 1px solid var(--gold);
  border-radius: 2px;
  padding: 9px 16px;
  transition: background 0.25s, border-color 0.25s;
}
.reserve-card__map:hover { background: rgba(199, 162, 92, 0.12); border-color: var(--gold-2); }

/* ==========================================================================
   16. Reduced motion & print
   ========================================================================== */
@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; }
  [data-reveal], [data-reveal-group] > * { opacity: 1; transform: none; }
  .hero__img { transform: none; }
}
