/* ===== Brasserie des Arts — design tokens ===== */
:root {
  --offwhite: #faf5ec;
  --paper: #fffdf9;
  --ink: #1c1815;
  --ink-soft: #4a433c;
  --tomato: #c0432b;
  --tomato-dark: #9c3320;
  --sage: #7e9271;
  --sage-dark: #5f7355;
  --sage-light: #e6eade0;
  --sage-tint: #edf1e6;
  --yellow: #f3d479;
  --yellow-tint: #fbf1d4;
  --line: #e7ddcd;
  --shadow: 0 12px 30px -14px rgba(28, 24, 21, 0.35);
  --radius-s: 8px;
  --radius-m: 14px;
  --radius-l: 22px;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--offwhite);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  color: var(--ink);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.4rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--tomato);
  margin-bottom: 0.8em;
}
section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-head { max-width: 640px; margin-bottom: 40px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.bg-paper { background: var(--paper); }
.bg-sage { background: var(--sage-tint); }
.bg-ink { background: var(--ink); color: var(--offwhite); }
.bg-ink h2, .bg-ink h3, .bg-ink p, .bg-ink .eyebrow { color: inherit; }
.bg-ink .eyebrow { color: var(--yellow); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-primary { background: var(--tomato); color: #fff; }
.btn-primary:hover { background: var(--tomato-dark); }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--offwhite); }
.btn-light { background: var(--offwhite); color: var(--ink); }
.btn-light:hover { background: #fff; }
.btn-sage { background: var(--sage); color: #fff; }
.btn-sage:hover { background: var(--sage-dark); }
.btn-block { width: 100%; justify-content: center; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 245, 236, 0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 76px;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--ink);
  flex: none;
}
.logo span { color: var(--tomato); }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a {
  font-weight: 600;
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--tomato); border-color: var(--tomato); }
.header-actions { display: flex; align-items: center; gap: 12px; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

/* language switch */
.lang-switch { position: relative; }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  color: var(--ink-soft);
}
.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  box-shadow: var(--shadow);
  padding: 6px;
  min-width: 168px;
  display: none;
  flex-direction: column;
}
.lang-menu.open { display: flex; }
.lang-menu button {
  text-align: left;
  background: none;
  border: none;
  padding: 9px 10px;
  border-radius: var(--radius-s);
  font-size: 0.88rem;
  font-family: var(--font-body);
  cursor: pointer;
  color: var(--ink-soft);
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.lang-menu button:hover { background: var(--sage-tint); color: var(--ink); }
.lang-menu button.active { color: var(--tomato); font-weight: 700; }
.lang-menu .soon { font-size: 0.72rem; color: var(--sage-dark); font-weight: 600; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(28,24,21,0.15) 0%, rgba(28,24,21,0.55) 65%, rgba(28,24,21,0.86) 100%);
}
.hero-content { position: relative; z-index: 1; padding-bottom: 64px; max-width: 780px; }
.hero-content h1 { color: #fff; }
.hero-content p.lede { color: #f1ece2; font-size: 1.12rem; max-width: 560px; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin: 26px 0 30px;
  font-size: 0.92rem;
  color: #f1ece2;
}
.hero-stats div { display: flex; align-items: center; gap: 8px; }
.hero-stats svg { width: 17px; height: 17px; color: var(--yellow); flex: none; }

/* ===== Info strip ===== */
.info-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.info-strip .info-item {
  background: var(--paper);
  padding: 26px 24px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.info-strip svg { width: 22px; height: 22px; color: var(--tomato); flex: none; margin-top: 2px; }
.info-strip h4 { margin: 0 0 4px; font-size: 0.95rem; }
.info-strip p { margin: 0; font-size: 0.88rem; }

/* ===== Cards ===== */
.grid { display: grid; gap: 24px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.card-media { aspect-ratio: 4 / 3; overflow: hidden; background: var(--sage-tint); }
.card-media img { width: 100%; height: 100%; object-fit: cover; }
.card-body { padding: 20px 22px 24px; flex: 1; display: flex; flex-direction: column; }
.card-body h3 { margin-bottom: 6px; }
.card-body p { font-size: 0.92rem; margin-bottom: 14px; }
.card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage-dark);
  background: var(--sage-tint);
  border-radius: 999px;
  padding: 5px 11px;
  margin-bottom: 10px;
}
.card-link { margin-top: auto; font-weight: 700; color: var(--tomato); font-size: 0.9rem; }

/* placeholder photo block (real photo not captured yet) */
.ph-block {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #fff;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--sage) 0%, var(--tomato) 100%);
}
.ph-block svg { width: 30px; height: 30px; opacity: 0.9; }
.ph-block span { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.04em; opacity: 0.95; }

/* ===== Feature split ===== */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split .split-media { border-radius: var(--radius-l); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.split .split-media img { width: 100%; height: 100%; object-fit: cover; }
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.quote-mark { font-family: var(--font-display); font-size: 3rem; color: var(--tomato); line-height: 0.5; display: block; margin-bottom: 10px; }

/* ===== Reviews ===== */
.stars { color: var(--yellow); letter-spacing: 2px; }
.review-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-m);
  padding: 22px;
}
.review-card .stars { display: block; margin-bottom: 10px; font-size: 0.9rem; }
.review-card p { font-size: 0.92rem; color: var(--ink-soft); }
.review-card footer { font-size: 0.82rem; font-weight: 700; color: var(--ink); display: flex; justify-content: space-between; }
.review-card footer span.time { font-weight: 500; color: var(--ink-soft); }

