/* =====================================================================
   MAMA LEBAO — Vietnamesisches Restaurant · Stylesheet
   Skin: hell & warm — Cream / Terrakotta / Gold (Hamburg-Eimsbüttel).
   Struktur: 1) Tokens 2) Reset 3) Base 4) Layout 5) Components
             6) Sections 7) Premium/Deco 8) Responsive
   ===================================================================== */

/* ---------- 1) DESIGN TOKENS ---------------------------------------- */
:root {
  /* Surfaces (hell, warm) */
  --bg:            #FAF7F2; /* warmes Cream */
  --bg-2:          #F2EBDF; /* alternierende Sektion */
  --card:          #FFFFFF;
  --muted:         #F2EBDF;
  --border:        #E5DACA; /* warme helle Trennlinie */
  --border-gold:   rgba(201,162,77,.40);

  /* Brand — Terrakotta + Gold */
  --primary:       #91422F; /* Terrakotta */
  --primary-hover: #7C3727;
  --on-primary:    #FFFFFF;
  --secondary:     #C9A24D; /* Gold */
  --on-secondary:  #2A211C;
  --accent:        #C9A24D; /* Gold */
  --on-accent:     #2A211C;
  --vermilion:     #B5613E; /* zweiter warmer Akzent (scharf-Tag) */

  /* Text */
  --fg:            #2A211C; /* warmes Dunkelbraun */
  --muted-fg:      #6E6155; /* gedämpftes Warmgrau — AA auf Cream */

  /* Text auf dunklen Foto-Overlays (Hero/Band/Kategorien) */
  --on-photo:       #FBF6EC;
  --on-photo-muted: #E8DCC8;
  --on-photo-gold:  #E0BE72;

  /* States */
  --destructive:   #C2553F;
  --ring:          #91422F;

  /* Fonts — elegante Serif + klare Sans */
  --font-heading: 'Playfair Display', 'Lora', Georgia, serif;
  --font-body:    'Raleway', system-ui, sans-serif;
  --font-accent:  'Playfair Display', Georgia, serif; /* italic via styling */

  /* Radius — klar/streng */
  --r-sm: 2px;  --r-md: 4px;  --r-lg: 6px;  --r-pill: 999px;

  /* Shadow — weich, hell (warmes Braun statt Schwarz) */
  --shadow-sm: 0 2px 10px rgba(80,55,40,.10);
  --shadow-md: 0 10px 34px rgba(80,55,40,.14);
  --shadow-lg: 0 20px 60px rgba(80,55,40,.18);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 6.5rem);
}

/* ---------- 2) RESET ------------------------------------------------ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
img, svg, video { display: block; max-width: 100%; height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
ul[class] { list-style: none; padding: 0; }

/* ---------- 3) BASE ------------------------------------------------- */
body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 500; line-height: 1.16; color: var(--fg); letter-spacing: .005em; }
h1 { font-size: clamp(2.4rem, 6vw, 4.25rem); font-weight: 600; }
h2 { font-size: clamp(1.9rem, 4.2vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.2rem; }
p  { color: var(--fg); }
.lead { font-size: 1.1rem; color: var(--muted-fg); max-width: 60ch; line-height: 1.7; }

::selection { background: var(--primary); color: var(--on-primary); }
:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; border-radius: 2px; }

