/* ============================================================
   PROMO.DE Personal — Design nach dem Vorbild von promo.de
   Akzent hsl(8 85% 50%) = #ec3013, Inter, Radius 0.75rem
   ============================================================ */

:root {
  --accent:      #ec3013;
  --accent-dark: #c8260d;
  --accent-soft: rgba(236, 48, 19, .10);
  --accent-line: rgba(236, 48, 19, .28);

  --ink:       #141414;
  --ink-2:     #3d3d3d;
  --ink-soft:  #6b6b6b;
  --line:      #e0e0e0;
  --surface:   #ffffff;
  --surface-2: #f7f7f7;

  --dark:      #141414;
  --dark-2:    #1c1c1c;
  --dark-3:    #242424;
  --dark-line: #2f2f2f;
  --dark-text: #a8a8a8;

  --radius:      12px;
  --radius-lg:   18px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(20,20,20,.05);
  --shadow:    0 4px 24px rgba(20,20,20,.07);
  --shadow-lg: 0 18px 50px rgba(20,20,20,.14);

  --wrap:  1200px;
  --nav-h: 76px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
[hidden] { display: none !important; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--surface);
  color: var(--ink);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
ul, ol { list-style: none; }

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

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
.wrap-narrow { max-width: 820px; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 300;
  background: var(--accent); color: #fff; padding: 10px 18px;
  border-radius: var(--radius); font-weight: 600; text-decoration: none; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ── Typografie ──────────────────────────────────────────── */

h1, h2, h3 { line-height: 1.12; letter-spacing: -.025em; font-weight: 800; }

.eyebrow {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 2.2px;
  text-transform: uppercase; color: var(--accent); margin-bottom: 14px;
}

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head h2 { font-size: clamp(30px, 4.2vw, 48px); }
.section-head p { margin-top: 18px; font-size: 17px; color: var(--ink-soft); line-height: 1.7; }

section { padding: 104px 0; }
.section-alt { background: var(--surface-2); }

/* ── Buttons ─────────────────────────────────────────────── */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 28px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 600; letter-spacing: -.01em;
  text-decoration: none; border: 1px solid transparent; cursor: pointer;
  font-family: inherit;
  transition: background .18s, color .18s, border-color .18s, transform .18s, box-shadow .18s;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 6px 18px rgba(236,48,19,.25); }
.btn-primary:hover { background: var(--accent-dark); box-shadow: 0 10px 26px rgba(236,48,19,.32); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); background: var(--surface-2); }
.btn[disabled] { opacity: .55; cursor: not-allowed; transform: none; }

/* ── Navigation ──────────────────────────────────────────── */

.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 120; height: var(--nav-h);
  background: rgba(255,255,255,.88);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

/* ── Lesefortschritt an der Unterkante der Kopfzeile ──────────────
   Bewegt wird ueber transform statt ueber die Breite: das laeuft auf
   der Grafikkarte und ruckelt deshalb auch auf aelteren Handys nicht. */
.fortschritt {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 3px;
  overflow: hidden; pointer-events: none;
}
.fortschritt span {
  display: block; height: 100%; width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0); transform-origin: 0 50%;
  transition: transform .08s linear;
}
.nav .wrap { height: 100%; display: flex; align-items: center; gap: 24px; }

.logo {
  font-size: 21px; font-weight: 800; letter-spacing: -.04em;
  text-decoration: none; color: var(--ink); white-space: nowrap;
}
.logo span { color: var(--accent); }
.logo em {
  font-style: normal; font-weight: 600; font-size: 14px;
  color: var(--ink-soft); letter-spacing: 0;
}

.nav-links { display: flex; gap: 26px; margin-left: 14px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-2);
  text-decoration: none; transition: color .16s; white-space: nowrap;
}
.nav-links a:hover { color: var(--accent); }

.nav-right { margin-left: auto; display: flex; align-items: center; gap: 16px; }

.lang-switch {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 14px; font-weight: 600; text-decoration: none; color: var(--ink-2);
  padding: 8px 14px; border: 1px solid var(--line); border-radius: var(--radius-pill);
  transition: all .16s; white-space: nowrap;
}
.lang-switch:hover { border-color: var(--ink); color: var(--ink); }
.lang-switch svg { color: var(--accent); flex: none; }

