/* ============================================================
   Castellum Treuhand, Editorial premium build
   ============================================================ */
:root {
  /* Brand */
  --navy:        #002134;
  --navy-soft:   #0A2F44;
  --navy-deep:   #00172A;
  --navy-warm:   #143247;
  --gold:        #BA8846;
  --gold-soft:   #D4A969;
  --gold-deep:   #8C6431;
  --gold-veil:   rgba(186,136,70,0.14);
  --gold-line:   rgba(186,136,70,0.32);
  --gold-fine:   rgba(186,136,70,0.55);

  /* Surfaces */
  --paper:       #F2EADD;     /* warm cream, primary */
  --paper-soft:  #FAF5E7;     /* lighter cream, accent */
  --paper-warm:  #ECE2CF;
  --paper-cool:  #EFE7D8;
  --line:        #D9CCB0;
  --line-soft:   #E5DAC2;

  /* Type */
  --ink:         #1B2733;
  --ink-soft:    #3D4754;
  --ink-muted:   #5C6571;

  /* Layout */
  --container:   1240px;
  --container-wide: 1380px;
  --sp-spread:   96px;
  --radius:      2px;

  --fs-display:  78px;
  --fs-h1:       64px;
  --fs-h2:       48px;
  --fs-h3:       28px;
  --fs-lead:     22px;
  --fs-body:     19px;
  --lh-body:     1.7;
  --lh-heading:  1.12;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  font-weight: 400;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
  width: 100%;
  max-width: 100vw;
}
img, svg, video, iframe { max-width: 100%; height: auto; }
section, header, footer, main, article { max-width: 100vw; overflow-x: clip; }
p, h1, h2, h3, h4, a, span, li {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

h1, h2, h3 {
  font-family: 'Cormorant Garamond', 'Lora', Georgia, serif;
  font-weight: 500;
  line-height: var(--lh-heading);
  color: var(--navy);
  margin: 0 0 0.5em;
  letter-spacing: -0.012em;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); }
p  { margin: 0 0 1.1em; text-wrap: pretty; }

a {
  color: var(--navy);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { color: var(--gold-deep); }
:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px var(--gold-veil);
  border-radius: 4px;
}

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

/* Editorial markers ---------- */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 28px;
}
.kicker--light { color: var(--gold-soft); }
.kicker::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 60px;
  padding: 0 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background-color .25s ease, color .25s ease, border-color .25s ease, transform .12s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-soft); border-color: var(--gold-soft); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline--light {
  color: rgba(255,255,255,0.92);
  border-color: var(--gold);
}
.btn-outline--light:hover { background: var(--gold); color: var(--navy-deep); }

.link-arrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--gold);
  padding: 6px 2px;
}
.link-arrow:hover { color: var(--gold-deep); border-bottom-color: var(--gold-deep); }
.link-arrow--light { color: #fff; border-bottom-color: var(--gold); }
.link-arrow--light:hover { color: var(--gold-soft); border-bottom-color: var(--gold-soft); }

/* ---------- Header ---------- */
/* ============================================================
   Eröffnungs-Banner (Laufzeile über dem Header)
   ============================================================ */
.opening-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background:
    linear-gradient(90deg,
      var(--gold-deep) 0%,
      var(--gold) 24%,
      var(--gold-soft) 50%,
      var(--gold) 76%,
      var(--gold-deep) 100%);
  border-bottom: 1px solid rgba(0,33,52,0.20);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.18);
}
.opening-banner__viewport {
  overflow: hidden;
  white-space: nowrap;
}
.opening-banner__track {
  display: inline-flex;
  width: max-content;
  animation: opening-marquee 42s linear infinite;
  will-change: transform;
}
.opening-banner:hover .opening-banner__track,
.opening-banner:focus-within .opening-banner__track {
  animation-play-state: paused;
}
.opening-banner__group {
  display: inline-flex;
  flex-shrink: 0;
}
.opening-banner__item {
  display: inline-block;
  padding: 11px 0;
  font-family: 'Montserrat', system-ui, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.opening-banner__item strong {
  font-weight: 700;
  color: var(--navy-deep);
}
.opening-banner__dot {
  margin: 0 1.5em;
  font-size: 8px;
  line-height: 1;
  color: var(--navy);
  opacity: 0.5;
  vertical-align: middle;
}
.opening-banner__static { display: none; }

@keyframes opening-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (max-width: 768px) {
  .opening-banner__item { font-size: 11.5px; letter-spacing: 0.14em; padding: 9px 0; }
  .opening-banner__dot { margin: 0 1.1em; }
  .opening-banner__track { animation-duration: 30s; }
}

@media (prefers-reduced-motion: reduce) {
  .opening-banner__viewport { display: none; }
  .opening-banner__static {
    display: block;
    margin: 0;
    padding: 11px 24px;
    text-align: center;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--navy);
    white-space: normal;
  }
  .opening-banner__static strong { font-weight: 700; color: var(--navy-deep); }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  color: #fff;
  border-bottom: 1px solid rgba(186,136,70,0.18);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 132px;
  padding: 16px 0;
}
.logo {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  line-height: 1;
}
.logo__img {
  flex-shrink: 0;
  display: block;
  height: 116px;
  width: auto;
}
.site-nav { display: flex; align-items: center; gap: 40px; }
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav__list a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  padding: 14px 2px;
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, color .2s ease;
}
.site-nav__list a:hover { color: var(--gold-soft); border-bottom-color: var(--gold); }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-soft);
  text-decoration: none;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.02em;
  min-height: 52px;
  transition: background-color .2s ease, color .2s ease;
}
.header-phone:hover { background: var(--gold); color: var(--navy-deep); }
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  width: 52px;
  height: 52px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  position: relative;
}
.menu-toggle span::before,
.menu-toggle span::after { content: ''; position: absolute; left: 0; }
.menu-toggle span::before { top: -7px; }
.menu-toggle span::after  { top:  7px; }

