/* ============================================================
   FREE YERMAK — DOCUMENTARY LEGAL CAMPAIGN
   Design System & Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --deep-navy:   #0B1F3A;
  --off-white:   #F7F4EF;
  --warm-gold:   #D6A84F;
  --slate-gray:  #2E3440;
  --muted-blue:  #2F5F8F;
  --fake-color:  #8A2D2D;
  --truth-color: #2F6F5E;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container-max: 1200px;
  --section-pad:   5rem 0;
  --radius:        4px;
  --transition:    0.28s ease;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--off-white);
  color: var(--slate-gray);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--muted-blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--deep-navy); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--deep-navy);
  line-height: 1.15;
  font-weight: 600;
}
h1 { font-size: clamp(2.6rem, 6vw, 4.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: 1.4rem; }

/* ---- Layout ---- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 2rem;
}
.section { padding: var(--section-pad); }
.section--dark {
  background: var(--deep-navy);
  color: var(--off-white);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 { color: var(--off-white); }
.section--tinted { background: #f0ede8; }

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(11, 31, 58, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(214, 168, 79, 0.18);
  transition: border-color var(--transition);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 2rem;
  max-width: var(--container-max);
  margin: 0 auto;
}
.nav__logo {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--off-white);
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.nav__logo span { color: var(--warm-gold); }
.nav__menu {
  display: flex;
  list-style: none;
  gap: 1.75rem;
  align-items: center;
}
.nav__menu a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.72);
  transition: color var(--transition);
}
.nav__menu a:hover,
.nav__menu a.active { color: var(--warm-gold); }
.nav__right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__lang {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
.nav__lang a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.4);
  border: 1px solid transparent;
  padding: 0.22rem 0.55rem;
  border-radius: 2px;
  transition: all var(--transition);
}
.nav__lang a.active,
.nav__lang a:hover {
  color: var(--warm-gold);
  border-color: rgba(214, 168, 79, 0.5);
}
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--off-white);
  transition: all 0.3s;
}
.nav__hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ================================================================
   HERO — HOMEPAGE
   ================================================================ */
.hero {
  min-height: 100vh;
  background: var(--deep-navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 70px;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 40%, rgba(47, 95, 143, 0.25) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 80%, rgba(214, 168, 79, 0.08) 0%, transparent 50%);
}
.hero__lines {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 3px,
      rgba(214, 168, 79, 0.025) 3px,
      rgba(214, 168, 79, 0.025) 4px
    );
  pointer-events: none;
}
.hero__content {
  position: relative;
  z-index: 2;
  padding: 5rem 2rem 4rem;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}
.hero__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gold);
  border: 1px solid rgba(214, 168, 79, 0.5);
  padding: 0.4rem 1.25rem;
  border-radius: 2px;
  margin-bottom: 2rem;
}
.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7.5vw, 5.75rem);
  font-weight: 600;
  color: var(--off-white);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}
.hero__title em {
  font-style: italic;
  color: var(--warm-gold);
}
.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(247, 244, 239, 0.68);
  max-width: 680px;
  margin: 0 auto 2.75rem;
  line-height: 1.72;
}
.hero__cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}
.hero__disclaimer {
  border-top: 1px solid rgba(247, 244, 239, 0.1);
  padding-top: 2rem;
  max-width: 680px;
  margin: 0 auto;
}
.hero__disclaimer p {
  font-size: 0.84rem;
  color: rgba(247, 244, 239, 0.42);
  line-height: 1.65;
  font-style: italic;
  margin: 0;
}

/* ================================================================
   PAGE HERO (sub-pages)
   ================================================================ */
