/* ============================================================
   AK Hospitality Consult — Landing Page
   Design language: horizonreal — Inter + cream/dark alternation
   ============================================================ */

:root {
  /* Palette — horizon-aligned */
  --bg:          #fafaf8;   /* page base (near-white) */
  --bg-cream:    #f5f0ea;   /* warm cream section */
  --bg-cream-2:  #eae4db;   /* deeper cream band */
  --bg-dark:     #1a1a1a;   /* dark section */
  --bg-dark-2:   #2a2a2a;   /* raised on dark */
  --bg-dark-3:   #141414;   /* footer / deepest */

  --ink:         #1a1a1a;   /* primary text on light */
  --ink-dim:     #4a4a4a;   /* secondary on light */
  --ink-mute:    #7a7a7a;   /* tertiary on light */
  --ink-soft:    #b5b0a8;   /* very soft on light */

  --ink-inv:     #ffffff;   /* primary text on dark */
  --ink-inv-dim: #b5b0a8;   /* secondary on dark */
  --ink-inv-mute:#7a756c;   /* tertiary on dark */

  --line:        rgba(26, 26, 26, 0.12);
  --line-strong: rgba(26, 26, 26, 0.24);
  --line-inv:    rgba(255, 255, 255, 0.14);
  --line-inv-strong: rgba(255, 255, 255, 0.28);

  --gold:        #c4a97d;   /* horizon gold */
  --gold-soft:   #d9c19a;
  --gold-deep:   #9b8258;

  --ok:          #86b08a;

  /* Type — Inter only, weight-driven hierarchy */
  --sans: 'Inter', 'Inter Fallback', -apple-system, BlinkMacSystemFont,
          'Helvetica Neue', Arial, sans-serif;

  /* Rhythm */
  --max:       1280px;
  --pad-x:     clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 12vw, 160px);

  /* Motion */
  --ease:     cubic-bezier(.2, .7, .2, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  background: var(--bg);
}
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}
img, svg, video { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; padding: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.02em; }
p { margin: 0; }
input, textarea, select { font: inherit; color: inherit; background: transparent; border: none; outline: none; }
::selection { background: var(--gold); color: var(--ink); }

/* ============================================================
   UTILITIES
   ============================================================ */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--ink);
  color: var(--ink-inv);
  padding: 8px 14px;
  z-index: 999;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.skip-link:focus { left: 12px; top: 12px; }

/* Shared gold divider (horizon signature) */
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(196, 169, 125, 0.5) 30%,
    rgba(196, 169, 125, 0.5) 70%,
    transparent 100%);
}

/* ============================================================
   LOGO / BRAND
   ============================================================ */
.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  color: var(--ink);
}
.brand-mark {
  font-family: var(--sans);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.04em;
}
.brand-dot { color: var(--gold); }
.brand-sub {
  display: inline-flex;
  gap: 4px;
  font-size: 10.5px;
  letter-spacing: 0.02em;
  transform: translateY(-1px);
}
.brand-sub .light { font-weight: 300; color: var(--ink-mute); }
.brand-sub .bold  { font-weight: 700; color: var(--ink); letter-spacing: 0.01em; }

/* Brand inverted variant on dark */
.on-dark .brand,
.on-dark.brand { color: var(--ink-inv); }
.on-dark .brand-sub .light { color: var(--ink-inv-dim); }
.on-dark .brand-sub .bold { color: var(--ink-inv); }

/* ============================================================
   BUTTONS — horizon style: sharp, uppercase, wide tracking
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 30px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 12.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  transition: all .35s var(--ease);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
.btn-sm { padding: 12px 22px; font-size: 11px; letter-spacing: 0.2em; gap: 8px; }
.btn-lg { padding: 20px 40px; font-size: 13.5px; letter-spacing: 0.24em; }

/* Primary: filled dark on light backgrounds */
.btn-primary {
  background: var(--ink);
  color: var(--ink-inv);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: transparent;
  color: var(--ink);
}
.btn-primary svg { transition: transform .35s var(--ease); }
.btn-primary:hover svg { transform: translateX(4px); }

