/* Extracted from 02_01_wege-nach-deutschland.html - style block 1 */
/* ═══════════════════════════════════════════════════
   RESET + TOKENS
═══════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --ink:    #17160E;
  --cream:  #F3EFE6;
  --gold:   #BF844A;
  --gold-l: #D4A76A;
  --muted:  #6C6660;
  --serif:  var(--font-headings), system-ui, sans-serif;
  --sans:   var(--font-body), system-ui, sans-serif;
  --px:     clamp(1.5rem, 6vw, 6.5rem);
  --ease:   cubic-bezier(0.16, 1, 0.3, 1);
}

html { font-size: 16px; scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { background: var(--cream); color: var(--ink); font-family: var(--sans); overflow-x: hidden; cursor: none; }

/* ── CURSOR ── */
.cursor { position: fixed; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; pointer-events: none; z-index: 9999; transform: translate(-50%,-50%); transition: transform 0.1s ease, width 0.3s var(--ease), height 0.3s var(--ease); mix-blend-mode: multiply; }
.cursor-ring { position: fixed; width: 32px; height: 32px; border: 1px solid rgba(191,132,74,0.4); border-radius: 50%; pointer-events: none; z-index: 9998; transform: translate(-50%,-50%); transition: transform 0.18s ease, width 0.3s var(--ease), height 0.3s var(--ease), border-color 0.3s ease; }