.nav-phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; color: var(--ink);
  text-decoration: none; white-space: nowrap;
}
.nav-phone svg { color: var(--accent); flex: none; }
.nav-phone:hover { color: var(--accent); }

.nav-cta-mobil { display: none; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--line);
  border-radius: var(--radius); width: 42px; height: 42px; cursor: pointer;
  color: var(--ink); align-items: center; justify-content: center;
}

/* ── Hero ────────────────────────────────────────────────── */

.hero { position: relative; padding: calc(var(--nav-h) + 62px) 0 78px; overflow: hidden; }

/* Zwei Spalten: links die Botschaft, rechts das Formular. Die rechte
   Spalte ist etwas breiter, weil dort zwei Felder nebeneinander passen
   muessen. */
.hero-grid {
  display: grid; grid-template-columns: 1fr 1.04fr;
  gap: 54px; align-items: start;
}
.hero-text-spalte { padding-top: 12px; }
/* Zwei Klassen, damit die spaetere Regel '.hero-actions { display:flex }'
   diese hier nicht ueberschreibt. */
.hero-actions.nur-handy { display: none; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(ellipse 52% 58% at 82% 12%, rgba(236,48,19,.13), transparent 68%),
    radial-gradient(ellipse 44% 46% at 6% 88%, rgba(236,48,19,.06), transparent 66%);
}
.hero::after {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: radial-gradient(ellipse 72% 62% at 50% 34%, #000 25%, transparent 78%);
  -webkit-mask-image: radial-gradient(ellipse 72% 62% at 50% 34%, #000 25%, transparent 78%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent-soft); border: 1px solid var(--accent-line);
  color: var(--accent); border-radius: var(--radius-pill);
  padding: 7px 16px 7px 12px; font-size: 12.5px; font-weight: 700;
  letter-spacing: 1.4px; text-transform: uppercase; margin-bottom: 26px;
}
.hero-badge .dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2.1s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .45; transform: scale(1.35); } }

.hero h1 { font-size: clamp(34px, 3.9vw, 56px); max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-text { margin-top: 22px; max-width: 46ch; font-size: 17px; color: var(--ink-soft); line-height: 1.7; }
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-points {
  margin-top: 54px; display: flex; flex-wrap: wrap; gap: 14px 38px;
  padding-top: 30px; border-top: 1px solid var(--line);
}
.hero-points li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.hero-points svg { color: var(--accent); flex: none; }

/* ── Leistungskarten ─────────────────────────────────────── */

.cards { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); }

