/* ==========================================================================
   Seeland & Cie — Rechtsanwaltskanzlei
   Design-System: Tiefgrün (Vertrauen, Beständigkeit, Vermögen) ·
   Champagner-Gold (Exklusivität, sparsam als Akzent) · Elfenbein (Lesefläche)
   ========================================================================== */

/* ---------- Fonts (selbst gehostet, Bunny Fonts / DSG-konform) ---------- */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-latin-500-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/inter-latin-600-normal.woff2') format('woff2');
}

/* ---------- Tokens ---------- */
:root {
  --green-deep: #0a1f19;
  --green-950: #0d2620;
  --green-900: #113027;
  --green-800: #173d31;
  --green-700: #1f4e3f;
  --green-tint: #e8eeea;

  --gold: #c2a35e;
  --gold-deep: #7d6526;
  --gold-light: #d9c48d;
  --gold-pale: #f0e7cd;

  --ivory: #f6f3ea;
  --paper: #fdfcf7;
  --white: #ffffff;

  --ink: #1b2420;
  --ink-soft: #33403a;
  --muted: #5d6a63;

  --line: #e3ddca;
  --line-soft: #ece7d8;
  --line-dark: rgba(194, 163, 94, 0.28);

  --serif: 'Cormorant Garamond', 'Times New Roman', Georgia, serif;
  --sans: 'Inter', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --container: 1160px;
  --radius: 2px;

  --shadow-card: 0 1px 2px rgba(13, 31, 25, 0.04), 0 12px 36px -16px rgba(13, 31, 25, 0.18);
  --shadow-card-hover: 0 2px 4px rgba(13, 31, 25, 0.06), 0 24px 48px -20px rgba(13, 31, 25, 0.28);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a { color: var(--green-700); text-decoration: none; }
a:hover { color: var(--gold-deep); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  color: var(--green-950);
  margin: 0 0 0.6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 5.4vw, 4.4rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(2rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.6rem); }

p { margin: 0 0 1.2em; }
p:last-child { margin-bottom: 0; }

.lead {
  font-size: clamp(1.15rem, 1.6vw, 1.3rem);
  line-height: 1.65;
  color: var(--ink-soft);
}

::selection { background: var(--gold-pale); color: var(--green-deep); }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 36px);
}

.section { padding-block: clamp(72px, 9vw, 128px); }
.section-ivory { background: var(--ivory); }
.section-white { background: var(--white); }

.section-head { max-width: 720px; margin-bottom: clamp(40px, 5vw, 64px); }
.section-head.centered { margin-inline: auto; text-align: center; }

/* ---------- Eyebrow / Hairline ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.centered .eyebrow::after {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--green-deep);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  color: var(--green-deep);
}

.btn-outline-light {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(246, 243, 234, 0.45);
}
.btn-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.btn-outline-dark {
  background: transparent;
  color: var(--green-900);
  border-color: rgba(17, 48, 39, 0.35);
}
.btn-outline-dark:hover {
  border-color: var(--gold-deep);
  color: var(--gold-deep);
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.12s ease, border-color 0.12s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled,
.site-header.solid {
  background: rgb(10, 31, 25);
  border-bottom-color: var(--line-dark);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 84px;
}

.brand { display: flex; align-items: center; gap: 12px; line-height: 1; }
.brand-mark { width: 34px; height: auto; flex: none; }
.brand-text { display: flex; flex-direction: column; }
.brand .brand-name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ivory);
  letter-spacing: 0.02em;
}
.brand .brand-sub {
  margin-top: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.brand:hover .brand-name { color: var(--white); }

.main-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 34px); }
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: rgba(246, 243, 234, 0.85);
  padding: 6px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.main-nav a:hover { color: var(--gold-light); }
.main-nav a.active {
  color: var(--gold-light);
  border-bottom-color: var(--gold);
}
.main-nav .btn { padding: 11px 22px; font-size: 0.85rem; white-space: nowrap; }
.main-nav .nav-phone {
  color: var(--gold-light);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.main-nav .nav-phone:hover { color: var(--white); }
@media (max-width: 1080px) and (min-width: 881px) {
  .main-nav .nav-phone { display: none; }
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  margin: 5px 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 84px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 18px clamp(20px, 4vw, 36px) 28px;
    background: var(--green-deep);
    border-bottom: 1px solid var(--line-dark);
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a { font-size: 1.05rem; padding: 10px 0; }
  .main-nav .btn { margin-top: 12px; }
  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(1100px 520px at 82% -10%, rgba(194, 163, 94, 0.14), transparent 65%),
    radial-gradient(900px 600px at -10% 110%, rgba(31, 78, 63, 0.55), transparent 60%),
    linear-gradient(168deg, var(--green-950) 0%, var(--green-deep) 55%, #081a15 100%);
  color: var(--ivory);
  padding-top: 84px;
  overflow: hidden;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding-block: clamp(96px, 13vw, 180px) clamp(88px, 11vw, 150px);
  max-width: 880px;
}
.hero .eyebrow { color: var(--gold-light); }
.hero h1 { color: var(--ivory); margin-bottom: 0.5em; }
.hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-light);
}
.hero .lead {
  color: rgba(246, 243, 234, 0.82);
  max-width: 640px;
  margin-bottom: 2.4rem;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 2.6rem; }

.hero-assurance {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: rgba(246, 243, 234, 0.66);
}
.hero-assurance svg { flex: none; }

.hero-motif {
  position: absolute;
  right: -180px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 0.5;
  pointer-events: none;
}

/* Sub-Page-Hero (kompakter) */
.hero-sub .hero-inner { padding-block: clamp(80px, 9vw, 120px) clamp(56px, 7vw, 88px); }
.hero-sub h1 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); }

