/* ============================================================
   beitz – bettwäsche im abo — STYLESHEET
   ------------------------------------------------------------
   Farben & Schriften sind als Variablen ganz oben definiert.
   Wenn du Farben oder Preise änderst: nur hier oben in
   ":root" anfassen, der Rest zieht automatisch nach.
   ============================================================ */

:root {
  /* Marken-Farben (aus dem beitz-Logo) */
  --navy: #14213D;
  --navy-soft: #1E2E52;
  --gold: #E8A93B;
  --gold-dark: #C98126;
  --gold-tint: #FCEFD9;
  --section-bg: #F2F5F7;
  --cream: #FFFFFF;
  --ink: #14213D;
  --body-text: #3D4460;
  --muted: #6B7290;
  --line: #EAE3D6;
  --white: #FFFFFF;

  /* Typografie */
  --font-display: "Baloo 2", "Segoe UI", "Trebuchet MS", sans-serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;

  /* Form / Radius-Sprache: große Rundungen wie im Logo-Icon */
  --radius-lg: 32px;
  --radius-md: 20px;
  --radius-sm: 12px;
  --radius-pill: 999px;

  --shadow-soft: 0 20px 45px -25px rgba(20, 33, 61, 0.35);
  --shadow-card: 0 12px 30px -18px rgba(20, 33, 61, 0.25);

  --max-width: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--body-text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em 0;
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1em 0; }

a { color: inherit; }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 96px 0;
}

.section--tint {
  background: var(--section-bg);
}

.section--navy {
  position: relative;
  background: linear-gradient(160deg, #1c2e57 0%, #14213D 55%, #223768 100%);
  color: rgba(255,255,255,0.88);
  overflow: hidden;
}
.section--navy::before,
.section--navy::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.section--navy::before {
  width: 480px;
  height: 480px;
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(232,169,59,0.16) 0%, rgba(232,169,59,0) 70%);
}
.section--navy::after {
  width: 380px;
  height: 380px;
  bottom: -180px;
  left: -140px;
  background: radial-gradient(circle, rgba(232,169,59,0.10) 0%, rgba(232,169,59,0) 70%);
}
.section--navy .container { position: relative; z-index: 1; }
.section--navy h2, .section--navy h3 { color: var(--white); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--gold-dark);
  letter-spacing: 0.02em;
  margin-bottom: 14px;
  font-size: 0.95rem;
}
.section--navy .eyebrow { color: var(--gold); }

.section-head {
  max-width: 640px;
  margin: 0 auto 56px auto;
  text-align: center;
}
.section-head p { color: var(--muted); font-size: 1.08rem; }
.section--navy .section-head p { color: rgba(255,255,255,0.75); }

/* ---------- Buttons & Pills ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: var(--shadow-card);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }

.btn-ghost {
  background: transparent;
  border-color: rgba(20,33,61,0.18);
  color: var(--navy);
}
.btn-ghost:hover { border-color: var(--navy); }

.section--navy .btn-ghost {
  border-color: rgba(255,255,255,0.4);
  color: var(--white);
}
.section--navy .btn-ghost:hover { border-color: var(--white); }

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--gold);
  color: var(--navy);
  font-weight: 600;
  font-size: 0.88rem;
  background: var(--white);
}
.section--navy .pill {
  background: rgba(255,255,255,0.06);
  color: var(--white);
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.site-header .logo img { height: 46px; width: auto; }
.site-header a.logo { display: flex; align-items: center; text-decoration: none; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}
.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.98rem;
}
.main-nav a:hover { color: var(--gold-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }

@media (max-width: 860px) {
  .main-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 12px 24px 22px 24px;
    border-bottom: 1px solid var(--line);
    display: none;
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .main-nav .header-cta-mobile { display: inline-flex; margin-top: 8px; }
}
.header-cta-mobile { display: none; }

/* ---------- Hero ---------- */

.hero {
  padding: 76px 0 90px 0;
  background: linear-gradient(180deg, var(--white) 0%, var(--section-bg) 100%);
  overflow: hidden;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero h1 { margin-bottom: 20px; }
.hero .lede {
  font-size: 1.15rem;
  color: var(--body-text);
  max-width: 46ch;
  margin-bottom: 32px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 38px;
}
.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-row .pill { font-size: 0.82rem; padding: 8px 16px; }

.hero-media {
  position: relative;
}
.hero-media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.hero-media .floating-card {
  position: absolute;
  bottom: -26px;
  left: -26px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 250px;
}
.hero-media .floating-card .icon-badge {
  background: var(--gold-tint);
  border-radius: var(--radius-pill);
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-media .floating-card strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 0.95rem; }
.hero-media .floating-card span { font-size: 0.82rem; color: var(--muted); }

@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-media { order: -1; }
  .hero-media img { height: 320px; }
  .hero-media .floating-card { left: 12px; bottom: -20px; }
}

