/* =========================================================
   haarstudio8 — Design System "Studio Acht"
   Palette: Porzellan / Espresso / Bordeaux / Gold
   Type: Fraunces (Display) · Hanken Grotesk (Body)
   Mobile-first.
   ========================================================= */

:root {
  /* Farben */
  --ink: #241a1c;
  --ink-soft: #5f5054;
  --cream: #f8f3ec;
  --cream-2: #f2e9dd;
  --sand: #eae0d3;
  --card: #ffffff;
  --wine: #7e2f42;
  --wine-deep: #5e2131;
  --wine-tint: #f3e7e4;
  --blush: #f3e7e4;
  --gold: #b08a4f;
  --gold-soft: #c9a961;
  --line: #e5dacb;
  --white: #ffffff;

  /* Semantik */
  --bg: var(--cream);
  --fg: var(--ink);
  --muted: var(--ink-soft);
  --primary: var(--wine);
  --ring: rgba(126, 47, 66, 0.35);

  /* Typo */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Maße */
  --maxw: 1200px;
  --radius: 18px;
  --radius-lg: 28px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(36, 26, 28, 0.05), 0 6px 18px rgba(36, 26, 28, 0.06);
  --shadow-md: 0 10px 30px rgba(36, 26, 28, 0.10);
  --shadow-lg: 0 24px 60px rgba(36, 26, 28, 0.14);

  /* Rhythmus */
  --space-section: clamp(4rem, 9vw, 8rem);
  --header-h: 72px;

  /* Motion */
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --dur: 260ms;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--fg);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--ring); outline-offset: 3px; border-radius: 4px; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: clamp(1.15rem, 5vw, 2.5rem); }

.skip-link {
  position: absolute; left: 1rem; top: -60px; z-index: 200;
  background: var(--wine); color: #fff; padding: .7rem 1.1rem; border-radius: 10px;
  transition: top var(--dur) var(--ease);
}
.skip-link:focus { top: 1rem; }

