/* ==========================================================================
   Alte Schachtel Fotobox — site stylesheet
   Layout + the design-system components (Button, Input, RadioCard, Quote,
   PackageCard, PhotoFrame) rebuilt as plain CSS classes.
   All values come from _ds tokens; nothing is invented here.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Primitives
   -------------------------------------------------------------------------- */

/* The hidden attribute must beat any component display rule below
   (.btn is inline-flex, .form-success is grid, and so on). */
[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body { background: var(--surface-page); }

/* Buttons erben die Schrift nicht von selbst — ohne das fallen die
   Icon-Buttons (Burger-Menü, Galeriekacheln) auf die Systemschrift zurück. */
button { font-family: inherit; }

.container { max-width: var(--container); margin-inline: auto; }

.section { padding: clamp(64px, 9vw, 120px) var(--pad-page-x); scroll-margin-top: 96px; }
.section--tight { padding-block: clamp(56px, 8vw, 104px); }
.section--alt { background: var(--surface-page-alt); }

/* Eyebrow — uppercase micro-type, the brand's connective tissue. */
.eyebrow {
  margin: 0 0 var(--sp-4);
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--gold-600);
}
.eyebrow--muted { color: var(--text-muted); }

/* Display headings — Josefin Sans 300, wide tracking, never bold. */
.h-display {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(38px, 6.2vw, 84px);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  color: var(--text-strong);
  text-wrap: balance;
}
.h-section {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-light);
  font-size: clamp(26px, 3.4vw, 42px);
  line-height: 1.14;
  letter-spacing: var(--ls-heading);
  color: var(--text-strong);
}
.h-card {
  margin: 0;
  font-family: var(--font-display);
  font-weight: var(--fw-regular);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.2;
  letter-spacing: var(--ls-heading);
  color: var(--text-strong);
}

.lead { font-size: var(--fs-lead); line-height: var(--lh-body); color: var(--text-body); max-width: var(--measure-prose); }
.prose { font-size: 17px; line-height: var(--lh-body); color: var(--text-body); max-width: var(--measure-prose); }
.muted { color: var(--text-muted); }
.serif-note { font-family: var(--font-serif); font-style: italic; color: var(--sage-600); }

/* The section ornament: a 7px gold diamond taken from the logo frame vertices. */
.diamond { width: 7px; height: 7px; flex: none; transform: rotate(45deg); background: var(--gold-500); }
.diamond--hollow { background: none; border: 1px solid var(--gold-500); }

/* The strongest divider in the system: a 2px gold gradient rule. */
.rule-gold { height: 2px; background: var(--brand-gradient); border: 0; margin: 0; }

.ornament-divider { display: flex; align-items: center; gap: var(--sp-4); }
.ornament-divider::before,
.ornament-divider::after { content: ""; flex: 1; height: 1px; background: var(--border-hairline); }

/* --------------------------------------------------------------------------
   2. Button
   -------------------------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  white-space: nowrap;
  font-family: var(--font-body);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius-control);
  cursor: pointer;
  padding: 13px 28px;
  font-size: 13px;
  letter-spacing: var(--ls-button);
  transition: var(--transition-control), transform var(--dur-instant) var(--ease-standard);
}
.btn:active:not(:disabled) { transform: scale(var(--press-scale)); }
.btn:disabled { cursor: not-allowed; opacity: .42; }

.btn--sm { padding: 8px 16px; font-size: 12px; letter-spacing: .12em; }
.btn--lg { padding: 17px 38px; font-size: 14px; letter-spacing: .16em; }
.btn--full { display: flex; width: 100%; }

.btn--gold {
  background: var(--brand-gradient);
  color: var(--ink-900);
  border: 1px solid var(--gold-500);
  box-shadow: var(--shadow-xs);
}
.btn--gold:hover:not(:disabled) { box-shadow: var(--shadow-md); color: var(--ink-900); }

.btn--outline-gold {
  background: transparent;
  color: var(--ink-900);
  border: 1px solid var(--gold-400);
}
.btn--outline-gold:hover:not(:disabled) { background: var(--gold-100); color: var(--ink-900); }

.btn--on-dark {
  background: var(--paper-100);
  color: var(--ink-900);
  border: 1px solid var(--paper-100);
}
.btn--on-dark:hover:not(:disabled) { background: var(--paper-000); color: var(--ink-900); }

.btn--ghost {
  background: transparent;
  color: var(--ink-700);
  border: 1px solid transparent;
  padding-inline: 0;
}
.btn--ghost:hover:not(:disabled) { color: var(--gold-600); }

/* Buttons are links too — kill the global anchor hairline. */
a.btn, a.btn:hover { border-bottom-color: transparent; }