/* ---------- 4) LAYOUT ---------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); }
.section--muted { background: var(--bg-2); }
.section--dark  { background: #2A211C; color: var(--on-photo); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4, .section--dark p { color: var(--on-photo); }

.grid { display: grid; gap: clamp(1.25rem, 3vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

/* Eyebrow — Gold, gesperrt, mit feiner Linie */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600; font-size: .72rem; letter-spacing: .28em;
  text-transform: uppercase; color: var(--primary);
  display: inline-flex; align-items: center; gap: .7rem;
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--primary); opacity: .7; }
.section-head { max-width: 62ch; margin-bottom: clamp(2rem, 5vw, 3rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::after { content: ""; width: 28px; height: 1px; background: var(--primary); opacity: .7; }

/* Akzent-Schrift: elegante Kursive statt Handschrift */
.script { font-family: var(--font-accent); font-style: italic; color: var(--primary); font-weight: 500; }

/* ---------- 5) COMPONENTS ------------------------------------------ */
/* Buttons — Art Deco: rechteckig, Versalien, gesperrt */
.btn {
  --btn-bg: var(--primary); --btn-fg: var(--on-primary);
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.9rem; border-radius: 0;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-body); font-weight: 600; font-size: .76rem;
  letter-spacing: .16em; text-transform: uppercase;
  border: 1px solid var(--btn-bg);
  cursor: pointer; transition: transform .2s var(--ease), background .2s var(--ease), color .2s var(--ease), box-shadow .2s var(--ease);
  white-space: nowrap;
}
.btn:hover { background: var(--primary-hover); border-color: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--ghost { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn--ghost:hover { background: var(--primary); color: var(--on-primary); }
.btn--accent { --btn-bg: var(--primary); }
.btn--light { background: #fff; color: var(--primary); border-color: #fff; }
.btn--light:hover { background: var(--secondary); color: var(--on-secondary); border-color: var(--secondary); }
.btn--lg { padding: 1.05rem 2.2rem; font-size: .8rem; }
.btn--block { display: flex; width: 100%; }

/* Badge */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .35rem .85rem; border-radius: var(--r-pill);
  background: transparent; color: var(--primary); border: 1px solid var(--border-gold);
  font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
}
.badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
/* Zweiter, sehr sparsamer Akzent: Terrakotta (nur „vegan"-Badge & scharf-Tag) */
.badge--veg { color: var(--vermilion); border-color: rgba(181,97,62,.45); }
.badge--veg .dot { background: var(--vermilion); }
.hero__badges { margin-top: 1.5rem; }

/* Tag chip */
.tag { display: inline-block; padding: .2rem .6rem; border-radius: var(--r-pill);
  background: rgba(201,162,77,.14); color: var(--primary); font-size: .68rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase; border: 1px solid var(--border-gold); }
.tag--veg { background: rgba(201,162,77,.18); color: var(--primary); }
.tag--hot { background: rgba(181,97,62,.16); color: #D08A66; border-color: rgba(181,97,62,.4); }

/* Card */
.card {
  background: var(--card); border-radius: var(--r-lg); border: 1px solid var(--border);
  box-shadow: var(--shadow-sm); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
  display: flex; flex-direction: column;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--border-gold); }
.card__body { padding: 1.6rem; display: flex; flex-direction: column; gap: .6rem; flex: 1; }
.card__title { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; }
.card__price { font-family: var(--font-heading); color: var(--primary); font-weight: 600; white-space: nowrap; }
.card__tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: auto; }

/* Media — Foto-Rahmen mit feiner Gold-Linie (Fotos via mlb_img()) */
.media {
  position: relative; aspect-ratio: 4 / 3; border-radius: var(--r-lg); overflow: hidden;
  background: linear-gradient(135deg, #F3EADB 0%, #E9DCC8 60%, #F3EADB 100%);
  border: 1px solid var(--border-gold);
  display: grid; place-items: center;
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media__label {
  position: relative; z-index: 1; font-family: var(--font-heading); font-style: italic;
  color: var(--primary); font-size: 1.05rem; opacity: .9; padding: .4rem 1rem; text-align: center;
}
.media__label::before { content: "❦"; display: block; font-style: normal; font-size: 1.4rem; margin-bottom: .25rem; }
.media--tall { aspect-ratio: 3 / 4; }
.media--wide { aspect-ratio: 16 / 10; }

/* Decorative blob — sehr dezent, golden */
.blob { position: absolute; z-index: 0; opacity: .08; pointer-events: none; }
.blob path { fill: var(--primary) !important; }

/* ---------- 6) SECTIONS -------------------------------------------- */
/* Header / Nav */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--bg) 90%, transparent);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--shadow-sm); border-color: var(--border-gold); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; min-height: 80px; }
.brand { display: flex; align-items: center; gap: .7rem; font-family: var(--font-heading); font-size: 1.45rem; font-weight: 600; color: var(--fg); letter-spacing: .04em; }
/* Mama LeBao: breite Wortmarke (Terrakotta-PNG, ~3:1). */
.brand .brand__logo { height: 40px; width: auto; max-width: 190px; object-fit: contain; display: block; flex: none; }
.brand__name { display: flex; flex-direction: column; justify-content: center; gap: .18rem; }
.brand small { display: block; font-family: var(--font-body); font-size: .58rem; letter-spacing: .24em; text-transform: uppercase; color: var(--muted-fg); font-weight: 600; }

