:root {
  --blush: #E0BFB1;
  --blush-soft: #EDD5C9;
  --cream: #F7F1E8;
  --cream-deep: #EFE6D8;
  --sand: #E5D5C0;
  --bronze: #7A5A30;
  --bronze-dark: #67491F;
  --espresso: #2D2520;
  --espresso-soft: #5A4F45;
  --white: #FBFAF6;
  --shadow-soft: 0 8px 32px rgba(45, 37, 32, 0.08);
  --shadow-card: 0 4px 20px rgba(45, 37, 32, 0.06);
  --radius: 14px;
  --radius-lg: 24px;
  --font-display: 'Hanken Grotesk', 'Inter', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ig-gradient: linear-gradient(120deg, #FCAF45 0%, #F77737 30%, #E1306C 65%, #C13584 100%);
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--espresso);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: transparent;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--espresso);
}
a { color: var(--bronze); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--bronze-dark); }
.container { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* HEADER (identisch zur Startseite) */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247, 241, 232, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(45, 37, 32, 0.06);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.logo {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 500;
  color: var(--espresso); letter-spacing: -0.01em;
}
.logo span { color: var(--bronze); font-style: normal; }
nav ul { list-style: none; display: flex; gap: 32px; }
nav a { color: var(--espresso); font-size: 0.92rem; font-weight: 400; }
nav a:hover { color: var(--bronze); }
.header-cta { display: flex; align-items: center; gap: 14px; }
.phone-link {
  display: flex; align-items: center; gap: 6px;
  color: var(--espresso); font-size: 0.92rem; font-weight: 500;
}
.phone-link:hover { color: var(--bronze); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--espresso); margin: 5px 0; border-radius: 2px;
  transform-origin: center;
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0.3); }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ NAV-DROPDOWN (Tablet/Mobile ≤880px) ============ */
@media (max-width: 880px) {
  nav {
    display: block; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(247, 241, 232, 0.97);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    padding: 0 24px; border-bottom: 1px solid rgba(45,37,32,0);
    max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-6px);
    transition: max-height 0.36s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.26s ease, transform 0.36s cubic-bezier(0.4, 0, 0.2, 1),
                padding 0.36s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s ease;
  }
  nav.open {
    max-height: 360px; opacity: 1; transform: translateY(0); padding: 24px;
    border-bottom-color: rgba(45,37,32,0.06);
    box-shadow: 0 12px 24px -16px rgba(45, 37, 32, 0.16);
  }
  nav ul { flex-direction: column; gap: 18px; }
  .nav-toggle { display: block; }
  .header-inner { padding: 22px 0; }
  .header-cta { gap: 14px; }
  .header-cta .btn { padding: 12px 16px; font-size: 0.85rem; min-width: 0; }
  .phone-link span.lbl { display: none; }
}

/* ============ HEADER IG-PILLE (Instagram) ============ */
.phone-ig-stack { position: relative; display: inline-flex; align-items: center; }
/* Doppel-Klasse .btn.header-ig-action (Spezifität 0,2,0) schlägt das nachfolgende
   .btn-primary { background: var(--bronze) } — sonst überschreibt Bronze den IG-Gradient. */