/* ---------- Typografie ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.12; letter-spacing: -0.015em; color: var(--ink); }
h1 { font-size: clamp(2.25rem, 6vw, 4.1rem); }
h2 { font-size: clamp(1.8rem, 4.2vw, 3rem); }
h3 { font-size: 1.2rem; }
p { text-wrap: pretty; }

.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 600;
  text-transform: uppercase; letter-spacing: .18em; font-size: .74rem;
  color: var(--wine);
}
.eyebrow__line { width: 30px; height: 1px; background: var(--gold); display: inline-block; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.5rem; border-radius: 999px;
  font-weight: 600; font-size: .95rem; letter-spacing: .01em;
  min-height: 48px;
  transition: transform var(--dur) var(--ease), background-color var(--dur) var(--ease),
              color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  will-change: transform;
}
.btn .ico { width: 18px; height: 18px; }
.btn--primary { background: var(--wine); color: #fff; box-shadow: 0 8px 22px rgba(126, 47, 66, 0.28); }
.btn--primary:hover { background: var(--wine-deep); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(126, 47, 66, 0.34); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn--ghost:hover { border-color: var(--wine); color: var(--wine); transform: translateY(-2px); background: var(--white); }
.btn--block { width: 100%; }

.ico { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: color-mix(in srgb, var(--cream) 82%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur) var(--ease), background-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); background: color-mix(in srgb, var(--cream) 92%, transparent); }
.header__inner { display: flex; align-items: center; justify-content: space-between; min-height: var(--header-h); gap: 1rem; }

.brand { display: inline-flex; align-items: center; gap: .6rem; font-family: var(--font-display); }
.brand__mark {
  display: grid; place-items: center; width: 38px; height: 38px; border-radius: 11px;
  background: var(--wine); color: #f4e3c7; font-weight: 600; font-style: italic; font-size: 1.35rem;
  box-shadow: var(--shadow-sm);
}
.brand__name { font-size: 1.28rem; font-weight: 600; letter-spacing: -0.01em; color: var(--ink); }
.brand__accent { color: var(--gold); }

.nav { display: flex; align-items: center; gap: 2rem; }
.nav__list { display: flex; gap: 1.9rem; }
.nav__list a { font-weight: 500; font-size: .96rem; color: var(--ink-soft); position: relative; padding: .3rem 0; transition: color var(--dur) var(--ease); }
.nav__list a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--wine); transition: width var(--dur) var(--ease);
}
.nav__list a:hover, .nav__list a.is-active { color: var(--wine); }
.nav__list a:hover::after, .nav__list a.is-active::after { width: 100%; }

.burger { display: none; width: 46px; height: 46px; border-radius: 12px; position: relative; }
.burger span {
  position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); border-radius: 2px;
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease), top var(--dur) var(--ease);
}
.burger span:nth-child(1) { top: 16px; }
.burger span:nth-child(2) { top: 22px; }
.burger span:nth-child(3) { top: 28px; }
body.nav-open .burger span:nth-child(1) { top: 22px; transform: rotate(45deg); }
body.nav-open .burger span:nth-child(2) { opacity: 0; }
body.nav-open .burger span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero { position: relative; padding-top: clamp(2.5rem, 6vw, 4.5rem); padding-bottom: clamp(2rem, 5vw, 4rem); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 80% 0%, rgba(176, 138, 79, 0.10), transparent 60%),
    radial-gradient(55% 45% at 0% 40%, rgba(126, 47, 66, 0.06), transparent 60%);
}
.hero__grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center; }
.hero__title { margin: 1rem 0 1.1rem; }
.hero__lead { font-size: 1.12rem; color: var(--ink-soft); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0 1.6rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .5rem 1.4rem; }
.hero__trust li { display: inline-flex; align-items: center; gap: .5rem; font-size: .92rem; color: var(--ink-soft); font-weight: 500; }
.hero__trust .ico { width: 18px; height: 18px; color: var(--wine); }

.hero__media { position: relative; }
.hero__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--line); }
.hero__figure img { width: 100%; height: 100%; object-fit: cover; }
.hero__card {
  position: absolute; background: var(--white); border-radius: 16px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line); padding: .85rem 1.05rem;
}
.hero__card--hours { top: 1.1rem; left: -0.6rem; display: flex; align-items: center; gap: .7rem; }
.hero__card--hours strong { display: block; font-size: .82rem; }
.hero__card--hours span { font-size: .8rem; color: var(--ink-soft); }
.hero__card--hours .dot { width: 10px; height: 10px; border-radius: 50%; background: #3a9e6a; box-shadow: 0 0 0 4px rgba(58,158,106,.18); flex: none; }
.hero__card--hours.is-closed .dot { background: #b4444f; box-shadow: 0 0 0 4px rgba(180,68,79,.18); }
.hero__card--quote { bottom: 1.1rem; right: -0.6rem; max-width: 210px; }
.hero__card--quote .stars { color: var(--gold-soft); letter-spacing: 1px; font-size: .85rem; }
.hero__card--quote p { font-family: var(--font-display); font-style: italic; font-size: 1rem; margin: .25rem 0; line-height: 1.35; }
.hero__card--quote span { font-size: .76rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Ticker ---------- */
.ticker { overflow: hidden; border-block: 1px solid var(--line); background: var(--cream-2); }
.ticker__track { display: flex; align-items: center; gap: 1.6rem; white-space: nowrap; width: max-content; padding: .85rem 0; animation: ticker 34s linear infinite; }
.ticker__track span { font-family: var(--font-display); font-size: 1.1rem; color: var(--ink); font-style: italic; }
.ticker__dot { font-style: normal !important; color: var(--gold) !important; font-family: var(--font-display); }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ---------- Sections ---------- */
.section { padding-block: var(--space-section); }
.section--alt { background: var(--cream-2); border-block: 1px solid var(--line); }
.section__head { max-width: 640px; margin: 0 auto clamp(2.2rem, 4vw, 3.4rem); text-align: center; }
.section__head--left { text-align: left; margin-inline: 0; }
.section__title { margin: .8rem 0 .7rem; }
.section__intro { color: var(--ink-soft); font-size: 1.05rem; }
.section__note { text-align: center; color: var(--ink-soft); font-size: .95rem; margin-top: 2rem; }