/* ---------- Problem cards ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 860px) {
  .grid-3 { grid-template-columns: 1fr; }
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
}
.card .icon-badge {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-pill);
  background: var(--gold-tint);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card h3 { margin-bottom: 10px; }
.card p { color: var(--muted); margin: 0; }

/* ---------- Solution / value grid ---------- */

.solution-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.solution-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 520px;
  object-fit: cover;
  width: 100%;
}
.value-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
}
.value-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.value-list .icon-badge {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-pill);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.value-list strong { display: block; font-family: var(--font-display); color: var(--navy); margin-bottom: 3px; }
.value-list span { color: var(--muted); font-size: 0.97rem; }

@media (max-width: 900px) {
  .solution-wrap { grid-template-columns: 1fr; }
  .solution-wrap img { height: 300px; order: -1; }
}

/* ---------- Ablauf / Steps ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  counter-reset: step;
}
@media (max-width: 900px) {
  .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .steps { grid-template-columns: 1fr; }
}
.step {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 28px 24px;
}
.step .step-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 10px;
  display: block;
}
.step h3 { color: var(--white); font-size: 1.12rem; margin-bottom: 8px; }
.step p { color: rgba(255,255,255,0.72); font-size: 0.95rem; margin: 0; }

/* ---------- Pakete ---------- */

.basispaket-box {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 32px;
  margin-bottom: 40px;
  box-shadow: var(--shadow-card);
}
.basispaket-box h3 { margin-bottom: 18px; }
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.chip-list li {
  background: var(--gold-tint);
  color: var(--navy);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 600;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 860px) {
  .pricing-grid { grid-template-columns: 1fr; }
}
.price-card {
  background: var(--white);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  text-align: center;
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.price-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.price-card .format { color: var(--muted); font-weight: 600; margin-bottom: 6px; font-size: 0.92rem; }
.price-card .price {
  font-family: var(--font-display);
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--navy);
}
.price-card .price sup { font-size: 1.1rem; font-weight: 700; }
.price-card .unit { color: var(--muted); font-size: 0.88rem; margin-bottom: 4px; }

.pricing-note {
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
  max-width: 560px;
  margin: 30px auto 0 auto;
}

/* ---------- Konfigurator ---------- */

.configurator {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 34px;
  align-items: start;
}
@media (max-width: 900px) {
  .configurator { grid-template-columns: 1fr; }
}

.config-group {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 28px 8px 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-card);
}
.config-group h3 { margin-bottom: 4px; font-size: 1.15rem; }
.config-hint {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.config-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}
.config-row:first-of-type { border-top: none; }
.config-row-info strong {
  display: block;
  font-family: var(--font-display);
  color: var(--navy);
  font-size: 1rem;
}
.config-row-info span { color: var(--muted); font-size: 0.88rem; }

.qty-stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-pill);
  flex-shrink: 0;
}
.qty-btn {
  width: 34px;
  height: 34px;
  border: none;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-pill);
}
.qty-btn:hover { background: var(--gold-tint); }
.qty-input {
  width: 38px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--ink);
  font-size: 1rem;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty-input:focus { outline: none; }

