/* ============================================================
   MODERN BISTRO — style.css
   Aesthetic: Dark Luxury · Editorial · Bronze & Charcoal
   ============================================================ */

/* ---- TOKENS ---- */
:root {
  --ink: #0a0a0a;
  --ink-2: #111111;
  --ink-3: #1a1a1a;
  --ink-4: #222222;
  --bronze: #cd7f32;
  --bronze-light: #e8a558;
  --bronze-dark: #a05e1c;
  --cream: #f0ebe0;
  --muted: #8a8070;
  --muted-2: #6a6058;
  --white: #ffffff;
  --border: rgba(255,255,255,.07);
  --border-bronze: rgba(205,127,50,.35);
  --glass: rgba(255,255,255,.04);
  --shadow: 0 20px 60px rgba(0,0,0,.6);
  --shadow-sm: 0 8px 24px rgba(0,0,0,.4);
  --r-sm: 10px;
  --r-md: 18px;
  --r-lg: 28px;
}

/* ---- RESET ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Jost', 'Helvetica Neue', sans-serif;
  background: radial-gradient(ellipse at top, #1e1a14 0%, #0d0d0d 50%, #080808 100%);
  color: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; font-family: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

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

/* ---- GLOWS ---- */
.glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}
.glow-1 {
  width: 700px; height: 500px;
  top: -200px; left: -150px;
  background: radial-gradient(circle, rgba(205,127,50,.08), transparent 70%);
  animation: glowFloat 20s ease-in-out infinite;
}
.glow-2 {
  width: 500px; height: 400px;
  top: 60%; right: -100px;
  background: radial-gradient(circle, rgba(180,100,20,.07), transparent 70%);
  animation: glowFloat 28s ease-in-out infinite reverse 4s;
}
@keyframes glowFloat {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(30px,-40px); }
}

/* ---- CONTAINER ---- */
.container {
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 0 28px;
  position: relative;
  z-index: 1;
}

/* ---- TYPE ---- */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.12;
  font-weight: 600;
}
h1 { font-size: clamp(3rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: 1.25rem; font-weight: 600; }
em { font-style: italic; color: var(--bronze-light); }
.overline {
  display: inline-block;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.overline.bronze { color: var(--bronze); }

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bronze);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .04em;
  padding: 14px 32px;
  border-radius: 999px;
  transition: background .25s, transform .2s, box-shadow .25s;
  box-shadow: 0 4px 24px rgba(205,127,50,.35);
}
.btn-primary:hover { background: var(--bronze-light); transform: translateY(-2px); box-shadow: 0 10px 36px rgba(205,127,50,.45); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  background: transparent;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .9rem;
  padding: 14px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  transition: border-color .25s, background .25s, transform .2s;
}
.btn-outline:hover { border-color: var(--bronze); color: var(--bronze); transform: translateY(-2px); }

/* ---- NAVBAR ---- */
#navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,.5); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 16px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: .02em;
}
.logo em { color: var(--bronze); }
.logo-mark { color: var(--bronze); font-size: .9rem; }

.nav-links {
  display: flex;
  gap: 6px;
}
.nav-links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--muted);
  padding: 7px 14px;
  border-radius: 999px;
  transition: color .2s, background .2s;
  letter-spacing: .04em;
}
.nav-links a:hover { color: var(--bronze); background: rgba(205,127,50,.1); }

.nav-right { display: flex; align-items: center; gap: 12px; }
.reserve-btn {
  background: transparent;
  border: 1px solid var(--border-bronze);
  color: var(--bronze);
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .06em;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.reserve-btn:hover { background: rgba(205,127,50,.1); transform: translateY(-1px); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
}
.burger span {
  display: block;
  width: 20px; height: 1.5px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.burger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:last-child { transform: translateY(-6.5px) rotate(-45deg); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 8px 28px 20px;
  border-top: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-weight: 500;
  font-size: .9rem;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mobile-nav a:last-child { border: none; }
.mobile-nav a:hover { color: var(--bronze); }

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 80px 0 60px;
}
.hero-bg-orb {
  position: absolute;
  width: 800px; height: 800px;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(205,127,50,.07) 0%, transparent 65%);
  pointer-events: none;
  animation: orbPulse 8s ease-in-out infinite;
}
@keyframes orbPulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.06); }
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}

.hero-text { position: relative; z-index: 2; }
.hero-text h1 { margin: 10px 0 22px; }
.hero-text p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-accolades { display: flex; align-items: center; gap: 20px; }
.accolade { display: flex; align-items: center; gap: 10px; }
.accolade span { color: var(--bronze); font-size: .9rem; }
.accolade div { display: flex; flex-direction: column; }
.accolade strong { font-size: .82rem; font-weight: 600; color: var(--cream); }
.accolade small { font-size: .7rem; color: var(--muted); }
.accolade-div { width: 1px; height: 32px; background: var(--border); }

/* HERO CARDS */
.hero-cards { display: flex; flex-direction: column; gap: 14px; position: relative; z-index: 2; }

.feature-card {
  background: linear-gradient(140deg, rgba(28,24,18,.95), rgba(12,10,8,.98));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,127,50,.5), transparent);
}

