/* ============================================
   EMBER & OAK — Premium Restaurant CSS
   ============================================ */

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:      #080808;
  --charcoal:   #141414;
  --charcoal-2: #1c1c1c;
  --charcoal-3: #252525;
  --gold:       #c9a96e;
  --gold-light: #e8c98a;
  --gold-dark:  #a07840;
  --fire:       #e8611a;
  --fire-light: #f0844a;
  --off-white:  #f0ebe3;
  --cream:      #faf7f2;
  --white:      #ffffff;
  --text-dim:   rgba(240, 235, 227, 0.55);
  --text-muted: rgba(240, 235, 227, 0.35);
  --border:     rgba(201, 169, 110, 0.15);
  --border-light: rgba(201, 169, 110, 0.08);

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Montserrat', system-ui, sans-serif;

  --ease-luxury: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --section-pad: clamp(80px, 10vw, 140px);
  --container:   min(1280px, 92vw);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--black);
  color: var(--off-white);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: none;
}

::selection { background: var(--gold); color: var(--black); }

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* ── Custom Cursor ── */
.cursor,
.cursor-follower {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.cursor {
  width: 8px;
  height: 8px;
  background: var(--gold);
}

.cursor-follower {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201, 169, 110, 0.5);
  transition: width 0.4s var(--ease-luxury),
              height 0.4s var(--ease-luxury),
              border-color 0.4s ease,
              background 0.4s ease;
}

.cursor-follower.is-hovering {
  width: 60px;
  height: 60px;
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

/* ── Loader ── */
.loader {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s var(--ease-luxury), visibility 0.8s;
}

.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner { text-align: center; }

.loader-logo {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 48px;
}

.loader-name {
  font-family: var(--font-serif);
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 300;
  letter-spacing: 0.3em;
  color: var(--off-white);
}

.loader-tagline {
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
}

.loader-bar {
  width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  overflow: hidden;
}

.loader-progress {
  height: 100%;
  width: 0%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* ── Scroll Progress ── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  z-index: 9000;
  transition: width 0.05s linear;
}

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 30px clamp(24px, 5vw, 64px);
  background: linear-gradient(to bottom, rgba(6,4,2,0.90) 0%, rgba(6,4,2,0) 100%);
  transition: background 0.5s ease, padding 0.4s ease, backdrop-filter 0.5s ease;
  animation: navReveal 0.9s var(--ease-luxury) 1.3s both;
}

@keyframes navReveal {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}

.nav.scrolled {
  background: rgba(8, 8, 8, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.nav-logo a {
  display: flex;
  flex-direction: column;
}

.nav-logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--off-white);
  line-height: 1;
  text-shadow: 0 1px 10px rgba(0,0,0,0.9);
}

.nav-logo-sub {
  font-size: 9px;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: clamp(24px, 3vw, 44px);
}

.nav-link {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240, 235, 227, 0.90);
  transition: color 0.35s ease, letter-spacing 0.35s ease;
  position: relative;
  text-shadow: 0 1px 10px rgba(0,0,0,0.85);
  font-weight: 500;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.4s var(--ease-luxury);
}

.nav-link:hover { color: var(--gold-light); letter-spacing: 0.28em; }
.nav-link:hover::after { width: 100%; }

.btn-reserve {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 13px 26px;
  border-radius: 1px;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-shadow: none;
}

.btn-reserve:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(201, 169, 110, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: var(--off-white);
  transition: transform 0.4s var(--ease-luxury), opacity 0.3s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s var(--ease-luxury), visibility 0.5s;
}

.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-inner { text-align: center; }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-bottom: 48px;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: clamp(28px, 6vw, 48px);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--off-white);
  transition: color 0.3s ease;
}

.mobile-nav-link:hover { color: var(--gold); }

.mobile-reserve {
  display: inline-block;
  margin-top: 16px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--gold);
  padding: 20px 46px;
  border: 1px solid var(--gold);
  border-radius: 1px;
  cursor: none;
  transition: background 0.4s ease, transform 0.35s var(--ease-luxury), box-shadow 0.4s ease, letter-spacing 0.35s ease;
  position: relative;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 0 0 1px rgba(201,169,110,0.35), 0 18px 52px rgba(201,169,110,0.28);
  letter-spacing: 0.34em;
}

