/* ============================================================
   Brasserie L'Indigo — Indigo + Gold narrative theme
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Indigo palette */
  --indigo-900: #0c1230;        /* deepest indigo, almost black */
  --indigo-800: #131a40;        /* page background */
  --indigo-700: #1a2452;        /* surface / cards */
  --indigo-600: #243066;        /* lighter surface, hover */
  --indigo-500: #3a4a8c;        /* accent indigo */

  /* Gold palette */
  --gold-500: #d4a857;          /* primary gold */
  --gold-400: #e2bf78;          /* lighter gold (hover) */
  --gold-700: #a47e34;          /* darker gold (depth) */
  --gold-glow: rgba(212, 168, 87, 0.18);

  /* Neutral / text */
  --color-bg: var(--indigo-900);
  --color-surface: var(--indigo-800);
  --color-surface-2: var(--indigo-700);
  --color-text: #f4f0e8;        /* warm cream */
  --color-text-soft: #d8d2c4;   /* warm soft */
  --color-muted: #9aa3c0;       /* indigo-tinted muted */
  --color-line: rgba(212, 168, 87, 0.18);

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1180px;
  --max-w-narrow: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-weight: 300;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.15;
  color: var(--color-text);
}
h1 { font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 300; }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; font-weight: 500; }

p { color: var(--color-text-soft); margin-bottom: 1.1em; }
a  { color: var(--gold-500); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-400); }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: var(--max-w-narrow); }
.section  { padding: 110px 0; }
.centered { text-align: center; }

/* Eyebrow tag above section titles */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 18px;
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
.section-eyebrow::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--gold-500);
}
.section-eyebrow.centered {
  display: block;
  padding-left: 0;
  text-align: center;
}
.section-eyebrow.centered::before { display: none; }

/* Decorative ornament between title and body */
.ornament {
  color: var(--gold-500);
  font-size: 1.2rem;
  margin: 12px 0 36px;
  letter-spacing: 1em;
  opacity: 0.85;
}
.ornament.centered { text-align: center; }

/* Buttons */
.btn-secondary {
  display: inline-block;
  padding: 14px 36px;
  border: 1px solid var(--gold-500);
  color: var(--gold-500);
  border-radius: 0;
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .25s ease;
  background: transparent;
  cursor: pointer;
}
.btn-secondary:hover {
  background: var(--gold-500);
  color: var(--indigo-900);
}

.btn-ghost {
  display: inline-block;
  padding: 16px 38px;
  border: 1px solid rgba(244, 240, 232, 0.3);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .25s ease;
}
.btn-ghost:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
}

/* ==========================================
   Header
   ========================================== */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  background: rgba(12, 18, 48, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 168, 87, 0.08);
  transition: padding .3s ease, background .3s ease;
}
.site-header .logo {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.site-nav { display: flex; gap: 36px; }
.site-nav a {
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  padding: 4px 0;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-500);
  transition: width .25s ease;
}
.site-nav a:hover { color: var(--gold-500); }
.site-nav a:hover::after { width: 100%; }

.site-header-right { display: flex; align-items: center; gap: 18px; }
.site-header .logo img {
  display: block;
  height: 44px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}
.lang-switch {
  color: var(--gold-500);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.18em;
  font-weight: 600;
  border: 1px solid var(--gold-500);
  padding: 6px 12px;
  border-radius: 2px;
  transition: background .2s, color .2s;
}
.lang-switch:hover {
  background: var(--gold-500);
  color: var(--indigo-900);
}
.btn-reserve {
  background: var(--gold-500);
  color: var(--indigo-900);
  padding: 10px 22px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: background .2s;
}
.btn-reserve:hover { background: var(--gold-400); color: var(--indigo-900); }

.btn-menu {
  background: transparent;
  color: var(--gold-500);
  border: 1px solid var(--gold-500);
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  transition: background .2s, color .2s;
}
.btn-menu:hover { background: var(--gold-500); color: var(--indigo-900); }

