/* LUMIÈRE — restaurant site styles.
   Design tokens (deliberate, not defaults):
   - Warm near-black (#17130F, brown undertone — not a tinted #111) + ivory, editorial
     dark palette rather than the common cream/terracotta "AI restaurant site" look
   - Deep bottle green + muted brass as the two accent notes (menu genre convention,
     used sparingly — not on every heading)
   - Fraunces (serif, italic-capable) for display headings; Work Sans for body/UI —
     two families with a clear role split
   - Left-aligned editorial layout, asymmetric hero, no numbered-step markers
     (nothing here is actually a sequence)
*/

:root {
  --ink: #17130f;
  --ink-soft: #211b15;
  --ivory: #f4efe6;
  --ivory-dim: rgba(244,239,230,0.72);
  --green: #33493a;
  --green-light: #4c6b57;
  --brass: #b08d57;
  --line: rgba(23,19,15,0.12);
  --line-dark: rgba(244,239,230,0.14);

  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--ivory);
  font-weight: 300;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; margin: 0 0 0.5em; line-height: 1.12; }
p { margin: 0 0 1em; }

.kicker {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: var(--brass);
  margin: 0 0 0.9em;
  text-transform: uppercase;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-light { background: var(--ivory); color: var(--ink); }
.btn-light:hover { background: var(--brass); color: var(--ink); }
.btn-outline { border-color: var(--line-dark); color: var(--ivory); }
.btn-outline:hover { border-color: var(--brass); color: var(--brass); }
.btn-block { width: 100%; border: none; }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: linear-gradient(to bottom, rgba(23,19,15,0.75), transparent);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 32px;
}
.brand {
  font-family: var(--font-display); font-style: italic; font-size: 1.4rem;
  color: var(--ivory); text-decoration: none;
}
.primary-nav { display: flex; align-items: center; gap: 30px; }
.primary-nav a {
  color: var(--ivory-dim); text-decoration: none; font-size: 0.88rem; letter-spacing: 0.02em;
}
.primary-nav a:hover { color: var(--ivory); }
.nav-cta {
  border: 1px solid var(--line-dark); padding: 9px 18px; border-radius: 2px; color: var(--ivory) !important;
}
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--ivory); margin: 5px 0; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: flex-end; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(23,19,15,0.92) 10%, rgba(23,19,15,0.35) 55%, rgba(23,19,15,0.55) 100%);
}
.hero-content { position: relative; max-width: 640px; padding: 0 32px 100px; color: var(--ivory); }
.hero-eyebrow { color: var(--brass); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 18px; }
.hero-content h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin-bottom: 22px; }
.hero-content h1 em { font-style: italic; color: var(--brass); }
.hero-lede { font-size: 1.06rem; color: var(--ivory-dim); max-width: 46ch; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }
.section-dark { background: var(--ink); color: var(--ivory); }
.section-head { max-width: 640px; margin-bottom: 56px; }
.section-head h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
.section-head-light .kicker { color: var(--brass); }
.section-lede { color: rgba(23,19,15,0.65); font-size: 1.02rem; }
.section-dark .section-lede { color: var(--ivory-dim); }

/* ---------- Menu ---------- */
.menu-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 56px; }
.menu-group h3 {
  font-size: 1.05rem; font-style: italic; color: var(--green);
  border-bottom: 1px solid var(--line); padding-bottom: 14px; margin-bottom: 22px;
}
.menu-item { margin-bottom: 22px; }
.menu-item-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  font-size: 1rem; margin-bottom: 4px;
}
.menu-price { color: var(--brass); font-variant-numeric: tabular-nums; }
.menu-item-desc { font-size: 0.86rem; color: rgba(23,19,15,0.6); margin: 0; }

/* ---------- Featured dishes ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feature-card { margin: 0; }
.feature-card img { width: 100%; height: 340px; object-fit: cover; border-radius: 2px; }
.feature-card figcaption {
  margin-top: 14px; font-family: var(--font-display); font-style: italic; color: var(--ivory); font-size: 1.05rem;
}

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 70px; align-items: center; }
.about-image img { border-radius: 2px; }
.about-copy p { color: rgba(23,19,15,0.7); }
.about-stats { display: flex; gap: 40px; margin-top: 30px; }
.about-stats strong { display: block; font-family: var(--font-display); font-size: 1.9rem; color: var(--green); }
.about-stats span { font-size: 0.82rem; color: rgba(23,19,15,0.55); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid img { width: 100%; height: 260px; object-fit: cover; border-radius: 2px; }
.gallery-grid img:nth-child(1), .gallery-grid img:nth-child(5) { height: 340px; }

/* ---------- Location ---------- */
.location-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.location-address { font-size: 1.1rem; }
.link-arrow { color: var(--green); text-decoration: none; border-bottom: 1px solid var(--green); padding-bottom: 2px; font-size: 0.92rem; }
.hours { margin-top: 40px; }
.hours h3 { font-size: 1rem; font-style: italic; margin-bottom: 16px; }
.hours-row { display: flex; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.map-embed { border-radius: 2px; overflow: hidden; border: 1px solid var(--line); }
.map-embed iframe { width: 100%; height: 380px; border: 0; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: start; }
.contact-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 8px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { display: block; font-size: 0.82rem; color: var(--ivory-dim); }
.contact-form label span { display: block; margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--ink-soft); border: 1px solid var(--line-dark);
  color: var(--ivory); padding: 12px 14px; border-radius: 2px; font-family: var(--font-body); font-size: 0.94rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--brass); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note { color: var(--brass); font-size: 0.86rem; margin-top: 4px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: var(--ivory-dim); border-top: 1px solid var(--line-dark); padding: 48px 0; }
.footer-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 20px;
}
.footer-brand { font-family: var(--font-display); font-style: italic; color: var(--ivory); font-size: 1.15rem; }
.footer-nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-nav a { text-decoration: none; color: var(--ivory-dim); font-size: 0.86rem; }
.footer-nav a:hover { color: var(--ivory); }
.footer-copy { width: 100%; font-size: 0.78rem; color: rgba(244,239,230,0.4); margin-top: 12px; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .menu-columns, .feature-grid, .about-grid, .location-grid, .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
  .section { padding: 72px 0; }
}
@media (max-width: 700px) {
  .primary-nav { position: fixed; top: 68px; left: 0; right: 0; background: var(--ink); flex-direction: column; align-items: flex-start; padding: 20px 32px; gap: 18px; transform: translateY(-140%); transition: transform 0.25s ease; }
  .primary-nav.open { transform: translateY(0); }
  .nav-toggle { display: block; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