/* ── GRAIN ── */
.grain { position: absolute; inset: 0; pointer-events: none; z-index: 0; opacity: 0.028; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E"); background-size: 300px 300px; }

/* ── PROGRESS ── */
.progress { position: fixed; top: 0; left: 0; height: 2px; background: var(--gold); width: 0%; z-index: 999; transition: width 0.1s linear; }

/* ── REVEAL ── */
.r { opacity: 0; transform: translateY(22px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.r.on { opacity: 1; transform: translateY(0); }
.r.d1.on { transition-delay: 0.1s; }
.r.d2.on { transition-delay: 0.2s; }
.r.d3.on { transition-delay: 0.3s; }
.r.d4.on { transition-delay: 0.4s; }
.r.d5.on { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════════ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 500; padding: 1.375rem var(--px); display: flex; align-items: center; justify-content: space-between; transition: background 0.4s ease, backdrop-filter 0.4s ease, border-color 0.4s ease; border-bottom: 1px solid transparent; }
.nav.scrolled { background: rgba(243,239,230,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom-color: rgba(23,22,14,0.07); }
.nav__logo { font-family: var(--serif); font-weight: 400; font-size: 1.1875rem; color: var(--ink); text-decoration: none; letter-spacing: 0.03em; display: flex; align-items: center; gap: 0.625rem; }
.nav__logo-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.nav__links { display: flex; align-items: center; gap: 2.5rem; }
.nav__link { font-family: var(--sans); font-size: 0.75rem; color: var(--muted); text-decoration: none; letter-spacing: 0.06em; transition: color 0.2s ease; }
.nav__link:hover, .nav__link--active { color: var(--ink); }
.nav__cta { font-family: var(--sans); font-size: 0.8125rem; font-weight: 500; color: var(--ink); text-decoration: none; padding: 0.6875rem 1.375rem; border: 1.5px solid rgba(23,22,14,0.2); letter-spacing: 0.04em; transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease; }
.nav__cta:hover { border-color: var(--gold); background: var(--ink); color: var(--cream); }
.nav__menu { display: none; background: none; border: none; cursor: none; padding: 0.25rem; }
.nav__menu-line { display: block; width: 22px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: transform 0.3s ease, opacity 0.3s ease; }

/* ═══════════════════════════════════════════════════
   BREADCRUMB
═══════════════════════════════════════════════════ */
.breadcrumb {
  background: var(--cream);
  padding: 5.5rem var(--px) 0;
  position: relative;
}
.breadcrumb__inner {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: var(--sans); font-size: 0.6875rem;
  color: var(--muted); letter-spacing: 0.04em;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(23,22,14,0.07);
}
.breadcrumb__link { color: var(--muted); text-decoration: none; transition: color 0.2s ease; }
.breadcrumb__link:hover { color: var(--ink); }
.breadcrumb__sep { color: rgba(23,22,14,0.2); }
.breadcrumb__current { color: var(--ink); }

/* ═══════════════════════════════════════════════════
   PAGE HERO
═══════════════════════════════════════════════════ */
.phero {
  background: var(--cream);
  padding: clamp(3.5rem, 7vw, 6rem) var(--px) clamp(4.5rem, 9vw, 8rem);
  position: relative; overflow: hidden;
}
.phero__eyebrow {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem;
}
.phero__eyebrow-line { width: 0; height: 1px; background: var(--gold); opacity: 0.7; transition: width 1.4s var(--ease) 0.2s; }
.phero__eyebrow-line.on { width: 3rem; }
.phero__eyebrow-text { font-family: var(--sans); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); }

.phero__layout {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 0 clamp(3rem, 7vw, 8rem); align-items: end;
}
.phero__headline {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  line-height: 1.1; color: var(--ink);
  letter-spacing: -0.01em;
}
.phero__headline em { font-style: italic; color: var(--gold); }

.phero__right { padding-bottom: 0.25rem; }
.phero__sub {
  font-family: var(--sans); font-size: clamp(1rem, 1.6vw, 1.1875rem);
  line-height: 1.72; color: var(--muted); margin-bottom: 2.25rem;
}
.phero__sub strong { color: var(--ink); font-weight: 500; }

.phero__meta {
  display: flex; gap: 2.5rem; flex-wrap: wrap;
}
.phero__meta-item {
  display: flex; flex-direction: column; gap: 0.25rem;
}
.phero__meta-num {
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: 1.625rem; line-height: 1; color: var(--gold);
}
.phero__meta-label {
  font-family: var(--sans); font-size: 0.5625rem; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted);
}

/* Background letter */
.phero__bg {
  position: absolute; bottom: -0.1em; right: calc(var(--px) - 0.05em);
  font-family: var(--serif); font-weight: 400; font-style: italic;
  font-size: clamp(10rem, 22vw, 20rem); line-height: 1;
  color: rgba(23,22,14,0.025); user-select: none; pointer-events: none;
  letter-spacing: -0.04em;
}

/* ═══════════════════════════════════════════════════
   ORIENTIERUNG — WHICH PATH FOR WHOM
═══════════════════════════════════════════════════ */
.orient {
  background:
    radial-gradient(circle at 82% 2%, rgba(191, 132, 74, 0.16), transparent 28rem),
    radial-gradient(circle at 0% 100%, rgba(191, 132, 74, 0.12), transparent 24rem),
    linear-gradient(135deg, #11110d 0%, #17160e 48%, #10100c 100%);
  padding: clamp(2.6rem, 5vw, 4.6rem) var(--px) clamp(3.8rem, 7vw, 6.8rem);
  position: relative; overflow: hidden;
  color: var(--cream);
}
.orient::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    linear-gradient(135deg, transparent 0 68%, rgba(191, 132, 74, 0.2) 68.2%, transparent 68.7%),
    linear-gradient(45deg, transparent 0 73%, rgba(191, 132, 74, 0.16) 73.2%, transparent 73.65%);
  background-size: 360px 360px;
  background-position: right top;
}
.orient__header {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 0 clamp(3rem, 7vw, 8rem);
  margin-bottom: clamp(4rem, 8vw, 7rem); align-items: end;
  position: relative; z-index: 1;
}
.orient__label { font-family: var(--sans); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: flex; align-items: center; gap: 0.625rem; opacity: 0.8; }
.orient__label::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); opacity: 0.6; flex-shrink: 0; }
.orient__headline { font-family: var(--serif); font-weight: 400; font-size: clamp(1.875rem, 3.8vw, 3.25rem); line-height: 1.18; color: var(--cream); }
.orient__sub { font-family: var(--sans); font-size: clamp(0.9375rem, 1.4vw, 1.0625rem); line-height: 1.72; color: rgba(243,239,230,0.4); align-self: end; }
.orient__sub strong { color: rgba(243,239,230,0.78); font-weight: 500; }