.btn-reserve, .btn-menu { white-space: nowrap; }

@media (max-width: 820px) {
  .site-nav { display: none; }
  .site-header { padding: 14px 18px; }
  .site-header-right { gap: 10px; }
  .site-header .logo { font-size: 1.2rem; }
  .site-header .logo img { height: 36px; max-width: 160px; }
  .btn-reserve, .btn-menu {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .lang-switch {
    padding: 5px 9px;
    font-size: 10px;
    letter-spacing: 0.1em;
  }
}
@media (max-width: 520px) {
  .site-header { padding: 12px 14px; }
  .site-header-right { gap: 8px; }
  .site-header .logo { font-size: 1rem; }
  .site-header .logo img { height: 32px; max-width: 130px; }
  .btn-menu { display: none; }
  .btn-reserve { padding: 7px 10px; font-size: 9px; }
}

/* ==========================================
   Hero
   ========================================== */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-slides {
  position: absolute; inset: 0;
  z-index: 1;
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12,18,48,0.20) 0%, rgba(12,18,48,0.55) 100%),
    linear-gradient(180deg, rgba(12,18,48,0.30) 0%, rgba(12,18,48,0.60) 100%);
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 24px;
  max-width: 880px;
  animation: heroFade 1.4s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  display: inline-block;
  color: var(--gold-500);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding: 0 18px;
  position: relative;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.6;
}
.hero-eyebrow::before { left: -60px; }
.hero-eyebrow::after  { right: -60px; }

.hero-content h1 {
  color: var(--color-text);
  margin-bottom: 18px;
  font-style: italic;
  font-weight: 300;
}
.hero-subtitle {
  color: var(--color-text-soft);
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 44px;
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.5;
  font-style: italic;
}

.hero-actions {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-reserve-large {
  display: inline-block;
  background: var(--gold-500);
  color: var(--indigo-900) !important;
  padding: 18px 44px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  transition: all .25s ease;
  position: relative;
  border: 1px solid var(--gold-500);
}
.btn-reserve-large:hover {
  background: var(--gold-400);
  color: var(--indigo-900) !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px var(--gold-glow);
}

.btn-menu-large {
  display: inline-block;
  background: transparent;
  color: var(--gold-500) !important;
  padding: 18px 44px;
  font-family: var(--font-body);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 600;
  transition: all .25s ease;
  border: 1px solid var(--gold-500);
}
.btn-menu-large:hover {
  background: var(--gold-500);
  color: var(--indigo-900) !important;
  transform: translateY(-2px);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 56px;
  background: rgba(244, 240, 232, 0.2);
  overflow: hidden;
}
.hero-scroll span {
  position: absolute;
  width: 100%;
  height: 24px;
  background: var(--gold-500);
  top: -24px;
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0%   { top: -24px; }
  100% { top: 56px; }
}

/* ==========================================
   About — narrative section
   ========================================== */

.about {
  background: var(--color-surface);
  text-align: center;
  position: relative;
  padding: 130px 0;
}
.about::before, .about::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold-500), transparent);
  opacity: 0.5;
}
.about::before { top: 50px; }
.about::after  { bottom: 50px; }

.about h2 {
  font-style: italic;
  font-weight: 400;
}

.about-body.narrative {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.18rem;
  line-height: 1.85;
  color: var(--color-text-soft);
  font-weight: 400;
}
.about-body.narrative p {
  margin-bottom: 1.5em;
  color: var(--color-text-soft);
}
/* Drop cap on the very first paragraph */
.about-body.narrative p:first-child::first-letter {
  font-family: var(--font-display);
  font-size: 4.2rem;
  float: left;
  line-height: 0.95;
  padding: 6px 14px 0 0;
  color: var(--gold-500);
  font-weight: 500;
  font-style: italic;
}
.about-body.narrative strong {
  color: var(--gold-500);
  font-weight: 500;
  font-style: italic;
}

/* ==========================================
   Menu preview
   ========================================== */

