/* =========================================================
   Babushka Bäckerei — Design System
   Warm editorial · terracotta / cream / gold · OKLCH
   ========================================================= */

:root {
  /* palette */
  --cream:        oklch(0.962 0.017 78);
  --cream-deep:   oklch(0.928 0.022 73);
  --paper:        oklch(0.987 0.009 86);
  --ink:          oklch(0.27 0.027 52);
  --ink-2:        oklch(0.44 0.03 50);
  --terra:        oklch(0.57 0.142 44);
  --terra-deep:   oklch(0.47 0.135 42);
  --terra-light:  oklch(0.72 0.12 50);
  --terra-soft:   oklch(0.935 0.034 56);
  --gold:         oklch(0.80 0.10 80);
  --espresso:     oklch(0.225 0.026 50);
  --espresso-2:   oklch(0.30 0.03 50);
  --line:         oklch(0.865 0.018 70);
  --line-strong:  oklch(0.80 0.022 64);

  /* type */
  --font-display: "Marcellus", "Georgia", serif;
  --font-sans: "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* motion */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* layout */
  --maxw: 1200px;
  --pad-x: clamp(1.25rem, 5vw, 2.5rem);
  --section-y: clamp(4.5rem, 9vw, 8rem);
  --radius: 16px;
  --radius-sm: 10px;
  --header-h: 76px;

  --shadow-sm: 0 1px 2px oklch(0.27 0.03 50 / 0.06), 0 4px 14px oklch(0.27 0.03 50 / 0.05);
  --shadow-md: 0 6px 18px oklch(0.27 0.03 50 / 0.08), 0 24px 50px oklch(0.27 0.03 50 / 0.09);
  --shadow-lg: 0 30px 70px oklch(0.25 0.03 50 / 0.18);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
input, select, textarea { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--terra-deep); outline-offset: 3px; border-radius: 4px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; top: 10px; left: 10px; z-index: 200;
  background: var(--terra-deep); color: var(--cream);
  padding: 0.6rem 1rem; border-radius: 8px; transform: translateY(-150%);
  transition: transform 0.2s var(--ease-out);
}
.skip-link:focus { transform: none; }

/* ---------- reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  transition-delay: calc(var(--i, 0) * 70ms);
  will-change: opacity, transform;
}
[data-reveal].is-in { opacity: 1; transform: none; }

/* ---------- type helpers ---------- */
.kicker {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terra-deep);
}
.kicker-on-dark { color: var(--gold); }

.section-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85rem 1.6rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition: transform 0.16s var(--ease-out), background-color 0.25s ease,
              color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  border: 1.5px solid transparent;
  white-space: nowrap;
}
.btn i { font-style: normal; transition: transform 0.2s var(--ease-out); }
.btn:active { transform: scale(0.97); }
.btn:disabled { opacity: 0.6; cursor: progress; transform: none; box-shadow: none; }
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.05rem; }

.btn-primary { background: var(--terra-deep); color: var(--cream); box-shadow: var(--shadow-sm); }
.btn-ghost { background: transparent; border-color: var(--line-strong); color: var(--ink); }
.btn-ghost-light { background: transparent; border-color: oklch(1 0 0 / 0.5); color: var(--cream); }

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--terra); transform: translateY(-2px); box-shadow: var(--shadow-md); }
  .btn-primary:hover i { transform: translateX(3px); }
  .btn-ghost:hover { border-color: var(--terra-deep); color: var(--terra-deep); background: var(--terra-soft); }
  .btn-ghost-light:hover { background: oklch(1 0 0 / 0.12); border-color: var(--cream); }
}

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  border-bottom: 1px solid transparent;
}
.header-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
  height: var(--header-h);
  display: flex; align-items: center; gap: 1.5rem;
}
.site-header.scrolled {
  background: oklch(0.962 0.017 78 / 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px oklch(0.27 0.03 50 / 0.06);
}

.brand { display: flex; align-items: center; gap: 0.7rem; margin-right: auto; color: var(--cream); transition: color 0.35s ease; }
.site-header.scrolled .brand { color: var(--ink); }
.brand-mark-img {
  height: 48px; width: auto; flex: none; display: block;
  border-radius: 8px;
  border: 1px solid oklch(0.84 0.03 70 / 0.7);
  box-shadow: 0 2px 9px oklch(0.27 0.03 50 / 0.16);
}
.brand-word { display: flex; flex-direction: column; line-height: 1; }
.brand-word-1 { font-family: var(--font-display); font-size: 1.28rem; letter-spacing: 0.02em; }
.brand-word-2 { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.34em; text-transform: uppercase; opacity: 0.85; }

.nav { display: flex; gap: 2rem; }
.nav a {
  position: relative; font-weight: 500; font-size: 0.97rem;
  color: var(--cream); opacity: 0.92; transition: color 0.35s ease, opacity 0.2s ease;
  padding: 0.4rem 0;
}
.site-header.scrolled .nav a { color: var(--ink); }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 1.5px; width: 0;
  background: currentColor; transition: width 0.28s var(--ease-out);
}
@media (hover: hover) { .nav a:hover { opacity: 1; } .nav a:hover::after { width: 100%; } }