.nav__menu { display: flex; align-items: center; gap: 1.9rem; }
.nav__link { font-family: var(--font-body); font-weight: 500; font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; padding: .4rem 0; position: relative; color: var(--fg); }
.nav__link::after { content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px; background: var(--primary); transition: width .25s var(--ease); }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }
.nav__link.is-active { color: var(--primary); }
.nav__actions { display: flex; align-items: center; gap: .85rem; }
.lang-switch { display: inline-flex; gap: .25rem; font-size: .76rem; font-weight: 600; letter-spacing: .08em; color: var(--muted-fg); }
.lang-switch a.is-active { color: var(--primary); }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; padding: .5rem; cursor: pointer; }
.nav__toggle span { width: 26px; height: 1.5px; background: var(--fg); border-radius: 2px; transition: transform .3s var(--ease), opacity .3s var(--ease); }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero */
.hero { position: relative; padding-block: clamp(3rem, 7vw, 5.5rem) clamp(3.5rem, 8vw, 6.5rem); overflow: hidden; }
.hero__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.hero__greeting { font-family: var(--font-accent); font-style: italic; font-size: 1.6rem; color: var(--primary); display: block; margin-bottom: .5rem; }
.hero h1 { margin-bottom: 1.4rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 1.9rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.9rem; color: var(--muted-fg); font-size: .85rem; letter-spacing: .04em; }
.hero__meta strong { color: var(--fg); }
.hero__media { position: relative; }
.hero__media .media { box-shadow: var(--shadow-lg); }
.hero__media .media__label::before { content: "❦"; }
.hero .blob--1 { width: 380px; height: 380px; top: -130px; right: -100px; }
.hero .blob--2 { width: 250px; height: 250px; bottom: -110px; left: -90px; }

/* Steps / process */
.step { text-align: center; padding: 1.5rem; }
.step__num { width: 60px; height: 60px; margin: 0 auto 1.1rem; border-radius: 50%; background: transparent; border: 1px solid var(--border-gold);
  display: grid; place-items: center; font-family: var(--font-heading); font-size: 1.3rem; color: var(--primary); }
.step h3 { margin-bottom: .5rem; }
.step p { color: var(--muted-fg); }

/* Feature split */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media .media { box-shadow: var(--shadow-md); }
.stack { display: flex; flex-direction: column; gap: 1.1rem; }
.value-list { display: grid; gap: .9rem; margin-top: .5rem; }
.value-list li { display: flex; gap: .75rem; align-items: flex-start; color: var(--muted-fg); }
.value-list .ico { flex: none; width: 26px; height: 26px; border-radius: 50%; background: transparent; border: 1px solid var(--border-gold); color: var(--primary); display: grid; place-items: center; font-size: .8rem; margin-top: .15rem; }
.value-list strong { color: var(--fg); }

/* Testimonials */
.testi { position: relative; }
.testi__track { display: grid; grid-auto-flow: column; grid-auto-columns: 100%; overflow: hidden; }
.testi__item { padding: clamp(1.5rem, 4vw, 2.5rem); text-align: center; max-width: 780px; margin-inline: auto; }
.testi__stars { color: var(--primary); letter-spacing: .25em; margin-bottom: 1.1rem; }
.testi__quote { font-family: var(--font-heading); font-style: italic; font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 400; line-height: 1.45; color: var(--fg); }
.testi__author { margin-top: 1.4rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; font-size: .8rem; color: var(--primary); }
.testi__author span { display: block; font-weight: 400; letter-spacing: .04em; text-transform: none; color: var(--muted-fg); font-size: .85rem; margin-top: .25rem; }
.testi__dots { display: flex; justify-content: center; gap: .5rem; margin-top: 1.6rem; }
.testi__dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--border-gold); background: transparent; cursor: pointer; transition: background .2s, transform .2s; }
.testi__dots button.is-active { background: var(--primary); border-color: var(--primary); transform: scale(1.2); }

/* Reservation / CTA band — gerahmter dunkler Block */
.cta-band { position: relative; overflow: hidden; border: 1px solid var(--border-gold); padding: clamp(2.5rem, 6vw, 4.5rem); text-align: center; background: var(--bg-2); }
.cta-band h2 { color: var(--fg); }
.cta-band .blob { opacity: .06; }
.cta-band .hero__cta { justify-content: center; }

