@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Roboto:wght@300;400;500;600&display=swap');

:root {
  --black:    #0F223D;
  --ink:      #0F223D;
  --ink-2:    #3d5070;
  --muted:    #6b7a90;
  --border:   #dce0e8;
  --sand:     #F2F2F3;
  --warm:     #f5f6f8;
  --white:    #ffffff;
  --accent:   #0F223D;
  --accent-h: #1a3560;
  --forest:   #0F223D;

  --ff-display: 'Playfair Display', Georgia, serif;
  --ff-body:    'Roboto', ui-sans-serif, system-ui, -apple-system, sans-serif;

  --max: 1240px;
  --r:   0px;
}

/* ─ BASE ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html { background: var(--warm); scroll-behavior: smooth; }
html[data-ip-gate="pending"] body { visibility: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font: inherit; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; overflow-wrap: break-word; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

.skip-link {
  position: fixed; top: 12px; left: 12px; z-index: 300;
  transform: translateY(-140%);
  background: var(--black); color: #fff;
  padding: 10px 14px;
  font-size: 0.88rem; font-weight: 600;
  transition: transform 200ms;
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 48px), var(--max));
  margin: 0 auto;
}

/* ─ HEADER ───────────────────────────────── */
.site-header {
  position: sticky; top: 0; z-index: 120;
  background: var(--black);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: border-color 200ms, box-shadow 200ms;
}
.site-header.is-scrolled {
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
.nav-shell {
  min-height: 72px;
  display: flex;
  align-items: center;
}
.brand {
  display: flex; align-items: center; gap: 11px;
  margin-right: auto;
  flex-shrink: 0;
}
.brand-mark { color: var(--white); flex-shrink: 0; }
.brand-text {
  font-size: 0.9rem; font-weight: 600; color: var(--white);
  line-height: 1.2; display: flex; flex-direction: column;
}
.brand-text small {
  font-size: 0.7rem; font-weight: 400;
  color: rgba(255,255,255,0.45); letter-spacing: 0.03em;
}
.brand-logo {
  height: 32px;
  width: auto;
  display: block;
}
.footer-grid .brand-logo {
  height: 36px;
  opacity: 0.75;
}
.nav-menu {
  display: flex; gap: 2px; align-items: center;
  margin: 0 28px;
}
.nav-link {
  padding: 8px 12px;
  font-size: 0.95rem; font-weight: 500;
  color: rgba(255,255,255,0.7);
  transition: color 150ms, background 150ms;
}
.nav-link:hover { color: var(--white); background: none; }
.nav-link[aria-current="page"] { color: var(--white); }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-actions .btn-primary {
  border-radius: 10px;
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}
.nav-actions .btn-primary:hover {
  background: rgba(255,255,255,0.88);
  border-color: rgba(255,255,255,0.88);
}
.nav-menu .nav-mobile-cta { display: none; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 40px; height: 40px;
  align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer; padding: 0;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--white); display: block;
  transition: transform 250ms, opacity 250ms;
}

/* ─ BUTTONS ──────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px;
  font-size: 0.875rem; font-weight: 600; letter-spacing: 0.02em;
  border: 1.5px solid transparent;
  border-radius: 10px;
  cursor: pointer; transition: all 150ms ease;
  white-space: nowrap; text-decoration: none;
}
.btn-primary {
  background: var(--black); color: var(--white); border-color: var(--black);
}
.btn-primary:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn-secondary {
  background: transparent; color: var(--ink); border-color: var(--border);
}
.btn-secondary:hover { border-color: var(--ink-2); background: var(--warm); }
.btn-accent {
  background: var(--accent); color: var(--white); border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-outline-light {
  background: transparent; color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.28);
}
.btn-outline-light:hover {
  border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.08);
}
.btn-gold {
  background: #c09040; color: #fff; border-color: #c09040;
}
.btn-gold:hover { background: #a37832; border-color: #a37832; }

/* ─ EYEBROW ──────────────────────────────── */
.eyebrow {
  display: inline-block;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 14px;
}

