/* ==========================================================================
   SILA Market — styles
   Palette and type are taken from the storefront: the white fascia with the
   red wordmark, the green awning, the tiled butcher wall, yellow price tags.
   ========================================================================== */

@font-face { font-family: "Barlow"; font-weight: 400; font-style: normal; font-display: swap; src: url("../assets/fonts/barlow-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 500; font-style: normal; font-display: swap; src: url("../assets/fonts/barlow-latin-500-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-style: normal; font-display: swap; src: url("../assets/fonts/barlow-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 600; font-style: normal; font-display: swap; src: url("../assets/fonts/barlow-condensed-latin-600-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 700; font-style: normal; font-display: swap; src: url("../assets/fonts/barlow-condensed-latin-700-normal.woff2") format("woff2"); }
@font-face { font-family: "Barlow Condensed"; font-weight: 800; font-style: normal; font-display: swap; src: url("../assets/fonts/barlow-condensed-latin-800-normal.woff2") format("woff2"); }

:root {
  /* Brand */
  --red: #ee5022;          /* logo red — display sizes and accents only */
  --red-strong: #d2431a;   /* buttons, links on white (4.6:1) */
  --red-deep: #b0360f;
  --leaf: #549a42;         /* logo green */
  --leaf-text: #3e7f31;
  --awning: #2f6845;       /* the awning over the stand */
  --awning-deep: #1e3a2a;
  --ink: #16241b;
  --muted: #56655b;
  --paper: #ffffff;
  --tile: #f3f5f1;
  --grout: #e2e8e1;
  --line: #d9e0d8;
  --tag: #ffd43b;          /* price tags */
  --u-blue: #115d91;

  --f-display: "Barlow Condensed", "Arial Narrow", "Roboto Condensed", sans-serif;
  --f-body: "Barlow", "Segoe UI", system-ui, -apple-system, sans-serif;

  --step--1: 0.875rem;
  --step-0: 1.0625rem;
  --step-1: 1.25rem;
  --step-2: clamp(1.4rem, 1.2rem + 0.6vw, 1.75rem);
  --step-3: clamp(2.1rem, 1.4rem + 2.8vw, 3.75rem);
  --step-4: clamp(3.1rem, 1.6rem + 5.4vw, 6.5rem);

  --container: 1240px;
  --gutter: clamp(16px, 4vw, 40px);
  --header-h: 72px;
  --section-space: clamp(64px, 8vw, 120px);
  --focus: var(--awning);

  color-scheme: light;
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: var(--step-0);
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { display: block; max-width: 100%; }
img { height: auto; }
h1, h2, h3 { margin: 0; font-family: var(--f-display); font-weight: 800; line-height: 0.95; letter-spacing: -0.005em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; }
address { font-style: normal; }
figure { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }
dl, dd { margin: 0; }
[hidden] { display: none !important; }

:focus-visible { outline: 3px solid var(--focus); outline-offset: 3px; border-radius: 4px; }

.container { width: min(100% - 2 * var(--gutter), var(--container)); margin-inline: auto; }
.nowrap { white-space: nowrap; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

.skip-link { position: absolute; left: 16px; top: -100px; z-index: 100; padding: 12px 16px; background: var(--ink); color: #fff; font-weight: 600; text-decoration: none; border-radius: 6px; }
.skip-link:focus { top: 12px; }

.icon { width: 1.25em; height: 1.25em; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.55em;
  min-height: 46px; padding: 0.7em 1.15em;
  border: 2px solid transparent; border-radius: 6px;
  font: 600 1rem/1.1 var(--f-body);
  text-decoration: none; white-space: nowrap; cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn--lg { min-height: 54px; padding: 0.85em 1.4em; font-size: 1.0625rem; }
.btn--primary { background: var(--red-strong); color: #fff; }
.btn--primary:hover { background: var(--red-deep); }
.btn--ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn--ghost:hover { background: var(--ink); color: #fff; }
.btn--light { background: #fff; color: var(--ink); }
.btn--light:hover { background: var(--tile); }

/* ---------- Status dot ---------- */
.status-dot { width: 10px; height: 10px; flex: none; border-radius: 50%; background: var(--muted); }
[data-open="true"] .status-dot { background: #2fa34a; box-shadow: 0 0 0 3px rgba(47, 163, 74, 0.22); }
[data-open="false"] .status-dot { background: var(--red); box-shadow: 0 0 0 3px rgba(238, 80, 34, 0.2); }

/* ==========================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner { display: flex; align-items: center; gap: 24px; height: var(--header-h); }

.brand { display: flex; align-items: center; gap: 10px; flex: none; text-decoration: none; }
.brand__mark { height: 46px; width: auto; }
.brand__word { height: 34px; width: auto; }

.site-nav { margin-left: auto; }
.site-nav ul { display: flex; gap: clamp(14px, 2vw, 28px); }
.site-nav a { font-weight: 500; text-decoration: none; padding-block: 6px; background: linear-gradient(var(--red), var(--red)) 0 100% / 0 2px no-repeat; transition: background-size 0.2s ease; }
.site-nav a:hover { background-size: 100% 2px; }
.site-nav__contact { display: none; }

.site-header__actions { display: flex; align-items: center; gap: 12px; }
.status-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border: 1px solid var(--line); border-radius: 999px;
  font-size: var(--step--1); font-weight: 600; text-decoration: none; white-space: nowrap;
}
.status-pill:hover { border-color: var(--ink); }
.menu-toggle { display: none; }

@media (max-width: 1080px) {
  .btn--header-call span { display: none; }
  .btn--header-call { padding-inline: 0.8em; }
}

@media (max-width: 900px) {
  :root { --header-h: 64px; }
  .brand__mark { height: 40px; }
  .brand__word { height: 28px; }

  .menu-toggle {
    display: inline-grid; place-items: center;
    width: 46px; height: 46px; padding: 0;
    border: 2px solid var(--ink); border-radius: 6px; background: #fff; color: var(--ink); cursor: pointer;
  }
  .menu-toggle .icon { grid-area: 1 / 1; width: 22px; height: 22px; }
  .menu-toggle .icon--close, .menu-toggle[aria-expanded="true"] .icon--open { display: none; }
  .menu-toggle[aria-expanded="true"] .icon--close { display: block; }

  .site-nav {
    position: fixed; inset: var(--header-h) 0 0 0; z-index: 40;
    display: flex; flex-direction: column; justify-content: space-between; gap: 32px;
    padding: 24px var(--gutter) calc(32px + env(safe-area-inset-bottom));
    background: #fff; border-top: 1px solid var(--line);
    overflow-y: auto;
    visibility: hidden; opacity: 0; transform: translateY(-8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0s linear 0.2s;
  }
  .site-nav.is-open { visibility: visible; opacity: 1; transform: none; transition-delay: 0s; }
  .site-nav ul { flex-direction: column; gap: 0; }
  .site-nav li + li { border-top: 1px solid var(--line); }
  .site-nav a { display: block; padding: 14px 0; font: 700 2rem/1 var(--f-display); background: none; }
  .site-nav a:hover { color: var(--red-strong); }
  .site-nav__contact { display: grid; gap: 14px; color: var(--muted); }
  .site-nav__contact .btn { justify-self: start; }
  body.menu-open { overflow: hidden; }
}

@media (max-width: 560px) {
  .status-pill { display: none; }
  .brand__word { height: 24px; }
}
@media (max-width: 360px) {
  .brand__mark { display: none; }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.hero { overflow-x: clip; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  min-height: min(680px, calc(100svh - var(--header-h) - 120px));
}
.hero__copy { display: flex; flex-direction: column; justify-content: center; gap: 28px; padding-block: 48px 64px; }
.hero__title { font-size: var(--step-4); line-height: 0.88; color: var(--ink); max-width: 9ch; }
.hero__lead { max-width: 44ch; font-size: var(--step-1); line-height: 1.5; color: var(--muted); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

.hero__media {
  position: relative;
  /* Bleed the photo to the right edge of the viewport. */
  margin-right: calc((100vw - min(100vw - 2 * var(--gutter), var(--container))) / -2);
}
.hero__media picture, .hero__media img { width: 100%; height: 100%; }
.hero__media img { object-fit: cover; object-position: 55% 35%; }

.door-sign {
  position: absolute; left: clamp(-28px, -2vw, -12px); bottom: 40px;
  display: flex; align-items: center; gap: 14px;
  padding: 16px 22px 16px 18px;
  background: #fff; color: var(--ink);
  border-top: 5px solid var(--muted); border-radius: 4px;
  box-shadow: 0 18px 40px -18px rgba(22, 36, 27, 0.55), 0 0 0 1px rgba(22, 36, 27, 0.06);
}
.door-sign[data-open="true"] { border-top-color: #2fa34a; }
.door-sign[data-open="false"] { border-top-color: var(--red); }
.door-sign strong { display: block; font: 800 1.6rem/1 var(--f-display); }
.door-sign span:not(.status-dot) { display: block; margin-top: 4px; font-size: var(--step--1); color: var(--muted); }

/* The awning: the green band over the stand, with a scalloped valance. */
.awning {
  --scallop: 12px;
  position: relative;
  padding: 18px 0 calc(20px + var(--scallop));
  background: var(--awning);
  color: #fff;
  -webkit-mask:
    radial-gradient(var(--scallop) at 50% 0, #000 97%, #0000) 50% 100% / calc(2 * var(--scallop)) var(--scallop) repeat-x,
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--scallop)) no-repeat;
          mask:
    radial-gradient(var(--scallop) at 50% 0, #000 97%, #0000) 50% 100% / calc(2 * var(--scallop)) var(--scallop) repeat-x,
    linear-gradient(#000 0 0) top / 100% calc(100% - var(--scallop)) no-repeat;
}
.awning::before { content: ""; position: absolute; inset: 0 0 auto; height: 6px; background: var(--awning-deep); }
.awning__facts { display: grid; grid-template-columns: repeat(4, auto); justify-content: space-between; gap: 16px 28px; }
.awning__facts li { display: flex; align-items: center; gap: 10px; font: 600 1.2rem/1.15 var(--f-display); }
.awning__facts strong { font-weight: 800; }
.awning__facts .icon { width: 26px; height: 26px; color: #c9e4bf; }

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .hero__copy { padding-block: 32px 36px; gap: 22px; }
  .hero__title { max-width: 11ch; }
  .hero__media { margin-inline: calc(-1 * var(--gutter)); aspect-ratio: 4 / 3; }
  .door-sign { left: var(--gutter); bottom: 20px; }
  .awning__facts { grid-template-columns: repeat(2, minmax(0, 1fr)); justify-content: stretch; }
}
@media (max-width: 480px) {
  .hero__actions .btn { flex: 1 1 100%; }
  .awning__facts li { font-size: 1.05rem; }
  .door-sign { padding: 12px 16px 12px 14px; }
  .door-sign strong { font-size: 1.35rem; }
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section { padding-block: var(--section-space); }
.section-head {
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: end; gap: 16px clamp(24px, 5vw, 80px);
  margin-bottom: clamp(36px, 5vw, 64px);
}
.section-head h2, .fleischerei h2, .laden h2, .vorbestellen h2, .faq h2 { font-size: var(--step-3); }
.section-head p { max-width: 52ch; color: var(--muted); font-size: var(--step-1); line-height: 1.5; }
@media (max-width: 760px) {
  .section-head { grid-template-columns: 1fr; }
}

/* ---------- Sortiment ---------- */
.sortiment__layout { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(28px, 5vw, 72px); align-items: start; }
.sortiment__photo { position: sticky; top: calc(var(--header-h) + 24px); }
.sortiment__photo img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: 4px; }
.sortiment__photo figcaption { margin-top: 12px; font-size: var(--step--1); color: var(--muted); }

.aisles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: clamp(24px, 3vw, 48px); border-bottom: 1px solid var(--line); }
.aisle { padding: 20px 0 22px; border-top: 1px solid var(--line); }
.aisle h3 { font-size: 1.65rem; font-weight: 700; line-height: 1; }
.aisle h3 a { text-decoration: none; }
.aisle h3 a:hover { color: var(--red-strong); text-decoration: underline; text-decoration-thickness: 2px; text-underline-offset: 4px; }
.aisle p { margin-top: 8px; color: var(--muted); font-size: 0.98rem; line-height: 1.5; max-width: 40ch; }
.aisle--feature { padding-block: 26px 28px; border-top: 3px solid var(--ink); }
.aisle--feature h3 { font-size: clamp(2rem, 1.6rem + 1.2vw, 2.6rem); font-weight: 800; }
.aisle--feature p { font-size: var(--step-0); color: var(--ink); }

.tag { display: inline-block; margin-top: 14px; padding: 4px 10px; border-radius: 999px; font-size: var(--step--1); font-weight: 600; }
.tag--green { background: #e4f0de; color: var(--leaf-text); }
.tag--red { background: #fde6dd; color: #b33a12; }

@media (max-width: 860px) {
  .sortiment__layout { grid-template-columns: 1fr; }
  .sortiment__photo { position: static; display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: end; }
  .sortiment__photo figcaption { margin: 0; }
}
@media (max-width: 560px) {
  .aisles { grid-template-columns: 1fr; }
}

/* ---------- Fleischerei ---------- */
.fleischerei {
  /* Square tiles, like the wall behind the counter. */
  background-color: #fafbf9;
  background-image:
    linear-gradient(var(--grout) 1px, transparent 1px),
    linear-gradient(90deg, var(--grout) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: -1px -1px;
  border-block: 1px solid var(--line);
}
.fleischerei__grid { display: grid; grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.fleischerei__copy { display: grid; gap: 28px; }
.fleischerei__lead { max-width: 50ch; font-size: var(--step-1); }

.counter-board { background: #fff; border: 1px solid var(--line); border-radius: 4px; padding: 6px 24px; box-shadow: 0 1px 0 var(--grout); }
.counter-board > div { display: grid; grid-template-columns: 9.5rem 1fr; gap: 16px; align-items: baseline; padding: 16px 0; }
.counter-board > div + div { border-top: 1px dashed var(--line); }
.counter-board dt { font: 800 1.75rem/1 var(--f-display); color: var(--red-strong); }
.counter-board dd { color: var(--muted); }

.fleischerei__photo { position: relative; justify-self: center; width: min(100%, 320px); }
.fleischerei__photo img { width: 100%; border: 10px solid #fff; border-radius: 4px; box-shadow: 0 24px 48px -24px rgba(22, 36, 27, 0.45); }
.fleischerei__photo figcaption { margin-top: 14px; text-align: center; font-size: var(--step--1); color: var(--muted); }

@media (max-width: 860px) {
  .fleischerei__grid { grid-template-columns: 1fr; }
  .fleischerei__photo { justify-self: start; width: min(100%, 260px); }
}
@media (max-width: 480px) {
  .counter-board { padding-inline: 18px; }
  .counter-board > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Laden ---------- */
.laden__grid { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 6fr); gap: clamp(32px, 6vw, 96px); align-items: center; }
.laden__photo img { width: 100%; border-radius: 4px; }
.laden__copy { display: grid; gap: 24px; }
.laden__copy > p { font-size: var(--step-1); color: var(--muted); max-width: 48ch; }
.reasons { display: grid; gap: 0; margin-top: 8px; }
.reasons > div { display: grid; grid-template-columns: 11rem 1fr; gap: 16px; padding: 16px 0; border-top: 1px solid var(--line); }
.reasons dt { font: 700 1.35rem/1.1 var(--f-display); }
.reasons dd { color: var(--muted); }
@media (max-width: 860px) {
  .laden__grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .reasons > div { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Vorbestellen ---------- */
.vorbestellen { --focus: #fff; background: var(--red-strong); color: #fff; }
.vorbestellen__grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: clamp(36px, 6vw, 96px); align-items: start; }
.vorbestellen__head { display: grid; gap: 22px; }
.vorbestellen__head p { font-size: var(--step-1); max-width: 40ch; }
.phone-big {
  display: inline-flex; align-items: center; gap: 0.3em; justify-self: start;
  margin-top: 8px;
  font: 800 clamp(2.4rem, 1.6rem + 3vw, 4.25rem)/1 var(--f-display);
  text-decoration: none; white-space: nowrap;
  border-bottom: 3px solid rgba(255, 255, 255, 0.45);
  padding-bottom: 6px;
}
.phone-big .icon { width: 0.7em; height: 0.7em; }
.phone-big:hover { border-bottom-color: #fff; }

.steps { counter-reset: step; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 64px 1fr; column-gap: 20px; padding: 26px 0; border-top: 1px solid rgba(255, 255, 255, 0.35); }
.steps li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.35); }
.steps li::before {
  content: counter(step); grid-row: span 2;
  display: grid; place-items: center; width: 56px; height: 56px;
  border-radius: 50%; background: #fff; color: var(--red-strong);
  font: 800 1.9rem/1 var(--f-display);
}
.steps h3 { font-size: 1.9rem; font-weight: 700; }
.steps p { margin-top: 8px; max-width: 46ch; color: rgba(255, 255, 255, 0.92); }
@media (max-width: 860px) {
  .vorbestellen__grid { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .steps li { grid-template-columns: 48px 1fr; column-gap: 14px; }
  .steps li::before { width: 44px; height: 44px; font-size: 1.5rem; }
  .steps h3 { font-size: 1.6rem; }
}

/* ---------- Angebote ---------- */
.offers { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 20px; }

.price-tag {
  position: relative;
  display: flex; flex-direction: column;
  padding: 34px 22px 20px;
  background: var(--tag); color: var(--ink);
  border-radius: 4px;
  /* The punched hole of a shelf tag. */
  -webkit-mask: radial-gradient(circle 7px at 50% 16px, #0000 98%, #000);
          mask: radial-gradient(circle 7px at 50% 16px, #0000 98%, #000);
}
.price-tag h3 { font-size: 1.75rem; font-weight: 800; line-height: 1; }
.price-tag__detail { margin-top: 6px; font-size: var(--step--1); }
.price-tag__row { display: flex; align-items: flex-end; justify-content: space-between; gap: 12px; margin-top: auto; padding-top: 22px; }
.price-tag__price { font: 800 3.4rem/0.85 var(--f-display); letter-spacing: -0.01em; }
.price-tag__price sup { font-size: 0.5em; vertical-align: 0.8em; margin-left: 1px; }
.price-tag__before { font-size: var(--step--1); text-decoration: line-through; }
.price-tag__unit { font-size: var(--step--1); text-align: right; }
.price-tag__until { margin-top: 14px; padding-top: 10px; border-top: 1px solid rgba(22, 36, 27, 0.25); font-size: var(--step--1); }
.price-tag__label { font: 700 1.1rem/1 var(--f-display); }
.price-tag__example { position: absolute; top: 10px; right: 12px; font-size: 0.75rem; font-weight: 600; padding: 2px 8px; border-radius: 999px; background: rgba(22, 36, 27, 0.12); }

.offers-empty {
  display: grid; grid-template-columns: auto minmax(0, 1fr); gap: clamp(24px, 4vw, 56px); align-items: center;
  padding: clamp(24px, 4vw, 48px);
  background: var(--tile); border-radius: 6px;
}
.offers-empty h3 { font-size: var(--step-2); font-weight: 800; }
.offers-empty p { margin: 12px 0 22px; max-width: 58ch; color: var(--muted); }
.price-tag--notice { width: 150px; height: 180px; justify-content: space-between; padding: 36px 18px 18px; }
.price-tag--notice .price-tag__price { font-size: 5.5rem; text-align: right; }
@media (max-width: 560px) {
  .offers-empty { grid-template-columns: 1fr; }
  .price-tag--notice { width: 110px; height: 130px; }
  .price-tag--notice .price-tag__price { font-size: 3.8rem; }
}

/* ---------- FAQ ---------- */
.faq { background: var(--tile); }
.faq__grid { display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 8fr); gap: clamp(24px, 5vw, 80px); align-items: start; }
.faq__list { border-bottom: 1px solid var(--line); }
.faq details { border-top: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: center; gap: 20px;
  padding: 20px 0; cursor: pointer; list-style: none;
  font: 700 1.45rem/1.15 var(--f-display);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; flex: none; width: 28px; height: 28px; border-radius: 50%;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 12px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 12px no-repeat,
    #fff;
  transition: transform 0.2s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { color: var(--red-strong); }
.faq details p { padding: 0 48px 22px 0; color: var(--muted); max-width: 64ch; }
.faq details a { color: var(--red-strong); font-weight: 600; }
@media (max-width: 760px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq details p { padding-right: 0; }
}

/* ---------- Besuch ---------- */
.besuch { --focus: var(--tag); background: var(--awning-deep); color: #fff; }
.besuch__title { grid-area: title; font-size: clamp(3.1rem, 1.8rem + 3.6vw, 5.25rem); line-height: 0.9; max-width: 10ch; margin-bottom: clamp(28px, 3vw, 44px); }
.besuch__grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  grid-template-areas: "title map" "card map";
  grid-template-rows: auto 1fr;
  gap: 0 clamp(24px, 4vw, 56px);
  align-items: start;
}
.visit-card { grid-area: card; }
.besuch__grid .map { grid-area: map; position: sticky; top: calc(var(--header-h) + 24px); }

.visit-card { display: grid; gap: 0; }
.visit-card__block { padding: 22px 0; border-top: 1px solid rgba(255, 255, 255, 0.18); }
.visit-card__block:first-child { border-top: 0; padding-top: 0; }
.visit-card h3 { margin-bottom: 12px; font: 600 1.05rem/1 var(--f-body); color: #b9d6bf; }
.visit-card address { font: 700 1.9rem/1.08 var(--f-display); }
.visit-card address strong { font-weight: 800; }
.visit-notes { display: grid; gap: 8px; margin-top: 16px; }
.visit-notes li, .contact-list a { display: flex; align-items: center; gap: 10px; }
.visit-notes .icon, .contact-list .icon { color: #b9d6bf; }
.contact-list { display: grid; gap: 10px; }
.contact-list a { font-weight: 600; font-size: 1.15rem; text-decoration: none; }
.contact-list a:hover { text-decoration: underline; text-underline-offset: 4px; }

.visit-status { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; font-weight: 600; }
.hours { width: 100%; border-collapse: collapse; font-variant-numeric: tabular-nums; }
.hours th, .hours td { padding: 7px 10px; text-align: left; font-weight: 400; }
.hours td { text-align: right; }
.hours tr.is-today { background: rgba(255, 255, 255, 0.1); font-weight: 600; }
.hours tr.is-today th, .hours tr.is-today td { font-weight: 600; }
.hours tr.is-today th::after { content: "heute"; margin-left: 10px; padding: 2px 8px; border-radius: 999px; background: var(--tag); color: var(--ink); font-size: 0.75rem; font-weight: 600; vertical-align: 0.1em; }
.hours th, .hours tr td { border-radius: 0; }
.hours-note { margin-top: 10px; font-size: var(--step--1); color: #b9d6bf; }

.visit-card__actions { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 26px; border-top: 1px solid rgba(255, 255, 255, 0.18); }

.map {
  --focus: var(--tag);
  position: relative; display: block;
  aspect-ratio: 7 / 5;
  border-radius: 6px; overflow: hidden;
  text-decoration: none; color: var(--ink);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.map img { width: 100%; height: 100%; object-fit: cover; }
/* Positions are fractions of the map image: the store sits at the exact centre. */
.map__pin {
  position: absolute; left: 50%; top: 50%;
  width: 62px; height: 62px; padding: 9px;
  transform: translate(-50%, calc(-100% - 10px));
  background: #fff; border-radius: 50%;
  box-shadow: 0 10px 22px -8px rgba(22, 36, 27, 0.6);
}
.map__pin::after {
  content: ""; position: absolute; left: 50%; bottom: -12px; transform: translateX(-50%);
  border: 8px solid transparent; border-top: 12px solid #fff; border-bottom: 0;
}
.map__pin img { width: 100%; height: 100%; object-fit: contain; }
.map__label {
  position: absolute; left: calc(50% + 40px); top: 50%; transform: translateY(-150%);
  padding: 8px 12px; background: var(--red-strong); color: #fff; border-radius: 4px;
  font: 800 1.2rem/1 var(--f-display); white-space: nowrap;
}
.map__label small { font: 500 0.85rem/1.4 var(--f-body); }
.map__station {
  position: absolute; left: 71.4%; top: 57.2%; transform: translate(-50%, -50%);
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 8px 3px 3px; background: #fff; border-radius: 4px;
  font-size: 0.8rem; font-weight: 600;
  box-shadow: 0 4px 10px -4px rgba(22, 36, 27, 0.5);
}
.map__station span { display: grid; place-items: center; width: 20px; height: 20px; border-radius: 3px; background: var(--u-blue); color: #fff; font-weight: 700; font-size: 0.8rem; }
.map__open {
  position: absolute; left: 14px; bottom: 14px;
  padding: 10px 14px; background: #fff; border-radius: 6px;
  font-weight: 600; font-size: 0.95rem;
  box-shadow: 0 6px 16px -8px rgba(22, 36, 27, 0.6);
}
.map:hover .map__open { background: var(--ink); color: #fff; }
.map__credit { position: absolute; right: 6px; bottom: 4px; padding: 1px 6px; font-size: 0.7rem; background: rgba(255, 255, 255, 0.8); border-radius: 3px; }

@media (max-width: 960px) {
  .besuch__grid { grid-template-columns: 1fr; grid-template-areas: "title" "map" "card"; gap: 0; }
  .besuch__grid .map { position: relative; top: auto; margin-bottom: 28px; }
}
@media (max-width: 480px) {
  .map__label { display: none; }
  .map__open { left: 10px; bottom: 24px; padding: 8px 12px; font-size: 0.875rem; }
  .map__station { font-size: 0.7rem; }
  .visit-card__actions .btn { flex: 1 1 100%; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { padding-block: 64px 24px; background: var(--paper); }
.site-footer__grid { display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 32px; padding-bottom: 40px; }
.site-footer__brand img { width: 150px; }
.site-footer h2 { margin-bottom: 12px; font: 700 1.2rem/1 var(--f-display); }
.site-footer p, .site-footer address { color: var(--muted); line-height: 1.7; }
.site-footer a { text-decoration: none; }
.site-footer a:hover { color: var(--red-strong); text-decoration: underline; text-underline-offset: 3px; }
.site-footer nav li { line-height: 1.9; color: var(--muted); }
.site-footer__legal { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; padding-top: 20px; border-top: 1px solid var(--line); font-size: var(--step--1); color: var(--muted); }
.site-footer__legal ul { display: flex; gap: 20px; }
@media (max-width: 860px) {
  .site-footer__grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer__brand { grid-column: 1 / -1; }
  .site-footer__brand img { width: 120px; }
}

/* ==========================================================================
   Mobile quick actions
   ========================================================================== */
.quickbar { display: none; }
@media (max-width: 760px) {
  body { padding-bottom: calc(64px + env(safe-area-inset-bottom)); }
  .quickbar {
    position: fixed; inset: auto 0 0 0; z-index: 45;
    display: grid; grid-template-columns: repeat(3, 1fr);
    padding-bottom: env(safe-area-inset-bottom);
    background: var(--ink);
    box-shadow: 0 -8px 24px -12px rgba(22, 36, 27, 0.5);
  }
  .quickbar a {
    --focus: var(--tag);
    display: flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 64px; color: #fff; font-weight: 600; text-decoration: none;
  }
  .quickbar a + a { border-left: 1px solid rgba(255, 255, 255, 0.14); }
  .quickbar a:first-child { background: var(--red-strong); }
  .quickbar a:focus-visible { outline-offset: -4px; }
  body.menu-open .quickbar { display: none; }
}

/* ==========================================================================
   Legal pages
   ========================================================================== */
.legal { padding-block: 56px var(--section-space); }
.legal h1 { font-size: var(--step-3); margin-bottom: 24px; }
.legal h2 { font-size: var(--step-2); font-weight: 700; margin: 36px 0 10px; }
.legal p { max-width: 68ch; color: var(--muted); margin-bottom: 10px; }
.legal .draft-note { padding: 14px 18px; border-left: 4px solid var(--tag); background: var(--tile); color: var(--ink); }
.legal-header { border-bottom: 1px solid var(--line); }

/* ==========================================================================
   Motion — one moment: the hero photo rolls down like the awning,
   then the door sign drops in.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  .hero__media picture { animation: roll-down 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
  .door-sign { animation: sign-in 0.45s cubic-bezier(0.2, 0.8, 0.3, 1.2) 0.75s both; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
@keyframes roll-down { from { clip-path: inset(0 0 100% 0); } to { clip-path: inset(0 0 0 0); } }
@keyframes sign-in { from { opacity: 0; transform: translateY(-14px) rotate(-2deg); } to { opacity: 1; transform: none; } }
