/* ============================================================
   KACEX — Komunikacijos analitikos centras
   Dizaino sistema / bendras stilius
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Colours */
  --navy-900: #0d1526;
  --navy-800: #111c31;
  --navy-700: #17253e;
  --navy-600: #1f314f;
  --ink: #1b1f27;
  --ink-soft: #3d434f;
  --parchment: #f7f3ea;
  --parchment-2: #efe8d7;
  --parchment-3: #e6ddc8;
  --paper: #fffdf8;
  --gold: #c6a15b;
  --gold-strong: #b1873f;
  --gold-soft: #e3cf9f;
  --bordeaux: #7c2233;
  --muted: #6f6a5d;
  --line: rgba(27, 31, 39, 0.12);
  --line-light: rgba(247, 243, 234, 0.16);

  /* Typography */
  --font-display: "Fraunces", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Layout */
  --container: 1180px;
  --container-narrow: 820px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(13, 21, 38, 0.06);
  --shadow-md: 0 18px 40px -22px rgba(13, 21, 38, 0.35);
  --shadow-lg: 0 40px 80px -40px rgba(13, 21, 38, 0.55);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--parchment);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, picture { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-optical-sizing: auto;
}

.display {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-strong);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before {
  content: "";
  width: 30px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}
.eyebrow.centered { justify-content: center; }
.eyebrow.on-dark { color: var(--gold-soft); }

.lead {
  font-size: clamp(1.1rem, 1.8vw, 1.32rem);
  line-height: 1.6;
  color: var(--ink-soft);
}

.section-title {
  font-size: clamp(1.9rem, 3.6vw, 2.9rem);
}

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.2rem, 4vw, 2.5rem);
}
.container.narrow { max-width: var(--container-narrow); }

.section { padding-block: clamp(4.5rem, 9vw, 8rem); }
.section.tight { padding-block: clamp(3rem, 6vw, 5rem); }

.section-head { max-width: 640px; margin-bottom: 3rem; }
.section-head.centered { margin-inline: auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 1.1rem; }
.section-head p { margin-top: 1.1rem; }

.bg-parchment { background: var(--parchment); }
.bg-paper { background: var(--paper); }
.bg-parchment-2 { background: var(--parchment-2); }
.bg-navy { background: var(--navy-800); color: var(--parchment); }
.bg-navy h1, .bg-navy h2, .bg-navy h3, .bg-navy h4 { color: var(--paper); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 1.7rem;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: transform 0.4s var(--ease), background 0.3s, color 0.3s, border-color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: var(--navy-800);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-strong) 100%);
  color: var(--navy-900);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -14px rgba(177, 135, 63, 0.7); }

.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn-outline:hover { border-color: var(--navy-800); background: var(--navy-800); color: var(--paper); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  border-color: var(--line-light);
  color: var(--parchment);
}
.btn-ghost-light:hover { background: rgba(247, 243, 234, 0.08); border-color: var(--gold-soft); transform: translateY(-2px); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy-700);
  letter-spacing: 0.01em;
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease); }
.link-arrow:hover { color: var(--gold-strong); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 60;
  transition: background 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
}
.site-header.scrolled {
  background: rgba(247, 243, 234, 0.86);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(13, 21, 38, 0.4);
}

/* Brand */
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-mark { width: 40px; height: 40px; flex: none; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}
.brand-sub {
  font-size: 0.62rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  font-weight: 600;
}