/* Forms */
.form { display: grid; gap: 1.1rem; }
.field { display: grid; gap: .4rem; }
.field label { font-weight: 600; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); }
.field input, .field select, .field textarea {
  padding: .85rem 1rem; border: 1px solid var(--border); border-radius: var(--r-md);
  background: #FFFFFF; color: var(--fg); transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input::placeholder, .field textarea::placeholder { color: #A99C8C; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(145,66,47,.15); }
.field textarea { resize: vertical; min-height: 120px; }
.field--row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form__note { font-size: .85rem; color: var(--muted-fg); }
.form__success { display: none; padding: 1rem 1.25rem; border-radius: var(--r-md); background: rgba(145,66,47,.10); border: 1px solid var(--border-gold); color: var(--primary); font-weight: 600; }
.form__success.is-visible { display: block; }

/* Info card (contact) */
.info-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 1.85rem; box-shadow: var(--shadow-sm); display: grid; gap: 1.1rem; }
.info-row { display: flex; gap: .9rem; }
.info-row .ico { flex: none; width: 42px; height: 42px; border-radius: 50%; background: transparent; border: 1px solid var(--border-gold); display: grid; place-items: center; }
.info-row strong { display: block; color: var(--fg); }
.hours { width: 100%; border-collapse: collapse; }
.hours td { padding: .5rem 0; border-bottom: 1px dashed var(--border); color: var(--muted-fg); }
.hours td:first-child { color: var(--fg); }
.hours td:last-child { text-align: right; }
.map-embed { border: 1px solid var(--border-gold); width: 100%; height: 100%; min-height: 320px; border-radius: var(--r-lg); filter: grayscale(.3) brightness(.9); }

/* Page hero (inner pages) */
.page-hero { padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(2rem, 4vw, 3rem); text-align: center; position: relative; overflow: hidden; }
.page-hero .blob--1 { width: 300px; height: 300px; top: -120px; left: -80px; }
.page-hero p { margin-inline: auto; }
.breadcrumb { font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-fg); margin-bottom: .9rem; }
.breadcrumb a:hover { color: var(--primary); }

/* Menu list (services) */
.menu-cat { margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.menu-cat__head { display: flex; align-items: baseline; gap: 1.25rem; margin-bottom: 1.6rem; }
.menu-cat__head h2 { white-space: nowrap; }
.menu-cat__head .rule { flex: 1; height: 1px; background: var(--border-gold); }
.dish { display: grid; grid-template-columns: 1fr auto; gap: .35rem 1rem; padding: 1.2rem 0; border-bottom: 1px dashed var(--border); }
.dish__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.15rem; color: var(--fg); }
.dish__name .script-note { font-family: var(--font-accent); font-style: italic; color: var(--primary); font-size: 1rem; margin-left: .4rem; }
.dish__price { font-family: var(--font-heading); font-weight: 600; color: var(--primary); }
.dish__desc { grid-column: 1 / -1; color: var(--muted-fg); font-size: .92rem; }
.dish__tags { grid-column: 1 / -1; display: flex; gap: .4rem; flex-wrap: wrap; margin-top: .3rem; }

/* Mittagskarte */
.mittagskarte { border: 1px solid var(--border-gold); border-radius: var(--r-lg); padding: clamp(1.5rem, 4vw, 2.75rem); background: linear-gradient(160deg, rgba(201,162,77,.12), rgba(250,247,242,0)); }
.mittagskarte__head { text-align: center; margin-bottom: 1.75rem; }
.mittagskarte__head h2 { margin: .3rem 0 .7rem; }
.mittagskarte__meta { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem 1.25rem; color: var(--primary); font-size: .82rem; letter-spacing: .08em; text-transform: uppercase; }
.mittagskarte__drink { text-align: center; max-width: 30rem; margin: 0 auto 1.6rem; padding: .7rem 1.25rem; border: 1px dashed var(--border-gold); border-radius: var(--r-md); color: var(--fg); font-family: var(--font-accent); font-style: italic; font-size: 1.05rem; }
.mittagskarte__list { display: grid; gap: 0; }
.mittagskarte .dish:last-of-type { border-bottom: 0; }
.mittagskarte__note { text-align: center; color: var(--muted-fg); font-size: .85rem; margin-top: 1.4rem; }

