/* ============================================================
   SPOOREN PERSONALLEASING — Globales Stylesheet
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Colors (vom Logo) */
  --c-ink: #1F2D4F;          /* Tiefblau */
  --c-ink-deep: #16203A;     /* Dunkler */
  --c-ink-soft: #2C3E66;     /* Heller */
  --c-steel: #8A8E9A;        /* Grau */
  --c-steel-light: #B5B8BF;
  --c-steel-deep: #6B6E78;

  /* Surface */
  --c-paper: #FAF8F4;        /* Off-White / Cream */
  --c-paper-warm: #F2EEE6;   /* Wärmerer Akzent */
  --c-paper-deep: #E8E3D8;   /* Tiefer */
  --c-white: #FFFFFF;

  /* Akzent (Connection / Wärme) */
  --c-accent: #C8A876;       /* Warmes Gold/Sand */
  --c-accent-deep: #A6864F;
  --c-accent-soft: #E5D4B0;

  /* Funktional */
  --c-success: #2F7D5B;
  --c-error: #B23A3A;
  --c-line: rgba(31, 45, 79, 0.12);
  --c-line-strong: rgba(31, 45, 79, 0.24);

  /* Typografie */
  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', Consolas, monospace;

  /* Spacing Scale */
  --s-1: 0.25rem;
  --s-2: 0.5rem;
  --s-3: 0.75rem;
  --s-4: 1rem;
  --s-5: 1.5rem;
  --s-6: 2rem;
  --s-7: 3rem;
  --s-8: 4rem;
  --s-9: 6rem;
  --s-10: 8rem;
  --s-11: 12rem;

  /* Container */
  --container-max: 1280px;
  --container-narrow: 880px;
  --container-text: 680px;

  /* Radius */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-full: 999px;

  /* Shadow */
  --shadow-sm: 0 1px 2px rgba(31, 45, 79, 0.06);
  --shadow-md: 0 4px 16px rgba(31, 45, 79, 0.08);
  --shadow-lg: 0 12px 40px rgba(31, 45, 79, 0.12);
  --shadow-glow: 0 8px 30px rgba(31, 45, 79, 0.18);

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --t-fast: 0.18s;
  --t-med: 0.32s;
  --t-slow: 0.6s;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--c-ink);
  background: var(--c-paper);
  font-feature-settings: 'kern', 'liga', 'ss01';
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--c-ink);
  text-decoration: none;
  transition: color var(--t-fast) var(--ease);
}

a:hover { color: var(--c-accent-deep); }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typografie ---------- */
.display, h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--c-ink-deep);
  margin: 0 0 var(--s-5) 0;
}

h1, .h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.035em;
}

h1 em, .h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent-deep);
}

h2, .h2 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 300;
  letter-spacing: -0.03em;
}

h2 em, .h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--c-accent-deep);
}

h3, .h3 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h4 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 var(--s-3) 0;
  color: var(--c-ink);
}

p { margin: 0 0 var(--s-4) 0; }
p.lead {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  line-height: 1.55;
  color: var(--c-ink-soft);
  font-weight: 400;
  max-width: 60ch;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-steel-deep);
  margin: 0 0 var(--s-4) 0;
  display: inline-flex;
  align-items: center;
  gap: var(--s-2);
}

.eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--c-accent);
  display: inline-block;
}

.muted { color: var(--c-steel-deep); }
.serif { font-family: var(--font-display); font-style: italic; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.container-narrow { max-width: var(--container-narrow); }
.container-text { max-width: var(--container-text); }

section { padding: var(--s-9) 0; }
section.compact { padding: var(--s-7) 0; }

@media (max-width: 768px) {
  section { padding: var(--s-7) 0; }
}

.grid { display: grid; gap: var(--s-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 244, 0.85);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--c-line);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--s-5);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--s-3);
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--c-ink-deep);
  text-transform: uppercase;
}

.brand img { height: 38px; width: auto; }

.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text small {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--c-steel-deep);
  margin-top: 4px;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: var(--s-6);
}

.nav-main a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  position: relative;
  padding: var(--s-2) 0;
}

.nav-main a:hover { color: var(--c-ink-deep); }

.nav-main a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-accent-deep);
}

.lang-switch {
  display: flex;
  gap: 2px;
  padding-left: var(--s-5);
  border-left: 1px solid var(--c-line);
  margin-left: var(--s-3);
}

.lang-switch a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--c-steel);
  padding: 4px 8px;
  border-radius: var(--r-sm);
}