/* Nav on dark hero (top of page) */
.site-header.on-hero:not(.scrolled) .brand-name { color: var(--paper); }
.site-header.on-hero:not(.scrolled) .brand-sub { color: var(--gold-soft); }
.site-header.on-hero:not(.scrolled) .nav-links a { color: rgba(247, 243, 234, 0.82); }
.site-header.on-hero:not(.scrolled) .nav-links a:hover,
.site-header.on-hero:not(.scrolled) .nav-links a.active { color: var(--paper); }
.site-header.on-hero:not(.scrolled) .nav-toggle span { background: var(--parchment); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.1rem;
}
.nav-links a {
  position: relative;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 0.35rem 0;
  transition: color 0.25s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: 1rem; }

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
  z-index: 80;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.25s;
}
body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
body.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  background: var(--navy-800);
  color: var(--parchment);
  padding-top: 78px;
  overflow: hidden;
  isolation: isolate;
}
.hero-inner {
  min-height: min(92vh, 860px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(4rem, 10vh, 8rem);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(120% 120% at 78% 8%, rgba(198, 161, 91, 0.16) 0%, transparent 46%),
    radial-gradient(90% 90% at 12% 100%, rgba(124, 34, 51, 0.22) 0%, transparent 55%),
    linear-gradient(160deg, #14203a 0%, #0d1526 100%);
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  pointer-events: none;
  mix-blend-mode: soft-light;
}
.hero-motif {
  position: absolute;
  top: 50%;
  right: -4%;
  width: min(46vw, 620px);
  transform: translateY(-50%);
  z-index: -1;
  opacity: 0.9;
  pointer-events: none;
}
.hero-content { max-width: 760px; }
.hero .eyebrow { margin-bottom: 1.6rem; }
.hero h1 { color: var(--paper); margin-bottom: 1.7rem; }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; font-weight: 400; }
.hero-lead {
  font-size: clamp(1.08rem, 1.7vw, 1.32rem);
  line-height: 1.65;
  color: rgba(247, 243, 234, 0.82);
  max-width: 620px;
  margin-bottom: 2.4rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-quote {
  margin-top: clamp(3rem, 7vh, 5rem);
  padding-top: 2.2rem;
  border-top: 1px solid var(--line-light);
  max-width: 680px;
  display: flex;
  gap: 1.2rem;
}
.hero-quote .qmark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 0.8;
  color: var(--gold);
  flex: none;
}
.hero-quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: var(--parchment);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(247, 243, 234, 0.5);
}
.scroll-cue .dot {
  width: 22px; height: 34px; border: 1px solid rgba(247, 243, 234, 0.3);
  border-radius: 12px; position: relative;
}
.scroll-cue .dot::after {
  content: ""; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 6px; border-radius: 3px; background: var(--gold-soft);
  animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat {
  background: var(--paper);
  padding: 2.2rem 1.6rem;
  text-align: center;
}
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.9rem);
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1;
}
.stat .num .plus { color: var(--gold-strong); }
.stat .label {
  margin-top: 0.6rem;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  color: var(--muted);
}

/* ============================================================
   MISSION / TWO-COLUMN
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split.narrow-media { grid-template-columns: 1.1fr 0.9fr; }

.mission-figure {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}
.mission-figure svg { width: 100%; height: 100%; }
.figure-badge {
  position: absolute;
  left: 22px; bottom: 22px;
  background: rgba(13, 21, 38, 0.72);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line-light);
  color: var(--parchment);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius);
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}
.figure-badge strong { color: var(--gold-soft); font-family: var(--font-display); }

.prose p + p { margin-top: 1.2rem; }
.prose .sig {
  margin-top: 2rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy-700);
}

.pillar-list { margin-top: 2rem; display: grid; gap: 1.4rem; }
.pillar {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
}
.pillar-ic {
  flex: none;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 10px;
  background: var(--parchment-2);
  border: 1px solid var(--line);
  color: var(--gold-strong);
}
.pillar-ic svg { width: 22px; height: 22px; }
.pillar h4 { font-size: 1.12rem; margin-bottom: 0.25rem; font-weight: 600; }
.pillar p { font-size: 0.95rem; color: var(--muted); line-height: 1.55; }

/* ============================================================
   FEATURE CARDS (pillars grid)
   ============================================================ */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.6rem; }

.feature-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  transition: transform 0.5s var(--ease), box-shadow 0.5s, border-color 0.5s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-strong));
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.5s var(--ease);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--parchment-3); }
.feature-card:hover::before { transform: scaleX(1); }
.feature-ic {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--navy-800);
  color: var(--gold-soft);
  margin-bottom: 1.4rem;
}
.feature-ic svg { width: 26px; height: 26px; }
.feature-card h3 { font-size: 1.35rem; margin-bottom: 0.7rem; }
.feature-card p { color: var(--muted); font-size: 0.96rem; line-height: 1.6; }

