/* ============================================================
   AMUTHU VEG RESTAURANT — MAIN STYLESHEET
   ============================================================ */

/* ---------- Google Fonts — Editorial Reserve ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,300;1,9..144,400;1,9..144,600&family=Urbanist:wght@300;400;500;600;700&family=Dancing+Script:wght@600;700&display=swap');

/* ---------- CSS Variables — The Midnight Sommelier ---------- */
:root {
  /* Surface tiers — depth through bg, never through lines */
  --surface:              #001715;   /* deepest midnight foundation */
  --surface-low:          #071f1d;   /* background sections */
  --surface-mid:          #0d2a28;   /* mid-layer panels */
  --surface-high:         #223937;   /* elevated cards & interactive surfaces */

  /* Legacy aliases kept for compatibility */
  --dark-green:           #001715;
  --mid-green:            #071f1d;
  --light-green:          #0d2a28;
  --accent-green:         #223937;

  /* Signature Gold */
  --gold:                 #eac086;   /* primary — high-value actions & highlights */
  --gold-light:           #f5d4a8;   /* hover / lighter state */
  --gold-dark:            #c49d66;   /* gradient end / darker state */

  /* Legacy gold alias */
  --gold-border-alpha:    rgba(234,192,134,0.15); /* ghost border */

  /* Text */
  --white:                #f0ebe3;   /* off-white on-surface — never pure #fff */
  --off-white:            #e8e0d4;
  --text-light:           rgba(240,235,227,0.88);
  --text-muted:           rgba(240,235,227,0.55);

  /* Ghost border — accessibility only, 15% opacity */
  --border-gold:          rgba(234,192,134,0.15);
  --border-gold-hover:    rgba(234,192,134,0.40);

  /* Ambient shadow — diffused, never harsh */
  --shadow:               0px 20px 40px rgba(0,0,0,0.40);
  --shadow-lg:            0px 32px 64px rgba(0,0,0,0.55);

  --transition:           0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  /* Fonts */
  --font-heading:         'Fraunces', serif;       /* Soul — editorial serif */
  --font-script:          'Dancing Script', cursive;
  --font-body:            'Urbanist', sans-serif;  /* Information — modern sans */

  /* Signature gold gradient — brushed metal polish */
  --grad-gold:            linear-gradient(45deg, var(--gold) 0%, var(--gold-dark) 100%);
  --grad-gold-hover:      linear-gradient(45deg, var(--gold-light) 0%, var(--gold) 100%);
}

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

html {
  font-size: 18px;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--surface);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  font-weight: 400;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { border: none; cursor: pointer; background: none; }
input, textarea, select { font-family: var(--font-body); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(0,23,21,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 8px 40px rgba(0,0,0,0.45);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 40px;
  transition: padding var(--transition);
}

.site-header.scrolled .header-inner { padding: 12px 40px; }

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  position: relative;
}
.header-logo img {
  height: 120px;
  width: 120px;
  object-fit: contain;
  object-position: center;
  border-radius: 50%;
  display: block;
  animation: logoFloat 3s ease-in-out infinite, logoGlow 3s ease-in-out infinite;
  transition: transform var(--transition), height var(--transition), width var(--transition);
  filter: drop-shadow(0 0 10px rgba(234,192,134,0.25));
}
.header-logo:hover img {
  transform: scale(1.1) rotate(-4deg);
  filter: drop-shadow(0 0 18px rgba(234,192,134,0.55));
}
.site-header.scrolled .header-logo img { height: 88px; width: 88px; }

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-5px); }
}
@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(234,192,134,0.2)); }
  50%       { filter: drop-shadow(0 0 20px rgba(234,192,134,0.5)); }
}

/* Nav */
.main-nav { display: flex; align-items: center; }
.nav-list { display: flex; gap: 6px; align-items: center; }

.nav-item { position: relative; }

.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  position: relative;
  transition: color 0.3s ease, transform 0.3s ease;
  overflow: hidden;
}

/* Gold fill sweep on hover */
.nav-link::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--grad-gold);
  opacity: 0;
  border-radius: 4px;
  transform: scaleX(0.6) scaleY(0);
  transition: opacity 0.3s ease, transform 0.35s cubic-bezier(.4,0,.2,1);
  z-index: -1;
}
.nav-link::after { display: none; }

.nav-link:hover,
.nav-link.active {
  color: var(--surface);
  transform: translateY(-1px);
}
.nav-link:hover::before,
.nav-link.active::before {
  opacity: 1;
  transform: scaleX(1) scaleY(1);
}

.nav-arrow {
  font-size: 1rem;
  transition: transform var(--transition);
  display: inline-block;
}
.nav-item:hover .nav-arrow { transform: rotate(180deg); }

/* Dropdown — glassmorphism panel, no solid border */
.dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 200px;
  background: rgba(7,31,29,0.80);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 0.5rem;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-lg);
  /* Ghost border — 15% opacity only */
  outline: 1px solid var(--border-gold);
}