.orient__grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.55rem);
  background: transparent;
  perspective: 1000px;
  position: relative; z-index: 1;
}

.wcard {
  min-height: clamp(12.5rem, 20vw, 15rem);
  border: 2px solid rgba(212, 165, 116, 0.58);
  border-radius: 12px;
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 132, 74, 0.18), transparent 12rem),
    linear-gradient(145deg, rgba(32, 31, 24, 0.98), rgba(12, 12, 9, 0.98));
  box-shadow:
    0 20px 55px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  padding: clamp(1.25rem, 2.2vw, 1.85rem);
  position: relative; cursor: none; text-decoration: none;
  display: flex; flex-direction: column; overflow: hidden;
  color: var(--cream);
  transform-style: preserve-3d;
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.65s var(--ease), border-color 0.28s ease, box-shadow 0.28s ease, transform 0.45s var(--ease), background 0.28s ease;
}
.wcard.on { opacity: 1; transform: translateY(0); }
.wcard:hover,
.wcard:focus-visible {
  border-color: rgba(212, 165, 116, 0.92);
  background:
    radial-gradient(circle at 0% 0%, rgba(191, 132, 74, 0.24), transparent 12rem),
    linear-gradient(145deg, rgba(34, 33, 26, 1), rgba(10, 10, 8, 1));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(212, 165, 116, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  outline: none;
  transform: translateY(-4px);
}
.wcard::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%),
    linear-gradient(90deg, transparent, rgba(212, 165, 116, 0.08), transparent);
  opacity: 0.72;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.wcard:hover::before,
.wcard:focus-visible::before { opacity: 1; }
.wcard > * { position: relative; z-index: 1; }

.wcard__num { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: clamp(2.25rem, 4vw, 3.2rem); line-height: 0.9; color: var(--gold-l); margin-bottom: clamp(0.8rem, 1.8vw, 1.15rem); user-select: none; transition: color 0.28s ease, opacity 0.28s ease; }
.wcard:hover .wcard__num,
.wcard:focus-visible .wcard__num { color: #f0c987; }

.wcard__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.25rem, 1.75vw, 1.75rem); line-height: 1.08; color: var(--cream); margin-bottom: 0.55rem; transition: color 0.28s ease; }
.wcard:hover .wcard__title { color: var(--cream); }

.wcard__desc { font-family: var(--sans); font-size: clamp(0.78rem, 0.95vw, 0.88rem); line-height: 1.55; color: rgba(243, 239, 230, 0.72); flex: 1; margin-bottom: 1rem; transition: color 0.28s ease; }
.wcard:hover .wcard__desc,
.wcard:focus-visible .wcard__desc { color: rgba(243, 239, 230, 0.82); }

.wcard__consequence {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--sans); font-size: clamp(0.68rem, 0.8vw, 0.76rem); line-height: 1.45;
  color: rgba(243, 239, 230, 0.68);
  padding-top: 0.92rem; border-top: 1px solid rgba(212, 165, 116, 0.22);
  margin-top: auto; transition: border-color 0.28s ease, color 0.28s ease;
  font-weight: 500;
}
.wcard__consequence::after {
  content: '→';
  flex: 0 0 auto;
  color: var(--gold-l);
  font-size: 1.15rem;
  line-height: 1;
  transition: transform 0.28s ease;
}
.wcard:hover .wcard__consequence,
.wcard:focus-visible .wcard__consequence { border-top-color: rgba(212, 165, 116, 0.42); color: rgba(243, 239, 230, 0.86); }
.wcard:hover .wcard__consequence::after,
.wcard:focus-visible .wcard__consequence::after { transform: translateX(4px); }