/* ===== Footer ===== */
.site-footer { background: var(--ink); color: #efe8db; padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; }
.site-footer h3 { color: #fff; }
.site-footer h4 { color: var(--yellow); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px; }
.site-footer p, .site-footer a { color: #cfc6b4; font-size: 0.92rem; }
.site-footer a:hover { color: var(--yellow); }
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.todo-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  background: rgba(243, 212, 121, 0.16);
  color: var(--yellow);
  border: 1px solid rgba(243, 212, 121, 0.4);
  border-radius: 999px;
  padding: 2px 8px;
  margin-left: 6px;
}
.footer-bottom {
  border-top: 1px solid rgba(239, 232, 219, 0.14);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.82rem;
  color: #a89d87;
}

/* ===== Page hero (menu/gallery/contact) ===== */
.page-hero {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--line);
  background: var(--sage-tint);
}
.page-hero .eyebrow { color: var(--tomato); }

/* ===== Menu page ===== */
.filter-bar {
  position: sticky;
  top: 76px;
  z-index: 40;
  background: rgba(250, 245, 236, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.filter-row { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.filter-chip {
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: 999px;
  padding: 9px 16px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--ink-soft);
  cursor: pointer;
}
.filter-chip:hover { border-color: var(--tomato); }
.filter-chip.active { background: var(--tomato); border-color: var(--tomato); color: #fff; }
.filter-chip.veg-chip.active { background: var(--sage); border-color: var(--sage); }
.filter-spacer { flex: 1; }
.filter-note { font-size: 0.8rem; color: var(--ink-soft); }

.menu-category { padding: 52px 0; border-bottom: 1px solid var(--line); }
.menu-category:last-child { border-bottom: none; }
.menu-category-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 8px; flex-wrap: wrap; }
.menu-category-note {
  font-size: 0.86rem;
  color: var(--tomato-dark);
  background: var(--yellow-tint);
  border: 1px solid var(--yellow);
  border-radius: var(--radius-s);
  padding: 10px 14px;
  margin: 10px 0 28px;
}
.menu-items { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 40px; }
.menu-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px dashed var(--line);
}
.menu-item .mi-name { font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; }
.menu-item .mi-desc { font-size: 0.85rem; color: var(--ink-soft); margin-top: 2px; }
.menu-item .mi-price { font-family: var(--font-display); font-weight: 700; color: var(--tomato); white-space: nowrap; font-size: 1.02rem; }
.menu-item .mi-price.ask { font-family: var(--font-body); font-weight: 600; font-size: 0.78rem; color: var(--sage-dark); background: var(--sage-tint); padding: 4px 9px; border-radius: 999px; }
.veg-leaf { color: var(--sage-dark); font-size: 0.95rem; }
.menu-item.is-hidden { display: none; }

/* ===== Gallery ===== */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item { border-radius: var(--radius-m); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; position: relative; border: 1px solid var(--line); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .cap {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(0deg, rgba(28,24,21,.75), transparent);
  color: #fff; font-size: 0.78rem; font-weight: 600; padding: 22px 12px 10px;
}
.lightbox {
  position: fixed; inset: 0; background: rgba(15, 12, 10, 0.92);
  display: none; align-items: center; justify-content: center; z-index: 200; padding: 30px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: min(90vw, 900px); max-height: 82vh; border-radius: var(--radius-m); }
.lightbox .lb-cap { color: #f1ece2; text-align: center; margin-top: 14px; font-size: 0.9rem; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px; background: none; border: none;
  color: #fff; font-size: 1.6rem; cursor: pointer; line-height: 1;
}

/* ===== Contact page ===== */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.contact-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-l); padding: 30px; }
.contact-row { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-child { border-bottom: none; }
.contact-row svg { width: 22px; height: 22px; color: var(--tomato); flex: none; margin-top: 3px; }
.contact-row h4 { margin: 0 0 4px; font-size: 0.95rem; }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 8px; }
.hours-table td { padding: 8px 0; font-size: 0.92rem; border-bottom: 1px dashed var(--line); }
.hours-table td:last-child { text-align: right; font-weight: 700; }
.map-embed { border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 4/3; }
.map-embed iframe { width: 100%; height: 100%; border: 0; }
.channel-list { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.channel-row { display: flex; align-items: center; justify-content: space-between; padding: 12px 14px; background: var(--sage-tint); border-radius: var(--radius-s); font-size: 0.9rem; font-weight: 600; }

/* ===== Responsive ===== */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .info-strip { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed;
    top: 64px; left: 0; right: 0;
    background: var(--offwhite);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px 24px 18px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: all .18s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-toggle { display: flex; width: 38px; height: 38px; }
  .site-header .container { padding: 0 16px; }
  .header-inner { gap: 6px; min-height: 64px; }
  .logo { font-size: 1rem; }
  .header-actions { gap: 6px; }
  .lang-btn { padding: 7px 7px; gap: 3px; }
  .lang-btn svg { display: none; }
  .header-actions .btn-call-label { display: none; }
  .header-actions .btn-primary { padding: 10px 12px; gap: 0; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .menu-items { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  section { padding: 52px 0; }
  .info-strip { grid-template-columns: 1fr; }
  .filter-bar { top: 64px; }
}
