/* === Harald Kube · Energetischer Heiler · Aktive Energiearbeit === */
/* Brand-Tokens v1 — warmes Creme + tiefes Petrol + Terrakotta-Akzent */

:root {
  /* Brand-Palette */
  --bg: #F5F0E8;        /* warmes Creme */
  --bg-soft: #FBF8F2;   /* helleres Creme für alt-Sektionen */
  --soft: #EAE2D4;      /* sanfte Fläche */
  --ink: #2B2724;       /* warmes Anthrazit */
  --ink-soft: #4A443E;  /* gedämpfter Body-Ton */
  --muted: #7E776C;     /* leise Hinweise */
  --line: #E1D8C7;      /* Trennlinien */
  --white: #FFFFFF;

  --primary: #9A4A2F;        /* warmes Terrakotta-Rost — geerdet + energetisch */
  --primary-deep: #7A3722;   /* dunkleres Terrakotta für Hover/Kontrast */
  --accent: #E0A24A;         /* warmes Saffran/Amber — Kraft & Energie */
  --accent-deep: #C07F2A;

  /* Typography */
  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --shadow-sm: 0 2px 8px rgba(43, 39, 36, 0.04);
  --shadow-md: 0 6px 24px rgba(154, 74, 47, 0.08);
  --shadow-lg: 0 20px 48px rgba(154, 74, 47, 0.12);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 999px;

  --max: 1180px;
  --pad: 1.25rem;
}

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

html, body { overflow-x: hidden; max-width: 100%; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-weight: 400;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--accent-deep); }

h1 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.18;
  color: var(--ink);
  letter-spacing: 0.005em;
  font-size: clamp(2.0rem, 5vw, 3.1rem);
}
h1 em {
  font-style: italic;
  color: var(--primary);
  font-weight: 500;
}

h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.24;
  color: var(--ink);
  letter-spacing: 0.005em;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  margin-bottom: 1rem;
}
h2 em { font-style: italic; color: var(--primary); font-weight: 500; }

h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.8vw, 1.5rem);
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: .75rem;
}

h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: .5rem;
  color: var(--ink);
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
p em { font-style: italic; color: var(--ink-soft); }

ul, ol { padding-left: 1.3rem; margin-bottom: 1rem; }
li { margin-bottom: 0.4rem; }
li:last-child { margin-bottom: 0; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ===== SPEKTRUM-HAIRLINE (Farbheilungs-Nod, dezent, max. 1–2 Stellen) ===== */
.spectrum-divider {
  height: 2px;
  border: 0;
  border-radius: var(--radius-full);
  max-width: 220px;
  margin: 1.6rem 0 0;
  background: linear-gradient(
    90deg,
    rgba(31, 78, 74, 0.65) 0%,
    rgba(76, 128, 122, 0.6) 22%,
    rgba(201, 123, 74, 0.7) 50%,
    rgba(168, 120, 150, 0.55) 75%,
    rgba(31, 78, 74, 0.45) 100%
  );
  opacity: 0.85;
}
.spectrum-divider.center { margin-left: auto; margin-right: auto; }

/* ===== NAVIGATION ===== */
.nav {
  position: sticky;
  top: 0;
  background: rgba(245, 240, 232, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
  z-index: 40;
  padding: 0.7rem 0;
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
  line-height: 1.1;
}
.nav-brand img.nav-logo {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--soft);
  padding: 2px;
  box-shadow: 0 0 0 1px rgba(201, 123, 74, 0.3), 0 2px 6px rgba(31, 78, 74, 0.08);
}
.nav-brand .nav-mark {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--primary);
}
.nav-brand small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  color: var(--accent-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-top: 0.15rem;
  font-weight: 600;
}
.nav-links {
  display: none;
  list-style: none;
  gap: 1.8rem;
  margin: 0;
  padding: 0;
}
.nav-links li { margin: 0; }
.nav-links a {
  font-size: 0.92rem;
  color: var(--ink-soft);
  font-weight: 500;
  padding: 0.3rem 0;
  border-bottom: 1.5px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--primary);
  border-bottom-color: var(--accent);
}
.nav .nav-cta { display: none; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (min-width: 720px) {
  .nav-links { display: flex; }
  .nav .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--bg);
  padding: 5rem 1.5rem 2rem;
  transform: translateY(-100%);
  transition: transform .3s ease;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.mobile-menu.open { transform: translateY(0); }
.mobile-menu ul { list-style: none; padding: 0; margin: 0 0 1.5rem; }
.mobile-menu ul li { margin-bottom: 1rem; }
.mobile-menu ul a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.mobile-menu .btn { width: 100%; justify-content: center; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.93rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: background .2s, color .2s, transform .15s, box-shadow .2s, border-color .2s;
  border: 1.5px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--bg);
  border-color: var(--primary);
  box-shadow: 0 1px 0 rgba(22, 58, 55, 0.10);
}
.btn-primary:hover {
  background: var(--primary-deep);
  border-color: var(--primary-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px -10px rgba(31, 78, 74, 0.5);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--primary);
}
.btn-secondary:hover {
  background: var(--bg-soft);
  border-color: var(--accent-deep);
  color: var(--accent-deep);
}
.btn-lg { padding: 1.1rem 2.0rem; font-size: 1.0rem; }
.btn-arrow::after {
  content: '→';
  font-size: 1.1em;
  transition: transform .2s;
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ===== HERO ===== */
.hero {
  padding: 1.75rem 0 2.5rem;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-soft) 100%);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(201, 123, 74, 0.12), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -120px; left: -120px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(31, 78, 74, 0.08), transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.hero .container { position: relative; z-index: 2; }