.page-hero {
  background: var(--deep-navy);
  padding: 7.5rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-gold), rgba(214,168,79,0.2));
}
.page-hero__eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1rem;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5vw, 4rem);
  color: var(--off-white);
  margin-bottom: 1rem;
  max-width: 820px;
  line-height: 1.1;
}
.page-hero__lead {
  font-size: 1.1rem;
  color: rgba(247, 244, 239, 0.62);
  max-width: 680px;
  line-height: 1.7;
}

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--warm-gold);
  color: var(--deep-navy);
  border-color: var(--warm-gold);
}
.btn--primary:hover {
  background: transparent;
  color: var(--warm-gold);
}
.btn--outline {
  background: transparent;
  color: rgba(247, 244, 239, 0.85);
  border-color: rgba(247, 244, 239, 0.35);
}
.btn--outline:hover {
  border-color: var(--off-white);
  color: var(--off-white);
  background: rgba(247, 244, 239, 0.08);
}
.btn--navy {
  background: var(--deep-navy);
  color: var(--off-white);
  border-color: var(--deep-navy);
}
.btn--navy:hover {
  background: var(--muted-blue);
  border-color: var(--muted-blue);
  color: var(--off-white);
}
.btn--ghost {
  background: transparent;
  color: var(--muted-blue);
  border-color: rgba(47, 95, 143, 0.35);
}
.btn--ghost:hover {
  border-color: var(--muted-blue);
  background: rgba(47, 95, 143, 0.06);
}

/* ================================================================
   SECTION HEADERS
   ================================================================ */
.section-header { margin-bottom: 3rem; }
.section-header--center {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}
.section-eyebrow {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.9rem;
}
.section-divider {
  width: 56px;
  height: 3px;
  background: var(--warm-gold);
  margin-top: 1.4rem;
}
.section-divider--center { margin: 1.4rem auto 0; }

/* ================================================================
   PRINCIPAL QUOTE BAND
   ================================================================ */
.quote-band {
  background: var(--deep-navy);
  padding: 5rem 2rem;
  text-align: center;
}
.quote-band__text {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 3.5vw, 2.75rem);
  font-style: italic;
  color: var(--off-white);
  max-width: 820px;
  margin: 0 auto 1.5rem;
  line-height: 1.45;
}
.quote-band__source {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
}

/* ================================================================
   FACT CARDS
   ================================================================ */
.fact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.fact-card {
  background: #fff;
  border: 1px solid rgba(46, 52, 64, 0.08);
  border-radius: var(--radius);
  padding: 2rem;
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 31, 58, 0.1);
}
.fact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--warm-gold);
  border-radius: var(--radius) 0 0 var(--radius);
}
.fact-card__num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  color: var(--warm-gold);
  line-height: 1;
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.fact-card__title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
}
.fact-card__text {
  font-size: 0.93rem;
  color: var(--slate-gray);
  line-height: 1.62;
  margin: 0;
}

/* ================================================================
   STATS STRIP
   ================================================================ */
.stats-strip {
  background: var(--warm-gold);
  padding: 3rem 0;
}
.stats-strip__inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-item__num {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--deep-navy);
  line-height: 1;
}
.stat-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(11, 31, 58, 0.6);
  margin-top: 0.4rem;
}

/* ================================================================
   FAKE / TRUTH CARDS
   ================================================================ */
.ft-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 16px rgba(11, 31, 58, 0.05);
}
.ft-card__fake {
  padding: 1.5rem 2rem;
  background: rgba(138, 45, 45, 0.05);
  border-left: 4px solid var(--fake-color);
}
.ft-card__truth {
  padding: 1.5rem 2rem;
  background: rgba(47, 111, 94, 0.05);
  border-left: 4px solid var(--truth-color);
}
.ft-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  padding: 0.22rem 0.65rem;
  border-radius: 2px;
}
.ft-badge--fake {
  color: var(--fake-color);
  background: rgba(138, 45, 45, 0.1);
}
.ft-badge--truth {
  color: var(--truth-color);
  background: rgba(47, 111, 94, 0.1);
}
.ft-card__text {
  font-size: 1rem;
  margin: 0;
  line-height: 1.62;
  color: var(--slate-gray);
}
.ft-card__fake .ft-card__text { font-style: italic; }

/* ================================================================
   TIMELINE
   ================================================================ */