.wcard__arrow { display: none; }

/* Special: bright uncertain card */
.wcard--uncertain {
  border-color: rgba(244, 215, 154, 0.82);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.86), transparent 10rem),
    linear-gradient(135deg, #fffaf0 0%, #f8e7bf 100%);
  box-shadow:
    0 26px 80px rgba(191, 132, 74, 0.28),
    0 0 34px rgba(212, 165, 116, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}
.wcard--uncertain .wcard__num { color: rgba(191, 132, 74, 0.82); }
.wcard--uncertain:hover .wcard__num,
.wcard--uncertain:focus-visible .wcard__num { color: rgba(191, 132, 74, 0.9); }
.wcard--uncertain .wcard__title { color: var(--ink); }
.wcard--uncertain .wcard__desc { color: rgba(23, 22, 14, 0.72); }
.wcard--uncertain .wcard__consequence { color: rgba(23, 22, 14, 0.72); border-top-color: rgba(191, 132, 74, 0.24); }
.wcard--uncertain:hover,
.wcard--uncertain:focus-visible {
  border-color: rgba(244, 215, 154, 1);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 255, 255, 0.92), transparent 10rem),
    linear-gradient(135deg, #fffaf0 0%, #f5dca4 100%);
}
.wcard--uncertain:hover .wcard__title,
.wcard--uncertain:focus-visible .wcard__title { color: var(--ink); }
.wcard--uncertain:hover .wcard__desc,
.wcard--uncertain:focus-visible .wcard__desc { color: rgba(23, 22, 14, 0.78); }

/* ═══════════════════════════════════════════════════
   PATH DETAIL SECTION — each pathway brief
═══════════════════════════════════════════════════ */
.paths {
  background: var(--cream);
  padding: clamp(5rem, 11vw, 9rem) var(--px);
  position: relative; overflow: hidden;
}
.paths__header { margin-bottom: clamp(4rem, 8vw, 7rem); }
.paths__label { font-family: var(--sans); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.375rem; display: flex; align-items: center; gap: 0.625rem; opacity: 0.8; }
.paths__label::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); opacity: 0.6; flex-shrink: 0; }
.paths__headline { font-family: var(--serif); font-weight: 400; font-size: clamp(1.875rem, 3.8vw, 3.25rem); line-height: 1.18; color: var(--ink); max-width: 560px; }

.path {
  display: grid; grid-template-columns: 5rem 1fr 1.5fr;
  gap: 0 clamp(2.5rem, 5vw, 5.5rem);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0; padding-left: 1.5rem;
  border-bottom: 1px solid rgba(23,22,14,0.07);
  align-items: start; position: relative;
}
.path:first-of-type { border-top: 1px solid rgba(23,22,14,0.07); }

.path::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 2px; background: var(--gold); transform: scaleY(0); transform-origin: top; transition: transform 0.45s var(--ease); }
.path:hover::before { transform: scaleY(1); }

.path__num { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 3.75rem; line-height: 1; color: rgba(23,22,14,0.06); user-select: none; padding-top: 0.1rem; transition: color 0.35s ease; }
.path:hover .path__num { color: rgba(191,132,74,0.2); }

.path__left {}
.path__tag { font-family: var(--sans); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.625rem; display: block; }
.path__title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.125rem, 1.9vw, 1.5rem); line-height: 1.25; color: var(--ink); margin-bottom: 1rem; }
.path__links { display: flex; flex-direction: column; gap: 0.4rem; }
.path__link { font-family: var(--sans); font-size: 0.8125rem; color: var(--muted); text-decoration: none; letter-spacing: 0.02em; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s ease; }
.path__link:hover { color: var(--gold); }
.path__link::before { content: '→'; font-size: 0.6875rem; color: rgba(23,22,14,0.2); transition: color 0.2s ease, transform 0.2s ease; }
.path__link:hover::before { color: var(--gold); transform: translateX(3px); }