.nav-cta { padding: 0.62rem 1.25rem; font-size: 0.92rem; }
.site-header:not(.scrolled) .nav-cta {
  background: oklch(1 0 0 / 0.14); color: var(--cream);
  border-color: oklch(1 0 0 / 0.32); backdrop-filter: blur(6px);
}

.nav-toggle { display: none; width: 46px; height: 46px; align-items: center; justify-content: center; color: var(--cream); }
.site-header.scrolled .nav-toggle { color: var(--ink); }
.nav-toggle-box { display: grid; gap: 5px; width: 24px; }
.nav-toggle-box span { height: 2px; background: currentColor; border-radius: 2px; transition: transform 0.3s var(--ease-out), opacity 0.2s ease; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile nav */
.mobile-nav {
  position: fixed; inset: var(--header-h) 0 0 0; z-index: 95;
  background: var(--cream); overflow-y: auto;
  padding: 1.75rem var(--pad-x) 2rem; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 0.25rem;
  transform: translateY(-12px); opacity: 0;
  transition: transform 0.32s var(--ease-out), opacity 0.32s ease;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { transform: none; opacity: 1; }
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav nav a {
  font-family: var(--font-display); font-size: 1.6rem; padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-nav .btn { margin-top: 1.25rem; justify-content: center; }
.mobile-nav-meta { margin-top: 1.25rem; color: var(--ink-2); font-size: 0.9rem; line-height: 1.6; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; isolation: isolate; }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; animation: heroZoom 16s var(--ease-out) forwards; }
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, oklch(0.2 0.03 50 / 0.55) 0%, oklch(0.2 0.03 50 / 0.1) 38%, oklch(0.18 0.03 50 / 0.78) 100%),
    radial-gradient(120% 80% at 18% 90%, oklch(0.18 0.04 45 / 0.55), transparent 60%);
}
.hero-inner {
  max-width: var(--maxw); width: 100%; margin: 0 auto;
  padding: 0 var(--pad-x) clamp(3rem, 7vh, 6rem);
  color: var(--cream);
}
.hero-title {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(3rem, 8.5vw, 7rem); line-height: 0.98;
  letter-spacing: -0.015em; margin: 1.1rem 0 0; max-width: 16ch;
  text-shadow: 0 2px 40px oklch(0.18 0.03 50 / 0.4);
}
.hero-title em { font-style: normal; color: var(--terra-light); }
.hero-sub { margin-top: 1.4rem; max-width: 46ch; font-size: clamp(1.05rem, 1.6vw, 1.3rem); line-height: 1.6; opacity: 0.94; }
.hero-actions { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.9rem; }

.hero-meta {
  list-style: none; padding: 0; margin: 2.6rem 0 0;
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem; max-width: 720px;
  border-top: 1px solid oklch(1 0 0 / 0.22); padding-top: 1.5rem;
}
.hero-meta li { font-size: 0.86rem; opacity: 0.82; line-height: 1.4; }
.hero-meta span { display: block; font-family: var(--font-display); font-size: 1.12rem; opacity: 1; margin-bottom: 0.2rem; }