.timeline {
  position: relative;
  padding-left: 3.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--warm-gold) 0%, rgba(214,168,79,0.15) 100%);
}
.timeline-item {
  position: relative;
  padding-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.timeline-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -3.1rem;
  top: 0.45rem;
  width: 14px; height: 14px;
  background: var(--warm-gold);
  border-radius: 50%;
  border: 3px solid var(--off-white);
  box-shadow: 0 0 0 2px var(--warm-gold);
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-date {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.5rem;
}
.timeline-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--deep-navy);
  margin-bottom: 0.75rem;
}
.timeline-text {
  font-size: 0.95rem;
  color: var(--slate-gray);
  line-height: 1.65;
  margin-bottom: 0.85rem;
}
.timeline-source {
  font-size: 0.78rem;
  color: rgba(46, 52, 64, 0.5);
  font-style: italic;
  margin-bottom: 0.75rem;
}
.timeline-badges { display: flex; gap: 0.6rem; flex-wrap: wrap; }
.t-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 2px;
}
.t-badge--confirmed {
  background: rgba(47, 111, 94, 0.1);
  color: var(--truth-color);
  border: 1px solid rgba(47, 111, 94, 0.25);
}
.t-badge--developing {
  background: rgba(214, 168, 79, 0.12);
  color: #9a7428;
  border: 1px solid rgba(214, 168, 79, 0.3);
}
.t-badge--statement {
  background: rgba(47, 95, 143, 0.1);
  color: var(--muted-blue);
  border: 1px solid rgba(47, 95, 143, 0.25);
}
.t-badge--pending {
  background: rgba(46, 52, 64, 0.06);
  color: rgba(46, 52, 64, 0.5);
  border: 1px solid rgba(46, 52, 64, 0.15);
}

/* ================================================================
   QUOTE BLOCK (inline)
   ================================================================ */
.quote-block {
  border-left: 4px solid var(--warm-gold);
  padding: 1.5rem 2rem;
  margin: 2.5rem 0;
  background: rgba(214, 168, 79, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.quote-block__text {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-style: italic;
  color: var(--deep-navy);
  line-height: 1.5;
  margin-bottom: 0.75rem;
}
.quote-block__attr {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gold);
}

/* ================================================================
   DOCUMENT CARDS
   ================================================================ */
.doc-cards { display: flex; flex-direction: column; gap: 1rem; }
.doc-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid rgba(46, 52, 64, 0.08);
  border-radius: var(--radius);
  transition: box-shadow var(--transition);
}
.doc-card:hover { box-shadow: 0 4px 24px rgba(11, 31, 58, 0.09); }
.doc-card__icon {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: var(--deep-navy);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--warm-gold);
  font-size: 1.2rem;
}
.doc-card__body { flex: 1; }
.doc-card__type {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.25rem;
}
.doc-card__title {
  font-weight: 600;
  color: var(--deep-navy);
  font-size: 0.97rem;
  margin-bottom: 0.25rem;
}
.doc-card__desc {
  font-size: 0.85rem;
  color: rgba(46, 52, 64, 0.65);
  margin-bottom: 0.4rem;
}
.doc-card__date {
  font-size: 0.75rem;
  color: rgba(46, 52, 64, 0.4);
}

/* ================================================================
   LEGAL / NOTICE BOXES
   ================================================================ */
.legal-box {
  background: rgba(11, 31, 58, 0.04);
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  margin: 2rem 0;
}
.legal-box__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-blue);
  margin-bottom: 0.75rem;
}
.legal-box p { font-size: 0.95rem; margin-bottom: 0.75rem; }
.legal-box p:last-child { margin-bottom: 0; }

.notice-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.1rem 1.5rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
}
.notice-box--gold {
  background: rgba(214, 168, 79, 0.07);
  border: 1px solid rgba(214, 168, 79, 0.25);
}
.notice-box--blue {
  background: rgba(47, 95, 143, 0.06);
  border: 1px solid rgba(47, 95, 143, 0.2);
}
.notice-box__icon { flex-shrink: 0; font-size: 1.1rem; margin-top: 0.1rem; }
.notice-box p { font-size: 0.88rem; line-height: 1.6; margin: 0; }

