/* ── Ember & Oak — Dark Luxury Fine Dining ─────────────────────────────── */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:       #0d0d0d;
  --bg2:      #111111;
  --bg3:      #161616;
  --amber:    #E8975E;
  --amber2:   #C8763A;
  --amber3:   #F5B07A;
  --gold:     #D4A843;
  --text:     #F5F0EA;
  --muted:    #8A7A6A;
  --border:   rgba(232,151,94,.15);
  --ff-serif: 'Playfair Display', Georgia, serif;
  --ff-sans:  'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--ff-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 48px;
  background: rgba(13,13,13,.88);
  border-bottom: 1px solid rgba(232,151,94,.08);
  backdrop-filter: blur(16px);
  transition: padding .3s;
}
.nav.scrolled { padding: 12px 48px; background: rgba(13,13,13,.97); }
.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--amber);
  text-decoration: none;
}
.nav-logo span { color: var(--text); }
.nav-links { display: flex; gap: 32px; list-style: none; }
.nav-links a {
  font-size: .83rem; font-weight: 500; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  color: var(--muted); transition: color .2s;
}
.nav-links a:hover { color: var(--amber); }
.nav-cta {
  padding: 10px 24px; border-radius: 2px;
  background: var(--amber); color: #0d0d0d;
  font-size: .8rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s;
}
.nav-cta:hover { background: var(--amber3); transform: translateY(-1px); }

/* ── HERO ────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 55% at 50% 40%, rgba(200,118,58,.13) 0%, transparent 65%),
    radial-gradient(ellipse 40% 30% at 20% 80%, rgba(212,168,67,.07) 0%, transparent 50%),
    linear-gradient(180deg, #0d0d0d 0%, #130d07 60%, #0d0d0d 100%);
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 18px; border-radius: 40px;
  border: 1px solid rgba(232,151,94,.25);
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--ff-serif);
  font-size: clamp(3.2rem, 8vw, 7rem);
  font-weight: 700; line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}
.hero h1 .sub {
  display: block; font-size: clamp(1rem, 2.5vw, 1.7rem);
  font-weight: 400; letter-spacing: .35em;
  text-transform: uppercase; color: var(--amber);
  font-family: var(--ff-sans); margin-bottom: 12px;
}
.hero-desc {
  max-width: 520px; margin: 24px auto 36px;
  font-size: 1.05rem; color: var(--muted); line-height: 1.7;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  padding: 14px 34px; border-radius: 2px;
  background: var(--amber); color: #0d0d0d;
  font-weight: 700; font-size: .88rem; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  transition: background .2s, transform .15s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { background: var(--amber3); transform: translateY(-2px); }
.btn-ghost {
  padding: 14px 34px; border-radius: 2px;
  border: 1px solid rgba(232,151,94,.4); color: var(--amber);
  font-weight: 600; font-size: .88rem; letter-spacing: .06em;
  text-transform: uppercase; text-decoration: none;
  transition: border-color .2s, background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-ghost:hover { border-color: var(--amber); background: rgba(232,151,94,.06); }
.hero-divider {
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--amber), transparent);
  opacity: .25;
}

/* ── SECTION WRAPPER ─────────────────────────────────────────────────── */
section { padding: 96px 24px; }
.container { max-width: 1140px; margin: 0 auto; }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 12px;
}
.section-eyebrow::before, .section-eyebrow::after {
  content: ''; display: block; width: 28px; height: 1px; background: var(--amber); opacity: .5;
}
.section-title {
  font-family: var(--ff-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; line-height: 1.15;
  margin-bottom: 16px;
}
.section-subtitle { color: var(--muted); max-width: 560px; line-height: 1.7; margin-bottom: 56px; }

/* ── DISHES ──────────────────────────────────────────────────────────── */
.dishes { background: var(--bg2); }
.dishes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px,1fr)); gap: 28px; }
.dish-card {
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg3);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.dish-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232,151,94,.35);
  box-shadow: 0 24px 48px rgba(0,0,0,.45), 0 0 0 1px rgba(232,151,94,.08);
}
.dish-thumb {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.dish-thumb-1 {
  background: radial-gradient(ellipse at 40% 35%, #7B3B15 0%, #3D1A06 40%, #1A0A02 100%);
}
.dish-thumb-2 {
  background: radial-gradient(ellipse at 60% 40%, #5C3D1A 0%, #2A1A08 40%, #0D0804 100%),
    linear-gradient(135deg, transparent 30%, rgba(212,168,67,.12));
}
.dish-thumb-3 {
  background: radial-gradient(ellipse at 50% 50%, #1A0D05 0%, #3A2010 50%, #1A0D05 100%);
}
.dish-thumb-art {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem; opacity: .65;
}
.dish-price-tag {
  position: absolute; top: 14px; right: 14px;
  background: var(--amber); color: #0d0d0d;
  font-weight: 800; font-size: .88rem; letter-spacing: .04em;
  padding: 4px 12px; border-radius: 2px;
}
.dish-body { padding: 24px; }
.dish-cat {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--amber); margin-bottom: 8px;
}
.dish-name {
  font-family: var(--ff-serif); font-size: 1.3rem;
  font-weight: 700; margin-bottom: 10px;
}
.dish-desc { color: var(--muted); font-size: .9rem; line-height: 1.65; }

/* ── STORY ───────────────────────────────────────────────────────────── */
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
@media (max-width: 768px) { .story-grid { grid-template-columns: 1fr; gap: 40px; } }
.story-visual {
  height: 460px; border-radius: 4px;
  background: radial-gradient(ellipse at 30% 40%, #4A2010 0%, #1E0D05 50%, #0d0d0d 100%),
    linear-gradient(135deg, rgba(212,168,67,.06) 0%, transparent 60%);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem; color: rgba(232,151,94,.4);
  position: relative; overflow: hidden;
}
.story-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(232,151,94,.04) 0%, transparent 50%);
}
.story-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: rgba(13,13,13,.9); border: 1px solid var(--border);
  padding: 12px 20px; border-radius: 4px;
  font-size: .8rem; color: var(--amber); font-weight: 600;
}
.stats-row { display: flex; gap: 36px; margin-top: 40px; flex-wrap: wrap; }
.stat-item { }
.stat-num {
  font-family: var(--ff-serif); font-size: 2.2rem;
  font-weight: 700; color: var(--amber); line-height: 1;
}
.stat-label { font-size: .78rem; color: var(--muted); margin-top: 4px; letter-spacing: .04em; }

/* ── RESERVE ─────────────────────────────────────────────────────────── */
.reserve { background: var(--bg2); }
.reserve-inner {
  background: var(--bg3); border: 1px solid var(--border); border-radius: 4px;
  padding: 56px 48px; max-width: 700px; margin: 0 auto;
}
@media (max-width: 600px) { .reserve-inner { padding: 36px 24px; } }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: .78rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg); border: 1px solid rgba(232,151,94,.15);
  border-radius: 2px; padding: 12px 16px;
  color: var(--text); font-family: var(--ff-sans); font-size: .93rem;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: rgba(232,151,94,.5); }