/* ---------- Cards / Leistungen ---------- */
.cards { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur) var(--ease);
  position: relative; overflow: hidden;
}
.card::after { content: ""; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, var(--wine), var(--gold)); transform: scaleX(0); transform-origin: left; transition: transform var(--dur) var(--ease); }
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: color-mix(in srgb, var(--wine) 30%, var(--line)); }
.card:hover::after { transform: scaleX(1); }
.card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--wine-tint); color: var(--wine); margin-bottom: 1rem; }
.card__icon svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: .96rem; }
.card__price { display: inline-block; margin-top: 1rem; font-weight: 600; font-size: .85rem; color: var(--wine); background: var(--wine-tint); padding: .35rem .75rem; border-radius: 999px; }

/* ---------- Split (Über uns / Standort) ---------- */
.split { display: grid; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.badge-8 {
  position: absolute; right: -14px; bottom: -18px; width: 78px; height: 78px; border-radius: 50%;
  background: var(--wine); color: #f4e3c7; display: grid; place-items: center;
  font-family: var(--font-display); font-style: italic; font-size: 2.2rem; box-shadow: var(--shadow-md);
}
.split__body h2 { margin: .7rem 0 1rem; }
.split__body p { color: var(--ink-soft); margin-bottom: 1rem; max-width: 52ch; }
.feature-list { display: grid; gap: 1rem; margin-top: 1.6rem; }
.feature-list li { display: flex; gap: .9rem; align-items: flex-start; }
.feature-list .ico { flex: none; width: 26px; height: 26px; color: var(--wine); margin-top: 2px; }
.feature-list strong { display: block; }
.feature-list span { color: var(--ink-soft); font-size: .94rem; }

/* ---------- Ablauf / Steps ---------- */
.steps { display: grid; gap: 1.1rem; grid-template-columns: 1fr; counter-reset: step; }
.step {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-sm); position: relative;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.step__num { font-family: var(--font-display); font-style: italic; font-size: 2rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.step h3 { margin-bottom: .35rem; }
.step p { color: var(--ink-soft); font-size: .95rem; }

/* ---------- Galerie ---------- */
.gallery { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.gallery__item { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms var(--ease); }
.gallery__item:hover img { transform: scale(1.04); }

/* ---------- FAQ / Accordion ---------- */
.faq-grid { display: grid; gap: clamp(2rem, 4vw, 3.5rem); }
.faq-grid .section__head { margin-bottom: 0; }
.faq-grid .btn { margin-top: 1.4rem; }
.accordion { display: grid; gap: .8rem; }
.acc { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow-sm); }
.acc summary {
  list-style: none; cursor: pointer; padding: 1.15rem 1.3rem; font-weight: 600; font-size: 1.02rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--ink);
}
.acc summary::-webkit-details-marker { display: none; }
.acc__plus { position: relative; width: 18px; height: 18px; flex: none; }
.acc__plus::before, .acc__plus::after { content: ""; position: absolute; background: var(--wine); border-radius: 2px; transition: transform var(--dur) var(--ease); }
.acc__plus::before { top: 8px; left: 0; width: 18px; height: 2px; }
.acc__plus::after { left: 8px; top: 0; width: 2px; height: 18px; }
.acc[open] .acc__plus::after { transform: scaleY(0); }
.acc__body { padding: 0 1.3rem 1.2rem; color: var(--ink-soft); }
.acc__body p { max-width: 62ch; }

/* ---------- Standort ---------- */
.address { font-style: normal; line-height: 1.7; margin: 1rem 0; }
.opening { margin: 1.4rem 0; }
.opening h3 { margin-bottom: .6rem; }
.opening table { border-collapse: collapse; width: 100%; max-width: 320px; }
.opening th, .opening td { text-align: left; padding: .5rem 0; border-bottom: 1px solid var(--line); font-weight: 500; }
.opening th { color: var(--ink); font-weight: 600; }
.opening td { color: var(--ink-soft); font-variant-numeric: tabular-nums; }

/* ---------- Kontakt ---------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: start; }
.contact__intro p { color: var(--ink-soft); margin-top: .8rem; max-width: 46ch; }
.contact__list { margin-top: 1.6rem; display: grid; gap: 1rem; }
.contact__list li { display: flex; align-items: center; gap: .8rem; }
.contact__list .ico { color: var(--wine); flex: none; }
.contact__list a:hover { color: var(--wine); }

.contact__form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.1rem; }
.field-row { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: .45rem; }
.req { color: var(--wine); margin-left: 2px; }
.field input, .field select, .field textarea {
  width: 100%; padding: .85rem 1rem; border: 1px solid var(--line); border-radius: 12px;
  background: var(--cream); color: var(--ink); font: inherit; min-height: 48px;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background-color var(--dur) var(--ease);
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--wine); background: var(--white); box-shadow: 0 0 0 4px var(--ring); }
.field.is-invalid input, .field.is-invalid textarea { border-color: #b4444f; }
.field__error { display: block; color: #b4444f; font-size: .82rem; margin-top: .35rem; min-height: 0; }

.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .9rem; color: var(--ink-soft); margin: .4rem 0 .3rem; cursor: pointer; }
.consent input { width: 22px; height: 22px; flex: none; margin-top: 1px; accent-color: var(--wine); cursor: pointer; }
.consent a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }
[data-consent-error] { margin-bottom: .6rem; }

.form__status { margin-top: 1rem; font-weight: 600; font-size: .95rem; min-height: 1.2em; }
.form__status.is-ok { color: #2f7d54; }
.form__status.is-err { color: #b4444f; }
.form__hint { margin-top: .8rem; font-size: .8rem; color: var(--ink-soft); }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: #e7ddd5; }
.footer__grid { display: grid; gap: 2.2rem; padding-block: clamp(3rem, 6vw, 4.5rem); grid-template-columns: 1fr; }
.brand--footer .brand__name { color: #fff; }
.brand--footer .brand__mark { background: var(--wine); }
.footer__brand p { color: #b8aaa1; margin-top: 1rem; max-width: 40ch; font-size: .95rem; }
.socials { display: flex; gap: .7rem; margin-top: 1.2rem; }
.socials a { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255,255,255,.16); transition: background-color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease); }
.socials svg { width: 20px; height: 20px; fill: #e7ddd5; }
.socials a:hover { background: var(--wine); border-color: var(--wine); transform: translateY(-2px); }
.footer__col h3 { font-family: var(--font-body); font-size: .82rem; text-transform: uppercase; letter-spacing: .16em; color: var(--gold-soft); margin-bottom: 1rem; }
.footer__col ul { display: grid; gap: .6rem; }
.footer__col a { color: #cdbfb6; transition: color var(--dur) var(--ease); }
.footer__col a:hover { color: #fff; }
.footer__col .address { color: #b8aaa1; font-size: .95rem; }
.footer__col .address a { color: #cdbfb6; }

.footer__bar { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bar-inner { display: flex; flex-direction: column; align-items: center; gap: .5rem; text-align: center; padding-block: 1.3rem; }
.footer__bar p { font-size: .85rem; color: #a99b92; }
.powered a { color: #22b8e0; font-weight: 600; }
.powered a:hover { text-decoration: underline; }

/* ---------- Rechtliche Seiten ---------- */
.legal-header { border-bottom: 1px solid var(--line); background: var(--cream); }
.legal-header .header__inner { min-height: var(--header-h); }
.legal-back { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .92rem; color: var(--ink-soft); }
.legal-back:hover { color: var(--wine); }
.legal-back .ico { width: 18px; height: 18px; }
.legal { padding-block: clamp(3rem, 7vw, 6rem); }
.legal .container { max-width: 780px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); margin-bottom: .5rem; }
.legal .lead { color: var(--ink-soft); margin-bottom: 2.5rem; font-size: 1.05rem; }
.legal h2 { font-size: 1.4rem; margin: 2.4rem 0 .8rem; }
.legal h3 { margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: var(--ink-soft); }
.legal p { margin-bottom: 1rem; }
.legal ul { list-style: disc; padding-left: 1.3rem; margin-bottom: 1rem; display: grid; gap: .4rem; }
.legal a { color: var(--wine); text-decoration: underline; text-underline-offset: 2px; }
.legal .placeholder {
  border: 1px dashed var(--gold); background: color-mix(in srgb, var(--gold) 8%, var(--cream));
  border-radius: var(--radius-sm); padding: .8rem 1.1rem; margin: 1.4rem 0; font-size: .92rem; color: var(--ink);
}
.legal .placeholder strong { color: var(--wine); }
.legal .fill { color: var(--wine); font-weight: 600; background: var(--wine-tint); padding: 0 .35rem; border-radius: 5px; }