.btn-ghost {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--off-white);
  padding: 16px 36px;
  border: 1px solid rgba(240, 235, 227, 0.25);
  border-radius: 1px;
  cursor: none;
  transition: border-color 0.4s ease, color 0.4s ease, transform 0.3s ease;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.btn-full { width: 100%; text-align: center; }

/* ── Section Shared ── */
.section-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--off-white);
}

.section-title em {
  font-style: italic;
  color: var(--gold-light);
}

/* ── Reveal Animations ── */
.reveal-fade,
.reveal-up,
.reveal-text,
.reveal-img,
.reveal-split {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease-luxury), transform 0.9s var(--ease-luxury);
}

.reveal-img { transform: scale(1.02) translateY(20px); }

.reveal-fade.in-view,
.reveal-up.in-view,
.reveal-text.in-view,
.reveal-img.in-view,
.reveal-split.in-view {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ── Hero ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.07);
  filter: brightness(0.68) contrast(1.08) saturate(0.88);
  animation: heroZoom 14s var(--ease-luxury) forwards;
}

@keyframes heroZoom {
  to { transform: scale(1); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,2,1,0.92) 0%,
    rgba(4,2,1,0.38) 28%,
    rgba(4,2,1,0.52) 62%,
    rgba(4,2,1,0.97) 100%
  );
}

/* Cinematic edge vignette — keeps centre bright, darkens perimeter */
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 130% 110% at 50% 50%, transparent 28%, rgba(2,1,0,0.68) 100%);
  pointer-events: none;
}

.hero-fire-accent {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 80%, rgba(232,97,26,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 120px 32px 60px;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Localized dark pool behind the text — no hard edges */
.hero-content::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(3,1,0,0.48) 0%, transparent 66%);
  pointer-events: none;
  z-index: -1;
}

.hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 32px;
  display: block;
  animation: fadeInDown 1s var(--ease-luxury) 0.6s both;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
  opacity: 0.75;
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-headline {
  font-family: var(--font-serif);
  font-size: clamp(60px, 9.5vw, 140px);
  font-weight: 300;
  line-height: 0.87;
  letter-spacing: -0.028em;
  color: var(--off-white);
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-shadow: 0 2px 40px rgba(0,0,0,0.45), 0 8px 80px rgba(0,0,0,0.25);
}

.reveal-line {
  display: block;
  overflow: hidden;
  animation: lineReveal 1.2s var(--ease-luxury) both;
}

.reveal-line:nth-child(1) { animation-delay: 0.85s; }
.reveal-line:nth-child(2) { animation-delay: 1.05s; font-style: italic; color: var(--gold-light); }
.reveal-line:nth-child(3) { animation-delay: 1.25s; }

@keyframes lineReveal {
  from { opacity: 0; transform: translateY(60px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: clamp(13px, 1.3vw, 16px);
  letter-spacing: 0.1em;
  color: rgba(240, 235, 227, 0.70);
  margin-bottom: 52px;
  animation: fadeIn 1s var(--ease-luxury) 1.5s both;
  text-shadow: 0 1px 18px rgba(0,0,0,0.55);
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s var(--ease-luxury) 1.8s both;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 102px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: fadeIn 1s ease 2.4s both;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.7); }
}