.dropdown::before {
  content: '';
  position: absolute;
  top: -6px; left: 50%;
  width: 12px; height: 12px;
  background: rgba(7,31,29,0.85);
  outline: 1px solid var(--border-gold);
  transform: translateX(-50%) rotate(45deg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown li a {
  display: block;
  padding: 12px 24px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-light);
  /* Soft tonal separator — no hard lines */
  background: transparent;
  transition: background var(--transition), color var(--transition), padding var(--transition);
}
.dropdown li + li a { box-shadow: inset 0 1px 0 rgba(255,255,255,0.05); }
.dropdown li a:hover {
  background: rgba(234,192,134,0.08);
  color: var(--gold);
  padding-left: 30px;
}

/* Primary CTA Button — Signature Gold gradient */
.btn-order {
  display: inline-flex;
  align-items: center;
  padding: 11px 28px;
  background: var(--grad-gold);
  color: var(--surface);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  margin-left: 20px;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(234,192,134,0.25);
}
.btn-order:hover {
  background: var(--grad-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(234,192,134,0.40);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: 12px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu — surface-low panel */
.mobile-menu {
  display: none;
  background: var(--surface-low);
  /* No border — tonal transition only */
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}
.mobile-menu.open { max-height: 500px; }
.mobile-nav-list { padding: 20px 40px; display: flex; flex-direction: column; gap: 4px; }
.mobile-nav-link {
  display: block;
  padding: 12px 0;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }
.mobile-order { border-bottom: none; margin-top: 16px; text-align: center; border-radius: 4px; }

/* ============================================================
   HERO SECTION — Restoria-style minimal oval layout
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface);
  overflow: hidden;
  padding: 140px 0 40px;
}

/* Dot grid pattern */
.hero-dot-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 2px 2px, rgba(201,168,76,0.07) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

/* Subtle wave lines */
.hero-wave-lines {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 260px;
  opacity: 0.08;
  background-image: url("data:image/svg+xml;utf8,<svg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'><path d='M0 80 Q 200 40 400 80 T 800 80 T 1200 80 T 1600 80' stroke='%23c9a84c' fill='none' stroke-width='1.5'/><path d='M0 130 Q 200 90 400 130 T 800 130 T 1200 130 T 1600 130' stroke='%23c9a84c' fill='none' stroke-width='1'/></svg>");
  background-repeat: repeat-x;
  pointer-events: none;
}

/* ── Social Sidebar (left) ── */
.hero-social-sidebar,
.hero-booking-sidebar {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  z-index: 40;
}
.hero-social-sidebar { left: 32px; }
.hero-booking-sidebar { right: 32px; }

.hss-line {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.2);
}

.hss-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hss-link {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  writing-mode: vertical-rl;
  transition: color 0.3s;
}
.hss-link:hover { color: var(--gold); }

.hss-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.6;
}

/* Booking sidebar — vertical text */
.hss-booking-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}
.hss-booking-num { color: var(--gold); }

/* ── Main content ── */
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 120px;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  white-space: nowrap;
  text-shadow: 0 0 20px rgba(234,192,134,0.4);
}
.hero-label::before,
.hero-label::after {
  content: '';
  width: 48px; height: 1px;
  background: var(--grad-gold);
  opacity: 0.8;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.hero-sub {
  font-size: 0.88rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.8;
  white-space: nowrap;
}
.hero-sub em {
  color: var(--gold);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
}

/* ── Oval image ── */
.hero-oval-wrap {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: min(95vw, 1400px);
  margin-bottom: 40px;
  display: flex;
  justify-content: center;
}

.hero-oval {
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid var(--gold);
  aspect-ratio: 21 / 9;
  width: 100%;
  position: relative;
  box-shadow: 0 20px 80px rgba(0,0,0,0.5), 0 0 60px rgba(234,192,134,0.08);
}

/* Slides */
.hero-slides {
  position: relative;
  width: 100%; height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 8s ease;
}
.hero-slide.active img { transform: scale(1.04); }

/* Dots */
.hero-oval-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.hod {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: 1px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}
.hod.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
}

/* Oval carousel arrows */
.hero-oval-prev,
.hero-oval-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.25);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
  z-index: 2;
}
.hero-oval-prev { left: 20px; }
.hero-oval-next { right: 20px; }
.hero-oval-prev svg, .hero-oval-next svg { width: 16px; height: 16px; }
.hero-oval-prev:hover,
.hero-oval-next:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--surface);
}

/* ── Info bar ── */
.hero-info-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: nowrap;
  white-space: nowrap;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.95;
  max-width: 900px;
  margin: 0 auto;
}

.hero-info-item { display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.hero-info-label { color: var(--gold); font-weight: 600; }
.hero-info-sep { color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }

/* ── Floating rotating badge ── */
.hero-float-badge {
  position: fixed;
  bottom: 72px;
  right: 32px;
  width: 170px; height: 170px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.hero-float-badge-ring {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  animation: heroRingSpin 15s linear infinite;
}

@keyframes heroRingSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

.hero-float-badge-text {
  fill: rgba(255,255,255,0.75);
  font-size: 7.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hero-float-badge-center {
  position: relative;
  z-index: 1;
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 20px rgba(234,192,134,0.4);
}
.hero-float-badge-center:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(234,192,134,0.55);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
section { padding: 110px 0; }

/* Section label — uppercase Urbanist with fading rule lines */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-label::before,
.section-label::after {
  content: '';
  width: 36px; height: 1px;
  /* Fade to transparent — Signature Divider rule */
  background: linear-gradient(to right, transparent, var(--gold));
  opacity: 0.6;
}
.section-label::after {
  background: linear-gradient(to left, transparent, var(--gold));
}

/* Display headline — Fraunces, tight tracking, massive scale */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 20px;
}

.section-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
}

/* Signature Divider — fading line with center gold diamond */
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 auto 24px;
  justify-content: center;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  max-width: 90px;
  /* Fade into transparency on both ends */
  background: linear-gradient(to right, transparent, rgba(234,192,134,0.45), transparent);
}
.divider-ornament span {
  font-size: 0.7rem;
  color: var(--gold-dark);
  /* Small gold diamond glyph */
}

/* ── Shared Buttons ── */

/* Primary — Signature Gold gradient */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--grad-gold);
  color: var(--surface);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(234,192,134,0.20);
  white-space: nowrap;
}
.btn-primary svg { width: 16px; height: 16px; flex-shrink: 0; }
.btn-primary:hover {
  background: var(--grad-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(234,192,134,0.38);
}

/* Gold — same as primary, alias kept */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: var(--grad-gold);
  color: var(--surface);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px rgba(234,192,134,0.20);
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--grad-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(234,192,134,0.38);
}

