/* ================================================================
   TTL-HANNOVER · style.css
   Design: Modern Minimalist · Swiss Grid · Clean Typography
   Maged Ibraheem — Hannover-Linden — Est. 2019
================================================================ */

/* ===== FONTS (self-hosted — DSGVO-compliant) ===== */
@import url('fonts.css');

/* ===== TOKENS ===== */
:root, [data-theme="light"] {
  --bg:           #FAFAF8;
  --bg-alt:       #F5F2F8;   /* carwow factory-white */
  --bg-card:      #F5F3EE;
  --ink:          #171717;   /* carwow near-black */
  --ink-soft:     #444444;   /* carwow grey-800 */
  --ink-faint:    #6e6e6e;   /* carwow grey-700 */
  --rule:         rgba(0,0,0,0.13);  /* carwow border-colour */
  --rule-soft:    rgba(0,0,0,0.06);

  --accent:       #C1340D;
  --accent-soft:  rgba(193,52,13,0.08);
  --accent-dark:  #9A2A0A;
  --accent-cyan:  #1CDCE8;   /* carwow brand cyan — automotive neon */
  --accent-cyan-l:#8fffff;   /* carwow brand cyan light — hover states */

  --shadow:       rgba(23,23,23,0.30); /* carwow shadow-colour */

  --wa:           #25D366;
  --wa-deep:      #128C7E;

  --heading:   'DM Serif Display', Georgia, 'Times New Roman', serif;
  --body:      'Inter', system-ui, sans-serif;
  --mono:      ui-monospace, 'SF Mono', 'Cascadia Code', Menlo, Consolas, monospace;

  /* carwow type scale */
  --text-lg:   18px;
  --text-lg-lh:28px;
  --text-md:   16px;
  --text-md-lh:24px;
  --text-sm:   12px;
  --text-sm-lh:18px;

  /* carwow grid */
  --grid-padding: 40px;   /* 16px mobile via @media */
  --grid-max-width: calc(1300px + 2 * var(--grid-padding));

  --nav-h:    68px;
  --ease:     200ms ease;
  --radius:   5px;   /* carwow button/card radius */
}