/* ─ SITE HERO (homepage, light) ─────────────── */
.site-hero {
  background: var(--white);
  min-height: calc(100vh - 121px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--border);
}
.site-hero .eyebrow { color: var(--muted); }
.site-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: 700; line-height: 1.1;
  letter-spacing: -0.02em; color: var(--ink);
  margin: 0;
}
.site-hero h1 em { font-style: italic; color: var(--accent); }

/* ─ HERO DARK (legacy, still used in some pages) */
.page-hero-dark {
  background: var(--black);
  color: var(--white);
  padding: clamp(80px, 12vw, 160px) 0 0;
}
.hero-dark-inner {
  max-width: 900px;
  padding-bottom: clamp(60px, 9vw, 110px);
}
.page-hero-dark .eyebrow { color: rgba(255,255,255,0.3); }
.page-hero-dark h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.08; font-weight: 700;
  letter-spacing: -0.025em; color: var(--white); margin: 0;
}
.page-hero-dark h1 em { font-style: italic; color: rgba(255,255,255,0.55); }
.hero-subline {
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-subline > p {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: rgba(255,255,255,0.48); flex: 1; min-width: 220px;
}
.hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-top: 36px;
}
.hero-copy {
  font-size: clamp(1rem, 1.7vw, 1.1rem);
  color: var(--ink-2); line-height: 1.65; max-width: 520px;
}
.page-hero-dark .hero-copy { color: rgba(255,255,255,0.48); }

/* ─ TICKER ───────────────────────────────── */
.ticker {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.07);
  overflow: hidden; padding: 13px 0;
}
.ticker__track {
  display: flex; align-items: center;
  animation: marquee 28s linear infinite;
  will-change: transform;
}
.ticker__track:hover { animation-play-state: paused; }
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-25%); }
}
.ticker__item {
  white-space: nowrap; padding: 0 32px;
  font-size: 0.76rem; font-weight: 500;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.ticker__sep {
  color: rgba(255,255,255,0.3);
  font-size: 0.8rem; flex-shrink: 0; user-select: none;
}

/* ─ PAGE HERO (inner pages) ──────────────── */
.page-hero {
  background: var(--white);
  padding: clamp(64px, 10vw, 120px) 0 clamp(48px, 8vw, 96px);
  border-bottom: 1px solid var(--border);
}
.page-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 2.8vw, 2.9rem);
  font-weight: 700; line-height: 1.12;
  letter-spacing: -0.02em; color: var(--ink);
  margin: 0;
}
.page-hero h1 em { font-style: italic; color: var(--accent); }
.page-hero .hero-copy {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--ink-2); line-height: 1.65; max-width: 520px;
}

/* Split layout */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }
.hero-photo-frame { position: relative; }
.hero-photo { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }
.visual-photo { width: 100%; }
.visual-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; border-radius: 12px; }

/* ─ SECTIONS ─────────────────────────────── */
.section {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--white);
}
.section-cream, .section-sand { background: var(--sand); }
.section-dark { background: var(--black); color: var(--white); }
.section-dark .eyebrow { color: rgba(255,255,255,0.35); }
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,0.58); }

.section-head {
  max-width: 680px;
  margin-bottom: clamp(44px, 6vw, 72px);
}
.section-head h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 2.6vw, 2.5rem);
  font-weight: 700; line-height: 1.18; margin: 0;
}
.section-head > p {
  font-size: 1.03rem; color: var(--ink-2); line-height: 1.7; margin-top: 16px;
}
.section-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

/* ─ TYPOGRAPHY ───────────────────────────── */
h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 2.4vw, 2.3rem);
  font-weight: 700; line-height: 1.2; color: var(--ink);
}
h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.35rem);
  font-weight: 600; color: var(--ink); line-height: 1.35;
}
.lead {
  font-size: clamp(1.03rem, 1.7vw, 1.12rem);
  color: var(--ink-2); line-height: 1.7;
}

