/* ═══════════════════════════════════════════
   Maison Noir — Restaurant
   Palette: charcoal #1a1a1a, gold #c9a84c, cream #f5f0e8
═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700&display=swap');

:root {
  --black: #111111;
  --charcoal: #1a1a1a;
  --charcoal2: #242424;
  --gold: #c9a84c;
  --gold-d: #a8853a;
  --gold-l: #e8c96a;
  --cream: #f5f0e8;
  --cream2: #ede8df;
  --white: #ffffff;
  --muted: #8a8070;
  --border: rgba(201,168,76,0.2);
  --radius: 4px;
  --trans: 300ms ease;
  --shadow: 0 20px 60px rgba(0,0,0,0.4);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; background: var(--cream); color: var(--charcoal); line-height: 1.7; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 600; line-height: 1.2; }
.eyebrow { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.18em; color: var(--gold); }
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── NAV ── */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 0;
  transition: background var(--trans), box-shadow var(--trans);
}
.site-nav.scrolled { background: rgba(17,17,17,0.97); box-shadow: 0 2px 30px rgba(0,0,0,0.5); }
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 2rem; max-width: 1160px; margin: 0 auto;
}
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--white); letter-spacing: 0.08em; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); transition: color var(--trans); }
.nav-links a:hover { color: var(--gold); }
.nav-reserve { background: var(--gold); color: var(--black); padding: 0.55rem 1.4rem; border-radius: 2px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: background var(--trans); }
.nav-reserve:hover { background: var(--gold-l); }

/* ── HERO ── */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.92) 40%, rgba(201,168,76,0.08) 100%);
  z-index: 1;
}
.hero-img-area {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(201,168,76,0.12) 0%, transparent 70%);
  z-index: 0;
}
.hero-content { position: relative; z-index: 2; max-width: 1160px; margin: 0 auto; padding: 0 2rem; width: 100%; }
.hero-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: block; }
.hero h1 { font-size: clamp(3rem, 7vw, 5.5rem); color: var(--white); margin-bottom: 1.5rem; }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.65); max-width: 500px; margin-bottom: 2.5rem; line-height: 1.8; }
.hero-actions { display: flex; gap: 1rem; }
.btn { display: inline-block; padding: 0.85rem 2rem; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; transition: all var(--trans); cursor: pointer; border: none; font-family: 'Lato', sans-serif; }
.btn-gold { background: var(--gold); color: var(--black); }
.btn-gold:hover { background: var(--gold-l); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.3); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll { position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; color: rgba(255,255,255,0.4); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
.hero-scroll span { width: 1px; height: 50px; background: linear-gradient(to bottom, rgba(201,168,76,0.8), transparent); display: block; }

/* ── ABOUT STRIP ── */
.about-strip { background: var(--charcoal); padding: 2rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.about-strip .container { display: flex; justify-content: space-around; align-items: center; gap: 2rem; }
.strip-item { text-align: center; color: var(--white); }
.strip-item strong { display: block; font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); }
.strip-item span { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); }

/* ── STORY ── */
.story { background: var(--cream); }
.story .grid-2 { gap: 5rem; }
.story-img { position: relative; height: 540px; }
.story-img-main { width: 75%; height: 100%; object-fit: cover; position: absolute; right: 0; bottom: 0; background: var(--charcoal2); }
.story-img-accent { width: 50%; height: 55%; position: absolute; left: 0; top: 30%; border: 4px solid var(--cream); background: var(--charcoal); }
.story .eyebrow { margin-bottom: 1rem; }
.story .section-title { color: var(--charcoal); }
.story p { color: var(--muted); font-size: 1.05rem; margin-bottom: 1.5rem; }
.chef-sig { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.3rem; color: var(--gold); }

/* ── MENU SECTION ── */
.menu-section { background: var(--charcoal); }
.menu-section .section-title { color: var(--white); text-align: center; }
.menu-section .eyebrow { text-align: center; display: block; margin-bottom: 0.75rem; }
.menu-section > .container > p { text-align: center; color: rgba(255,255,255,0.5); margin-bottom: 3rem; }
.menu-tabs { display: flex; justify-content: center; gap: 0; margin-bottom: 3rem; border-bottom: 1px solid var(--border); }
.tab-btn { background: none; border: none; padding: 0.75rem 2rem; font-family: 'Lato', sans-serif; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); cursor: pointer; transition: all var(--trans); border-bottom: 2px solid transparent; margin-bottom: -1px; }
.tab-btn.active, .tab-btn:hover { color: var(--gold); border-bottom-color: var(--gold); }
.menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.menu-item { padding: 1.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.06); display: flex; gap: 1.5rem; align-items: flex-start; }
.menu-item:nth-child(odd) { padding-right: 2.5rem; border-right: 1px solid rgba(255,255,255,0.06); }
.menu-item:nth-child(even) { padding-left: 2.5rem; }
.mi-info { flex: 1; }
.mi-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem; }
.mi-desc { font-size: 0.88rem; color: rgba(255,255,255,0.45); line-height: 1.6; }
.mi-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); white-space: nowrap; }
.mi-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; background: rgba(201,168,76,0.15); color: var(--gold); padding: 0.2rem 0.6rem; border-radius: 2px; }
.menu-cta { text-align: center; margin-top: 3rem; }

