/* =========================================================================
   Blumen Flaschka — Augsburg
   Design: warme Tiefschwarz-Bühne für die Studiofotografie des Ladens,
   Akzent Rosenrot, durchgehend eckig (kein border-radius).
   ========================================================================= */

/* ---- Tokens ------------------------------------------------------------ */
:root {
  --ink:        #12100E;
  --ink-2:      #1A1714;
  --ink-3:      #241F1A;
  --paper:      #F4F1EC;
  --muted:      #A69C90;
  --rose:       #9E1B34;
  --rose-lift:  #BC2245;
  --leaf:       #7C9159;
  --line:       rgba(244, 241, 236, .14);
  --line-soft:  rgba(244, 241, 236, .07);

  --serif: "Cormorant Garamond", "Iowan Old Style", Georgia, serif;
  --sans:  "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --gutter: clamp(20px, 5vw, 64px);
  --shell: 1320px;
  --section-y: clamp(72px, 9vw, 150px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---- Reset ------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; border-radius: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 104px; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg, iframe { display: block; max-width: 100%; }
img { height: auto; }
button, input, textarea, select { font: inherit; color: inherit; }
a { color: inherit; }
h1, h2, h3, h4, p, ul, ol, figure, blockquote { margin: 0; }
ul { padding: 0; list-style: none; }

::selection { background: var(--rose); color: var(--paper); }

:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 3px;
}

.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.skip-link {
  position: absolute;
  left: 16px; top: -80px;
  z-index: 200;
  background: var(--paper);
  color: var(--ink);
  padding: 12px 20px;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 16px; }

/* ---- Typographie ------------------------------------------------------- */
.display {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -.005em;
}
h1.display { font-size: clamp(2.5rem, 5.2vw, 4.4rem); }
h2.display { font-size: clamp(2.1rem, 4.4vw, 3.5rem); line-height: 1.06; }
h3.display { font-size: clamp(1.5rem, 2.2vw, 1.95rem); line-height: 1.15; }
.display em { font-style: italic; color: var(--paper); }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: .715rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--rose);
  flex: none;
}
.eyebrow--center { justify-content: center; }

.lead {
  font-size: clamp(1.0625rem, 1.35vw, 1.2rem);
  color: #DCD5CC;
  max-width: 54ch;
}
.prose p + p { margin-top: 1.15em; }
.prose { color: #C9C1B7; max-width: 62ch; }
.prose strong { color: var(--paper); font-weight: 600; }

/* ---- Buttons ----------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 17px 30px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  background: none;
  cursor: pointer;
  transition: background-color .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.btn svg { width: 15px; height: 15px; flex: none; }
.btn--primary { background: var(--rose); color: #fff; border-color: var(--rose); }
.btn--primary:hover { background: var(--rose-lift); border-color: var(--rose-lift); }
.btn--ghost { border-color: var(--line); color: var(--paper); }
.btn--ghost:hover { border-color: var(--paper); background: rgba(244, 241, 236, .06); }
.btn--solid { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn--solid:hover { background: transparent; color: var(--paper); }

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .17em;
  text-transform: uppercase;
  text-decoration: none;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.textlink:hover { border-color: var(--rose); color: #fff; }

/* ---- Kopfzeile: Servicebalken ------------------------------------------ */
.utility {
  background: #0C0A09;
  border-bottom: 1px solid var(--line-soft);
  font-size: .74rem;
  letter-spacing: .06em;
  color: var(--muted);
}
.utility__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 42px;
  padding-block: 8px;
}
.utility__group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.utility a { text-decoration: none; transition: color .25s var(--ease); }
.utility a:hover { color: var(--paper); }
.utility__item { display: inline-flex; align-items: center; gap: 8px; }
.utility__item svg { width: 13px; height: 13px; opacity: .65; flex: none; }