.form-group textarea { min-height: 100px; resize: vertical; }
.form-group select option { background: #1a1a1a; }
.form-submit {
  width: 100%; padding: 14px; border-radius: 2px;
  background: var(--amber); color: #0d0d0d;
  font-weight: 700; font-size: .92rem; letter-spacing: .08em;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: background .2s, transform .15s;
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.form-submit:hover { background: var(--amber3); transform: translateY(-1px); }

/* ── TESTIMONIALS ────────────────────────────────────────────────────── */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 24px; }
.testi-card {
  background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
  padding: 32px; position: relative;
  transition: border-color .25s, transform .25s;
}
.testi-card:hover { border-color: rgba(232,151,94,.3); transform: translateY(-4px); }
.testi-quote {
  font-family: var(--ff-serif); font-size: 3rem;
  color: var(--amber); opacity: .35; line-height: .8;
  margin-bottom: 12px;
}
.testi-text { color: var(--muted); font-size: .92rem; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; margin-bottom: 12px; }
.testi-author { font-weight: 700; font-size: .9rem; }
.testi-role { font-size: .78rem; color: var(--muted); }

/* ── FOOTER ──────────────────────────────────────────────────────────── */
.footer {
  background: #080808; border-top: 1px solid rgba(232,151,94,.1);
  padding: 60px 24px 28px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand p { color: var(--muted); font-size: .88rem; line-height: 1.7; margin-top: 12px; max-width: 280px; }
.footer-heading { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--amber); margin-bottom: 16px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--muted); text-decoration: none; font-size: .88rem; transition: color .2s; }
.footer-links a:hover { color: var(--amber); }
.footer-bottom {
  border-top: 1px solid rgba(232,151,94,.08);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: .8rem; color: var(--muted); }
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(232,151,94,.15);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: .85rem;
  text-decoration: none; transition: border-color .2s, color .2s;
}
.footer-socials a:hover { border-color: var(--amber); color: var(--amber); }

/* ── RESPONSIVE ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav.scrolled { padding: 12px 24px; }
}