/* ---------- Trust-/Meritenleiste ---------- */
.meritbar { background: var(--green-deep); border-top: 1px solid rgba(194, 163, 94, 0.18); }
.meritbar-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 4vw, 56px);
  padding-block: 30px;
}
.merit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(246, 243, 234, 0.75);
}
.merit strong { display: block; color: var(--ivory); font-weight: 600; margin-bottom: 2px; }
.merit svg { flex: none; margin-top: 3px; }
@media (max-width: 760px) {
  .meritbar-inner { grid-template-columns: 1fr; gap: 18px; }
}

/* ---------- Karten ---------- */
.grid { display: grid; gap: clamp(20px, 2.6vw, 32px); }
.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: 1020px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  padding: clamp(26px, 3vw, 38px);
  box-shadow: var(--shadow-card);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-card-hover); transform: translateY(-3px); }
.card h3 { margin-bottom: 0.5em; }
.card p { font-size: 0.98rem; color: var(--ink-soft); }
.card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.card .card-link::after { content: '→'; transition: transform 0.2s ease; }
.card:hover .card-link::after { transform: translateX(4px); }
.card ul { margin: 18px 0 0; padding: 0; list-style: none; }
.card ul li {
  font-size: 0.94rem;
  color: var(--ink-soft);
  padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 1px solid var(--line-soft);
}
.card ul li:last-child { border-bottom: none; }
.card ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Prozess / Leistungskette ---------- */
.process { counter-reset: step; }
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 1020px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .process-grid { grid-template-columns: 1fr; } }

.step {
  background: var(--white);
  padding: clamp(28px, 3.4vw, 44px);
  position: relative;
  transition: background-color 0.3s ease;
}
.step:hover { background: var(--paper); }
.step .step-no {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-weight: 500;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 18px;
}
.step h3 { font-size: 1.3rem; margin-bottom: 0.5em; }
.step p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }
.step ul { margin: 12px 0 0; padding-left: 0; list-style: none; }
.step ul li {
  font-size: 0.92rem;
  color: var(--ink-soft);
  padding: 5px 0 5px 22px;
  position: relative;
}
.step ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 10px;
  height: 1px;
  background: var(--gold);
}

.process .center { margin-top: clamp(36px, 4vw, 52px); }
.process + .small, .compare + .small { margin-top: 22px; }

/* ---------- Dunkles Feature-Band ---------- */
.band {
  position: relative;
  background:
    radial-gradient(900px 480px at 90% 0%, rgba(194, 163, 94, 0.12), transparent 60%),
    linear-gradient(160deg, var(--green-900) 0%, var(--green-deep) 70%);
  color: rgba(246, 243, 234, 0.85);
  overflow: hidden;
}
.band h2, .band h3 { color: var(--ivory); }
.band .eyebrow { color: var(--gold-light); }
.band .lead { color: rgba(246, 243, 234, 0.8); }

.band-cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
@media (max-width: 880px) { .band-cols { grid-template-columns: 1fr; } }

.band-list { margin: 0; padding: 0; list-style: none; }
.band-list li {
  padding: 18px 0 18px 34px;
  position: relative;
  border-bottom: 1px solid rgba(194, 163, 94, 0.16);
  font-size: 0.98rem;
}
.band-list li:last-child { border-bottom: none; }
.band-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 30px;
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.band-list strong { color: var(--ivory); display: block; margin-bottom: 2px; }

/* ---------- Zweispaltige Sektion ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } }

/* ---------- Prinzipien ---------- */
.principles { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 4vw, 56px); }
@media (max-width: 880px) { .principles { grid-template-columns: 1fr; } }
.principle { border-top: 1px solid var(--line); padding-top: 26px; }
.principle h3 { font-size: 1.35rem; }
.principle h3::before {
  content: '';
  display: block;
  width: 44px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 20px;
}
.principle p { font-size: 0.97rem; color: var(--ink-soft); }