/* ── SPECIALS ── */
.specials { background: var(--cream2); }
.specials .section-title { text-align: center; margin-bottom: 0.5rem; }
.specials .eyebrow { text-align: center; display: block; margin-bottom: 0.75rem; }
.specials > .container > p { text-align: center; color: var(--muted); margin-bottom: 3rem; }
.special-card { background: var(--white); overflow: hidden; }
.sc-img { height: 220px; background: var(--charcoal2); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.sc-body { padding: 1.5rem; }
.sc-name { font-family: 'Playfair Display', serif; font-size: 1.25rem; margin-bottom: 0.4rem; }
.sc-desc { font-size: 0.9rem; color: var(--muted); margin-bottom: 1rem; }
.sc-price { font-family: 'Playfair Display', serif; font-size: 1.4rem; color: var(--gold); }

/* ── RESERVATION ── */
.reservation { background: var(--black); position: relative; overflow: hidden; }
.reservation::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(201,168,76,0.08) 0%, transparent 70%); }
.reservation .container { position: relative; z-index: 1; text-align: center; }
.reservation .eyebrow { display: block; margin-bottom: 1rem; }
.reservation .section-title { color: var(--white); margin-bottom: 1rem; }
.reservation p { color: rgba(255,255,255,0.55); margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.res-form { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 1rem; max-width: 860px; margin: 0 auto; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); text-align: left; }
.form-group input, .form-group select { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); color: var(--white); padding: 0.85rem 1rem; font-family: 'Lato', sans-serif; font-size: 0.95rem; transition: border-color var(--trans); }
.form-group input:focus, .form-group select:focus { outline: none; border-color: var(--gold); }
.form-group select option { background: var(--charcoal); }
.res-form .btn { align-self: flex-end; padding: 0.85rem 1.8rem; }

/* ── GALLERY ── */
.gallery { background: var(--white); }
.gallery .eyebrow { text-align: center; display: block; margin-bottom: 0.75rem; }
.gallery .section-title { text-align: center; margin-bottom: 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); grid-template-rows: repeat(2, 220px); gap: 1rem; }
.gallery-item { overflow: hidden; background: var(--charcoal2); display: flex; align-items: center; justify-content: center; font-size: 3rem; cursor: pointer; transition: transform var(--trans); }
.gallery-item:hover { transform: scale(0.98); }
.gallery-item:first-child { grid-row: 1 / 3; font-size: 5rem; }

/* ── HOURS & LOCATION ── */
.info-section { background: var(--cream); }
.info-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 3rem; }
.info-block h4 { font-family: 'Playfair Display', serif; font-size: 1.3rem; margin-bottom: 1rem; color: var(--charcoal); }
.hours-row { display: flex; justify-content: space-between; padding: 0.5rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); font-size: 0.9rem; }
.hours-row span:first-child { color: var(--muted); }
.hours-row span:last-child { font-weight: 700; color: var(--charcoal); }
.info-block address { font-style: normal; font-size: 0.95rem; line-height: 1.8; color: var(--muted); }
.info-block address strong { display: block; color: var(--charcoal); font-family: 'Playfair Display', serif; font-size: 1.1rem; margin-bottom: 0.5rem; }
.info-map { height: 180px; background: var(--charcoal2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-size: 2.5rem; margin-top: 1rem; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-links a { width: 38px; height: 38px; background: var(--charcoal); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; transition: background var(--trans); }
.social-links a:hover { background: var(--gold); color: var(--black); }

/* ── PRESS ── */
.press { background: var(--charcoal); padding: 3rem 0; border-top: 1px solid var(--border); }
.press .container { display: flex; justify-content: space-between; align-items: center; gap: 2rem; flex-wrap: wrap; }
.press-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.3); white-space: nowrap; }
.press-items { display: flex; gap: 2.5rem; align-items: center; flex-wrap: wrap; }
.press-item { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.1rem; color: rgba(255,255,255,0.35); transition: color var(--trans); }
.press-item:hover { color: var(--gold); }