.hero-scroll-indicator span {
  font-size: 9px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-bottom-bar {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: clamp(40px, 8vw, 100px);
  padding: 28px clamp(20px, 5vw, 60px);
  border-top: 1px solid var(--border);
  background: rgba(8,8,8,0.55);
  backdrop-filter: blur(12px);
  animation: fadeIn 1s ease 2.2s both;
  flex-shrink: 0;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 300;
  color: var(--gold-light);
  letter-spacing: 0.05em;
}

.stat-label {
  font-size: 9px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Story ── */
.story {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.story-header {
  max-width: var(--container);
  margin: 0 auto 80px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.story-block {
  max-width: var(--container);
  margin: 0 auto 100px;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}

.story-block--right .story-text { order: -1; }

.story-image-wrap {
  position: relative;
  height: clamp(400px, 55vw, 600px);
  overflow: hidden;
}

.story-image-wrap img {
  transition: transform 0.8s var(--ease-luxury);
}

.story-image-wrap:hover img { transform: scale(1.05); }

.story-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  pointer-events: none;
}

.story-text { padding: clamp(0px, 2vw, 40px) 0; }

.story-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 80px;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.45);
  line-height: 1;
  margin-bottom: 10px;
  -webkit-text-stroke: 1px rgba(201, 169, 110, 0.3);
}

.story-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.story-text p {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 16px;
}

/* ── Menu ── */
.menu {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.menu-header {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.menu-intro {
  max-width: 520px;
  font-size: 15px;
  color: var(--text-dim);
  margin-top: 20px;
  line-height: 1.8;
}

.menu-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.dish-card {
  background: var(--charcoal-2);
  overflow: hidden;
  position: relative;
  transition: transform 0.4s var(--ease-luxury);
  cursor: none;
}

.dish-card:hover { transform: translateY(-6px); }

.dish-img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.dish-img-wrap img {
  transition: transform 0.7s var(--ease-luxury);
}

.dish-card:hover .dish-img-wrap img { transform: scale(1.08); }

.dish-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8,8,8,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dish-card:hover .dish-overlay { opacity: 1; }

.dish-hover-label {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 10px 20px;
}

.dish-info {
  padding: 28px;
}

.dish-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 12px;
}

.dish-name {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--off-white);
  letter-spacing: 0.02em;
}

.dish-price {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold);
  font-weight: 300;
}

.dish-desc {
  font-size: 13px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 16px;
}

.dish-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--fire-light);
  border: 1px solid rgba(232,97,26,0.3);
  padding: 4px 10px;
  border-radius: 1px;
}

.menu-cta {
  max-width: var(--container);
  margin: 60px auto 0;
  padding: 0 clamp(20px, 5vw, 60px);
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.menu-note {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

/* ── Chef ── */
.chef {
  padding: var(--section-pad) 0;
  background: var(--black);
  overflow: hidden;
}

.chef-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.chef-img-wrap {
  position: relative;
  height: clamp(500px, 70vw, 750px);
  overflow: hidden;
}

.chef-img-wrap img {
  transition: transform 0.8s var(--ease-luxury);
}

.chef-img-wrap:hover img { transform: scale(1.04); }

.chef-img-wrap::before {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to bottom, transparent, var(--black));
  z-index: 1;
}

.chef-awards {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.award-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--charcoal);
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.award-item:hover {
  border-color: var(--gold);
  background: var(--charcoal-2);
}

.award-icon {
  font-size: 18px;
  color: var(--gold);
  min-width: 24px;
  text-align: center;
}

.award-text {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--text-dim);
}

.chef-content {
  padding-top: 40px;
}

.chef-title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 72px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--off-white);
  margin-bottom: 32px;
}

.chef-title em { font-style: italic; color: var(--gold-light); }

.chef-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 32px;
}

.chef-bio {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-dim);
  margin-bottom: 20px;
}

.chef-quote {
  margin: 36px 0 40px;
  padding-left: 24px;
  border-left: 2px solid var(--gold);
}

.chef-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(17px, 2vw, 22px);
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.6;
  margin-bottom: 12px;
}