/* Dark mode */
[data-theme="dark"] {
  --bg:           #0D0D0D;   /* matches carwow dark bg */
  --bg-alt:       #141414;
  --bg-card:      #1A1A1A;
  --ink:          #F0F0F0;   /* matches carwow light text */
  --ink-soft:     #AAAAAA;
  --ink-faint:    #555555;
  --rule:         rgba(255,255,255,0.09);
  --rule-soft:    rgba(255,255,255,0.04);
  --shadow:       rgba(0,0,0,0.50);

  --accent:       #E04B24;
  --accent-soft:  rgba(224,75,36,0.10);
  --accent-dark:  #C03A18;
  --accent-cyan:  #33E9F2;   /* carwow CTA cyan heller im dark mode */
  --accent-cyan-l:#8fffff;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img      { display: block; max-width: 100%; }
a        { color: inherit; text-decoration: none; }
button   { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
ul, ol   { list-style: none; }
::selection { background: var(--accent); color: #fff; }

/* ===== LAYOUT ===== */
.container {
  width: min(100%, var(--grid-max-width));
  margin: 0 auto;
  padding: 0 var(--grid-padding);
  position: relative;
  z-index: 1;
}

/* ===== SKIP LINK ===== */
.skip-link {
  position: absolute; top: -100%; left: 16px;
  padding: 10px 20px;
  background: var(--ink); color: var(--bg);
  font-family: var(--mono); font-size: 11px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }

/* ===== HEADER ===== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--bg);
  border-bottom: 1px solid var(--rule);
  z-index: 300;
  transition: box-shadow var(--ease);
}
#site-header.scrolled {
  background: rgba(250,250,248,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--rule);
}
[data-theme="dark"] #site-header.scrolled {
  background: rgba(13,13,13,0.96);
}

.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  gap: 32px;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--heading);
}
.brand-mark {
  font-size: 18px;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.brand-divider {
  color: var(--ink-faint);
  font-size: 16px;
  font-weight: 300;
}
.brand-name {
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: 0.02em;
}

/* Nav primary */
.nav-primary {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav-primary a {
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  white-space: nowrap;
  position: relative;
  padding: 4px 0;
  transition: color var(--ease);
}
.nav-primary a:hover { color: var(--ink); }
.nav-primary a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 1.5px;
  background: var(--ink-faint);
  transition: width 240ms ease;
}
.nav-primary a:hover::after { width: 100%; }

/* Nav right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-self: end;
}

/* Theme icon visibility */
[data-theme="light"] .icon-moon { display: none; }
[data-theme="dark"]  .icon-sun  { display: none; }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
  border-radius: var(--radius);
  transition: border-color var(--ease), color var(--ease);
}
.theme-toggle:hover { border-color: var(--ink); color: var(--ink); }

.lang-picker { position: relative; }
.lang-btn {
  display: flex; align-items: center; gap: 4px;
  padding: 6px 10px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  transition: border-color var(--ease), color var(--ease);
}
.lang-btn:hover { border-color: var(--ink); color: var(--ink); }

.lang-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 130px;
  background: var(--bg);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  display: none;
  z-index: 400;
}
.lang-dropdown.open { display: block; }
.lang-option {
  display: block; width: 100%;
  padding: 9px 12px;
  text-align: left;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 400;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.lang-option:hover  { background: var(--bg-alt); }
.lang-option.active { color: var(--ink); font-weight: 600; }

/* Nav phone CTA */
.nav-call {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
  padding: 6px 14px;
  border-left: 1px solid var(--rule);
  transition: color var(--ease);
}
.nav-call-label {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 2px;
}
.nav-call strong {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.nav-call:hover strong { color: var(--ink-soft); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  justify-self: end;
}
.hamburger span {
  display: block; width: 16px; height: 1.5px;
  background: var(--ink);
  margin: 0 auto;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(3.25px) rotate(45deg); }
.hamburger.active span:nth-child(2) { transform: translateY(-3.25px) rotate(-45deg); }

/* ===== MOBILE NAV ===== */
.nav-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 198;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s ease;
}
.nav-overlay.active { opacity: 1; pointer-events: all; }

#mobile-nav {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: calc(100vh - var(--nav-h));
  background: var(--bg);
  border-top: 1px solid var(--rule);
  z-index: 199;
  overflow-y: auto;
  padding: 32px 24px;
  display: flex; flex-direction: column; gap: 0;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}
[dir="rtl"] #mobile-nav { transform: translateX(-100%); }
#mobile-nav.open       { transform: translateX(0); }

.mobile-link {
  display: block;
  padding: 18px 0;
  font-family: var(--body);
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--rule);
  color: var(--ink);
  letter-spacing: -0.01em;
}
.mobile-link:hover { color: var(--ink-soft); }

.mobile-divider { height: 1px; background: var(--rule); margin: 20px 0; }

.mobile-call {
  display: block;
  padding: 16px 20px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--body);
  border-radius: var(--radius);
  margin-bottom: 8px;
}
.mobile-call span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: var(--bg);
  opacity: 0.5;
  margin-bottom: 4px;
}
.mobile-call strong {
  display: block;
  font-size: 19px;
  font-weight: 700;
}

.mobile-wa {
  display: block;
  padding: 14px 20px;
  background: var(--wa);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  border-radius: var(--radius);
}

.mobile-lang {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}
.mobile-lang-btn {
  padding: 12px;
  border: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  border-radius: var(--radius);
}
.mobile-lang-btn.active { border-color: var(--ink); color: var(--ink); }

.mobile-theme-btn {
  display: flex; align-items: center; gap: 12px;
  margin-top: 24px;
  padding: 14px 20px;
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  transition: border-color var(--ease);
}
.mobile-theme-btn:hover { border-color: var(--ink); }

/* ===== HERO ===== */
.hero {
  padding: calc(var(--nav-h) + 60px) 0 0;
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
  gap: 60px;
  align-items: start;
  flex: 1;
  padding-bottom: 80px;
}

.hero-letter { padding-top: 16px; }

.folio {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 40px;
  display: inline-block;
}

.from-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.from-line-label {
  font-family: var(--body);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-faint);
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.from-line-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 60px;
}

.hero-title {
  font-family: var(--heading);
  font-size: clamp(3rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 0.95;
  margin: 0 0 32px;
  color: var(--ink);
}
.hero-title em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  margin-top: 10px;
  letter-spacing: -0.02em;
  line-height: 1.0;
}

.hero-body {
  font-family: var(--body);
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 28px;
  font-weight: 400;
}