/* --------------------------------------------------------------------------
   3. Header
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--veil-light);
  -webkit-backdrop-filter: var(--blur-veil);
  backdrop-filter: var(--blur-veil);
  border-bottom: 1px solid var(--border-hairline);
}
.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 var(--pad-page-x);
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-6);
}
.site-header__logo { display: flex; align-items: center; border-bottom: 0; }
.site-header__logo img { height: 58px; width: auto; }

.site-nav { display: flex; align-items: center; gap: clamp(12px, 2.2vw, 30px); }

/* :not(.btn) ist wichtig — sonst überschreiben Textfarbe und der
   Unterstrich-Abstand den Button, der dadurch grau wird und tiefer sitzt. */
.site-nav a:not(.btn) {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}
.site-nav a:not(.btn):hover { color: var(--gold-600); border-bottom-color: var(--gold-400); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-control);
  padding: 9px 11px;
  cursor: pointer;
  color: var(--ink-900);
}
.nav-toggle span { display: block; width: 20px; height: 1px; background: currentColor; }
.nav-toggle span + span { margin-top: 5px; }

/* --------------------------------------------------------------------------
   4. Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  height: min(94vh, 940px);
  min-height: 560px;
  background: var(--surface-photo);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg,
    rgba(31,31,31,.52) 0%, rgba(31,31,31,.58) 24%, rgba(31,31,31,.66) 46%,
    rgba(31,31,31,.78) 72%, rgba(31,31,31,.90) 100%);
}
.hero__body {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 0 var(--pad-page-x) clamp(40px, 6vw, 76px);
  pointer-events: none;
}
.hero__eyebrow {
  margin: 0 0 22px;
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-on-dark);
}
.hero h1 { color: var(--text-on-dark); }
.hero__text { margin: 26px 0 0; max-width: 540px; font-size: clamp(16px, 1.3vw, 18px); line-height: var(--lh-body); color: var(--paper-200); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; pointer-events: auto; }

/* Fact strip under the hero */
.factbar { background: var(--surface-page-alt); border-bottom: 1px solid var(--border-hairline); }
.factbar__inner {
  max-width: var(--container);
  margin-inline: auto;
  padding: 26px clamp(16px, 4vw, 64px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 12px clamp(12px, 2.6vw, 44px);
}
.factbar span.fact {
  font-size: clamp(9.5px, 1.05vw, 12.5px);
  letter-spacing: clamp(.08em, .16vw, .2em);
  text-transform: uppercase;
  color: var(--ink-600);
  white-space: nowrap;
}
.factbar .pair { display: inline-flex; align-items: center; gap: clamp(12px, 2.6vw, 44px); }

/* Ab Tablet strikt eine Zeile. Darunter darf umbrechen -- vier
   Beschriftungen passen auf einem Handy nicht lesbar nebeneinander. */
@media (min-width: 760px) {
  .factbar__inner { flex-wrap: nowrap; }
}

/* --------------------------------------------------------------------------
   5. Photo frames
   -------------------------------------------------------------------------- */

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(36px, 5vw, 80px);
  align-items: center;
}

/* frame="print" — a white border with a deeper bottom margin and a centred
   caption, so the image reads as an instant print laid on the table. */
.print-frame { position: relative; transform: rotate(-.6deg); }
.print-frame__inner {
  background: var(--paper-000);
  padding: 14px 14px 62px;
  border: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-photo);
}
.print-frame__img { height: clamp(260px, 32vw, 420px); overflow: hidden; }
.print-frame__img img { width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow-inset-photo); }
.print-frame__caption {
  position: absolute;
  left: 0; right: 0; bottom: 22px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  color: var(--text-muted);
}

/* --------------------------------------------------------------------------
   6. Feature row
   -------------------------------------------------------------------------- */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3.4vw, 48px);
}
.feature__label {
  margin: 0 0 14px;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-600);
}
.feature p:last-child { margin: 0; font-size: 15.5px; line-height: var(--lh-body); color: var(--ink-600); max-width: 34ch; }