/* ---------- Quote ---------- */
.quote {
  max-width: 820px;
  margin-inline: auto;
  text-align: center;
}
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  line-height: 1.4;
  color: var(--green-900);
}
.quote .quote-source {
  margin-top: 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
}

/* ---------- CTA-Band ---------- */
.cta-band {
  background:
    radial-gradient(700px 360px at 50% -20%, rgba(194, 163, 94, 0.16), transparent 65%),
    var(--green-deep);
  color: var(--ivory);
  text-align: center;
}
.cta-band h2 { color: var(--ivory); max-width: 760px; margin-inline: auto; }
.cta-band p { color: rgba(246, 243, 234, 0.78); max-width: 620px; margin: 0 auto 2.2rem; }
.cta-band .btn { margin-inline: 8px; margin-block: 6px; }
.cta-note { margin-top: 1.6rem; font-size: 0.88rem; color: rgba(246, 243, 234, 0.55); }

/* ---------- Inhaltsseiten ---------- */
.prose { max-width: 760px; }
.prose h2 { margin-top: 1.8em; }
.prose ul { padding-left: 0; list-style: none; }
.prose ul li { padding: 7px 0 7px 26px; position: relative; }
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 19px;
  width: 12px;
  height: 1px;
  background: var(--gold);
}

.anchor-offset { scroll-margin-top: 110px; }

/* ---------- Definitionstabelle (z.B. Share vs. Asset Deal) ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (max-width: 680px) { .compare { grid-template-columns: 1fr; } }
.compare > div { background: var(--white); padding: clamp(26px, 3vw, 40px); }
.compare h3 { font-size: 1.25rem; }
.compare p { font-size: 0.95rem; color: var(--ink-soft); }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 6px 0;
}
.faq details:first-of-type { border-top: 1px solid var(--line); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 20px;
  padding: 18px 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--green-950);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: '+';
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--gold-deep);
  transition: transform 0.25s ease;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .faq-body { padding: 0 0 22px; font-size: 0.98rem; color: var(--ink-soft); max-width: 700px; }

/* ---------- Kontakt / Formular ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 88px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info p { font-size: 0.98rem; }
.contact-info .contact-block { margin-bottom: 28px; }
.contact-info .contact-block strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 6px;
}

form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 680px) { form .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(194, 163, 94, 0.18);
}
.field textarea { min-height: 150px; resize: vertical; }

.form-note { font-size: 0.85rem; color: var(--muted); margin-top: 14px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-deep);
  color: rgba(246, 243, 234, 0.65);
  border-top: 1px solid rgba(194, 163, 94, 0.18);
  font-size: 0.92rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: clamp(32px, 4vw, 64px);
  padding-block: clamp(56px, 7vw, 88px) 48px;
}
@media (max-width: 880px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-inner { grid-template-columns: 1fr; } }

.site-footer .brand .brand-name { font-size: 1.35rem; }
.site-footer .brand-mark { width: 30px; }
.footer-tagline { margin-top: 18px; max-width: 320px; line-height: 1.6; }

.footer-col .footer-col-title {
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.footer-col ul { margin: 0; padding: 0; list-style: none; }
.footer-col li { padding: 5px 0; }
.footer-col a { color: rgba(246, 243, 234, 0.65); }
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(246, 243, 234, 0.12);
  padding-block: 22px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(246, 243, 234, 0.6);
}
.footer-bottom a { color: rgba(246, 243, 234, 0.6); }
.footer-bottom a:hover { color: var(--gold-light); }

/* ---------- Reveal-Animationen (nur mit JS aktiv, sonst alles sichtbar) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}
.js .reveal.visible { opacity: 1; transform: none; }
.reveal:nth-child(2) { transition-delay: 0.05s; }
.reveal:nth-child(3) { transition-delay: 0.1s; }
.reveal:nth-child(4) { transition-delay: 0.15s; }
.reveal:nth-child(5) { transition-delay: 0.2s; }
.reveal:nth-child(6) { transition-delay: 0.25s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .step, .btn { transition: none; }
}

/* ---------- Utilities ---------- */
.mt-0 { margin-top: 0; }
.center { text-align: center; }
.gold { color: var(--gold-deep); }
.small { font-size: 0.88rem; color: var(--muted); }

/* ---------- A11y: Fokus & Skip-Link ---------- */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 300;
  background: var(--gold);
  color: var(--green-deep);
  padding: 12px 20px;
  font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ---------- Portrait ---------- */
.portrait { margin: 32px 0 0; max-width: 320px; }
.portrait img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
}
.portrait figcaption {
  margin-top: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