.btn.header-ig-action,
.btn.header-ig-action:hover,
.btn.header-ig-action:focus,
.btn.header-ig-action:focus-visible,
.btn.header-ig-action:active,
.btn.header-ig-action:visited {
  display: inline-flex; align-items: center; gap: 4px; white-space: nowrap;
  background: var(--ig-gradient); color: #fff; border: none; transform: none;
}
.btn.header-ig-action:hover { box-shadow: 0 4px 14px rgba(225, 48, 108, 0.35); }
.header-ig-action svg { flex-shrink: 0; stroke: #fff; width: 12px; height: 12px; }
.header-ig-action .ig-wordmark {
  font-family: 'Mona Sans', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.7rem; font-weight: 500; letter-spacing: -0.005em; line-height: 1;
}
.btn.header-ig-action { padding: 3px 9px; font-size: 0.7rem; min-width: 0; line-height: 1; }
/* Mobile: nur Logo + Instagram + Toggle (Phone & Rückruf versteckt).
   Doppel-Klassen-Selektor (.btn.…) schlägt das nachfolgende `.btn { display:inline-flex }`,
   sonst würde der Rückruf-Button auf dem Handy fälschlich wieder auftauchen. */
@media (max-width: 680px) {
  .phone-ig-stack .phone-link { display: none; }
  .btn.header-rueckruf { display: none; }
}
/* Tablet/Desktop: Phone bleibt, IG im Header ausgeblendet (gleiche Spezifität nötig) */
@media (min-width: 681px) {
  .btn.header-ig-action { display: none; }
}
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 22px; border-radius: 999px;
  font-family: var(--font-body); font-size: 0.92rem; font-weight: 500;
  border: none; cursor: pointer; transition: all 0.25s;
  line-height: 1; text-decoration: none;
}
.btn-primary { background: var(--bronze); color: var(--cream); }
.btn-primary:hover { background: var(--bronze-dark); color: var(--cream); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(165, 124, 80, 0.3); }
.btn-ghost { background: transparent; color: var(--espresso); border: 1.5px solid var(--espresso); }
.btn-ghost:hover { background: var(--espresso); color: var(--cream); }

/* HERO */
.hero {
  padding: clamp(50px, 8vw, 96px) 0 clamp(40px, 6vw, 70px);
  background:
    radial-gradient(ellipse at top right, rgba(224, 191, 177, 0.45), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, var(--cream-deep) 100%);
}
.eyebrow {
  font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--bronze); font-weight: 500;
  margin-bottom: 14px; display: inline-block;
}
h1 {
  font-size: clamp(2rem, 5.5vw, 3.2rem);
  margin-bottom: 18px;
}
.lead {
  font-size: 1.15rem; color: var(--espresso-soft);
  max-width: 640px; margin-bottom: 30px;
}
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* SECTIONS */
section { padding: clamp(40px, 6vw, 70px) 0; }
section.alt { background: var(--cream-deep); }
h2 {
  font-size: clamp(1.6rem, 3.2vw, 2.1rem);
  margin-bottom: 24px;
}
h3 {
  font-size: 1.15rem; font-weight: 600;
  margin: 22px 0 10px;
}
p { margin-bottom: 14px; color: var(--espresso-soft); max-width: 720px; }
ul, ol { margin: 0 0 14px 1.5em; color: var(--espresso-soft); }
li { margin-bottom: 6px; }
strong { color: var(--espresso); font-weight: 600; }

/* PRICE TABLE */
.price-table {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 36px);
  border: 1px solid rgba(165, 124, 80, 0.12);
  margin-top: 8px;
}
.price-row {
  display: flex; justify-content: space-between; align-items: baseline; gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(165, 124, 80, 0.1);
  font-size: 0.98rem;
}
.price-row:last-child { border-bottom: none; }
.price-row .label { color: var(--espresso); }
.price-row .value {
  font-family: var(--font-display); font-weight: 600;
  color: var(--bronze); white-space: nowrap;
}

/* INFO CARDS */
.info-card {
  background: var(--white);
  border: 1px solid rgba(165, 124, 80, 0.12);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 14px;
}
.info-card:last-child { margin-bottom: 0; }
.info-card strong { display: block; color: var(--bronze); font-family: var(--font-display); font-size: 1.05rem; margin-bottom: 6px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
  border: 1px solid rgba(165, 124, 80, 0.1);
}
.faq-item h3 {
  font-size: 1.02rem; margin: 0 0 8px;
  color: var(--bronze);
}
.faq-item p { margin: 0; font-size: 0.96rem; }

/* CTA SECTION */
.cta-section {
  background:
    radial-gradient(ellipse at center, rgba(224, 191, 177, 0.4), transparent 60%),
    var(--cream-deep);
  text-align: center;
}
.cta-section h2 { margin-bottom: 12px; }
.cta-section p { color: var(--espresso-soft); margin: 0 auto 20px; max-width: 560px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 18px; }