.lang-switch a.active { color: var(--c-ink-deep); background: var(--c-paper-deep); }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--c-ink-deep);
  transition: transform var(--t-fast) var(--ease);
}

@media (max-width: 900px) {
  .nav-main {
    position: fixed;
    inset: 76px 0 0 0;
    background: var(--c-paper);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: var(--s-6) var(--s-5);
    transform: translateX(100%);
    transition: transform var(--t-med) var(--ease);
    overflow-y: auto;
  }
  .nav-main.open { transform: translateX(0); }
  .nav-main a {
    width: 100%;
    padding: var(--s-4) 0;
    border-bottom: 1px solid var(--c-line);
    font-size: 1.1rem;
  }
  .lang-switch {
    border-left: none;
    border-top: 1px solid var(--c-line);
    padding: var(--s-4) 0 0 0;
    margin-top: var(--s-4);
    margin-left: 0;
  }
  .nav-toggle { display: flex; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 14px 28px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--r-full);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  text-decoration: none;
  border: 1px solid transparent;
  white-space: nowrap;
}

.btn-primary {
  background: var(--c-ink-deep);
  color: var(--c-paper);
}
.btn-primary:hover {
  background: var(--c-ink);
  color: var(--c-paper);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.btn-accent {
  background: var(--c-accent-deep);
  color: var(--c-paper);
}
.btn-accent:hover {
  background: var(--c-ink-deep);
  color: var(--c-paper);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--c-ink-deep);
  border-color: var(--c-ink-deep);
}
.btn-outline:hover {
  background: var(--c-ink-deep);
  color: var(--c-paper);
}

.btn-ghost {
  background: transparent;
  color: var(--c-ink-deep);
}
.btn-ghost:hover {
  background: var(--c-paper-deep);
  color: var(--c-ink-deep);
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--t-fast) var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

.btn-lg { padding: 18px 36px; font-size: 1rem; }
.btn-block { display: flex; width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: var(--s-10) 0 var(--s-9);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(200, 168, 118, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(31, 45, 79, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--s-7); }
}

.hero-aside {
  border-left: 1px solid var(--c-line-strong);
  padding-left: var(--s-6);
}

.hero-aside-block {
  margin-bottom: var(--s-6);
}

.hero-aside-block:last-child { margin-bottom: 0; }

.hero-stat {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 300;
  line-height: 1;
  color: var(--c-ink-deep);
  letter-spacing: -0.04em;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--c-steel-deep);
  margin-top: var(--s-2);
}

.hero-cta-row {
  display: flex;
  gap: var(--s-3);
  flex-wrap: wrap;
  margin-top: var(--s-6);
}

/* ---------- Cards ---------- */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: var(--s-6);
  transition: transform var(--t-med) var(--ease), box-shadow var(--t-med) var(--ease);
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.card-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--c-accent-deep);
  font-style: italic;
  margin-bottom: var(--s-3);
  display: block;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: var(--s-3);
}

.card p { color: var(--c-ink-soft); margin: 0; }

/* Bordered Card (no fill) */
.card-bordered {
  background: transparent;
  border: 1px solid var(--c-line-strong);
}

/* ---------- Sections ---------- */
.section-header {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--s-8);
  margin-bottom: var(--s-8);
  align-items: end;
}

@media (max-width: 900px) {
  .section-header { grid-template-columns: 1fr; gap: var(--s-4); }
}

.section-dark {
  background: var(--c-ink-deep);
  color: var(--c-paper);
}
.section-dark h1, .section-dark h2, .section-dark h3 { color: var(--c-paper); }
.section-dark .eyebrow { color: var(--c-accent-soft); }
.section-dark .lead, .section-dark .muted { color: rgba(250, 248, 244, 0.75); }
.section-dark .card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--c-paper);
}
.section-dark .card p { color: rgba(250, 248, 244, 0.75); }

.section-warm {
  background: var(--c-paper-warm);
}

/* ---------- Featured Sentence ---------- */
.featured-sentence {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.2vw, 2.8rem);
  line-height: 1.25;
  font-weight: 300;
  letter-spacing: -0.02em;
  color: var(--c-ink-deep);
  max-width: 22ch;
}

.featured-sentence em {
  font-style: italic;
  color: var(--c-accent-deep);
}

/* ---------- Process Steps ---------- */
.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

@media (max-width: 900px) {
  .process { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; }
}

.process-step {
  padding: var(--s-6);
  border-right: 1px solid var(--c-line);
}

.process-step:last-child { border-right: none; }