/* ── FOOTER ── */
.site-footer { background: var(--black); padding: 3rem 0 2rem; border-top: 1px solid var(--border); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 2rem; margin-bottom: 2rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--white); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.4); transition: color var(--trans); }
.footer-links a:hover { color: var(--gold); }
.footer-note { text-align: center; font-size: 0.8rem; color: rgba(255,255,255,0.25); border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── PAGE HERO ── */
.page-hero { background: var(--black); padding: 10rem 0 5rem; text-align: center; }
.page-hero .eyebrow { display: block; margin-bottom: 1rem; }
.page-hero h1 { color: var(--white); font-size: clamp(2.5rem, 5vw, 4rem); }
.page-hero p { color: rgba(255,255,255,0.55); max-width: 540px; margin: 1rem auto 0; }

/* ── FULL MENU PAGE ── */
.menu-page { background: var(--cream); }
.menu-category { padding: 4rem 0; border-bottom: 1px solid rgba(0,0,0,0.08); }
.menu-category:last-child { border-bottom: none; }
.menu-category h3 { font-family: 'Playfair Display', serif; font-size: 1.8rem; margin-bottom: 0.5rem; }
.menu-category .cat-desc { color: var(--muted); margin-bottom: 2rem; }
.full-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.full-menu-item { padding: 1.25rem 0; border-bottom: 1px solid rgba(0,0,0,0.06); display: flex; justify-content: space-between; align-items: flex-start; gap: 2rem; }
.full-menu-item:nth-child(odd) { padding-right: 2.5rem; border-right: 1px solid rgba(0,0,0,0.06); }
.full-menu-item:nth-child(even) { padding-left: 2.5rem; }
.fmi-name { font-family: 'Playfair Display', serif; font-size: 1.05rem; margin-bottom: 0.25rem; }
.fmi-desc { font-size: 0.85rem; color: var(--muted); }
.fmi-price { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--gold); white-space: nowrap; }
.dietary { display: flex; gap: 0.4rem; margin-top: 0.4rem; }
.dietary span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 0.2rem 0.5rem; background: var(--cream2); }

/* ── ABOUT PAGE ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; margin-top: 3rem; }
.team-card { text-align: center; }
.team-photo { width: 160px; height: 160px; border-radius: 50%; background: var(--charcoal2); margin: 0 auto 1.2rem; display: flex; align-items: center; justify-content: center; font-size: 3rem; border: 3px solid var(--border); }
.team-card h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.85rem; color: var(--muted); }
.team-card .team-note { font-style: italic; font-size: 0.85rem; color: var(--gold); margin-top: 0.5rem; }

/* ── RESERVATIONS PAGE ── */
.res-page { background: var(--cream); }
.res-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; }
.res-info h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 1rem; }
.res-info p { color: var(--muted); margin-bottom: 1.5rem; }
.private-dining { background: var(--charcoal); color: var(--white); padding: 2rem; margin-top: 2rem; }
.private-dining h4 { font-family: 'Playfair Display', serif; font-size: 1.2rem; color: var(--gold); margin-bottom: 0.75rem; }
.private-dining p { font-size: 0.9rem; color: rgba(255,255,255,0.6); margin: 0; }
.full-res-form { background: var(--white); padding: 2.5rem; }
.full-res-form h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-field label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.form-field input, .form-field select, .form-field textarea {
  border: 1px solid var(--cream2); padding: 0.85rem 1rem; font-family: 'Lato', sans-serif; font-size: 0.95rem; background: var(--cream); transition: border-color var(--trans);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-field textarea { resize: vertical; min-height: 120px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .menu-grid, .info-grid, .full-menu-grid, .res-layout, .res-form, .team-grid { grid-template-columns: 1fr; }
  .menu-item:nth-child(odd), .menu-item:nth-child(even) { padding-left: 0; padding-right: 0; border-right: none; }
  .full-menu-item:nth-child(odd), .full-menu-item:nth-child(even) { padding-left: 0; padding-right: 0; border-right: none; }
  .footer-inner { flex-direction: column; text-align: center; }
  .story-img { height: 300px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .res-form { grid-template-columns: 1fr 1fr; }
  .about-strip .container { flex-wrap: wrap; gap: 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.8rem; }
  .hero-actions { flex-direction: column; }
  .gallery-grid { grid-template-columns: 1fr; }
  .res-form { grid-template-columns: 1fr; }
}