/* ================================================================
   BIO LAYOUT
   ================================================================ */
.bio-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 4.5rem;
  align-items: start;
}
.bio-sidebar { position: sticky; top: 6rem; }
.bio-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(145deg, #0d2444 0%, #1a3a5c 100%);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(247, 244, 239, 0.25);
  margin-bottom: 1rem;
  overflow: hidden;
}
.bio-photo svg { width: 80px; height: 80px; margin-bottom: 1rem; opacity: 0.3; }
.bio-photo__label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.4;
}
.bio-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(20%) contrast(1.05);
}
.bio-caption {
  font-size: 0.8rem;
  color: rgba(46, 52, 64, 0.45);
  font-style: italic;
}
.bio-quick-facts {
  background: #fff;
  border: 1px solid rgba(46, 52, 64, 0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}
.bio-quick-facts__title {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(46, 52, 64, 0.08);
}
.bio-fact-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(46, 52, 64, 0.05);
  font-size: 0.85rem;
}
.bio-fact-row:last-child { border-bottom: none; }
.bio-fact-label { color: rgba(46, 52, 64, 0.5); font-weight: 500; }
.bio-fact-value { color: var(--deep-navy); font-weight: 600; text-align: right; }

/* ================================================================
   SUPPORT / PETITION FORM
   ================================================================ */
.petition-form {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: 0 4px 28px rgba(11, 31, 58, 0.09);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--deep-navy);
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(46, 52, 64, 0.18);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--slate-gray);
  background: var(--off-white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-input:focus {
  border-color: var(--muted-blue);
  box-shadow: 0 0 0 3px rgba(47, 95, 143, 0.12);
}
textarea.form-input {
  resize: vertical;
  min-height: 110px;
}
.form-check {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.form-check input[type="checkbox"] {
  flex-shrink: 0;
  margin-top: 0.25rem;
  width: 17px; height: 17px;
  accent-color: var(--muted-blue);
}
.form-check label {
  font-size: 0.83rem;
  color: rgba(46, 52, 64, 0.65);
  line-height: 1.55;
}
.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ================================================================
   SUPPORT ACTION CARDS
   ================================================================ */
.action-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.action-card {
  background: rgba(247, 244, 239, 0.05);
  border: 1px solid rgba(247, 244, 239, 0.12);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition);
}
.action-card:hover {
  border-color: rgba(214, 168, 79, 0.5);
  transform: translateY(-3px);
}
.action-card__icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  display: block;
}
.action-card__title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--off-white);
  margin-bottom: 0.6rem;
}
.action-card__text {
  font-size: 0.87rem;
  color: rgba(247, 244, 239, 0.55);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

/* ================================================================
   BREADCRUMB
   ================================================================ */
.breadcrumb {
  background: var(--off-white);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}
.breadcrumb__inner {
  display: flex;
  gap: 0.4rem;
  align-items: center;
  height: 44px;
  font-size: 0.78rem;
  color: rgba(46, 52, 64, 0.45);
}
.breadcrumb__inner a { color: var(--muted-blue); }
.breadcrumb__inner a:hover { color: var(--deep-navy); }
.breadcrumb__sep { color: rgba(46, 52, 64, 0.25); }
.breadcrumb__current { color: var(--slate-gray); font-weight: 500; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: #060e1c;
  color: rgba(247, 244, 239, 0.45);
  padding: 4.5rem 0 2rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}
.footer__brand {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: var(--off-white);
  margin-bottom: 0.9rem;
}
.footer__brand span { color: var(--warm-gold); }
.footer__desc { font-size: 0.875rem; line-height: 1.65; margin-bottom: 1.5rem; }
.footer__col-heading {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--warm-gold);
  margin-bottom: 1.25rem;
}
.footer__links { list-style: none; }
.footer__links li { margin-bottom: 0.55rem; }
.footer__links a {
  font-size: 0.875rem;
  color: rgba(247, 244, 239, 0.42);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--off-white); }
