/* ============================================================
   Zypernkompass — Design System
   Editorial-calm aesthetic (Letter.co direction): near-white
   base, quiet air, serif display type, hairline surfaces,
   one restrained aegean accent.
   ============================================================ */


:root {
  --ink: #17222b;
  --ink-2: #566270;
  --ink-3: #8b95a0;
  --paper: #f6f4ef;
  --paper-2: #efece5;
  --blue: #1c6058;        /* muted aegean accent, used sparingly */
  --blue-deep: #12303a;   /* deep ink for solid surfaces */
  --gold: #a9843f;
  --glass: rgba(255, 255, 255, 0.7);
  --glass-strong: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(23, 34, 43, 0.09);
  --hairline: rgba(23, 34, 43, 0.09);
  --shadow: 0 1px 2px rgba(18, 40, 58, 0.05), 0 8px 24px rgba(18, 40, 58, 0.05);
  --shadow-lift: 0 2px 4px rgba(18, 40, 58, 0.06), 0 18px 44px rgba(18, 40, 58, 0.10);
  --radius: 16px;
  --radius-sm: 12px;
  --maxw: 1120px;
  --maxw-text: 720px;
  --font: "Figtree", -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --serif: "Newsreader", Georgia, "Times New Roman", serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.57;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ---- ambient background (quiet) ---- */
.mesh {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}
.mesh::before {
  content: "";
  position: absolute;
  width: 60vw; height: 60vw;
  top: -26vw; right: -18vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  background: radial-gradient(circle, rgba(28, 96, 88, 0.22), transparent 68%);
}
.mesh::after {
  content: "";
  position: absolute;
  width: 46vw; height: 46vw;
  bottom: -22vw; left: -16vw;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.3;
  background: radial-gradient(circle, rgba(169, 132, 63, 0.14), transparent 68%);
}

/* ---- navigation (full-width bar) ---- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px clamp(20px, 5vw, 44px);
  background: rgba(246, 244, 239, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(150%);
  backdrop-filter: blur(16px) saturate(150%);
  border-bottom: 1px solid transparent;
  box-shadow: none;
  transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.nav.scrolled {
  background: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(28px) saturate(190%);
  backdrop-filter: blur(28px) saturate(190%);
  border-bottom: 1px solid var(--hairline);
  box-shadow: 0 6px 26px rgba(18, 40, 58, 0.09);
}
.nav-inner { display: contents; }
.nav .brand {
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
  white-space: nowrap;
}
.nav .brand span { color: var(--blue); }
.nav-links a.nav-current {
  color: var(--ink-2);
  pointer-events: none;
  cursor: default;
}
.nav.scrolled .nav-links a.nav-current { color: var(--ink-3); }
.nav .brand.brand-swap { position: relative; display: inline-block; }
.nav .brand.brand-swap .logo-hover { position: absolute; top: 0; left: 0; opacity: 0; }
.nav .brand.brand-swap .logo-default,
.nav .brand.brand-swap .logo-hover { transition: opacity 0.22s ease; }
.nav .brand.brand-swap:hover .logo-default { opacity: 0; }
.nav .brand.brand-swap:hover .logo-hover { opacity: 1; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-links a {
  display: block;
  position: relative;
  padding: 8px 14px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: #804AFF;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}
.nav-links a:not(.nav-cta):hover { background: transparent; color: var(--ink); }
.nav-links a:not(.nav-cta):hover::after { transform: scaleX(1); }
.nav-links a { color: var(--ink); font-weight: 500; }
.nav-cta {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 10px 22px !important;
  margin-left: 16px;
  background: #1B2317;
  color: #fff !important;
  font-weight: 500 !important;
  border-radius: 6px !important;
  box-shadow: 0 4px 14px rgba(27, 35, 23, 0.28);
}
.nav-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #804AFF;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(.2,.75,.25,1);
}
.nav-cta:hover::before { transform: scaleY(1); }
.nav-toggle {
  display: none;
  border: 0;
  background: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--ink);
  padding: 6px 12px;
}

/* ---- layout primitives ---- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.wrap-text { max-width: var(--maxw-text); margin: 0 auto; padding: 0 24px; }
section { padding: 72px 0; }

/* ---- hero ---- */
.hero { padding: 160px 0 40px; text-align: center; }
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(44px, 6.4vw, 78px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 960px;
  margin: 0 auto 24px;
}
.hero h1 em { font-style: italic; color: var(--ink); font-weight: 400; }

/* ---- split hero (Majority direction) ---- */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 70px;
  min-height: calc(100vh - 70px);
}
.hero-panel {
  background: #1B2317;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 6vw, 96px) clamp(28px, 5vw, 84px);
}
.hero-panel h1 {
  font-family: "Tahoma", var(--font);
  font-weight: 600;
  text-transform: none;
  font-size: clamp(40px, 4.4vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.4px;
  color: #fff;
  margin: 0 0 30px;
}
.hero-panel .sub {
  font-size: clamp(16px, 1.25vw, 20px);
  color: rgba(255, 255, 255, 0.82);
  max-width: 460px;
  margin: 0 0 36px;
  line-height: 1.55;
}
.hero-panel .btn-row { justify-content: flex-start; }
.hero-panel .btn {
  height: 50px;
  padding-top: 0;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
}
.hero-panel .btn-primary {
  background: #fff;
  color: #263028;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: none;
}
.hero-panel .btn-primary:hover { background: #eef1ec; transform: translateY(-2px); }
.hero-panel .btn-primary span { font-size: 18px; line-height: 1; transition: transform 0.2s; }
.hero-panel .btn-primary:hover span { transform: translateX(4px); }
.hero-panel .btn-glass {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}
.hero-panel .btn-glass:hover { background: rgba(255, 255, 255, 0.12); }
.hero-media-r { position: relative; overflow: hidden; }
.hero-media-r img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.hero .sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: var(--ink-2);
  max-width: 680px;
  margin: 0 auto 36px;
}
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(14, 95, 216, 0.08);
  border: 1px solid rgba(14, 95, 216, 0.15);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 22px;
}