.card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}
.card-emoji { font-size: 2rem; }
.card-label { display: flex; flex-direction: column; gap: 2px; }
.card-label small { font-size: .7rem; color: var(--muted); letter-spacing: .06em; text-transform: uppercase; }
.card-label strong { font-size: .95rem; color: var(--cream); }
.live-dot {
  width: 8px; height: 8px;
  background: #4caf50;
  border-radius: 50%;
  margin-left: auto;
  box-shadow: 0 0 0 2px rgba(76,175,80,.3);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { box-shadow: 0 0 0 2px rgba(76,175,80,.3); }
  50% { box-shadow: 0 0 0 6px rgba(76,175,80,.1); }
}
.main-card h3 { font-size: 1.4rem; margin-bottom: 8px; color: var(--cream); }
.main-card p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: 20px; }
.card-foot { display: flex; align-items: center; justify-content: space-between; }
.price-tag { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--bronze); }
.price-tag small { font-size: .75rem; color: var(--muted); }
.mini-btn {
  background: var(--bronze);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  padding: 9px 20px;
  border-radius: 999px;
  transition: background .2s, transform .2s;
}
.mini-btn:hover { background: var(--bronze-light); transform: translateY(-1px); }

.side-cards { display: flex; gap: 14px; }
.side-card {
  flex: 1;
  background: linear-gradient(140deg, rgba(24,20,16,.95), rgba(12,10,8,.98));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: border-color .3s;
}
.side-card:hover { border-color: var(--border-bronze); }
.side-emoji { font-size: 1.6rem; }
.side-card div { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.side-card strong { font-size: .82rem; color: var(--cream); }
.side-card small { font-size: .7rem; color: var(--muted); }
.side-price { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--bronze); white-space: nowrap; }
.new-tag {
  background: rgba(205,127,50,.15);
  border: 1px solid var(--border-bronze);
  color: var(--bronze);
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 999px;
  white-space: nowrap;
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--muted-2), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { opacity: .4; transform: scaleY(1); transform-origin: top; }
  50% { opacity: 1; }
}

/* ---- MARQUEE ---- */
.marquee-strip {
  overflow: hidden;
  background: var(--bronze);
  padding: 13px 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.marquee-inner {
  display: inline-flex;
  gap: 32px;
  animation: marquee 28s linear infinite;
}
.dot { opacity: .5; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- SECTIONS ---- */
.section { padding: 100px 0; }

/* ---- STORY ---- */
.story-section { background: linear-gradient(180deg, transparent, rgba(20,15,10,.4), transparent); }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.story-visual { position: relative; }
.story-plate-wrap {
  width: 360px;
  height: 360px;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, rgba(205,127,50,.1), rgba(20,15,8,.9));
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7rem;
  position: relative;
  overflow: hidden;
}
.story-plate-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(205,127,50,.12), transparent 60%);
}
.story-badge {
  position: absolute;
  bottom: -16px; right: -16px;
  width: 80px; height: 80px;
  background: var(--bronze);
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  text-align: center;
  line-height: 1.3;
  box-shadow: 0 8px 24px rgba(205,127,50,.4);
}
.story-stat {
  position: absolute;
  bottom: -50px; left: -20px;
  background: rgba(20,16,12,.95);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  white-space: nowrap;
}
.stat-big { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--bronze); font-weight: 600; }
.story-stat span:last-child { font-size: .8rem; color: var(--muted); line-height: 1.4; }

.story-text h2 { margin: 8px 0 20px; }
.lead-text { font-size: 1.05rem; font-weight: 300; color: var(--cream); margin-bottom: 16px; line-height: 1.75; }
.story-text > p { font-size: .9rem; color: var(--muted); margin-bottom: 32px; }

.pillars { display: flex; flex-direction: column; gap: 16px; }
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  transition: border-color .3s;
}
.pillar:hover { border-color: var(--border-bronze); }
.pillar > span { font-size: 1.4rem; }
.pillar div { display: flex; flex-direction: column; gap: 2px; }
.pillar strong { font-size: .88rem; color: var(--cream); }
.pillar small { font-size: .75rem; color: var(--muted); }

/* ---- MENU ---- */
.menu-section { background: rgba(0,0,0,.3); }
.section-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}
.section-sub { max-width: 360px; color: var(--muted); font-size: .9rem; padding-top: 8px; font-weight: 300; }

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}
.tab {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 9px 22px;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-size: .83rem;
  font-weight: 500;
  letter-spacing: .06em;
  transition: all .25s;
}
.tab:hover { border-color: var(--border-bronze); color: var(--bronze); background: rgba(205,127,50,.06); }
.tab.active { background: rgba(205,127,50,.15); border-color: rgba(205,127,50,.7); color: var(--bronze); }