.chef-quote cite {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Gallery ── */
.gallery {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.gallery-header {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* ── Gallery Marquee ── */
.gallery-marquee-wrap {
  position: relative;
  overflow: hidden;
  padding: 0;
  /* edge fade */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.gallery-marquee-track {
  display: flex;
  gap: 10px;
  width: max-content;
  animation: galleryScroll 45s linear infinite;
  will-change: transform;
}

.gallery-marquee-track:hover {
  animation-play-state: paused;
}

@keyframes galleryScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.gm-item {
  position: relative;
  width: clamp(280px, 25vw, 420px);
  height: clamp(320px, 30vw, 480px);
  overflow: hidden;
  flex-shrink: 0;
  cursor: none;
}

.gm-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.gm-item:hover img { transform: scale(1.07); }

.gm-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8,8,8,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gm-item:hover .gm-overlay { opacity: 1; }

.gm-overlay span {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 4px;
}

/* ── Reservations ── */
.reservations {
  position: relative;
  padding: var(--section-pad) 0;
  overflow: hidden;
}

.reservations-bg {
  position: absolute;
  inset: 0;
}

.reservations-bg img {
  opacity: 0.15;
  filter: grayscale(30%);
}

.reservations-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8,8,8,0.97) 0%, rgba(20,14,8,0.95) 100%);
}

.reservations-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.reservations-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 20px;
}

.reservations-title em { font-style: italic; color: var(--gold-light); }

.reservations-sub {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}

.reservation-note {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--gold-light);
}

/* ── Form ── */
.reservation-form {
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: clamp(32px, 4vw, 56px);
  border-radius: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group--full { margin-bottom: 20px; }

.form-group label {
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--charcoal-3);
  border: 1px solid var(--border);
  color: var(--off-white);
  padding: 14px 16px;
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  border-radius: 1px;
  outline: none;
  transition: border-color 0.3s ease, background 0.3s ease;
  cursor: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23c9a96e' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--charcoal-2);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group textarea { resize: vertical; min-height: 90px; }

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.6) sepia(1) saturate(1.5) hue-rotate(5deg);
  cursor: none;
}

.reservation-form .btn-primary {
  margin-top: 4px;
}

.form-disclaimer {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.03em;
}

/* ── Testimonials ── */
.testimonials {
  padding: var(--section-pad) 0;
  background: var(--black);
  overflow: hidden;
}

.testimonials-header {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.testimonials-track-wrap {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 0;
  transition: transform 0.65s var(--ease-luxury);
}

.testimonial-card {
  min-width: 100%;
  width: 100%;
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: clamp(36px, 5vw, 64px);
  border-radius: 2px;
  flex-shrink: 0;
  transition: border-color 0.4s ease;
  text-align: center;
}

.testimonial-card:hover {
  border-color: var(--gold);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 4px;
  margin-bottom: 20px;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(15px, 1.5vw, 18px);
  font-style: italic;
  font-weight: 300;
  color: var(--off-white);
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--border);
  flex-shrink: 0;
}

.testimonial-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--off-white);
  letter-spacing: 0.05em;
}

.testimonial-via {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

.testimonials-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}

.testimonials-btn {
  background: none;
  border: 1px solid var(--border);
  color: var(--off-white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: none;
  font-size: 16px;
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonials-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.08);
}

.testimonials-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testimonials-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border);
  cursor: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.testimonials-dot.active {
  background: var(--gold);
  transform: scale(1.4);
}

/* ── Events ── */
.events {
  padding: var(--section-pad) 0;
  background: var(--charcoal);
}

.events-header {
  max-width: var(--container);
  margin: 0 auto 60px;
  padding: 0 clamp(20px, 5vw, 60px);
}

.events-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.event-card {
  background: var(--charcoal-2);
  overflow: hidden;
  cursor: none;
  transition: transform 0.4s var(--ease-luxury);
  position: relative;
}

.event-card:hover { transform: translateY(-4px); }

.event-img-wrap {
  height: 280px;
  overflow: hidden;
  position: relative;
}

.event-img-wrap img { transition: transform 0.7s var(--ease-luxury); }
.event-card:hover .event-img-wrap img { transform: scale(1.06); }

.event-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(to top, var(--charcoal-2), transparent);
}

.event-content {
  padding: 36px 40px 40px;
}

.event-icon {
  display: block;
  font-size: 16px;
  color: var(--gold);
  margin-bottom: 12px;
}

.event-title {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 14px;
}

.event-content p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 24px;
}