.menu-preview { background: var(--color-bg); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 16px;
  text-align: left;
}
.menu-card {
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 87, 0.1);
  overflow: hidden;
  transition: all .35s ease;
  position: relative;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.3);
  border-color: var(--gold-500);
}
.menu-card img {
  width: 100%; height: 220px;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: filter .35s, transform .55s;
}
.menu-card:hover img { filter: brightness(1.0); transform: scale(1.04); }
.menu-card-body { padding: 26px 24px; }
.menu-card-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  border-bottom: 1px dashed rgba(212, 168, 87, 0.25);
  padding-bottom: 12px;
  margin-bottom: 14px;
}
.menu-card-head h3 {
  color: var(--color-text);
  margin: 0;
  font-style: italic;
  font-weight: 500;
}
.menu-card .price {
  color: var(--gold-500);
  font-weight: 500;
  font-size: 1.1rem;
  font-family: var(--font-display);
  white-space: nowrap;
}
.menu-card .desc {
  color: var(--color-muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

/* ==========================================
   Gallery
   ========================================== */

.gallery {
  background: var(--color-surface);
  text-align: center;
}
.gallery h2 { font-style: italic; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 6px;
  margin-top: 16px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform .55s ease, filter .25s;
  filter: brightness(0.85) saturate(0.95);
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.0) saturate(1.1);
}
.gallery-item::after {
  content: '+';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  color: var(--gold-500);
  font-size: 2rem;
  font-weight: 200;
  opacity: 0;
  transition: opacity .25s, transform .25s;
  pointer-events: none;
}
.gallery-item:hover::after { opacity: 1; transform: translate(-50%, -50%) scale(1); }

/* ==========================================
   Hours & Map
   ========================================== */

.hours-map { background: var(--color-bg); }
.hours-map .two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
@media (max-width: 900px) {
  .hours-map .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
.hours-map h2 { font-style: italic; }
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
}
.hours-table tr {
  border-bottom: 1px solid var(--color-line);
}
.hours-table tr:last-child { border-bottom: none; }
.hours-table th, .hours-table td {
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
}
.hours-table th {
  color: var(--color-text);
  text-align: left;
  letter-spacing: 0.04em;
}
.hours-table td {
  color: var(--color-muted);
  text-align: right;
  font-style: italic;
}
.address-block, .phone-block {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  color: var(--color-text-soft);
  font-size: 0.95rem;
}
.address-block { margin-top: 36px; }
.address-icon {
  color: var(--gold-500);
  font-size: 1.1rem;
  line-height: 1;
}
.phone-block a { color: var(--color-text-soft); }
.phone-block a:hover { color: var(--gold-500); }

/* ==========================================
   Testimonials
   ========================================== */

.testimonials {
  background: var(--color-surface);
  text-align: center;
}
.testimonials h2 { font-style: italic; }
.testimonial-swiper {
  padding: 30px 8px 60px;
  margin-top: 16px;
}
.testimonial-card {
  background: var(--color-bg);
  padding: 50px 36px 36px;
  text-align: left;
  min-height: 280px;
  position: relative;
  border: 1px solid rgba(212, 168, 87, 0.08);
}
.quote-mark {
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.5;
  font-style: italic;
}
.testimonial-text {
  color: var(--color-text-soft);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
  font-weight: 400;
}
.stars {
  color: var(--gold-500);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(212, 168, 87, 0.15);
}
.testimonial-author img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}
.testimonial-author span {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
}

.swiper-pagination-bullet {
  background: rgba(212, 168, 87, 0.3) !important;
  opacity: 1 !important;
}
.swiper-pagination-bullet-active {
  background: var(--gold-500) !important;
}

/* ==========================================
   Footer
   ========================================== */