.hero-langs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink-faint);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}
.hero-langs span {
  font-weight: 500;
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid var(--rule);
  letter-spacing: 0.01em;
}
.hero-langs span:last-child { border-right: none; }
.hero-langs span:nth-child(2) {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  font-style: normal;
}

/* Hero stats — trust markers in hero */
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 32px;
}
.hs-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}
.hs-num {
  font-family: var(--body);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
}
.hs-lbl {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hs-sep {
  width: 1px;
  height: 40px;
  background: var(--rule);
  margin: 0 24px;
  flex-shrink: 0;
}

/* Hero actions */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-top: -40px;
  padding-bottom: 60px;
}
.ha-row {
  display: grid;
  grid-template-columns: 36px 1fr auto 24px;
  gap: 20px;
  align-items: center;
  padding: 22px 16px 22px 0;
  border-bottom: 1px solid var(--rule);
  cursor: pointer;
  position: relative;
  transition: background 200ms ease, padding-left 200ms ease;
}
.ha-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: center;
  transition: transform 200ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.ha-row:hover {
  padding-left: 14px;
  background: var(--bg-alt);
}
.ha-row:hover::before {
  transform: scaleY(1);
}
.ha-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--ink-faint);
  font-weight: 500;
}
.ha-label {
  font-family: var(--body);
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ha-detail {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.ha-arrow {
  font-family: var(--body);
  font-size: 18px;
  color: var(--ink-faint);
  transition: transform 200ms ease, color 200ms ease;
}
.ha-row:hover .ha-arrow { transform: translateX(10px); color: var(--ink); }
.ha-row:hover .ha-label { color: var(--ink); }
.ha-row:hover .ha-num   { color: var(--ink-soft); }

/* Mobile-only logo above portrait */
.portrait-mobile-logo {
  display: none;
}
@media (max-width: 620px) {
  .portrait-mobile-logo {
    display: flex;
    justify-content: flex-start;
    padding-bottom: 24px;
  }
  .portrait-mobile-logo img {
    width: 180px;
    height: 45px;
    object-fit: contain;
    object-position: left center;
  }
}

/* Hero portrait */
.hero-portrait {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  align-self: start;
  padding-top: 0;
}

.portrait-frame {
  position: relative;
  background: var(--bg-alt);
  border: none;
  padding: 0;
  overflow: hidden;
  box-shadow: 0 4px 32px var(--shadow), 0 1px 4px rgba(23,23,23,0.08);
  transition: transform 350ms cubic-bezier(0.25, 0.46, 0.45, 0.94),
              box-shadow 350ms ease;
}
.portrait-frame:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px var(--shadow), 0 8px 20px rgba(23,23,23,0.14);
}
.portrait-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,10,10,0.55) 100%);
  pointer-events: none;
  z-index: 2;
}
.portrait-frame:hover::after {
  background: linear-gradient(to bottom, transparent 40%, rgba(28,220,232,0.38) 100%);
  transition: background 350ms ease;
}
.portrait-photo {
  aspect-ratio: 3/4;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}
.portrait-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.portrait-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 20px,
    rgba(0,0,0,0.015) 20px,
    rgba(0,0,0,0.015) 21px
  );
}
.portrait-mono {
  font-family: var(--heading);
  font-size: 80px;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.06em;
  line-height: 1;
  z-index: 1;
  opacity: 0.06;
}
.portrait-caption {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  z-index: 1;
}
.portrait-name {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 22px 18px;
  z-index: 3;
  background: none;
  border-top: none;
}
.pn-line1 {
  display: block;
  font-family: var(--heading);
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: -0.01em;
}
.pn-line2 {
  display: block;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-top: 3px;
}

/* Stamp */
.stamp {
  position: absolute;
  top: -24px; right: -28px;
  width: 120px; height: 120px;
  color: #ffffff;
  opacity: 1;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.4));
  transform: rotate(12deg);
  animation: stampWobble 6s ease-in-out infinite;
}
.stamp-text {
  font-family: var(--mono);
  font-size: 7px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  fill: currentColor;
}
.stamp-big {
  font-family: var(--heading);
  font-size: 36px;
  font-weight: 800;
  fill: currentColor;
}
.stamp-mid {
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: 0.22em;
  fill: currentColor;
}
@keyframes stampWobble {
  0%, 100% { transform: rotate(12deg); }
  50%      { transform: rotate(10deg); }
}
@media (prefers-reduced-motion: reduce) { .stamp { animation: none; } }