@media (max-width: 900px) {
  .process-step:nth-child(2n) { border-right: none; }
  .process-step { border-bottom: 1px solid var(--c-line); }
  .process-step:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 540px) {
  .process-step { border-right: none; border-bottom: 1px solid var(--c-line); }
  .process-step:last-child { border-bottom: none; }
}

.process-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  font-style: italic;
  color: var(--c-accent-deep);
  margin-bottom: var(--s-3);
  letter-spacing: -0.04em;
}

.process-step h4 { font-size: 1.1rem; margin-bottom: var(--s-2); }
.process-step p { font-size: 0.95rem; color: var(--c-ink-soft); margin: 0; }

/* ---------- Bullet List ---------- */
.bullets {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bullets li {
  padding: var(--s-4) 0;
  border-bottom: 1px solid var(--c-line);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--s-4);
  align-items: baseline;
}

.bullets li::before {
  content: counter(b, decimal-leading-zero);
  counter-increment: b;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: var(--c-accent-deep);
  font-weight: 400;
  min-width: 30px;
}

.bullets { counter-reset: b; }
.bullets li:first-child { border-top: 1px solid var(--c-line); }

/* ---------- Forms ---------- */
.form-row {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  margin-bottom: var(--s-5);
}

.form-row label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-ink-soft);
  letter-spacing: 0.01em;
}

.form-row input[type="text"],
.form-row input[type="email"],
.form-row input[type="tel"],
.form-row input[type="number"],
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--c-white);
  border: 1px solid var(--c-line-strong);
  border-radius: var(--r-md);
  font-size: 1rem;
  color: var(--c-ink-deep);
  transition: border-color var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease);
  font-family: inherit;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--c-ink);
  box-shadow: 0 0 0 4px rgba(31, 45, 79, 0.08);
}

.form-row textarea { resize: vertical; min-height: 110px; }

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-4);
}

@media (max-width: 600px) {
  .form-grid-2 { grid-template-columns: 1fr; }
}

/* Choice Cards (für Funnel) */
.choices {
  display: grid;
  gap: var(--s-3);
  margin: var(--s-5) 0;
}

.choice {
  display: flex;
  align-items: center;
  gap: var(--s-4);
  padding: var(--s-5);
  background: var(--c-white);
  border: 1.5px solid var(--c-line-strong);
  border-radius: var(--r-md);
  cursor: pointer;
  transition: all var(--t-fast) var(--ease);
  text-align: left;
  width: 100%;
}

.choice:hover {
  border-color: var(--c-ink);
  background: var(--c-paper);
  transform: translateX(2px);
}

.choice.selected {
  border-color: var(--c-ink-deep);
  background: var(--c-ink-deep);
  color: var(--c-paper);
  box-shadow: var(--shadow-md);
}

.choice-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--c-accent-deep);
}

.choice.selected .choice-icon { color: var(--c-accent-soft); }

.choice-content { flex: 1; }
.choice-content strong {
  display: block;
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 2px;
}
.choice-content span {
  font-size: 0.85rem;
  color: var(--c-steel-deep);
}
.choice.selected .choice-content span { color: rgba(250, 248, 244, 0.7); }

.choice-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--c-line-strong);
  flex-shrink: 0;
  position: relative;
  transition: all var(--t-fast) var(--ease);
}

.choice.selected .choice-check {
  border-color: var(--c-accent);
  background: var(--c-accent);
}

.choice.selected .choice-check::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12' fill='none'%3E%3Cpath d='M2 6L5 9L10 3' stroke='%231F2D4F' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center no-repeat;
}

/* ---------- Funnel ---------- */
.funnel {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-xl);
  padding: var(--s-7);
  box-shadow: var(--shadow-md);
  position: relative;
  overflow: hidden;
}

@media (max-width: 600px) {
  .funnel { padding: var(--s-5); border-radius: var(--r-lg); }
}

.funnel-progress {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-paper-deep);
}

.funnel-progress-bar {
  height: 100%;
  background: var(--c-accent-deep);
  transition: width var(--t-med) var(--ease-out);
  width: 0;
}

.funnel-step {
  display: none;
  animation: funnelIn var(--t-med) var(--ease-out);
}

.funnel-step.active { display: block; }

@keyframes funnelIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.funnel-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-5);
  font-size: 0.85rem;
  color: var(--c-steel-deep);
}

.funnel-step h3 {
  font-size: clamp(1.4rem, 2.5vw, 1.8rem);
  margin-bottom: var(--s-2);
  line-height: 1.25;
}