/* Live-Status */
.status { display: inline-flex; align-items: center; gap: 9px; }
.status__dot {
  width: 7px; height: 7px; flex: none;
  background: var(--muted);
  box-shadow: 0 0 0 0 currentColor;
}
.status[data-open="true"] { color: #C6D6A8; }
.status[data-open="true"] .status__dot { background: var(--leaf); animation: pulse 2.6s var(--ease) infinite; }
.status[data-open="false"] { color: var(--muted); }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(124, 145, 89, .55); }
  70%  { box-shadow: 0 0 0 7px rgba(124, 145, 89, 0); }
  100% { box-shadow: 0 0 0 0 rgba(124, 145, 89, 0); }
}

/* ---- Navigation -------------------------------------------------------- */
.masthead {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(18, 16, 14, .82);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: background-color .3s var(--ease), border-color .3s var(--ease);
}
.masthead.is-stuck { background: rgba(12, 10, 9, .96); border-bottom-color: var(--line); }
.masthead__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 82px;
}
.brand { display: block; flex: none; }
.brand img { width: clamp(178px, 20vw, 232px); }

.nav { display: flex; align-items: center; gap: clamp(18px, 2.3vw, 34px); }
.nav__link {
  position: relative;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  color: #CFC7BD;
  padding-block: 6px;
  transition: color .25s var(--ease);
}
/* Der Anruf-Knopf in der Navigation ist nur im mobilen Menü sichtbar. */
.nav > .btn { display: none; }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .32s var(--ease);
}
.nav__link:hover { color: var(--paper); }
.nav__link:hover::after,
.nav__link.is-active::after { transform: scaleX(1); }
.nav__link.is-active { color: var(--paper); }

.masthead .btn { padding: 14px 22px; }