/* Primary on dark backgrounds (hero, contact) */
.on-dark .btn-primary,
.btn-primary.on-dark {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}
.on-dark .btn-primary:hover,
.btn-primary.on-dark:hover {
  background: transparent;
  color: var(--ink-inv);
}

/* Outline / ghost */
.btn-ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: transparent;
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--ink-inv);
  border-color: var(--ink);
}
.on-dark .btn-ghost {
  border-color: var(--line-inv-strong);
  color: var(--ink-inv);
}
.on-dark .btn-ghost:hover {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}

/* Text link button */
.btn-text {
  padding: 16px 0;
  color: var(--ink-dim);
  font-family: var(--sans);
  font-weight: 500;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  border-radius: 0;
  border: none;
  background: transparent;
  position: relative;
}
.btn-text::after {
  content: "";
  position: absolute;
  left: 0; bottom: 10px;
  width: 100%; height: 1px;
  background: var(--line-strong);
  transform-origin: right;
  transform: scaleX(1);
  transition: transform .45s var(--ease), background .3s var(--ease);
}
.btn-text:hover { color: var(--ink); }
.btn-text:hover::after {
  transform-origin: left;
  background: var(--gold);
}
.on-dark .btn-text { color: var(--ink-inv-dim); }
.on-dark .btn-text::after { background: var(--line-inv-strong); }
.on-dark .btn-text:hover { color: var(--ink-inv); }
.on-dark .btn-text:hover::after { background: var(--gold); }

/* ============================================================
   HEADER — on-dark variant (hero is dark)
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s var(--ease),
              border-color .4s var(--ease),
              padding .4s var(--ease),
              color .3s var(--ease);
  padding: 20px 0;
  color: var(--ink-inv);
}
.site-header .brand,
.site-header .brand-sub .light { color: var(--ink-inv); }
.site-header .brand-sub .light { color: var(--ink-inv-dim); }
.site-header .brand-sub .bold { color: var(--ink-inv); }

.site-header.scrolled {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  padding: 14px 0;
  color: var(--ink);
}
.site-header.scrolled .brand { color: var(--ink); }
.site-header.scrolled .brand-sub .light { color: var(--ink-mute); }
.site-header.scrolled .brand-sub .bold { color: var(--ink); }
.site-header.scrolled .nav-link { color: var(--ink-dim); }
.site-header.scrolled .header-phone { color: var(--ink); }
.site-header.scrolled .mobile-toggle span { background: var(--ink); }

/* Header CTA over dark hero: invert button so hover stays visible */
.site-header:not(.scrolled) .btn-primary {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}
.site-header:not(.scrolled) .btn-primary:hover {
  background: transparent;
  color: var(--ink-inv);
  border-color: var(--ink-inv);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.header-nav {
  display: none;
  gap: 32px;
}
.nav-link {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  color: var(--ink-inv-dim);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 1px; width: 100%;
  background: var(--gold);
  transform-origin: right;
  transform: scaleX(0);
  transition: transform .4s var(--ease);
}
.nav-link:hover { color: var(--ink-inv); }
.site-header.scrolled .nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform-origin: left; transform: scaleX(1); }

.header-actions {
  display: none;
  align-items: center;
  gap: 24px;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-inv);
  letter-spacing: 0.06em;
  transition: color .3s var(--ease);
}
.header-phone:hover { color: var(--gold); }
.phone-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 0 0 rgba(134, 176, 138, .6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(134, 176, 138, .6); }
  70%  { box-shadow: 0 0 0 8px rgba(134, 176, 138, 0); }
  100% { box-shadow: 0 0 0 0 rgba(134, 176, 138, 0); }
}

.mobile-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  width: 32px;
  height: 24px;
  justify-content: center;
  align-items: center;
}
.mobile-toggle span {
  width: 22px; height: 1px;
  background: var(--ink-inv);
  transition: transform .3s var(--ease), opacity .3s var(--ease), background .3s var(--ease);
}
.mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.mobile-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