/* --------------------------------------------------------------------------
   7. Packages
   -------------------------------------------------------------------------- */

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--sp-5);
  flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--sp-4);
  align-items: stretch;
}

.package {
  position: relative;
  height: 100%;
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  padding: var(--pad-card);
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-surface);
}
.package:hover { transform: var(--lift-hover); box-shadow: var(--shadow-md); }
.package::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 2px;
  background: var(--border-hairline);
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
/* The featured tier gets the 2px gold gradient hairline — never a tinted body. */
.package--featured { border-color: var(--gold-400); }
.package--featured::before { background: var(--brand-gradient); }

.package__name { margin: 0 0 5px; font-family: var(--font-display); font-weight: var(--fw-regular); font-size: 25px; letter-spacing: .05em; color: var(--text-strong); }
.package__tag { font-family: var(--font-serif); font-style: italic; font-size: 17px; color: var(--sage-600); }
.package__price { display: flex; align-items: baseline; gap: var(--sp-2); }
.package__price .from { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); }
.package__price .amount { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 32px; letter-spacing: .04em; color: var(--text-strong); }
.package__hr { height: 1px; background: var(--border-hairline); }
.package__items { flex: 1 1 auto; display: flex; flex-direction: column; gap: var(--sp-2); list-style: none; margin: 0; padding: 0; }
.package__items li { display: flex; gap: 11px; align-items: baseline; font-size: 15.5px; line-height: 1.58; color: var(--text-body); }
.package__items li::before { content: ""; width: 5px; height: 5px; flex: none; margin-top: 7px; transform: rotate(45deg); background: var(--gold-500); }

.package-note { margin-top: clamp(26px, 3.4vw, 40px); display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 18px; }
.package-note p { margin: 0; font-family: var(--font-serif); font-style: italic; font-size: 19px; color: var(--sage-600); }

.link-caps { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid var(--gold-400); padding-bottom: 3px; }

.addons { margin-top: clamp(24px, 3vw, 36px); border-top: 1px solid var(--border-hairline); padding-top: 18px; }
.addons__list { max-width: 760px; margin-top: 10px; }
.addon-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--sp-5);
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-100);
  font-size: 14.5px;
}
.addon-row span:first-child { color: var(--ink-600); }
.addon-row span:last-child { color: var(--text-muted); white-space: nowrap; }

/* --------------------------------------------------------------------------
   8. Steps
   -------------------------------------------------------------------------- */

.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 0 clamp(20px, 3vw, 44px); }
.step { padding: 28px 0 32px; border-top: 1px solid var(--border-hairline); }
.step .diamond { margin-bottom: 22px; }
.step__no { font-size: 13px; letter-spacing: .22em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 10px; }
.step h3 { margin: 0 0 10px; font-family: var(--font-display); font-weight: var(--fw-regular); font-size: 20px; letter-spacing: .04em; }
.step p { margin: 0; font-size: 15.5px; line-height: var(--lh-body); color: var(--ink-600); padding-right: 14px; }

/* --------------------------------------------------------------------------
   9. Gallery + Instagram
   -------------------------------------------------------------------------- */

.gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 12px; }
.tile {
  aspect-ratio: 1;
  min-width: 0;
  border: 1px solid var(--border-hairline);
  background: var(--paper-000);
  border-radius: var(--radius-photo);
  overflow: hidden;
  padding: 0;
  cursor: zoom-in;
  transition: var(--transition-surface);
}
.tile img { width: 100%; height: 100%; object-fit: cover; }
.tile:hover { transform: var(--lift-hover); box-shadow: var(--shadow-md); }

/* Instagram tiles are links out to the post, not lightbox triggers. */
a.tile { display: block; cursor: pointer; border-bottom: 0; }
a.tile:hover { border-bottom: 0; }

.quotes-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(32px, 4.5vw, 72px);
  align-items: start;
}
.quote-stack { display: grid; gap: clamp(28px, 3.5vw, 44px); }

.quote { margin: 0; display: flex; flex-direction: column; gap: var(--sp-5); align-items: flex-start; max-width: var(--measure-lead); }
.quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: var(--fw-light);
  font-size: var(--fs-h2);
  line-height: 1.32;
  color: var(--text-strong);
}
.quote figcaption {
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
}

.ig-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }

/* Lightbox */
/* A closed <dialog> is display:none by UA default — `display:grid` would
   override that and leak the close button onto the page, so scope it to
   the open state. */
.lightbox:not([open]) { display: none; }

.lightbox[open] {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 48px);
  background: var(--veil-dark);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  border: 0;
  animation: fade var(--dur-slow) var(--ease-out);
}
.lightbox::backdrop { background: transparent; }
.lightbox img { max-width: min(1100px, 92vw); max-height: 84vh; object-fit: contain; background: var(--paper-000); padding: 12px; box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute;
  top: clamp(12px, 3vw, 28px);
  right: clamp(12px, 3vw, 28px);
  background: var(--paper-100);
  border: 1px solid var(--paper-100);
  border-radius: var(--radius-control);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 9px 16px;
  cursor: pointer;
}
@keyframes fade { from { opacity: 0 } to { opacity: 1 } }

/* --------------------------------------------------------------------------
   10. Region + FAQ
   -------------------------------------------------------------------------- */

.region-split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding-bottom: clamp(34px, 4.5vw, 56px);
  border-bottom: 1px solid var(--border-hairline);
}
.chips { display: flex; flex-wrap: wrap; align-items: flex-start; gap: var(--sp-2); }
.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  background: var(--sage-100);
  border: 1px solid var(--sage-200);
  border-radius: var(--radius-pill);
  font-size: 13px;
  color: var(--sage-700);
}

.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 0 clamp(28px, 4vw, 64px); align-items: start; }
.faq { border-top: 1px solid var(--border-hairline); }
.faq__q {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  padding: 18px 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: 16.5px;
  line-height: 1.5;
  color: var(--text-strong);
  transition: var(--transition-control);
}
.faq__q:hover { color: var(--gold-600); }
.faq__sign { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 20px; color: var(--gold-600); line-height: 1; flex: none; }
.faq__a { overflow: hidden; }
.faq__a p { margin: 0 0 18px; max-width: 56ch; font-size: 15.5px; line-height: var(--lh-body); color: var(--ink-600); }
.faq[hidden] { display: none; }

/* Schalter für die zusätzlichen Fragen. Bewusst zurückhaltend — er soll
   die sechs sichtbaren Fragen nicht überstrahlen. */
.faq-mehr {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
  padding: 10px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--gold-400);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-700);
  transition: var(--transition-control);
}
.faq-mehr:hover { color: var(--gold-600); }
.faq-mehr__sign { font-family: var(--font-display); font-weight: var(--fw-light); font-size: 18px; line-height: 1; color: var(--gold-600); }

/* --------------------------------------------------------------------------
   11. Enquiry form
   -------------------------------------------------------------------------- */

.enquiry-head { display: flex; align-items: flex-end; justify-content: space-between; gap: var(--sp-6); flex-wrap: wrap; margin-bottom: clamp(26px, 3.4vw, 40px); }
.enquiry-progress { text-align: right; }
.enquiry-progress__label { font-size: 11px; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); margin-bottom: var(--sp-2); }
.enquiry-progress__bars { display: flex; gap: 6px; width: min(260px, 52vw); }
.enquiry-progress__bars span { flex: 1; height: 3px; background: var(--border-hairline); border-radius: 2px; transition: var(--transition-control); }
.enquiry-progress__bars span.is-done { background: var(--gold-500); }

/* Ohne JavaScript funktioniert der mehrstufige Ablauf nicht — dann bekommen
   Besucher hier den direkten Weg zu uns. */
.noscript-hinweis {
  background: var(--gold-100);
  border: 1px solid var(--gold-400);
  border-radius: var(--radius-card);
  padding: var(--pad-card);
  margin-bottom: var(--sp-6);
  max-width: var(--measure-prose);
}
.noscript-hinweis p { font-size: 16px; line-height: var(--lh-body); color: var(--text-body); }

.form-card {
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.form-card__body { padding: clamp(26px, 3.4vw, 48px); }

.fieldset { border: 0; margin: 0; padding: 0; display: grid; gap: 22px; }
.fieldset[hidden] { display: none; }

/* Honeypot — off-screen rather than display:none, because some bots skip
   fields that are explicitly hidden. Never focusable by keyboard. */
.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-eyebrow);
  letter-spacing: var(--ls-eyebrow);
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.req { color: var(--gold-600); }