.burger {
  display: none;
  position: relative;
  width: 46px; height: 46px;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
}
.burger span {
  position: absolute;
  left: 50%; top: 50%;
  width: 18px; height: 1px;
  margin-left: -9px;
  background: var(--paper);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.burger span:nth-child(1) { transform: translateY(-6px); }
.burger span:nth-child(3) { transform: translateY(6px); }
.burger[aria-expanded="true"] span:nth-child(1) { transform: rotate(45deg); }
.burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.burger[aria-expanded="true"] span:nth-child(3) { transform: rotate(-45deg); }

/* ---- Hero -------------------------------------------------------------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(92svh, 880px);
  display: flex;
  align-items: flex-end;
  padding-top: clamp(48px, 7vw, 92px);
  overflow: hidden;
}
.hero__stage { position: absolute; inset: 0; z-index: -2; background: #0A0908; }
.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.5s var(--ease), transform 8s linear;
}
.hero__slide.is-active { opacity: 1; transform: scale(1); }
.hero__stage::after {
  content: "";
  position: absolute;
  inset: 0;
  /* Kräftig genug, damit die Schrift auf jedem der acht Motive lesbar bleibt. */
  background:
    linear-gradient(100deg, rgba(10, 9, 8, .95) 0%, rgba(10, 9, 8, .84) 46%, rgba(10, 9, 8, .42) 76%, rgba(10, 9, 8, .6) 100%),
    linear-gradient(to top, rgba(18, 16, 14, 1) 0%, rgba(18, 16, 14, 0) 34%);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: clamp(32px, 5vw, 72px);
  width: 100%;
  padding-bottom: clamp(56px, 7vw, 96px);
}
.hero__copy { max-width: min(100%, 660px); }
.hero__copy .eyebrow { margin-bottom: clamp(18px, 2.2vw, 26px); }
.hero h1 { margin-bottom: clamp(18px, 2vw, 24px); }
.hero .lead { margin-bottom: clamp(24px, 2.8vw, 34px); max-width: 46ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Öffnungszeiten-Tafel — das Signature-Element */
.plate {
  position: relative;
  width: min(340px, 100%);
  background: rgba(12, 10, 9, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  padding: 26px 28px 28px;
}
.plate::before {
  content: "";
  position: absolute;
  inset: 6px;
  border: 1px solid var(--line-soft);
  pointer-events: none;
}
.plate__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 14px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.plate__title {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.plate .status { font-size: .7rem; letter-spacing: .1em; }
.plate__list { display: grid; gap: 9px; }
.plate__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  font-size: .92rem;
  color: #CFC7BD;
}
.plate__list li.is-today { color: var(--paper); }
.plate__list li.is-today .plate__day::after {
  content: "heute";
  margin-left: 8px;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-lift);
  vertical-align: 1px;
}
.plate__day { letter-spacing: .04em; }
.plate__time { font-variant-numeric: tabular-nums; white-space: nowrap; }
.plate__note {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
  font-size: .78rem;
  color: var(--muted);
}
.plate__note a { text-decoration: none; border-bottom: 1px solid var(--line); }
.plate__note a:hover { border-color: var(--rose); color: var(--paper); }

/* Slideshow-Steuerung */
.hero__ticks {
  position: absolute;
  left: var(--gutter);
  bottom: clamp(22px, 3vw, 34px);
  display: flex;
  gap: 8px;
  z-index: 2;
}
.hero__tick {
  width: 26px; height: 2px;
  border: none;
  padding: 0;
  background: rgba(244, 241, 236, .25);
  cursor: pointer;
  transition: background-color .3s var(--ease);
}
.hero__tick[aria-current="true"] { background: var(--paper); }
.hero__tick:hover { background: rgba(244, 241, 236, .6); }

/* ---- Sections ---------------------------------------------------------- */
.section { padding-block: var(--section-y); }
.section--tight { padding-block: clamp(56px, 6vw, 96px); }
.section--panel { background: var(--ink-2); }
.section__head {
  display: grid;
  gap: 20px;
  max-width: 60ch;
  margin-bottom: clamp(40px, 5vw, 68px);
}
.section__head--split {
  max-width: none;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 32px;
}
.section__head--split .section__intro { display: grid; gap: 18px; max-width: 52ch; }

.rule {
  display: flex;
  align-items: center;
  gap: 20px;
  color: rgba(244, 241, 236, .3);
}
.rule::before, .rule::after { content: ""; height: 1px; background: var(--line); flex: 1; }
.rule svg { width: 22px; height: 22px; flex: none; }

/* ---- Leistungen -------------------------------------------------------- */
/* Sechs Leistungen: bewusst 3 × 2, damit keine Lücken entstehen. */
.services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.service {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--ink);
  text-decoration: none;
  overflow: hidden;
  transition: background-color .35s var(--ease);
}
.service:hover { background: var(--ink-3); }
.service__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.service__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .5s var(--ease);
  filter: saturate(.94);
}
.service:hover .service__media img { transform: scale(1.05); filter: saturate(1.06); }
.service__media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 16, 14, .7), rgba(18, 16, 14, 0) 55%);
}
.service__body { padding: 26px clamp(22px, 2.4vw, 32px) 30px; display: grid; gap: 12px; }
.service__title { font-family: var(--serif); font-weight: 400; font-size: 1.5rem; line-height: 1.15; }
.service__text { font-size: .93rem; color: var(--muted); line-height: 1.65; }
.service__more {
  margin-top: 4px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-lift);
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.service__more svg { width: 13px; height: 13px; transition: transform .3s var(--ease); }
.service:hover .service__more svg { transform: translateX(4px); }

/* ---- Split (Text + Bild) ----------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}
.split__copy { display: grid; gap: 22px; align-content: start; }
.split__media { position: relative; }
.split__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.split--flip .split__media { order: -1; }
.split__caption {
  margin-top: 14px;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
}
.split__stamp {
  position: absolute;
  right: -1px; bottom: -1px;
  background: var(--ink);
  border: 1px solid var(--line);
  padding: 20px 24px;
  display: grid;
  gap: 4px;
  max-width: 74%;
}
.split__stamp b { font-family: var(--serif); font-size: 1.6rem; font-weight: 400; line-height: 1; }
.split__stamp span { font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }

/* ---- Vorteile ---------------------------------------------------------- */
.merits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr));
  gap: 1px;
  background: var(--line-soft);
  border-block: 1px solid var(--line-soft);
}
.merit { background: var(--ink); padding: 30px clamp(20px, 2.2vw, 30px); display: grid; gap: 10px; }
.merit__index {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--rose-lift);
}
.merit__title { font-family: var(--serif); font-size: 1.35rem; font-weight: 400; line-height: 1.2; }
.merit__text { font-size: .88rem; color: var(--muted); line-height: 1.6; }