/* ============================================================
   ARTICLE CARDS
   ============================================================ */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.article-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.article-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.article-cover {
  aspect-ratio: 16 / 10;
  position: relative;
  overflow: hidden;
}
.article-cover svg { width: 100%; height: 100%; }
.article-cover .tag {
  position: absolute;
  top: 14px; left: 14px;
  background: rgba(13, 21, 38, 0.78);
  color: var(--gold-soft);
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.35rem 0.7rem;
  border-radius: 3px;
}
.article-body { padding: 1.5rem 1.6rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.article-meta {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.7rem;
  display: flex; gap: 0.7rem; align-items: center;
}
.article-meta .dot-sep { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }
.article-card h3 {
  font-size: 1.3rem;
  line-height: 1.22;
  margin-bottom: 0.6rem;
}
.article-card h3 a { transition: color 0.25s; }
.article-card h3 a:hover { color: var(--gold-strong); }
.article-card p { color: var(--muted); font-size: 0.92rem; line-height: 1.55; flex: 1; }
.article-card .link-arrow { margin-top: 1.2rem; }

/* ============================================================
   BOOKS
   ============================================================ */
.book-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.book {
  text-align: left;
}
.book-cover {
  aspect-ratio: 3 / 4.4;
  border-radius: 3px 6px 6px 3px;
  overflow: hidden;
  box-shadow: var(--shadow-md), -1px 0 0 rgba(0,0,0,0.1) inset;
  position: relative;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
}
.book:hover .book-cover { transform: translateY(-8px) rotate(-1deg); box-shadow: var(--shadow-lg); }
.book-cover svg { width: 100%; height: 100%; }
.book-cover::after {
  content: "";
  position: absolute; top: 0; bottom: 0; left: 0; width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.25), rgba(0,0,0,0) 60%, rgba(255,255,255,0.08));
}
.book h3 { font-size: 1.1rem; margin-top: 1.1rem; margin-bottom: 0.2rem; }
.book .book-author { display: block; font-size: 0.85rem; color: var(--muted); }
.book .book-tag {
  display: inline-block; margin-top: 0.6rem;
  font-size: 0.7rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--gold-strong); font-weight: 600;
}

/* ============================================================
   VIDEO
   ============================================================ */
.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.video-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-800);
  position: relative;
  aspect-ratio: 16 / 9;
  transition: transform 0.5s var(--ease), box-shadow 0.5s;
  border: 1px solid var(--line);
}
.video-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.video-card svg.cover { width: 100%; height: 100%; position: absolute; inset: 0; }
.video-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13,21,38,0) 40%, rgba(13,21,38,0.88) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.4rem 1.5rem;
}
.play-btn {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 66px; height: 66px; border-radius: 50%;
  background: rgba(247, 243, 234, 0.14);
  backdrop-filter: blur(4px);
  border: 1.5px solid rgba(247, 243, 234, 0.55);
  display: grid; place-items: center;
  transition: transform 0.4s var(--ease), background 0.3s;
}
.play-btn svg { width: 24px; height: 24px; color: var(--paper); margin-left: 3px; }
.video-card:hover .play-btn { transform: translate(-50%, -50%) scale(1.08); background: var(--gold); }
.video-card:hover .play-btn svg { color: var(--navy-900); }
.video-overlay .v-cat {
  font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--gold-soft); font-weight: 600; margin-bottom: 0.4rem;
}
.video-overlay h3 { color: var(--paper); font-size: 1.15rem; line-height: 1.25; }
.video-overlay .v-dur { font-size: 0.78rem; color: rgba(247,243,234,0.7); margin-top: 0.4rem; }

/* ============================================================
   QUOTE / CTA BANNERS
   ============================================================ */
.quote-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.quote-band .container { position: relative; z-index: 2; text-align: center; }
.quote-band .qmark-lg {
  font-family: var(--font-display);
  font-size: 6rem; line-height: 0.6;
  color: var(--gold); opacity: 0.45;
  margin-bottom: 0.4rem;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.5rem, 3.4vw, 2.4rem);
  line-height: 1.35;
  color: var(--paper);
  max-width: 900px;
  margin: 0 auto 1.6rem;
}
.quote-band cite {
  font-style: normal;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
}
.quote-band .band-motif { position: absolute; inset: 0; z-index: 1; opacity: 0.5; }