/* =========================================================
   MARQUEE
   ========================================================= */
.marquee {
  background: var(--terra-deep); color: var(--cream);
  overflow: hidden; padding: 0.9rem 0;
  border-block: 1px solid var(--terra);
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 1.5rem;
  white-space: nowrap; animation: marquee 48s linear infinite; will-change: transform;
}
.marquee-track span { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.02em; }
.marquee-track i { color: var(--gold); font-style: normal; font-size: 0.8rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* =========================================================
   SECTION SHELL
   ========================================================= */
.section { padding-block: var(--section-y); }
.section > *, .order > *, .contact > * { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad-x); }
.section-head { text-align: center; max-width: 720px; margin-inline: auto; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head .kicker { display: inline-block; margin-bottom: 1rem; }
.section-head .section-title { margin-bottom: 1rem; }
.section-intro { color: var(--ink-2); font-size: 1.1rem; }
.section-cta { text-align: center; margin-top: clamp(2.5rem, 5vw, 3.5rem); }

/* =========================================================
   ÜBER UNS
   ========================================================= */
.about { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 5rem); align-items: center;
}
.about-media { position: relative; min-height: 480px; }
.about-fig { margin: 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-fig img { width: 100%; height: 100%; object-fit: cover; }
.about-fig-lg { width: 78%; aspect-ratio: 4 / 5; }
.about-fig-sm {
  position: absolute; right: 0; bottom: 4%; width: 46%; aspect-ratio: 1;
  border: 6px solid var(--cream);
}
.about-seal {
  position: absolute; top: 6%; right: 6%;
  width: 92px; height: 92px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: var(--terra-deep); color: var(--cream);
  font-family: var(--font-display); font-size: 0.82rem; line-height: 1.2;
  padding: 0.5rem; box-shadow: var(--shadow-md); transform: rotate(-8deg);
}
.about-copy .kicker { display: block; margin-bottom: 0.9rem; }
.about-copy .section-title { margin-bottom: 1.3rem; }
.lead { font-size: 1.22rem; line-height: 1.55; color: var(--ink); margin-bottom: 1.1rem; }
.about-copy p { color: var(--ink-2); margin-bottom: 1rem; max-width: 52ch; }

.pillars { list-style: none; padding: 0; margin: 2rem 0 0; display: grid; gap: 1.4rem; }
.pillars li { display: flex; gap: 1rem; align-items: flex-start; }
.pillar-ico {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; color: var(--terra-deep);
  background: var(--terra-soft); border: 1px solid oklch(0.57 0.142 44 / 0.18);
}
.pillar-ico svg { width: 28px; height: 28px; }
.pillars h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.3rem; margin-bottom: 0.15rem; }
.pillars p { color: var(--ink-2); font-size: 0.98rem; margin: 0; }

/* =========================================================
   SORTIMENT TEASER
   ========================================================= */
.sortiment { background: var(--cream-deep); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
}
.cat-card {
  display: flex; flex-direction: column;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.3s ease;
}
.cat-media { overflow: hidden; aspect-ratio: 4 / 3; }
.cat-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease-out); }
.cat-body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.45rem; flex: 1; }
.cat-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; }
.cat-body p { color: var(--ink-2); font-size: 0.96rem; line-height: 1.5; }
.cat-link { margin-top: auto; padding-top: 0.6rem; font-weight: 600; font-size: 0.92rem; color: var(--terra-deep); display: inline-flex; align-items: center; gap: 0.4rem; }
.cat-link i { font-style: normal; transition: transform 0.25s var(--ease-out); }

.cat-card-wide { grid-column: 1 / -1; flex-direction: row; }
.cat-card-wide .cat-media { aspect-ratio: auto; flex: 1.15; min-height: 280px; }
.cat-card-wide .cat-body { flex: 1; justify-content: center; padding: clamp(1.5rem, 4vw, 3rem); }
.cat-card-wide .cat-body h3 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cat-card-wide .cat-body p { font-size: 1.08rem; max-width: 40ch; }

