/* =============================================================
   Bobbe Speisesalon — Rebuild stylesheet (mobile-first)
   ============================================================= */

/* =============================================================
   WP/GeneratePress container resets (WP-only — not in Astro source)
   Our pages are hand-built Custom HTML blocks. We don't want WP's
   entry header (auto-rendered page title) or GeneratePress's
   max-width grid-container fighting our full-bleed sections.
   ============================================================= */
.entry-header { display: none !important; }
.site-main > article > .inside-article {
  padding: 0;
  margin: 0;
}
body.page .site-content,
body.page .content-area,
body.page #primary,
body.page #main {
  padding: 0;
  margin: 0;
  max-width: none;
}
body.page .grid-container,
body.page #page.grid-container {
  max-width: none;
  padding: 0;
}
body.page .inside-article > .entry-content { margin: 0; padding: 0; }

/* GeneratePress's base sets .site-header { background: var(--base-3) }
   which paints our overlay header white. Force transparent for the
   overlay variant; the --solid modifier still gets its own black bg. */
.site-header { background: transparent; }
.site-header--solid { background: var(--black); }
/* GP also adds default link colors in the header — make sure overlay
   nav links use our white-on-photo color even where GP would tint. */
.site-header:not(.site-header--solid) .nav-links a:link,
.site-header:not(.site-header--solid) .nav-links a:visited { color: rgba(255,255,255,0.92); }

/* ───── Design tokens ───── */
:root {
  --black:   #0e0d0c;
  --dark:    #1a1a18;
  --ink:     #222220;
  --mid:     #767672;
  --line:    rgba(0,0,0,0.09);
  --line-lt: rgba(0,0,0,0.06);
  --gold:    #C59D5F;
  --gold-lt: #D4B07A;
  --white:   #ffffff;
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Raleway', Arial, sans-serif;
  --gutter:  24px;
  --stack:   56px;
}

/* ───── Reset ───── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--white);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; }

/* ───── Shared section helpers ───── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 var(--gutter); }
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}
.section-heading {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--ink);
}
.body-text {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: #444441;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: gap .2s;
}
.text-link::after { content: '\2192'; }
.text-link:hover { gap: 16px; }

.btn-primary, .btn-outline, .btn-outline-gold {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 34px;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary        { background: var(--gold); color: var(--black); }
.btn-primary:hover  { background: var(--gold-lt); }
.btn-outline        { border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.85); }
.btn-outline:hover  { border-color: var(--gold); background: var(--gold); color: var(--black); }
.btn-outline-gold   { border-color: var(--gold); color: var(--gold-lt); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black); }

/* =============================================================
   ANNOUNCEMENT BAR
   ============================================================= */
.announce {
  background: var(--black);
  color: rgba(255,255,255,0.65);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.announce a { color: var(--gold-lt); text-decoration: none; }
.announce a:hover { color: #fff; }

/* =============================================================
   HEADER / NAV
   ============================================================= */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 30;
}
.site-header--solid { position: relative; background: var(--black); }

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; }
.nav-logo img { height: 64px; width: auto; display: block; }