/* ─ GRID LAYOUTS ─────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ─ CONTENT CARDS ────────────────────────── */
.content-card {
  padding: 32px 36px;
  background: var(--warm);
  border: 1px solid var(--border);
}
.content-card h2, .content-card h3 { margin-bottom: 12px; }
.content-card p + p { margin-top: 10px; }

/* ─ VALUE CARDS ─────────────────────────── */
.value-card {
  padding: 36px 0;
  border-top: 2px solid var(--border);
}
.value-index {
  display: block; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 16px;
}
.value-card h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700; line-height: 1.28; margin-bottom: 10px;
}
.value-card p { color: var(--ink-2); }

/* ─ STEP CARDS ───────────────────────────── */
.process { counter-reset: steps; }
.process .grid-4 { gap: 0; }
.step-card {
  padding: 36px 32px;
  border-left: 1px solid var(--border);
  position: relative;
  counter-increment: steps;
}
.step-card::before {
  content: "0" counter(steps);
  font-family: var(--ff-display);
  font-size: 2.6rem;
  color: var(--border); line-height: 1;
  display: block; margin-bottom: 20px;
}
.step-card h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: 1.2rem; margin-bottom: 10px;
}
.step-card p { color: var(--ink-2); font-size: 0.95rem; }

/* ─ MANIFESTO ────────────────────────────── */
.manifesto-item {
  display: grid; grid-template-columns: 96px 1fr;
  gap: 52px; padding: 52px 0;
  border-top: 1px solid var(--border); align-items: start;
}
.manifesto-item:last-child { border-bottom: 1px solid var(--border); }
.manifesto-num {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 4.5vw, 4.5rem);
  color: var(--border); line-height: 1; padding-top: 4px;
  transition: color 250ms;
}
.manifesto-item:hover .manifesto-num { color: var(--accent); }
.manifesto-body h3 {
  font-family: var(--ff-display); font-weight: 700;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  line-height: 1.3; margin-bottom: 12px; color: var(--ink);
}
.manifesto-body p { color: var(--ink-2); line-height: 1.7; font-size: 1rem; }

/* ─ VALUE PILLARS ────────────────────────── */
.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
}
.pillar {
  padding: 48px 40px;
  border-right: 1px solid var(--border);
}
.pillar:last-child { border-right: none; }
.pillar-label {
  display: block;
  font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 20px;
}
.pillar h3 {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  font-weight: 700; line-height: 1.28;
  margin-bottom: 14px; color: var(--ink);
}
.pillar p { color: var(--ink-2); font-size: 0.95rem; line-height: 1.65; }

/* ─ INTRO BAND ────────────────────────────── */
.intro-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.intro-band__item {
  padding: 36px 48px;
  border-right: 1px solid var(--border);
}
.intro-band__item:last-child { border-right: none; }
.intro-band__item strong {
  display: block; font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--muted); margin-bottom: 8px;
}
.intro-band__item p { font-size: 1rem; color: var(--ink-2); line-height: 1.6; }

/* ─ QUOTE SECTION ────────────────────────── */
.quote-section {
  padding: clamp(64px, 9vw, 120px) 0;
  background: var(--sand);
}
.quote-inner {
  display: grid; grid-template-columns: 1fr 380px;
  gap: 80px; align-items: start;
}
.quote-inner blockquote {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.28; color: var(--ink);
  margin: 0; padding: 0; quotes: none;
}
.signal-card {
  padding: 32px 36px;
  background: var(--white);
  border: 1px solid var(--border);
}
.signal-card strong {
  display: block; font-size: 1rem; font-weight: 600;
  margin: 8px 0 10px; color: var(--ink);
}
.signal-card p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.65; }

/* ─ CTA BAND ─────────────────────────────── */
.cta-band {
  display: flex; gap: 52px;
  align-items: center; justify-content: space-between;
}
.cta-band h2 {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700; line-height: 1.18; margin-bottom: 12px;
}
.section-dark .cta-band h2 { color: var(--white); }
.cta-band > a, .cta-band > div + div { flex-shrink: 0; }