/* ============================================================
   HERO, asymmetric editorial cover
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 60% 80% at 78% 30%, rgba(186,136,70,0.20) 0%, transparent 62%),
    radial-gradient(ellipse 50% 60% at 8% 80%, rgba(186,136,70,0.08) 0%, transparent 55%),
    linear-gradient(168deg, var(--navy-deep) 0%, var(--navy) 60%, var(--navy-warm) 100%);
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    180deg,
    rgba(255,255,255,0.02) 0,
    rgba(255,255,255,0.02) 1px,
    transparent 1px,
    transparent 120px
  );
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 80px;
  padding: 88px 0 96px;
  align-items: center;
}
.hero__copy { max-width: 620px; }
.hero h1 {
  color: #fff;
  font-size: clamp(48px, 5.4vw, var(--fs-display));
  font-weight: 400;
  letter-spacing: -0.025em;
  margin: 0 0 36px;
  font-family: 'Cormorant Garamond', 'Lora', serif;
}
.hero h1 .accent { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.hero h1 .accent--block {
  display: block;
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
  font-size: 0.78em;
  margin-top: 6px;
  letter-spacing: 0.005em;
}
.hero__lead {
  font-family: 'Lora', serif;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,0.84);
  margin: 0 0 44px;
  max-width: 560px;
}
.hero__cta { display: flex; flex-wrap: wrap; align-items: center; gap: 22px 32px; }
.hero__phone-note {
  margin: 32px 0 0;
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.hero__phone-note::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}

/* Portrait frame ---------- */
.hero__portrait {
  position: relative;
  width: 100%;
  max-width: 440px;
  margin-left: auto;
}
.hero__portrait-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(186,136,70,0.30);
  overflow: hidden;
  box-shadow: 0 50px 80px -30px rgba(0,0,0,0.55);
}
.hero__portrait-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.hero__portrait-frame::before {
  content: '';
  position: absolute;
  left: -14px; top: -14px;
  width: 96px; height: 96px;
  border-left: 2px solid var(--gold);
  border-top: 2px solid var(--gold);
}
.hero__portrait-frame::after {
  content: '';
  position: absolute;
  right: -14px; bottom: -14px;
  width: 96px; height: 96px;
  border-right: 2px solid var(--gold);
  border-bottom: 2px solid var(--gold);
}
.hero__portrait-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  color: rgba(255,255,255,0.55);
  background: linear-gradient(135deg, rgba(186,136,70,0.06) 0%, transparent 60%);
}
.hero__portrait-placeholder div {
  border: 1px dashed rgba(186,136,70,0.4);
  padding: 18px 24px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.hero__portrait-placeholder span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  margin-top: 6px;
  opacity: 0.7;
}
.hero__portrait-caption {
  margin-top: 24px;
  padding: 18px 0 0;
  border-top: 1px solid var(--gold);
  color: rgba(255,255,255,0.94);
  font-family: 'Lora', serif;
  font-size: 17px;
  text-align: left;
}
.hero__portrait-caption strong {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 500;
  letter-spacing: 0.16em;
  font-size: 15px;
  color: var(--gold-soft);
  margin-bottom: 8px;
  text-transform: uppercase;
}
.hero__portrait-caption em {
  display: block;
  font-style: italic;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  margin-top: 6px;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0.02em;
}