/* Ghost / Secondary — no fill, ghost border */
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 30px;
  background: transparent;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  outline: 1px solid var(--border-gold);
  transition: outline-color var(--transition), color var(--transition), background var(--transition);
}
.btn-ghost:hover {
  outline-color: var(--border-gold-hover);
  color: var(--gold);
  background: rgba(234,192,134,0.05);
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
  /* surface-low tier — tonal shift, no hard border */
  background: var(--surface-low);
  position: relative;
  overflow: hidden;
}

.about-inner {
  display: grid;
  grid-template-columns: 200px 1fr 200px;
  gap: 40px;
  align-items: center;
}

.about-side-image {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-side-img {
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  /* Ghost border — 15% opacity, per design spec */
  outline: 1px solid var(--border-gold);
}
.about-side-img img {
  width: 100%; height: 160px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.about-side-img:hover img { transform: scale(1.05); }

.about-side-right { justify-content: flex-end; }

.about-center { text-align: center; }

.about-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-title em {
  font-style: italic;
  color: var(--gold);
  font-family: var(--font-script);
  font-size: 1.15em;
}

.about-title .emoji { font-style: normal; }

.about-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  max-width: 560px;
  margin: 0 auto 30px;
}

/* Center food image */
.about-center-img {
  width: 300px;
  height: 300px;
  border-radius: 50%;
  overflow: hidden;
  margin: 30px auto;
  /* Arched Crop — ghost border only */
  outline: 1px solid var(--border-gold);
  box-shadow: 0 0 60px rgba(234,192,134,0.10), var(--shadow);
}
.about-center-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.about-center-img:hover img { transform: scale(1.08); }

/* btn-primary defined in SECTION COMMON above — no duplicate needed */

/* ============================================================
   MENU SECTION — mn-* (matches screenshot exactly)
   ============================================================ */

/* ---- Section wrapper ---- */
.mn-section {
  position: relative;
  background: var(--surface-mid); /* tonal tier shift — no border needed */
  padding: 80px 0 100px;
  overflow: hidden;
}

/* Subtle wave overlay */
.mn-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 38px,
      rgba(234,192,134,0.03) 38px,
      rgba(234,192,134,0.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 38px,
      rgba(234,192,134,0.03) 38px,
      rgba(234,192,134,0.03) 40px
    );
  pointer-events: none;
}

/* ---- Gold corner L-brackets ---- */
.mn-corner {
  position: absolute;
  width: 48px;
  height: 48px;
  border-color: var(--gold);
  border-style: solid;
  opacity: 0.75;
  z-index: 2;
  pointer-events: none;
}
.mn-corner--tl { top: 20px; left: 20px;  border-width: 2px 0 0 2px; }
.mn-corner--tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.mn-corner--bl { bottom: 20px; left: 20px;  border-width: 0 0 2px 2px; }
.mn-corner--br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

/* ---- Section header ---- */
.mn-header {
  text-align: center;
  margin-bottom: 64px;
  position: relative;
  z-index: 2;
}

/* Circular SVG badge */
.mn-badge {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto 10px;
}

.mn-badge-svg {
  width: 110px;
  height: 110px;
  animation: badgeSpin 18s linear infinite;
}

.mn-badge-text {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  fill: var(--gold);
  text-transform: uppercase;
  font-family: var(--font-body);
}

.mn-badge-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 36px;
  height: 36px;
  color: var(--gold);
}

.mn-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
  line-height: 1.1;
}

/* ---- Body (rows) ---- */
.mn-body {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 80px;
  position: relative;
  z-index: 2;
}

/* ---- Each row: list + image ---- */
.mn-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
/* Reverse: image left, list right */
.mn-row--reverse { direction: rtl; }
.mn-row--reverse > * { direction: ltr; }

/* ---- List column ---- */
.mn-list-col {}

.mn-cat-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
  font-style: italic;
  color: var(--white);
  margin-bottom: 30px;
}

/* ---- Menu entry ---- */
.mn-entry {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left 0.3s ease;
}
.mn-entry:last-child { border-bottom: none; }
.mn-entry:hover { padding-left: 6px; }

.mn-entry-top {
  display: flex;
  align-items: baseline;
  gap: 0;
  margin-bottom: 6px;
  width: 100%;
}

.mn-entry-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Dotted leader line — stretches to end when no price */
.mn-entry-dots {
  flex: 1;
  border-bottom: 2px dotted rgba(255,255,255,0.18);
  margin: 0 10px;
  min-width: 20px;
  position: relative;
  top: -4px;
}

/* Price (optional — hidden when not rendered) */
.mn-entry-price {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
}

.mn-entry-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.65;
  max-width: 400px;
}

/* NEW badge */
.mn-new {
  display: inline-block;
  padding: 2px 8px;
  background: var(--grad-gold);
  color: var(--surface);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 4px;
  font-style: normal;
  text-transform: uppercase;
}

/* ---- Image column with arch top ---- */
.mn-img-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mn-arch-img {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  /* Arch shape: rounded top, flat bottom */
  border-radius: 50% 50% 8px 8px / 42% 42% 8px 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: transform 0.6s ease;
}
.mn-arch-img:hover { transform: translateY(-6px); }

.mn-arch-img img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.mn-arch-img:hover img { transform: scale(1.04); }

/* Gold border following arch shape */
.mn-arch-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1.5px solid var(--border-gold);
  pointer-events: none;
}

/* ============================================================
   SPECIAL DISHES
   ============================================================ */
.special-section {
  background: var(--surface);
  text-align: center;
}

.special-header { margin-bottom: 20px; }
.special-header .section-label { justify-content: center; }

.special-slider-wrap {
  position: relative;
  margin: 50px 0;
  overflow: hidden;
}

.special-slider {
  display: flex;
  gap: 30px;
  transition: transform 0.5s ease;
}