.site-footer {
  background: linear-gradient(180deg, var(--indigo-900) 0%, #060919 100%);
  padding: 80px 40px 30px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  border-top: 1px solid rgba(212, 168, 87, 0.12);
}
.footer-col h3 {
  color: var(--gold-500);
  margin-bottom: 18px;
  font-size: 1.2rem;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.footer-col p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
  line-height: 1.7;
}
.footer-col a { color: var(--color-text-soft); }
.footer-col a:hover { color: var(--gold-500); }
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 6px;
}
.social-links a {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.footer-bottom {
  grid-column: 1 / -1;
  text-align: center;
  padding-top: 36px;
  margin-top: 20px;
  border-top: 1px solid rgba(212, 168, 87, 0.1);
  color: var(--color-muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 300;
}
@media (max-width: 720px) {
  .site-footer {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 50px 24px 24px;
  }
}

/* ==========================================
   Menu page
   ========================================== */

.menu-page { padding-top: 160px; }
.menu-page h1 {
  text-align: center;
  margin-bottom: 28px;
  font-style: italic;
  font-weight: 300;
}
.menu-jump {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 80px;
  padding: 28px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}
.menu-jump a {
  color: var(--color-muted);
  font-family: var(--font-body);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 500;
  transition: color .2s;
}
.menu-jump a:hover { color: var(--gold-500); }
.menu-category {
  margin-bottom: 90px;
  text-align: center;
}
.menu-category h2 {
  font-style: italic;
  margin-bottom: 12px;
}
.menu-category::after {
  content: '✦';
  display: block;
  color: var(--gold-500);
  font-size: 1.1rem;
  margin: 8px 0 36px;
  letter-spacing: 1em;
  opacity: 0.85;
}
.menu-category .menu-grid { text-align: left; }

/* ==========================================
   Popup
   ========================================== */

#site-popup {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
#site-popup.is-open { display: flex; }
.popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 9, 25, 0.85);
  backdrop-filter: blur(4px);
}
.popup-content {
  position: relative;
  background: var(--color-surface);
  padding: 42px 38px;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid rgba(212, 168, 87, 0.25);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5), 0 0 0 1px rgba(212,168,87,0.08);
}
.popup-content::before {
  content: '';
  position: absolute;
  top: 14px; left: 14px; right: 14px; bottom: 14px;
  border: 1px solid rgba(212, 168, 87, 0.15);
  pointer-events: none;
}
.popup-content img {
  width: 100%;
  height: auto;
  margin-bottom: 22px;
  display: block;
}
.popup-content h3 {
  color: var(--gold-500);
  margin-bottom: 16px;
  font-size: 1.7rem;
  font-style: italic;
  font-family: var(--font-display);
  font-weight: 500;
  text-align: center;
}
.popup-body {
  color: var(--color-text-soft);
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}
.popup-body p {
  color: var(--color-text-soft);
  margin-bottom: 0.9em;
}
.popup-close {
  position: absolute;
  top: 12px; right: 14px;
  background: none;
  border: none;
  color: var(--gold-500);
  font-size: 28px;
  cursor: pointer;
  padding: 4px 12px;
  font-family: var(--font-display);
  font-weight: 300;
  z-index: 2;
}
.popup-close:hover { color: var(--gold-400); }

/* ============================================================
   New layout sections — match brasserie-indigo-douai.fr structure
   ============================================================ */

/* 2. Tagline section — single italic quote between hero and about */
.section-tagline {
  background: var(--color-bg);
  padding: 100px 0;
  text-align: center;
  position: relative;
}
.section-tagline::before {
  content: '« »';
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold-500);
  font-family: var(--font-display);
  font-size: 2rem;
  letter-spacing: 0.5em;
  opacity: 0.4;
}
.tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 2.4vw, 1.95rem);
  line-height: 1.55;
  color: var(--color-text);
  font-weight: 400;
  margin-bottom: 36px;
}
.tagline-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.tagline-byline {
  color: var(--gold-500);
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}
.ornament-line {
  display: inline-block;
  width: 44px;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.6;
}