.field-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 18px; }
.field { display: flex; flex-direction: column; gap: var(--sp-2); }

.field input,
.field textarea,
.field select {
  width: 100%;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--text-strong);
  background: var(--paper-000);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-control);
  padding: 13px 14px;
  outline: none;
  transition: var(--transition-control);
}
.field textarea { resize: vertical; min-height: 118px; line-height: var(--lh-body); }
.field input:focus,
.field textarea:focus,
.field select:focus { border-color: var(--gold-500); box-shadow: 0 0 0 3px var(--gold-100); }
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--state-error); }

.field__error { font-family: var(--font-body); font-size: var(--fs-caption); color: var(--state-error); min-height: 0; }
.field__error:empty { display: none; }

/* Occasion pills */
.pill-row { display: flex; flex-wrap: wrap; align-items: flex-start; gap: var(--sp-2); }
.pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 20px;
  border: 1px solid var(--border-strong);
  background: var(--paper-000);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-strong);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-control);
}
.pill:hover { border-color: var(--gold-400); }
.pill[aria-pressed="true"] { background: var(--gold-100); border-color: var(--gold-500); }

/* RadioCard */
.radio-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 12px; }
.radio-card {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  padding: var(--pad-card-tight);
  border-radius: var(--radius-card);
  background: var(--surface-card);
  border: 1px solid var(--border-hairline);
  cursor: pointer;
  transition: var(--transition-control);
}
.radio-card:hover { background: var(--surface-card-hover); }
.radio-card:has(input:checked) { background: var(--gold-100); border-color: var(--gold-500); box-shadow: var(--shadow-sm); }
.radio-card:has(input:focus-visible) { box-shadow: var(--shadow-focus); }
.radio-card input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.radio-card__dot {
  flex: 0 0 auto;
  width: 16px; height: 16px;
  margin-top: 3px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--paper-000);
  display: grid;
  place-items: center;
}
.radio-card input:checked + .radio-card__dot { border-color: var(--gold-600); }
.radio-card input:checked + .radio-card__dot::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-500); }
.radio-card__text { display: flex; flex-direction: column; gap: 3px; flex: 1; }
.radio-card__top { display: flex; justify-content: space-between; gap: var(--sp-4); align-items: baseline; }
.radio-card__title { font-family: var(--font-display); font-size: var(--fs-h4); color: var(--text-strong); letter-spacing: var(--ls-heading); }
.radio-card__meta { font-family: var(--font-body); font-size: var(--fs-small); font-weight: var(--fw-medium); color: var(--text-strong); }
.radio-card__desc { font-family: var(--font-body); font-size: var(--fs-small); line-height: var(--lh-snug); color: var(--text-muted); }

/* Checkbox — gold-400 fill with an ink check, never blue. */
.check { display: flex; align-items: flex-start; gap: 11px; cursor: pointer; font-size: 13.5px; color: var(--text-muted); line-height: var(--lh-body); }
.check input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.check__box {
  width: 16px; height: 16px;
  flex: none;
  margin-top: 2px;
  border: 1px solid var(--border-strong);
  background: var(--paper-000);
  border-radius: var(--radius-xs);
  display: grid;
  place-items: center;
  font-size: 11px;
  line-height: 1;
  color: var(--ink-900);
  transition: var(--transition-control);
}
.check input:checked + .check__box { background: var(--mimosa-300); border-color: var(--gold-500); }
.check input:checked + .check__box::after { content: "✓"; }
.check input:focus-visible + .check__box { box-shadow: var(--shadow-focus); }

.form-actions { display: flex; gap: 12px; margin-top: 26px; flex-wrap: wrap; align-items: center; }
.form-actions__note { font-size: 13.5px; color: var(--text-muted); }

.form-success { display: grid; gap: var(--sp-5); justify-items: start; }
.form-success h3 { font-family: var(--font-display); font-weight: var(--fw-light); font-size: clamp(24px, 3vw, 34px); letter-spacing: var(--ls-heading); }
.form-success [data-success-mode][hidden] { display: none; }

/* Der Bestätigungstext soll die volle Kastenbreite nutzen. Ohne das
   justify-self schrumpft der Block auf seine Inhaltsbreite, weil das
   umgebende Raster auf justify-items: start steht - dann bricht jeder Satz
   mitten im Wortfluss um. */