.special-card {
  flex: 0 0 calc(33.333% - 20px);
  /* surface-container-highest — elevated card surface, no border */
  background: var(--surface-high);
  border-radius: 0.5rem;
  padding: 32px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  overflow: hidden;
  /* Ambient shadow — diffused, never harsh */
  box-shadow: var(--shadow);
}
.special-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(234,192,134,0.07) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.special-card:hover { transform: translateY(-8px); box-shadow: 0px 20px 40px rgba(0,0,0,0.5); }
.special-card:hover::before { opacity: 1; }

.special-card-label {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.special-img-wrap {
  width: 180px; height: 180px;
  /* Arched Crop — circular frame, ghost border */
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  outline: 1px solid var(--border-gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.35);
}
.special-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.special-card:hover .special-img-wrap img { transform: scale(1.1) rotate(3deg); }

.special-card-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.special-card-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.special-card-price {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 600;
}

/* Slider nav arrows — ghost style */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(7,31,29,0.60);
  backdrop-filter: blur(12px);
  /* Ghost border */
  outline: 1px solid var(--border-gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: all var(--transition);
}
.slider-arrow:hover {
  background: var(--grad-gold);
  outline-color: transparent;
  color: var(--surface);
  box-shadow: 0 8px 24px rgba(234,192,134,0.3);
}
.slider-arrow.prev { left: -24px; }
.slider-arrow.next { right: -24px; }
.slider-arrow svg { width: 20px; height: 20px; }

.special-cta { margin-top: 20px; }

/* ============================================================
   RESERVATION
   ============================================================ */
.reservation-section {
  /* surface-low tier — soft tonal shift, no hard border */
  background: var(--surface-low);
  position: relative;
  overflow: hidden;
}

.reservation-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.reservation-form-side {}

.reservation-label {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.reservation-label::before { content: '— '; }

.reservation-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 8px;
}

.reservation-hours {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}
.reservation-hours span { color: var(--gold); }

/* Form */
.res-form { display: flex; flex-direction: column; gap: 16px; }

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

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

/* Form label — label-sm in gold, wide tracking */
.form-label {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Input fields — surface-low bg, ghost border, gold bottom on focus */
.form-input,
.form-select,
.form-textarea {
  background: var(--surface-low);
  /* Ghost border — 15% opacity, accessibility baseline */
  border: none;
  outline: 1px solid var(--border-gold);
  border-bottom: 2px solid transparent;
  border-radius: 0.375rem 0.375rem 0 0;
  padding: 13px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: border-bottom-color var(--transition), outline-color var(--transition), background var(--transition);
  width: 100%;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  /* Gold bottom line on focus — per spec */
  border-bottom-color: var(--gold);
  outline-color: var(--border-gold-hover);
  background: rgba(234,192,134,0.04);
  box-shadow: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(240,235,227,0.3); }
.form-select option { background: var(--surface-mid); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }

/* btn-gold defined in SECTION COMMON — remove old duplicate */

/* Reservation image side */
.reservation-image-side { position: relative; }

.res-img-main {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.res-img-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.res-img-main:hover img { transform: scale(1.04); }

.res-img-overlay {
  position: absolute;
  bottom: 30px; right: -20px;
  /* Glass floating card */
  background: rgba(7,31,29,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  /* Ghost border at 15% */
  outline: 1px solid var(--border-gold);
  border-radius: 0.5rem;
  padding: 22px 26px;
  min-width: 200px;
  box-shadow: var(--shadow-lg);
}

.res-overlay-title {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.res-overlay-hours { display: flex; flex-direction: column; gap: 6px; }
.res-overlay-hours li {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.res-overlay-hours li span { color: var(--white); }

/* ============================================================
   CHEF SECTION
   ============================================================ */
.chef-section {
  background: var(--surface); /* deepest surface — max contrast */
  position: relative;
}

.chef-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.chef-images {
  position: relative;
  height: 520px;
}

.chef-img-main {
  position: absolute;
  left: 0;
  top: 0;
  width: 68%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.chef-img-main img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.chef-img-main:hover img { transform: scale(1.04); }

.chef-img-side {
  position: absolute;
  right: 0;
  top: 60px;
  width: 38%;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: var(--shadow);
  /* Ghost border */
  outline: 1px solid var(--border-gold);
}
.chef-img-side img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.8s ease;
}
.chef-img-side:hover img { transform: scale(1.05); }

.chef-badge {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--surface);
  border-radius: 50%;
  width: 90px; height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 8px 30px rgba(234,192,134,0.35);
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(-10px); }
}

.chef-content {}

.chef-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 8px;
}
.chef-name {
  font-family: var(--font-script);
  font-size: 2.8rem;
  color: var(--gold);
  margin-bottom: 20px;
  display: block;
}

.chef-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 30px;
}

.chef-stats {
  display: flex;
  gap: 40px;
  margin-bottom: 36px;
  padding: 24px 0;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.chef-stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
}
.chef-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonial-section {
  position: relative;
  background: #080f0b;
  overflow: hidden;
  text-align: center;
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background:
    url('images/testimonials-bg.jpg') center/cover no-repeat;
  opacity: 0.12;
  filter: grayscale(50%);
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,15,11,0.8) 0%, rgba(8,15,11,0.95) 100%);
}

.testimonial-inner { position: relative; z-index: 2; }

.testi-header { margin-bottom: 60px; }
.testi-header .section-label { justify-content: center; }

.testi-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  margin-bottom: 60px;
}
.testi-stat {
  text-align: center;
}
.testi-stat-num {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.testi-stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}
.testi-stat-divider {
  width: 1px; height: 60px;
  background: var(--border-gold);
}

/* Testimonial carousel */
.testi-carousel { max-width: 720px; margin: 0 auto; }

.testi-quote-icon {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: -10px;
  font-family: Georgia, serif;
}

.testi-text {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 30px;
}

.testi-author {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.testi-avatar {
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  /* Ghost border */
  outline: 1px solid var(--border-gold);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}
.testi-role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-stars { color: var(--gold); font-size: 1rem; margin-bottom: 4px; }

/* Dots */
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.testi-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all var(--transition);
}
.testi-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  /* surface-mid tier — tonal rise from surface-low, no separator line */
  background: var(--surface-mid);
  text-align: center;
}