/* ---- Galerie ----------------------------------------------------------- */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 3vw, 40px);
}
.filter {
  border: 1px solid var(--line);
  background: none;
  color: var(--muted);
  padding: 11px 18px;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .25s var(--ease), border-color .25s var(--ease), background-color .25s var(--ease);
}
.filter:hover { color: var(--paper); border-color: var(--paper); }
.filter[aria-pressed="true"] { background: var(--paper); border-color: var(--paper); color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 230px), 1fr));
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.tile {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink-2);
  border: none;
  padding: 0;
  cursor: zoom-in;
}
.tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), opacity .5s var(--ease);
  opacity: .92;
}
.tile:hover img { transform: scale(1.06); opacity: 1; }
.tile__label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 16px 14px;
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: left;
  color: var(--paper);
  background: linear-gradient(to top, rgba(10, 9, 8, .88), rgba(10, 9, 8, 0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}
.tile:hover .tile__label,
.tile:focus-visible .tile__label { opacity: 1; transform: none; }
.tile[hidden] { display: none; }

.grid__footer { margin-top: 28px; display: flex; justify-content: center; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  place-items: center;
  width: 100vw;
  max-width: 100vw;
  height: 100dvh;
  max-height: 100dvh;
  margin: 0;
  border: none;
  overflow: hidden;
  color: var(--paper);
  background: rgba(8, 7, 6, .96);
  padding: clamp(16px, 4vw, 48px);
}
.lightbox[open] { display: grid; }
.lightbox::backdrop { background: rgba(8, 7, 6, .96); }
.lightbox__figure { margin: 0; display: grid; gap: 18px; justify-items: center; max-height: 100%; }
.lightbox__img {
  max-width: min(100%, 1100px);
  max-height: 78svh;
  width: auto;
  object-fit: contain;
}
.lightbox__caption {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.lightbox__btn {
  position: absolute;
  width: 52px; height: 52px;
  display: grid;
  place-items: center;
  background: rgba(244, 241, 236, .06);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: background-color .25s var(--ease), border-color .25s var(--ease);
}
.lightbox__btn:hover { background: rgba(244, 241, 236, .14); border-color: var(--paper); }
.lightbox__btn svg { width: 17px; height: 17px; }
.lightbox__btn--close { top: clamp(14px, 3vw, 28px); right: clamp(14px, 3vw, 28px); }
.lightbox__btn--prev { left: clamp(10px, 2.5vw, 28px); top: 50%; transform: translateY(-50%); }
.lightbox__btn--next { right: clamp(10px, 2.5vw, 28px); top: 50%; transform: translateY(-50%); }

/* ---- Öffnungszeiten & Kontakt ------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: 1px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
}
.panel { background: var(--ink); padding: clamp(28px, 3.4vw, 48px); }
.panel--muted { background: var(--ink-2); }
.panel__title {
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 8px;
}
.panel__hint { font-size: .93rem; color: var(--muted); margin-bottom: 28px; max-width: 46ch; }

/* Öffnungszeiten-Tabelle */
.hours { display: grid; gap: 0; margin-bottom: 30px; }
.hours li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-block: 13px;
  border-bottom: 1px solid var(--line-soft);
  font-size: .97rem;
  color: #CFC7BD;
}
.hours li:first-child { border-top: 1px solid var(--line-soft); }
.hours li.is-today { color: var(--paper); }
.hours li.is-today .hours__day::after {
  content: "heute";
  margin-left: 10px;
  font-size: .6rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--rose-lift);
  vertical-align: 1px;
}
.hours__time { font-variant-numeric: tabular-nums; white-space: nowrap; }