/* ============================================================
   Editorial chapter markers, appear at the start of major sections
   ============================================================ */
.chapter {
  font-family: 'Cinzel', serif;
  font-size: 13px;
  letter-spacing: 0.34em;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 32px;
  font-weight: 500;
}
.chapter::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
}
.chapter--light { color: var(--gold-soft); }
.chapter--display {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-weight: 500;
  font-size: 88px;
  line-height: 1;
  color: var(--gold);
  margin: 0;
  letter-spacing: -0.02em;
}

/* ============================================================
   Pillars, vertical editorial list, offset rhythm
   ============================================================ */
.pillars {
  background: var(--paper-soft);
  padding: 80px 0 88px;
  position: relative;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.pillars__head {
  margin-bottom: 48px;
  max-width: 760px;
}
.pillars__head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(36px, 4.2vw, 54px);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0;
}
.pillars__head h2 em { font-style: italic; color: var(--gold-deep); }
.pillars__list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 900px;
}
.pillar-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  column-gap: 36px;
  align-items: start;
  padding: 34px 0;
  border-bottom: 1px solid var(--gold-line);
  position: relative;
}
.pillar-item:first-child { border-top: 1px solid var(--gold-line); }
.pillar-item:nth-child(2) { margin-left: 80px; }
.pillar-item:nth-child(3) { margin-left: 160px; }
.pillar-item__mark {
  width: 1.5px;
  height: 56px;
  background: var(--gold);
  margin: 12px 0 0;
  justify-self: end;
  position: relative;
}
.pillar-item__mark::before {
  content: '';
  position: absolute;
  left: 50%; top: 0;
  transform: translate(-50%, -6px) rotate(45deg);
  width: 8px; height: 8px;
  background: var(--gold);
}
.pillar-item__body { max-width: 620px; }
.pillar-item__label {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--gold-deep);
  margin: 0 0 10px;
  font-weight: 500;
  text-transform: uppercase;
}
.pillar-item__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(24px, 2.4vw, 30px);
  line-height: 1.2;
  color: var(--navy);
  margin: 0 0 12px;
  letter-spacing: -0.008em;
}
.pillar-item__text {
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}

/* ============================================================
   Manifest spread, editorial double page
   ============================================================ */
.manifest {
  background: var(--paper);
  position: relative;
  padding: 88px 0 88px;
  border-bottom: 1px solid var(--line-soft);
}
.manifest__spread {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 72px;
  align-items: center;
}
.manifest__opening { position: relative; }
.manifest__dropcap {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 220px;
  line-height: 0.8;
  color: var(--gold);
  margin: 0 0 20px;
  letter-spacing: -0.04em;
}
.manifest__quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 38px;
  line-height: 1.25;
  color: var(--navy);
  margin: 0 0 36px;
  letter-spacing: -0.012em;
  max-width: 540px;
}
.manifest__quote em {
  font-style: italic;
  color: var(--gold-deep);
}
.manifest__sig {
  display: flex;
  gap: 16px;
  align-items: center;
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.manifest__sig::before {
  content: '';
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.manifest__sig strong {
  display: inline-block;
  color: var(--navy);
  font-weight: 600;
  margin-right: 8px;
}
.manifest__body {
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.78;
  color: var(--ink-soft);
}
.manifest__body p { margin-bottom: 1.2em; }
.manifest__body p:last-child { margin-bottom: 0; }

/* ============================================================
   Schwerpunkt, asymmetric expertise spread
   ============================================================ */
.spread-areas {
  padding: var(--sp-spread) 0;
  background: var(--paper);
  position: relative;
}
.spread-areas__head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}
.spread-areas__head h2 {
  font-size: clamp(40px, 4.4vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  margin: 0;
}
.spread-areas__head h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.spread-areas__lead {
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  padding-bottom: 10px;
  max-width: 520px;
}

/* Editorial Index — clean magazine-style list */
.areas-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--gold-line);
  border-left: 1px solid var(--gold-line);
}
.area {
  padding: 32px 28px;
  border-right: 1px solid var(--gold-line);
  border-bottom: 1px solid var(--gold-line);
  position: relative;
  transition: background-color .25s ease;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.area:hover { background: rgba(0,33,52,0.025); }
.area__tag {
  font-family: 'Cinzel', serif;
  font-size: 10.5px;
  letter-spacing: 0.3em;
  color: var(--gold-deep);
  text-transform: uppercase;
  font-weight: 500;
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.area__tag::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--gold);
}
.area__title {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.2;
  color: var(--navy);
  margin: 0;
  letter-spacing: -0.005em;
}
.area__title em {
  font-style: italic;
  color: var(--gold-deep);
}
.area__desc {
  font-family: 'Lora', serif;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin: 0;
}