/* FOOTER */
footer {
  background: var(--espresso);
  color: rgba(247, 241, 232, 0.65);
  padding: 40px 0 28px; text-align: center;
  font-size: 0.85rem;
}
footer a { color: rgba(247, 241, 232, 0.75); margin: 0 8px; }
footer a:hover { color: var(--blush-soft); }

/* RESPONSIVE */
@media (max-width: 680px) {
  .container { padding: 0 20px; }
  .phone-link span.lbl { display: none; }
  .hero { padding: 36px 0 30px; }
  h1 { font-size: clamp(1.7rem, 8vw, 2.2rem); line-height: 1.15; }
  .lead { font-size: 1rem; margin-bottom: 24px; }
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn, .cta-actions .btn { justify-content: center; padding: 14px 22px; }
  .cta-actions { flex-direction: column; align-items: stretch; }
  section { padding: 36px 0; }
  .price-table, .info-card, .faq-item { padding: 18px 20px; }
  h2 { font-size: clamp(1.4rem, 6vw, 1.7rem); }
}

/* ============ PREIS-GRID (kurz/mittel/lang Spalten) ============ */
.price-row .header-cols,
.price-row .price-cols {
  display: flex;
  gap: 18px;
  align-items: baseline;
}
.price-row .header-cols span,
.price-row .price-cols span {
  min-width: 50px;
  text-align: right;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bronze);
  white-space: nowrap;
}
.price-row.header {
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(165, 124, 80, 0.22);
}
.price-row.header .label {
  font-family: var(--font-display);
  color: var(--espresso);
  font-weight: 600;
  font-size: 0.98rem;
}
.price-row.header .label small {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.82em;
  color: var(--espresso-soft);
  margin-left: 4px;
}
.price-row.header .header-cols span {
  font-family: var(--font-display);
  color: var(--espresso-soft);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.74rem;
}
.price-row .value-all {
  min-width: 174px;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--bronze);
  white-space: nowrap;
}

/* ============ LÄNGEN-ERKLÄRUNG ============ */
.length-explainer {
  background: rgba(247, 241, 232, 0.55);
  border-radius: var(--radius);
  padding: 18px 22px;
  margin-top: 16px;
  border: 1px dashed rgba(165, 124, 80, 0.25);
}
.length-explainer > strong {
  display: block;
  margin-bottom: 8px;
  color: var(--bronze);
  font-family: var(--font-display);
  font-size: 0.98rem;
}
.length-explainer ul {
  margin: 0;
  list-style: none;
  padding: 0;
}
.length-explainer li {
  font-size: 0.92rem;
  color: var(--espresso-soft);
  margin-bottom: 6px;
  padding-left: 0;
}
.length-explainer li:last-child { margin-bottom: 0; }
.length-explainer li strong {
  color: var(--espresso);
  font-weight: 600;
}

/* ============ ZURÜCK-BUTTON ============ */
.btn-link-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--bronze);
  font-size: 0.94rem;
  font-weight: 500;
  padding: 10px 18px;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(165, 124, 80, 0.3);
  transition: all 0.2s;
}
.btn-link-back:hover {
  color: var(--cream);
  background: var(--bronze);
  border-color: var(--bronze);
}

@media (max-width: 680px) {
  .price-row .header-cols span,
  .price-row .price-cols span { min-width: 38px; }
  .price-row .header-cols, .price-row .price-cols { gap: 12px; }
  .price-row .value-all { min-width: 124px; }
}

/* ============ HORIZONTAL OVERFLOW + LOGO NOWRAP ============ */
html, body { overflow-x: clip; max-width: 100%; }
.logo { white-space: nowrap; }

/* ============ FAQ AKKORDEON (snappy auf Handy, ohne Lag) ============ */
.faq-item h3 {
  cursor: pointer;
  position: relative;
  padding-right: 36px;
  margin: 0;
  user-select: none;
}
.faq-item h3::after {
  content: '+';
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6em;
  font-weight: 300;
  color: var(--bronze);
  transition: transform 0.2s ease;
  line-height: 1;
}
.faq-item.open h3::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item > p {
  max-height: 0;
  overflow: hidden;
  margin: 0 !important;
  opacity: 0;
  transition:
    max-height 0.26s ease,
    margin-top 0.22s ease,
    opacity 0.18s ease;
  will-change: max-height, opacity;
}
.faq-item.open > p {
  margin-top: 12px !important;
  opacity: 1;
}