/* ---- article hero (subpages) ---- */
.page-hero-split {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
  min-height: clamp(420px, 62vh, 620px);
}
.page-hero-split .php-panel {
  background: #1B2317;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(96px, 9vw, 130px) clamp(28px, 5vw, 84px) clamp(44px, 5vw, 72px);
}
.page-hero-split .breadcrumb { color: rgba(255, 255, 255, 0.55); margin-bottom: 14px; }
.page-hero-split .breadcrumb a { color: rgba(255, 255, 255, 0.8); }
.page-hero-split h1 {
  font-family: "Tahoma", var(--font);
  font-weight: 500;
  font-size: clamp(32px, 4vw, 54px);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: #F8F8F8;
  margin: 0 0 18px;
  max-width: 640px;
}
.page-hero-split .sub {
  font-size: clamp(16px, 1.2vw, 19px);
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.55;
  max-width: 560px;
  margin: 0;
}
.page-hero-split .meta-line { margin-top: 26px; }
.page-hero-split .chip {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.page-hero-split .btn-row { justify-content: flex-start; }
/* ---- horizontal image-card slider ---- */
.cardslider-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
}
.cardslider-nav { display: flex; gap: 10px; flex: 0 0 auto; }
.cardslider-nav button {
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid rgba(23, 34, 43, 0.14);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  color: var(--ink);
  font-size: 17px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(18, 40, 58, 0.08);
  transition: background 0.15s, box-shadow 0.2s, opacity 0.15s;
}
.cardslider-nav button:hover { background: rgba(255, 255, 255, 0.8); box-shadow: 0 6px 20px rgba(18, 40, 58, 0.14); }
.cardslider-nav button svg { display: block; }
.cardslider-nav button:disabled { opacity: 0.35; cursor: default; }
.cardslider-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding-bottom: 6px;
  margin-right: calc(50% - 50vw);
  padding-right: clamp(20px, 5vw, 48px);
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.cardslider-track::-webkit-scrollbar { display: none; }
.cscard {
  position: relative;
  flex: 0 0 clamp(240px, 28vw, 320px);
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  scroll-snap-align: start;
  border: 1px solid var(--hairline);
  box-shadow: var(--shadow);
}
.cscard img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cscard-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 22px 26px;
  color: #fff;
  background: linear-gradient(to top, rgba(15,22,18,0.96) 0%, rgba(15,22,18,0.82) 32%, rgba(15,22,18,0.4) 62%, rgba(15,22,18,0.05) 100%);
}
.cscard-num {
  position: absolute;
  top: 16px;
  left: 18px;
  z-index: 2;
  font-family: "Tahoma", var(--font);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}