.funnel-step .step-help {
  color: var(--c-ink-soft);
  font-size: 0.95rem;
  margin-bottom: var(--s-5);
}

.funnel-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-3);
  margin-top: var(--s-6);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-line);
}

.funnel-success {
  text-align: center;
  padding: var(--s-7) var(--s-4);
}

.funnel-success-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-accent-soft);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-5);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--c-accent-deep);
}

/* ---------- Stats ---------- */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-4);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}

@media (max-width: 700px) {
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: var(--s-5); }
}

.stat-item {
  text-align: left;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1;
  color: var(--c-ink-deep);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: var(--s-2);
}

.stat-num em { font-style: italic; color: var(--c-accent-deep); }

.stat-label {
  font-size: 0.85rem;
  color: var(--c-steel-deep);
  letter-spacing: 0.01em;
}

/* ---------- Reviews ---------- */
.review {
  padding: var(--s-6);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  display: flex;
  flex-direction: column;
  gap: var(--s-4);
}

.review-stars {
  color: var(--c-accent-deep);
  font-size: 1rem;
  letter-spacing: 0.1em;
}

.review-quote {
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--c-ink-deep);
  font-weight: 400;
  font-style: italic;
  margin: 0;
}

.review-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-top: var(--s-3);
  border-top: 1px solid var(--c-line);
}

.review-author strong { font-weight: 500; font-size: 0.95rem; }
.review-author span { font-size: 0.82rem; color: var(--c-steel-deep); }

/* ---------- Page Title ---------- */
.page-title {
  padding: var(--s-9) 0 var(--s-7);
  background: var(--c-paper-warm);
  position: relative;
  overflow: hidden;
}

.page-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: -150px;
  width: 400px;
  height: 200px;
  background: radial-gradient(circle, rgba(200, 168, 118, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.page-title-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: var(--s-7);
  align-items: end;
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .page-title-grid { grid-template-columns: 1fr; gap: var(--s-4); }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--c-ink-deep);
  color: var(--c-paper);
  padding: var(--s-9) 0 var(--s-5);
}

.site-footer h4 {
  color: var(--c-accent-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: var(--s-4);
}

.site-footer a {
  color: rgba(250, 248, 244, 0.75);
  display: block;
  padding: 4px 0;
  font-size: 0.95rem;
}

.site-footer a:hover { color: var(--c-paper); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--s-5);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--s-6); }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.footer-brand .brand { color: var(--c-paper); margin-bottom: var(--s-4); }
.footer-brand .brand-text small { color: rgba(250, 248, 244, 0.6); }
.footer-brand p {
  font-size: 0.9rem;
  color: rgba(250, 248, 244, 0.7);
  max-width: 32ch;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(250, 248, 244, 0.5);
  flex-wrap: wrap;
  gap: var(--s-3);
}

.footer-bottom a {
  display: inline-block;
  padding: 0;
  color: rgba(250, 248, 244, 0.5);
}

.footer-legal {
  display: flex;
  gap: var(--s-5);
  flex-wrap: wrap;
}

/* ---------- Utilities ---------- */
.txt-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.flex-row { display: flex; gap: var(--s-3); flex-wrap: wrap; align-items: center; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Highlight Banner ---------- */
.banner {
  background: var(--c-ink-deep);
  color: var(--c-paper);
  text-align: center;
  padding: 10px var(--s-4);
  font-size: 0.85rem;
  letter-spacing: 0.02em;
}

.banner em {
  color: var(--c-accent-soft);
  font-style: italic;
  font-family: var(--font-display);
}

/* ---------- Legal pages typography ---------- */
.legal-content {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: var(--s-7) 0 var(--s-9);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin-top: var(--s-7);
  margin-bottom: var(--s-3);
  color: var(--c-ink-deep);
}

.legal-content h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-top: var(--s-5);
  margin-bottom: var(--s-2);
  letter-spacing: 0;
  color: var(--c-ink-deep);
}

.legal-content p, .legal-content li {
  font-size: 0.96rem;
  color: var(--c-ink-soft);
  line-height: 1.7;
}

.legal-content ul, .legal-content ol {
  padding-left: var(--s-5);
  margin: 0 0 var(--s-4) 0;
}

.legal-content li { margin-bottom: var(--s-2); }
.legal-content strong { color: var(--c-ink-deep); }

/* ---------- Selection ---------- */
::selection {
  background: var(--c-ink-deep);
  color: var(--c-paper);
}