.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform .22s, box-shadow .22s, border-color .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-line); }
.card-icon {
  width: 50px; height: 50px; border-radius: var(--radius);
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.card h3 { font-size: 20px; margin-bottom: 12px; }
.card > p { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.card-list { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); display: grid; gap: 11px; }
.card-list li { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; }
.card-list svg { color: var(--accent); flex: none; margin-top: 5px; }

/* ── Für Aussteller aus dem Ausland (dunkel) ─────────────── */

.abroad { background: var(--dark); color: #fff; padding: 104px 0; }
.abroad-grid { display: grid; gap: 58px; grid-template-columns: 1fr 1fr; align-items: start; }
.abroad h2 { font-size: clamp(30px, 4vw, 46px); color: #fff; max-width: 14ch; }
.abroad-text { margin-top: 22px; font-size: 17px; color: var(--dark-text); line-height: 1.75; max-width: 48ch; }
.abroad .btn { margin-top: 32px; }

.abroad-list { display: grid; gap: 14px; }
.abroad-list li {
  display: flex; gap: 18px; align-items: flex-start;
  background: var(--dark-2); border: 1px solid var(--dark-line);
  border-radius: var(--radius); padding: 20px 22px;
  transition: border-color .18s, background .18s;
}
.abroad-list li:hover { border-color: var(--accent); background: var(--dark-3); }
.abroad-num {
  font-size: 12px; font-weight: 800; letter-spacing: 1.4px; color: var(--accent);
  flex: none; padding-top: 3px;
}
.abroad-list h3 { font-size: 16.5px; color: #fff; margin-bottom: 6px; }
.abroad-list p { font-size: 14.5px; color: var(--dark-text); line-height: 1.65; }

/* ── Messestädte ─────────────────────────────────────────── */

.cities { display: grid; gap: 1px; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  background: var(--line); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.cities li { background: var(--surface); padding: 22px 24px; transition: background .18s; }
.cities li:hover { background: var(--surface-2); }
.cities strong { display: block; font-size: 17px; font-weight: 700; letter-spacing: -.02em; }
.cities span { font-size: 13.5px; color: var(--ink-soft); }

/* ── Ablauf ──────────────────────────────────────────────── */

.steps { display: grid; gap: 22px; grid-template-columns: repeat(auto-fit, minmax(245px, 1fr)); counter-reset: none; }
.step {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px 26px;
  transition: border-color .2s, transform .2s;
}
.step:hover { border-color: var(--accent-line); transform: translateY(-3px); }
.step-num { display: block; font-size: 13px; font-weight: 800; letter-spacing: 1.5px; color: var(--accent); margin-bottom: 16px; }
.step h3 { font-size: 17.5px; margin-bottom: 9px; }
.step p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; }

/* ── FAQ ─────────────────────────────────────────────────── */

.faq { display: grid; gap: 12px; }
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--surface); transition: border-color .18s;
}
.faq details[open] { border-color: var(--accent-line); }
.faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 20px 24px; cursor: pointer; font-size: 16.5px; font-weight: 600;
  list-style: none; line-height: 1.45;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent); }