.mobile-nav {
  position: fixed;
  inset: 68px 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid transparent;
  padding: 0 var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease), padding .4s var(--ease), border-color .3s var(--ease);
  z-index: 99;
  visibility: hidden;
}
.mobile-nav.open {
  max-height: 80vh;
  padding: 28px var(--pad-x);
  border-bottom-color: var(--line);
  visibility: visible;
}
.mobile-nav a {
  padding: 14px 0;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-nav .mobile-cta {
  margin-top: 16px;
  padding: 16px;
  background: var(--ink);
  color: var(--ink-inv);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-align: center;
  border: none;
}
.mobile-nav .mobile-phone {
  font-size: 13px;
  color: var(--ink-mute);
  border: none;
  padding-top: 20px;
  letter-spacing: 0.08em;
}

@media (min-width: 900px) {
  .header-nav, .header-actions { display: flex; }
  .mobile-toggle { display: none; }
  .mobile-nav { display: none; }
}

/* ============================================================
   HERO — dark like horizon hero, portrait as visual anchor
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: clamp(120px, 16vw, 180px);
  padding-bottom: clamp(60px, 10vw, 120px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse 90% 70% at 75% 35%, rgba(196, 169, 125, 0.08), transparent 65%),
    radial-gradient(ellipse 60% 50% at 20% 90%, rgba(196, 169, 125, 0.04), transparent 60%),
    var(--bg-dark);
  color: var(--ink-inv);
}
.hero::before {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(196, 169, 125, 0.35) 30%,
    rgba(196, 169, 125, 0.35) 70%,
    transparent);
  z-index: 3;
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.95  0 0 0 0 0.92  0 0 0 0 0.85  0 0 0 0.15 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 8vw, 96px);
  align-items: center;
  position: relative;
  z-index: 2;
}
@media (min-width: 960px) {
  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 28px;
}
.eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2.1rem, 5.8vw, 4.75rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink-inv);
  margin-bottom: clamp(24px, 3vw, 40px);
  word-break: keep-all;
  overflow-wrap: break-word;
  hyphens: manual;
}
.hero-headline .line {
  display: block;
  overflow: hidden;
}
.hero-headline em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.hero-headline .period {
  color: var(--gold);
  font-weight: 300;
}

.hero-sub {
  font-family: var(--sans);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.6;
  color: var(--ink-inv-dim);
  max-width: 50ch;
  margin-bottom: clamp(32px, 4vw, 48px);
  font-weight: 400;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  align-items: center;
  margin-bottom: clamp(48px, 7vw, 88px);
}

/* Hero buttons inverted */
.hero .btn-primary {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}
.hero .btn-primary:hover {
  background: transparent;
  color: var(--ink-inv);
}
.hero .btn-text { color: var(--ink-inv-dim); }
.hero .btn-text::after { background: var(--line-inv-strong); }
.hero .btn-text:hover { color: var(--ink-inv); }
.hero .btn-text:hover::after { background: var(--gold); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 32px);
  padding-top: 32px;
  border-top: 1px solid var(--line-inv);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.trust-num {
  font-family: var(--sans);
  font-size: clamp(28px, 2.6vw, 36px);
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink-inv);
  line-height: 1;
}
.trust-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-inv-mute);
}
.trust-divider {
  width: 1px;
  height: 28px;
  background: var(--line-inv);
}

/* Hero media — portrait */
.hero-media { position: relative; }
.portrait-frame {
  margin: 0;
  position: relative;
  width: 100%;
  max-width: 480px;
  margin-left: auto;
}
.portrait-wrap {
  position: relative;
  overflow: hidden;
  background: var(--bg-dark-2);
  aspect-ratio: 3 / 4;
  border-radius: 2px;
}
.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(20, 20, 20, 0.7) 100%);
  z-index: 2;
  pointer-events: none;
}
.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px var(--line-inv-strong);
  pointer-events: none;
  z-index: 3;
}
.portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(0.95) contrast(1.04);
  animation: kenburns 24s var(--ease-out) infinite alternate;
}
@keyframes kenburns {
  from { transform: scale(1.02); }
  to   { transform: scale(1.08) translate(-1%, -1%); }
}

