/* ============================================================
   Talash Private Credit LP  |  Brand stylesheet
   Palette: Deep Navy #0C1730 / Gold #C9A24B / Ivory #F7F4EC
   Type: Cormorant Garamond (display) + Inter (text)
   ============================================================ */

:root {
  --navy-950: #070E1E;
  --navy-900: #0C1730;
  --navy-850: #101D3A;
  --navy-800: #14234A;
  --navy-700: #1B2F5E;
  --gold: #C9A24B;
  --gold-light: #E3C27E;
  --gold-dark: #A8842F;
  --gold-soft: rgba(201, 162, 75, 0.14);
  --ivory: #F7F4EC;
  --paper: #FBFAF6;
  --text: #E9ECF4;
  --text-dim: #B4BDD2;
  --text-faint: #8B96B2;
  --ink: #17233F;
  --ink-dim: #4A5670;
  --line: rgba(201, 162, 75, 0.28);
  --line-faint: rgba(233, 236, 244, 0.09);
  --radius: 6px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Inter", -apple-system, "Segoe UI", Helvetica, Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-lg: 0 24px 70px rgba(4, 9, 22, 0.55);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.7;
  color: var(--text);
  background: var(--navy-900);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy-950); }

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

a { color: inherit; text-decoration: none; }

a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

body.nav-locked { overflow: hidden; }

.container { width: min(1180px, 92%); margin: 0 auto; }
.container-narrow { width: min(820px, 92%); margin: 0 auto; }

/* ---------- Typography ---------- */

h1, h2, h3, .display {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--text);
  line-height: 1.12;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 5.6vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }

.gold-italic { color: var(--gold-light); font-style: italic; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.4rem;
}
.eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  background: var(--gold);
}

.lede {
  font-size: 1.16rem;
  color: var(--text-dim);
  line-height: 1.75;
}

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(9, 17, 37, 0.86);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: var(--line-faint);
  box-shadow: 0 8px 30px rgba(4, 9, 22, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand { display: flex; align-items: center; gap: 15px; }
.brand-mark { width: 46px; height: 46px; flex: none; }
.brand-logo { height: 50px; width: auto; }
.site-footer .brand-logo { height: 56px; }
.brand-name {
  font-family: var(--serif);
  font-size: 1.55rem;
  letter-spacing: 0.14em;
  color: #fff;
  line-height: 1;
}
.brand-sub {
  font-size: 0.6rem;
  letter-spacing: 0.34em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 5px;
}

.nav { display: flex; align-items: center; gap: 34px; }
.nav a {
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  position: relative;
  padding: 6px 0;
  transition: color 0.25s;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}
.nav a:hover, .nav a.active { color: #fff; }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

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

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  padding: 15px 32px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold) 55%, var(--gold-dark));
  color: var(--navy-950);
}
.btn-gold:hover { box-shadow: 0 10px 34px rgba(201, 162, 75, 0.35); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--gold-light); }
.btn-ghost:hover { background: var(--gold-soft); transform: translateY(-2px); }
.btn-sm { padding: 11px 22px; font-size: 0.78rem; }
.btn .arrow { transition: transform 0.3s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 170px 0 110px;
  background:
    radial-gradient(1100px 520px at 78% 8%, rgba(201, 162, 75, 0.13), transparent 60%),
    radial-gradient(900px 600px at 8% 95%, rgba(27, 47, 94, 0.55), transparent 60%),
    linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 55%, var(--navy-900) 100%);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(233, 236, 244, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(233, 236, 244, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 60% 20%, black 30%, transparent 75%);
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 64px;
  align-items: center;
}
.hero-art { max-width: 460px; justify-self: end; width: 100%; }
.hero-art svg { width: 100%; height: auto; }