.configurator-summary {
  background: linear-gradient(160deg, #1c2e57 0%, #14213D 60%, #213462 100%);
  border-radius: var(--radius-md);
  padding: 28px;
  color: rgba(255,255,255,0.9);
  position: sticky;
  top: 90px;
}
.configurator-summary h3 { color: var(--white); font-size: 1.1rem; margin-bottom: 16px; }
.summary-list { list-style: none; margin: 0 0 18px 0; padding: 0; }
.summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.9rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.8);
}
.summary-list .summary-empty { border-bottom: none; color: rgba(255,255,255,0.55); font-style: italic; }
.summary-lock {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}
.summary-lock .icon-badge {
  width: 32px; height: 32px;
  border-radius: var(--radius-pill);
  background: rgba(232,169,59,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.summary-lock p { margin: 0; font-size: 0.85rem; color: rgba(255,255,255,0.75); line-height: 1.5; }
.summary-note { font-size: 0.8rem; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
@media (max-width: 900px) {
  .configurator-summary { position: static; }
}

/* ---------- Trust bar (yes-points) ---------- */

.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
@media (max-width: 860px) {
  .trust-bar { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .trust-bar { grid-template-columns: 1fr; }
}
.trust-item {
  text-align: center;
  padding: 8px;
}
.trust-item .icon-badge {
  width: 50px; height: 50px;
  border-radius: var(--radius-pill);
  background: var(--gold-tint);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px auto;
}
.trust-item strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 0.98rem; margin-bottom: 4px; }
.trust-item span { color: var(--muted); font-size: 0.87rem; }

/* ---------- Storytelling / emotional break ---------- */

.story-break {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
@media (max-width: 900px) {
  .story-break { grid-template-columns: 1fr; }
  .story-break img { order: -1; }
}
.story-break img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 380px;
  width: 100%;
  object-fit: cover;
}
.story-break blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--navy);
  line-height: 1.35;
  margin: 0 0 20px 0;
  font-weight: 600;
}
.story-break cite {
  display: block;
  font-style: normal;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Nachhaltigkeit callout ---------- */

.sustain-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: stretch;
}
@media (max-width: 860px) {
  .sustain-wrap { grid-template-columns: 1fr; }
}
.sustain-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: var(--shadow-card);
}
.sustain-card .badge-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
  font-size: 0.92rem;
}
.sustain-card p { color: var(--body-text); }
.fact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 22px;
}
.fact-grid div {
  border-left: 3px solid var(--gold);
  padding-left: 14px;
}
.fact-grid strong { display: block; font-family: var(--font-display); color: var(--navy); font-size: 1.3rem; }
.fact-grid span { font-size: 0.85rem; color: var(--muted); }

/* ---------- Über mich ---------- */

.about-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 900px) {
  .about-wrap { grid-template-columns: 1fr; }
  .about-wrap img { order: -1; }
}
.about-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  height: 420px;
  width: 100%;
  object-fit: cover;
}

/* ---------- Liefergebiet ---------- */

.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin: 32px 0;
}
.area-list .pill { font-size: 1rem; padding: 12px 24px; }

/* ---------- Kontaktformular ---------- */

.contact-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; }
}
.contact-info h2 { color: var(--white); }
.contact-info p { color: rgba(255,255,255,0.75); }
.contact-detail {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 20px;
}
.contact-detail .icon-badge {
  width: 40px; height: 40px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail strong { display: block; color: var(--white); font-family: var(--font-display); font-size: 0.95rem; }
.contact-detail span, .contact-detail a { color: rgba(255,255,255,0.75); text-decoration: none; font-size: 0.94rem; }

.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-soft);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 6px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--line);
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.field textarea { resize: vertical; min-height: 90px; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}
.form-success, .form-error {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin-top: 16px;
  font-size: 0.95rem;
}
.form-success { background: #E6F4EA; color: #1E6B34; }
.form-error { background: #FBEAEA; color: #A32424; }

/* ---------- Footer ---------- */

.site-footer {
  background: linear-gradient(160deg, #223768 0%, #1E2E52 100%);
  color: rgba(255,255,255,0.7);
  padding: 60px 0 30px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 720px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer-grid img { height: 40px; margin-bottom: 14px; }
.footer-grid h4 { color: var(--white); font-family: var(--font-display); font-size: 1rem; margin-bottom: 14px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 10px; }
.footer-grid a { text-decoration: none; color: rgba(255,255,255,0.7); font-size: 0.94rem; }
.footer-grid a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-bottom a { text-decoration: none; color: rgba(255,255,255,0.6); margin-left: 18px; }
.footer-bottom a:hover { color: var(--gold); }

/* ---------- Legal pages (Impressum / Datenschutz) ---------- */

.legal-page { padding: 70px 0 100px 0; }
.legal-page .container { max-width: 780px; }
.legal-page h1 { margin-bottom: 30px; }
.legal-page h2 { font-size: 1.3rem; margin-top: 40px; }
.legal-page p, .legal-page li { color: var(--body-text); }
.legal-page a { color: var(--gold-dark); }
.legal-note {
  background: var(--gold-tint);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  font-size: 0.92rem;
  color: var(--body-text);
  margin-bottom: 40px;
}