/* Hero foot */
.hero-foot {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.hf-mid { color: var(--ink-faint); font-size: 12px; }
.hf-right { margin-left: auto; }

/* ===== SECTION HEADERS (shared) ===== */
.ch-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 16px;
  font-weight: 600;
}

.ch-head h2,
.pr-head h2,
.iv-head h2,
.bk-text h2,
.kt-side h2,
.ls-pull,
.rm-line {
  font-family: var(--heading);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.05;
  color: var(--ink);
}
.ch-head h2 em,
.pr-head h2 em,
.iv-head h2 em,
.bk-text h2 em,
.kt-side h2 em,
.ls-pull em,
.rm-line em {
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  display: block;
}

/* ===== CHAPTERS (Dienste) ===== */
.chapters {
  padding: 160px 0;
  background: var(--bg);
}

.ch-head {
  margin-bottom: 72px;
  max-width: 800px;
}

.chapter {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 48px;
  padding: 56px 0;
  border-top: 1px solid var(--rule);
}
.chapter:last-child { border-bottom: 1px solid var(--rule); }

.ch-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}
.ch-roman {
  font-family: var(--heading);
  font-size: 80px;
  font-weight: 800;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.06em;
  opacity: 0.07;
  user-select: none;
  pointer-events: none;
}
.ch-folio {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.ch-body { max-width: 700px; }
.ch-title {
  display: flex;
  align-items: baseline;
  gap: 16px;
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
  color: var(--ink);
}
.ch-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
}
.ch-lead {
  font-family: var(--body);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 20px;
  max-width: 560px;
  letter-spacing: -0.01em;
}
.ch-body-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 580px;
}
.ch-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 32px;
}
.ch-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  position: relative;
}
.ch-points li::before {
  content: '✓';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: var(--accent);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: 50%;
  line-height: 1;
}
[dir="rtl"] .ch-points li { flex-direction: row-reverse; }

.ch-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  background: var(--accent);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  box-shadow: 0 4px 16px rgba(193,52,13,0.25);
  transition: background var(--ease), border-color var(--ease), gap var(--ease), box-shadow var(--ease), transform var(--ease);
}
.ch-cta:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  gap: 16px;
  box-shadow: 0 6px 24px rgba(193,52,13,0.35);
  transform: translateY(-1px);
}

/* ===== PROCESS (Ablauf) ===== */
.process {
  padding: 120px 0;
  background: var(--bg-alt);
}
.pr-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.process-letter {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pr-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.pr-step:last-child { border-bottom: 1px solid var(--rule); }

.pr-mark {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
}
.pr-num {
  font-family: var(--heading);
  font-size: 56px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.12;
}
.pr-rule {
  flex: 1;
  height: 1px;
  background: var(--rule);
  max-width: 32px;
}

.pr-content { max-width: 720px; }
.pr-content h3 {
  font-family: var(--heading);
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.pr-content p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 60ch;
}

/* ===== LETTER (Maged) ===== */
.letter {
  padding: 120px 0;
  background: var(--bg);
}

.letter-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.letter-side {
  position: sticky;
  top: calc(var(--nav-h) + 32px);
}
.ls-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 20px;
  font-weight: 600;
}
.ls-pull {
  font-family: var(--heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--ink);
  margin-bottom: 20px;
}
.ls-pull em {
  display: block;
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  margin-top: 6px;
}
.ls-attr {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.letter-body {
  font-family: var(--body);
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--ink);
}
.lb-salutation {
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 24px;
}
.letter-body > p { margin-bottom: 20px; }

.lb-sign {
  margin-top: 32px !important;
  font-family: var(--body);
  font-weight: 400;
  color: var(--ink-soft);
}

.signature {
  width: 200px;
  height: 50px;
  color: var(--ink);
  margin: 8px 0 6px;
  display: block;
  opacity: 0.5;
}
.lb-name {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  margin-bottom: 40px !important;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--rule);
  display: inline-block;
  padding-right: 48px;
}

/* Facts row */
.lb-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--rule);
}
.lb-facts > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px 16px 20px 24px;
  border-right: 1px solid var(--rule);
}
.lb-facts > div:first-child { padding-left: 0; }
.lb-facts > div:last-child { border-right: none; padding-right: 0; }
.lbf-n {
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.03em;
}
.lbf-l {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 4px;
}