.portrait-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(20, 20, 20, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--line-inv-strong);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-inv);
}
.badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse 2.4s ease-out infinite;
}

.portrait-frame figcaption {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 16px;
  border-top: 1px solid var(--line-inv);
  margin-top: 16px;
}
.cap-name {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink-inv);
  letter-spacing: -0.015em;
}
.cap-role {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-inv-mute);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  left: var(--pad-x);
  bottom: 32px;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-inv-mute);
  z-index: 2;
}
.cue-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 2.4s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@media (min-width: 1200px) { .scroll-cue { display: flex; } }

/* ============================================================
   MARQUEE — between hero (dark) and first light section
   ============================================================ */
.marquee {
  border-block: 1px solid var(--line-inv);
  padding: 22px 0;
  overflow: hidden;
  background: var(--bg-dark-2);
}
.marquee-track {
  display: flex;
  gap: 40px;
  white-space: nowrap;
  animation: scroll-x 48s linear infinite;
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(18px, 2.2vw, 26px);
  color: var(--ink-inv-dim);
  letter-spacing: -0.01em;
}
.marquee-track .dot {
  color: var(--gold);
  font-size: 0.55em;
  align-self: center;
}
@keyframes scroll-x {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION BASICS
   ============================================================ */
.section {
  padding-block: var(--section-y);
  position: relative;
}

/* Alternating section backgrounds — horizon pattern */
.situations { background: var(--bg-cream); }
.seeking    { background: var(--bg); }
.process    { background: var(--bg-cream); }
.about      { background: var(--bg); }
.network    { background: var(--bg-dark); color: var(--ink-inv); }
.faq        { background: var(--bg-cream); }
.contact    { background: var(--bg-dark); color: var(--ink-inv); }

/* Section header */
.section-header {
  max-width: 780px;
  margin-bottom: clamp(56px, 8vw, 96px);
}
.section-header.seeking-header { max-width: 880px; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}
.section-label.center { margin-inline: auto; display: flex; justify-content: center; }
.label-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 28px;
  height: 28px;
  padding: 0 8px;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.08em;
}

.section-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.04;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin-bottom: clamp(16px, 2vw, 28px);
}
.section-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  letter-spacing: -0.02em;
}
.network .section-title,
.contact .section-title { color: var(--ink-inv); }

.section-lede {
  font-family: var(--sans);
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.65;
  color: var(--ink-dim);
  max-width: 54ch;
  font-weight: 400;
}
.network .section-lede,
.contact .section-lede { color: var(--ink-inv-dim); }

/* ============================================================
   SITUATIONS
   ============================================================ */
.situation-list {
  display: flex;
  flex-direction: column;
}
.situation-row {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
  padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--line);
  transition: padding .4s var(--ease);
  position: relative;
  cursor: default;
}
.situation-row:last-child { border-bottom: 1px solid var(--line); }
.situation-row::before {
  content: "";
  position: absolute;
  left: -24px; right: -24px;
  top: 0; bottom: 0;
  background: var(--bg);
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
  z-index: -1;
}
.situation-row:hover::before { opacity: 1; }

.sit-num {
  font-family: var(--sans);
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: -0.02em;
  transition: color .4s var(--ease);
  font-variant-numeric: tabular-nums;
}
.situation-row:hover .sit-num { color: var(--gold); }

.sit-content h3 {
  font-family: var(--sans);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 8px;
}
.sit-content p {
  font-family: var(--sans);
  font-size: clamp(14px, 1vw, 16px);
  color: var(--ink-dim);
  line-height: 1.6;
  max-width: 60ch;
}

.sit-arrow {
  font-size: 22px;
  color: var(--ink-soft);
  transition: color .4s var(--ease), transform .4s var(--ease);
}
.situation-row:hover .sit-arrow {
  color: var(--gold);
  transform: translateX(8px);
}

@media (max-width: 720px) {
  .situation-row { grid-template-columns: 48px 1fr; }
  .sit-arrow { display: none; }
}

/* ============================================================
   SEEKING — white bg, bordered grid
   ============================================================ */