/* 3. About split — image left, text right */
.about-split {
  background: var(--color-surface);
  padding: 130px 0;
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(0.92);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -16px; right: -16px;
  width: 100%; height: 100%;
  border: 1px solid var(--gold-500);
  z-index: -1;
  opacity: 0.5;
}
.about-text h2 {
  text-align: left;
  font-style: italic;
}
.about-text .ornament {
  text-align: left;
}
.about-text .btn-secondary {
  margin-top: 28px;
}
/* Override centered narrative drop cap behavior for split layout */
.about-split .about-body.narrative {
  text-align: left;
}

/* 4. Features grid — 4 columns of icon + text */
.features {
  background: var(--color-bg);
  padding: 100px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  text-align: center;
}
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 50px 30px; }
}
@media (max-width: 520px) {
  .features-grid { grid-template-columns: 1fr; }
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.feature-icon {
  width: 96px;
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  background: rgba(212, 168, 87, 0.08);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  padding: 18px;
  transition: all .3s;
}
.feature-card:hover .feature-icon {
  background: rgba(212, 168, 87, 0.18);
  transform: translateY(-4px);
}
.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(72%) sepia(45%) saturate(528%) hue-rotate(354deg) brightness(91%) contrast(89%);
}
.feature-card h3 {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.6rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.feature-card p {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  font-family: var(--font-body);
  letter-spacing: 0.05em;
  margin-bottom: 0;
}

/* 5. Menu preview override — force 4 columns on large screens */
.menu-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 50px;
}
@media (max-width: 1100px) {
  .menu-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .menu-grid-4 { grid-template-columns: 1fr; }
}
.menu-card-img {
  overflow: hidden;
  height: 200px;
}
.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: brightness(0.92);
  transition: transform .55s ease, filter .35s;
}
.menu-card:hover .menu-card-img img {
  transform: scale(1.06);
  filter: brightness(1.0);
}

/* 7. Reviews header with Google rating summary */
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-header h2 {
  font-style: italic;
  margin-bottom: 24px;
}
.rating-summary {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.rating-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 4rem;
  color: var(--gold-500);
  line-height: 1;
  display: inline;
}
.rating-out {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--color-muted);
  margin-left: 6px;
}
.stars-large {
  color: var(--gold-500);
  font-size: 1.6rem;
  letter-spacing: 0.15em;
}
.rating-note {
  color: var(--color-muted);
  font-size: 0.85rem;
  margin: 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* 8. Hours/map: stretch to fill, contact block */
.contact-block {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--color-line);
}
.contact-block .address-block,
.contact-block .phone-block {
  margin-top: 12px;
}
.contact-block .address-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(212, 168, 87, 0.08);
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  font-size: 0.9rem;
  flex-shrink: 0;
}

/* ============================================================
   v3 — Match brasserie-indigo-douai.fr 9-section structure
   ============================================================ */

/* Section bg modifiers */
.section-dark  { background: var(--color-bg); color: var(--color-text); }
.section-light { background: #ffffff; color: var(--indigo-900); }

/* Reset some heading colors for light sections */
.section-light h1,
.section-light h2,
.section-light h3,
.section-light h4 { color: var(--indigo-900); }
.section-light p   { color: var(--indigo-700); }
.section-light a   { color: var(--gold-700); }
.section-light a:hover { color: var(--gold-500); }
.section-light .section-eyebrow { color: var(--gold-700); }
.section-light .section-eyebrow::before { background: var(--gold-700); }
.section-light .ornament { color: var(--gold-700); }

/* ----- Section 1: Hero rotating headline ----- */
.hero-rotating {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-500);
  font-size: clamp(1.05rem, 1.6vw, 1.4rem);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  text-transform: uppercase;
}
.hero-rotating-static { color: var(--color-text-soft); font-style: normal; font-size: 0.7em; letter-spacing: 0.32em; }
.hero-rotating-words {
  position: relative;
  display: inline-block;
  height: 1.4em;
  overflow: hidden;
  vertical-align: bottom;
  min-width: 9ch;
  text-align: left;
}
.hero-rotating-words span {
  display: block;
  height: 1.4em;
  line-height: 1.4em;
  color: var(--gold-500);
  animation: rotateWords 12s linear infinite;
}
@keyframes rotateWords {
  0%, 22%   { transform: translateY(0);     }
  25%, 47%  { transform: translateY(-1.4em); }
  50%, 72%  { transform: translateY(-2.8em); }
  75%, 97%  { transform: translateY(-4.2em); }
  100%      { transform: translateY(-5.6em); }
}