.factlist { display: grid; gap: 22px; }
.fact { display: grid; gap: 5px; }
.fact__label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.fact__value { font-size: 1.05rem; }
.fact__value a { text-decoration: none; border-bottom: 1px solid var(--line); transition: border-color .25s var(--ease); }
.fact__value a:hover { border-color: var(--rose); }

/* ---- Formular ---------------------------------------------------------- */
.form { display: grid; gap: 18px; }
.form__row { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 1fr)); gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
}
.field .req { color: var(--rose-lift); }
.field input, .field textarea, .field select {
  width: 100%;
  background: var(--ink-2);
  border: 1px solid var(--line);
  padding: 14px 16px;
  font-size: .97rem;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.panel--muted .field input,
.panel--muted .field textarea,
.panel--muted .field select { background: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: #6E665D; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--paper);
  background: var(--ink-3);
}
.field input:user-invalid, .field textarea:user-invalid { border-color: var(--rose); }
.field textarea { resize: vertical; min-height: 150px; }

.check {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  align-items: start;
  font-size: .86rem;
  color: var(--muted);
  line-height: 1.6;
}
.check input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  margin-top: 3px;
  border: 1px solid var(--line);
  background: var(--ink-2);
  display: grid;
  place-content: center;
  cursor: pointer;
  transition: border-color .25s var(--ease), background-color .25s var(--ease);
}
.check input::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--rose-lift);
  transform: scale(0);
  transition: transform .18s var(--ease);
}
.check input:checked { border-color: var(--paper); }
.check input:checked::after { transform: scale(1); }
.check a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--line); }
.check a:hover { border-color: var(--rose); }

.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 18px; margin-top: 4px; }
.form__aside { font-size: .82rem; color: var(--muted); }

.notice {
  border: 1px solid var(--line);
  border-left: 2px solid var(--rose);
  background: var(--ink-2);
  padding: 16px 20px;
  font-size: .9rem;
  color: #CFC7BD;
}
.notice[hidden] { display: none; }
.notice strong { color: var(--paper); font-weight: 600; }

/* ---- Karte ------------------------------------------------------------- */
.map {
  border: 1px solid var(--line-soft);
  border-top: none;
  position: relative;
  background: #E9E5DE;
}
.map iframe {
  width: 100%;
  height: clamp(280px, 34vw, 420px);
  border: 0;
}
.map__badge {
  position: absolute;
  left: 0; bottom: 0;
  background: var(--ink);
  border-top: 1px solid var(--line);
  border-right: 1px solid var(--line);
  padding: 16px 22px;
  display: grid;
  gap: 3px;
  font-size: .82rem;
}
.map__badge b { font-weight: 600; letter-spacing: .04em; }
.map__badge span { color: var(--muted); }