/* ============ INFO-CARD MIT BRONZE-AKZENT (Team-Sektionen) ============ */
.info-card {
  border-left: 3px solid var(--bronze);
  padding-left: 24px;
}
@media (max-width: 680px) {
  .info-card {
    padding-left: 20px;
    border-left-width: 2px;
  }
}

/* ============ SECTION-SUBTITLE (Unser Team etc.) ============ */
.section-sub {
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bronze);
  font-weight: 500;
  margin: -14px 0 26px;
}

/* ============ HEADER MOBILE: Logo · Instagram-Pille zentriert · Toggle ============ */
@media (max-width: 680px) {
  /* WICHTIG: nur die SEITEN polstern (padding-left/right), niemals die Kurzform
     `padding: 0 28px` benutzen! Das Element ist `.container.header-inner`, und
     `header .container` (Spezifität 0,1,1) schlägt `.header-inner` (0,1,0). Die
     Kurzform würde dadurch das vertikale Padding auf 0 setzen → Header wäre auf dem
     Handy ~28px flacher als auf der Startseite (genau dieser Bug war lange das Problem). */
  header .container { padding-left: 28px; padding-right: 28px; }
  .header-cta { display: contents; }
  .logo { font-size: 1.2rem; flex-shrink: 0; }
  .phone-ig-stack { margin-left: auto; margin-right: auto; flex-shrink: 0; }
  /* Negativer rechter Margin gleicht das interne 8px-Padding des Toggles aus,
     damit die drei Striche denselben Randabstand haben wie das „Z" links. */
  .nav-toggle { margin-left: 0; margin-right: -8px; flex-shrink: 0; }
  .info-card { padding: 18px 20px; }
  .info-card strong { font-size: 0.98rem; }
}
/* Sehr kleine Handys (≤400px, also fast alle iPhones: 12/13/14/15 = 390–393px,
   SE = 375px): kompakterer Header — exakt wie auf der Startseite.
   Wichtig: .header-cta .btn vergrößert hier die Instagram-Pille auf padding
   10px/14px (statt 3px/9px). Genau so macht es die Startseite — ohne diese
   Regel wäre die IG-Pille auf dem Handy dünner als auf der Startseite. */
@media (max-width: 400px) {
  .header-inner { padding: 14px 0; }
  .logo { font-size: 1.2rem; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 10px 14px; font-size: 0.8rem; }
  .phone-link svg { width: 18px; height: 18px; }
}

/* ============ TRANSIT BADGES (S-Bahn, U-Bahn, Bus, einheitlich) ============ */
.transit-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 2px 8px;
  border-radius: 4px;
  margin: 0 3px 0 0;
  letter-spacing: 0;
  line-height: 1.25;
  vertical-align: 1px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  white-space: nowrap;
}
.transit-badge.s-bahn { background: #0E7B36; }   /* S-Bahn DB-Grün */
.transit-badge.u-bahn { background: #C0550B; }   /* U9, abgedunkeltes Orange für WCAG-Kontrast mit weißer Schrift */
.transit-badge.bus    { background: #7C237F; }   /* BVG-Bus Violett */
.transit-badge.small  { font-size: 0.68rem; padding: 1px 6px; }

/* ============ ANFAHRT-LISTE auf Subpages ============ */
.anfahrt-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 16px;
}
.anfahrt-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  line-height: 1.55;
}
.anfahrt-item .anfahrt-badges {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
}
.anfahrt-item .anfahrt-label {
  font-family: var(--font-display);
  color: var(--bronze);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.anfahrt-item .anfahrt-desc {
  color: var(--espresso-soft);
  font-size: 0.95rem;
}
@media (max-width: 680px) {
  .anfahrt-list { gap: 16px; }
  .anfahrt-item .anfahrt-desc { font-size: 0.92rem; }
}