/* ===== RING ME (Big Phone CTA) ===== */
.ring-me {
  padding: 180px 0;
  background: #0D0D0D;
  color: #F0F0F0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ring-me::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(193,52,13,0.10), transparent 55%),
    radial-gradient(ellipse at 70% 50%, rgba(28,220,232,0.08), transparent 55%);
  pointer-events: none;
}
.ring-me .container { position: relative; }

.rm-meta {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
  font-weight: 600;
}
.rm-line {
  font-family: var(--heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 500;
  font-style: italic;
  margin-bottom: 32px;
  color: #F0F0F0;
  letter-spacing: -0.03em;
}

.rm-number {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  font-family: var(--body);
  font-size: clamp(3rem, 13vw, 10.5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: #F0F0F0;
  margin-bottom: 24px;
  cursor: pointer;
  transition: letter-spacing 400ms ease, color 300ms ease;
  white-space: nowrap;
  flex-wrap: nowrap;
}
.rm-number:hover { letter-spacing: -0.04em; color: var(--accent-cyan-l); }
.rm-prefix {
  font-style: italic;
  font-weight: 400;
  font-size: 0.5em;
  color: rgba(255,255,255,0.45);
}
.rm-mid {
  color: rgba(255,255,255,0.55);
  font-style: italic;
  font-size: 0.45em;
}
.rm-rest { color: #F0F0F0; }

.rm-sub {
  font-family: var(--body);
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  font-weight: 400;
}

.rm-alt {
  display: flex;
  justify-content: center;
}
.rm-alt-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--wa);
  color: #fff;
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--ease), transform var(--ease);
}
.rm-alt-btn:hover { background: var(--wa-deep); transform: translateY(-1px); }

/* ===== INTERVIEW (FAQ) ===== */
.interview {
  padding: 120px 0;
  background: var(--bg);
}
.iv-head {
  margin-bottom: 64px;
  max-width: 800px;
}

.iv-list { border-top: 1px solid var(--rule); }
.iv-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.iv-item dt {
  font-family: var(--body);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--ink);
  display: flex;
  gap: 14px;
}
.iv-item dd {
  font-family: var(--body);
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--ink-soft);
  display: flex;
  gap: 14px;
}
.iv-q-mark, .iv-a-mark {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  flex-shrink: 0;
  padding-top: 4px;
  width: 18px;
}
.iv-a-mark { color: var(--ink-faint); }

.iv-foot {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink-soft);
}
.iv-foot-btn {
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
}
.iv-foot-btn:hover { color: var(--ink); }

/* ===== BOOKING ===== */
.booking {
  padding: 120px 0;
  background: var(--bg-alt);
}
.booking-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.bk-text { position: sticky; top: calc(var(--nav-h) + 32px); }
.bk-text h2 { margin-bottom: 20px; }
.bk-sub {
  font-family: var(--body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

.bk-box {
  background: var(--bg);
  border: 1px solid var(--rule);
  overflow: hidden;
}
#booking-embed { min-height: 700px; }
#booking-embed iframe { display: block; width: 100%; min-height: 700px; border: 0; border-radius: 14px; }

/* Booking calendar placeholder — shown until embed loads */
.cal-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 560px;
  padding: 48px 32px;
}
.cal-ph-inner {
  text-align: center;
  max-width: 380px;
}
.cal-ph-icon {
  font-size: 40px;
  display: block;
  margin-bottom: 20px;
  opacity: 0.5;
  filter: grayscale(1);
}
.cal-ph-title {
  font-family: var(--heading);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
.cal-ph-sub {
  font-family: var(--body);
  font-size: 0.975rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-bottom: 28px;
}
.cal-ph-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.cal-ph-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.cal-ph-btn-primary:hover { background: var(--ink-soft); }
.cal-ph-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--wa);
  color: #fff;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--ease);
}
.cal-ph-btn-wa:hover { background: var(--wa-deep); }