.footer__bottom {
  border-top: 1px solid rgba(247, 244, 239, 0.07);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer__copy { font-size: 0.78rem; }
.footer__legal {
  font-size: 0.73rem;
  font-style: italic;
  max-width: 480px;
  text-align: right;
  line-height: 1.55;
}
.footer__lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}
.footer__lang a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.65rem;
  border-radius: 2px;
  border: 1px solid transparent;
  color: rgba(247, 244, 239, 0.35);
  transition: all var(--transition);
}
.footer__lang a.active,
.footer__lang a:hover {
  color: var(--warm-gold);
  border-color: rgba(214, 168, 79, 0.4);
}

/* ================================================================
   UTILS
   ================================================================ */
.text-gold { color: var(--warm-gold); }
.text-muted { color: rgba(46, 52, 64, 0.55); font-size: 0.9rem; }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-3 { margin-top: 2.25rem; }
.mb-1 { margin-bottom: 0.75rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-3 { margin-bottom: 2.25rem; }
.flex-row { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

/* ================================================================
   SCROLL ANIMATIONS
   ================================================================ */
.animate-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .bio-layout { grid-template-columns: 280px 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 0; }
  body { font-size: 16px; }

  .nav__menu {
    display: none;
    position: fixed;
    inset: 70px 0 0;
    background: rgba(11, 31, 58, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    overflow-y: auto;
  }
  .nav__menu.open { display: flex; }
  .nav__menu a { font-size: 1rem; }
  .nav__hamburger { display: flex; }
  .nav__lang { display: none; }

  .grid-2 { grid-template-columns: 1fr; gap: 2rem; }
  .grid-3 { grid-template-columns: 1fr; }

  .hero__content { padding: 4rem 1.5rem 3rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .hero__cta .btn { width: 100%; justify-content: center; }

  .bio-layout { grid-template-columns: 1fr; }
  .bio-sidebar { position: static; }
  .bio-photo { max-width: 240px; margin: 0 auto; }

  .footer__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__bottom { flex-direction: column; }
  .footer__legal { text-align: left; max-width: 100%; }

  .timeline { padding-left: 2.25rem; }
  .timeline-item::before { left: -2.1rem; }

  .form-grid-2 { grid-template-columns: 1fr; }
  .stats-strip__inner { justify-content: center; }

  .quote-band { padding: 3.5rem 1.5rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .fact-cards { grid-template-columns: 1fr; }
  .action-cards { grid-template-columns: 1fr; }
  .page-hero { padding: 6rem 1.25rem 3rem; }
}

/* ============================================
   IMAGE SLOTS — Hero Portrait
   ============================================ */

.hero {
  position: relative;
  overflow: hidden;
}

.hero__container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: inherit;
  padding-top: 7rem;
  padding-bottom: 6rem;
}

/* On the split layout the text block doesn't fill full width */
.hero__container .hero__content {
  max-width: 580px;
  margin: 0;
  text-align: left;
  padding: 0;
}

.hero__container .hero__cta {
  justify-content: flex-start;
}

/* Portrait column — absolutely positioned so it bleeds to right edge */
.hero__visual {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(38vw, 520px);
  z-index: 1;
  pointer-events: none;
}

.hero__portrait-wrap {
  position: relative;
  border-radius: 6px 6px 0 0;
  overflow: hidden;
  box-shadow: -24px 0 80px rgba(11,31,58,0.45);
}

.hero__portrait {
  display: block;
  width: 100%;
  height: 580px;
  object-fit: cover;
  object-position: top center;
  filter: grayscale(100%) contrast(1.05);
}

/* Cool blue tint overlay on portrait */
.hero__portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.22);
  mix-blend-mode: multiply;
  pointer-events: none;
}

/* Glassmorphism document card floating over portrait */
.hero__document-card {
  position: absolute;
  left: -52px;
  bottom: 80px;
  width: 268px;
  padding: 1.25rem 1.5rem;
  background: rgba(247,244,239,0.94);
  border-left: 3px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 8px 32px rgba(11,31,58,0.22);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  pointer-events: auto;
}

.hero__document-card span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.hero__document-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.3;
}