@media (hover: hover) and (pointer: fine) {
  .cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
  .cat-card:hover .cat-media img { transform: scale(1.06); }
  .cat-card:hover .cat-link i { transform: translateX(4px); }
}

/* =========================================================
   ATMOSPHERE
   ========================================================= */
.atmos { position: relative; min-height: clamp(380px, 56vh, 620px); display: grid; place-items: center; isolation: isolate; text-align: center; }
.atmos img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -1; }
.atmos-scrim { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, oklch(0.2 0.03 50 / 0.35), oklch(0.18 0.03 50 / 0.62)); }
.atmos-quote { margin: 0; padding: 0 var(--pad-x); color: var(--cream); max-width: 800px; }
.atmos-quote blockquote { font-family: var(--font-display); font-size: clamp(1.8rem, 4.5vw, 3.4rem); line-height: 1.2; }
.atmos-quote figcaption { margin-top: 1.2rem; font-size: 1rem; letter-spacing: 0.04em; opacity: 0.85; }

/* =========================================================
   BESTELLUNG / QUIZ
   ========================================================= */
.order { background: var(--cream); }
.quiz {
  max-width: 880px; background: var(--paper);
  border: 1px solid var(--line); border-radius: clamp(16px, 3vw, 28px);
  box-shadow: var(--shadow-md); overflow: hidden;
}
.quiz, .order > .section-head { } /* keep centered via .order > * rule */

.quiz-progress {
  list-style: none; display: flex; margin: 0; padding: 1.1rem clamp(1.2rem, 4vw, 2.4rem);
  gap: 0.4rem; background: var(--terra-soft); border-bottom: 1px solid var(--line);
  font-size: 0.82rem; font-weight: 600; color: var(--ink-2); flex-wrap: wrap;
}
.quiz-progress li { display: flex; align-items: center; gap: 0.5rem; opacity: 0.6; transition: opacity 0.3s ease; }
.quiz-progress li:not(:last-child)::after { content: ""; width: clamp(8px, 3vw, 28px); height: 1.5px; background: currentColor; margin-left: 0.4rem; opacity: 0.4; }
.quiz-progress li span {
  width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--paper); border: 1.5px solid var(--line-strong); color: var(--ink-2);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.quiz-progress li.is-active, .quiz-progress li.is-done { opacity: 1; color: var(--terra-deep); }
.quiz-progress li.is-active span, .quiz-progress li.is-done span { background: var(--terra-deep); color: var(--cream); border-color: var(--terra-deep); }

.quiz-form { padding: clamp(1.5rem, 4vw, 2.8rem); }
.quiz-step { display: none; border: 0; padding: 0; margin: 0; min-inline-size: 0; }
.quiz-step.is-active { display: block; animation: stepIn 0.5s var(--ease-out) both; }
@keyframes stepIn { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.quiz-q { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.5rem, 3vw, 2.1rem); line-height: 1.1; margin-bottom: 1.6rem; padding: 0; }

/* choice cards */
.choice-grid { display: grid; gap: 0.9rem; }
.choice { display: block; cursor: pointer; }
.choice input { position: absolute; opacity: 0; pointer-events: none; }
.choice-inner {
  display: grid; grid-template-columns: auto 1fr; grid-template-rows: auto auto;
  column-gap: 1.1rem; row-gap: 0.2rem; align-items: center;
  padding: 1.15rem 1.3rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: var(--paper); transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.16s var(--ease-out);
}
.choice-ico { grid-row: 1 / 3; width: 48px; height: 48px; color: var(--terra-deep); }
.choice-ico svg { width: 100%; height: 100%; }
.choice-title { font-family: var(--font-display); font-size: 1.28rem; align-self: end; }
.choice-desc { color: var(--ink-2); font-size: 0.95rem; align-self: start; }
.choice input:checked + .choice-inner { border-color: var(--terra-deep); background: var(--terra-soft); box-shadow: 0 0 0 3px oklch(0.57 0.142 44 / 0.14); }
.choice input:focus-visible + .choice-inner { outline: 2px solid var(--terra-deep); outline-offset: 2px; }
@media (hover: hover) { .choice:hover .choice-inner { border-color: var(--terra); transform: translateY(-2px); } }