.path__right {}
.path__desc { font-family: var(--sans); font-size: clamp(0.875rem, 1.3vw, 1rem); line-height: 1.78; color: var(--muted); margin-bottom: 1.25rem; }
.path__desc strong { color: var(--ink); font-weight: 500; }

.path__note {
  font-family: var(--sans); font-size: 0.8125rem; line-height: 1.6;
  color: var(--ink); font-weight: 500;
  padding-left: 1.125rem; border-left: 2px solid var(--gold);
}

/* ═══════════════════════════════════════════════════
   REIHENFOLGE SECTION
═══════════════════════════════════════════════════ */
.order {
  background: var(--ink);
  padding: clamp(5rem, 11vw, 9rem) var(--px);
  position: relative; overflow: hidden;
}
.order__inner { display: grid; grid-template-columns: 1fr 2fr; gap: 0 clamp(3rem, 7vw, 8rem); align-items: start; position: relative; z-index: 1; }
.order__left { position: sticky; top: 6rem; }
.order__label { font-family: var(--sans); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.625rem; opacity: 0.8; }
.order__label::before { content: ''; width: 1.5rem; height: 1px; background: var(--gold); opacity: 0.6; flex-shrink: 0; }
.order__headline { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 2.8vw, 2.375rem); line-height: 1.22; color: var(--cream); margin-bottom: 1.25rem; }
.order__sub { font-family: var(--sans); font-size: 0.875rem; line-height: 1.7; color: rgba(243,239,230,0.38); }

.order__steps { display: flex; flex-direction: column; }
.order__step {
  display: grid; grid-template-columns: 5.5rem 1fr;
  gap: 0 clamp(2rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid rgba(243,239,230,0.06);
  align-items: start;
}
.order__step:first-child { border-top: 1px solid rgba(243,239,230,0.06); }
.order__step-marker { display: flex; flex-direction: column; align-items: flex-start; gap: 0.4rem; padding-top: 0.15rem; }
.order__step-num { font-family: var(--serif); font-weight: 400; font-style: italic; font-size: 3rem; line-height: 1; user-select: none; }
.order__step:nth-child(1) .order__step-num { color: rgba(191,132,74,0.1); }
.order__step:nth-child(2) .order__step-num { color: rgba(191,132,74,0.17); }
.order__step:nth-child(3) .order__step-num { color: rgba(191,132,74,0.26); }
.order__step-dot { width: 5px; height: 5px; border-radius: 50%; flex-shrink: 0; }
.order__step:nth-child(1) .order__step-dot { background: rgba(191,132,74,0.3); }
.order__step:nth-child(2) .order__step-dot { background: rgba(191,132,74,0.55); }
.order__step:nth-child(3) .order__step-dot { background: var(--gold); }
.order__step-tag { font-family: var(--sans); font-size: 0.5625rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); opacity: 0.65; margin-bottom: 0.625rem; display: block; }
.order__step-title { font-family: var(--serif); font-weight: 400; font-size: clamp(1.0625rem, 1.8vw, 1.4375rem); line-height: 1.25; color: var(--cream); margin-bottom: 0.625rem; }
.order__step-text { font-family: var(--sans); font-size: clamp(0.875rem, 1.3vw, 1rem); line-height: 1.72; color: rgba(243,239,230,0.38); }
.order__step-text strong { color: rgba(243,239,230,0.75); font-weight: 500; }

