/* ============================================================
   SUTRA LOUNGE — Premium Resto-Lounge & Bar
   Theme tokens · Base · Components · Responsive
   ============================================================ */

:root {
  --gold: #c9a35c;
  --gold-soft: #e6c98a;
  --gold-deep: #a87e37;
  --grad-gold: linear-gradient(135deg, #ecd8a4 0%, #c9a35c 45%, #9a6f2e 100%);
  --grad-gold-text: linear-gradient(120deg, #f2e2b6 0%, #d9b877 50%, #a87e37 100%);
  --radius: 16px;
  --radius-sm: 10px;
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --shadow-card: 0 18px 40px -18px rgba(0, 0, 0, .45);
  --shadow-gold: 0 10px 30px -10px rgba(201, 163, 92, .55);
}

/* ---------- DARK THEME (default) ---------- */
html[data-theme="dark"] {
  --bg: #0d0a07;
  --bg-soft: #14100b;
  --surface: #1a140e;
  --surface-2: #221a11;
  --border: rgba(220, 190, 130, .14);
  --border-strong: rgba(220, 190, 130, .28);
  --text: #f4ead9;
  --text-soft: #cbbda6;
  --text-mute: #94846a;
  --overlay-strong: rgba(6, 4, 2, .86);
  --overlay-soft: rgba(6, 4, 2, .55);
  --card-bg: rgba(255, 250, 240, .028);
  --hero-scrim: linear-gradient(180deg, rgba(13,10,7,.62) 0%, rgba(13,10,7,.42) 42%, rgba(13,10,7,.92) 100%);
  --input-bg: rgba(0,0,0,.24);
  color-scheme: dark;
}

/* ---------- LIGHT THEME ---------- */
html[data-theme="light"] {
  --bg: #faf6ee;
  --bg-soft: #f3ecdf;
  --surface: #fffdf8;
  --surface-2: #f6efdd;
  --border: rgba(120, 86, 40, .16);
  --border-strong: rgba(120, 86, 40, .32);
  --text: #231a0e;
  --text-soft: #5c4d38;
  --text-mute: #8a7759;
  --overlay-strong: rgba(250, 246, 238, .94);
  --overlay-soft: rgba(250, 246, 238, .72);
  --card-bg: rgba(120, 86, 40, .035);
  --hero-scrim: linear-gradient(180deg, rgba(20,14,6,.66) 0%, rgba(20,14,6,.40) 45%, rgba(20,14,6,.9) 100%);
  --input-bg: rgba(120, 86, 40, .05);
  color-scheme: light;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background .45s var(--ease), color .45s var(--ease);
  overflow-x: hidden;
  -webkit-tap-highlight-color: transparent;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }
iframe { border: 0; }

::selection { background: rgba(201, 163, 92, .32); color: inherit; }

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

button, a, .btn, input, select, textarea { -webkit-tap-highlight-color: transparent; }

.btn:active, .lang-toggle:active, .theme-toggle:active, .hamburger:active,
.video-chip:active, .gallery-item:active, .social-row a:active { transform: scale(.96); }

.container { width: min(var(--container), 92%); margin-inline: auto; }

section[id] { scroll-margin-top: 70px; }

h1, h2, h3, h4 { font-family: var(--font-serif); line-height: 1.15; font-weight: 700; letter-spacing: .2px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .4px;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn-lg { padding: 17px 34px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-gold {
  background: var(--grad-gold);
  color: #1d1406;
  box-shadow: var(--shadow-gold);
  border: 1px solid rgba(255, 235, 190, .4);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 18px 38px -12px rgba(201,163,92,.75); }

.btn-ghost {
  background: rgba(255,255,255,.06);
  color: #fdf6e9;
  border: 1px solid rgba(255, 240, 205, .35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { background: rgba(255,255,255,.13); transform: translateY(-3px); }

.btn-outline-gold {
  border: 1.5px solid var(--border-strong);
  color: var(--gold-soft);
}
html[data-theme="light"] .btn-outline-gold { color: #8a6420; }
.btn-outline-gold:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-3px); }

.link-arrow { font-weight: 700; color: var(--gold); font-size: 15px; display: inline-flex; align-items: center; gap: 6px; }
.link-arrow::after { content: "→"; transition: transform .3s var(--ease); }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Section scaffolding ---------- */
.section { padding: clamp(72px, 9vw, 120px) 0; position: relative; }
.section-kicker {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-kicker::before { content: ""; width: 34px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-title { font-size: clamp(30px, 4.4vw, 46px); margin-bottom: 18px; }
.section-sub { color: var(--text-soft); font-size: clamp(15px, 1.6vw, 17px); max-width: 620px; }

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

main { flex: 1 0 auto; }
.footer { flex-shrink: 0; }

/* ---------- Staggered grid reveals ---------- */
.dish-grid .reveal:nth-child(2), .why-grid .reveal:nth-child(2), .review-grid .reveal:nth-child(2) { transition-delay: .1s; }
.dish-grid .reveal:nth-child(3), .why-grid .reveal:nth-child(3), .review-grid .reveal:nth-child(3) { transition-delay: .2s; }
.dish-grid .reveal:nth-child(4), .why-grid .reveal:nth-child(4), .review-grid .reveal:nth-child(4) { transition-delay: .3s; }

/* ---------- Scroll-spy active nav ---------- */
.nav-list a.active { color: var(--text); }
.nav-list a.active::after { width: 100%; }

/* ---------- Back to top ---------- */
.to-top {
  position: fixed; right: 22px; bottom: 26px; z-index: 95;
  width: 50px; height: 50px; border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-gold); color: #1d1406;
  box-shadow: var(--shadow-gold);
  opacity: 0; visibility: hidden; transform: translateY(14px);
  transition: opacity .4s var(--ease), transform .4s var(--ease), visibility .4s;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-4px); }
.to-top:active { transform: scale(.94); }

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
  position: fixed; inset: 0; z-index: 200;
  background: #0d0a07;
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.preloader-mark {
  font-family: var(--font-serif); font-size: 54px; font-weight: 800;
  background: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text; color: transparent;
  animation: prePulse 1.4s var(--ease) infinite;
}
.preloader-name { letter-spacing: 6px; font-weight: 800; font-size: 13px; color: #d9c9a8; }
.preloader-line { width: 90px; height: 1px; background: linear-gradient(90deg, transparent, #c9a35c, transparent); animation: preLine 1.4s var(--ease) infinite; }
@keyframes prePulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.08); opacity: .75; } }
@keyframes preLine { 0% { transform: scaleX(.4); opacity: .4; } 50% { transform: scaleX(1); opacity: 1; } 100% { transform: scaleX(.4); opacity: .4; } }

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s;
  border-bottom: 1px solid transparent;
}
.header::before {
  content: "";
  position: absolute; inset: 0;
  background: color-mix(in srgb, var(--bg) 88%, transparent);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s var(--ease);
}
.header.is-scrolled {
  padding: 12px 0;
  border-bottom-color: var(--border);
}
.header.is-scrolled::before { opacity: 1; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; flex: none;
  display: grid; place-items: center;
  font-family: var(--font-serif); font-size: 24px; font-weight: 800;
  background: var(--grad-gold); color: #1d1406;
  border-radius: 12px;
  box-shadow: var(--shadow-gold);
  transform: rotate(-4deg);
  transition: transform .4s var(--ease);
}
.brand:hover .brand-mark { transform: rotate(6deg) scale(1.05); }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong { font-family: var(--font-serif); font-size: 21px; letter-spacing: 4px; font-weight: 800; }
.brand-text em { font-style: normal; font-size: 9px; letter-spacing: 5.5px; font-weight: 700; color: var(--gold); }
html[data-theme="light"] .brand-text strong { color: #2a1c09; }

.nav-list { display: flex; gap: 30px; align-items: center; }
.nav-list a { font-size: 14.5px; font-weight: 600; color: var(--text-soft); position: relative; padding: 6px 0; transition: color .3s; }
.nav-list a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad-gold); border-radius: 2px; transition: width .35s var(--ease);
}
.nav-list a:hover { color: var(--text); }
.nav-list a:hover::after { width: 100%; }

.header-tools { display: flex; align-items: center; gap: 12px; position: relative; z-index: 2; }

.lang-toggle {
  width: 46px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center;
  font-weight: 800; font-size: 13px; letter-spacing: 1px; color: var(--gold-soft);
  transition: background .3s, border-color .3s, transform .3s;
  position: relative;
}
.lang-toggle:hover { border-color: var(--gold); transform: translateY(-2px); }
html[data-theme="light"] .lang-toggle { color: #8a6420; }
.lang-toggle.is-np { background: var(--grad-gold); color: #1d1406; border-color: transparent; }

.theme-toggle {
  width: 46px; height: 40px; border-radius: 10px;
  border: 1px solid var(--border-strong);
  display: grid; place-items: center; position: relative;
  transition: border-color .3s, transform .3s;
}
.theme-toggle:hover { border-color: var(--gold); transform: translateY(-2px); }
.theme-toggle svg { position: absolute; transition: opacity .4s var(--ease), transform .5s var(--ease); }
.theme-toggle .icon-sun { opacity: 0; transform: rotate(90deg) scale(.6); color: var(--gold); }
.theme-toggle .icon-moon { opacity: 1; transform: rotate(0) scale(1); color: var(--text-soft); }
html[data-theme="light"] .theme-toggle .icon-sun { opacity: 1; transform: rotate(0) scale(1); }
html[data-theme="light"] .theme-toggle .icon-moon { opacity: 0; transform: rotate(-90deg) scale(.6); }

.nav-reserve { padding: 12px 22px; font-size: 14px; }

.hamburger { display: none; width: 44px; height: 40px; border-radius: 10px; border: 1px solid var(--border-strong); flex-direction: column; align-items: center; justify-content: center; gap: 5px; }
.hamburger span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform .35s var(--ease), opacity .3s; }
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-cta-mobile { display: none; }
body.nav-open { overflow: hidden; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
  isolation: isolate;
}
.hero-media, .hero-overlay { position: absolute; inset: 0; z-index: -2; }
.hero-media { z-index: -2; }
.hero-overlay {
  z-index: -1;
  background: var(--hero-scrim);
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 7s var(--ease);
}
.hero-slide.is-active { opacity: 1; transform: scale(1); }

.hero-content {
  padding: 130px 0 90px;
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
  color: #fdf6e9;
  display: flex; flex-direction: column; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12.5px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: #ecd8a4;
  border: 1px solid rgba(236,216,164,.32);
  background: rgba(10,7,4,.35);
  backdrop-filter: blur(6px);
  padding: 10px 20px; border-radius: 999px;
  margin-bottom: 28px;
}
.eyebrow-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }

.hero-title {
  font-size: clamp(34px, 6.8vw, 76px);
  font-weight: 700;
  letter-spacing: .5px;
  margin-bottom: 22px;
  color: #fff8ec;
  text-shadow: 0 4px 30px rgba(0,0,0,.45);
  animation: fadeUp 1s var(--ease) .15s both;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: #e9dcc4;
  max-width: 640px;
  margin-bottom: 34px;
  text-shadow: 0 2px 16px rgba(0,0,0,.5);
  animation: fadeUp 1s var(--ease) .3s both;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; animation: fadeUp 1s var(--ease) .45s both; }
.hero-meta { display: flex; gap: 12px; flex-wrap: wrap; justify-content: center; font-size: 13.5px; letter-spacing: 1.5px; color: #d9c9a8; text-transform: uppercase; animation: fadeUp 1s var(--ease) .6s both; }
.hero-meta-sep { color: var(--gold); }

.video-chip {
  margin-top: 38px;
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 700; letter-spacing: .5px; color: #fdf6e9;
  border: 1px solid rgba(255,240,205,.3);
  background: rgba(10,7,4,.4);
  backdrop-filter: blur(8px);
  padding: 10px 22px 10px 12px; border-radius: 999px;
  transition: transform .3s var(--ease), background .3s, border-color .3s;
  animation: fadeUp 1s var(--ease) .75s both;
}
.video-chip:hover { transform: translateY(-3px); border-color: var(--gold); background: rgba(10,7,4,.6); }
.video-chip-play {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--grad-gold); color: #1d1406;
  display: grid; place-items: center;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(201,163,92,.55); } 70% { box-shadow: 0 0 0 14px rgba(201,163,92,0); } 100% { box-shadow: 0 0 0 0 rgba(201,163,92,0); } }

.hero-scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: #cbb98f; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(180deg, var(--gold), transparent); position: relative; overflow: hidden; }
.hero-scroll-line::after { content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%; background: #fff; animation: scrollDrop 2s var(--ease) infinite; }
@keyframes scrollDrop { 0% { top: -50%; } 100% { top: 110%; } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: none; } }

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--bg); }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; }