.blog-header { margin-bottom: 50px; }
.blog-header .section-label { justify-content: center; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  text-align: left;
}

.blog-card {
  /* surface-container-highest — elevated card, no border */
  background: var(--surface-high);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}
.blog-card:hover { transform: translateY(-8px); box-shadow: 0px 20px 40px rgba(0,0,0,0.50); }

.blog-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.blog-img-wrap::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40px;
  background: linear-gradient(180deg, var(--surface-high) 0%, transparent 100%);
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}
.blog-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }

.blog-content { padding: 24px; }

.blog-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(234,192,134,0.10);
  color: var(--gold);
  /* Ghost border */
  outline: 1px solid var(--border-gold);
  border-radius: 20px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.blog-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
  transition: color var(--transition);
}
.blog-card:hover .blog-title { color: var(--gold); }

.blog-excerpt {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.75rem;
  color: var(--text-muted);
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.blog-read-more {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.blog-card:hover .blog-read-more { gap: 10px; }

.blog-cta { margin-top: 50px; }

/* ============================================================
   INSTAGRAM SECTION
   ============================================================ */
.instagram-section {
  background: var(--surface);
  text-align: center;
  padding-bottom: 0;
}

.instagram-header { margin-bottom: 40px; }
.instagram-header .section-label { justify-content: center; }

.instagram-handle {
  font-family: var(--font-script);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 40px;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.insta-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}
.insta-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.insta-item:hover img { transform: scale(1.1); }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,23,21,0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-overlay svg { width: 28px; height: 28px; color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  /* Darkest surface — deepest layer, tonal transition from instagram section */
  background: #010c0b;
}

.footer-top { padding: 80px 0 60px; }
.footer-bottom {
  /* Tonal separator — very faint, not a hard line */
  background: rgba(0,0,0,0.25);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.8fr;
  gap: 60px;
}

.footer-logo img { height: 120px; width: 120px; object-fit: contain; margin-bottom: 20px; }
.footer-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }
.social-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  /* Ghost border */
  outline: 1px solid rgba(240,235,227,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-icon svg { width: 16px; height: 16px; }
.social-icon:hover {
  background: var(--grad-gold);
  color: var(--surface);
  outline-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(234,192,134,0.3);
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--white);
  margin-bottom: 24px;
  padding-bottom: 12px;
  /* Signature Divider — fading line, no solid rule */
  background-image: linear-gradient(to right, rgba(234,192,134,0.4), transparent);
  background-size: 100% 1px;
  background-repeat: no-repeat;
  background-position: bottom;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links li a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color var(--transition), padding var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.footer-links li a::before { content: '›'; color: var(--gold); }
.footer-links li a:hover { color: var(--gold); padding-left: 6px; }

.footer-contact { display: flex; flex-direction: column; gap: 16px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-icon { flex-shrink: 0; margin-top: 2px; }
.contact-icon svg { width: 16px; height: 16px; stroke: var(--gold); }

.footer-newsletter-text { font-size: 0.83rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px; }

.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-input {
  background: var(--surface-low);
  border: none;
  outline: 1px solid var(--border-gold);
  border-bottom: 2px solid transparent;
  border-radius: 0.375rem 0.375rem 0 0;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  transition: border-bottom-color var(--transition), outline-color var(--transition);
  width: 100%;
}
.newsletter-input:focus {
  border-bottom-color: var(--gold);
  outline-color: var(--border-gold-hover);
}
.newsletter-input::placeholder { color: rgba(240,235,227,0.3); }
.newsletter-btn {
  padding: 12px;
  background: var(--grad-gold);
  color: var(--surface);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 0.375rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(234,192,134,0.2);
}
.newsletter-btn:hover {
  background: var(--grad-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,192,134,0.35);
}

.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.heart { color: #e74c3c; }

.footer-bottom-links {
  display: flex;
  gap: 20px;
}
.footer-bottom-links li a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
}
.footer-bottom-links li a:hover { color: var(--gold); }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 40px;
  right: 40px;
  width: 48px; height: 48px;
  background: var(--gold);
  color: var(--surface);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(234,192,134,0.35);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold-light); transform: translateY(-4px); }
.scroll-top svg { width: 20px; height: 20px; }

/* ============================================================
   PRELOADER
   ============================================================ */
/* ── PRELOADER ─────────────────────────────────────────── */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--surface);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s cubic-bezier(.4,0,.2,1), visibility 0.8s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* Scene wrapper */
.preloader-scene {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 320px;
}

/* Ambient glow rings */
.pl-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid var(--border-gold);
  animation: plRingPulse 3s ease-in-out infinite;
}
.pl-ring-1 { width: 220px; height: 220px; animation-delay: 0s;    opacity: 0.5; }
.pl-ring-2 { width: 270px; height: 270px; animation-delay: 0.6s;  opacity: 0.3; }
.pl-ring-3 { width: 316px; height: 316px; animation-delay: 1.2s;  opacity: 0.15; }

@keyframes plRingPulse {
  0%, 100% { transform: scale(1);    opacity: var(--op, 0.4); }
  50%       { transform: scale(1.04); opacity: 0; }
}

/* Orbiting dots */
.pl-orbit {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  animation: plOrbitSpin 4s linear infinite;
}
.pl-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  top: 50%; left: 50%;
  transform-origin: 0 0;
}
.pl-dot-1 { transform: rotate(0deg)   translate(100px) translate(-50%,-50%); opacity: 1;    animation: plDotFade 4s linear infinite 0s; }
.pl-dot-2 { transform: rotate(90deg)  translate(100px) translate(-50%,-50%); opacity: 0.7;  animation: plDotFade 4s linear infinite 1s; width:5px; height:5px; }
.pl-dot-3 { transform: rotate(180deg) translate(100px) translate(-50%,-50%); opacity: 0.5;  animation: plDotFade 4s linear infinite 2s; width:4px; height:4px; }
.pl-dot-4 { transform: rotate(270deg) translate(100px) translate(-50%,-50%); opacity: 0.3;  animation: plDotFade 4s linear infinite 3s; width:3px; height:3px; }