.spread-areas__foot {
  margin-top: 48px;
  padding-top: 44px;
  border-top: 1px solid var(--gold-line);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.spread-areas__foot p {
  margin: 0;
  font-family: 'Lora', serif;
  font-style: italic;
  font-size: 21px;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.5;
}

/* ============================================================
   Nachfolge, featured editorial inset
   ============================================================ */
.nachfolge {
  background: var(--navy);
  color: rgba(255,255,255,0.86);
  padding: var(--sp-spread) 0;
  position: relative;
  border-top: 1px solid rgba(186,136,70,0.20);
  border-bottom: 1px solid rgba(186,136,70,0.20);
  overflow: hidden;
}
.nachfolge::before {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nachfolge::after {
  content: '';
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.nachfolge__layout {
  display: grid;
  grid-template-columns: 5fr 6fr;
  gap: 64px;
  align-items: start;
}
.nachfolge__intro h2 {
  color: #fff;
  font-size: clamp(40px, 4.8vw, 64px);
  font-weight: 400;
  letter-spacing: -0.024em;
  margin: 0 0 28px;
}
.nachfolge__intro h2 em {
  display: block;
  font-style: italic;
  color: var(--gold-soft);
  font-weight: 400;
  font-size: 0.78em;
  margin-top: 8px;
}
.nachfolge__sub {
  font-family: 'Lora', serif;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255,255,255,0.78);
  max-width: 460px;
  margin: 0 0 36px;
}
.nachfolge__stamp {
  margin-top: 56px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 18px 26px;
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  font-family: 'Cinzel', serif;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: var(--gold-soft);
}
.nachfolge__stamp svg { width: 20px; height: 20px; }

.nachfolge__body p {
  color: rgba(255,255,255,0.84);
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.75;
}
.nachfolge__list {
  list-style: none;
  padding: 0;
  margin: 36px 0;
  display: grid;
  gap: 18px;
}
.nachfolge__list li {
  display: grid;
  grid-template-columns: 56px 1fr;
  align-items: baseline;
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(186,136,70,0.16);
  padding-bottom: 16px;
}
.nachfolge__list li::before {
  content: counter(nachfolge-list, upper-roman) ".";
  counter-increment: nachfolge-list;
  font-family: 'Cinzel', serif;
  font-size: 14px;
  letter-spacing: 0.16em;
  color: var(--gold-soft);
}
.nachfolge__list { counter-reset: nachfolge-list; }

/* ============================================================
   Ablauf, narrative
   ============================================================ */
.process {
  padding: var(--sp-spread) 0;
  background: var(--paper);
  position: relative;
}
.process__layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}
.process__intro h2 {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 0 0 26px;
}
.process__intro h2 em { font-style: italic; color: var(--gold-deep); }
.process__lead {
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.process__quote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--navy);
  line-height: 1.45;
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 36px 0 0;
  max-width: 380px;
}
.process__quote-cite {
  display: block;
  font-style: normal;
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 14px;
  font-weight: 500;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 4px 0 4px 40px;
  position: relative;
  border-left: 1px solid var(--gold-line);
}
.step {
  position: relative;
  padding: 0 0 32px;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: '';
  position: absolute;
  left: -46px;
  top: 8px;
  width: 11px;
  height: 11px;
  background: var(--gold);
  transform: rotate(45deg);
  border: 2px solid var(--paper);
  box-sizing: content-box;
}
.step__num {
  display: inline-block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  color: var(--gold-deep);
  margin: 0 0 6px;
  font-weight: 500;
}
.step__title {
  margin: 0 0 8px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 23px;
  line-height: 1.22;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.step__desc {
  margin: 0;
  font-family: 'Lora', serif;
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============================================================
   FAQ, editorial Q&A
   ============================================================ */
.faq {
  padding: var(--sp-spread) 0;
  background: var(--navy);
  color: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(186,136,70,0.18);
  border-bottom: 1px solid rgba(186,136,70,0.18);
  position: relative;
}
.faq::before, .faq::after {
  content: '';
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.faq::before { top: 0; }
.faq::after  { bottom: 0; }
.faq__head {
  max-width: 720px;
  margin: 0 auto 56px;
  text-align: center;
}
.faq__head h2 {
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 400;
  letter-spacing: -0.022em;
  margin-bottom: 18px;
  color: #fff;
}
.faq__head p {
  margin: 0;
  font-family: 'Lora', serif;
  font-size: 19px;
  color: rgba(255,255,255,0.72);
}
.faq-list {
  max-width: 920px;
  margin: 0 auto;
  border-top: 1px solid rgba(186,136,70,0.28);
}
.faq-item { border-bottom: 1px solid rgba(186,136,70,0.28); }
.faq-item__trigger {
  width: 100%;
  padding: 32px 8px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  color: #fff;
  line-height: 1.35;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.faq-item__trigger:hover { color: var(--gold-soft); }
.faq-item__trigger::-webkit-details-marker { display: none; }
.faq-item__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  position: relative;
}
.faq-item__icon::before, .faq-item__icon::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--gold);
  transition: transform .25s ease, opacity .25s ease;
}
.faq-item__icon::before { width: 22px; height: 1.5px; transform: translate(-50%, -50%); }
.faq-item__icon::after  { width: 1.5px; height: 22px; transform: translate(-50%, -50%); }
.faq-item[open] .faq-item__icon::after { opacity: 0; }
.faq-item__content {
  padding: 0 8px 36px;
  max-width: 760px;
  font-family: 'Lora', serif;
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
}
.faq-item__content p { margin: 0 0 1em; }
.faq-item__content p:last-child { margin: 0; }

/* ============================================================
   Kontakt, visitenkarte / call card
   ============================================================ */
.kontakt {
  padding: var(--sp-spread) 0;
  background: var(--paper);
}
.kontakt__inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: start;
}
.kontakt__head h2 {
  font-size: clamp(38px, 4.4vw, 60px);
  font-weight: 400;
  letter-spacing: -0.022em;
  margin: 0 0 26px;
}
.kontakt__head h2 em { font-style: italic; color: var(--gold-deep); }
.kontakt__head p {
  font-family: 'Lora', serif;
  font-size: 19px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 36px;
}
.kontakt__phone {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 52px;
  letter-spacing: -0.01em;
  color: var(--navy);
  display: block;
  text-decoration: none;
  margin-bottom: 10px;
}
.kontakt__phone:hover { color: var(--gold-deep); }
.kontakt__phone-note {
  font-family: 'Lora', serif;
  font-size: 17px;
  color: var(--ink-muted);
  margin: 0 0 40px;
}
.kontakt__meta {
  margin: 0;
  display: grid;
  grid-template-columns: 160px 1fr;
  row-gap: 22px;
  column-gap: 20px;
  font-family: 'Lora', serif;
  font-size: 17px;
}
.kontakt__meta dt {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  align-self: start;
  margin-top: 4px;
}
.kontakt__meta dd { margin: 0; color: var(--ink-soft); }
.kontakt__meta dd a { color: var(--ink-soft); }
.kontakt__meta dd a:hover { color: var(--navy); }
.kontakt__note {
  margin-top: 44px;
  padding: 26px 30px;
  background: var(--paper-warm);
  border-left: 2px solid var(--gold);
  font-family: 'Lora', serif;
  font-size: 16.5px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.kontakt-form {
  background: var(--paper-soft);
  border: 1px solid var(--line);
  padding: 44px;
  position: relative;
}
.kontakt-form::before {
  content: '';
  position: absolute;
  top: -1px; left: -1px;
  width: 60px; height: 60px;
  border-top: 1.5px solid var(--gold);
  border-left: 1.5px solid var(--gold);
}
.kontakt-form::after {
  content: '';
  position: absolute;
  bottom: -1px; right: -1px;
  width: 60px; height: 60px;
  border-bottom: 1.5px solid var(--gold);
  border-right: 1.5px solid var(--gold);
}
.kontakt-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.005em;
  margin: 0 0 28px;
}
.field { margin-bottom: 24px; }
.field label {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 10px;
}
.field input,
.field textarea {
  width: 100%;
  padding: 16px 18px;
  font-family: 'Lora', serif;
  font-size: 18px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-veil);
}
.field textarea { min-height: 150px; resize: vertical; line-height: 1.55; }
.field textarea::placeholder { color: var(--ink-muted); font-style: italic; }
.kontakt-form .btn { width: 100%; margin-top: 6px; }
.kontakt-form__note {
  margin: 18px 0 0;
  font-family: 'Lora', serif;
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.65);
  padding: 96px 0 36px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer__brand .logo__img { height: 100px; }