.menu-grid {
  display: none;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.menu-grid.active { display: grid; animation: fadeIn .4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

.menu-card {
  background: linear-gradient(145deg, rgba(22,18,14,.98), rgba(10,8,6,.99));
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(0,0,0,.5); border-color: var(--border-bronze); }

.menu-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  height: 120px;
  background: var(--ec, rgba(205,127,50,.08));
  border-bottom: 1px solid var(--border);
}
.menu-body { padding: 20px; display: flex; flex-direction: column; flex: 1; gap: 8px; }
.menu-badges { display: flex; gap: 6px; flex-wrap: wrap; }

.badge {
  display: inline-flex;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid;
}
.badge.v { background: rgba(80,150,60,.1); border-color: rgba(80,150,60,.4); color: #7ec87e; }
.badge.gf { background: rgba(205,127,50,.1); border-color: var(--border-bronze); color: var(--bronze); }
.badge.chef { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.12); color: rgba(255,255,255,.6); }

.menu-card h3 { font-size: 1.1rem; color: var(--cream); }
.menu-card p { font-size: .83rem; color: var(--muted); flex: 1; line-height: 1.6; }
.menu-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.price { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; color: var(--bronze); font-weight: 600; }

.add-dish {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(205,127,50,.15);
  border: 1px solid var(--border-bronze);
  color: var(--bronze);
  font-size: 1.3rem;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, transform .2s;
}
.add-dish:hover { background: var(--bronze); color: var(--ink); transform: scale(1.15) rotate(90deg); }

/* ---- RESERVATION ---- */
.reserve-section {
  background: linear-gradient(180deg, rgba(15,10,5,.5), rgba(5,3,1,.8));
}
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.reserve-info h2 { margin: 8px 0 18px; }
.reserve-info > p { color: var(--muted); font-size: .9rem; margin-bottom: 36px; line-height: 1.8; }
.reserve-notes { display: flex; flex-direction: column; gap: 14px; }
.rnote {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
}
.rnote > span { font-size: 1.3rem; }
.rnote div { display: flex; flex-direction: column; gap: 2px; }
.rnote strong { font-size: .85rem; }
.rnote small { font-size: .75rem; color: var(--muted); }

.form-wrap {
  background: linear-gradient(145deg, rgba(20,16,12,.98), rgba(10,8,6,.99));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px;
  position: relative;
}
.form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205,127,50,.5), transparent);
}

form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 7px; }
label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
label small { text-transform: none; letter-spacing: 0; color: var(--muted-2); font-weight: 400; font-size: .7rem; }
input, select, textarea {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: .9rem;
  font-weight: 300;
  transition: border-color .25s;
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--border-bronze);
  background: rgba(205,127,50,.04);
}
input::placeholder, textarea::placeholder { color: var(--muted-2); }
select option { background: var(--ink-3); }
textarea { resize: vertical; min-height: 80px; }

.form-success {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  padding: 40px 20px;
}
.form-success.visible { display: flex; animation: fadeIn .5s ease; }
.success-icon {
  width: 60px; height: 60px;
  background: rgba(205,127,50,.15);
  border: 1px solid var(--border-bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bronze);
  font-size: 1.4rem;
}
.form-success h3 { font-size: 1.6rem; }
.form-success p { color: var(--muted); font-size: .9rem; }

/* ---- FOOTER ---- */
footer {
  background: #060606;
  border-top: 1px solid var(--border);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .logo { font-size: 1.1rem; margin-bottom: 14px; }
.footer-brand > p { font-size: .88rem; color: var(--muted); line-height: 1.8; margin-bottom: 22px; }
.socials { display: flex; gap: 8px; }
.socials a {
  display: inline-flex;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}
.socials a:hover { border-color: var(--border-bronze); color: var(--bronze); }

.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
footer h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 14px;
  font-weight: 600;
}
footer p { font-size: .85rem; color: var(--muted); margin-bottom: 4px; line-height: 1.8; }
footer a { color: var(--muted); font-size: .85rem; transition: color .2s; }
footer a:hover { color: var(--bronze); }
.footer-cta {
  display: inline-block;
  color: var(--bronze) !important;
  font-weight: 500;
  margin-top: 8px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  font-size: .75rem;
  color: var(--muted-2);
}

/* ---- TOAST ---- */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: linear-gradient(135deg, rgba(30,24,16,.98), rgba(14,10,6,.99));
  border: 1px solid var(--border-bronze);
  color: var(--cream);
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: .88rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.7);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  transition: transform .4s cubic-bezier(.34,1.56,.64,1), opacity .3s;
  white-space: nowrap;
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }
.t-check {
  width: 22px; height: 22px;
  background: rgba(205,127,50,.2);
  border: 1px solid var(--border-bronze);
  color: var(--bronze);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
}

/* ---- REVEAL ---- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease var(--d, 0s), transform .65s ease var(--d, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; padding-bottom: 60px; }
  .hero-text p { max-width: 100%; }
  .story-grid { grid-template-columns: 1fr; }
  .story-visual { display: none; }
  .menu-grid { grid-template-columns: repeat(2,1fr); }
  .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-cols { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 768px) {
  .nav-links, .reserve-btn { display: none; }
  .burger { display: flex; }
  .hero-accolades { flex-wrap: wrap; gap: 14px; }
  .side-cards { flex-direction: column; }
  .section-header { flex-direction: column; gap: 12px; }
  .menu-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

@media (max-width: 480px) {
  .hero { padding-top: 60px; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}