.nav-links { display: none; list-style: none; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color .2s;
  white-space: nowrap;
}
.nav-links a:hover { color: #fff; }
.nav-links a.nav-highlight { color: var(--gold-lt); }
.nav-links a.nav-highlight:hover { color: #fff; }

/* burger */
.burger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  -webkit-tap-highlight-color: transparent;
}
.burger span {
  display: block;
  width: 22px;
  height: 1px;
  background: rgba(255,255,255,0.85);
  transition: transform .25s, opacity .25s;
}

/* mobile overlay */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 80;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 22px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: var(--sans);
  font-size: 0.66rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
}
.mobile-nav-close:hover { color: #fff; }
.mobile-nav a {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  padding: 14px 0;
  width: 72%;
  max-width: 320px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-nav a:last-of-type { border-bottom: none; }
.mobile-nav a.nav-highlight { color: var(--gold-lt); }
.mobile-nav a:hover { color: #fff; }

/* desktop: show nav links, hide burger */
@media (min-width: 820px) {
  .site-nav { padding: 20px 48px; }
  .nav-logo img { height: 96px; }
  .nav-links { display: flex; align-items: center; gap: 36px; }
  .burger { display: none; }
}
@media (min-width: 1100px) {
  .site-nav { padding: 22px 64px; }
  .nav-logo img { height: 110px; }
  .nav-links { gap: 44px; }
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 560px;
  height: calc(100svh - 34px);   /* full viewport minus announcement bar */
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('/wp-content/uploads/2026/04/bbhero.jpg') center/cover no-repeat;
  /* Layer 1 of 7 — color preserved; mild brightness drop so the overlays do their work */
  filter: brightness(0.78) saturate(0.92);
}

/* =============================================================
   HERO OVERLAY MITIGATION STACK (front page only)
   See CLAUDE.md "Home hero overlay — legibility stack".
   Reference: mockup-overlay-legibility.html
   ============================================================= */

/* Layer 2 — top scrim, only darkens behind nav */
.hero-scrim-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 240px;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0)    100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Layer 3 — bottom scrim, anchors eyebrow + wordmark + CTA */
.hero-scrim-bottom {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 62%;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.62) 0%,
    rgba(0,0,0,0.30) 40%,
    rgba(0,0,0,0)    100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Layer 4 — radial vignette catches the four nav-corner zones */
.hero-vignette {
  position: absolute; inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(0,0,0,0)    55%,
    rgba(0,0,0,0.35) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Layers 5–6 — overlay-header-only treatments (NOT on .site-header--solid).
   Solid headers sit on solid black so they need no shadow/weight bump. */
.site-header:not(.site-header--solid) .nav-logo img {
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.55));
}
.site-header:not(.site-header--solid) .nav-links a {
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-shadow:
    0 1px 2px rgba(0,0,0,0.55),
    0 0 12px rgba(0,0,0,0.35);
}
.site-header:not(.site-header--solid) .burger span {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 2px rgba(0,0,0,0.6);
}

/* Bonus / "Layer 8" — glowing gold underline on nav highlight, overlay only.
   Color contrast is fragile on photos; shape contrast (a line) survives. */
.site-header:not(.site-header--solid) .nav-links a.nav-highlight {
  position: relative;
}
.site-header:not(.site-header--solid) .nav-links a.nav-highlight::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -7px;
  height: 1px;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(197,157,95,0.6);
}
.site-header:not(.site-header--solid) .nav-links a.nav-highlight:hover { color: #fff; }
.hero-content {
  position: relative;
  z-index: 5;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 64px;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 3.6vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  /* Brightened from 0.68 → 0.92 per mockup, plus a soft text-shadow so it survives bright photo areas */
  color: rgba(255,255,255,0.92);
  line-height: 1.3;
  margin-bottom: 20px;
  max-width: 22ch;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
}
.hero-rule { width: 40px; height: 1px; background: var(--gold); margin: 0 auto 20px; }
.hero-tagline {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.78);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.hero-sub {
  font-family: var(--sans);
  font-size: 0.55rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
  margin-top: 8px;
}
/* Layer 7 — solid gold CTA. Ghost-outline buttons are unreadable on busy photos. */
.hero-cta {
  display: inline-block;
  margin-top: 40px;
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 36px;
  transition: background .2s, color .2s, border-color .2s, transform .2s;
  box-shadow: 0 6px 24px rgba(0,0,0,0.35);
}
/* Per Leo's spec: hover turns the button black with white text (NOT mockup's gold-lt). */
.hero-cta:hover {
  background: var(--black);
  border-color: var(--black);
  color: #fff;
  transform: translateY(-1px);
}
.hero-scroll {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.hero-scroll span {
  font-size: 0.54rem; letter-spacing: 0.26em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.scroll-line { width: 1px; height: 28px; background: linear-gradient(to bottom, rgba(255,255,255,0.55), transparent); }

/* =============================================================
   INTRO BLOCK
   ============================================================= */
.intro { padding: 72px 24px; display: grid; gap: 28px; }
.intro-left { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.intro-right { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
@media (min-width: 820px) {
  .intro { padding: 96px 64px; grid-template-columns: 1fr 2fr; gap: 56px; }
}
@media (min-width: 1100px) { .intro { padding: 112px 80px; gap: 80px; } }

/* =============================================================
   PILLARS (3-up)
   ============================================================= */
.pillars { background: var(--dark); display: grid; }
.pillar {
  padding: 48px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pillar:last-child { border-bottom: none; }
.pillar-num { font-family: var(--serif); font-size: 2rem; font-weight: 300; color: var(--gold); opacity: 0.55; line-height: 1; }
.pillar-title { font-family: var(--serif); font-size: 1.35rem; font-weight: 300; color: #fff; }
.pillar-body { font-family: var(--sans); font-size: 0.9rem; font-weight: 300; line-height: 1.8; color: rgba(255,255,255,0.5); }
@media (min-width: 820px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
  .pillar { padding: 60px 40px; border-bottom: none; border-right: 1px solid rgba(255,255,255,0.06); }
  .pillar:last-child { border-right: none; }
}
@media (min-width: 1100px) { .pillar { padding: 64px 52px; } }

/* =============================================================
   CUISINE MOMENT
   ============================================================= */
.cuisine-moment { padding: 56px 24px; }
.cuisine-inner { position: relative; overflow: hidden; height: 360px; }
.cuisine-img {
  /* Set background-image inline on the div in the page content (cms-editable).
     Filter + sizing live here; URL lives on the page. */
  width: 100%; height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(60%) brightness(0.88);
}
.cuisine-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cuisine-caption p { font-family: var(--serif); font-size: 1.2rem; font-weight: 300; font-style: italic; color: rgba(255,255,255,0.9); line-height: 1.35; }
.cuisine-caption a { font-family: var(--sans); font-size: 0.66rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-lt); text-decoration: none; }
.cuisine-caption a:hover { color: #fff; }
@media (min-width: 820px) {
  .cuisine-moment { padding: 72px 64px; }
  .cuisine-inner { height: 480px; }
  .cuisine-caption { padding: 40px 48px; flex-direction: row; justify-content: space-between; align-items: flex-end; }
  .cuisine-caption p { font-size: 1.55rem; max-width: 440px; }
}
@media (min-width: 1100px) { .cuisine-moment { padding: 80px 80px; } }

/* =============================================================
   HOURS / VISIT
   ============================================================= */
.hours-section {
  background: #faf9f7;
  padding: 64px 24px;
  display: grid;
  gap: 40px;
}
.hours-left { display: flex; flex-direction: column; gap: 22px; align-items: flex-start; }
.hours-eyebrow { display: flex; flex-direction: column; gap: 10px; }
.hours-table { display: flex; flex-direction: column; width: 100%; }
.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 0.92rem;
  gap: 16px;
}
.hours-row:first-child { border-top: 1px solid rgba(0,0,0,0.08); }
.hours-day { font-weight: 400; color: var(--ink); font-family: var(--sans); }
.hours-time { font-family: var(--serif); font-weight: 400; color: var(--ink); font-size: 1.05rem; font-style: italic; }
.hours-closed { font-family: var(--serif); color: var(--mid); font-style: italic; font-size: 1rem; }
.hours-right { display: flex; flex-direction: column; gap: 28px; align-items: flex-start; }
.address-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.63rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.address-text { font-family: var(--sans); font-size: 0.95rem; font-weight: 300; line-height: 1.9; color: #444441; }
.address-text a { color: #444441; text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s, color .2s; }
.address-text a:hover { color: var(--gold); border-bottom-color: rgba(197,157,95,0.4); }
.hours-section .btn-primary { margin-top: 4px; }
@media (min-width: 820px) {
  .hours-section { padding: 96px 64px; grid-template-columns: 1fr 1fr; gap: 72px; align-items: start; }
}
@media (min-width: 1100px) { .hours-section { padding: 112px 80px; gap: 96px; } }

/* =============================================================
   EVENTS BAND
   ============================================================= */
.events-band {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 380px;
  /* Subtle radial gradient — warm tone glow at center fading to black at edges.
     Suggests candlelight without committing to a photo. */
  background: radial-gradient(ellipse at center, #1a1815 0%, var(--black) 70%);
  border-bottom: 1px solid rgba(197,157,95,0.18);
}
/* Legacy: kept for backwards compat if a page still has <div class="events-bg">.
   It just inherits a transparent overlay and doesn't render a photo by default. */
.events-bg {
  position: absolute; inset: 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.28);
}
.events-content {
  position: relative; z-index: 2;
  padding: 72px 24px;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.events-content .section-label { color: var(--gold-lt); }
.events-content .section-heading { color: #fff; }
.events-content .body-text { color: rgba(255,255,255,0.6); text-align: center; font-size: 0.95rem; }
.events-btns { display: flex; gap: 14px; margin-top: 6px; flex-wrap: wrap; justify-content: center; }
@media (min-width: 820px) { .events-content { padding: 96px 40px; } .events-band { min-height: 420px; } }

/* =============================================================
   NEWSLETTER
   ============================================================= */
.newsletter {
  background: var(--dark);
  padding: 64px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.newsletter .section-heading { color: #fff; }
.newsletter .body-text { color: rgba(255,255,255,0.45); font-size: 0.9rem; max-width: 420px; }
.nl-form { display: flex; flex-direction: column; width: 100%; max-width: 440px; margin-top: 14px; gap: 10px; }

/* Email field — scoped to type=email so it doesn't pick up the submit input */
.nl-form input[type="email"] {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  color: #fff;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  padding: 13px 16px;
  outline: none;
  width: 100%;
}
.nl-form input[type="email"]::placeholder { color: rgba(255,255,255,0.3); }
.nl-form input[type="email"]:focus { border-color: rgba(255,255,255,0.32); }

/* Submit — supports both Astro's <button> and CF7's <input type=submit> */
.nl-form button,
.nl-form input[type="submit"] {
  background: var(--gold);
  border: 1px solid var(--gold);
  color: var(--black);
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 14px 24px;
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.nl-form button:hover,
.nl-form input[type="submit"]:hover {
  background: var(--black);
  color: #fff;
  border-color: var(--black);
}

/* CF7 wraps each form-tag in <p> + adds .wpcf7-form-control-wrap and a spinner.
   Make those wrappers transparent to the flex layout. */
.nl-form > p { margin: 0; padding: 0; display: flex; flex: 1 1 auto; min-width: 0; }
.nl-form .wpcf7-form-control-wrap { display: block; flex: 1; width: 100%; }
.nl-form .wpcf7-spinner { display: none; }

@media (min-width: 600px) {
  .nl-form { flex-direction: row; gap: 0; }
  .nl-form input[type="email"] { flex: 1; border-right: none; }
  .nl-form > p:first-of-type { flex: 1 1 auto; }
  .nl-form > p:last-of-type { flex: 0 0 auto; }
}
@media (min-width: 820px) { .newsletter { padding: 88px 24px; } }

/* =============================================================
   PAGE HEADER (inner pages)
   ============================================================= */
.page-hero {
  background: var(--black);
  color: #fff;
  padding: 140px 24px 64px;
  text-align: center;
}
.page-hero .section-label { color: var(--gold-lt); }
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 300;
  color: #fff;
  margin-top: 12px;
  line-height: 1.1;
}
.page-hero p {
  margin: 18px auto 0;
  max-width: 640px;
  color: rgba(255,255,255,0.55);
  font-size: 0.95rem;
  line-height: 1.8;
}
@media (min-width: 820px) { .page-hero { padding: 180px 40px 88px; } }

/* =============================================================
   MENU PAGE
   ============================================================= */
.menu-wrap { padding: 56px 24px; display: flex; flex-direction: column; gap: 56px; }
.menu-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 4.2vw, 2.1rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.menu-section-sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--mid);
  font-size: 1rem;
  margin-bottom: 28px;
}
.menu-list { display: flex; flex-direction: column; }
.menu-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-lt);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 24px;
  align-items: baseline;
}
.menu-item:first-child { border-top: 1px solid var(--line-lt); }
.menu-item-name { font-family: var(--serif); font-weight: 300; color: var(--ink); font-size: 1.3rem; line-height: 1.25; }
.menu-item-price { font-family: var(--sans); font-weight: 400; color: var(--ink); font-size: 0.88rem; white-space: nowrap; padding-top: 4px; }
.menu-item-desc { grid-column: 1 / -1; font-family: var(--sans); font-weight: 300; font-size: 0.82rem; color: var(--mid); line-height: 1.7; max-width: 540px; }
.menu-note {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--mid);
  padding-top: 16px;
}
@media (min-width: 820px) {
  .menu-wrap { padding: 88px 64px; max-width: 860px; margin: 0 auto; gap: 64px; }
}

/* =============================================================
   FOOTER (dark)
   ============================================================= */
.site-footer {
  background: var(--black);
  color: #fff;
  padding: 56px 24px 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.site-footer .footer-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px 12px;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0;
}
.footer-contact a { color: inherit; text-decoration: none; transition: color .2s; }
.footer-contact a:hover { color: #fff; }
.footer-contact .sep { color: rgba(255,255,255,0.25); }
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-brand img { height: 104px; width: auto; opacity: 0.9; }
.footer-tagline {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.5;
  margin: 0;
}
.footer-col { text-align: center; }
.footer-col p, .footer-col a {
  display: block;
  font-family: var(--sans);
  font-size: 0.74rem;
  font-weight: 300;
  line-height: 1.85;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin: 0;
}
.footer-col a { transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-nav-inline {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  padding-bottom: 4px;
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 300;
  letter-spacing: 0.08em;
}
.footer-nav-inline a { color: rgba(255,255,255,0.55); text-decoration: none; transition: color .2s; }
.footer-nav-inline a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  text-align: center;
}
.footer-bottom-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.06em;
}
.footer-bottom-left .sep { color: rgba(255,255,255,0.25); }
.footer-bottom-left a { color: rgba(255,255,255,0.42); text-decoration: none; transition: color .2s; }
.footer-bottom-left a:hover { color: #fff; }
.footer-social { display: flex; gap: 20px; justify-content: center; }
.footer-social a { color: rgba(255,255,255,0.42); transition: color .2s; display: inline-flex; }
.footer-social a:hover { color: #fff; }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; display: block; }
@media (min-width: 820px) {
  .site-footer { padding: 72px 64px 40px; }
  .site-footer .footer-grid { gap: 48px; padding-bottom: 18px; }
}
@media (min-width: 1100px) { .site-footer { padding: 80px 80px 44px; } }

/* =============================================================
   EVENTS PAGE
   ============================================================= */
.page-intro { padding: 56px 24px; display: grid; gap: 24px; }
.page-intro-left { display: flex; flex-direction: column; gap: 14px; }
.page-intro-right { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
@media (min-width: 820px) {
  .page-intro { padding: 88px 64px; grid-template-columns: 1fr 2fr; gap: 64px; }
}
@media (min-width: 1100px) { .page-intro { padding: 96px 80px; gap: 80px; } }

.events-section { padding: 0 24px 72px; }
.events-list { max-width: 1040px; margin: 0 auto; display: flex; flex-direction: column; }
.event-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
.event-item:first-child { border-top: 1px solid var(--line); }
.event-thumb {
  display: block;
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%) brightness(0.85);
}
/* Opt-out: add `is-color` to a specific .event-thumb to keep it full-color
   (e.g. <div class="event-thumb is-color" style="background-image: url(...)"> ). */
.event-thumb.is-color { filter: none; }
.event-date {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}
.event-day { font-family: var(--serif); font-size: 2.6rem; font-weight: 300; color: var(--ink); }
.event-month { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-top: 6px; }
.event-info { display: flex; flex-direction: column; gap: 8px; }
.event-tag { font-family: var(--sans); font-size: 0.6rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); }
.event-title { font-family: var(--serif); font-size: 1.4rem; font-weight: 300; color: var(--ink); line-height: 1.25; }
.event-desc { font-family: var(--sans); font-size: 0.92rem; font-weight: 300; color: #555552; line-height: 1.75; }
.event-meta { font-family: var(--sans); font-size: 0.78rem; font-weight: 300; color: var(--mid); letter-spacing: 0.04em; margin-top: 4px; }
.event-action { display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.btn-small {
  display: inline-block;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--sans);
  font-size: 0.64rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 22px;
  transition: background .2s, color .2s;
  white-space: nowrap;
}
.btn-small:hover { background: var(--gold); color: var(--black); }
.event-spots { font-family: var(--sans); font-size: 0.72rem; color: var(--mid); letter-spacing: 0.04em; }
@media (min-width: 720px) {
  .event-item { grid-template-columns: 120px 1fr auto; gap: 32px; align-items: start; padding: 36px 0; }
  .event-item.has-thumb { grid-template-columns: 160px 1fr auto; }
  .event-thumb { height: 120px; }
}
@media (min-width: 1040px) {
  .event-item { gap: 44px; padding: 40px 0; }
}

/* =============================================================
   PRIVATE DINING
   ============================================================= */
.pitch { padding: 64px 24px; display: grid; gap: 36px; }
.pitch-left { display: flex; flex-direction: column; gap: 18px; align-items: flex-start; }
.pitch-right { display: flex; flex-direction: column; gap: 22px; }
.pitch-detail { display: flex; flex-direction: column; gap: 6px; padding: 18px 0; border-bottom: 1px solid var(--line-lt); }
.pitch-detail:last-child { border-bottom: none; }
.pitch-detail-label { font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }
.pitch-detail-value { font-family: var(--sans); font-size: 0.95rem; font-weight: 300; color: var(--ink); line-height: 1.75; }
@media (min-width: 820px) {
  .pitch { padding: 96px 64px; grid-template-columns: 1.1fr 1fr; gap: 64px; align-items: start; }
}
@media (min-width: 1100px) { .pitch { padding: 112px 80px; gap: 80px; } }

.image-moment { padding: 56px 24px; }
.image-inner { position: relative; overflow: hidden; height: 360px; }
.image-fill {
  /* Set background-image inline on the div in the page content (cms-editable).
     Filter + sizing live here; URL lives on the page. */
  width: 100%; height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: grayscale(100%) brightness(0.6);
}
.image-caption {
  position: absolute; inset: auto 0 0 0;
  padding: 28px 24px;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, transparent 100%);
}
.image-caption p {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.92);
  max-width: 460px;
}
@media (min-width: 820px) {
  .image-moment { padding: 72px 64px; }
  .image-inner { height: 460px; }
  .image-caption { padding: 40px 48px; }
  .image-caption p { font-size: 1.6rem; }
}

/* INQUIRY FORM */
.inquiry-section {
  background: #faf9f7;
  padding: 64px 24px;
  display: grid;
  gap: 40px;
}
.inquiry-left { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.inquiry-note {
  margin-top: 8px;
  padding: 18px 20px;
  background: #fff;
  border-left: 2px solid var(--gold);
}
.inquiry-note p { font-family: var(--sans); font-size: 0.85rem; font-weight: 300; color: #555552; line-height: 1.7; margin: 0; }
.inquiry-note a { color: var(--ink); }
.inquiry-form { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-family: var(--sans);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 12px 14px;
  outline: none;
  transition: border-color .2s;
  width: 100%;
}
.form-group textarea { resize: vertical; min-height: 120px; font-family: var(--sans); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--gold); }
.inquiry-form .btn-primary { align-self: flex-start; margin-top: 6px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.6;
  color: #555552;
  cursor: pointer;
  padding: 4px 0;
}
.form-consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 3px;
  accent-color: var(--gold);
  cursor: pointer;
}
.form-consent a { color: var(--ink); border-bottom: 1px solid rgba(0,0,0,0.15); transition: color .2s, border-color .2s; text-decoration: none; }
.form-consent a:hover { color: var(--gold); border-bottom-color: var(--gold); }
@media (min-width: 600px) { .form-row { grid-template-columns: 1fr 1fr; } }
@media (min-width: 820px) {
  .inquiry-section { padding: 96px 64px; grid-template-columns: 1fr 1.2fr; gap: 64px; align-items: start; }
}
@media (min-width: 1100px) { .inquiry-section { padding: 112px 80px; gap: 80px; } }

/* =============================================================
   CONTACT PAGE
   ============================================================= */
.contact-wrap { padding: 56px 24px; display: grid; gap: 40px; }
.contact-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 28px 24px;
  background: #faf9f7;
  border-left: 2px solid var(--gold);
}
.contact-card h3 {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-card p, .contact-card a {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.75;
}
.contact-card a:hover { color: var(--gold); }
.contact-map {
  width: 100%;
  height: 320px;
  border: none;
  filter: grayscale(40%);
}
@media (min-width: 820px) {
  .contact-wrap { padding: 88px 64px; grid-template-columns: 1fr 1.3fr; gap: 64px; align-items: start; }
  .contact-cards { display: flex; flex-direction: column; gap: 20px; }
  .contact-map { height: 460px; }
}
@media (min-width: 1100px) { .contact-wrap { padding: 96px 80px; gap: 80px; } }

/* =============================================================
   COOKIE CONSENT
   ============================================================= */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 100;
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.75);
  padding: 24px;
  animation: cookie-slide-up .35s ease-out;
}
.cookie-banner[hidden] { display: none; }
@keyframes cookie-slide-up {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cookie-banner-text { display: flex; flex-direction: column; gap: 10px; }
.cookie-banner-text .section-label { color: var(--gold-lt); }
.cookie-banner-text p {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.62);
  max-width: 720px;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--gold-lt);
  text-decoration: none;
  border-bottom: 1px solid rgba(212,176,122,0.3);
  transition: border-color .2s, color .2s;
}
.cookie-banner-text a:hover { color: #fff; border-bottom-color: #fff; }
.cookie-banner-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
}
.cookie-banner-actions .btn-primary,
.cookie-banner-actions .btn-outline-gold {
  text-align: center;
  padding: 13px 28px;
}
.cookie-settings-link {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.66rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  padding: 8px 0;
  transition: color .2s;
  align-self: center;
}
.cookie-settings-link:hover { color: var(--gold-lt); }

@media (min-width: 820px) {
  .cookie-banner { padding: 28px 48px; }
  .cookie-banner-inner { flex-direction: row; align-items: center; justify-content: space-between; gap: 40px; }
  .cookie-banner-actions {
    flex-direction: row;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
  }
  .cookie-banner-actions .btn-primary,
  .cookie-banner-actions .btn-outline-gold { padding: 13px 24px; white-space: nowrap; }
}

/* Modal */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.cookie-modal[hidden] { display: none; }
.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14,13,12,0.72);
  animation: cookie-fade .25s ease-out;
}
@keyframes cookie-fade { from { opacity: 0; } to { opacity: 1; } }
.cookie-modal-panel {
  position: relative;
  background: #faf9f7;
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookie-slide-up .3s ease-out;
}
.cookie-modal-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.6rem;
  color: var(--mid);
  line-height: 1;
  padding: 6px 10px;
  transition: color .2s;
}
.cookie-modal-close:hover { color: var(--ink); }
.cookie-modal-title {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1.2;
}
.cookie-modal-intro {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.75;
  color: #555552;
  margin: 0;
}
.cookie-cat {
  padding: 18px 0;
  border-top: 1px solid var(--line-lt);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cookie-cat:last-of-type { border-bottom: 1px solid var(--line-lt); }
.cookie-cat-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.cookie-cat-head h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--ink);
  margin: 0;
}
.cookie-cat p {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--mid);
  margin: 0;
}
.cookie-cat-badge {
  font-family: var(--sans);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 4px 10px;
  border: 1px solid rgba(197,157,95,0.3);
}
.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 22px;
  cursor: pointer;
  flex-shrink: 0;
}
.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  border-radius: 22px;
  transition: background .2s;
}
.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50%;
  transition: transform .2s;
}
.cookie-toggle input:checked + .cookie-toggle-slider { background: var(--gold); }
.cookie-toggle input:checked + .cookie-toggle-slider::before { transform: translateX(20px); }
.cookie-toggle input:focus-visible + .cookie-toggle-slider { outline: 2px solid var(--gold-lt); outline-offset: 2px; }
.cookie-modal-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 8px;
}
.cookie-modal-actions .btn-primary,
.cookie-modal-actions .btn-outline-gold {
  text-align: center;
  padding: 13px 28px;
}
@media (min-width: 600px) {
  .cookie-modal { align-items: center; padding: 24px; }
  .cookie-modal-panel { padding: 44px 40px 36px; }
  .cookie-modal-actions { flex-direction: row; gap: 14px; }
}

/* Footer consent link */
.footer-consent-link {
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
  font: inherit;
  padding: 0;
  transition: color .2s;
}
.footer-consent-link:hover { color: #fff; }

/* =============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================= */
.legal-wrap {
  max-width: 780px;
  margin: 0 auto;
  padding: 56px 24px 72px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.legal-wrap h2 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3.2vw, 1.8rem);
  font-weight: 300;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: 0.01em;
}
.legal-wrap h3 {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2px;
  margin-top: 12px;
}
.legal-wrap p,
.legal-wrap li {
  font-family: var(--sans);
  font-size: 0.94rem;
  font-weight: 300;
  color: #444441;
  line-height: 1.8;
}
.legal-wrap a { color: var(--gold); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .2s; }
.legal-wrap a:hover { border-bottom-color: var(--gold); }
.legal-wrap ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.legal-wrap ul li::before { content: '\00B7'; color: var(--gold); margin-right: 10px; }
.legal-section { display: flex; flex-direction: column; gap: 10px; }
@media (min-width: 820px) { .legal-wrap { padding: 80px 40px 96px; gap: 44px; } }