.footer__brand p {
  margin-top: 24px;
  font-family: 'Lora', serif;
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255,255,255,0.66);
  max-width: 340px;
}
.footer h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin: 0 0 24px;
}
.footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
  font-family: 'Lora', serif;
  font-size: 16px;
}
.footer ul a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
}
.footer ul a:hover { color: var(--gold-soft); }
.footer__bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.42);
  letter-spacing: 0.04em;
}
.footer__bottom a { color: rgba(255,255,255,0.55); }

/* ---------- Reveal on scroll ---------- */
.js-reveal .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.js-reveal .reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .js-reveal .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
/* ============================================================
   Responsive — Mobile follows Desktop design language
   ============================================================ */

/* ---------- Tablet / Large Mobile ≤ 1100px ---------- */
@media (max-width: 1100px) {
  :root { --sp-spread: 88px; --fs-h1: 52px; --fs-h2: 40px; }

  /* Header */
  .site-header__inner { min-height: 112px; }
  .logo__img { height: 88px; }

  /* Mobile-Nav */
  .site-nav {
    position: fixed; top: 112px; left: 0; right: 0;
    background: var(--navy);
    padding: 28px 28px 36px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    transform: translateY(-130%);
    transition: transform .25s ease;
    z-index: 40;
    border-bottom: 1px solid rgba(186,136,70,0.22);
  }
  .site-nav.is-open { transform: translateY(0); box-shadow: 0 20px 40px -20px rgba(0,0,0,0.45); }
  .site-nav__list { flex-direction: column; align-items: stretch; gap: 0; width: 100%; }
  .site-nav__list a {
    padding: 18px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    font-size: 15px;
    color: rgba(255,255,255,0.92);
    letter-spacing: 0.12em;
  }
  .menu-toggle { display: inline-flex; }
  .site-header .header-phone { display: none; }
  .site-nav .header-phone {
    display: inline-flex;
    margin-top: 22px;
    justify-content: center;
    border-color: var(--gold);
    color: var(--gold-soft);
  }

  /* Hero */
  .hero__inner { grid-template-columns: 1fr; gap: 64px; padding: 80px 0 96px; }
  .hero__portrait { max-width: 360px; margin-left: 0; margin-right: auto; }
  .hero__portrait-caption { left: 0; }

  /* Manifest */
  .manifest__spread { grid-template-columns: 1fr; gap: 56px; }
  .manifest__dropcap { font-size: 160px; }
  .manifest__quote { font-size: 30px; }

  /* Schwerpunkte */
  .spread-areas__head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .areas-list { grid-template-columns: repeat(2, 1fr); }
  .area { padding: 28px 22px; }

  /* Pillars: gold-marks bleiben, nur Offset weg */
  .pillars { padding: 72px 0 76px; }
  .pillars__head { margin-bottom: 44px; }
  .pillar-item { grid-template-columns: 38px 1fr; column-gap: 22px; padding: 28px 0; }
  .pillar-item:nth-child(2),
  .pillar-item:nth-child(3) { margin-left: 0; }
  .pillar-item__mark { height: 40px; }

  /* Nachfolge */
  .nachfolge__layout { grid-template-columns: 1fr; gap: 48px; }
  .nachfolge__intro h2 { font-size: clamp(34px, 5vw, 48px); }
  .nachfolge__list li { grid-template-columns: 44px 1fr; }

  /* Process */
  .process__layout { grid-template-columns: 1fr; gap: 48px; }
  .process__quote { margin-top: 28px; }

  /* Kontakt */
  .kontakt__inner { grid-template-columns: 1fr; gap: 52px; }
  .kontakt__phone { font-size: 44px; }

  /* Footer */
  .footer { padding: 80px 0 32px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}

/* ---------- Mobile ≤ 720px ---------- */
@media (max-width: 720px) {
  :root {
    --fs-h1: 40px;
    --fs-h2: 32px;
    --fs-body: 17px;
    --fs-lead: 18px;
    --sp-spread: 64px;
  }

  /* Layout container */
  .container, .container--wide { padding: 0 22px; }

  /* Header */
  .site-header__inner { min-height: 92px; padding: 12px 0; }
  .logo__img { height: 68px; }
  .menu-toggle { width: 48px; height: 48px; }
  .site-nav { top: 92px; }

  /* Hero */
  .hero { padding: 0; }
  .hero__inner { padding: 56px 0 72px; gap: 48px; }
  .hero .kicker {
    font-size: 10px;
    letter-spacing: 0.18em;
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 22px;
  }
  .hero .kicker::before { width: 24px; }
  .hero h1 {
    font-size: clamp(36px, 8vw, 48px);
    margin: 0 0 28px;
    letter-spacing: -0.02em;
  }
  .hero__lead { font-size: 17px; line-height: 1.6; margin: 0 0 32px; }
  .hero__cta { gap: 16px 18px; width: 100%; }
  .hero__cta .btn { width: 100%; }
  .hero__phone-note { margin-top: 24px; font-size: 13px; }
  .hero__portrait { max-width: 100%; }
  .hero__portrait-frame::before,
  .hero__portrait-frame::after { width: 60px; height: 60px; }
  .hero__portrait-caption {
    margin-top: 20px;
    padding-top: 16px;
    font-size: 15px;
  }
  .hero__portrait-caption strong { font-size: 13px; }

  /* Pillars */
  .pillars { padding: 64px 0 64px; }
  .pillars__head h2 { font-size: clamp(28px, 6vw, 38px); }
  .pillar-item {
    grid-template-columns: 28px 1fr;
    column-gap: 18px;
    padding: 24px 0;
  }
  .pillar-item__mark { height: 32px; }
  .pillar-item__title { font-size: 22px; }
  .pillar-item__text { font-size: 16px; }

  /* Manifest */
  .manifest { padding: 64px 0 68px; }
  .manifest__dropcap { font-size: 110px; margin-bottom: 12px; }
  .manifest__quote { font-size: 24px; margin-bottom: 28px; }
  .manifest__body { font-size: 17px; line-height: 1.7; }

  /* Schwerpunkte */
  .spread-areas__head { margin-bottom: 32px; }
  .spread-areas__head h2 { font-size: clamp(32px, 7vw, 44px); }
  .spread-areas__lead { font-size: 17px; }
  .areas-list { grid-template-columns: 1fr; }
  .area { padding: 26px 22px; gap: 12px; }
  .area__title { font-size: 22px; }
  .area__desc { font-size: 15.5px; }
  .spread-areas__foot {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 36px;
    padding-top: 32px;
    gap: 22px;
  }
  .spread-areas__foot p { font-size: 18px; }
  .spread-areas__foot .btn { width: 100%; }

  /* Nachfolge */
  .nachfolge__intro h2 { font-size: clamp(30px, 7vw, 40px); }
  .nachfolge__sub { font-size: 17px; }
  .nachfolge__body p { font-size: 17px; line-height: 1.7; }
  .nachfolge__list { margin: 28px 0; }
  .nachfolge__list li {
    grid-template-columns: 36px 1fr;
    font-size: 16px;
    padding-bottom: 14px;
  }
  .nachfolge__list li::before { font-size: 12px; }
  .nachfolge__stamp {
    margin-top: 36px;
    padding: 14px 20px;
    font-size: 11px;
    letter-spacing: 0.14em;
  }

  /* Process / Ablauf */
  .process__intro h2 { font-size: clamp(28px, 6.6vw, 40px); }
  .process__lead { font-size: 17px; }
  .process__quote {
    font-size: 20px;
    padding-left: 22px;
    margin-top: 24px;
  }
  .steps {
    padding: 4px 0 4px 28px;
  }
  .step { padding: 0 0 22px; }
  .step::before { left: -34px; width: 9px; height: 9px; top: 6px; }
  .step__title { font-size: 20px; }
  .step__desc { font-size: 15px; }

  /* FAQ */
  .faq__head { margin-bottom: 36px; }
  .faq__head h2 { font-size: clamp(28px, 6.6vw, 38px); }
  .faq__head p { font-size: 16px; }
  .faq-item__trigger {
    padding: 24px 4px;
    font-size: 19px;
    gap: 16px;
  }
  .faq-item__icon { width: 26px; height: 26px; }
  .faq-item__icon::before { width: 18px; }
  .faq-item__icon::after { height: 18px; }
  .faq-item__content {
    padding: 0 4px 28px;
    font-size: 16px;
    line-height: 1.65;
  }

  /* Kontakt */
  .kontakt { padding: 56px 0 64px; }
  .kontakt__head h2 { font-size: clamp(28px, 6.6vw, 40px); margin-bottom: 20px; }
  .kontakt__head p { font-size: 17px; margin-bottom: 28px; }
  .kontakt__phone { font-size: 36px; }
  .kontakt__phone-note { font-size: 15px; margin-bottom: 32px; }
  .kontakt__meta {
    grid-template-columns: 1fr;
    row-gap: 4px;
    column-gap: 0;
    font-size: 16px;
  }
  .kontakt__meta dt { margin-top: 18px; }
  .kontakt__meta dt:first-of-type { margin-top: 0; }
  .kontakt__meta dd { padding-bottom: 4px; }
  .kontakt__note {
    margin-top: 36px;
    padding: 22px 24px;
    font-size: 15.5px;
  }
  .kontakt-form { padding: 32px 24px; }
  .kontakt-form::before,
  .kontakt-form::after { width: 44px; height: 44px; }
  .kontakt-form h3 { font-size: 22px; margin-bottom: 22px; }
  .field input,
  .field textarea { font-size: 17px; padding: 14px 16px; }

  /* Footer */
  .footer { padding: 64px 0 32px; }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 40px;
  }
  .footer__brand .logo__img { height: 80px; }
  .footer__brand p { font-size: 15px; }
  .footer h4 { margin-bottom: 18px; }
  .footer ul { font-size: 15.5px; gap: 12px; }
  .footer__bottom {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    padding-top: 24px;
    font-size: 12.5px;
  }
}