.hero-text { max-width: 820px; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero h1 { margin-bottom: 0; }
.hero h1 + .spectrum-divider { margin-bottom: 1.5rem; }
.hero-lead {
  font-family: var(--font-body);
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--ink-soft);
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 720px) {
  .hero { padding: 4.5rem 0 5rem; }
  .hero-actions { flex-direction: row; align-items: center; }
}

/* Mobile: tighter hero text, smaller H1, full-width buttons */
@media (max-width: 719px) {
  .hero { padding: 1.5rem 0 2rem; }
  .hero h1 { font-size: clamp(1.55rem, 6.8vw, 1.95rem); line-height: 1.2; }
  .hero-lead { font-size: 0.98rem; margin-bottom: 1.4rem; line-height: 1.5; }
  .hero-actions { gap: 0.5rem; }
  .nav-brand .nav-mark { font-size: 0.92rem; }
  .nav-brand small { font-size: 0.58rem; letter-spacing: 0.12em; }
  .nav-brand img.nav-logo { width: 36px; height: 36px; }
  .nav { padding: 0.45rem 0; }
  .nav-inner { gap: 0.5rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  img, video, iframe { max-width: 100%; height: auto; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 0.8rem 1.2rem; }
}

/* ===== SECTIONS ===== */
section {
  padding: 4rem 0;
}
section.alt {
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section-intro { max-width: 800px; }
.section-intro.center { margin: 0 auto; text-align: center; }
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 1rem;
}
.lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.section-cta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.5rem;
  align-items: flex-start;
}
.section-cta.section-cta-center {
  align-items: center;
  justify-content: center;
}
@media (min-width: 720px) {
  .section-cta { flex-direction: row; align-items: center; }
  .section-cta.section-cta-center { justify-content: center; }
}

.check-list {
  list-style: none;
  padding-left: 0;
  margin: 1.25rem 0;
}
.check-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ===== PULL QUOTE ===== */
.pull-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  line-height: 1.5;
  color: var(--primary);
  padding: 1.2rem 0 1.2rem 1.5rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--accent);
  font-weight: 400;
}

/* ===== STEPS (Ablauf 3 Schritte) ===== */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem 0 0;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.6rem 1.5rem;
  position: relative;
}
.step-card .step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem; height: 2.1rem;
  border-radius: 50%;
  background: var(--soft);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 0.8rem;
}
.step-card h3 { color: var(--primary); margin-bottom: 0.5rem; }
.step-card p { color: var(--ink-soft); margin: 0; }
@media (min-width: 720px) {
  .steps { grid-template-columns: 1fr 1fr 1fr; gap: 1.4rem; }
}

/* ===== OFFERS / CARDS GRID ===== */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0 1.5rem;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
}
.offer-card-cta {
  align-self: flex-start;
  margin-top: 1.5rem;
}
.offer-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.offer-card-num {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  color: var(--accent-deep);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.offer-card h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}
.offer-card p { color: var(--ink-soft); }
.offer-card-fit {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed var(--line);
  font-size: 0.92rem;
}
.offer-card-fit strong { color: var(--ink); }

.offers-note {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  padding: 1rem 0 0;
  font-family: var(--font-display);
}

@media (min-width: 720px) {
  .offers { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .offers.offers-3 { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 719px) {
  .offers.offers-3 { grid-template-columns: 1fr; }
}

/* ===== DISCLAIMER LIST (Bullets) ===== */
.disclaimer-list {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0 1.2rem;
}
.disclaimer-list li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.85rem;
  color: rgba(245, 240, 232, 0.88);
  line-height: 1.55;
}
.disclaimer-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1.2;
}