/* Blog */
.post-card { display: flex; flex-direction: column; }
.post-card .media { border-radius: 0; border-left: 0; border-right: 0; border-top: 0; aspect-ratio: 16/10; }
.post-card__meta { font-size: .72rem; color: var(--primary); letter-spacing: .14em; text-transform: uppercase; }
.post-card h3 { transition: color .2s var(--ease); }
.post-card:hover h3 { color: var(--primary); }
.post-card__excerpt { color: var(--muted-fg); }
.read-more { font-weight: 600; color: var(--primary); letter-spacing: .12em; text-transform: uppercase; font-size: .76rem; display: inline-flex; gap: .35rem; }
.read-more::after { content: "→"; transition: transform .2s var(--ease); }
.post-card:hover .read-more::after { transform: translateX(4px); }
.post-feature { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(1.5rem,4vw,3rem); align-items: center; background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.post-feature .media { border-radius: 0; border: 0; height: 100%; min-height: 320px; }
.post-feature__body { padding: clamp(1.75rem, 4vw, 2.75rem); }

/* Footer — dunkel & warm; Tokens lokal umgefärbt, damit alle Kinder hell werden */
.site-footer {
  background: #241C17; padding-block: clamp(3rem, 6vw, 4.5rem) 2rem; border-top: 3px solid var(--secondary);
  --fg: #FBF6EC; --muted-fg: #CBBBA6; --border: rgba(255,255,255,.13); --border-gold: rgba(224,190,114,.32); --primary: #E0BE72;
  color: var(--muted-fg);
}
.site-footer a { color: var(--muted-fg); }
.site-footer a:hover { color: var(--primary); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: clamp(1.5rem, 4vw, 2.5rem); }
.site-footer .brand { color: var(--fg); }
.site-footer .brand small { color: var(--muted-fg); }
.footer-col h4 { color: var(--fg); margin-bottom: 1.1rem; font-size: .82rem; letter-spacing: .16em; text-transform: uppercase; }
.footer-col ul { display: grid; gap: .65rem; font-size: .9rem; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.1rem; }
.footer-social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border); display: grid; place-items: center; transition: border-color .2s, color .2s; }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }
.newsletter { display: flex; gap: .5rem; margin-top: .85rem; }
.newsletter input { flex: 1; padding: .75rem .95rem; border-radius: 0; border: 1px solid var(--border); background: #18150F; color: var(--fg); }
.newsletter input::placeholder { color: #8A8270; }
.newsletter button { border-radius: 0; }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .82rem; color: var(--muted-fg); }
.footer-bottom nav { display: flex; gap: 1.5rem; flex-wrap: wrap; letter-spacing: .08em; text-transform: uppercase; }

/* Legal / prose pages */
.legal { max-width: 820px; }
.legal h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: .6rem; color: var(--fg); }
.legal h3 { margin-top: 1.5rem; margin-bottom: .3rem; color: var(--fg); }
.legal p, .legal li { color: var(--muted-fg); }
.legal p { margin-bottom: .9rem; }
.legal a { color: var(--primary); font-weight: 600; }
.legal ul { padding-left: 1.2rem; display: grid; gap: .4rem; margin-bottom: .9rem; }
.note-banner { background: rgba(201,162,77,.14); border: 1px solid var(--border-gold); color: var(--primary); padding: 1rem 1.25rem; border-radius: var(--r-md); font-size: .9rem; margin-bottom: 1.5rem; }

/* ---------- 7) PREMIUM / ART-DECO LAYER ---------------------------- */
.ornament { display: flex; align-items: center; justify-content: center; gap: 1rem; max-width: 320px; margin: 1.1rem auto 0; }
.ornament::before, .ornament::after { content: ""; height: 1px; flex: 1; background: linear-gradient(to right, transparent, var(--border-gold)); }
.ornament::after { background: linear-gradient(to left, transparent, var(--border-gold)); }
.ornament__mark { font-family: var(--font-heading); color: var(--primary); font-size: 1rem; line-height: 1; }

/* Khung ảnh: Art Deco = chữ nhật viền vàng (bỏ vòm để giống Laurent) */
.media--arch { border-radius: var(--r-lg); }