.about-visual { position: relative; padding-bottom: 56px; }
.about-img-main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); }
.about-img-main img { width: 100%; height: 460px; object-fit: cover; transition: transform 1.2s var(--ease); }
.about-visual:hover .about-img-main img { transform: scale(1.05); }
.about-img-accent {
  position: absolute; right: -6%; bottom: 0; width: 46%;
  border-radius: var(--radius-sm); overflow: hidden;
  border: 6px solid var(--bg);
  box-shadow: var(--shadow-card);
}
.about-img-accent img { width: 100%; height: 200px; object-fit: cover; }
.about-badge {
  position: absolute; left: -14px; bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-card);
}
.about-badge strong { font-family: var(--font-serif); font-size: 42px; font-weight: 800; background: var(--grad-gold-text); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.about-badge span { font-size: 12.5px; font-weight: 600; color: var(--text-soft); max-width: 120px; line-height: 1.4; }

.about-copy { }
.about-lead { font-family: var(--font-serif); font-size: clamp(19px, 2.2vw, 23px); font-style: italic; color: var(--text); margin-bottom: 18px; line-height: 1.5; }
.about-body { color: var(--text-soft); margin-bottom: 24px; max-width: 540px; }

.about-points { display: grid; gap: 12px; margin-bottom: 30px; }
.about-points li { display: flex; gap: 12px; align-items: flex-start; color: var(--text-soft); font-size: 15px; }
.about-points li::before { content: "✦"; color: var(--gold); font-size: 14px; margin-top: 2px; }

/* ============================================================
   MENU / DISHES
   ============================================================ */
.menu { background: var(--bg-soft); }
html[data-theme="dark"] .menu { background: linear-gradient(180deg, #0d0a07, #12100b 40%, #0d0a07); }

.dish-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.dish-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
}
.dish-card:hover { transform: translateY(-10px); border-color: var(--border-strong); box-shadow: var(--shadow-card); }
.dish-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.dish-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.dish-card:hover .dish-media img { transform: scale(1.09); }
.dish-tag {
  position: absolute; top: 12px; left: 12px;
  font-size: 11px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase;
  background: var(--grad-gold); color: #1d1406;
  padding: 6px 12px; border-radius: 999px;
}
.dish-body { padding: 24px 22px 22px; display: flex; flex-direction: column; flex: 1; }
.dish-body h3 { font-size: 21px; margin-bottom: 10px; }
.dish-body p { color: var(--text-soft); font-size: 14.5px; margin-bottom: 18px; flex: 1; }
.dish-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; border-top: 1px dashed var(--border-strong); padding-top: 14px; }
.dish-price { font-size: 12.5px; font-weight: 700; color: var(--gold); letter-spacing: .3px; text-transform: uppercase; }
.dish-link { font-size: 13.5px; font-weight: 800; color: var(--text); border-bottom: 2px solid var(--gold); padding-bottom: 2px; transition: color .3s; }
.dish-link:hover { color: var(--gold); }

.menu-note {
  margin-top: 48px; text-align: center;
  display: flex; flex-direction: column; gap: 12px; align-items: center;
  color: var(--text-soft); font-size: 15px;
}

/* ============================================================
   WHY US
   ============================================================ */
.why { background: var(--bg); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .45s var(--ease), border-color .45s, background .45s;
}
.why-card:hover { transform: translateY(-8px); border-color: var(--border-strong); background: var(--surface); }
.why-icon {
  width: 58px; height: 58px; border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(201,163,92,.18), rgba(201,163,92,.05));
  border: 1px solid rgba(201,163,92,.35);
  color: var(--gold);
  margin-bottom: 20px;
  transition: transform .45s var(--ease);
}
.why-card:hover .why-icon { transform: scale(1.08) rotate(-4deg); }
.why-card h3 { font-size: 20px; margin-bottom: 10px; }
.why-card p { color: var(--text-soft); font-size: 14.5px; }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery { background: var(--bg-soft); padding-bottom: 0; }
html[data-theme="dark"] .gallery { background: linear-gradient(180deg, #0d0a07, #12100b 60%); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 14px;
  margin-top: 0;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--surface-2);
  padding: 0;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease), filter .5s; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-tall { grid-row: span 2; }
