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

:root {
  --ink: #100d0a;
  --amber: #d17a2b;
  --amber-dark: #a95f1e;
  --text: #ece5d8;
  --text-soft: #9d9384;
  --line: rgba(255,255,255,0.1);
  --panel: #1a1611;
  --max: 1200px;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, .logo { font-family: 'Cormorant Garamond', serif; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.eyebrow { color: var(--amber); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.6rem; }
.eyebrow.center { text-align: center; }
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.85em 1.8em; font-size: 0.82rem; font-weight: 600; border-radius: 2px; transition: all 0.2s ease; }
.btn-amber { background: var(--amber); color: #1a1005; border: none; }
.btn-amber:hover { background: var(--amber-dark); }
.btn-outline { background: transparent; border: 1px solid var(--text); color: var(--text); }
.btn-outline:hover { background: var(--text); color: var(--ink); }
.link-arrow { font-size: 0.82rem; font-weight: 600; color: var(--amber); }

/* ---------- Header ---------- */
.site-header { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(16,13,10,0.92); backdrop-filter: blur(6px); z-index: 50; }
.header-inner { max-width: var(--max); margin: 0 auto; padding: 1.3rem 2rem; display: flex; align-items: center; gap: 2rem; }
.logo { font-size: 1.4rem; font-weight: 700; }
.main-nav { display: flex; gap: 1.8rem; flex: 1; justify-content: center; }
.main-nav a { font-size: 0.85rem; color: var(--text-soft); }
.main-nav a.active, .main-nav a:hover { color: var(--amber); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 0.4rem; }
.nav-toggle span { width: 22px; height: 1.5px; background: var(--text); display: block; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 520px; display: flex; align-items: center; overflow: hidden; }
.hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(16,13,10,0.88) 32%, rgba(16,13,10,0.35) 65%, rgba(16,13,10,0.1) 100%); }
.hero-text { position: relative; z-index: 2; max-width: 620px; padding: 3rem; }
.hero-text h1 { font-size: 3rem; font-weight: 600; line-height: 1.12; margin-bottom: 1.2rem; }
.hero-text .lead { color: var(--text-soft); max-width: 38ch; margin-bottom: 1.8rem; }

/* ---------- Steps ---------- */
.steps { max-width: var(--max); margin: 0 auto; padding: 3rem 2rem 5rem; text-align: center; }
.steps h2 { font-size: 2.1rem; margin-bottom: 3rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-bottom: 3rem; text-align: left; }
.step { background: var(--panel); border-radius: 6px; padding: 1.8rem; border: 1px solid var(--line); }
.step-num { color: var(--amber); font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; }
.step h3 { font-size: 1.05rem; margin: 0.7rem 0 0.5rem; }
.step p { color: var(--text-soft); font-size: 0.85rem; }
.steps-images { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-bottom: 2.5rem; }
.steps-images img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; transition: transform 0.4s ease; }
.steps-images img:hover { transform: scale(1.04); }
.center-btn { display: inline-flex; }