.cta {
  position: relative;
  background: var(--navy-800);
  color: var(--parchment);
  border-radius: var(--radius-lg);
  padding: clamp(2.8rem, 6vw, 4.5rem);
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-bg { position: absolute; inset: 0; z-index: -1; opacity: 0.85; }
.cta h2 { color: var(--paper); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 1rem; }
.cta p { color: rgba(247,243,234,0.8); max-width: 560px; margin: 0 auto 2rem; }
.cta .hero-actions { justify-content: center; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  background: var(--navy-800);
  color: var(--parchment);
  padding-top: 78px;
  overflow: hidden;
  isolation: isolate;
}
.page-hero-bg { position: absolute; inset: 0; z-index: -1; background:
  radial-gradient(90% 130% at 85% 0%, rgba(198,161,91,0.15), transparent 50%),
  linear-gradient(160deg, #14203a, #0d1526); }
.page-hero-inner { padding-block: clamp(3.5rem, 8vw, 6rem); max-width: 760px; }
.page-hero .eyebrow { margin-bottom: 1.2rem; }
.page-hero h1 { color: var(--paper); font-size: clamp(2.3rem, 5vw, 3.6rem); margin-bottom: 1.1rem; }
.page-hero p { color: rgba(247,243,234,0.82); font-size: clamp(1.02rem, 1.6vw, 1.2rem); max-width: 600px; }

.breadcrumb {
  display: flex; gap: 0.6rem; align-items: center;
  font-size: 0.82rem; color: rgba(247,243,234,0.6);
  margin-bottom: 1.5rem;
}
.breadcrumb a:hover { color: var(--gold-soft); }
.breadcrumb .sep { color: var(--gold); }

/* Filter chips */
.filters { display: flex; flex-wrap: wrap; gap: 0.7rem; margin-bottom: 2.6rem; }
.chip {
  padding: 0.5rem 1.1rem;
  border-radius: 40px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: all 0.3s;
}
.chip:hover { border-color: var(--gold); color: var(--ink); }
.chip.active { background: var(--navy-800); color: var(--paper); border-color: var(--navy-800); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2.5rem, 6vw, 4.5rem); align-items: start; }
.contact-info .info-item { display: flex; gap: 1rem; padding: 1.3rem 0; border-bottom: 1px solid var(--line); }
.contact-info .info-item:first-of-type { padding-top: 0; }
.info-ic {
  flex: none; width: 44px; height: 44px; border-radius: 10px;
  background: var(--parchment-2); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--gold-strong);
}
.info-ic svg { width: 20px; height: 20px; }
.info-item h4 { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 0.3rem; font-family: var(--font-sans); font-weight: 600; }
.info-item p, .info-item a { font-size: 1.05rem; color: var(--ink); }
.info-item a:hover { color: var(--gold-strong); }

.form-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-sm);
}
.field { margin-bottom: 1.3rem; }
.field label { display: block; font-size: 0.86rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  width: 100%;
  padding: 0.85rem 1rem;
  font: inherit;
  font-size: 0.98rem;
  color: var(--ink);
  background: var(--parchment);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--paper);
  box-shadow: 0 0 0 3px rgba(198, 161, 91, 0.16);
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-note { font-size: 0.82rem; color: var(--muted); margin-top: 0.4rem; }
.form-success {
  display: none;
  margin-top: 1.2rem; padding: 0.9rem 1.1rem;
  background: rgba(198,161,91,0.14);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  color: var(--gold-strong);
  font-size: 0.92rem;
  font-weight: 500;
}
.form-success.show { display: block; animation: fadeUp 0.5s var(--ease); }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 243, 234, 0.72);
  padding-top: clamp(3.5rem, 7vw, 5rem);
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line-light);
}
.footer-brand .brand-name { color: var(--paper); }
.footer-brand .brand-sub { color: var(--gold-soft); }
.footer-brand p { margin-top: 1.2rem; font-size: 0.92rem; line-height: 1.6; max-width: 300px; color: rgba(247,243,234,0.6); }
.footer-col h4 {
  color: var(--paper); font-size: 0.8rem; letter-spacing: 0.14em;
  text-transform: uppercase; margin-bottom: 1.2rem; font-family: var(--font-sans); font-weight: 600;
}
.footer-col ul { display: grid; gap: 0.75rem; }
.footer-col a { font-size: 0.93rem; transition: color 0.25s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.4rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--line-light);
  display: grid; place-items: center;
  transition: all 0.3s;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  padding-block: 1.8rem;
  font-size: 0.85rem;
  color: rgba(247,243,234,0.5);
}
.footer-bottom a:hover { color: var(--gold-soft); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }
  .book-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: var(--navy-800);
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease);
    z-index: 70;
  }
  body.nav-open .nav-links { transform: none; display: flex; }
  body.nav-open { overflow: hidden; }
  .nav-links a { font-family: var(--font-display); font-size: 1.7rem; color: var(--parchment) !important; }
  .nav-links a::after { display: none; }
  .split, .contact-grid { grid-template-columns: 1fr; }
  .split.narrow-media { grid-template-columns: 1fr; }
  .mission-figure { max-width: 420px; margin-inline: auto; order: -1; }
  .grid-3, .card-grid, .video-grid { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .hero-motif { opacity: 0.35; right: -20%; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .grid-3, .card-grid, .video-grid, .grid-2, .book-grid, .field-row { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .site-header .container { height: 66px; }
  .hero { padding-top: 66px; }
  .hero-quote { flex-direction: column; gap: 0.5rem; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