.cscard h3 { font-family: "Tahoma", var(--font); font-weight: 600; font-size: 20px; letter-spacing: -0.01em; color: #fff; margin: 0 0 8px; }
.cscard .cscard-overlay p { font-size: 13.5px; color: #fff; line-height: 1.45; margin: 0; }

.page-hero-media { position: relative; overflow: hidden; background: var(--paper-2); }
.page-hero-split .btn-glass {
  background: transparent;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  box-shadow: none;
}
.page-hero-split .btn-glass:hover { background: rgba(255, 255, 255, 0.12); border-color: rgba(255, 255, 255, 0.75); box-shadow: none; transform: none; }
.page-hero-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-badges {
  position: absolute;
  left: 0;
  right: 0;
  bottom: clamp(18px, 3vw, 30px);
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  gap: 12px;
  padding: 0 clamp(16px, 4vw, 40px);
}
.hero-badge {
  position: static;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: max-content;
  max-width: 70%;
  white-space: nowrap;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #fff;
  background: rgba(18, 26, 22, 0.5);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 999px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  animation: heroBadgeFloat 4.5s ease-in-out infinite;
}
.hero-badge--tl { top: clamp(88px, 11vw, 104px); left: clamp(20px, 3vw, 36px); }
.hero-badge--tr { top: clamp(88px, 11vw, 104px); right: clamp(20px, 3vw, 36px); animation-delay: -1.1s; }
.hero-badge--br { bottom: clamp(20px, 3vw, 36px); right: clamp(20px, 3vw, 36px); animation-delay: -2.25s; }
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 860px) {
  .page-hero-split { grid-template-columns: 1fr; min-height: auto; }
  .page-hero-media { min-height: 240px; height: 32vh; }
}

.article-grid {
  display: grid;
  grid-template-columns: 232px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
  padding-top: 56px;
  padding-bottom: 60px;
}
.toc-rail { position: sticky; top: 96px; }
.toc-nav { display: flex; flex-direction: column; gap: 1px; }
.toc-nav .toc-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--ink-3);
  font-weight: 600;
  margin-bottom: 14px;
}
.toc-nav a {
  display: flex;
  gap: 11px;
  padding: 9px 0 9px 16px;
  border-left: 2px solid var(--hairline);
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.35;
  transition: color 0.2s, border-color 0.2s;
}
.toc-nav a .n { color: var(--ink-3); font-size: 12px; font-variant-numeric: tabular-nums; padding-top: 1px; }
.toc-nav a:hover { color: var(--ink); }
.toc-nav a.active { color: #1B2317; border-left-color: #804AFF; font-weight: 600; }
.toc-nav a.active .n { color: #804AFF; }
.article-col { min-width: 0; max-width: 760px; }
.article-col > h2:first-child { margin-top: 0; }
.article-grid h2[id] { scroll-margin-top: 92px; }
@media (max-width: 1024px) {
  .article-grid { grid-template-columns: 1fr; padding-top: 32px; }
  .toc-rail { position: static; margin-bottom: 12px; }
}

.page-hero { padding: 150px 0 40px; }
.bento {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
  margin: 26px 0 30px;
}
.bento-card {
  background: var(--paper);
  padding: 30px;
}
.bento-card h4 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 21px;
  letter-spacing: -0.015em;
  margin: 0 0 10px;
  color: var(--ink);
}
.bento-card p { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
@media (max-width: 640px) { .bento { grid-template-columns: 1fr; } }
.bento-3 { grid-template-columns: repeat(3, 1fr); }
.bento-card { position: relative; }
.bento-2-1 { grid-template-columns: 1fr 1fr; }
.bento-2-1 > :nth-child(1) { grid-column: 1; grid-row: 1; }
.bento-2-1 > :nth-child(2) { grid-column: 1; grid-row: 2; }
.bento-2-1 > :nth-child(3) { grid-column: 2; grid-row: 1 / 3; }
@media (max-width: 640px) {
  .bento-2-1 { grid-template-columns: 1fr; }
  .bento-2-1 > * { grid-column: 1 !important; grid-row: auto !important; }
}
.bento-step {
  display: block;
  font-family: "Tahoma", var(--font);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: #804AFF;
  margin-bottom: 10px;
}
@media (max-width: 860px) { .bento-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 640px) { .bento-3 { grid-template-columns: 1fr; } }
.step-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 44px);
  align-items: stretch;
  margin: 0 0 clamp(32px, 4vw, 52px);
}
.step-row--alt .step-text { order: 2; }
.step-text { align-self: start; }
.step-text .step-num { display: none; }
.step-text h3 { margin-top: 0; }
.step-media {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: var(--paper-2);
  border: 1px solid var(--hairline);
}
.step-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 760px) {
  .step-row { grid-template-columns: 1fr; gap: 16px; }
  .step-row--alt .step-text { order: 0; }
}
/* ---- Fahrplan: sticky heading + scrolling step cards ---- */
.fahrplan {
  display: grid;
  grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  margin: 8px 0 40px;
}
.fahrplan-aside {
  position: sticky;
  top: 104px;
  align-self: start;
}
.fahrplan-aside h2 { margin: 0 0 14px; }
.fahrplan-sub { margin: 0; font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.fahrplan-steps { display: flex; flex-direction: column; gap: 16px; }
.fstep {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: clamp(24px, 3vw, 34px);
  box-shadow: var(--shadow);
}
.fstep .fstep-num {
  font-family: "Tahoma", var(--font);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #804AFF;
  margin-bottom: 8px;
}
.fstep h3 { margin: 0 0 10px; }
.fstep p { margin: 0; }
@media (max-width: 1024px) {
  .fahrplan { grid-template-columns: 1fr; gap: 20px; }
  .fahrplan-aside { position: static; }
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(34px, 4.8vw, 56px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 820px;
  margin-bottom: 18px;
}
.page-hero .sub { font-size: 19px; color: var(--ink-2); max-width: 720px; }
.meta-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 22px;
  font-size: 14px;
  color: var(--ink-3);
}
.meta-line .chip {
  background: var(--glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  padding: 5px 13px;
  font-weight: 500;
  color: var(--ink-2);
}
.breadcrumb { font-size: 13.5px; color: var(--ink-3); margin-bottom: 18px; }
.breadcrumb a { color: var(--ink-3); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue); }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  height: 50px;
  padding: 0 30px;
  border-radius: 6px;
  white-space: nowrap;
  font-size: 16.5px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s, background 0.2s, color 0.25s ease;
  letter-spacing: -0.01em;
}
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #804AFF;
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s cubic-bezier(.2,.75,.25,1);
}
.btn:hover::before { transform: scaleY(1); }
@media (max-width: 900px) {
  .btn-primary.autofill-in::before { transform: scaleY(1); }
  .cta-band .btn-primary.autofill-in, .btn-primary.autofill-in { color: #fff; }
}
.btn-primary:hover, .hero-panel .btn-primary:hover, .cta-band .btn-primary:hover { color: #fff; }
/* ghost buttons: no purple fill, neutral hover */
.btn-glass::before { content: none; }
.btn-glass:hover { border-color: var(--ink); }
.hero-panel .btn-glass:hover { border-color: rgba(255, 255, 255, 0.75); }
.btn-primary {
  background: var(--blue-deep);
  color: #fff;
  box-shadow: 0 6px 20px rgba(10, 37, 64, 0.28);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(10, 37, 64, 0.35); }
.btn-glass {
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.btn-glass:hover { transform: translateY(-2px); box-shadow: var(--shadow-lift); }
.btn-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- glass cards ---- */
.card {
  background: rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.25s;
}
a.card { text-decoration: none; color: inherit; display: block; }
a.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.card h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; letter-spacing: -0.01em; margin-bottom: 8px; }
.card p { font-size: 15.5px; color: var(--ink-2); }
.card .card-kicker {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--blue);
  margin-bottom: 10px;
}
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* ---- 3D skewed "Etappen" wall ---- */
.etappen {
  display: flex;
  gap: clamp(6px, 1.4vw, 18px);
  perspective: 1700px;
  align-items: stretch;
}
.etappe {
  position: relative;
  flex: 1 1 0;
  min-height: 460px;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: linear-gradient(165deg, #34423b 0%, #262f29 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  box-shadow: 0 20px 50px rgba(18, 40, 58, 0.18);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transform-style: preserve-3d;
  transition: transform 0.55s cubic-bezier(.2,.7,.3,1), flex-grow 0.55s cubic-bezier(.2,.7,.3,1), filter 0.45s ease, box-shadow 0.45s ease;
  will-change: transform;
}
.etappe:first-child { transform: rotateY(30deg) scale(0.93); transform-origin: right center; }
.etappe:last-child  { transform: rotateY(-30deg) scale(0.93); transform-origin: left center; }
.etappe:nth-child(2) { z-index: 1; }
.etappen:hover .etappe { filter: brightness(0.6) saturate(0.9); }
.etappe:hover {
  transform: rotateY(0deg) scale(1);
  flex-grow: 1.7;
  filter: brightness(1) !important;
  z-index: 3;
  box-shadow: 0 30px 74px rgba(18, 40, 58, 0.32);
}
.etappe-num {
  position: absolute;
  top: 20px; left: 26px;
  font-family: "Tahoma", var(--font);
  font-size: 92px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.10);
  pointer-events: none;
}
.etappe-kicker {
  position: relative;
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #a9c3b0;
  margin-bottom: 10px;
}
.etappe h3 { font-family: var(--font); font-weight: 600; font-size: 24px; letter-spacing: -0.01em; margin-bottom: 10px; color: #fff; }
.etappe p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.5;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: max-height 0.4s cubic-bezier(.2,.7,.3,1), opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0s;
}
.etappe:hover p { max-height: 220px; opacity: 1; transform: none; transition-delay: 0.5s; }
.etappe-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.etappe-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(18,26,22,0.95) 0%, rgba(18,26,22,0.82) 30%, rgba(18,26,22,0.35) 62%, rgba(18,26,22,0.05) 100%);
}
.etappe-photo .etappe-num { z-index: 2; }
.etappe-photo .etappe-kicker,
.etappe-photo h3,
.etappe-photo p { position: relative; z-index: 2; }