/* ---------- Split ---------- */
.split { background: var(--panel); padding: 5rem 0; }
.split { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 5rem auto 0; padding: 0 2rem 5rem; gap: 3rem; align-items: center; }
.split-text h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 1.2rem; }
.split-text p { color: var(--text-soft); max-width: 40ch; margin-bottom: 1.8rem; }
.split-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.split-card img { width: 100%; aspect-ratio: 1/1.1; object-fit: cover; border-radius: 6px; margin-bottom: 0.8rem; }
.split-card span { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; margin-bottom: 0.4rem; }

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 3rem 2rem 1.5rem; }
.footer-grid { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; }
.footer-grid .logo { font-size: 1.2rem; display: block; margin-bottom: 0.6rem; }
.footer-grid p { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 0.4rem; }
.footer-grid h4 { font-size: 0.9rem; margin-bottom: 0.8rem; color: var(--amber); }
.social-icons { display: flex; gap: 0.6rem; }
.social-icons a { width: 30px; height: 30px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; }
.social-icons a:hover { background: var(--amber); color: #1a1005; }
.footer-bottom { max-width: var(--max); margin: 0 auto; border-top: 1px solid var(--line); padding-top: 1.2rem; font-size: 0.78rem; color: var(--text-soft); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .header-inner { flex-wrap: wrap; }
  .nav-toggle { display: flex; order: 2; }
  .main-nav { order: 3; width: 100%; flex-direction: column; align-items: flex-start; max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
  .main-nav.open { max-height: 300px; padding-top: 1rem; }
  .hero { min-height: 420px; }
  .hero-text { padding: 1.6rem; }
  .hero-text h1 { font-size: 2.1rem; }
  .steps { padding: 3rem 1.4rem; }
  .steps-grid, .steps-images, .split-cards { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---------- Menu preview grid ---------- */
.menu-preview { max-width: var(--max); margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.center-h { font-size: 2.1rem; margin-bottom: 2.8rem; }
.menu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; text-align: left; }
.dish-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; overflow: hidden; cursor: pointer; transition: transform 0.25s ease, border-color 0.25s ease; }
.dish-card:hover { transform: translateY(-4px); border-color: var(--amber); }
.dish-img { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.dish-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.dish-card:hover .dish-img img { transform: scale(1.06); }
.dish-tag { position: absolute; top: 0.8rem; left: 0.8rem; background: var(--amber); color: #1a1005; font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.35em 0.7em; border-radius: 2px; }
.dish-row { display: flex; align-items: center; justify-content: space-between; padding: 1rem 1.1rem; }
.dish-row h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; }
.dish-row span { color: var(--amber); font-weight: 700; }

/* ---------- Breadcrumb ---------- */
.breadcrumb { max-width: var(--max); margin: 0 auto; padding: 1.6rem 2rem 0; font-size: 0.82rem; color: var(--text-soft); }
.breadcrumb a:hover { color: var(--amber); }
.breadcrumb span { margin: 0 0.4rem; }

/* ---------- Dish detail page ---------- */
.pdp { max-width: var(--max); margin: 0 auto; padding: 1.6rem 2rem 5rem; display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; }
.pdp-gallery img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 8px; }
.pdp-tag { display: inline-block; background: var(--amber); color: #1a1005; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; padding: 0.35em 0.8em; border-radius: 2px; margin-bottom: 0.9rem; }
.pdp-info h1 { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 600; margin-bottom: 0.8rem; }
.pdp-price { font-size: 1.5rem; color: var(--amber); font-weight: 700; margin-bottom: 1.2rem; }
.pdp-desc { color: var(--text-soft); font-size: 0.95rem; max-width: 48ch; margin-bottom: 2rem; }

.pdp-tabs { border-top: 1px solid var(--line); padding-top: 1.5rem; margin-bottom: 3rem; }
.pdp-tab-heads { display: flex; gap: 1.8rem; margin-bottom: 1.3rem; border-bottom: 1px solid var(--line); }
.pdp-tab-head { background: none; border: none; padding: 0 0 0.9rem; font-size: 0.85rem; font-weight: 600; color: var(--text-soft); border-bottom: 2px solid transparent; margin-bottom: -1px; cursor: pointer; }
.pdp-tab-head.active { color: var(--amber); border-color: var(--amber); }
.pdp-tab-panel { display: none; font-size: 0.92rem; color: var(--text-soft); line-height: 1.75; }
.pdp-tab-panel.active { display: block; }

.related-dishes { max-width: var(--max); margin: 0 auto; padding: 0 2rem 5rem; }
.related-dishes h2 { font-size: 1.6rem; margin-bottom: 1.8rem; }

@media (max-width: 860px) {
  .pdp { grid-template-columns: 1fr; gap: 2rem; padding: 1.2rem 1.4rem 3rem; }
  .breadcrumb { padding: 1.2rem 1.4rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-preview { padding: 3rem 1.4rem; }
  .related-dishes { padding: 0 1.4rem 3rem; }
}

/* ---------- Press section ---------- */
.press { max-width: var(--max); margin: 0 auto; padding: 5rem 2rem; text-align: center; }
.press-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; margin-top: 2.5rem; text-align: left; }
.press-quote { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 1.8rem; }
.press-quote p { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-style: italic; line-height: 1.5; margin-bottom: 1rem; color: var(--text); }
.press-quote cite { font-size: 0.78rem; color: var(--amber); font-style: normal; font-weight: 600; letter-spacing: 0.03em; }

/* ---------- Modals (reservation / info) ---------- */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 200; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.25s ease; padding: 1.4rem; }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal-box { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 2rem; max-width: 440px; width: 100%; max-height: 85vh; overflow-y: auto; position: relative; transform: translateY(12px); transition: transform 0.25s ease; color: var(--text); }
.modal-overlay.open .modal-box { transform: translateY(0); }
.modal-close { position: absolute; top: 1rem; right: 1rem; font-size: 1.4rem; background: none; border: none; color: var(--text); line-height: 1; }
.modal-box h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; margin-bottom: 0.6rem; }
.modal-trim { color: var(--text-soft); font-size: 0.85rem; margin-bottom: 1.2rem; }
.modal-box .form-field { margin-bottom: 1rem; }
.modal-box .form-field label { display: block; font-size: 0.78rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--text-soft); }
.modal-box .form-field input, .modal-box .form-field select { width: 100%; padding: 0.7em 0.9em; border: 1px solid var(--line); border-radius: 4px; font-family: inherit; font-size: 0.9rem; background: rgba(255,255,255,0.04); color: var(--text); }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-success { color: #6bbf6b; font-weight: 600; font-size: 0.9rem; }
.w-full { display: block; width: 100%; text-align: center; }
#infoBody p { color: var(--text-soft); font-size: 0.92rem; line-height: 1.7; }

/* ---------- Body overlay backdrop ---------- */
.body-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 150; opacity: 0; visibility: hidden; transition: opacity 0.3s ease; }
.body-overlay.open { opacity: 1; visibility: visible; }

@media (max-width: 900px) {
  .press-grid { grid-template-columns: 1fr; }
}