.hero-inner { position: relative; max-width: 820px; }
.hero h1 { margin: 0 0 1.6rem; color: #fff; }
.hero .lede { max-width: 620px; margin-bottom: 2.6rem; }
.hero-actions { display: flex; gap: 18px; flex-wrap: wrap; }

.hero-band {
  position: relative;
  border-top: 1px solid var(--line-faint);
  margin-top: 90px;
  padding-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
}
.hero-band .band-item h3 {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hero-band .band-item p { font-size: 0.92rem; color: var(--text-faint); line-height: 1.6; }

/* ---------- Sections ---------- */

.section { padding: 110px 0; position: relative; }
.section-tight { padding: 80px 0; }

.section-head { max-width: 700px; margin-bottom: 64px; }
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered .eyebrow::before { display: none; }
.section-head h2 { margin-bottom: 1.2rem; }

.bg-deep { background: var(--navy-950); }
.bg-raised {
  background: linear-gradient(180deg, var(--navy-850), var(--navy-900));
  border-top: 1px solid var(--line-faint);
  border-bottom: 1px solid var(--line-faint);
}
.bg-ivory { background: var(--paper); }
.bg-ivory h2, .bg-ivory h3 { color: var(--ink); }
.bg-ivory p { color: var(--ink-dim); }
.bg-ivory .lede { color: var(--ink-dim); }

/* ---------- Cards ---------- */

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  position: relative;
  background: linear-gradient(160deg, rgba(233, 236, 244, 0.045), rgba(233, 236, 244, 0.015));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 40px 34px;
  transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
  overflow: hidden;
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 34px; right: 34px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.card:hover { transform: translateY(-6px); border-color: var(--line); }
.card:hover::before { opacity: 1; }
.card h3 { margin: 22px 0 12px; color: #fff; }
.card p { font-size: 0.96rem; color: var(--text-dim); }

.card-num {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.06em;
}

.icon-tile {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--gold-soft);
  color: var(--gold-light);
}

/* Ivory sections */
.bg-ivory .eyebrow { color: var(--gold-dark); }
.bg-ivory .eyebrow::before { background: var(--gold-dark); }
.bg-ivory .display { color: var(--ink); }

.mission-statement {
  font-size: clamp(2rem, 4.4vw, 3.4rem);
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.2;
}
.mission-support {
  text-align: center;
  max-width: 680px;
  margin: 1.8rem auto 0;
  font-size: 1.05rem;
  color: var(--ink-dim);
}

/* Strategy at a glance strip */
.glance {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  border-top: 1px solid rgba(23, 35, 63, 0.16);
  border-bottom: 1px solid rgba(23, 35, 63, 0.16);
}
.glance-item { padding: 30px 26px 30px 0; }
.glance-item + .glance-item { border-left: 1px solid rgba(23, 35, 63, 0.12); padding-left: 26px; }
.glance-item dt {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
}
.glance-item dd {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  color: var(--ink);
  line-height: 1.4;
}

/* Information flow diagram */
.flow {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
  padding: 0;
  position: relative;
}
.flow::before {
  content: "";
  position: absolute;
  top: 14px; left: 14px; right: 14px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgba(201, 162, 75, 0.25) 100%);
}
.flow-stage { position: relative; padding-top: 40px; }
.flow-stage::before {
  content: "";
  position: absolute;
  top: 9px; left: 0;
  width: 11px; height: 11px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  background: var(--navy-900);
}
.flow-idx {
  position: absolute;
  top: 0; left: 24px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
}
.flow-stage h3 {
  font-family: var(--sans);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: #fff;
  line-height: 1.45;
  margin-bottom: 8px;
}
.flow-stage p { font-size: 0.84rem; color: var(--text-faint); line-height: 1.6; }

/* Audience pathways */
.pathways {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  gap: 26px;
}
.pathway {
  position: relative;
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 54px 46px;
  background: linear-gradient(160deg, rgba(233, 236, 244, 0.04), rgba(233, 236, 244, 0.012));
}
.pathway h2 { font-size: clamp(1.5rem, 2.4vw, 2.1rem); margin-bottom: 1rem; }
.pathway p { color: var(--text-dim); margin-bottom: 2rem; max-width: 480px; }
.pathway.primary {
  border-color: var(--line);
  background:
    radial-gradient(420px 260px at 85% 0%, rgba(201, 162, 75, 0.12), transparent 65%),
    linear-gradient(160deg, var(--navy-850), var(--navy-950));
}

/* Ivory cards */
.bg-ivory .card {
  background: #fff;
  border-color: rgba(23, 35, 63, 0.09);
  box-shadow: 0 6px 26px rgba(23, 35, 63, 0.05);
}
.bg-ivory .card h3 { color: var(--ink); }
.bg-ivory .card p { color: var(--ink-dim); }

/* ---------- Stats ---------- */

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  text-align: center;
}
.stat .stat-value {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  color: var(--gold-light);
  line-height: 1;
}
.stat .stat-label {
  margin-top: 12px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- Process / steps ---------- */

.steps { counter-reset: step; display: grid; gap: 0; }
.step {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 30px;
  padding: 38px 0;
  border-bottom: 1px solid var(--line-faint);
}
.step:last-child { border-bottom: 0; }
.step-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  font-style: italic;
  color: var(--gold);
  opacity: 0.85;
  line-height: 1;
}
.step h3 { color: #fff; margin-bottom: 8px; }
.step p { color: var(--text-dim); max-width: 640px; }

/* ---------- Split layout ---------- */

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split .visual {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 48px;
  background:
    radial-gradient(400px 300px at 80% 0%, rgba(201, 162, 75, 0.1), transparent 65%),
    linear-gradient(160deg, var(--navy-850), var(--navy-950));
  box-shadow: var(--shadow-lg);
}

.check-list { list-style: none; display: grid; gap: 18px; margin-top: 26px; }
.check-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 14px;
  color: var(--text-dim);
  font-size: 0.98rem;
}
.check-list .tick {
  width: 22px; height: 22px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 0.7rem;
  margin-top: 3px;
}