/* ===== KONTAKT ===== */
.kontakt {
  padding: 120px 0;
  background: var(--bg);
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.kt-side h2 { margin-bottom: 20px; }
.kt-sub {
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.kt-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.kt-info > div {
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 20px;
  align-items: baseline;
}
.kt-info dt {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}
.kt-info dd {
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
}
.kt-info a { transition: color var(--ease); }
.kt-info a:hover { color: var(--ink); }

/* Form */
.kt-form {
  background: var(--bg-alt);
  border: 1px solid var(--rule);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kt-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.kt-group { display: flex; flex-direction: column; gap: 8px; }
.kt-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 600;
}
.kt-input, .kt-textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg);
  border: 1px solid var(--rule);
  font-family: var(--body);
  font-size: 0.975rem;
  font-weight: 400;
  color: var(--ink);
  outline: none;
  transition: border-color var(--ease);
  border-radius: var(--radius);
}
.kt-input:focus, .kt-textarea:focus {
  border-color: var(--ink-soft);
  box-shadow: 0 0 0 3px var(--rule), 0 1px 4px rgba(0,0,0,0.06);
  background: var(--bg);
}
.kt-input::placeholder,
.kt-textarea::placeholder {
  color: var(--ink-faint);
  font-style: normal;
  font-weight: 400;
  opacity: 1;
}
.kt-textarea {
  resize: vertical;
  min-height: 100px;
}

#form-status {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  padding: 0;
}
#form-status:not(:empty) { padding: 12px 0; }
#form-status.success { color: #2d5e3c; }
#form-status.error   { color: var(--accent); }

.kt-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--body);
  font-size: 15px;
  font-weight: 600;
  align-self: flex-start;
  border-radius: var(--radius);
  letter-spacing: 0.01em;
  transition: background var(--ease), gap var(--ease);
}
.kt-submit:hover:not(:disabled) {
  background: var(--accent);
  gap: 14px;
}
.kt-submit:disabled { opacity: 0.4; cursor: not-allowed; }

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--bg);
  padding: 72px 0 28px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: 'TTL';
  position: absolute;
  right: -20px;
  bottom: -50px;
  font-family: var(--heading);
  font-size: clamp(200px, 25vw, 340px);
  font-weight: 800;
  font-style: italic;
  color: rgba(255,255,255,0.022);
  line-height: 1;
  letter-spacing: -0.07em;
  pointer-events: none;
  user-select: none;
}

.colophon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}
.cl-block { display: flex; flex-direction: column; gap: 8px; }
.cl-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 4px;
  font-weight: 600;
}
.cl-block p {
  font-family: var(--body);
  font-size: 0.975rem;
  line-height: 1.55;
  font-weight: 400;
}
.cl-block a { transition: color var(--ease); }
.cl-block a:hover { color: rgba(255,255,255,1); }

.footer-rule {
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.fb-copy {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
}
.fb-lang-note {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.3);
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.fb-legal {
  display: flex;
  gap: 24px;
}
.fb-legal a {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  transition: color var(--ease);
}
.fb-legal a:hover { color: rgba(255,255,255,1); }

/* ===== STICKY WHATSAPP FAB ===== */

/* WhatsApp-FAB ausblenden, solange der Cookie-Banner sichtbar ist —
   sonst überlappt er die Banner-Buttons (Banner-Höhe variiert je nach Textlänge/Viewport).
   Nach dem Consent (Banner .hidden) erscheint der FAB wieder. */
body:has(#cookie-banner:not(.hidden)) .fab-wa {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.fab-wa {
  position: fixed;
  bottom: 24px; right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  background: var(--wa);
  color: #fff;
  border-radius: 100px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 20px rgba(37,211,102,0.25), 0 8px 32px rgba(0,0,0,0.10);
  z-index: 600;
  transition: transform var(--ease), background var(--ease), opacity var(--ease), visibility var(--ease);
}
.fab-wa:hover { background: var(--wa-deep); transform: translateY(-2px); }
.fab-wa svg { flex-shrink: 0; }
[dir="rtl"] .fab-wa { right: auto; left: 24px; }

/* ===== COOKIE BANNER ===== */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--bg);
  border-top: 1px solid var(--rule);
  z-index: 500;
  padding: 16px 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.06);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
#cookie-banner.hidden { opacity: 0; transform: translateY(100%); pointer-events: none; }

.cookie-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-family: var(--body);
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.55;
  min-width: 240px;
}
.cookie-text a {
  font-weight: 600;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.cookie-actions { display: flex; gap: 8px; flex-shrink: 0; }

.cookie-btn-primary,
.cookie-btn-secondary {
  padding: 9px 20px;
  font-family: var(--body);
  font-size: 13.5px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: background var(--ease), border-color var(--ease), color var(--ease);
  white-space: nowrap;
}
.cookie-btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.cookie-btn-primary:hover { background: var(--ink-soft); }
.cookie-btn-secondary {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--ink-soft);
}
.cookie-btn-secondary:hover { border-color: var(--ink); color: var(--ink); }