/* Marquee */
.marquee { overflow: hidden; border-block: 1px solid var(--border-gold); padding-block: 1.2rem; background: var(--bg); }
.marquee__track { display: flex; width: max-content; animation: marquee 32s linear infinite; }
.marquee__track > span { display: inline-flex; align-items: center; font-family: var(--font-heading); font-style: italic; font-size: clamp(1.1rem, 2.4vw, 1.65rem); color: var(--fg); white-space: nowrap; padding-inline: 1.5rem; }
.marquee__track > span::after { content: "✦"; color: var(--primary); margin-left: 3rem; font-size: .7em; font-style: normal; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* Split overlap */
.split--overlap .split__media { position: relative; }
.split--overlap .split__media::after { content: ""; position: absolute; right: -1.25rem; bottom: -1.25rem; width: 62%; height: 62%; border: 1px solid var(--border-gold); border-radius: var(--r-lg); z-index: 0; }
.split--overlap .split__media .media { position: relative; z-index: 1; }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(.75rem, 1.5vw, 1rem); }
.gallery figure { position: relative; overflow: hidden; border-radius: var(--r-md); aspect-ratio: 1; background: linear-gradient(135deg, #E9DCC8, #F3EADB); border: 1px solid var(--border-gold); }
.gallery figure:nth-child(3n) { aspect-ratio: 1 / 1.3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.gallery figure:hover img { transform: scale(1.07); }
.gallery .media__label { position: absolute; inset: 0; display: grid; place-items: center; }

.hero h1 { letter-spacing: 0; }

/* ===== LAYOUT À LA LAURENT ========================================= */
/* Đường kẻ dọc viền 2 bên (Laurent-Signature) */
.frame-lines { position: fixed; inset: 0; pointer-events: none; z-index: 90; }
.frame-lines::before, .frame-lines::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: var(--border-gold); opacity: .6; }
.frame-lines::before { left: 22px; }
.frame-lines::after { right: 22px; }

/* Hintergrundbild + warmer dunkler Verlauf (Hero & Band) */
.bg-cover { position: absolute; inset: 0; z-index: 0; }
.bg-cover img { width: 100%; height: 100%; object-fit: cover; }
.bg-cover::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(38,28,23,.52), rgba(38,28,23,.74)); }

/* Heller Text auf den Foto-Sektionen (Cream BG → hier dunkler Foto-Grund) */
.hero-slide, .band--image .container, .page-hero--image .container { color: var(--on-photo); }
.hero-slide h1, .hero-slide .hero-h, .hero-slide p, .hero-slide .lead,
.band--image h1, .band--image h2, .band--image p, .band--image .lead,
.page-hero--image h1, .page-hero--image h2, .page-hero--image p, .page-hero--image .lead { color: var(--on-photo); }
.hero-slide .eyebrow, .band--image .eyebrow, .page-hero--image .eyebrow { color: var(--on-photo-gold); }
.hero-slide .eyebrow::before, .hero-slide .eyebrow::after,
.band--image .eyebrow::before, .band--image .eyebrow::after,
.page-hero--image .eyebrow::before, .page-hero--image .eyebrow::after { background: var(--on-photo-gold); }
.band--image .band__hours, .page-hero--image .breadcrumb { color: var(--on-photo-muted); }
.page-hero--image .breadcrumb a:hover { color: var(--on-photo-gold); }
/* Ghost-Buttons auf Foto-Grund: heller Rand statt dunkles Terrakotta */
.hero-slide .btn--ghost, .band--image .btn--ghost, .page-hero--image .btn--ghost { color: var(--on-photo); border-color: rgba(255,255,255,.65); background: transparent; }
.hero-slide .btn--ghost:hover, .band--image .btn--ghost:hover, .page-hero--image .btn--ghost:hover { background: #fff; color: var(--primary); border-color: #fff; }

/* Hero full-screen Slider, chữ căn giữa overlay */
.hero--full { position: relative; min-height: 100vh; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; padding-block: 6rem; opacity: 0; visibility: hidden; transition: opacity 1s var(--ease); }
.hero-slide.is-active { opacity: 1; visibility: visible; }
.hero-slide.is-active .bg-cover img { animation: kenburns 12s ease-out forwards; }
@keyframes kenburns { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero__inner { position: relative; z-index: 1; max-width: 800px; margin-inline: auto; }
.hero--full h1, .hero--full .hero-h { font-size: clamp(2.8rem, 8vw, 5.75rem); font-weight: 600; margin: 1.1rem 0 1.3rem; }
.hero--full .hero__cta { justify-content: center; }
.hero--full .lead { margin-inline: auto; }
.hero-slider__dots { position: absolute; left: 0; right: 0; bottom: 2.5rem; z-index: 3; display: flex; justify-content: center; gap: .6rem; }
.hero-slider__dots button { width: 36px; height: 2px; border: 0; padding: 0; background: rgba(236,228,211,.3); cursor: pointer; transition: background .3s var(--ease); }
.hero-slider__dots button.is-active { background: var(--on-photo-gold); }
.scroll-hint { position: absolute; left: 0; right: 0; bottom: 5.5rem; z-index: 3; margin: 0; font-size: .8rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted-fg); }
.scroll-hint span { display: block; margin-top: .8rem; color: var(--primary); animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* Page-Hero als Bildbanner (trang trong) */
.page-hero--image { position: relative; min-height: 52vh; display: grid; place-items: center; padding-block: clamp(4rem,9vw,7rem) clamp(3rem,6vw,5rem); overflow: hidden; }
.page-hero--image .container { position: relative; z-index: 1; }

/* Our Story — hai ảnh cạnh nhau, lệch tầng */
.story-images { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2.5vw, 1.75rem); margin-top: 2.75rem; }
.story-images .media { aspect-ratio: 3 / 4; }
.story-images .media:nth-child(2) { margin-top: clamp(1.5rem, 4vw, 3rem); }

/* Menu 2 cột với dotted leader (giá) */
.price-list { display: grid; grid-template-columns: 1fr 1fr; gap: 0 clamp(2rem, 5vw, 4rem); }
.price-item { display: flex; align-items: baseline; gap: .7rem; padding: 1rem 0; border-bottom: 1px dashed var(--border); }
.price-item__name { font-family: var(--font-heading); font-weight: 600; font-size: 1.08rem; color: var(--fg); }
.price-item__name .script-note { font-family: var(--font-accent); font-style: italic; color: var(--primary); font-size: .92rem; margin-left: .3rem; }
.price-item__lead { flex: 1; border-bottom: 1px dotted var(--border-gold); transform: translateY(-3px); min-width: 1.5rem; }
.price-item__price { font-family: var(--font-heading); font-weight: 600; color: var(--primary); white-space: nowrap; }

/* Menu Categories — 3 thẻ ảnh có nhãn */
.cat-card { position: relative; display: block; overflow: hidden; border-radius: var(--r-lg); border: 1px solid var(--border-gold); aspect-ratio: 4 / 5; background: linear-gradient(135deg, #E9DCC8, #F3EADB); }
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 36%, rgba(38,28,23,.88)); }
.cat-card:hover img { transform: scale(1.06); }
.cat-card__label { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; text-align: center; padding: 1.6rem; }
.cat-card__label h3 { color: #fff; margin-bottom: .3rem; }
.cat-card__label span { color: var(--on-photo-gold); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; }

/* Băng ảnh full-width (Booking) */
.band--image { position: relative; overflow: hidden; text-align: center; padding-block: clamp(4rem, 10vw, 7rem); }
.band--image .container { position: relative; z-index: 1; }
.band--image .hero__cta { justify-content: center; }
.band__hours { margin-top: 1rem; color: var(--muted-fg); letter-spacing: .04em; }

/* Scroll reveal */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- UTILITIES ---------------------------------------------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--primary); color: var(--on-primary); padding: .6rem 1rem; border-radius: 0 0 var(--r-sm) 0; z-index: 200; }
.skip-link:focus { left: 0; }