/* ===== DISCLAIMER / DARK SECTION ===== */
.disclaimer-section {
  background: linear-gradient(160deg, var(--primary-deep) 0%, #112C2A 100%);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}
.disclaimer-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(201, 123, 74, 0.12), transparent 65%);
  pointer-events: none;
}
.disclaimer-section .container { position: relative; z-index: 2; }
.disclaimer-section h2 { color: var(--bg); }
.disclaimer-section .section-eyebrow { color: var(--accent); }
.disclaimer-section p { color: rgba(245, 240, 232, 0.85); }
.disclaimer-section em { color: var(--accent); font-style: italic; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: var(--bg-soft);
  text-align: center;
}
.cta-section .lead { margin-bottom: 2rem; }
.cta-section .btn { margin-bottom: 1.5rem; }
.small-muted {
  font-size: 0.92rem;
  color: var(--muted);
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--bg);
  padding: 3rem 0 1.5rem;
}
.footer a { color: var(--bg); opacity: 0.85; }
.footer a:hover { color: var(--accent); opacity: 1; }
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.footer-tagline {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.93rem;
  margin-bottom: 0.3rem;
}
.footer-meta {
  color: var(--muted);
  font-size: 0.82rem;
}
.footer-title {
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 0.85rem;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer li {
  margin-bottom: 0.5rem;
}

.footer-copy {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(245, 240, 232, 0.5);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.1);
}

@media (min-width: 720px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

/* ===== FORMS ===== */
.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  max-width: 640px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(31, 78, 74, 0.12);
}
.form-group textarea {
  min-height: 140px;
  resize: vertical;
}
.form-help {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.3rem;
}
.form-success, .form-error {
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  margin-top: 1rem;
  font-size: 0.95rem;
}
.form-success {
  background: rgba(31, 78, 74, 0.08);
  color: var(--primary);
  border: 1px solid var(--primary);
}
.form-error {
  background: rgba(201, 123, 74, 0.1);
  color: var(--accent-deep);
  border: 1px solid var(--accent);
}

/* ===== CONTACT CARDS (Kontakt-Seite) ===== */
.contact-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 880px;
  margin: 0 auto;
}
.contact-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.8rem 1.6rem;
  text-decoration: none;
  color: var(--ink);
  transition: transform .2s, box-shadow .25s, border-color .2s;
  position: relative;
}
.contact-card:hover {
  transform: translateY(-2px);
  border-color: var(--accent);
  box-shadow: 0 20px 40px -18px rgba(31, 78, 74, 0.22);
  color: var(--ink);
}
.contact-card-eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.contact-card-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
  color: var(--primary);
  letter-spacing: 0.01em;
  margin-bottom: 0.8rem;
  overflow-wrap: anywhere;
}
.contact-card-hint {
  display: block;
  font-size: 0.93rem;
  color: var(--ink-soft);
  line-height: 1.55;
}
.contact-direct-note {
  max-width: 720px;
  margin: 2rem auto 0;
  font-size: 0.94rem;
  color: var(--muted);
  font-style: italic;
  text-align: center;
  line-height: 1.6;
}
@media (min-width: 720px) {
  .contact-block { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .contact-block.contact-block-single { grid-template-columns: minmax(0, 560px); justify-content: center; }
}

/* ===== PORTRAIT (Über-mich) ===== */
.portrait-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-width: 420px;
  margin: 0 auto 2rem;
  box-shadow: 0 24px 60px -20px rgba(31, 78, 74, 0.22), 0 6px 16px rgba(43, 39, 36, 0.08);
  background: linear-gradient(160deg, var(--soft) 0%, var(--bg-soft) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.portrait-placeholder {
  text-align: center;
  padding: 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  font-style: italic;
  line-height: 1.5;
}

/* ===== LEGAL DRAFT BANNER ===== */
.draft-banner {
  background: rgba(176, 32, 32, 0.06);
  color: var(--ink);
  padding: 1.1rem 1.4rem;
  border-radius: var(--radius-sm);
  border-left: 4px solid #b02020;
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
.draft-banner code {
  background: rgba(43, 39, 36, 0.08);
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9em;
}

/* ===== LEGAL PAGE ===== */
.legal { max-width: 760px; }
.legal h2 { font-size: 1.25rem; margin-top: 2rem; }

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* ===== PRINT ===== */
@media print {
  .nav, .nav-toggle, .mobile-menu, .hero-actions, .section-cta { display: none; }
  body { background: white; color: black; }
}