/* fields */
.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.1rem 1.3rem; margin-bottom: 1.2rem; }
.field { display: flex; flex-direction: column; gap: 0.45rem; }
.field-label { font-weight: 600; font-size: 0.9rem; color: var(--ink); }
.field-label em { font-style: normal; font-weight: 500; color: var(--ink-2); }
.field input, .field select, .field textarea {
  width: 100%; padding: 0.78rem 0.95rem; background: var(--cream);
  border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.field textarea { resize: vertical; min-height: 84px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--terra-deep); background: var(--paper);
  box-shadow: 0 0 0 3px oklch(0.57 0.142 44 / 0.14);
}
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%237a4a31' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0.9rem center; padding-right: 2.5rem;
}

/* chips / checkboxes */
.check-set { border: 0; padding: 0; margin: 0 0 1.2rem; min-inline-size: 0; }
.check-set .field-label { display: block; margin-bottom: 0.7rem; }
.chip-grid, .time-grid { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.chip { cursor: pointer; }
.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip span {
  display: inline-block; padding: 0.55rem 1rem; border-radius: 100px;
  border: 1.5px solid var(--line-strong); background: var(--cream);
  font-size: 0.92rem; font-weight: 500; transition: all 0.2s var(--ease-out);
}
.chip input:checked + span { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--cream); }
.chip input:focus-visible + span { outline: 2px solid var(--terra-deep); outline-offset: 2px; }
@media (hover: hover) { .chip:hover span { border-color: var(--terra); } }

.callback { margin-top: 0.5rem; padding-top: 1.4rem; border-top: 1px solid var(--line); }
.callback.is-disabled [data-callback-time] { opacity: 0.4; pointer-events: none; }
.check-line { display: flex; gap: 0.7rem; align-items: flex-start; margin-top: 1.3rem; cursor: pointer; font-size: 0.97rem; color: var(--ink-2); }
.check-line input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--terra-deep); flex: none; }

/* quiz nav + errors */
.quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 1rem; margin-top: 2rem; }
.quiz-error { color: var(--terra-deep); font-size: 0.9rem; font-weight: 500; margin-top: 0.8rem; }
.quiz-fineprint { color: var(--ink-2); font-size: 0.92rem; margin-top: 1.4rem; }

/* summary */
.summary { display: grid; gap: 0; border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden; }
.summary div { display: grid; grid-template-columns: minmax(120px, 0.5fr) 1fr; gap: 1rem; padding: 0.85rem 1.15rem; }
.summary div:nth-child(odd) { background: var(--cream); }
.summary dt { font-weight: 600; font-size: 0.9rem; color: var(--ink-2); margin: 0; }
.summary dd { margin: 0; }