/* Replace previous hero-eyebrow look */
.hero-eyebrow { display: none; }

/* ----- Section 2: About on BLACK ----- */
.section-about {
  background: #000;
  padding: 130px 0;
}
.section-about h2,
.section-about h3 { color: #fff; }
.section-about p  { color: rgba(255,255,255,0.78); }
.section-about .about-body p { color: rgba(255,255,255,0.78); }
.section-about .about-body strong { color: var(--gold-500); }
.section-about .about-image img { width: 100%; height: auto; display: block; }
.section-about .about-image::before { display: none; }
.section-about .about-text .section-eyebrow { color: var(--gold-500); }
.section-about .about-text .section-eyebrow::before { background: var(--gold-500); }
.section-about .ornament { color: var(--gold-500); }
.section-about .btn-reserve-large { margin-top: 28px; }

/* ----- FAQ ----- */
.section-faq { padding: 90px 0; background: #fafaf7; }
.section-faq .centered { margin-bottom: 40px; }
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: #fff;
  border: 1px solid rgba(12,18,48,0.08);
  border-radius: 4px;
  padding: 0;
  transition: box-shadow .2s, border-color .2s;
}
.faq-item[open] {
  box-shadow: 0 4px 18px rgba(12,18,48,0.06);
  border-color: rgba(212,168,87,0.3);
}
.faq-item summary {
  cursor: pointer;
  padding: 18px 24px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--indigo-900);
  list-style: none;
  position: relative;
  padding-right: 50px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--gold-500);
  transition: transform .2s;
}
.faq-item[open] summary::after { content: '−'; }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { color: var(--color-text-soft, #555); line-height: 1.7; margin: 0; }

/* Mini gallery strip inside about */
.about-mini-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 70px;
}
.about-mini-gallery a img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  filter: brightness(0.9);
  transition: filter .3s, transform .5s;
}
.about-mini-gallery a:hover img { filter: brightness(1); transform: scale(1.05); }
@media (max-width: 700px) {
  .about-mini-gallery { grid-template-columns: repeat(2, 1fr); }
  .about-mini-gallery a img { height: 200px; }
}

/* ----- Section 3: Features on WHITE ----- */
.section-features {
  background: #ffffff;
  color: var(--indigo-900);
  padding: 110px 0;
}
.section-features .feature-card h3 { color: var(--indigo-900); font-style: italic; }
.section-features .feature-card p  { color: var(--indigo-700); }

/* Toggle (FAQ-like accordion) */
.toggle-wrap {
  max-width: 820px;
  margin: 0 auto 80px;
}
.toggle-item {
  border-bottom: 1px solid rgba(12,18,48,0.12);
  padding: 22px 0;
}
.toggle-item summary {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 48px;
  color: var(--indigo-900);
  transition: color .2s;
}
.toggle-item summary:hover { color: var(--gold-700); }
.toggle-item summary::-webkit-details-marker { display: none; }
.toggle-item summary::after {
  content: '+';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid var(--gold-700);
  color: var(--gold-700);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform .25s, background .2s;
}
.toggle-item[open] summary::after {
  content: '−';
  background: var(--gold-700);
  color: #fff;
  transform: translateY(-50%) rotate(180deg);
}
.toggle-item p {
  margin-top: 18px;
  color: var(--indigo-700);
  font-family: var(--font-display);
  font-size: 1.1rem;
  line-height: 1.7;
  font-style: italic;
}