.gallery-hint {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,7,4,.55));
  opacity: 0; transition: opacity .45s;
}
.gallery-item:hover .gallery-hint { opacity: 1; }
.gallery-hint::after {
  content: "＋";
  position: absolute; right: 16px; bottom: 12px;
  color: #fff; font-size: 26px; font-weight: 300;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--bg); }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 32px;
  position: relative;
  transition: transform .4s var(--ease), border-color .4s;
}
.review-card::before {
  content: "“";
  position: absolute; top: 4px; right: 26px;
  font-family: var(--font-serif); font-size: 96px; line-height: 1;
  color: rgba(201,163,92,.16);
}
.review-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.review-stars { color: var(--gold); font-size: 17px; letter-spacing: 3px; margin-bottom: 14px; }
.review-text { font-size: 16px; color: var(--text-soft); margin-bottom: 22px; line-height: 1.65; }
.review-author { display: flex; align-items: center; gap: 14px; }
.review-avatar {
  width: 48px; height: 48px; flex: none;
  border-radius: 50%;
  overflow: hidden;
  display: block;
  background: var(--surface-2);
  border: 2px solid var(--gold);
  box-shadow: 0 0 0 2px var(--bg);
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.review-author strong { display: block; font-size: 15.5px; }
.review-author div > span { font-size: 12.5px; color: var(--text-mute); }

/* ============================================================
   VISIT
   ============================================================ */
.visit { background: var(--bg-soft); }
html[data-theme="dark"] .visit { background: linear-gradient(180deg, #0d0a07, #12100b 40%, #0d0a07); }
.visit-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.visit-grid > * { min-width: 0; }

.visit-info { display: grid; gap: 18px; margin: 30px 0; }
.visit-row { display: flex; gap: 16px; align-items: flex-start; }
.visit-ico {
  width: 46px; height: 46px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(201,163,92,.2), rgba(201,163,92,.05));
  border: 1px solid rgba(201,163,92,.35);
  color: var(--gold);
}
.visit-row strong { display: block; font-family: var(--font-serif); font-size: 16px; margin-bottom: 2px; }
.visit-row span { color: var(--text-soft); font-size: 15px; }
.visit-note { display: block; font-size: 12.5px !important; color: var(--gold) !important; margin-top: 2px; }

.visit-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.visit-cta .btn { white-space: normal; text-align: center; }

.visit-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-card); border: 1px solid var(--border); min-height: 420px; }
.visit-map iframe { width: 100%; height: 100%; min-height: 420px; filter: grayscale(.15) contrast(1.02); }