/* ---------- Reveal-Animationen ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 700ms var(--ease), transform 700ms var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (min-width: 600px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .field-row { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item--wide { grid-column: span 2; }
  .footer__grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
}

@media (min-width: 900px) {
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(4, 1fr); }
  .split { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr 1.2fr; align-items: start; }
  .faq-grid .section__head { position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .contact-grid { grid-template-columns: 0.9fr 1.1fr; }
  .hero__grid { grid-template-columns: 1.05fr 0.95fr; }
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.2fr; }
  .footer__brand { grid-column: auto; }
  .footer__bar-inner { flex-direction: row; justify-content: space-between; text-align: left; }
  .gallery { grid-template-columns: repeat(3, 1fr); }
  .gallery__item--wide { grid-column: span 1; }
  .gallery__item:first-child, .gallery__item:last-child { grid-column: span 2; }
}

@media (min-width: 1100px) {
  .hero { padding-bottom: 5rem; }
}

/* ---------- Mobile-Navigation ---------- */
@media (max-width: 899px) {
  .burger { display: block; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(84vw, 360px);
    flex-direction: column; align-items: stretch; justify-content: flex-start; gap: 0;
    background: var(--cream); box-shadow: -20px 0 60px rgba(36,26,28,.18);
    padding: calc(var(--header-h) + 1.4rem) 1.6rem 2rem;
    transform: translateX(100%); transition: transform 320ms var(--ease); z-index: 90;
    border-left: 1px solid var(--line); overflow-y: auto;
  }
  body.nav-open .nav { transform: translateX(0); }
  .nav__list { flex-direction: column; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--line); }
  .nav__list a { display: block; padding: 1.05rem .2rem; font-size: 1.12rem; font-family: var(--font-display); color: var(--ink); }
  .nav__list a::after { display: none; }
  .nav__cta { margin-top: 1.6rem; width: 100%; }
  .nav-scrim { position: fixed; inset: 0; background: rgba(36,26,28,.42); opacity: 0; visibility: hidden; transition: opacity 320ms var(--ease), visibility 320ms; z-index: 80; }
  body.nav-open .nav-scrim { opacity: 1; visibility: visible; }
}

@media (max-width: 480px) {
  .hero__card--quote { right: 0; bottom: .6rem; max-width: 175px; }
  .hero__card--hours { left: 0; top: .6rem; }
  .badge-8 { right: 6px; }
}

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