.faq summary svg { flex: none; color: var(--accent); transition: transform .2s; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq details p { padding: 0 24px 22px; font-size: 15px; color: var(--ink-soft); line-height: 1.75; max-width: 68ch; }

/* ── Kontakt (dunkel) ────────────────────────────────────── */

.contact { background: var(--dark); color: #fff; padding: 104px 0; }
.contact-grid { display: grid; gap: 56px; grid-template-columns: 1fr 1.15fr; align-items: start; }
.contact h2 { font-size: clamp(32px, 4.4vw, 50px); color: #fff; }
.contact h2 .accent { color: var(--accent); display: block; }
.contact-lead { margin-top: 20px; font-size: 17px; color: var(--dark-text); line-height: 1.75; max-width: 44ch; }

.contact-row {
  display: flex; align-items: center; gap: 16px; text-decoration: none;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 13px 16px; transition: border-color .18s, background .18s;
}
a.contact-row:hover { border-color: var(--accent-line); background: var(--accent-soft); }
.contact-ico {
  width: 40px; height: 40px; flex: none; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.contact-row-label { font-size: 11px; letter-spacing: 1.3px; text-transform: uppercase; color: var(--ink-soft); }
.contact-row-val { font-size: 15.5px; font-weight: 700; color: var(--ink); }
.contact-rows { margin-top: 30px; display: grid; gap: 10px; }

/* ── Formular ────────────────────────────────────────────── */

/* Helle Karte auf hellem Grund - der Schatten hebt sie ab. */
.form-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-lg);
}
.form-card h3 { font-size: 21px; color: var(--ink); }
.form-sub { margin-top: 8px; font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.form-grid { display: grid; gap: 14px; grid-template-columns: 1fr 1fr; margin-top: 22px; }
.field { display: flex; flex-direction: column; gap: 7px; border: 0; }
.full { grid-column: 1 / -1; }
.field label, .field legend { font-size: 12.5px; font-weight: 600; color: var(--ink-2); padding: 0; }
.req { color: var(--accent); }
.opt { color: var(--ink-soft); font-weight: 500; }

.input, .textarea, .select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  background: var(--surface-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 12px 14px;
  transition: border-color .18s, background .18s, box-shadow .18s;
}
.input::placeholder, .textarea::placeholder { color: #9a9a9a; }
.input:focus, .textarea:focus, .select:focus {
  outline: none; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.textarea { resize: vertical; min-height: 104px; line-height: 1.6; }
.select {
  appearance: none; cursor: pointer; padding-right: 38px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5l5-5' stroke='%238a8a8a' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.select option { background: var(--surface); color: var(--ink); }

.field.invalid .input, .field.invalid .textarea { border-color: #d93a1a; background: rgba(217,58,26,.04); }
.field-error { font-size: 12.5px; color: #c8260d; display: none; }
.field.invalid .field-error { display: block; }

/* Sprach-Chips */
.chips-field legend { margin-bottom: 9px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { position: relative; cursor: pointer; }
.chip input { position: absolute; opacity: 0; width: 0; height: 0; }
.chip span {
  display: inline-block; padding: 9px 14px; font-size: 13.5px;
  color: var(--ink-2); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: var(--radius-pill);
  transition: border-color .15s, background .15s, color .15s;
}
.chip:hover span { border-color: var(--accent-line); color: var(--ink); }
.chip input:checked + span { background: var(--accent); border-color: var(--accent); color: #fff; font-weight: 600; }
.chip input:focus-visible + span { outline: 2px solid var(--accent); outline-offset: 2px; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.consent {
  grid-column: 1 / -1; display: flex; gap: 11px; align-items: flex-start;
  font-size: 13px; color: var(--ink-soft); line-height: 1.6;
}
.consent input { margin-top: 3px; width: 16px; height: 16px; accent-color: var(--accent); flex: none; }
.consent a { color: var(--ink-2); }

.form-foot {
  grid-column: 1 / -1; display: flex; flex-wrap: wrap; gap: 14px;
  align-items: center; justify-content: space-between; margin-top: 4px;
}
.form-note { font-size: 12.5px; color: var(--ink-soft); }

.alert { grid-column: 1 / -1; border-radius: 10px; padding: 13px 16px; font-size: 13.5px; line-height: 1.6; display: none; }
.alert.show { display: block; }
.alert-error { background: rgba(217,58,26,.07); border: 1px solid rgba(217,58,26,.30); color: #a81f08; }
.alert-info { background: var(--surface-2); border: 1px solid var(--line); color: var(--ink-2); }
.alert code { font-size: .92em; background: rgba(20,20,20,.07); padding: 1px 5px; border-radius: 4px; }

.form-success { display: none; text-align: center; padding: 26px 0 10px; }
.form-success.show { display: block; }
.success-ico {
  width: 62px; height: 62px; margin: 0 auto 20px; border-radius: 50%;
  background: var(--accent-soft); border: 1px solid var(--accent-line); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.form-success h4 { font-size: 22px; color: var(--ink); margin-bottom: 11px; font-weight: 800; }
.form-success p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; max-width: 42ch; margin: 0 auto; }
.ref-chip {
  display: inline-block; margin-top: 18px; padding: 7px 15px;
  border-radius: var(--radius-pill); background: var(--dark);
  border: 1px solid var(--dark-line); font-size: 13px; color: #d8d8d8;
}
.ref-chip strong { color: #fff; letter-spacing: .6px; }

.spinner {
  width: 15px; height: 15px; border-radius: 50%; flex: none;
  border: 2px solid rgba(255,255,255,.35); border-top-color: #fff;
  animation: spin .7s linear infinite; display: none;
}
.is-sending .spinner { display: block; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ── Footer ──────────────────────────────────────────────── */

.footer { background: var(--dark); color: var(--dark-text); border-top: 1px solid var(--dark-line); }
.footer-top { display: grid; gap: 44px; padding: 64px 0 48px; grid-template-columns: 2fr 1fr 1fr 1fr; }
.footer-logo { font-size: 22px; font-weight: 800; letter-spacing: -.04em; color: #fff; }
.footer-logo span { color: var(--accent); }
.footer-logo em { font-style: normal; font-weight: 600; font-size: 14px; color: var(--dark-text); letter-spacing: 0; }
.footer-desc { margin-top: 14px; font-size: 14px; line-height: 1.7; max-width: 36ch; }
.footer-col-title { font-size: 11.5px; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { font-size: 14px; text-decoration: none; transition: color .16s; }
.footer-links a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid var(--dark-line); padding: 22px 0; font-size: 13px; }

/* ── Scroll-Animation ────────────────────────────────────── */

.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Responsiv ───────────────────────────────────────────── */


/* ══════════════════════════════════════════════════════════════════
   REFERENZEN - endlos laufendes Markenband
   Die Liste steht zweimal im Markup; die Spur wandert um genau die
   Haelfte ihrer Breite und springt dann zurueck. Dadurch entsteht ein
   nahtloser Lauf ohne Sprungpunkt.
   ══════════════════════════════════════════════════════════════════ */
.refs {
  padding: 42px 0 46px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}
.refs-titel {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 26px;
}
.refs-band {
  /* Die Raender werden weich ausgeblendet, damit das Band nicht
     abgeschnitten wirkt. */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}
.refs-spur {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
  animation: refs-lauf 34s linear infinite;
}
.refs-band:hover .refs-spur,
.refs-band:focus-within .refs-spur { animation-play-state: paused; }

.refs-spur li {
  font-size: clamp(19px, 2.4vw, 27px);
  font-weight: 700;
  letter-spacing: -.02em;
  color: var(--ink);
  opacity: .42;
  white-space: nowrap;
  transition: opacity .25s ease;
}
.refs-spur li:hover { opacity: .85; }

@keyframes refs-lauf {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════
   EINSATZFOTOS - seitlich wischbare Bahn
   Bewusst mit nativem Scrollen statt Skript: auf dem Handy fuehlt sich
   das richtig an und funktioniert auch ohne JavaScript.
   ══════════════════════════════════════════════════════════════════ */
.shots { overflow: hidden; }
.shots-bahn {
  display: flex;
  gap: 20px;
  padding: 4px max(24px, calc((100vw - var(--wrap)) / 2)) 8px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.shots-bahn::-webkit-scrollbar { height: 6px; }
.shots-bahn::-webkit-scrollbar-thumb {
  background: var(--line); border-radius: var(--radius-pill);
}
.shot {
  /* Keine feste Breite: die Bilder sind teils hochkant, teils quer.
     Einheitlich ist die Hoehe, die Breite ergibt sich aus dem Seiten-
     verhaeltnis. So wird kein Motiv beschnitten. */
  flex: 0 0 auto;
  margin: 0;
  scroll-snap-align: center;
}
.shot img {
  height: 420px;
  width: auto;
  max-width: 86vw;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--surface-2);
  display: block;
}
.shot figcaption {
  margin-top: 12px;
  font-size: 14.5px;
  color: var(--ink-soft);
  line-height: 1.45;
}

/* ══════════════════════════════════════════════════════════════════
   ALLE STANDORTE - aufklappbare Liste nach Bundesland
   ══════════════════════════════════════════════════════════════════ */
.orte-alle { margin-top: 30px; }
.orte-alle > summary {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  cursor: pointer;
  list-style: none;
  padding: 13px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  transition: border-color .2s ease, background .2s ease;
}
.orte-alle > summary::-webkit-details-marker { display: none; }
.orte-alle > summary:hover { border-color: var(--accent-line); background: var(--accent-soft); }
.orte-alle > summary svg { transition: transform .25s ease; }
.orte-alle[open] > summary svg { transform: rotate(180deg); }
.orte-alle > summary .orte-zu { display: none; }
.orte-alle[open] > summary .orte-auf { display: none; }
.orte-alle[open] > summary .orte-zu { display: inline; }

.orte-gruppen {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(258px, 1fr));
  gap: 26px 30px;
}
.orte-gruppe h3 {
  margin: 0 0 11px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
}
.orte-gruppe ul { margin: 0; padding: 0; list-style: none; }
.orte-gruppe li {
  padding: 5px 0;
  font-size: 14.5px;
  line-height: 1.4;
  border-bottom: 1px solid var(--line);
}
.orte-gruppe li:last-child { border-bottom: 0; }
.orte-gruppe li strong { font-weight: 600; color: var(--ink); }
.orte-gruppe li span { color: var(--ink-soft); }
.orte-dach h3 { color: var(--ink-soft); }

/* ══════════════════════════════════════════════════════════════════
   FREIFELD FUER WEITERE SPRACHEN
   ══════════════════════════════════════════════════════════════════ */
.sprache-frei { margin-top: 18px; }
.sprache-frei label {
  /* Gleiche Optik wie die uebrigen Feldbeschriftungen. */
  display: block;
  margin-bottom: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
}

/* Der Knopf in der Kopfzeile darf nie umbrechen - zweizeilig sieht er
   kaputt aus. Wird es eng, verschwindet vorher die Telefonnummer. */
.nav-right .btn { white-space: nowrap; }

@media (max-width: 1280px) {
  .nav-phone { display: none; }
}

@media (max-width: 1080px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .nav.menu-open .nav-links {
    display: grid; position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--surface); border-bottom: 1px solid var(--line);
    padding: 18px 28px; gap: 16px; margin: 0; box-shadow: var(--shadow);
  }
}

@media (max-width: 1000px) {
  .abroad-grid { grid-template-columns: 1fr; gap: 42px; }
  .footer-top { grid-template-columns: 1fr 1fr; }

  /* Unter 1000 px waeren zwei Spalten beide zu schmal: Text und Formular
     stehen dann untereinander, und der Sprungknopf wird sichtbar. */
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-text-spalte { padding-top: 0; }
  .hero h1 { font-size: clamp(38px, 6vw, 58px); max-width: 17ch; }
  .hero-text { max-width: 58ch; font-size: 18px; }
  .hero-actions.nur-handy { display: flex; }
  .contact-rows { max-width: 420px; }
}

@media (max-width: 760px) {
  :root { --nav-h: 66px; }
  .wrap { padding: 0 20px; }
  section, .abroad { padding: 74px 0; }
  .nav-phone { display: none; }
  .nav-right { gap: 10px; }
  /* Die CTA wandert in das Klappmenue, sonst draengt sie den Menue-Knopf raus. */
  .nav-right .btn { display: none; }
  .nav-cta-mobil {
    display: inline-flex; align-items: center; justify-content: center;
    background: var(--accent); color: #fff !important; font-weight: 600;
    padding: 13px 22px; border-radius: var(--radius-pill); margin-top: 4px;
  }
  .lang-switch { padding: 8px 12px; font-size: 13.5px; }
  .lang-switch svg { display: none; }
  .logo { font-size: 19px; }
  .logo em { display: none; }
  .nav.menu-open .nav-links { padding: 18px 20px; }
  .hero { padding-top: calc(var(--nav-h) + 44px); padding-bottom: 60px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .hero-grid { gap: 34px; }
  .contact-row { padding: 12px 14px; }
  .contact-ico { width: 36px; height: 36px; }
  .hero-points { gap: 12px; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .faq summary { padding: 17px 18px; font-size: 15.5px; }
  .faq details p { padding: 0 18px 20px; }

  /* ── Neue Bereiche auf dem Handy ── */
  .refs { padding: 32px 0 34px; }
  .refs-titel { font-size: 12px; margin-bottom: 20px; }
  .refs-spur { gap: 34px; animation-duration: 22s; }

  .shots-bahn { gap: 14px; padding-left: 20px; padding-right: 20px; }
  .shot img { height: 320px; max-width: 84vw; }
  .shot figcaption { font-size: 13.5px; max-width: 84vw; }

  .orte-alle > summary { width: 100%; justify-content: center; padding: 15px 20px; }
  .orte-gruppen { grid-template-columns: 1fr; gap: 22px; }

  /* Tippziele auf dem Handy grosszuegiger */
  .chip span { padding: 11px 15px; }
  .form-card input, .form-card select, .form-card textarea { font-size: 16px; }
}

@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; }
  .refs-spur { animation: none; }
}

@media print {
  .nav, .hero-actions, .btn, .form-card { display: none !important; }
  body { background: #fff; color: #000; }
  .abroad, .footer { background: #fff !important; color: #000 !important; }
}