/* ─ METRIC CARDS ─────────────────────────── */
.metric-card {
  padding: 36px 32px;
  border-top: 3px solid var(--accent);
  background: var(--white);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  border-left: 1px solid var(--border);
}
.metric-card strong {
  display: block; font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 700; color: var(--ink);
  line-height: 1; margin-bottom: 12px;
}
.metric-card span { font-size: 0.88rem; color: var(--muted); line-height: 1.5; }

/* ─ MEDIA CARD ───────────────────────────── */
.media-card { background: var(--warm); overflow: hidden; border: 1px solid var(--border); }
.media-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.media-card__body { padding: 28px 32px; }
.media-card__body h3 { margin-bottom: 16px; }

/* ─ LISTS ────────────────────────────────── */
.check-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.check-list li {
  padding-left: 22px; position: relative;
  color: var(--ink-2); font-size: 0.97rem;
}
.check-list li::before {
  content: '';
  position: absolute; left: 0; top: 8px;
  width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
}
.plain-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 12px;
}
.plain-list li {
  padding-left: 16px;
  border-left: 2px solid var(--border);
  color: var(--ink-2);
}

/* ─ TEXT LINKS ───────────────────────────── */
.text-link {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 3px; font-weight: 500;
}
.text-link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--ink); font-size: 0.875rem; font-weight: 600;
  letter-spacing: 0.02em;
}
.text-link-arrow::after { content: '→'; transition: transform 150ms; }
.text-link-arrow:hover::after { transform: translateX(4px); }

/* ─ TABLE ────────────────────────────────── */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
thead tr { border-bottom: 2px solid var(--border); }
thead th {
  padding: 14px 20px 14px 0; text-align: left;
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
tbody tr { border-bottom: 1px solid var(--border); }
tbody tr:last-child { border-bottom: none; }
tbody td {
  padding: 18px 20px 18px 0; vertical-align: top;
  line-height: 1.55; color: var(--ink-2);
}
tbody td strong { color: var(--ink); }
tbody tr:hover { background: var(--warm); }

/* ─ FORM / CONTACT ───────────────────────── */
.contact-page {
  padding: clamp(72px, 10vw, 130px) 0;
  background: var(--warm);
}
.contact-page__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 7vw, 90px);
  align-items: start;
}
.contact-page__left {
  padding-top: 8px;
}
.contact-page__heading {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--black);
  margin: 14px 0 24px;
}
.contact-page__sub {
  font-size: 1rem;
  color: var(--ink-2);
  line-height: 1.75;
}
.contact-page__info {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.contact-page__info-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-page__info span:last-child {
  font-size: 0.95rem;
  color: var(--ink-2);
}
.contact-page__card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--black);
  padding: clamp(32px, 4vw, 48px);
  border-radius: 2px;
}
.contact-page__meta {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.contact-page__meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.contact-page__meta-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}
.contact-page__meta-item span:last-child {
  font-size: 0.95rem;
  color: var(--ink);
}
.contact-page__points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
  margin-bottom: 4px;
}
.contact-page__point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.93rem;
  color: var(--ink-2);
}
.contact-page__point-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.contact-page__form .form-grid {
  gap: 18px;
}
.contact-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: start;
}
.form-card { padding: 40px 44px; background: var(--warm); border: 1px solid var(--border); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  padding: 12px 14px; border: 1.5px solid var(--border);
  background: var(--white); font-size: 0.97rem; color: var(--ink);
  transition: border-color 150ms; appearance: none;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink);
}
.form-status { margin-top: 12px; font-size: 0.9rem; color: var(--accent); min-height: 22px; }