/* ============================================================
   RESERVATION / CONTACT
   ============================================================ */
.reserve { background: var(--bg); padding-bottom: clamp(96px, 10vw, 140px); }
.reserve-panel {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.reserve-panel > * { min-width: 0; }
.reserve-info {
  padding: clamp(36px, 5vw, 60px);
  background: var(--surface);
}
.reserve-form {
  padding: clamp(36px, 5vw, 60px);
  background: var(--surface-2);
  border-left: 1px solid var(--border);
}
.reserve-form h3 { font-size: 26px; margin-bottom: 26px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; min-width: 0; }
.form-row > * { min-width: 0; }
.form-row.cols-3 { grid-template-columns: 1fr; }
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; min-width: 0; }
.form-field label { font-size: 13px; font-weight: 700; letter-spacing: .4px; margin-bottom: 8px; color: var(--text-soft); }
.label-opt { font-weight: 500; color: var(--text-mute); }
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--input-bg);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.form-field textarea { resize: vertical; min-height: 84px; }
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,163,92,.18);
  background: var(--surface);
}
.form-field input.is-invalid { border-color: #d26b4f; }
.form-field .field-msg { font-size: 12px; color: #d26b4f; margin-top: 6px; display: none; }
.form-field.has-error .field-msg { display: block; }

.form-alt { margin-top: 18px; text-align: center; font-size: 13.5px; color: var(--text-mute); }
.form-alt a { color: var(--gold); font-weight: 700; }

.contact-cards { display: grid; gap: 14px; margin: 30px 0; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--card-bg);
  min-width: 0;
  transition: transform .3s var(--ease), border-color .3s, background .3s;
}
.contact-card:hover { transform: translateX(6px); border-color: var(--gold); background: var(--surface-2); }
.contact-ico {
  width: 48px; height: 48px; flex: none; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(150deg, rgba(201,163,92,.2), rgba(201,163,92,.05));
  border: 1px solid rgba(201,163,92,.35);
  color: var(--gold);
}
.contact-wa { background: linear-gradient(150deg, rgba(37,211,102,.2), rgba(37,211,102,.06)); border-color: rgba(37,211,102,.4); color: #25d366; }
.contact-meta { display: flex; flex-direction: column; line-height: 1.3; }
.contact-meta small { font-size: 11.5px; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mute); font-weight: 700; }
.contact-meta strong { font-size: 16px; word-break: break-word; }

.contact-social { display: flex; align-items: center; gap: 16px; margin-top: 26px; flex-wrap: wrap; }
.contact-social > span { font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-mute); }