.seek-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg);
}
@media (min-width: 640px)  { .seek-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px)  { .seek-grid { grid-template-columns: repeat(3, 1fr); } }

.seek-card {
  padding: clamp(32px, 3vw, 48px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  transition: background .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 260px;
  background: var(--bg);
}
.seek-card:hover { background: var(--bg-cream); }
@media (min-width: 640px) {
  .seek-card:nth-child(2n) { border-right: none; }
}
@media (min-width: 980px) {
  .seek-card { border-right: 1px solid var(--line); }
  .seek-card:nth-child(2n) { border-right: 1px solid var(--line); }
  .seek-card:nth-child(3n) { border-right: none; }
  /* 5 items: 3 on row 1, 2 on row 2; last item spans cols 2-3 */
  .seek-card:nth-last-child(-n+2) { border-bottom: none; }
  .seek-card:last-child {
    grid-column: 2 / span 2;
    border-right: none;
  }
}

.seek-num {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(30px, 3.2vw, 44px);
  color: var(--gold);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: auto;
  font-style: italic;
}
.seek-card h3 {
  font-family: var(--sans);
  font-size: clamp(19px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
}
.seek-card p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-dim);
}

.criteria-card {
  background: var(--bg-cream-2);
}
.criteria-card .seek-num {
  color: var(--ok);
  font-style: normal;
  font-weight: 300;
}
.criteria-main {
  font-family: var(--sans) !important;
  font-size: clamp(26px, 3vw, 36px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  color: var(--ink) !important;
  letter-spacing: -0.03em !important;
}
.criteria-main strong { color: var(--gold); font-weight: 600; }
.criteria-note {
  font-size: 12px !important;
  color: var(--ink-mute) !important;
  font-family: var(--sans) !important;
  letter-spacing: 0.14em !important;
  line-height: 1.5 !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
}

/* ============================================================
   PROCESS
   ============================================================ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  counter-reset: step;
  position: relative;
}
@media (min-width: 860px) {
  .process-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
  }
  .process-grid::before {
    content: "";
    position: absolute;
    top: 12px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg,
      transparent,
      rgba(196, 169, 125, 0.4) 20%,
      rgba(196, 169, 125, 0.4) 80%,
      transparent);
    z-index: 0;
  }
}

.process-step {
  position: relative;
  z-index: 1;
  padding-top: 24px;
}
.process-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: var(--bg-cream);
  border: 1px solid var(--gold);
  border-radius: 50%;
  z-index: 1;
}
.process-step::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  z-index: 2;
}

.step-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 12px;
  margin-bottom: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.step-num {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(56px, 7vw, 96px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: var(--gold);
  font-variant-numeric: tabular-nums;
}
.step-tag {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding: 6px 12px;
  border: 1px solid var(--line-strong);
  border-radius: 99px;
}

.process-step h3 {
  font-family: var(--sans);
  font-weight: 500;
  font-size: clamp(20px, 2vw, 26px);
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.15;
  margin-bottom: 14px;
}
.process-step p {
  font-family: var(--sans);
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-dim);
  max-width: 42ch;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
@media (min-width: 960px) {
  .about-inner {
    grid-template-columns: 0.9fr 1.1fr;
  }
}

/* On mobile, hero portrait already shows Andreas — hide duplicate here */
@media (max-width: 959px) {
  .about-media { display: none; }
}

.about-media figure {
  margin: 0;
  position: relative;
  overflow: hidden;
}
.about-media img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 15%;
  filter: saturate(0.95) contrast(1.05);
  border-radius: 2px;
}
.about-media figcaption {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.about-title {
  font-size: clamp(1.75rem, 3.6vw, 3rem);
  margin-bottom: 32px;
  font-weight: 400;
  line-height: 1.12;
}
.about-title em {
  color: var(--gold);
  font-style: italic;
  font-weight: 300;
}
.about-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-dim);
  max-width: 58ch;
  margin-bottom: 40px;
}
.about-body strong { color: var(--ink); font-weight: 600; }
.about-body em { color: var(--gold); font-style: italic; font-weight: 400; }