@keyframes plOrbitSpin { to { transform: rotate(360deg); } }
@keyframes plDotFade {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.2; }
}

/* Logo */
.preloader-logo-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.preloader-logo-img {
  width: 180px;
  height: 180px;
  object-fit: contain;
  animation: plLogoFloat 3s ease-in-out infinite, plLogoFadeIn 0.8s ease forwards;
  filter: drop-shadow(0 0 24px rgba(234,192,134,0.35));
}
.pl-shimmer {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 70%, rgba(234,192,134,0.18) 100%);
  animation: plShimmerSpin 2.5s linear infinite;
  pointer-events: none;
}

@keyframes plLogoFloat {
  0%, 100% { transform: translateY(0px) scale(1); }
  50%       { transform: translateY(-10px) scale(1.03); }
}
@keyframes plLogoFadeIn {
  from { opacity: 0; transform: scale(0.7); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes plShimmerSpin {
  to { transform: rotate(360deg); }
}

/* Text + progress */
.preloader-text-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 2;
}
.pl-tagline {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  animation: plFadeUp 0.6s ease 0.5s forwards;
}
.preloader-bar {
  width: 160px;
  height: 2px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
  overflow: hidden;
  opacity: 0;
  animation: plFadeUp 0.6s ease 0.7s forwards;
}
.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: var(--grad-gold);
  border-radius: 2px;
  animation: plLoad 2.2s cubic-bezier(.4,0,.2,1) 0.3s forwards;
}
.pl-percent {
  font-family: var(--font-body);
  font-size: 11px;
  color: rgba(240,235,227,0.4);
  letter-spacing: 0.1em;
  opacity: 0;
  animation: plFadeUp 0.6s ease 0.9s forwards;
}

@keyframes plLoad   { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes plFadeUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

/* ============================================================
   CURSOR
   ============================================================ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.cursor-dot {
  width: 8px; height: 8px;
  background: var(--gold);
}
.cursor-ring {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(201,168,76,0.6);
  transition: transform 0.15s ease, width 0.3s ease, height 0.3s ease, border-color 0.3s ease;
}
.cursor-ring.hovering {
  width: 56px; height: 56px;
  border-color: var(--gold);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 24px; }
  .hero-social-sidebar, .hero-booking-sidebar { display: none; }
  /* New menu layout */
  .mn-row { grid-template-columns: 1fr; gap: 40px; }
  .mn-row--reverse { direction: ltr; }
  .mn-arch-img { max-width: 340px; margin: 0 auto; }
  .mn-arch-img img { height: 320px; }
  .mn-body { gap: 60px; padding: 0 24px; }
  .reservation-inner { grid-template-columns: 1fr; gap: 50px; }
  .chef-inner { grid-template-columns: 1fr; }
  .chef-images { height: 360px; margin-bottom: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .instagram-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .header-actions .btn-order { display: none; }
  .hero-social-sidebar, .hero-booking-sidebar { display: none; }
  .hero-float-badge { width: 90px; height: 90px; bottom: 16px; right: 16px; }
  .hero-float-badge-center { width: 46px; height: 46px; }
  .hero-content { padding: 0 20px; }
  .hero-oval { aspect-ratio: 4 / 3; border-radius: 50%; }
  .about-inner { grid-template-columns: 1fr; }
  .about-side-image { display: none; }
  .special-card { flex: 0 0 calc(80% - 20px); }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  section { padding: 70px 0; }
  .testi-stats { flex-direction: column; gap: 30px; }
  .testi-stat-divider { display: none; }
  .form-row { grid-template-columns: 1fr; }
  /* New menu responsive */
  .mn-corner { width: 28px; height: 28px; }
  .mn-arch-img img { height: 260px; }
  .mn-cat-title { font-size: 1.6rem; }
  .mn-entry-name { font-size: 0.72rem; }
}

@media (max-width: 480px) {
  .instagram-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.4rem; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* ============================================================
   PAGE HERO (shared across about / menu / team / tables / contact)
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 80px;
  padding-top: 120px;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.page-hero:hover .page-hero-bg { transform: scale(1); }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,40,24,0.55) 0%, rgba(13,40,24,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.1;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
}
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { color: var(--gold-light); }

/* ============================================================
   ABOUT PAGE
   ============================================================ */

/* Story */
.story-section { padding: 100px 0; }
.story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.story-images {
  position: relative;
}
.story-img-main {
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border-gold);
}
.story-img-main img { width: 100%; height: 400px; object-fit: cover; }
.story-img-side {
  position: absolute;
  bottom: -40px; right: -40px;
  width: 220px;
  border-radius: 8px;
  overflow: hidden;
  outline: 2px solid var(--surface);
  box-shadow: var(--shadow);
}
.story-img-side img { width: 100%; height: 200px; object-fit: cover; }
.story-badge {
  position: absolute;
  top: -24px; left: -24px;
  background: var(--gold);
  color: var(--surface);
  border-radius: 50%;
  width: 100px; height: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-heading);
  box-shadow: 0 8px 30px rgba(234,192,134,0.4);
}
.story-badge-num { font-size: 1.6rem; font-weight: 700; line-height: 1; }
.story-badge-text { font-size: 0.6rem; font-weight: 600; line-height: 1.3; text-transform: uppercase; margin-top: 4px; }
.story-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin: 12px 0 24px;
  line-height: 1.2;
}
.story-title em { color: var(--gold); font-style: italic; }
.story-desc { color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.story-stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border-gold);
}
.story-stat { text-align: center; }
.story-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 700;
}
.story-stat-label { font-size: 0.75rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Values */
.values-section {
  padding: 100px 0;
  background: var(--surface-low);
}
.values-header { text-align: center; margin-bottom: 60px; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition), background var(--transition);
}
.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold);
  background: rgba(234,192,134,0.06);
}
.value-icon {
  width: 64px; height: 64px;
  margin: 0 auto 20px;
  color: var(--gold);
}
.value-icon svg { width: 100%; height: 100%; }
.value-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 12px;
}
.value-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* Timeline */
.timeline-section { padding: 100px 0; }
.timeline-header { text-align: center; margin-bottom: 70px; }
.timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border-gold);
  transform: translateX(-50%);
}
.timeline-item {
  position: relative;
  width: 46%;
  margin-bottom: 50px;
}
.timeline-left { margin-right: auto; text-align: right; padding-right: 40px; }
.timeline-right { margin-left: auto; text-align: left; padding-left: 40px; }
.timeline-dot {
  position: absolute;
  top: 8px;
  width: 14px; height: 14px;
  background: var(--gold);
  border-radius: 50%;
  outline: 2px solid var(--surface);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-left .timeline-dot { right: -47px; }
.timeline-right .timeline-dot { left: -47px; }
.timeline-year {
  font-family: var(--font-script);
  font-size: 1.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 4px;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 8px;
}
.timeline-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* About gallery */
.about-gallery { padding: 0; }
.about-gallery-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: 240px 240px;
  gap: 4px;
}
.ag-item { overflow: hidden; }
.ag-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.ag-item:hover img { transform: scale(1.06); }
.ag-tall { grid-row: span 2; }
.ag-wide { grid-column: span 2; }

