/* =================================================================
   MAISON DORÉ — Restaurant / Café Template
   Plain CSS3. No frameworks. Offline-ready (no external images).
   -----------------------------------------------------------------
   QUICK REBRAND:
   Change the values in :root below to instantly restyle the whole
   site. --gold = your accent, --ink = dark surface, --cream = bg,
   --text = body text. Fonts are also swappable here (and in the
   <link> tag in index.html).
   ================================================================= */

:root {
  /* ----- Brand colors (edit these to rebrand) ----- */
  --ink:        #1c1410;   /* warm dark surface          */
  --ink-2:      #2a1f16;   /* slightly lighter dark      */
  --gold:       #d4a017;   /* amber / gold accent        */
  --gold-soft:  #e6c15c;   /* lighter gold for hovers    */
  --cream:      #f7efe3;   /* warm cream background      */
  --cream-2:    #efe3d2;   /* deeper cream               */
  --text:       #2b2018;   /* dark ink body text         */
  --text-soft:  #6f6052;   /* muted text                 */
  --on-dark:    #f4ead9;   /* text on dark surfaces      */
  --on-dark-soft: #c9b9a4; /* muted text on dark         */
  --line:       rgba(0,0,0,.10);
  --line-dark:  rgba(255,255,255,.12);

  /* ----- Fonts ----- */
  --font-head: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* ----- Shape & motion ----- */
  --radius:   16px;
  --radius-sm: 10px;
  --shadow:    0 18px 40px -18px rgba(28,20,16,.45);
  --shadow-sm: 0 8px 22px -12px rgba(28,20,16,.35);
  --ease:      cubic-bezier(.22,.61,.36,1);
  --maxw:      1160px;
}

/* =================================================================
   RESET / BASE
   ================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.12; font-weight: 700; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 96px 0; }

/* Section background variants */
.section-dark  { background: var(--ink); color: var(--on-dark); }
.section-cream { background: var(--cream-2); }

/* =================================================================
   SHARED TYPOGRAPHY BITS
   ================================================================= */
.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 14px;
}
.eyebrow.gold { color: var(--gold-soft); }

.section-title { font-size: clamp(2rem, 4.5vw, 3.1rem); color: var(--ink); }
.section-title.light { color: var(--on-dark); }

.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 640px; margin-left: auto; margin-right: auto; }

.section-lead { color: var(--text-soft); font-size: 1.05rem; margin-top: 14px; }
.section-dark .section-lead { color: var(--on-dark-soft); }

/* =================================================================
   BUTTONS
   ================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .98rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease),
              color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn-primary {
  background: var(--gold);
  color: var(--ink);
  box-shadow: 0 12px 24px -10px rgba(212,160,23,.6);
}
.btn-primary:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--on-dark);
  border-color: rgba(255,255,255,.55);
}
.btn-ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.btn.full { width: 100%; }

/* =================================================================
   HEADER / NAV
   ================================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(28,20,16,.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
  transition: background .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.scrolled { box-shadow: 0 10px 30px -16px rgba(0,0,0,.6); }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}

.logo { display: inline-flex; align-items: center; gap: 10px; color: var(--on-dark); }
.logo-mark { font-size: 1.5rem; }
.logo-text { font-family: var(--font-head); font-size: 1.35rem; font-weight: 700; letter-spacing: .01em; }
.logo-accent { color: var(--gold); }

.main-nav ul { display: flex; gap: 30px; }
.main-nav a {
  color: var(--on-dark-soft);
  font-weight: 500;
  font-size: .95rem;
  position: relative;
  padding: 6px 0;
  transition: color .25s var(--ease);
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .28s var(--ease);
}
.main-nav a:hover { color: var(--on-dark); }
.main-nav a:hover::after { width: 100%; }

.nav-cta { padding: 11px 22px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
}
.hamburger span {
  display: block; height: 2px; width: 26px;
  background: var(--on-dark); border-radius: 2px;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =================================================================
   HERO
   ================================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex; align-items: center;
  /* Rich layered gradient — no image file needed */
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(212,160,23,.28) 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(120,60,30,.45) 0%, transparent 60%),
    linear-gradient(160deg, #2a1c12 0%, #1c1410 55%, #120c08 100%);
  color: var(--on-dark);
  overflow: hidden;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 8px);
  pointer-events: none;
}
.hero-content { position: relative; max-width: 760px; padding: 110px 24px 90px; }
.hero-eyebrow {
  letter-spacing: .25em; text-transform: uppercase;
  font-size: .8rem; font-weight: 600; color: var(--gold-soft);
  margin-bottom: 22px;
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 800;
  letter-spacing: -.01em;
}
.hero-sub {
  margin: 24px 0 36px;
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--on-dark-soft);
  max-width: 560px;
}
.hero-sub strong { color: var(--gold-soft); }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-meta {
  margin-top: 44px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 12px;
  color: var(--on-dark-soft); font-size: .92rem;
}
.hero-meta .dot { opacity: .5; }