/* ─ JOB CARDS ────────────────────────────── */
.job-card {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px; padding: 32px 36px;
  border: 1px solid var(--border); background: var(--white);
  transition: border-color 200ms, box-shadow 200ms;
}
.job-card:hover {
  border-color: var(--ink-2);
  box-shadow: 0 4px 20px rgba(13, 12, 11, 0.07);
}
.job-card p.eyebrow { margin-bottom: 8px; }
.job-card h3 {
  font-family: var(--ff-display); font-weight: 400;
  font-size: clamp(1.15rem, 2vw, 1.45rem); margin-bottom: 10px;
}
.job-card > div:first-child > p:last-child { color: var(--ink-2); font-size: 0.97rem; }
.job-card__meta {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 20px; border-top: 1px solid var(--border);
  font-size: 0.875rem; color: var(--muted);
}

/* ─ HERO VALUES BAR ─────────────────────── */
.hero-values-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 36px 0;
}
.hero-values-inner {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
}
.hero-value strong {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.78); margin-bottom: 4px;
}
.hero-value span { font-size: 0.82rem; color: rgba(255,255,255,0.32); line-height: 1.5; }

/* ─ PROSE HERO ───────────────────────────── */
.prose-hero {
  padding: clamp(64px, 9vw, 100px) 0 clamp(44px, 6vw, 60px);
  border-bottom: 1px solid var(--border);
}
.prose-hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 400; margin: 0;
}

/* ─ ERROR PAGE ───────────────────────────── */
.error-page {
  padding: clamp(80px, 12vw, 140px) 0;
  max-width: 600px;
}
.error-code {
  font-family: var(--ff-display);
  font-size: clamp(6rem, 14vw, 11rem);
  color: var(--border); line-height: 1; margin-bottom: 20px !important;
}
.error-page__heading { margin-bottom: 16px; }
.error-page__body {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  color: var(--ink-2);
  margin-bottom: 36px;
  max-width: 480px;
}
.error-page__actions { margin-top: 0; }
.error-page__links {
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  display: grid;
  gap: 14px;
}
.error-page__link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
}

/* ─ PRIVACY PAGE ────────────────────────── */
.privacy-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.privacy-toc {
  position: sticky;
  top: 96px;
  padding: 28px 0;
  border-top: 2px solid var(--black);
}
.privacy-toc__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  counter-reset: none;
}
.privacy-toc__list li { padding: 0; }
.privacy-toc__list li::before { display: none; }
.privacy-toc__list a {
  font-size: 0.85rem;
  color: var(--ink-2);
  text-decoration: none;
  line-height: 1.5;
  transition: color 150ms;
  display: block;
  padding: 2px 0;
}
.privacy-toc__list a:hover { color: var(--black); }
.privacy-prose { max-width: 720px; }
.privacy-section {
  padding-bottom: clamp(36px, 5vw, 56px);
  margin-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--border);
}
.privacy-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.privacy-section h2 {
  margin-bottom: 16px;
  padding-top: 4px;
}
.privacy-section h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-top: 28px;
  margin-bottom: 8px;
  color: var(--ink);
}
.privacy-section p { color: var(--ink-2); line-height: 1.75; margin-bottom: 14px; }
.privacy-section p:last-child { margin-bottom: 0; }
.privacy-section ul.plain-list { margin-bottom: 14px; }
.privacy-section ul.plain-list li { color: var(--ink-2); line-height: 1.75; }
.privacy-info-box {
  background: var(--sand);
  border-left: 3px solid var(--black);
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 20px 0;
}
.privacy-info-box p { margin: 0; line-height: 1.8; }
.privacy-updated {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 20px !important;
}
@media (max-width: 900px) {
  .privacy-layout {
    grid-template-columns: 1fr;
  }
  .privacy-toc {
    position: static;
    border-top: none;
    border-bottom: 1px solid var(--border);
    padding: 0 0 24px;
    margin-bottom: 8px;
  }
  .privacy-toc__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 4px 16px;
  }
}

/* ─ SCROLL REVEAL ────────────────────────── */
.js-reveal-ready [data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity 500ms ease, transform 500ms ease;
}
.js-reveal-ready [data-reveal][data-visible="true"] { opacity: 1; transform: none; }