/* About CTA */
.about-cta {
  padding: 100px 0;
  background: var(--surface-low);
}
.about-cta-inner { text-align: center; }
.about-cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.about-cta-title em { color: var(--gold); font-style: italic; }
.about-cta-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto 40px; }
.about-cta-btns { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ============================================================
   MENU PAGE
   ============================================================ */
.full-menu-section { padding: 80px 0 100px; }
.full-menu-intro { text-align: center; margin-bottom: 50px; }
.full-menu-sub {
  color: var(--text-muted);
  max-width: 640px;
  margin: 16px auto 0;
  line-height: 1.7;
}

/* Tabs */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gold);
}
.menu-tab {
  padding: 10px 22px;
  border-radius: 30px;
  border: 1px solid var(--border-gold);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  background: transparent;
}
.menu-tab:hover,
.menu-tab.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--surface);
  font-weight: 700;
}

.menu-tab-content { display: none; }
.menu-tab-content.active { display: block; }

.menu-category-header {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--border-gold);
}
.menu-cat-img {
  flex-shrink: 0;
  width: 200px;
  height: 140px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--border-gold);
}
.menu-cat-img img { width: 100%; height: 100%; object-fit: cover; }
.menu-cat-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: 10px;
}
.menu-cat-desc { color: var(--text-muted); line-height: 1.7; }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}
.menu-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(234,192,134,0.12);
}
.menu-item:nth-child(odd) { padding-right: 40px; border-right: 1px solid rgba(234,192,134,0.12); }
.menu-item:nth-child(even) { padding-left: 40px; }
.menu-item-img-wrap {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(234,192,134,0.5);
  box-shadow: 0 0 10px rgba(234,192,134,0.15);
}
.menu-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.menu-item:hover .menu-item-img { transform: rotate(360deg); }
.menu-item-body { flex: 1; min-width: 0; }
.menu-item-top {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.menu-item-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--white);
}
.menu-item-badge {
  font-size: 0.6rem;
  font-weight: 700;
  background: var(--gold);
  color: var(--surface);
  padding: 2px 6px;
  border-radius: 3px;
  letter-spacing: 0.5px;
  vertical-align: middle;
  margin-left: 4px;
}
.menu-item-dots {
  flex: 1;
  border-bottom: 1px dotted rgba(234,192,134,0.35);
  margin-bottom: 4px;
  min-width: 20px;
}
.menu-item-price {
  font-family: var(--font-heading);
  color: var(--gold);
  font-size: 0.95rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-desc { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

/* Note strip */
.menu-note-strip {
  padding: 24px 0;
  background: rgba(234,192,134,0.08);
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
}
.menu-note-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.7;
}
.menu-note-icon { flex-shrink: 0; width: 20px; height: 20px; color: var(--gold); margin-top: 2px; }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-intro-section { padding: 80px 0 0; }
.team-intro-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.team-intro-desc { color: var(--text-muted); line-height: 1.8; margin-top: 20px; }

.head-chef-section { padding: 80px 0; }
.head-chef-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.head-chef-img { position: relative; }
.head-chef-img-wrap { border-radius: 8px; overflow: hidden; border: 2px solid var(--border-gold); }
.head-chef-img-wrap img { width: 100%; height: 480px; object-fit: cover; }
.head-chef-quote {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--surface);
  padding: 20px 24px;
  border-radius: 8px;
  max-width: 260px;
  box-shadow: var(--shadow);
}
.hcq-icon { font-size: 2rem; line-height: 1; display: block; font-family: Georgia, serif; }
.hcq-text { font-size: 0.9rem; font-style: italic; line-height: 1.5; }
.head-chef-name {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--white);
  margin: 8px 0 4px;
}
.head-chef-role { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; text-transform: uppercase; display: block; margin-bottom: 24px; }
.head-chef-bio { color: var(--text-light); line-height: 1.8; margin-bottom: 18px; }
.head-chef-stats {
  display: flex;
  gap: 36px;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border-gold);
}