.form-success > [data-success-mode] { justify-self: stretch; width: 100%; }
.form-success p {
  margin: 14px 0 0;
  font-size: 16.5px;
  line-height: 1.64;
  color: var(--ink-600);
}
.form-success p.hinweis {
  margin-top: 18px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.form-success p.hinweis strong { color: var(--ink-700); }

/* The finished enquiry, ready to be copied. */
.summary {
  margin: 0;
  padding: var(--pad-card-tight);
  background: var(--surface-inset);
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-card);
  font-family: var(--font-mono);
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--text-body);
  white-space: pre-wrap;
  overflow-x: auto;
  max-width: 56ch;
  -webkit-user-select: all;
  user-select: all;
}

.summary-actions { display: flex; flex-wrap: wrap; align-items: center; gap: var(--sp-4); margin-top: var(--sp-5); }

/* Contact address as plain, selectable text — deliberately not a mail link,
   so nothing launches a mail program on click. */
.summary-mail,
.footer-mail {
  font-family: var(--font-body);
  color: var(--text-strong);
  -webkit-user-select: all;
  user-select: all;
  cursor: text;
}
.summary-mail { font-size: 15.5px; }
.footer-mail { font-size: 13.5px; color: var(--ink-600); }

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */

/* Schlanker als der Seiteninhalt: schmalere Spur, weniger Höhe.
   Der Footer soll abschließen, nicht noch einmal Raum einnehmen. */
.site-footer { background: var(--surface-page-alt); padding: 0 0 24px; --footer-breite: var(--container); }
.site-footer__cols {
  max-width: var(--footer-breite);
  margin-inline: auto;
  padding: clamp(32px, 4vw, 48px) var(--pad-page-x) 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  align-items: start;
}
.site-footer img.footer-logo { height: 68px; width: auto; margin-bottom: var(--sp-3); }
.site-footer h2 { margin: 0 0 var(--sp-4); font-family: var(--font-body); font-size: 11.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600); font-weight: var(--fw-regular); }
.site-footer__links { display: grid; gap: 10px; }

.site-footer a { font-size: 13.5px; color: var(--ink-600); border-bottom-color: transparent; }
.site-footer a:hover { color: var(--gold-600); border-bottom-color: var(--gold-400); }
.site-footer__bottom { max-width: var(--footer-breite); margin: clamp(24px, 3vw, 36px) auto 0; padding: 0 var(--pad-page-x); }
.site-footer__seo { margin: 18px 0 0; text-align: center; font-size: 11.5px; letter-spacing: .04em; color: var(--ink-600); }

/* --------------------------------------------------------------------------
   13. Scroll reveal — one 760ms fade + 12px rise, once. Never staggered.
   -------------------------------------------------------------------------- */

.reveal { opacity: 0; transform: translateY(12px); transition: opacity var(--dur-reveal) var(--ease-out), transform var(--dur-reveal) var(--ease-out); }
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* --------------------------------------------------------------------------
   14. Responsive
   -------------------------------------------------------------------------- */

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: 82px;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: var(--sp-2) var(--pad-page-x) var(--sp-5);
    background: var(--paper-100);
    border-bottom: 1px solid var(--border-hairline);
    box-shadow: var(--shadow-md);
  }
  .site-nav[hidden] { display: none; }
  .site-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--border-hairline); }
  .site-nav .btn { margin-top: var(--sp-4); }
  .enquiry-head { align-items: flex-start; }
  .enquiry-progress { text-align: left; }
  .print-frame { transform: none; }
}

@media (max-width: 560px) {
  /* Let the copy set the hero's height instead of overlaying a fixed box.
     Must stay `relative`, not `static`: the photo and scrim are absolutely
     positioned siblings, so a static body would paint underneath them. */
  .hero { height: auto; min-height: 0; }

  /* Das Foto braucht oben Luft, damit es als Bild wirkt - aber nur so viel,
     dass Vorspann, Überschrift, Fließtext und der erste Knopf noch auf den
     ersten Bildschirm passen. Feste Grenzen in px, weil vh auf Handys je
     nach ein- und ausfahrender Adressleiste schwankt. */
  .hero__body { position: relative; padding-top: clamp(150px, 24vh, 260px); }
  .factbar .pair { gap: 12px; }
  .form-actions .btn { flex: 1 1 auto; }
  .form-actions__note { order: 3; }
}