/* ---------- 8) RESPONSIVE ------------------------------------------ */
@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__media { order: -1; max-width: 460px; margin-inline: auto; }
  .split, .post-feature, .post-feature .media { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: -1; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery figure:nth-child(3n) { aspect-ratio: 1; }
  .split--overlap .split__media::after { display: none; }
  .price-list { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav__menu {
    position: fixed; inset: 80px 0 auto 0;
    background: var(--bg); border-bottom: 1px solid var(--border-gold);
    flex-direction: column; align-items: stretch; gap: 0; padding: .5rem var(--gutter) 1.5rem;
    box-shadow: var(--shadow-md);
    text-align: center;
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s;
  }
  .nav__menu.is-open { transform: none; opacity: 1; visibility: visible; }
  .nav__link { padding: .95rem 0; border-bottom: 1px solid var(--border); }
  .nav__link:last-child { border-bottom: 0; }
  .nav__link::after { display: none; }   /* keine durchgehende gold-Linie im Mobile-Menue (Hover bleibt auf Touch haengen) */
  .nav__toggle { display: flex; }
  .nav__actions .btn { display: none; }      /* CTA wandert in die Sticky-Bottom-Bar */
  .frame-lines { display: none; }
  .hero--full { min-height: 78vh; }
}

@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .field--row { grid-template-columns: 1fr; }

  /* Kompakter Footer auf dem Handy: Navigation + Öffnungszeiten nebeneinander,
     Marke & Newsletter über die volle Breite, alles zentriert. */
  .site-footer { padding-block: 2.5rem 1.5rem; text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.75rem 1.5rem; }
  .footer-col:first-child, .footer-col:last-child { grid-column: 1 / -1; }
  .footer-social { justify-content: center; }
  .footer-col ul { justify-items: center; }
  .newsletter { max-width: 360px; margin-inline: auto; }
  .footer-bottom { margin-top: 1.75rem; justify-content: center; text-align: center; }
  .footer-bottom nav { justify-content: center; }

  .hero__cta .btn, .cta-band .btn { flex: 1; }
  .story-images { grid-template-columns: 1fr 1fr; gap: .75rem; }
  .story-images .media:nth-child(2) { margin-top: 0; }
}