.about-credentials {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.about-credentials li {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.5;
}
.cred-key {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  padding-top: 3px;
}
.cred-val { color: var(--ink); font-weight: 500; }
.cred-val a {
  color: var(--gold);
  transition: color .3s var(--ease);
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.cred-val a:hover { border-bottom-color: var(--gold); }

@media (max-width: 520px) {
  .about-credentials li { grid-template-columns: 1fr; gap: 4px; }
}

/* ============================================================
   NETWORK MANIFESTO — dark dramatic break
   ============================================================ */
.network {
  background:
    radial-gradient(ellipse 60% 50% at 50% 40%, rgba(196, 169, 125, 0.08), transparent 70%),
    var(--bg-dark);
  text-align: center;
}
.network-inner {
  max-width: 1040px;
  margin: 0 auto;
}
.network .section-label { color: var(--gold); }
.manifesto {
  font-family: var(--sans);
  font-weight: 300;
  font-size: clamp(2.2rem, 6vw, 5rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: var(--ink-inv);
  margin: 0 0 clamp(64px, 8vw, 120px);
  position: relative;
}
.manifesto em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.quote-mark {
  font-size: 0.85em;
  color: var(--gold);
  line-height: 0;
  margin-right: 0.1em;
  position: relative;
  top: 0.1em;
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 3vw, 40px);
  text-align: left;
  padding-top: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--line-inv);
  align-items: stretch;
}
.network-item {
  display: flex;
  flex-direction: column;
  padding: clamp(28px, 3vw, 40px) clamp(24px, 2.5vw, 32px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--line-inv);
  border-radius: 2px;
  height: 100%;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.network-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(196, 169, 125, 0.3);
}
.network-item p { margin-top: auto; padding-top: 8px; }
.net-num {
  display: inline-block;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  color: var(--gold);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--gold);
  min-width: 36px;
  text-transform: uppercase;
}
.network-item h3 {
  font-family: var(--sans);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-inv);
  margin-bottom: 12px;
}
.network-item p {
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.65;
  color: var(--ink-inv-dim);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}
@media (min-width: 960px) {
  .faq-inner {
    grid-template-columns: 1fr 1.6fr;
  }
  .faq-inner .section-header {
    position: sticky;
    top: 120px;
    margin-bottom: 0;
  }
}

.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  padding: 28px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.35;
  transition: color .3s var(--ease);
}
.faq-item summary:hover { color: var(--gold); }
.faq-item summary::-webkit-details-marker { display: none; }

.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
}
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  transition: transform .4s var(--ease);
}
.faq-icon::before {
  top: 50%; left: 0;
  width: 100%; height: 1px;
  transform: translateY(-50%);
}
.faq-icon::after {
  top: 0; left: 50%;
  width: 1px; height: 100%;
  transform: translateX(-50%);
}
.faq-item[open] .faq-icon::after { transform: translateX(-50%) scaleY(0); }

.faq-body {
  padding: 0 0 32px;
  max-width: 62ch;
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-dim);
  animation: faqOpen .5s var(--ease);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   CONTACT — dark like horizon
   ============================================================ */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(48px, 6vw, 88px);
  align-items: start;
}
@media (min-width: 960px) {
  .contact-inner { grid-template-columns: 0.9fr 1.1fr; }
}
.contact .section-label { color: var(--gold); }

.contact-direct {
  display: flex;
  flex-direction: column;
  margin-top: 40px;
  border-top: 1px solid var(--line-inv);
}
.contact-direct li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-inv);
  align-items: center;
}
.cd-label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-inv-mute);
}
.cd-value {
  font-family: var(--sans);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 500;
  color: var(--ink-inv);
  letter-spacing: -0.015em;
}
a.cd-value { transition: color .3s var(--ease); }
a.cd-value:hover { color: var(--gold); }

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--bg-dark-2);
  border: 1px solid var(--line-inv);
  border-radius: 2px;
  position: relative;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }

.form-field {
  position: relative;
  padding-top: 22px;
  margin-bottom: 14px;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 0 12px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 400;
  color: var(--ink-inv);
  border-bottom: 1px solid var(--line-inv);
  transition: border-color .3s var(--ease);
  border-radius: 0;
  resize: vertical;
}
.form-field textarea { min-height: 80px; }
.form-field select {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'><path d='M1 1l5 5 5-5' stroke='%23c4a97d' stroke-width='1.4' fill='none'/></svg>");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-field select option { background: var(--bg-dark-2); color: var(--ink-inv); }

.form-field label {
  position: absolute;
  left: 0;
  top: 32px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-inv-mute);
  pointer-events: none;
  transition: all .3s var(--ease);
}
.form-field input:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:valid ~ label,
.form-field textarea:focus ~ label,
.form-field textarea:not(:placeholder-shown) ~ label {
  top: 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}
.form-field select:not([data-empty="true"]) ~ label {
  top: 0;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
}

.field-line {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s var(--ease);
}
.form-field input:focus ~ .field-line,
.form-field select:focus ~ .field-line,
.form-field textarea:focus ~ .field-line { transform: scaleX(1); }

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 12px 0 20px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-inv-dim);
}
.form-check input { position: absolute; opacity: 0; pointer-events: none; }
.check-box {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  border: 1px solid var(--line-inv-strong);
  margin-top: 2px;
  position: relative;
  transition: all .3s var(--ease);
}
.form-check input:checked ~ .check-box {
  background: var(--gold);
  border-color: var(--gold);
}
.form-check input:checked ~ .check-box::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 5px;
  width: 3px;
  height: 7px;
  border-right: 1.5px solid var(--ink);
  border-bottom: 1.5px solid var(--ink);
  transform: rotate(45deg);
}

/* Contact form primary button */
.contact-form .btn-primary {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}
.contact-form .btn-primary:hover {
  background: transparent;
  color: var(--ink-inv);
}

.form-success {
  display: none;
  padding: 20px;
  margin-top: 16px;
  background: rgba(134, 176, 138, 0.1);
  border: 1px solid var(--ok);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-inv);
  gap: 10px;
  align-items: center;
}
.form-success.show { display: flex; }
.success-dot {
  width: 8px; height: 8px;
  background: var(--ok);
  border-radius: 50%;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark-3);
  color: var(--ink-inv-dim);
  padding-top: clamp(64px, 8vw, 96px);
  border-top: 1px solid var(--line-inv);
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
@media (min-width: 720px) {
  .footer-inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
}

.footer-brand .brand { color: var(--ink-inv); }
.footer-brand .brand-mark { font-size: 40px; }
.footer-brand .brand-sub { font-size: 12px; transform: translateY(-4px); }
.footer-brand .brand-sub .light { color: var(--ink-inv-dim); }
.footer-brand .brand-sub .bold { color: var(--ink-inv); }
.footer-tag {
  margin-top: 20px;
  font-family: var(--sans);
  font-style: italic;
  font-weight: 300;
  font-size: 16px;
  color: var(--ink-inv-dim);
  max-width: 32ch;
  line-height: 1.5;
}
.footer-address {
  font-family: var(--sans);
  font-style: normal;
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-inv-dim);
  line-height: 1.6;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line-inv);
}

.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col ul li { padding: 6px 0; }
.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink-inv-dim);
  transition: color .3s var(--ease);
}
.footer-col a:hover { color: var(--ink-inv); }

.footer-bottom {
  border-top: 1px solid var(--line-inv);
  padding: 22px 0;
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-inv-mute);
}
.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 24px;
  align-items: center;
}
.footer-small {
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: 11.5px;
  font-weight: 400;
  max-width: 60ch;
}