.event-link {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  transition: letter-spacing 0.3s ease;
}

.event-link:hover { letter-spacing: 0.3em; }

/* ── Location ── */
.location {
  padding: var(--section-pad) 0;
  background: var(--black);
}

.location-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

.location-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--off-white);
  margin-bottom: 48px;
}

.location-title em { font-style: italic; color: var(--gold-light); }

.location-detail {
  display: flex;
  gap: 20px;
  margin-bottom: 36px;
}

.loc-icon {
  font-size: 16px;
  color: var(--gold);
  min-width: 20px;
  margin-top: 2px;
}

.location-detail strong {
  display: block;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.location-detail p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-dim);
}

.location-info .btn-primary { margin-top: 12px; }

.location-map {
  height: clamp(500px, 60vw, 680px);
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 2px;
}

.map-embed {
  width: 100%;
  height: 100%;
}

.map-embed iframe {
  filter: grayscale(0.8) contrast(1.1) brightness(0.7);
}

/* ── Footer ── */
.footer {
  background: var(--charcoal);
  border-top: 1px solid var(--border);
}

.footer-top {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--off-white);
  margin-bottom: 8px;
}

.footer-tagline {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dim);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.footer-links-group h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}

.footer-links-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links-group ul a {
  font-size: 13px;
  color: var(--text-dim);
  transition: color 0.3s ease;
}

.footer-links-group ul a:hover { color: var(--off-white); }

.footer-newsletter h4 {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.footer-newsletter p {
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 20px;
}

.newsletter-form {
  display: flex;
  border: 1px solid var(--border);
  overflow: hidden;
  border-radius: 1px;
  margin-bottom: 24px;
}

.newsletter-form input {
  flex: 1;
  background: var(--charcoal-3);
  border: none;
  color: var(--off-white);
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  outline: none;
}

.newsletter-form input::placeholder { color: var(--text-muted); }

.newsletter-form button {
  background: var(--gold);
  border: none;
  color: var(--black);
  padding: 13px 18px;
  font-size: 16px;
  cursor: none;
  transition: background 0.3s ease;
}

.newsletter-form button:hover { background: var(--gold-light); }

.footer-awards {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-awards span {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 6px 12px;
  border-radius: 1px;
}

.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 60px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border-light);
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ── Modal ── */
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  background: var(--charcoal);
  border: 1px solid var(--border);
  padding: 56px;
  z-index: 10001;
  text-align: center;
  max-width: 440px;
  width: 90%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s var(--ease-luxury);
  border-radius: 2px;
}

.modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.modal-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  margin: 0 auto 24px;
}

.modal h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 300;
  color: var(--off-white);
  margin-bottom: 12px;
}

.modal p {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.8;
  margin-bottom: 32px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.85);
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
}

.modal-backdrop.open { opacity: 1; visibility: visible; }

/* ── Parallax ── */
.parallax-img img {
  transform: translateY(0);
  transition: none;
}

/* ── Utility ── */
.italic { font-style: italic; }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-reserve { display: none; }
  .nav-toggle { display: flex; }

  .story-block { grid-template-columns: 1fr; }
  .story-block--right .story-text { order: 0; }
  .story-image-wrap { height: 320px; }

  .chef-inner { grid-template-columns: 1fr; }
  .chef-img-wrap { height: 420px; }

  .reservations-inner { grid-template-columns: 1fr; }

  .events-grid { grid-template-columns: 1fr; }

  .location-inner { grid-template-columns: 1fr; }
  .location-map { height: 400px; }

  .testimonial-card { min-width: 100%; }
}

@media (max-width: 680px) {
  .hero-headline { font-size: clamp(44px, 12vw, 80px); }

  .menu-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .hero-bottom-bar { gap: 30px; }

  .testimonial-card { min-width: 100%; }

  body { cursor: auto; }
  .cursor, .cursor-follower { display: none; }
}

/* ── Fire glow on section dividers ── */
.story::before,
.chef::before,
.testimonials::before {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--fire), var(--gold));
  margin: 0 auto;
  opacity: 0.6;
}