/* success */
.quiz-success { padding: clamp(2rem, 6vw, 4rem) clamp(1.5rem, 4vw, 2.8rem); text-align: center; animation: stepIn 0.5s var(--ease-out) both; }
.success-mark { display: inline-grid; place-items: center; width: 72px; height: 72px; color: var(--terra-deep); margin-bottom: 1.2rem; }
.success-mark svg { width: 100%; height: 100%; }
.quiz-success h3 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.6rem, 3.5vw, 2.3rem); margin-bottom: 0.7rem; }
.quiz-success p { color: var(--ink-2); max-width: 48ch; margin: 0 auto 1.8rem; }
.success-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: center; margin-bottom: 1.5rem; }
.link-reset { color: var(--ink-2); text-decoration: underline; text-underline-offset: 3px; font-size: 0.92rem; }
@media (hover: hover) { .link-reset:hover { color: var(--terra-deep); } }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { background: var(--cream-deep); }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 5vw, 4rem); align-items: stretch; }
.contact-info .kicker { display: block; margin-bottom: 0.9rem; }
.contact-info .section-title { margin-bottom: 1rem; }
.contact-info .section-intro { margin-bottom: 2rem; }
.contact-list { list-style: none; padding: 0; margin: 0 0 2rem; display: grid; gap: 1.1rem; }
.contact-list li { display: grid; grid-template-columns: 130px 1fr; gap: 1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--line); align-items: baseline; }
.contact-key { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--terra-deep); }
.contact-val { line-height: 1.5; }
.contact-val a { border-bottom: 1px solid var(--line-strong); transition: border-color 0.2s ease, color 0.2s ease; }
@media (hover: hover) { .contact-val a:hover { color: var(--terra-deep); border-color: var(--terra-deep); } }
.contact-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.contact-map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); min-height: 440px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 440px; border: 0; filter: grayscale(0.18) sepia(0.12) saturate(1.05); }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--espresso); color: oklch(0.9 0.012 80); }
.footer-top {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--pad-x) 2.5rem;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1.3rem; }
.footer-seal { width: 120px; height: 120px; color: var(--gold); }
.footer-seal svg { width: 100%; height: 100%; }
.footer-tag { font-family: var(--font-display); font-size: 1.3rem; line-height: 1.3; color: var(--cream); max-width: 22ch; }
.footer-col h4 { font-size: 0.78rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.1rem; font-weight: 600; }
.footer-col a, .footer-col p { display: block; color: oklch(0.86 0.012 80); margin-bottom: 0.55rem; font-size: 0.96rem; line-height: 1.6; }
.footer-col a { transition: color 0.2s ease; }
@media (hover: hover) { .footer-col a:hover { color: var(--cream); } }
.footer-bottom {
  max-width: var(--maxw); margin: 0 auto; padding: 1.5rem var(--pad-x);
  border-top: 1px solid oklch(1 0 0 / 0.1);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.8rem;
  font-size: 0.86rem; color: oklch(0.78 0.012 80);
}
.footer-legal a { transition: color 0.2s ease; }
@media (hover: hover) { .footer-legal a:hover { color: var(--cream); } }

/* =========================================================
   TO TOP
   ========================================================= */
.to-top {
  position: fixed; right: clamp(1rem, 3vw, 2rem); bottom: clamp(1rem, 3vw, 2rem); z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; background: var(--terra-deep); color: var(--cream);
  display: grid; place-items: center; box-shadow: var(--shadow-md);
  opacity: 0; transform: translateY(12px) scale(0.9); transition: opacity 0.3s ease, transform 0.3s var(--ease-out), background 0.25s ease;
}
.to-top svg { width: 22px; height: 22px; }
.to-top.is-visible { opacity: 1; transform: none; }
.to-top[hidden] { display: none; }
@media (hover: hover) { .to-top:hover { background: var(--terra); } }
.to-top:active { transform: scale(0.94); }

/* =========================================================
   SORTIMENT PAGE
   ========================================================= */
.sort-hero {
  position: relative; padding: calc(var(--header-h) + clamp(3rem, 8vw, 6rem)) var(--pad-x) clamp(3rem, 7vw, 5rem);
  background: var(--espresso); color: var(--cream); text-align: center; isolation: isolate; overflow: hidden;
}
.sort-hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; opacity: 0.16;
  background: radial-gradient(70% 120% at 50% -10%, var(--terra), transparent 60%);
}
.sort-hero .kicker { color: var(--gold); }
.sort-hero h1 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 1.02; margin: 1rem auto 1.1rem; }
.sort-hero p { max-width: 56ch; margin: 0 auto; color: oklch(0.9 0.012 80); font-size: 1.1rem; }

.filter-bar {
  position: sticky; top: var(--header-h); z-index: 80;
  background: oklch(0.962 0.017 78 / 0.9); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.filter-bar-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0.9rem var(--pad-x);
  display: flex; gap: 0.6rem; flex-wrap: wrap; justify-content: center;
  overflow-x: auto; scrollbar-width: none;
}
.filter-bar-inner::-webkit-scrollbar { display: none; }
.filter-chip {
  padding: 0.55rem 1.15rem; border-radius: 100px; border: 1.5px solid var(--line-strong);
  background: var(--paper); font-weight: 600; font-size: 0.9rem; color: var(--ink-2);
  white-space: nowrap; transition: all 0.2s var(--ease-out);
}
.filter-chip[aria-pressed="true"] { background: var(--terra-deep); border-color: var(--terra-deep); color: var(--cream); }
.filter-chip:active { transform: scale(0.96); }
@media (hover: hover) { .filter-chip:hover { border-color: var(--terra); color: var(--terra-deep); } .filter-chip[aria-pressed="true"]:hover { color: var(--cream); } }