/* ===== FOCUS ===== */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

/* ================================================================
   ANIMATIONS
================================================================ */

:root { --ease-rise: cubic-bezier(0.16, 1, 0.3, 1); }

@keyframes paperRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes ruleDraw {
  from { transform: scaleX(0); }
  to   { transform: scaleX(1); }
}
@keyframes stampSettle {
  from { opacity: 0; transform: rotate(28deg) scale(0.6); }
  to   { opacity: 0.7; transform: rotate(12deg) scale(1); }
}
@keyframes subtlePulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.25), 0 8px 32px rgba(0,0,0,0.10); }
  50%      { box-shadow: 0 4px 28px rgba(37,211,102,0.40), 0 8px 32px rgba(0,0,0,0.10); }
}

/* Hero load sequence */
.folio,
.from-line-label,
.hero-title > span,
.hero-title em,
.hero-body,
.hero-langs,
.hero-actions .ha-row {
  opacity: 0;
  animation: paperRise 680ms var(--ease-rise) forwards;
  animation-delay: var(--load-d, 0ms);
}
.folio                             { --load-d: 40ms; }
.from-line-label                   { --load-d: 140ms; }
.hero-title > span:first-child     { --load-d: 220ms; }
.hero-title em                     { --load-d: 340ms; }
.hero-body                         { --load-d: 480ms; }
.hero-langs                        { --load-d: 580ms; }
.hero-actions .ha-row:nth-child(1) { --load-d: 700ms; }
.hero-actions .ha-row:nth-child(2) { --load-d: 800ms; }
.hero-actions .ha-row:nth-child(3) { --load-d: 900ms; }

.from-line-rule {
  transform: scaleX(0);
  transform-origin: left;
  animation: ruleDraw 660ms var(--ease-rise) 260ms forwards;
}

.portrait-frame {
  opacity: 0;
  animation: paperRise 760ms var(--ease-rise) 380ms forwards;
}

.stamp {
  opacity: 0;
  animation:
    stampSettle 660ms cubic-bezier(0.34,1.56,0.64,1) 1000ms forwards,
    stampWobble 6s ease-in-out 1800ms infinite;
}

.hero-foot {
  opacity: 0;
  animation: paperRise 560ms var(--ease-rise) 1000ms forwards;
}

/* Scroll reveals */
.r-up {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 600ms var(--ease-rise) var(--reveal-d, 0ms),
    transform 600ms var(--ease-rise) var(--reveal-d, 0ms);
  will-change: transform, opacity;
}
.r-up.in-view { opacity: 1; transform: translateY(0); }

/* Portrait hover */
.portrait-frame { transition: transform 300ms var(--ease-rise); }

/* Phone CTA hover */
.rm-number {
  position: relative;
  transition: color 200ms ease, letter-spacing 280ms ease;
}

/* Reading progress bar */
.reading-progress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--accent);
  z-index: 290;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 80ms linear;
  pointer-events: none;
}
[dir="rtl"] .reading-progress { transform-origin: right; }

/* FAB pulse */
.fab-wa { animation: subtlePulse 4s ease-in-out 3s infinite; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
  .folio, .from-line-label, .hero-title > span, .hero-title em,
  .hero-body, .hero-langs, .hero-actions .ha-row,
  .portrait-frame, .from-line-rule, .hero-foot, .r-up {
    opacity: 1 !important;
    transform: none !important;
  }
  .stamp { opacity: 0.7 !important; transform: rotate(12deg) !important; }
  .reading-progress, .fab-wa { animation: none !important; }
}

/* ===== RESPONSIVE — Tablet ===== */
@media (max-width: 820px) {
  .hero-grid { gap: 40px; }
  .nav-call  { display: none; }
}

@media (max-width: 620px) {
  .hero-grid     { grid-template-columns: 1fr; gap: 32px; }
  .hero-portrait {
    position: relative;   /* kein sticky auf Mobile – sonst floatet es über Action-Rows */
    order: -1;            /* Portrait über dem Text zeigen */
    max-width: 100%;
    margin: 0;
  }
  .stamp { display: none; } /* Stamp ausblenden – absolute-Position bricht im Single-Column */
}