/* Placeholder variant — keep the SVG visible but slightly dim */
.hero__portrait--placeholder {
  filter: none;
  opacity: 0.85;
}

/* ============================================
   IMAGE SLOTS — Quote Band Texture
   ============================================ */

.quote-band {
  position: relative;
}

.quote-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/legal-paper-texture.webp') center / cover no-repeat;
  opacity: 0.07;
  pointer-events: none;
}

/* ============================================
   IMAGE SLOTS — Fact Card Icons
   ============================================ */

.fact-card__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1.25rem;
  opacity: 0.75;
}

.fact-card__icon img {
  width: 100%;
  height: 100%;
}

/* ============================================
   IMAGE SLOTS — Stats Strip Background
   ============================================ */

.stats-strip {
  position: relative;
}

.stats-strip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/stats-texture.svg') center / 320px auto repeat;
  opacity: 0.04;
  pointer-events: none;
}

/* ============================================
   IMAGE SLOTS — Timeline Thumbnails
   ============================================ */

.timeline-thumb {
  margin-top: 1rem;
  border-radius: 6px;
  overflow: hidden;
  max-width: 380px;
  line-height: 0;
}

.timeline-thumb img {
  width: 100%;
  height: auto;
  max-height: 180px;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.04);
  display: block;
  border-radius: 6px;
  transition: filter 0.3s ease;
}

.timeline-thumb img:hover {
  filter: grayscale(60%) contrast(1.02);
}

/* ============================================
   IMAGE SLOTS — Mission Section Background
   ============================================ */

.section--mission {
  position: relative;
}

.section--mission::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(11,31,58,0.92), rgba(11,31,58,0.92)),
    url('../img/legal-documents-dark.webp') center / cover no-repeat;
  z-index: 0;
  pointer-events: none;
}

.section--mission > * {
  position: relative;
  z-index: 1;
}

/* ============================================
   IMAGE SLOTS — Quick Link Cards
   ============================================ */

.quick-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.quick-card {
  background: var(--white);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11,31,58,0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.quick-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(11,31,58,0.13);
}

.quick-card__image {
  height: 160px;
  overflow: hidden;
  line-height: 0;
  background: var(--slate);
}

.quick-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.03);
  display: block;
  transition: filter 0.3s ease;
}

.quick-card:hover .quick-card__image img {
  filter: grayscale(60%);
}

.quick-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.quick-card__body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}

.quick-card__body p {
  font-family: var(--font-body);
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
  line-height: 1.5;
}

/* ============================================
   IMAGE SLOTS — FT Card Claim Mark
   ============================================ */

.ft-card__mark {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fake);
  border: 1px solid currentColor;
  padding: 0.2em 0.55em;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

/* ============================================
   IMAGE SLOTS — Footer Texture
   ============================================ */

.footer {
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../img/footer-texture.png') left top / 280px auto repeat;
  opacity: 0.025;
  pointer-events: none;
}

/* ============================================
   RESPONSIVE — Hero Portrait breakpoints
   ============================================ */

@media (max-width: 1024px) {
  .hero__visual {
    width: min(42vw, 440px);
  }

  .hero__portrait {
    height: 500px;
  }

  .hero__document-card {
    left: -32px;
    bottom: 60px;
    width: 240px;
  }
}

@media (max-width: 900px) {
  /* Stack portrait below text on smaller screens */
  .hero__container {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 0;
  }

  .hero__container .hero__content {
    max-width: 100%;
  }

  .hero__container .hero__cta {
    justify-content: center;
  }

  .hero__visual {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    max-width: 480px;
    margin: 2rem auto 0;
  }

  .hero__portrait {
    height: 340px;
    border-radius: 6px 6px 0 0;
  }

  .hero__portrait-wrap {
    border-radius: 6px 6px 0 0;
  }

  .hero__document-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 0;
    border-radius: 0 0 4px 4px;
    border-left: none;
    border-top: 3px solid var(--gold);
  }
}

@media (max-width: 768px) {
  .quick-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-thumb {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .quick-cards {
    grid-template-columns: 1fr;
  }
}