.team-grid-section {
  padding: 80px 0;
  background: var(--surface-low);
}
.team-grid-header { text-align: center; margin-bottom: 60px; }
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.team-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}
.team-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.team-card-img { height: 280px; overflow: hidden; }
.team-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.team-card:hover .team-card-img img { transform: scale(1.06); }
.team-card-info { padding: 24px; }
.team-card-name { font-family: var(--font-heading); font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.team-card-role { color: var(--gold); font-size: 0.78rem; letter-spacing: 0.5px; text-transform: uppercase; display: block; margin-bottom: 12px; }
.team-card-bio { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

.team-join-section { padding: 100px 0; }
.team-join-inner { text-align: center; }
.team-join-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--white);
  margin: 12px 0 20px;
  line-height: 1.2;
}
.team-join-title em { color: var(--gold); font-style: italic; }
.team-join-desc { color: var(--text-muted); max-width: 560px; margin: 0 auto 36px; line-height: 1.8; }

/* ============================================================
   TABLES / BOOKING PAGE
   ============================================================ */
.tables-main-section { padding: 80px 0; }
.tables-main-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 60px;
  align-items: start;
}
.tables-form-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin: 10px 0 10px;
}
.tables-form-sub { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.tables-hours-card,
.tables-capacity-card,
.tables-contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px;
  margin-bottom: 24px;
}
.tables-info-title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 18px;
}
.tables-hours-list { list-style: none; }
.tables-hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid rgba(234,192,134,0.12);
  color: var(--text-light);
  font-size: 0.9rem;
}
.tables-hours-list li:last-child { border-bottom: none; }
.th-meal { font-weight: 700; }
.th-time { color: var(--gold); }
.tables-hours-note { margin-top: 14px; font-size: 0.78rem; color: var(--text-muted); }

.tables-dining-options { display: flex; flex-direction: column; gap: 16px; }
.tdo-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.tdo-item svg { width: 22px; height: 22px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.tdo-item strong { display: block; color: var(--white); margin-bottom: 2px; font-size: 0.95rem; }
.tdo-item p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

.tables-contact-card p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 12px; }
.tables-phone-link {
  display: block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 6px;
  transition: color 0.3s;
}
.tables-phone-link:hover { color: var(--gold-light); }

/* Gallery */
.tables-gallery-section { padding: 80px 0; background: var(--surface-low); }
.tables-gallery-header { text-align: center; margin-bottom: 50px; }
.tables-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 6px;
}
.tg-item { overflow: hidden; border-radius: 6px; }
.tg-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.tg-item:hover img { transform: scale(1.06); }
.tg-wide { grid-column: span 2; }

/* FAQ */
.tables-faq-section { padding: 80px 0; }
.tables-faq-header { text-align: center; margin-bottom: 50px; }
.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.faq-item {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 10px;
  padding: 24px;
  transition: border-color 0.3s, background 0.3s;
}
.faq-item:hover { border-color: var(--gold); background: rgba(234,192,134,0.05); }
.faq-q { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 10px; }
.faq-a { font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-section { padding: 80px 0 40px; }
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), border-color var(--transition);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--gold); }
.contact-card-icon {
  width: 48px; height: 48px;
  margin: 0 auto 16px;
  color: var(--gold);
}
.contact-card-icon svg { width: 100%; height: 100%; }
.contact-card-title { font-family: var(--font-heading); font-size: 1.1rem; color: var(--white); margin-bottom: 10px; }
.contact-card-text { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.contact-card-link { color: var(--gold); font-size: 0.85rem; font-weight: 700; transition: color 0.3s; }
.contact-card-link:hover { color: var(--gold-light); }
.contact-open-badge {
  display: inline-block;
  background: rgba(26,92,46,0.7);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 3px 14px;
}

.contact-main-section { padding: 60px 0 80px; }
.contact-main-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.contact-form-title { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin: 10px 0 10px; }
.contact-form-sub { color: var(--text-muted); margin-bottom: 32px; line-height: 1.7; }

.contact-map { height: 340px; border-radius: 12px; overflow: hidden; border: 1px solid var(--border-gold); }
.contact-map-info { margin-top: 20px; }
.contact-map-info-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 12px;
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}
.contact-map-info-item svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

.contact-extra { padding: 60px 0 80px; background: var(--surface-low); }
.contact-extra-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-extra-title { font-family: var(--font-heading); font-size: 1.5rem; color: var(--white); margin-bottom: 10px; }
.contact-extra-sub { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 24px; line-height: 1.7; }
.contact-social-links { display: flex; flex-direction: column; gap: 12px; }
.contact-social-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: border-color 0.3s, background 0.3s;
}
.contact-social-item:hover { border-color: var(--gold); background: rgba(234,192,134,0.06); color: var(--gold); }
.contact-social-item svg { width: 20px; height: 20px; color: var(--gold); flex-shrink: 0; }

.contact-faq-list { display: flex; flex-direction: column; gap: 18px; }
.contact-faq-item {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-gold);
}
.contact-faq-item:last-child { border-bottom: none; padding-bottom: 0; }
.contact-faq-q { font-family: var(--font-heading); font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.contact-faq-a { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; }

/* ============================================================
   INNER-PAGE RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: repeat(2, 1fr); }
  .contact-main-inner { grid-template-columns: 1fr; }
  .contact-extra-inner { grid-template-columns: 1fr; }
  .menu-items-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd) { padding-right: 0; border-right: none; }
  .menu-item:nth-child(even) { padding-left: 0; }
  .tables-main-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .story-inner { grid-template-columns: 1fr; }
  .story-img-side { display: none; }
  .story-badge { display: none; }
  .timeline::before { left: 16px; }
  .timeline-item { width: 100%; padding-left: 44px; text-align: left; }
  .timeline-left { padding-right: 0; }
  .timeline-left .timeline-dot,
  .timeline-right .timeline-dot { left: 10px; right: auto; }
  .head-chef-inner { grid-template-columns: 1fr; }
  .head-chef-quote { display: none; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .about-gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .ag-tall { grid-row: auto; }
  .ag-wide { grid-column: auto; }
  .tables-gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .tg-wide { grid-column: auto; }
  .menu-category-header { flex-direction: column; align-items: flex-start; gap: 20px; }
  .menu-cat-img { width: 100%; height: 200px; }
}