/* =================================================================
   ABOUT
   ================================================================= */
.about-grid {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center;
}
.about-visual { position: relative; }
.about-art {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(212,160,23,.35), transparent 60%),
    linear-gradient(160deg, #3a2719, #1c1410);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow);
}
.about-emoji { font-size: clamp(5rem, 14vw, 8rem); filter: drop-shadow(0 10px 20px rgba(0,0,0,.4)); }
.about-badge {
  position: absolute; right: -18px; bottom: -18px;
  background: var(--gold); color: var(--ink);
  border-radius: var(--radius-sm);
  padding: 16px 22px; text-align: center;
  box-shadow: var(--shadow-sm);
}
.about-badge strong { font-family: var(--font-head); font-size: 1.9rem; display: block; line-height: 1; }
.about-badge span { font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; }

.about-text p { color: var(--text-soft); margin-top: 16px; }

.stats { display: flex; gap: 40px; margin-top: 36px; flex-wrap: wrap; }
.stat strong {
  font-family: var(--font-head); font-size: 2.1rem; color: var(--ink); display: block; line-height: 1;
}
.stat span { font-size: .85rem; color: var(--text-soft); text-transform: uppercase; letter-spacing: .1em; }

/* =================================================================
   MENU
   ================================================================= */
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px;
  margin-bottom: 48px;
}
.menu-tab {
  font-family: var(--font-body);
  background: transparent;
  border: 1.5px solid var(--line-dark);
  color: var(--on-dark-soft);
  padding: 11px 24px; border-radius: 50px;
  font-size: .95rem; font-weight: 500; cursor: pointer;
  transition: all .25s var(--ease);
}
.menu-tab:hover { color: var(--on-dark); border-color: var(--gold); }
.menu-tab.is-active { background: var(--gold); color: var(--ink); border-color: var(--gold); font-weight: 600; }

.menu-panel { display: none; }
.menu-panel.is-active { display: block; animation: fade-up .5s var(--ease); }

.menu-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px 56px;
}
.menu-item {
  padding: 22px 0;
  border-bottom: 1px dashed var(--line-dark);
}
.menu-item-head {
  display: flex; align-items: baseline; justify-content: space-between; gap: 12px;
}
.menu-item-head h3 { font-size: 1.2rem; color: var(--on-dark); font-weight: 600; }
.menu-item p { color: var(--on-dark-soft); font-size: .92rem; margin-top: 6px; }
.price {
  font-family: var(--font-head); color: var(--gold-soft);
  font-weight: 600; font-size: 1.15rem; white-space: nowrap;
}
.price.big { font-size: 1.5rem; display: inline-block; margin-top: 12px; color: var(--gold); }

/* =================================================================
   CHEF'S SPECIALS
   ================================================================= */