@media (max-width: 1024px) {
  .chapter         { grid-template-columns: 100px 1fr; gap: 32px; }
  .pr-step         { grid-template-columns: 100px 1fr; gap: 28px; }
  .letter-grid     { grid-template-columns: 1fr; gap: 48px; }
  .letter-side     { position: static; }
  .booking-grid    { grid-template-columns: 1fr; gap: 40px; }
  .bk-text         { position: static; }
  .kontakt-grid    { grid-template-columns: 1fr; gap: 48px; }
  .iv-item         { grid-template-columns: 1fr; gap: 16px; }
  .colophon        { grid-template-columns: repeat(2, 1fr); }
  .lb-facts        { grid-template-columns: repeat(2, 1fr); }
  .lb-facts > div  { padding-left: 24px; }
  .lb-facts > div:nth-child(odd) { padding-left: 0; }
  .lb-facts > div:nth-child(2) { border-right: none; padding-right: 0; }
  .lb-facts > div:nth-child(3),
  .lb-facts > div:nth-child(4) { border-top: 1px solid var(--rule); padding-top: 20px; }
}

/* ===== RESPONSIVE — Mobile ===== */
@media (max-width: 720px) {
  :root { --grid-padding: 16px; } /* carwow mobile grid-padding */
  .container { padding: 0 var(--grid-padding); }
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-primary, .nav-right { display: none; }
  .hamburger { display: flex; }

  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-title { font-size: clamp(2.6rem, 10vw, 3.4rem); }
  .hero-body { font-size: 1rem; }
  .hero-foot { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hf-mid    { display: none; }
  .hf-right  { margin-left: 0; }

  .chapters, .process, .letter, .interview, .booking, .kontakt, .ring-me {
    padding: 72px 0;
  }
  .chapter, .pr-step { grid-template-columns: 1fr; gap: 12px; }
  .ch-roman, .pr-num { font-size: 36px; opacity: 0.15; }
  .ch-points { grid-template-columns: 1fr; }
  .ch-title { gap: 10px; flex-wrap: wrap; }

  .rm-number { font-size: clamp(1.8rem, 8vw, 2.4rem); flex-wrap: nowrap; justify-content: center; }

  /* Action rows — kein negativer Margin auf Mobile (würde Stats überdecken) */
  .hero-actions { margin-top: 0; border-top: none; }

  /* Action rows — Label + Detail stacken statt nebeneinander */
  .ha-row {
    grid-template-columns: 28px 1fr 20px;
    grid-template-rows: auto auto;
    gap: 4px 12px;
    padding: 18px 0;
  }
  .ha-num   { grid-column: 1; grid-row: 1 / 3; align-self: center; }
  .ha-label { grid-column: 2; grid-row: 1; font-size: 15px; }
  .ha-detail{ grid-column: 2; grid-row: 2; font-size: 11px; }
  .ha-arrow { grid-column: 3; grid-row: 1 / 3; align-self: center; }

  .kt-form { padding: 24px; }
  .kt-row { grid-template-columns: 1fr; }
  .kt-info > div { grid-template-columns: 1fr; gap: 4px; }

  .colophon { grid-template-columns: 1fr 1fr; gap: 20px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .fab-wa { padding: 12px 14px; bottom: 16px; right: 16px; }
  .fab-wa .fab-label { display: none; }

  .stamp { width: 90px; height: 90px; top: -14px; right: -14px; }

  .cookie-inner { flex-direction: column; align-items: stretch; }
  .cookie-actions { justify-content: stretch; }
  .cookie-btn-primary, .cookie-btn-secondary { flex: 1; text-align: center; }
}

/* ----------------------------------------------------------------
   Kontaktformular – Datenschutz-Hinweis
   ---------------------------------------------------------------- */
.kt-privacy-note {
  font-size: 0.78rem;
  color: var(--ink-faint);
  line-height: 1.5;
  margin-top: 8px;
}
.kt-privacy-note a {
  color: var(--ink-soft);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ----------------------------------------------------------------
   Footer – Cookie-Einstellungen Button
   ---------------------------------------------------------------- */
.fb-cookie-btn {
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  font: inherit;
  font-size: inherit;
  color: var(--ink-faint);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color .2s;
}
.fb-cookie-btn:hover { color: var(--ink); }

/* ----------------------------------------------------------------
   Honeypot – für Spam-Schutz, niemals sichtbar für echte Nutzer
   ---------------------------------------------------------------- */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 0;
  height: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
}