.menu-wrap { max-width: var(--maxw); margin: 0 auto; padding: clamp(3rem, 6vw, 5rem) var(--pad-x); }
.menu-section { padding-block: clamp(2rem, 4vw, 3.5rem); border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header-h) + 70px); }
.menu-section:first-child { border-top: 0; padding-top: 0; }
.menu-section.is-hidden { display: none; }
.menu-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: center; margin-bottom: 2.5rem; }
.menu-head-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 10; box-shadow: var(--shadow-md); }
.menu-head-media img { width: 100%; height: 100%; object-fit: cover; }
.menu-head .kicker { display: block; margin-bottom: 0.8rem; }
.menu-head h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.05; margin-bottom: 1rem; }
.menu-head p { color: var(--ink-2); max-width: 46ch; }
.menu-section:nth-child(even) .menu-head-media { order: 2; }

.menu-groups { display: grid; gap: 2.2rem; }
.menu-group h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.4rem; color: var(--terra-deep); margin-bottom: 0.4rem; }
.menu-group > p { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 1rem; }
.menu-list { list-style: none; padding: 0; margin: 0; columns: 2; column-gap: 2.5rem; }
.menu-item {
  break-inside: avoid; display: flex; align-items: baseline; gap: 0.6rem;
  padding: 0.6rem 0; border-bottom: 1px dotted var(--line-strong);
}
.menu-item .m-name { font-weight: 500; }
.menu-item .m-dots { flex: 1; border-bottom: 1px dotted var(--line-strong); transform: translateY(-3px); min-width: 12px; }
.menu-item .m-tag { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--terra-deep); background: var(--terra-soft); padding: 0.15rem 0.55rem; border-radius: 100px; }
.menu-item .m-tag.is-sweet { color: oklch(0.5 0.12 25); background: oklch(0.93 0.04 25); }

.sort-order-cta {
  margin: clamp(2rem,5vw,4rem) auto 0; max-width: var(--maxw);
  background: var(--terra-soft); border: 1px solid oklch(0.57 0.142 44 / 0.2); border-radius: var(--radius);
  padding: clamp(2rem, 5vw, 3.5rem); text-align: center;
}
.sort-order-cta h2 { font-family: var(--font-display); font-weight: 400; font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 0.8rem; }
.sort-order-cta p { color: var(--ink-2); max-width: 50ch; margin: 0 auto 1.6rem; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 540px; margin-inline: auto; min-height: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .menu-head { grid-template-columns: 1fr; }
  .menu-section:nth-child(even) .menu-head-media { order: 0; }
  .menu-head-media { max-width: 560px; }
}

@media (max-width: 720px) {
  :root { --header-h: 66px; }
  .hero { min-height: 92svh; }
  .hero-meta { grid-template-columns: 1fr; gap: 0.9rem; }
  .hero-meta li { display: flex; align-items: baseline; gap: 0.6rem; }
  .hero-meta span { margin-bottom: 0; }
  .cat-card-wide { flex-direction: column; }
  .cat-card-wide .cat-media { min-height: 0; aspect-ratio: 16 / 10; }
  .field-grid { grid-template-columns: 1fr; }
  .menu-list { columns: 1; }
  .quiz-progress li:not(:last-child)::after { width: 8px; }
  .quiz-progress { font-size: 0.74rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .contact-list li { grid-template-columns: 1fr; gap: 0.2rem; }
}

@media (max-width: 420px) {
  .quiz-progress li span { width: 22px; height: 22px; font-size: 0.78rem; }
  .choice-inner { grid-template-columns: 1fr; row-gap: 0.5rem; }
  .choice-ico { grid-row: auto; }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  [data-reveal] { opacity: 1 !important; transform: none !important; }
  .hero-media img { animation: none; transform: none; }
  .marquee-track { animation: none; }
}