/* ═══════════════════════════════════════════════════
   CLOSING CTA
═══════════════════════════════════════════════════ */
.closing {
  background: var(--ink);
  border-top: 1px solid rgba(243,239,230,0.06);
  padding: clamp(7rem, 15vw, 12rem) var(--px);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.closing::after { content: ''; position: absolute; width: 600px; height: 600px; background: radial-gradient(circle, rgba(191,132,74,0.07) 0%, transparent 70%); top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
.closing__rule { width: 0; height: 1px; background: var(--gold); opacity: 0.35; margin-bottom: 3rem; transition: width 1.4s var(--ease); }
.closing__rule.on { width: 4rem; }
.closing__text { font-family: var(--serif); font-weight: 400; font-size: clamp(1.5rem, 3.2vw, 2.625rem); line-height: 1.28; color: rgba(243,239,230,0.6); max-width: 680px; margin-bottom: 3.5rem; position: relative; z-index: 1; }
.closing__text em { color: var(--cream); font-style: italic; }
.closing__btn { display: inline-flex; align-items: center; gap: 1rem; font-family: var(--sans); font-size: 1rem; font-weight: 500; color: var(--ink); background: var(--cream); border: 1.5px solid transparent; padding: 1.3125rem 2.5rem; cursor: none; letter-spacing: 0.04em; text-decoration: none; position: relative; overflow: hidden; transition: border-color 0.3s ease; z-index: 1; }
.closing__btn::before { content: ''; position: absolute; inset: 0; background: var(--gold); transform: translateX(-100%); transition: transform 0.5s var(--ease); }
.closing__btn:hover::before { transform: translateX(0); }
.closing__btn:hover { border-color: var(--gold); }
.closing__btn span, .closing__btn-arrow { position: relative; z-index: 1; }
.closing__btn-arrow { font-size: 1.125rem; transition: transform 0.3s ease; }
.closing__btn:hover .closing__btn-arrow { transform: translateX(5px); }
.closing__note { margin-top: 1.375rem; font-family: var(--sans); font-size: 0.75rem; color: rgba(243,239,230,0.22); letter-spacing: 0.04em; position: relative; z-index: 1; }

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
.footer { background: var(--ink); border-top: 1px solid rgba(243,239,230,0.06); padding: clamp(2.5rem, 5vw, 3.75rem) var(--px); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1.5rem; }
.footer__logo { font-family: var(--serif); font-weight: 400; font-size: 1rem; color: rgba(243,239,230,0.3); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.footer__logo-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gold); opacity: 0.4; }
.footer__links { display: flex; gap: 2.25rem; flex-wrap: wrap; }
.footer__link { font-family: var(--sans); font-size: 0.75rem; color: rgba(243,239,230,0.22); text-decoration: none; letter-spacing: 0.04em; transition: color 0.2s ease; }
.footer__link:hover { color: rgba(243,239,230,0.55); }
.footer__copy { font-family: var(--sans); font-size: 0.6875rem; color: rgba(243,239,230,0.15); letter-spacing: 0.04em; }

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .phero__layout { grid-template-columns: 1fr; gap: 2.5rem; }
}
@media (max-width: 960px) {
  .orient__header, .order__inner { grid-template-columns: 1fr; gap: 2rem; }
  .order__left { position: static; }
  .orient__grid { grid-template-columns: repeat(2, 1fr); }
  .path { grid-template-columns: 4rem 1fr; grid-template-rows: auto auto; gap: 0.875rem clamp(1.25rem, 3vw, 2.5rem); }
  .path__right { grid-column: 2; }
  .path__num { font-size: 2.5rem; }
  .nav__links { display: none; }
  .nav__menu { display: block; }
}
@media (max-width: 600px) {
  .orient__grid { grid-template-columns: 1fr; }
  .wcard--uncertain { grid-column: auto; }
  .path { grid-template-columns: 1fr; gap: 1rem; padding-left: 1.25rem; }
  .path__right { grid-column: 1; }
  .path__num { font-size: 2rem; }
  .order__step { grid-template-columns: 3.5rem 1fr; gap: 0 1.25rem; }
  .order__step-num { font-size: 2.25rem; }
  .footer { flex-direction: column; align-items: flex-start; }
  .footer__links { gap: 1.5rem; }
  .closing { text-align: left; align-items: flex-start; }
  .closing__rule { align-self: flex-start; }
}