/* ---------- 8b) DEDIZIERTER MOBILE-PASS ---------------------------- */
/* Sticky Bottom-Action-Bar: Standard aus, nur auf dem Handy sichtbar */
.m-actionbar { display: none; }

@media (max-width: 720px) {
  /* — Overflow-Schutz: zentrierte Grid-Heroes füllen die Breite (kein Shrink-to-fit) — */
  .hero-slide, .page-hero--image { justify-items: stretch; }
  .hero__inner { width: 100%; max-width: 100%; margin-inline: 0; }
  .lead, .section-head { max-width: 100%; }

  /* — Top-Bar entschlacken: Logo · Sprache · Menü — */
  .nav__actions { gap: .55rem; }
  .lang-switch { font-size: .82rem; padding: .35rem .25rem; }

  /* — Menü-Overlay: ruhiger, größere Tap-Targets — */
  .nav__link { font-size: 1.02rem; letter-spacing: .12em; padding: 1.05rem 0; }

  /* — Hero: echte Mobilhöhe (svh) statt vh, kompaktere Typo — */
  .hero--full { min-height: 82vh; min-height: 82svh; }
  .hero-slide { padding-block: 4.5rem; }
  .hero--full h1, .hero--full .hero-h { font-size: clamp(2.1rem, 8.5vw, 2.95rem); line-height: 1.12; margin: .75rem 0 1rem; }
  .hero--full .lead { font-size: 1rem; }
  .scroll-hint { display: none; }              /* von der Bottom-Bar verdeckt */
  .hero-slider__dots { bottom: 5.5rem; }       /* über die Bottom-Bar heben */

  /* — CTAs mobil: gestapelt, volle Breite, große Fläche — */
  .hero__cta { flex-direction: column; align-items: stretch; gap: .6rem; margin-top: 1.5rem; }
  .hero__cta .btn { width: 100%; }
  /* „Tisch reservieren" steckt bereits in der Sticky-Bottom-Bar → im Hero ausblenden (kein Doppel) */
  .hero--full .hero__cta .btn--accent { display: none; }
  .btn { min-height: 48px; }

  /* — Sektionsrhythmus: kompakt, aber luftig — */
  .section { padding-block: clamp(2.75rem, 9vw, 3.75rem); }
  .section-head { margin-bottom: 1.75rem; }
  .price-item { padding: .9rem 0; }

  /* — Formulare: Daumen-freundlich, 16px = kein iOS-Zoom — */
  .form { gap: 1.25rem; }
  .field input, .field select, .field textarea { padding: .95rem 1rem; min-height: 50px; font-size: 1rem; }
  .field textarea { min-height: 130px; }
  .form [type="submit"] { width: 100%; min-height: 52px; }
  .newsletter input { min-height: 48px; }

  /* — Tap-Targets — */
  .footer-social a { width: 44px; height: 44px; }

  /* — Platz für die fixe Bottom-Bar — */
  body { padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)); }

  /* — Sticky Bottom-Action-Bar — */
  .m-actionbar {
    display: flex; gap: .55rem;
    position: fixed; left: 0; right: 0; bottom: 0; z-index: 96;
    padding: .55rem var(--gutter) calc(.55rem + env(safe-area-inset-bottom, 0px));
    background: color-mix(in srgb, var(--bg) 90%, transparent);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-gold);
  }
  .m-actionbar .btn { flex: 1; min-height: 50px; padding: .85rem .5rem; font-size: .74rem; letter-spacing: .1em; }
  .m-actionbar .btn--accent { flex: 1.5; }     /* „Reservieren" = primäre, breitere Aktion */
}

@media (max-width: 380px) {
  .hero--full h1, .hero--full .hero-h { font-size: 2rem; }
  .nav .brand small { display: none; }         /* sehr enge Geräte: Marken-Untertitel sparen */
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}