/* ============================================================
   REVEAL / STAGGER ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

.stagger {
  opacity: 0;
  transform: translateY(30px);
  animation: stagger-in 1s var(--ease-out) forwards;
}
.stagger:nth-child(1) { animation-delay: 0.10s; }
.stagger:nth-child(2) { animation-delay: 0.25s; }
.stagger:nth-child(3) { animation-delay: 0.45s; }
.stagger:nth-child(4) { animation-delay: 0.65s; }
.stagger:nth-child(5) { animation-delay: 0.85s; }
.hero-headline .line.stagger:nth-child(1) { animation-delay: 0.20s; }
.hero-headline .line.stagger:nth-child(2) { animation-delay: 0.35s; }
.hero-headline .line.stagger:nth-child(3) { animation-delay: 0.50s; }

@keyframes stagger-in {
  to { opacity: 1; transform: translateY(0); }
}

/* Focus */
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;
}

/* ============================================================
   COOKIE / CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 95;
  background: rgba(20, 20, 20, 0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-inv-strong);
  color: var(--ink-inv);
  border-radius: 4px;
  padding: 18px 20px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: 0 16px 48px rgba(0,0,0,0.4);
  font-family: var(--sans);
  animation: cookieIn .5s var(--ease-out);
}
@keyframes cookieIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner[hidden] { display: none; }
.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
}
@media (min-width: 720px) {
  .cookie-inner {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
.cookie-text {
  font-size: 13px;
  line-height: 1.55;
  color: var(--ink-inv-dim);
  flex: 1;
  margin: 0;
}
.cookie-text a {
  color: var(--gold);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
}
.cookie-text a:hover { color: var(--gold-soft); border-color: var(--gold-soft); }
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.cookie-banner .btn-primary {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}
.cookie-banner .btn-primary:hover {
  background: transparent;
  color: var(--ink-inv);
}
.cookie-banner .btn-ghost {
  border-color: var(--line-inv-strong);
  color: var(--ink-inv);
}
.cookie-banner .btn-ghost:hover {
  background: var(--ink-inv);
  color: var(--ink);
  border-color: var(--ink-inv);
}

/* ============================================================
   LEGAL PAGES (Impressum / Datenschutz)
   ============================================================ */
body.legal-page {
  background: var(--bg);
}
body.legal-page .site-header {
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line);
  color: var(--ink);
}
body.legal-page .site-header .brand { color: var(--ink); }
body.legal-page .site-header .brand-sub .light { color: var(--ink-mute); }
body.legal-page .site-header .brand-sub .bold { color: var(--ink); }
body.legal-page .site-header .nav-link { color: var(--ink-dim); }
body.legal-page .site-header .nav-link:hover { color: var(--ink); }
body.legal-page .site-header .header-phone { color: var(--ink); }
body.legal-page .site-header .mobile-toggle span { background: var(--ink); }

.legal-main {
  padding-top: clamp(120px, 14vw, 160px);
}
.legal-section {
  padding-block: clamp(40px, 6vw, 80px) clamp(80px, 10vw, 140px);
}
.legal-container {
  max-width: 760px;
}
.legal-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}
.legal-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--gold);
}
.legal-section h1 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0 0 clamp(28px, 3vw, 40px);
}
.legal-section h2 {
  font-family: var(--sans);
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-top: clamp(32px, 3vw, 44px);
  margin-bottom: 12px;
}
.legal-section p,
.legal-section ul {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-dim);
}
.legal-section p { margin-bottom: 14px; }
.legal-section ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-section ul li { margin-bottom: 6px; }
.legal-section a {
  color: var(--ink);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 1px;
  transition: color .3s var(--ease), border-color .3s var(--ease);
}
.legal-section a:hover {
  color: var(--gold);
}
.legal-lede {
  font-size: 17px !important;
  line-height: 1.7 !important;
  color: var(--ink) !important;
  margin-bottom: clamp(28px, 3vw, 40px) !important;
  max-width: 60ch;
}
.legal-back {
  margin-top: clamp(40px, 5vw, 64px) !important;
  padding-top: clamp(32px, 3vw, 44px);
  border-top: 1px solid var(--line);
  font-size: 13px !important;
  letter-spacing: 0.06em;
}
.legal-back a {
  color: var(--ink);
  border-bottom: none;
  font-weight: 500;
}
.legal-back a:hover { color: var(--gold); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .stagger { opacity: 1; transform: none; animation: none; }
  .marquee-track { animation: none; }
  .portrait { animation: none; }
}