/* ---- Ratgeber bordered grid (Creandum-style hover fill) ---- */
.ratgeber {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}
.rcard {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--paper);
  padding: 34px 30px 30px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 220px;
}
.rcard::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(27, 35, 23, 0.05);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.rcard:hover::before { opacity: 1; }
.ratgeber--static .rcard { cursor: default; }
.ratgeber--static .rcard::before { display: none; }
.ratgeber--static .rcard .card-kicker { color: #804AFF; }
.ratgeber .rcard h3 { margin: 0 0 10px; }
.rcard .card-kicker {
  font-size: 12.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #1B2317;
  margin-bottom: 9px;
  transition: color 0.4s ease;
}
.rcard h3 {
  font-family: var(--font);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--ink);
  transition: color 0.4s ease;
}
.rcard p {
  font-size: 15px;
  color: var(--ink-2);
  line-height: 1.5;
  transition: color 0.4s ease;
}
.rcard-arrow {
  margin-top: auto;
  padding-top: 18px;
  font-size: 18px;
  line-height: 1;
  color: var(--blue);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.rcard:hover .rcard-arrow { opacity: 0.65; transform: none; }
@media (max-width: 900px) {
  .ratgeber { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .etappen { flex-direction: column; perspective: none; }
  .etappe,
  .etappe:first-child,
  .etappe:last-child { transform: none; min-height: 300px; }
  .etappen:hover .etappe { filter: none; }
  .etappe:hover { flex-grow: 1; }
  .etappe p { opacity: 1; max-height: none; }
}

/* ---- stats grid ---- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  border-radius: 6px;
  overflow: hidden;
}
.stat {
  text-align: center;
  padding: clamp(38px, 5vw, 62px) 20px;
  background: var(--paper);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(.2,.7,.3,1);
}
.stats.reveal .stat { opacity: 0; transform: translateY(18px); }
.stats.reveal.in .stat { opacity: 1; transform: none; }
.stats.reveal.in .stat:nth-child(2) { transition-delay: 0.09s; }
.stats.reveal.in .stat:nth-child(3) { transition-delay: 0.18s; }
.stats.reveal.in .stat:nth-child(4) { transition-delay: 0.27s; }
.stat .num {
  font-size: clamp(36px, 4.2vw, 54px);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--blue-deep);
  display: block;
  line-height: 1.04;
}
.stat .lbl { font-size: 14.5px; color: var(--ink-2); margin-top: 12px; display: block; line-height: 1.5; }

/* ---- article content ---- */
.article { padding: 30px 0 60px; }
.article h2 {
  font-family: "Tahoma", var(--font);
  font-weight: 500;
  text-transform: none;
  font-size: clamp(27px, 3vw, 34px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 52px 0 18px;
}
.article h3 { font-family: "Tahoma", var(--font); font-weight: 500; font-size: 21px; letter-spacing: -0.015em; margin: 36px 0 12px; }
.article p { margin-bottom: 18px; color: #22354a; }
.article ul, .article ol { margin: 0 0 20px 24px; color: #22354a; }
.article li { margin-bottom: 8px; }
.article a { color: #804AFF; text-decoration: none; border-bottom: 1px solid rgba(128, 74, 255, 0.3); }
.article a:hover { border-bottom-color: #804AFF; }
.article strong { color: var(--ink); }

/* ---- callouts ---- */
.callout {
  background: #EDEEEA;
  border: 1px solid rgba(23, 34, 43, 0.08);
  border-radius: var(--radius-sm);
  box-shadow: none;
  padding: 20px 24px;
  margin: 26px 0;
  font-size: 16px;
}
.callout.warn { border-color: rgba(23, 34, 43, 0.08); }
.callout .callout-title { font-weight: 700; display: block; margin-bottom: 6px; font-size: 15px; }

/* ---- interactive checklist ---- */
.checklist {
  background: #532778;
  color: #fff;
  border: none;
  border-radius: 16px;
  box-shadow: var(--shadow-lift);
  padding: clamp(28px, 3.5vw, 40px);
  margin: 28px 0;
}
.checklist-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}
.checklist-title { font-family: "Tahoma", var(--font); font-weight: 500; font-size: 19px; color: #fff; }
.checklist-count { font-size: 13px; font-weight: 600; color: #cdb6ff; font-variant-numeric: tabular-nums; white-space: nowrap; }
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 15.5px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.45;
}
.check-item + .check-item { border-top: 1px solid rgba(255, 255, 255, 0.1); }
.check-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.check-box {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, border-color 0.15s;
}
.check-box::after {
  content: "";
  width: 6px;
  height: 11px;
  margin-top: -2px;
  border: solid #532778;
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg) scale(0);
  transition: transform 0.15s cubic-bezier(.2,.7,.3,1.4);
}
.check-item:hover .check-box { border-color: #fff; }
.check-item input:checked ~ .check-box { background: #fff; border-color: #fff; }
.check-item input:checked ~ .check-box::after { transform: rotate(45deg) scale(1); }
.check-item input:checked ~ .check-label { color: rgba(255, 255, 255, 0.5); text-decoration: line-through; }
.check-item input:focus-visible ~ .check-box { outline: 2px solid #fff; outline-offset: 2px; }

/* ---- tables ---- */
.table-wrap {
  overflow-x: auto;
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 26px 0;
}
table { width: 100%; border-collapse: collapse; font-size: 15.5px; }
@media (max-width: 860px) {
  .table-wrap { overflow-x: visible; }
  table { font-size: 13px; table-layout: fixed; }
  table th, table td { padding: 10px 10px; word-break: break-word; overflow-wrap: anywhere; hyphens: auto; }
  table th { font-size: 10.5px; letter-spacing: 0.03em; }
}
th, td { text-align: left; padding: 14px 18px; border-bottom: 1px solid var(--hairline); }
th {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  background: rgba(255, 255, 255, 0.4);
}
tr:last-child td { border-bottom: 0; }
td strong { color: var(--blue-deep); }

/* ---- FAQ ---- */
.faq { max-width: var(--maxw-text); margin: 0 auto; }
.faq details {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  margin-bottom: 12px;
  padding: 0 22px;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 16.5px;
  padding: 18px 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-size: 22px;
  font-weight: 400;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { padding: 0 0 18px; color: var(--ink-2); font-size: 15.5px; }
.faq details p a { color: #804AFF; text-decoration: none; border-bottom: 1px solid rgba(128, 74, 255, 0.3); }
.faq details p a:hover { border-bottom-color: #804AFF; }

/* ---- Editorial image slider (B&O style) ---- */
.slider-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.slider-bleed .slide-figure {
  border-radius: 0;
  aspect-ratio: auto;
  height: clamp(320px, 52vh, 560px);
}
/* split slide: green text panel left, image right */
.slide-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: clamp(380px, 58vh, 600px);
}
.slide-panel {
  background: #1B2317;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 72px);
  padding-left: max(24px, calc(50vw - 536px));
}
.slide-panel .slide-title { text-shadow: none; }
.slide-panel .slide-body { color: rgba(255,255,255,0.82); text-shadow: none; max-width: 460px; }
.slide-media { position: relative; overflow: hidden; background: var(--paper-2); }
.slide-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 900px) {
  .slide-split { grid-template-columns: 1fr; height: auto; }
  .slide-media { height: 260px !important; min-height: 260px !important; }
  .slide-media img { height: 260px !important; }
  .ratgeber[style*="repeat(3"] { grid-template-columns: 1fr !important; }
}
.warum-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 64px);
  margin-bottom: 38px;
}
.warum-intro p {
  margin: 0;
  color: #424343;
  font-size: 16px;
  line-height: 1.55;
}
@media (max-width: 700px) {
  .warum-intro { grid-template-columns: 1fr; gap: 16px; }
}
.slider { position: relative; }
.slider-viewport { overflow: hidden; }
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(.5,.1,.15,1);
  will-change: transform;
}
.slide { flex: 0 0 100%; min-width: 100%; }
.slide-figure {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--paper-2);
}
.slide-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(20,26,20,0.9) 0%, rgba(20,26,20,0.55) 26%, rgba(20,26,20,0.08) 55%, rgba(20,26,20,0) 78%);
  pointer-events: none;
}
.slide-overlay {
  position: absolute;
  left: clamp(24px, 4vw, 52px);
  right: clamp(24px, 4vw, 52px);
  bottom: clamp(24px, 3.4vw, 44px);
  z-index: 2;
  max-width: 780px;
}
.slider-bleed .slide-overlay {
  left: max(24px, calc(50vw - 536px));
  right: max(24px, calc(50vw - 536px));
  max-width: none;
}
.slider-bleed .slide-body { max-width: 640px; }
.slide-figure--dark::after {
  background: linear-gradient(to top, rgba(20,26,20,0.96) 0%, rgba(20,26,20,0.7) 30%, rgba(20,26,20,0.25) 60%, rgba(20,26,20,0.08) 82%);
}
.slide-title {
  margin: 0 0 12px;
  color: #fff;
  font-family: "Tahoma", var(--font);
  font-weight: 400;
  font-size: clamp(26px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-shadow: 0 2px 30px rgba(0,0,0,0.3);
}
.slide-body {
  margin: 0;
  color: rgba(255,255,255,0.92);
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  text-shadow: 0 1px 20px rgba(0,0,0,0.35);
}
.slider-arrow {
  position: absolute;
  top: calc((100% - 90px) / 2);
  transform: translateY(-50%);
  width: 54px; height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  background: rgba(255,255,255,0.16);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  backdrop-filter: blur(12px) saturate(140%);
  box-shadow: 0 6px 20px rgba(18,40,58,0.14);
  color: #fff;
  cursor: pointer;
  z-index: 3;
  transition: background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.slider-arrow svg { display: block; }
.slider-arrow:hover { background: rgba(255,255,255,0.28); box-shadow: 0 8px 26px rgba(18,40,58,0.2); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 22px;
}
.slider-dots button {
  width: 8px; height: 8px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(27,35,23,0.22);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.slider-dots button.active { background: var(--blue); transform: scale(1.35); }
@media (max-width: 700px) {
  .slide-figure { aspect-ratio: 4 / 3; }
  .slider-arrow { width: 44px; height: 44px; }
}

/* ---- CTA band (split: headline left, body + CTAs right) ---- */
.cta-band {
  background: #1B2317;
  border-radius: 16px;
  padding: clamp(44px, 5.5vw, 80px);
  color: #fff;
  box-shadow: var(--shadow-lift);
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: start;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 460px; height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.06), transparent 70%);
  top: -220px; right: -120px;
  pointer-events: none;
}
.cta-band h2 { font-family: "Tahoma", var(--font); font-weight: 500; text-transform: none; font-size: clamp(30px, 3.8vw, 52px); letter-spacing: -0.4px; line-height: 1.04; margin: 0; position: relative; }
.cta-right { position: relative; display: flex; flex-direction: column; align-items: flex-start; }
.cta-band p { color: rgba(255, 255, 255, 0.78); max-width: 520px; margin: 0; font-size: 17px; }
.cta-band .btn-row { margin-top: 28px; justify-content: flex-start; }
.cta-band .btn-primary { background: #fff; color: #263028; }
.cta-band .btn-primary:hover { background: #eef1ec; }
.cta-band .btn-glass { background: rgba(255, 255, 255, 0.1); border: 1px solid rgba(255, 255, 255, 0.4); color: #fff; }
.cta-band .btn-glass:hover { border-color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.16); }
.cta-band .small { font-size: 13.5px; color: rgba(255, 255, 255, 0.55); margin: 18px 0 0; }

/* ---- disclaimer ---- */
.disclaimer {
  font-size: 13.5px;
  color: var(--ink-3);
  border-top: 1px solid var(--hairline);
  padding-top: 18px;
  margin-top: 48px;
}

/* ---- footer ---- */
footer {
  margin-top: 60px;
  padding: 56px 0 40px;
  background: var(--glass-strong);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  backdrop-filter: blur(22px) saturate(160%);
  border-top: 1px solid var(--glass-border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
footer h4 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--ink-3);
  margin-bottom: 14px;
}
footer ul { list-style: none; }
footer li { margin-bottom: 9px; }
footer a { color: var(--ink-2); text-decoration: none; font-size: 14.5px; }
footer a:hover { color: var(--blue); }
.footer-brand p { font-size: 14px; color: var(--ink-2); max-width: 300px; margin-top: 10px; }
.footer-legal {
  border-top: 1px solid var(--hairline);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-3);
}

/* ---- section headers ---- */
.section-head { text-align: center; max-width: 640px; margin: 0 auto 44px; }
.section-head h2 { font-family: "Tahoma", var(--font); font-weight: 500; text-transform: none; font-size: clamp(30px, 3.8vw, 46px); letter-spacing: -0.4px; line-height: 1.06; margin-bottom: 12px; }
.section-head p { color: var(--ink-2); font-size: 17.5px; }

/* ---- toc ---- */
.toc {
  background: var(--glass);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  padding: 22px 26px;
  margin: 30px 0;
  font-size: 15px;
}
.toc .toc-title { font-weight: 700; font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; color: var(--ink-3); margin-bottom: 10px; }
.toc ol { margin: 0 0 0 20px; }
.toc li { margin-bottom: 6px; }
.toc a { color: var(--ink-2); text-decoration: none; }
.toc a:hover { color: var(--blue); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .hero-split { grid-template-columns: 1fr; min-height: auto; }
  .hero-media-r { min-height: 320px; height: 42vh; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    border: 1px solid var(--hairline);
    border-radius: 22px;
    box-shadow: var(--shadow-lift);
    padding: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 16px; }
  .nav-toggle { display: block; }
  .hero-panel h1 { font-size: 54px !important; }
  .hero { padding: 140px 0 60px; }
  .page-hero { padding: 130px 0 30px; }
  section { padding: 52px 0; }
  .cta-band { padding: 44px 24px; grid-template-columns: 1fr; gap: 24px; }
}

.footer-brand .brand { font-family: "Futura", "Jost", "Century Gothic", sans-serif; letter-spacing: 0.01em; }