/* ---------- Small Mobile ≤ 420px ---------- */
@media (max-width: 420px) {
  :root { --fs-h1: 34px; }

  .container, .container--wide { padding: 0 18px; }

  .site-header__inner { min-height: 86px; }
  .logo__img { height: 60px; }

  .hero__inner { padding: 44px 0 60px; gap: 40px; }
  .hero .kicker {
    font-size: 9.5px;
    letter-spacing: 0.14em;
  }
  .hero .kicker::before { width: 18px; }
  .hero h1 { font-size: clamp(30px, 8.5vw, 38px); }
  .hero__lead { font-size: 16px; }

  .manifest__dropcap { font-size: 88px; }
  .manifest__quote { font-size: 21px; }

  .spread-areas__head h2 { font-size: clamp(26px, 7.5vw, 34px); }

  .kontakt__phone { font-size: 30px; }

  .faq-item__trigger { font-size: 17.5px; padding: 20px 2px; }
  .faq-item__content { font-size: 15.5px; }
}

/* ============================================================
   Legal Pages (Impressum, Datenschutz, AAB)
   ============================================================ */
.legal {
  background: var(--paper);
  padding: 72px 0 96px;
  min-height: 60vh;
}
.legal__head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: left;
}
.legal__head h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: clamp(40px, 4.4vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 0 0 18px;
}
.legal__head h1 em { font-style: italic; color: var(--gold-deep); }
.legal__head p {
  font-family: 'Lora', serif;
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0;
}
.legal__body {
  max-width: 760px;
  margin: 0 auto;
  font-family: 'Lora', serif;
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal__body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.008em;
  color: var(--navy);
  margin: 48px 0 16px;
  padding-top: 24px;
  border-top: 1px solid var(--gold-line);
}
.legal__body h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.legal__body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  font-size: 21px;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 28px 0 12px;
}
.legal__body p { margin: 0 0 1em; }
.legal__body ul {
  margin: 0 0 1em;
  padding-left: 20px;
}
.legal__body ul li { margin-bottom: 6px; }
.legal__body strong { color: var(--navy); font-weight: 600; }
.legal__body a { color: var(--navy); text-decoration-color: var(--gold); }
.legal__body a:hover { color: var(--gold-deep); }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-muted);
  text-decoration: none;
}
.legal__back::before { content: '←'; font-size: 16px; }
.legal__back:hover { color: var(--navy); }