.special-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.special-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  border: 1px solid var(--line);
}
.special-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.special-art {
  height: 170px; display: flex; align-items: center; justify-content: center;
  font-size: 3.4rem;
}
.special-art-1 { background: linear-gradient(135deg, #f3c969, #d4a017); }
.special-art-2 { background: linear-gradient(135deg, #c9a06a, #7a4a25); }
.special-art-3 { background: linear-gradient(135deg, #b5483c, #6e241c); }
.special-body { padding: 24px 24px 28px; }
.special-tag {
  display: inline-block;
  background: var(--cream-2); color: var(--text-soft);
  font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .1em;
  padding: 5px 12px; border-radius: 50px; margin-bottom: 12px;
}
.special-body h3 { font-size: 1.35rem; color: var(--ink); }
.special-body p { color: var(--text-soft); font-size: .94rem; margin-top: 8px; }

/* =================================================================
   GALLERY
   ================================================================= */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
  grid-auto-rows: 200px;
}
.gallery-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; cursor: pointer;
  transition: transform .35s var(--ease);
}
.gallery-tile figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7), transparent);
  color: #fff; font-family: var(--font-body); font-size: .85rem;
  padding: 28px 16px 14px; text-align: center;
  opacity: 0; transform: translateY(8px); transition: all .3s var(--ease);
}
.gallery-tile:hover { transform: scale(1.02); }
.gallery-tile:hover figcaption { opacity: 1; transform: translateY(0); }
/* Tiles get distinct warm gradients + a featured larger one */
.g1 { background: linear-gradient(135deg, #d4a017, #8a5a14); }
.g2 { background: linear-gradient(135deg, #3a2719, #120c08); }
.g3 { background: linear-gradient(135deg, #7a2e22, #3a140f); }
.g4 { background: linear-gradient(135deg, #5c6b3a, #2f3a1c); }
.g5 { background: linear-gradient(135deg, #b5783c, #6e3a1c); }
.g6 { background: linear-gradient(135deg, #2a1f16, #463122); }
.g1 { grid-column: span 2; }   /* featured wide tile */
.g4 { grid-row: span 1; }

/* =================================================================
   RESERVATION
   ================================================================= */
.reserve-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start; }
.reserve-intro p { color: var(--text-soft); margin-top: 14px; }
.reserve-points { margin-top: 26px; display: grid; gap: 12px; }
.reserve-points li { color: var(--text); font-size: .98rem; }
.reserve-points a { color: var(--gold); font-weight: 600; }

.reserve-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; display: flex; flex-direction: column; }
.field label { font-size: .82rem; font-weight: 600; color: var(--text); margin-bottom: 7px; letter-spacing: .02em; }
.field input, .field select {
  font-family: var(--font-body); font-size: .98rem;
  padding: 13px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--text);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field select:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,160,23,.18);
}
.field.invalid input, .field.invalid select { border-color: #c0392b; background: #fdf3f2; }
.error { color: #c0392b; font-size: .78rem; margin-top: 5px; min-height: 1em; }

.form-note { margin-top: 14px; font-weight: 600; min-height: 1.2em; }
.form-note.success { color: #2e7d32; }
.form-fineprint { margin-top: 10px; font-size: .78rem; color: var(--text-soft); }

/* =================================================================
   TESTIMONIALS
   ================================================================= */
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testi-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.testi-card:hover { transform: translateY(-4px); }
.stars { color: var(--gold); letter-spacing: .12em; margin-bottom: 14px; }
.testi-card p { color: var(--text); font-style: italic; }
.testi-card footer {
  display: flex; align-items: center; gap: 12px; margin-top: 20px;
  font-size: .9rem; color: var(--text-soft); font-style: normal;
}
.testi-card footer strong { color: var(--ink); }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--cream-2); display: grid; place-items: center; font-size: 1.4rem;
  flex-shrink: 0;
}

/* =================================================================
   VISIT (Hours & Location)
   ================================================================= */
.visit-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 48px; }
.visit-col h3 { color: var(--gold-soft); font-size: 1.3rem; margin-bottom: 18px; }
.hours li {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 9px 0; border-bottom: 1px solid var(--line-dark);
  color: var(--on-dark-soft); font-size: .95rem;
}
.hours .closed { color: #cf7a6a; }
.visit-col address { font-style: normal; color: var(--on-dark-soft); line-height: 1.8; }
.visit-contact { margin-top: 16px; }
.visit-contact a { color: var(--gold-soft); font-weight: 500; }
.visit-col p { color: var(--on-dark-soft); }
.visit-col .btn { margin-top: 18px; }

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer { background: #120c08; color: var(--on-dark-soft); padding-top: 64px; }
.footer-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 48px;
}
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: .92rem; }
.footer-brand .logo { color: var(--on-dark); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: grid; place-items: center; font-size: 1.05rem;
  transition: background .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--gold); transform: translateY(-3px); }
.footer-col h4 { color: var(--on-dark); font-size: 1.05rem; margin-bottom: 16px; }
.footer-col li { margin-bottom: 10px; font-size: .92rem; }
.footer-col a { transition: color .2s var(--ease); }
.footer-col a:hover { color: var(--gold-soft); }
.footer-col .muted { color: #6b5a48; }

.footer-bottom { border-top: 1px solid var(--line-dark); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: .85rem; }
.footer-credit { color: #6b5a48; }

/* =================================================================
   BACK TO TOP
   ================================================================= */
.to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 90;
  width: 48px; height: 48px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: var(--gold); color: var(--ink); font-size: 1.3rem;
  box-shadow: var(--shadow-sm);
  opacity: 0; visibility: hidden; transform: translateY(12px);
  transition: all .3s var(--ease);
}
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold-soft); }

/* =================================================================
   SCROLL-REVEAL ANIMATIONS
   ================================================================= */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.visible { opacity: 1; transform: none; }

/* No-JS / fallback: never hide content */
.no-js .reveal { opacity: 1; transform: none; }

@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: none; }
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none; }
  * { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* =================================================================
   RESPONSIVE BREAKPOINTS
   ================================================================= */
@media (max-width: 960px) {
  .about-grid, .reserve-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-visual { max-width: 420px; }
  .special-grid, .testi-grid, .visit-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }

  /* Mobile nav drawer */
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav {
    position: fixed; top: 76px; right: 0;
    width: min(80vw, 320px); height: calc(100vh - 76px);
    background: var(--ink-2);
    border-left: 1px solid var(--line-dark);
    transform: translateX(100%);
    transition: transform .35s var(--ease);
    padding: 24px;
  }
  .main-nav.open { transform: translateX(0); box-shadow: -20px 0 40px -20px rgba(0,0,0,.7); }
  .main-nav ul { flex-direction: column; gap: 4px; }
  .main-nav a { display: block; padding: 14px 8px; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); }

  .menu-list { grid-template-columns: 1fr; gap: 0; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g1 { grid-column: span 2; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .special-grid, .testi-grid, .visit-grid, .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .stats { gap: 28px; }
  .hero-content { padding-top: 80px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g1 { grid-column: span 1; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}

/* =================================================================
   ====  MULTI-PAGE ADDITIONS  =====================================
   Appended below the original single-page styles. New components for
   the inner pages: active nav, page banner, breadcrumb, feature grid,
   awards, team, FAQ, note band, map, CTA band. Same warm/gold/serif
   theme and .reveal animations.
   ================================================================= */

/* ----- Active nav link (current page) ----- */
.main-nav a.active { color: var(--on-dark); }
.main-nav a.active::after { width: 100%; }

/* =================================================================
   PAGE BANNER (inner-page hero) + BREADCRUMB
   ================================================================= */
.page-banner {
  position: relative;
  display: flex; align-items: center;
  min-height: 46vh;
  color: var(--on-dark);
  overflow: hidden;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(212,160,23,.30) 0%, transparent 55%),
    radial-gradient(90% 80% at 10% 100%, rgba(120,60,30,.45) 0%, transparent 60%),
    linear-gradient(160deg, #2a1c12 0%, #1c1410 55%, #120c08 100%);
}
.page-banner-overlay {
  position: absolute; inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.015) 0 2px, transparent 2px 8px);
  pointer-events: none;
}
.page-banner-content {
  position: relative;
  padding: 92px 24px 72px;
  max-width: 760px;
}
.page-banner-title {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--on-dark);
  letter-spacing: -.01em;
}
.page-banner-sub {
  margin-top: 18px;
  font-size: clamp(1.02rem, 2vw, 1.18rem);
  color: var(--on-dark-soft);
  max-width: 560px;
}

.breadcrumb {
  margin-top: 26px;
  display: flex; align-items: center; flex-wrap: wrap; gap: 10px;
  font-size: .9rem; color: var(--on-dark-soft);
}
.breadcrumb a { color: var(--gold-soft); font-weight: 500; transition: color .2s var(--ease); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { opacity: .5; }
.breadcrumb [aria-current="page"] { color: var(--on-dark); }

/* =================================================================
   REVERSED ABOUT GRID (image right) + extra about art
   ================================================================= */
.about-grid-rev .about-visual { order: 2; }
.about-art-chef {
  background:
    radial-gradient(120% 90% at 70% 20%, rgba(212,160,23,.40), transparent 60%),
    linear-gradient(160deg, #3a2719, #120c08);
}
.section-dark .about-text p { color: var(--on-dark-soft); }
.section-dark .stat strong { color: var(--on-dark); }
.section-dark .stat span { color: var(--on-dark-soft); }

/* Check list (chef credentials) */
.check-list { margin-top: 24px; display: grid; gap: 12px; }
.check-list li {
  position: relative; padding-left: 30px;
  color: var(--text-soft); font-size: .98rem;
}
.section-dark .check-list li { color: var(--on-dark-soft); }
.check-list li::before {
  content: "✦"; position: absolute; left: 0; top: 0;
  color: var(--gold); font-size: .95rem;
}

/* =================================================================
   FEATURE GRID (philosophy / private events)
   ================================================================= */
.feature-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.feature-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-icon {
  display: grid; place-items: center;
  width: 56px; height: 56px; border-radius: 14px;
  background: var(--cream-2); font-size: 1.7rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.25rem; color: var(--ink); margin-bottom: 8px; }
.feature-card p { color: var(--text-soft); font-size: .94rem; }
.section-cream .feature-icon { background: var(--cream); }

/* =================================================================
   AWARDS
   ================================================================= */
.awards-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.award-card {
  background: #fff;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease);
}
.award-card:hover { transform: translateY(-5px); }
.award-year {
  font-family: var(--font-head); font-weight: 700;
  font-size: 1.6rem; color: var(--gold); display: block; margin-bottom: 8px;
}
.award-card h3 { font-size: 1.12rem; color: var(--ink); }
.award-card p { color: var(--text-soft); font-size: .9rem; margin-top: 6px; }

/* =================================================================
   TEAM
   ================================================================= */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.team-avatar {
  width: 92px; height: 92px; border-radius: 50%;
  margin: 0 auto 18px;
  display: grid; place-items: center; font-size: 2.6rem;
  box-shadow: var(--shadow-sm);
}
.team-av-1 { background: linear-gradient(135deg, #f3c969, #d4a017); }
.team-av-2 { background: linear-gradient(135deg, #c9a06a, #7a4a25); }
.team-av-3 { background: linear-gradient(135deg, #7a2e22, #3a140f); }
.team-av-4 { background: linear-gradient(135deg, #5c6b3a, #2f3a1c); }
.team-card h3 { font-size: 1.2rem; color: var(--ink); }
.team-role { color: var(--gold); font-weight: 600; font-size: .85rem;
  text-transform: uppercase; letter-spacing: .08em; margin: 4px 0 10px; }
.team-card p:last-child { color: var(--text-soft); font-size: .92rem; }

/* =================================================================
   NOTE BAND (tasting-menu highlight)
   ================================================================= */
.note-band {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}
.note-band-text { color: var(--text-soft); margin-top: 12px; max-width: 560px; }
.note-band-price { text-align: right; }
.note-band-price .price.big { color: var(--gold); font-size: 2.4rem; }
.note-band-sub { display: block; color: var(--text-soft); font-size: .9rem; }

/* =================================================================
   MAP CARD (reservations location)
   ================================================================= */
.map-card {
  display: grid; grid-template-columns: 1fr 1.1fr; align-items: stretch;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-art {
  min-height: 260px;
  display: grid; place-items: center; font-size: 4.5rem;
  background:
    radial-gradient(120% 90% at 30% 20%, rgba(212,160,23,.30), transparent 60%),
    linear-gradient(160deg, #3a2719, #1c1410);
}
.map-body { padding: 40px; }
.map-body p { color: var(--text-soft); margin-top: 12px; }
.map-address { color: var(--text) !important; margin-top: 18px; }
.map-address strong { color: var(--ink); }

/* =================================================================
   EVENTS CTA LINE
   ================================================================= */
.events-cta {
  margin-top: 40px; text-align: center;
  color: var(--text-soft); font-size: 1.02rem;
}
.events-cta a { color: var(--gold); font-weight: 600; }

/* =================================================================
   FAQ
   ================================================================= */
.faq-list {
  display: grid; grid-template-columns: 1fr 1fr; gap: 22px 40px;
  max-width: 980px; margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 26px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 1.12rem; color: var(--ink); margin-bottom: 8px; }
.faq-item p { color: var(--text-soft); font-size: .94rem; }

/* =================================================================
   CTA BAND (closing call-to-action on inner pages)
   ================================================================= */
.cta-band {
  text-align: center;
  background:
    radial-gradient(110% 120% at 50% 0%, rgba(212,160,23,.22) 0%, transparent 55%),
    linear-gradient(160deg, #2a1c12 0%, #1c1410 60%, #120c08 100%);
  color: var(--on-dark);
}
.cta-inner { max-width: 640px; margin: 0 auto; }
.cta-inner p { color: var(--on-dark-soft); margin: 16px 0 30px; font-size: 1.05rem; }

/* =================================================================
   RESPONSIVE — multi-page components
   ================================================================= */
@media (max-width: 960px) {
  .feature-grid, .awards-grid, .team-grid { grid-template-columns: 1fr 1fr; }
  .about-grid-rev .about-visual { order: 0; }
  .map-card { grid-template-columns: 1fr; }
  .map-art { min-height: 200px; }
  .faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .feature-grid, .awards-grid, .team-grid { grid-template-columns: 1fr; }
  .note-band { padding: 28px 24px; }
  .note-band-price { text-align: left; }
  .map-body { padding: 28px 22px; }
  .page-banner { min-height: 40vh; }
}

/* =================================================================
   PHOTO HELPER — wires real images into large photo areas.
   Applied via inline background-image on hero, about visual,
   chef's-specials art, and gallery tiles. Keeps cover sizing,
   centered focal point, and the existing gold/serif gradients
   underneath for graceful fallback.
   ================================================================= */
.has-photo {
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}
/* Hero/page-banner: dark gradient overlay layered ON TOP of the photo
   so headline text stays legible. Photo set inline as the last layer. */
.hero.has-photo,
.page-banner.has-photo {
  background-blend-mode: normal;
}
.hero.has-photo::before,
.page-banner.has-photo::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 80% 0%, rgba(212,160,23,.18) 0%, transparent 55%),
    linear-gradient(160deg, rgba(26,18,12,.82) 0%, rgba(18,12,8,.78) 55%, rgba(10,7,4,.88) 100%);
  pointer-events: none;
}
/* Gallery/specials photos: subtle warm scrim only on hover-caption tiles
   handled by existing figcaption gradient — no change needed here. */