.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  transition: all .3s var(--ease);
}
.social-row a:hover { background: var(--grad-gold); color: #1d1406; border-color: transparent; transform: translateY(-3px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0805;
  color: #cfc2ab;
  border-top: 1px solid rgba(201,163,92,.18);
  padding: 64px 0 30px;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1.2fr 1.2fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(201,163,92,.12); }
.brand-footer .brand-text strong { color: #f4ead9; }
.footer-brand p { margin-top: 16px; font-size: 14px; color: #a08e72; max-width: 300px; line-height: 1.6; }
.footer-col h4 { font-family: var(--font-sans); font-size: 13px; font-weight: 800; letter-spacing: 2.5px; text-transform: uppercase; color: #e6c98a; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 11px; }
.footer-col li, .footer-col a { font-size: 14.5px; color: #b7a78d; transition: color .3s; }
.footer-col a:hover { color: #e6c98a; }
.social-row-footer { margin-top: 20px; }
.social-row-footer a { border-color: rgba(201,163,92,.25); color: #b7a78d; }
.social-row-footer a:hover { background: var(--grad-gold); color: #1d1406; }

.footer-bottom { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 28px; font-size: 13px; color: #8f7e64; }

/* ============================================================
   MOBILE ACTION BAR
   ============================================================ */
.mobile-bar {
  display: none;
  position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 90;
  background: var(--overlay-strong);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  box-shadow: 0 18px 40px -12px rgba(0,0,0,.6);
  overflow: hidden;
}
.mobile-bar-btn {
  flex: 1;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 12px 6px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  color: var(--text-soft);
  border-right: 1px solid var(--border);
  transition: color .3s, background .3s;
}
.mobile-bar-btn:last-child { border-right: none; }
.mobile-bar-btn:hover { background: var(--card-bg); color: var(--text); }
.mobile-bar-btn svg { color: var(--gold); }
.mobile-bar-cta { background: var(--grad-gold); color: #1d1406; }
.mobile-bar-cta svg { color: inherit; }
.mobile-bar-cta:hover { background: var(--grad-gold); color: #1d1406; }

/* ============================================================
   MODAL (video)
   ============================================================ */
.modal {
  position: fixed; inset: 0; z-index: 160;
  display: grid; place-items: center; padding: 20px;
  visibility: hidden; opacity: 0;
  transition: opacity .4s var(--ease), visibility .4s;
}
.modal.is-open { visibility: visible; opacity: 1; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,3,1,.82); backdrop-filter: blur(6px); }
.modal-box {
  position: relative; width: min(900px, 94vw);
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border-strong);
  transform: scale(.92) translateY(16px);
  transition: transform .45s var(--ease);
  box-shadow: 0 40px 90px -20px rgba(0,0,0,.7);
}
.modal.is-open .modal-box { transform: none; }
.modal-close {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff;
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.modal-close:hover { background: rgba(0,0,0,.8); transform: rotate(90deg); }
.modal-video-wrap { position: relative; aspect-ratio: 16 / 9; background: #000; }
.modal-video-wrap iframe { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ============================================================
   ERROR 404
   ============================================================ */
.error-404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 120px 20px 80px;
}
.error-404 .container { max-width: 640px; }
.error-code {
  font-family: var(--font-serif);
  font-size: clamp(96px, 18vw, 170px);
  font-weight: 800;
  line-height: 1;
  color: transparent;
  background: linear-gradient(135deg, #d9b877 0%, #8a6b3f 55%, #d9b877 100%);
  -webkit-background-clip: text;
  background-clip: text;
  letter-spacing: 4px;
}
.error-title {
  font-family: var(--font-serif);
  font-size: clamp(30px, 5vw, 46px);
  color: #f4e7cd;
  margin: 14px 0 12px;
}
.error-sub { font-size: 17px; color: #d9c9a8; line-height: 1.6; }
.error-desc { font-size: 14.5px; color: var(--text-mute); margin-top: 8px; line-height: 1.6; }
.error-cta { display: flex; gap: 14px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }
.error-cta .btn svg { vertical-align: -2px; margin-right: 6px; }

@media (max-width: 520px) {
  .error-404 { padding: 100px 16px 60px; }
  .error-cta { flex-direction: column; align-items: stretch; }
  .error-cta .btn { justify-content: center; }
}

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox {
  position: fixed; inset: 0; z-index: 170;
  display: grid; place-items: center; padding: 24px;
  background: rgba(5,3,1,.9);
  backdrop-filter: blur(8px);
  visibility: hidden; opacity: 0;
  transition: opacity .4s var(--ease), visibility .4s;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox-close {
  position: absolute; top: 20px; right: 20px;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center;
  transition: background .3s, transform .3s;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); transform: rotate(90deg); }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(255,255,255,.12); color: #fff;
  display: grid; place-items: center; z-index: 2;
  transition: background .3s, transform .3s;
}
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 20px; }
.lightbox-prev:hover { transform: translateY(-50%) translateX(-3px); }
.lightbox-next { right: 20px; }
.lightbox-next:hover { transform: translateY(-50%) translateX(3px); }
.lightbox-figure { max-width: 1080px; text-align: center; }
.lightbox-figure img { max-height: 78vh; width: auto; max-width: 100%; border-radius: var(--radius-sm); box-shadow: 0 30px 80px -20px rgba(0,0,0,.8); }
.lightbox-figure figcaption { margin-top: 14px; color: #d9c9a8; font-size: 14px; letter-spacing: 1px; }

/* ============================================================
   BESTSELLERS
   ============================================================ */
.bestsellers { background: var(--bg); }
html[data-theme="dark"] .bestsellers {
  background:
    radial-gradient(900px 340px at 50% -80px, rgba(201,163,92,.14), transparent 70%),
    linear-gradient(180deg, #0f0c08, #0d0a07);
}

.bs-tabs { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: clamp(28px, 3vw, 40px); }
.bs-tab {
  font-family: var(--font-sans);
  font-size: 13.5px; font-weight: 700; letter-spacing: .4px;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
  background: var(--card-bg);
  transition: all .3s var(--ease);
}
.bs-tab:hover { border-color: var(--gold); color: var(--text); }
.bs-tab.is-active {
  background: var(--grad-gold); color: #1d1406;
  border-color: transparent; font-weight: 800;
  box-shadow: 0 0 22px -6px rgba(201,163,92,.55);
}

.bs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

@keyframes bsIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.bs-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s;
  animation: bsIn .5s var(--ease) both;
}
.bs-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-strong);
  box-shadow: 0 24px 60px -16px rgba(0,0,0,.5), 0 0 34px -8px rgba(201,163,92,.25);
}
.bs-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.bs-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.bs-card:hover .bs-media img { transform: scale(1.08); }
.bs-badge {
  position: absolute; top: 12px; right: 12px; z-index: 2;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  background: var(--grad-gold); color: #1d1406;
  padding: 6px 12px; border-radius: 999px;
  box-shadow: 0 0 18px -2px rgba(201,163,92,.6);
}
.bs-cat {
  position: absolute; bottom: 12px; left: 12px; z-index: 2;
  font-size: 9px; font-weight: 800; letter-spacing: 1.6px; text-transform: uppercase;
  color: var(--gold-soft);
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(220,190,130,.3);
  padding: 5px 10px; border-radius: 999px;
}
html[data-theme="light"] .bs-cat { background: rgba(255,255,255,.72); color: #8a6420; border-color: var(--border-strong); }
.bs-body { padding: 22px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.bs-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.bs-head h3 { font-size: 20px; line-height: 1.25; }
.bs-price { font-family: var(--font-serif); font-size: 19px; font-weight: 800; color: var(--gold); white-space: nowrap; }
.bs-desc { color: var(--text-soft); font-size: 14px; margin-top: 8px; flex: 1; }
.bs-actions { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 18px; }
.bs-actions .btn { flex: 1 1 130px; padding: 12px 14px; font-size: 13.5px; text-align: center; white-space: normal; }

.bs-cta { margin-top: clamp(44px, 5vw, 64px); text-align: center; }
.bs-cta-note {
  margin-top: 14px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-mute);
}

/* ---------- Bestsellers quick-view modal ---------- */
#qvModal.modal { overflow-y: auto; }
.modal-box--qv { width: min(470px, 94vw); }
.qv-media { position: relative; aspect-ratio: 16 / 9; overflow: hidden; background: var(--surface-2); }
.qv-media img { width: 100%; height: 100%; object-fit: cover; }
.qv-body { padding: 26px 28px 28px; background: var(--surface); }
.qv-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; }
.qv-head h3 { font-size: 26px; line-height: 1.2; }
.qv-price { font-family: var(--font-serif); font-size: 24px; font-weight: 800; color: var(--gold); white-space: nowrap; }
.qv-badge {
  display: inline-block; margin-top: 14px;
  font-size: 10px; font-weight: 800; letter-spacing: 1.2px; text-transform: uppercase;
  background: var(--grad-gold); color: #1d1406;
  padding: 6px 12px; border-radius: 999px;
}
.qv-badge.is-empty { display: none; }
.qv-desc { margin-top: 14px; color: var(--text-soft); font-size: 14.5px; line-height: 1.65; }
.qv-order { margin-top: 22px; width: 100%; white-space: normal; }

/* ---------- Video showcase ---------- */
.video-section .container { max-width: 960px; }
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  max-width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #000;
  box-shadow: var(--shadow-card);
}
.video-frame iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0; display: block;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1150px) {
  .header-inner { gap: 16px; }

  .nav {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: var(--overlay-strong);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    padding: 100px 34px 40px;
    transform: translateX(105%);
    transition: transform .45s var(--ease);
    display: flex; flex-direction: column; justify-content: space-between;
    z-index: 1;
    overflow-y: auto;
    overscroll-behavior: contain;
  }
  .nav.is-open { transform: none; }
  .nav-list { flex-direction: column; align-items: flex-start; gap: 8px; }
  .nav-list a { display: block; padding: 12px 0; font-size: 18px; font-weight: 700; }
  .nav-list a::after { display: none; }
  .nav-cta-mobile { display: block; }
  .hamburger { display: flex; }
  .nav-reserve { display: none; }
}

@media (max-width: 1080px) {
  .dish-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }

  .reserve-panel { grid-template-columns: 1fr; }
  .reserve-form { border-left: none; border-top: 1px solid var(--border); }
  .form-row.cols-3 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { max-width: 560px; }
  .about-img-main img { height: 380px; }
  .about-img-accent { right: 4%; }
  .visit-grid { grid-template-columns: 1fr; }
  .visit-map { min-height: 360px; }
  .visit-map iframe { min-height: 360px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
  .hero-content { padding-top: 110px; }
  .form-row, .form-row.cols-3 { grid-template-columns: 1fr; }
  .review-grid { grid-template-columns: 1fr; }
  .mobile-bar { display: flex; padding-bottom: env(safe-area-inset-bottom, 0px); }
  .mobile-bar-btn { min-height: 54px; }
  .to-top { right: 16px; bottom: calc(88px + env(safe-area-inset-bottom, 0px)); }
  body { padding-bottom: 0; }
  .footer { padding-bottom: 96px; }
  .section { padding: 60px 0; }
  .why-grid { grid-template-columns: 1fr; }
  .about-badge { left: 0; }

  .reserve-panel { border-radius: 16px; }
  .reserve-info, .reserve-form { padding: 30px 24px; }
  .reserve-form h3 { font-size: 23px; }
  .form-field input,
  .form-field select,
  .form-field textarea { font-size: 16px; }
  .contact-card { padding: 14px 16px; }
  .contact-meta strong { font-size: 15px; }
}

@media (max-width: 520px) {
  .dish-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-cta .btn { width: 100%; }
  .about-img-main img { height: 300px; }
  .about-img-accent { width: 55%; }
  .about-badge { padding: 14px 16px; }
  .about-badge strong { font-size: 34px; }

  .reserve-info, .reserve-form { padding: 26px 20px; }
  .section-title { font-size: 28px; }
  .hero-cta { width: 100%; }
  .hero-meta { font-size: 11.5px; letter-spacing: 1px; gap: 8px; }
  .contact-card { gap: 12px; padding: 13px 14px; }
  .contact-ico { width: 42px; height: 42px; }
  .reserve-form .btn { white-space: normal; text-align: center; }
  .visit-cta { flex-direction: column; align-items: stretch; }
  .lightbox-nav { width: 40px; height: 40px; }
  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }
}

@media (max-width: 380px) {
  .header-inner { gap: 10px; }
  .brand-mark { width: 38px; height: 38px; font-size: 20px; border-radius: 10px; }
  .brand-text strong { font-size: 18px; letter-spacing: 3px; }
  .brand-text em { letter-spacing: 4px; }
  .lang-toggle, .theme-toggle { width: 42px; height: 38px; }
  .hamburger { width: 40px; height: 38px; }
  .header-tools { gap: 8px; }
  .nav { width: 82vw; }

  .hero-content { padding-top: 104px; }
  .hero-eyebrow { font-size: 11px; letter-spacing: 2px; padding: 8px 14px; }
  .hero-title { font-size: 33px; }
  .hero-cta .btn { padding: 14px 18px; font-size: 14px; }
  .video-chip { font-size: 12.5px; padding: 8px 16px 8px 9px; }
  .video-chip-play { width: 30px; height: 30px; }

  .mobile-bar { left: 8px; right: 8px; bottom: 8px; }
  .mobile-bar-btn { padding: 10px 4px; font-size: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ---------- Short / landscape screens ---------- */
@media (max-height: 620px) and (orientation: landscape) {
  .hero { min-height: 100svh; }
  .hero-content { padding: 100px 0 56px; }
  .hero-title { font-size: clamp(30px, 6vh, 52px); margin-bottom: 12px; }
  .hero-sub { margin-bottom: 18px; }
  .hero-eyebrow { margin-bottom: 16px; }
  .video-chip { margin-top: 22px; }
  .hero-scroll { display: none; }
  .mobile-bar { display: none; }
  body { padding-bottom: 0; }
}

/* ---------- Bestsellers responsive ---------- */
@media (max-width: 1080px) {
  .bs-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .bs-grid { grid-template-columns: 1fr; }
  .bs-head h3 { font-size: 19px; }
  .bs-actions .btn { flex: 1 1 100%; }
}

@media (max-width: 520px) {
  .bs-body { padding: 20px 18px 18px; }
  .bs-cta .btn { width: 100%; }
  .qv-body { padding: 22px 20px 24px; }
  .qv-head h3 { font-size: 23px; }
}

/* ============================================================
   Draft preview banner (shown only inside the admin preview)
   ============================================================ */
.preview-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 16px;
  background: #231a0d;
  border-bottom: 1px solid rgba(217, 184, 119, .35);
  color: #ecd8a4;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Manrope', -apple-system, sans-serif;
  flex-wrap: wrap;
}
.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9b877;
  box-shadow: 0 0 0 4px rgba(217, 184, 119, .2);
}
.preview-banner a { color: #ecd8a4; text-decoration: underline; margin: 0 6px; }
.preview-banner .preview-links { display: inline-flex; align-items: center; }
body:has(.preview-banner) .header { top: 40px; }
body:has(.preview-banner) .menu-hero { padding-top: 84px; }