/* ---------- Quote band ---------- */

.quote-band {
  text-align: center;
  padding: 120px 0;
  background:
    radial-gradient(900px 400px at 50% 100%, rgba(201, 162, 75, 0.09), transparent 65%),
    var(--navy-950);
}
.quote-band blockquote {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-style: italic;
  font-weight: 500;
  color: var(--ivory);
  max-width: 900px;
  margin: 0 auto 26px;
  line-height: 1.35;
}
.quote-band cite {
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Insights ---------- */

.insight-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.insight-card .meta {
  font-size: 0.76rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.insight-card h3 { margin: 0 0 14px; }
.insight-card h3 a { transition: color 0.25s; }
.insight-card h3 a:hover { color: var(--gold-light); }
.insight-card .more {
  margin-top: auto;
  padding-top: 22px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
}

/* ---------- Article ---------- */

.article-hero { padding: 190px 0 70px; background: var(--navy-950); }
.article-hero h1 { font-size: clamp(2.1rem, 4vw, 3.2rem); max-width: 860px; }
.article-hero .meta {
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.article-body { padding: 70px 0 110px; }
.article-body p { margin-bottom: 1.5rem; color: var(--text-dim); font-size: 1.05rem; line-height: 1.85; }
.article-body h2 {
  font-size: 1.75rem;
  margin: 3rem 0 1.2rem;
  color: var(--ivory);
}
.article-body .pull {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 28px;
  margin: 2.6rem 0;
  line-height: 1.5;
}

/* ---------- Forms ---------- */

.form-shell {
  background: linear-gradient(160deg, rgba(233, 236, 244, 0.05), rgba(233, 236, 244, 0.02));
  border: 1px solid var(--line-faint);
  border-radius: var(--radius);
  padding: 52px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.field input, .field select, .field textarea {
  font-family: var(--sans);
  font-size: 0.98rem;
  color: var(--text);
  background: rgba(7, 14, 30, 0.6);
  border: 1px solid var(--line-faint);
  border-radius: 3px;
  padding: 15px 16px;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--gold) 50%), linear-gradient(135deg, var(--gold) 50%, transparent 50%); background-position: calc(100% - 21px) 50%, calc(100% - 15px) 50%; background-size: 6px 6px; background-repeat: no-repeat; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.15);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: 0.82rem; color: var(--text-faint); margin-top: 18px; }
.form-success {
  display: none;
  text-align: center;
  padding: 60px 20px;
}
.form-success h3 { color: var(--gold-light); margin-bottom: 10px; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  text-align: center;
  padding: 110px 0;
  background:
    radial-gradient(800px 380px at 50% 0%, rgba(201, 162, 75, 0.12), transparent 60%),
    var(--navy-950);
  border-top: 1px solid var(--line-faint);
}
.cta-band h2 { max-width: 720px; margin: 0 auto 1.4rem; }
.cta-band p { max-width: 560px; margin: 0 auto 2.4rem; color: var(--text-dim); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-950);
  border-top: 1px solid var(--line-faint);
  padding: 70px 0 40px;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
  border-bottom: 1px solid var(--line-faint);
}
.footer-grid h4 {
  font-size: 0.76rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-weight: 600;
}
.footer-grid ul { list-style: none; display: grid; gap: 10px; }
.footer-grid a { color: var(--text-faint); transition: color 0.25s; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-brand p { color: var(--text-faint); max-width: 340px; margin-top: 18px; font-size: 0.88rem; }
.footer-legal {
  padding-top: 34px;
  color: var(--text-faint);
  font-size: 0.78rem;
  line-height: 1.7;
}
.footer-legal .fineprint { margin-top: 14px; opacity: 0.75; }

/* ---------- Reveal animations ---------- */

.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 0.12s; }
.reveal-d2 { transition-delay: 0.24s; }
.reveal-d3 { transition-delay: 0.36s; }

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