/* Override feature-icon for light bg */
.section-features .feature-icon {
  background: rgba(212, 168, 87, 0.12);
  border-color: var(--gold-700);
}
.section-features .feature-icon img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(31%) saturate(694%) hue-rotate(355deg) brightness(89%) contrast(85%);
}

/* ----- Section 4: Image strip on WHITE ----- */
.image-strip {
  background: #ffffff;
  padding: 60px 24px;
}
.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1200px;
  margin: 0 auto;
}
.strip-item {
  display: block;
  overflow: hidden;
  position: relative;
}
.strip-item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  height: auto;
  object-fit: cover;
  object-position: center 20%;
  display: block;
  filter: brightness(0.95);
  transition: transform .6s ease, filter .3s;
}
.strip-item:hover img { transform: scale(1.06); filter: brightness(1.05); }
@media (max-width: 800px) {
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ----- Section 5/7: Dish rows on DARK ----- */
.section-carte { padding: 110px 0; }
.section-carte-row2 { padding-top: 40px; }
.dish-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 50px;
}
@media (max-width: 1000px) {
  .dish-row { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .dish-row { grid-template-columns: 1fr; }
}
.dish-card {
  text-align: center;
}
.dish-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 50%;
  margin: 0 auto 24px;
  max-width: 220px;
  border: 2px solid rgba(212, 168, 87, 0.4);
  padding: 6px;
  transition: border-color .3s, transform .3s;
}
.dish-card:hover .dish-img {
  border-color: var(--gold-500);
  transform: translateY(-4px);
}
.dish-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.dish-card h3 {
  color: var(--gold-500);
  font-style: italic;
  font-size: 1.4rem;
  margin-bottom: 8px;
  font-weight: 500;
}
.dish-desc {
  color: var(--color-text-soft);
  font-size: 0.92rem;
  line-height: 1.55;
  font-family: var(--font-body);
  font-weight: 300;
  max-width: 240px;
  margin: 0 auto 12px;
}
.dish-price {
  color: var(--gold-500);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  font-weight: 500;
  display: inline-block;
  padding: 4px 14px;
  border-top: 1px solid rgba(212, 168, 87, 0.3);
}

/* ----- Section 8: Full-width map ----- */
.section-fullmap {
  width: 100%;
  background: #000;
}
.section-fullmap iframe {
  display: block;
  width: 100%;
  filter: grayscale(100%) contrast(0.95) brightness(0.9);
  transition: filter .5s ease;
}
.section-fullmap:hover iframe { filter: grayscale(0%) contrast(1) brightness(1); }

/* ----- Section 9: Contact two-col ----- */
.section-contact {
  padding: 110px 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 800px) {
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}

/* Hide previous menu-preview etc that aren't used now */
.section.menu-preview { display: none; }
.section.gallery { display: none; }
.section.hours-map { display: none; }
.section.testimonials:not(.section-reviews) { display: none; }
.section.about-split { display: none; }
.section.features:not(.section-features) { display: none; }
.section-tagline { display: none; }

/* Rating: 4,6★ inline, no row of small stars */
.rating-line {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.rating-star {
  font-size: 2.6rem;
  color: var(--gold-500);
  line-height: 1;
  text-shadow: 0 0 16px rgba(212, 168, 87, 0.55);
  margin-left: 2px;
  margin-right: 6px;
}
.stars-large { display: none; }

/* Footer hours table — same clean look as removed section */
.footer-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 4px;
}
.footer-hours-table tr {
  border-bottom: 1px solid rgba(212, 168, 87, 0.10);
}
.footer-hours-table tr:last-child { border-bottom: none; }
.footer-hours-table th,
.footer-hours-table td {
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 400;
}
.footer-hours-table th {
  color: var(--color-text-soft);
  text-align: left;
  letter-spacing: 0.04em;
}
.footer-hours-table td {
  color: var(--color-muted);
  text-align: right;
  font-style: italic;
}