/* ─ FOOTER ───────────────────────────────── */
.site-footer {
  background: var(--black);
  color: rgba(255,255,255,0.6);
  padding-top: clamp(60px, 8vw, 96px);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.09);
}
.footer-grid > div:first-child .brand { margin-bottom: 16px; }
.footer-grid > div:first-child p {
  font-size: 0.875rem; color: rgba(255,255,255,0.75);
  line-height: 1.65; max-width: 280px;
}
.footer-grid .brand-mark { color: var(--white); }
.footer-grid .brand-text { color: var(--white); }
.footer-grid .brand-text small { color: rgba(255,255,255,0.6); }
.footer-grid h3 {
  font-size: 0.76rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.5); margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.85); transition: color 150ms;
}
.footer-links a:hover { color: var(--white); }
.footer-links span { font-size: 0.875rem; color: rgba(255,255,255,0.65); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: 0.8rem; color: rgba(255,255,255,0.55);
}

/* ─ MOBILE ───────────────────────────────── */
@media (max-width: 1024px) {
  .section-head { grid-template-columns: 1fr; gap: 16px; }
  .section-head > p { padding-top: 0; }
  .quote-inner { grid-template-columns: 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-page__inner { grid-template-columns: 1fr; }
  .contact-page__heading { font-size: clamp(1.9rem, 6vw, 2.6rem); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
}

@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .pillar:nth-child(2) { border-right: none; }
  .pillar:nth-child(1), .pillar:nth-child(2) { border-bottom: 1px solid var(--border); }
  .intro-band { grid-template-columns: 1fr; }
  .intro-band__item { border-right: none; border-bottom: 1px solid var(--border); }
  .intro-band__item:last-child { border-bottom: none; }
}

@media (max-width: 768px) {
  .container { width: calc(100% - 40px); }
  .nav-menu { display: none; }
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile CTA shown inside overlay only */

  /* backdrop-filter creates a containing block that breaks position:fixed children — remove on mobile when open */
  .nav-open .site-header {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .nav-open .nav-menu {
    display: flex; flex-direction: column;
    position: fixed; top: 72px; left: 0; right: 0;
    height: calc(100vh - 72px);
    margin: 0;
    background: #0F223D; padding: 0 0 48px;
    overflow-y: auto; z-index: 110; gap: 0;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-open .nav-link {
    font-size: 1.15rem; font-weight: 500;
    padding: 22px 32px;
    color: rgba(255,255,255,0.8);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    background: none;
  }
  .nav-open .nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
  /* Hide Kontakt os from header on mobile */
  .nav-actions .btn { display: none !important; }
  /* Show mobile CTA at bottom of overlay */
  .nav-open .nav-mobile-cta {
    display: flex; justify-content: center;
    margin: 32px 32px 0;
    padding: 16px 24px; font-size: 1rem; font-weight: 600;
    background: #fff; color: #0F223D; border-color: #fff;
    border-radius: 10px;
  }
  /* X close button */
  .nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .process .grid-4 { grid-template-columns: 1fr 1fr; }
  .hero-values-inner { grid-template-columns: 1fr 1fr; gap: 20px; }
  .cta-band { flex-direction: column; gap: 28px; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .manifesto-item { grid-template-columns: 56px 1fr; gap: 24px; padding: 40px 0; }
  .form-card { padding: 28px 24px; }
  .form-grid { grid-template-columns: 1fr; }
  .job-card__meta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .step-card { padding: 28px 20px; }
  .hero-subline { flex-direction: column; gap: 0; }
  .hero-subline > p { margin-bottom: 0; }
  .pillars { grid-template-columns: 1fr; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--border); }
  .pillar:last-child { border-bottom: none; }
  .pillar { padding: 36px 28px; }
}

@media (max-width: 480px) {
  .process .grid-4 { grid-template-columns: 1fr; }
  .hero-values-inner { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}