/* ---------- Coming soon / utility pages ---------- */

.utility-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 140px 0 80px;
  background:
    radial-gradient(900px 500px at 50% 10%, rgba(201, 162, 75, 0.1), transparent 60%),
    var(--navy-950);
}
.utility-hero .mark { width: min(340px, 72vw); margin: 0 auto 38px; }
.utility-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.2rem; }
.utility-hero p { max-width: 520px; margin: 0 auto 2.4rem; color: var(--text-dim); }

/* ---------- Legal pages ---------- */

.legal-body { padding: 60px 0 110px; }
.legal-body h2 { font-size: 1.45rem; margin: 2.6rem 0 1rem; color: var(--ivory); }
.legal-body p, .legal-body li { color: var(--text-dim); font-size: 0.98rem; margin-bottom: 1rem; }
.legal-body ul { padding-left: 22px; }
.legal-updated { font-size: 0.82rem; color: var(--text-faint); letter-spacing: 0.08em; }

/* ---------- Cookie notice ---------- */

.cookie-notice {
  position: fixed;
  bottom: 24px; left: 24px;
  z-index: 200;
  max-width: 380px;
  background: rgba(9, 17, 37, 0.97);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-lg);
  font-size: 0.85rem;
  color: var(--text-dim);
  display: none;
}
.cookie-notice.show { display: block; animation: rise 0.5s var(--ease); }
.cookie-notice .actions { display: flex; gap: 12px; margin-top: 16px; }
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */

@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 46px; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-art { display: none; }
  .glance { grid-template-columns: 1fr 1fr; border: 0; }
  .glance-item { border-top: 1px solid rgba(23, 35, 63, 0.12); padding: 22px 0; }
  .glance-item + .glance-item { border-left: 0; padding-left: 0; }
  .flow { grid-template-columns: 1fr; gap: 30px; padding-left: 26px; }
  .flow::before { top: 14px; bottom: 8px; left: 5px; right: auto; width: 1px; height: auto;
    background: linear-gradient(180deg, var(--gold) 0%, rgba(201, 162, 75, 0.25) 100%); }
  .flow-stage { padding-top: 0; padding-left: 18px; }
  .flow-stage::before { top: 4px; left: -31px; }
  .flow-idx { position: static; display: block; margin-bottom: 6px; }
  .pathways { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 84vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 26px;
    padding: 40px;
    background: rgba(7, 14, 30, 0.98);
    border-left: 1px solid var(--line-faint);
    transform: translateX(100%);
    transition: transform 0.4s var(--ease);
  }
  .nav.open { transform: none; }
  .nav a { font-size: 1.05rem; }
  .nav-toggle { display: block; position: relative; z-index: 210; }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .hero { min-height: 0; padding: 150px 0 80px; }
  .hero-band { grid-template-columns: 1fr; gap: 26px; }
  .section { padding: 80px 0; }
  .form-grid { grid-template-columns: 1fr; }
  .form-shell { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .step { grid-template-columns: 1fr; gap: 8px; }
  .cookie-notice { left: 12px; right: 12px; bottom: 12px; max-width: none; }
  .brand-name { font-size: 1.3rem; }
  .brand-logo { height: 38px; }
  .site-footer .brand-logo { height: 44px; }
}