/* ---- Footer ------------------------------------------------------------ */
.footer { background: #0C0A09; border-top: 1px solid var(--line-soft); padding-top: clamp(52px, 6vw, 80px); }
.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(min(100%, 180px), 1fr));
  gap: clamp(32px, 4vw, 56px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.footer__brand { display: grid; gap: 20px; align-content: start; max-width: 34ch; }
.footer__brand img { width: 210px; }
.footer__brand p { font-size: .9rem; color: var(--muted); }
.footer__col { display: grid; gap: 14px; align-content: start; }
.footer__title {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted);
}
.footer__list { display: grid; gap: 9px; font-size: .92rem; }
.footer__list a { text-decoration: none; color: #CFC7BD; transition: color .25s var(--ease); }
.footer__list a:hover { color: var(--paper); }
.footer__hours li { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; color: #CFC7BD; }
.footer__hours .hours__time { font-variant-numeric: tabular-nums; }
.footer__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 22px;
  border-top: 1px solid var(--line-soft);
  font-size: .8rem;
  color: var(--muted);
}
.footer__bar nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer__bar a { text-decoration: none; transition: color .25s var(--ease); }
.footer__bar a:hover { color: var(--paper); }

/* Feststehender Anruf-Knopf auf kleinen Screens */
.callbar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(12, 10, 9, .97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.callbar a {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 12px;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-decoration: none;
}
.callbar a + a { border-left: 1px solid var(--line); }
.callbar a.is-call { background: var(--rose); color: #fff; }
.callbar svg { width: 15px; height: 15px; }

/* ---- Rechtstexte ------------------------------------------------------- */
.legal { max-width: 74ch; }
.legal h2 { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; margin-top: 2.2em; margin-bottom: .5em; }
.legal h2:first-of-type { margin-top: 1.4em; }
.legal h3 { font-size: .95rem; font-weight: 600; letter-spacing: .04em; margin-top: 1.8em; margin-bottom: .4em; }
.legal p { color: #C9C1B7; }
.legal p + p { margin-top: 1em; }
.legal ul { display: grid; gap: 8px; margin-top: 1em; color: #C9C1B7; }
.legal ul li { padding-left: 20px; position: relative; }
.legal ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 1px; background: var(--rose); }
.legal a { color: var(--paper); text-decoration: none; border-bottom: 1px solid var(--line); }
.legal a:hover { border-color: var(--rose); }
.page-hero { padding-top: clamp(56px, 7vw, 92px); padding-bottom: clamp(32px, 4vw, 48px); border-bottom: 1px solid var(--line-soft); }
.page-hero .eyebrow { margin-bottom: 18px; }

/* ---- Scroll-Reveal ----------------------------------------------------- */
.reveal { opacity: 0; transform: translateY(18px); }
.reveal.is-in {
  opacity: 1;
  transform: none;
  transition: opacity .8s var(--ease), transform .8s var(--ease);
  transition-delay: var(--delay, 0ms);
}

/* ---- Responsive -------------------------------------------------------- */
@media (max-width: 1080px) {
  .contact-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 960px) {
  html { scroll-padding-top: 82px; }
  .burger { display: block; }
  .nav {
    position: fixed;
    inset: 0 0 auto;
    top: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #0C0A09;
    padding: 96px var(--gutter) 40px;
    height: 100svh;
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform .42s var(--ease);
    z-index: 80;
  }
  .nav.is-open { transform: none; }
  /* Logo und Schließen-Knopf bleiben über der Menü-Fläche bedienbar. */
  .brand, .burger { position: relative; z-index: 81; }
  .nav__link {
    font-family: var(--serif);
    font-size: 1.9rem;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
    padding-block: 18px;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav__link::after { display: none; }
  .nav > .btn { display: inline-flex; margin-top: 28px; }
  .masthead__row { min-height: 68px; gap: 14px; }

  .hero { min-height: auto; padding-bottom: 40px; }
  .hero__grid { grid-template-columns: 1fr; padding-bottom: clamp(72px, 10vw, 96px); }
  .hero__copy { max-width: none; }
  .plate { width: 100%; max-width: 460px; }

  .split--flip .split__media { order: 0; }
  .section__head--split { grid-template-columns: 1fr; align-items: start; }

  .callbar { display: flex; }
  body { padding-bottom: 54px; }
  .hero__ticks { bottom: auto; top: clamp(18px, 5vw, 28px); }

  /* Servicebalken und Anruf-Knopf der Kopfzeile entfallen: Öffnungszeiten
     stehen in der Hero-Tafel, „Anrufen“ in der festen Leiste unten. */
  .utility { display: none; }
  .masthead__row > .btn { display: none; }

  /* Footer einspaltig — sonst laufen die Spalten ineinander. */
  .footer__grid { grid-template-columns: 1fr; }
  .footer__brand { max-width: none; }
}

@media (max-width: 620px) {
  .utility__row { flex-direction: column; align-items: flex-start; gap: 6px; padding-block: 10px; }
  .utility__group { gap: 16px; }
  .utility__group--address { display: none; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .services { grid-template-columns: 1fr; }
  .hero__actions .btn { width: 100%; }
  .split__stamp { position: static; max-width: none; margin-top: -1px; }
}

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

/* ---- Druck ------------------------------------------------------------- */
@media print {
  .masthead, .callbar, .hero__ticks, .lightbox, .filters { display: none !important; }
  body { background: #fff; color: #000; }
}
