:root {
  /* ── Active palette ── */
  --crimson: #a6121f; /* primary accent on light surfaces; card hover on dark */
  --crimson-dark: #7a0c15; /* deep surfaces: nav, segments bg, footer, about-visual, mobile menu */
  --crimson-mid: #8e1420; /* raised card surface on crimson-dark */
  --crimson-bright: #c8102e; /* small bright accents (figure sup) */
  --rose: #e8b4b8; /* accent text/icons on dark crimson surfaces */
  --off-white: #faf8f8; /* page + light-section background */
  --off-white-dark: #f1eded; /* placeholder surfaces */
  --slate: #4a5568;
  --white: #ffffff;
  --text-primary: #1a202c;
  --text-secondary: #616b7a;
  --serif: "DM Serif Display", Georgia, serif;
  --sans: "Sora", sans-serif;

  /* ── Dormant (kept for future use — not referenced anywhere) ── */
  --navy: #0b1d33;
  --navy-mid: #132b4a;
  --navy-light: #1a3a63;
  --gold: #c9a962;
  --gold-light: #d4ba7a;
  --cream: #f7f4ee;
  --cream-dark: #ede8df;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  color: var(--text-primary);
  background: var(--off-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1 0 auto;
}

main > section:first-child:not(.hero) {
  padding-top: max(72px, 10vw);
}

/* ── UTILITY ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
/* Scroll-reveal is scoped to .js, which is set in <head> before first paint.
   Without JavaScript the rule never applies and every .fade-up element is
   simply visible — which is what non-JS crawlers and LLM fetchers see. */
.js .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 {
  transition-delay: 0.1s;
}
.delay-2 {
  transition-delay: 0.2s;
}
.delay-3 {
  transition-delay: 0.3s;
}
.delay-4 {
  transition-delay: 0.4s;
}

/* ── NAVBAR ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.site-nav::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(122, 12, 21, 0.95);
  backdrop-filter: blur(12px);
  z-index: -1;
}
.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 8px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.nav-brand {
  display: flex;
  flex-direction: column;
  font-family: "Volte Rounded", sans-serif;
  color: var(--white);
  line-height: 1.25;
}
.nav-brand span {
  display: block;
  text-transform: uppercase;
}
.nav-brand span:first-child {
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.nav-brand span:last-child {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover {
  color: var(--white);
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 80% 40%,
      rgba(166, 18, 31, 0.06) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 40% 60% at 20% 70%,
      rgba(122, 12, 21, 0.05) 0%,
      transparent 70%
    );
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
  opacity: 0.3;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(166, 18, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(166, 18, 31, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
}
.hero .container {
  position: relative;
  z-index: 2;
}
.hero-tag {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-tag::before {
  content: "";
  width: 40px;
  height: 1px;
  background: var(--crimson);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  color: var(--text-primary);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 800px;
}
.hero h1 em {
  font-style: italic;
  color: var(--crimson);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.1rem);
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 36px;
  border: 1px solid var(--crimson);
  color: var(--crimson);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.35s;
}
.hero-cta:hover {
  background: var(--crimson);
  color: var(--white);
}
.hero-cta svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s;
}
.hero-cta:hover svg {
  transform: translateX(4px);
}

.hero-stats {
  position: absolute;
  right: clamp(30px, 6vw, 80px);
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  z-index: 2;
}
.hero-stat {
  text-align: right;
}
.hero-stat-num {
  font-family: var(--serif);
  font-size: 2.6rem;
  color: var(--crimson);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.68rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 6px;
}

/* ── SECTION COMMON ── */
section {
  padding: clamp(60px, 10vw, 120px) 0;
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--crimson);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.section-tag::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--crimson);
}

/* On the dark segments surface, the tag needs the light accent */
.segments .section-tag {
  /* color: var(--rose); */
  color: var(--crimson);
}
.segments .section-tag::before {
  /* background: var(--rose); */
  background: var(--crimson);
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-title.light {
  color: var(--white);
}

/* ── ABOUT ── */
.about .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.about-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 20px;
}
.about-visual {
  position: relative;
  height: 480px;
  background: var(--crimson-dark);
  overflow: hidden;
}
.about-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232, 180, 184, 0.14) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.05) 40px,
      rgba(255, 255, 255, 0.05) 41px
    );
}

/* Photo under a crimson scrim. The photo is a real <img> now rather than a
   CSS background-image, so it is reachable by image search, carries alt text,
   and can be served as avif/webp with srcset. */
.about-visual picture,
.about-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}
.about-visual img {
  object-fit: cover;
}
.about-visual::before {
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(232, 180, 184, 0.14) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.05) 40px,
      rgba(255, 255, 255, 0.05) 41px
    ),
    linear-gradient(160deg, rgba(122, 12, 21, 0.5) 0%, rgba(122, 12, 21, 0.78) 100%);
}
.about-visual-text {
  position: absolute;
  bottom: 36px;
  left: 36px;
  right: 36px;
  z-index: 2;
}
.about-visual-text span {
  display: block;
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  line-height: 1.35;
}
.about-visual-text span em {
  color: var(--rose);
  font-style: italic;
}
.year-badge {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 2;
  font-family: var(--serif);
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.12);
  line-height: 1;
}

/* ── SEGMENTS ── */
.segments {
  /* background: var(--crimson-dark); */
  background: var(--white);
}
.segments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  margin-top: 48px;
}
.segment-card {
  background: var(--crimson-mid);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  overflow: hidden;
  transition: background 0.4s;
  display: flex;
  flex-direction: column;
}
.segment-card:hover {
  background: var(--crimson);
}
/* Entry animation: .segment-card's own `transition: background` overrides the
   .fade-up transition, so the entrance is animated with keyframes instead —
   keeps the hover snappy and the .delay-N stagger intact */
@keyframes segment-card-in {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.segment-card.fade-up.visible {
  animation: segment-card-in 0.7s ease both;
}
.segment-card.fade-up.delay-1.visible {
  animation-delay: 0.1s;
}
.segment-card.fade-up.delay-2.visible {
  animation-delay: 0.2s;
}
.segment-card.fade-up.delay-3.visible {
  animation-delay: 0.3s;
}
.segment-card.fade-up.delay-4.visible {
  animation-delay: 0.4s;
}
.segment-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.segment-card:hover::before {
  transform: scaleX(1);
}
.segment-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(232, 180, 184, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--rose);
}
.segment-icon svg {
  width: 20px;
  height: 20px;
}
.segment-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--white);
  margin-bottom: 14px;
}
.segment-card p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  flex: 1;
}
.segment-sub {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.72rem;
  color: var(--rose);
  letter-spacing: 0.05em;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.segment-arrow {
  display: none;
  flex-shrink: 0;
}
.segment-sub--linked {
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.segment-sub--linked .segment-arrow {
  display: block;
}
.segment-sub--linked:hover {
  opacity: 0.75;
}
.segment-sub--linked {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.segment-sub--linked:hover {
  opacity: 0.75;
}

/* ── KEY FIGURES ── */
.figures {
  background: var(--off-white);
}
.figures-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 48px;
}
.figure-box {
  background: var(--white);
  padding: clamp(28px, 3vw, 48px);
  text-align: center;
  position: relative;
}
.figure-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 2px;
  background: var(--crimson);
  opacity: 0;
  transition: opacity 0.3s;
}
.figure-box:hover::after {
  opacity: 1;
}
.figure-num {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--crimson-dark);
  line-height: 1;
}
.figure-num sup {
  font-size: 0.4em;
  color: var(--crimson-bright);
  vertical-align: super;
}
.figure-label {
  font-size: 0.72rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 12px;
  font-weight: 500;
}

/* ── LEADERSHIP ── */
.leadership {
  background: var(--white);
}
#leadership {
  scroll-margin-top: 84px; /* clear the fixed 72px nav on anchor jumps */
}

/* Featured leaders: alternating wide/short text-photo bands.
   crimson-dark media panel doubles as the photo placeholder. */
.leader-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  margin-top: 48px;
}
.leader-feature + .leader-feature {
  margin-top: 2px;
}
.leader-feature-media {
  position: relative;
  min-height: clamp(240px, 30vw, 320px);
  background: var(--crimson-dark);
  overflow: hidden;
}
.leader-feature-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(232, 180, 184, 0.14) 0%, transparent 60%),
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 40px,
      rgba(255, 255, 255, 0.05) 40px,
      rgba(255, 255, 255, 0.05) 41px
    );
}
.leader-feature--reverse .leader-feature-media {
  order: 2;
}
.leader-feature-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(28px, 4vw, 56px);
}
.leader-feature-text .role {
  font-size: 0.75rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-bottom: 10px;
}
.leader-feature-text h3 {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.leader-feature-text .bio {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  max-width: 46ch;
}
/* Impact: activity names that have no write-up of their own. A wrapped row of chips
   reads as a deliberate index rather than as a section that ran out of content, which
   matters for Environmental Stewardship where no activity has copy or a photograph. */
.impact-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  list-style: none;
}
.impact-chip {
  font-size: 0.8rem;
  line-height: 1.2;
  color: var(--text-secondary);
  border: 1px solid rgba(166, 18, 31, 0.28);
  border-radius: 999px;
  padding: 8px 16px;
  background: rgba(166, 18, 31, 0.04);
}

/* Four pillar sections run consecutively, so they alternate between the page background
   and white. Only two shades apart, which delineates each pillar without reading as
   stripes. */
.pillar-alt {
  background: var(--white);
}

/* Numbered pillar sections. Mirrors .value-index on the Values page so the two pages
   share a visual language; hidden on mobile there, kept inline here since it sits in
   the heading rather than in the margin. */
.pillar-index {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--crimson);
  margin-right: 12px;
}

.leaders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.leader-card {
  text-align: center;
}
.leader-photo {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--off-white-dark);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
.leader-photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(122, 12, 21, 0.06) 100%
  );
}
.leader-photo-initials {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--serif);
  font-size: 2.4rem;
  color: rgba(122, 12, 21, 0.1);
}
.leader-card h4 {
  font-family: var(--serif);
  font-size: 1.15rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.leader-card .role {
  font-size: 0.75rem;
  color: var(--crimson);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}
.leader-card .bio {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.65;
  margin-top: 10px;
}

/* ── VALUES ── */
.values {
  background: var(--off-white);
}
.values-zigzag {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}
.value-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}
.value-card {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 28px 32px;
  background: var(--white);
  border: 1px solid rgba(122, 12, 21, 0.12);
  border-radius: 20px;
  box-shadow: 0 12px 30px rgba(122, 12, 21, 0.06);
  transition:
    transform 0.3s,
    border-color 0.3s,
    box-shadow 0.3s;
}
.value-index {
  grid-column: 2;
  grid-row: 1;
  font-family: var(--serif);
  font-size: clamp(3.5rem, 9vw, 7rem);
  line-height: 1;
  color: rgba(122, 12, 21, 0.1);
  text-align: center;
  user-select: none;
}
.value-row:nth-child(even) .value-card {
  grid-column: 2;
}
.value-row:nth-child(even) .value-index {
  grid-column: 1;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--crimson);
  box-shadow: 0 18px 40px rgba(122, 12, 21, 0.12);
}
.value-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  /* Real <img> now, not a background-image: alt text and image search reach it. */
  object-fit: cover;
  flex-shrink: 0;
  box-shadow: 0 0 0 6px rgba(122, 12, 21, 0.05);
}
.value-text h4 {
  font-family: var(--serif);
  font-size: 1.25rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}
.value-text p {
  font-size: 0.85rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ── FOOTER ── */
footer {
  flex-shrink: 0;
  background: var(--crimson-dark);
  padding: 64px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-brand img {
  height: 44px;
  width: auto;
  display: block;
}
.footer-wordmark {
  display: flex;
  flex-direction: column;
  font-family: "Volte Rounded", sans-serif;
  color: var(--rose);
  line-height: 1.25;
}
.footer-wordmark span {
  display: block;
  text-transform: uppercase;
}
.footer-wordmark span:first-child {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}
.footer-wordmark span:last-child {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.08em;
}
.footer-desc {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.7;
  max-width: 320px;
}
.footer-col h2 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-col a:hover {
  color: var(--white);
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.3s;
}
.footer-legal a:hover {
  color: var(--white);
}

/* ── HAMBURGER ── */
.nav-toggle {
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 101;
}
.nav-toggle > span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition:
    transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.25s ease,
    width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}
.nav-toggle.open > span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.open > span:nth-child(2) {
  opacity: 0;
  width: 0;
}
.nav-toggle.open > span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }
  .nav-links {
    display: flex;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--crimson-dark);
    flex-direction: column;
    backdrop-filter: blur(20px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    gap: 48px;
    visibility: hidden;
    transform: translateY(-100%);
    transition:
      transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
      visibility 0.45s;
  }
  .nav-links.open {
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links li {
    opacity: 0;
    transform: translateY(12px);
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }
  .nav-links.open li:nth-child(1) {
    opacity: 1;
    transform: none;
    transition-delay: 0.06s;
  }
  .nav-links.open li:nth-child(2) {
    opacity: 1;
    transform: none;
    transition-delay: 0.12s;
  }
  .nav-links.open li:nth-child(3) {
    opacity: 1;
    transform: none;
    transition-delay: 0.18s;
  }
  .nav-links.open li:nth-child(4) {
    opacity: 1;
    transform: none;
    transition-delay: 0.24s;
  }
  .nav-links.open li:nth-child(5) {
    opacity: 1;
    transform: none;
    transition-delay: 0.3s;
  }
  .nav-links.open li:nth-child(6) {
    opacity: 1;
    transform: none;
    transition-delay: 0.36s;
  }
  .nav-links a {
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--white);
  }
  .nav-links a:hover {
    color: var(--rose);
  }
  .about .container {
    grid-template-columns: 1fr;
  }
  .about-visual {
    height: 320px;
  }
  .value-row {
    grid-template-columns: 1fr;
  }
  .value-index {
    display: none;
  }
  .leader-feature {
    grid-template-columns: 1fr;
  }
  .leader-feature-media,
  .leader-feature--reverse .leader-feature-media {
    order: 0; /* photo always above text on mobile */
  }
  .figures-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }
  .hero-stats {
    display: none;
  }
}
@media (max-width: 600px) {
  .figures-row {
    grid-template-columns: 1fr;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   ACCESSIBILITY & RESILIENCE
   Added in the Phase 6 pass. Before this the stylesheet contained no
   :focus rule at all, so keyboard navigation was completely invisible,
   and motion ran regardless of the visitor's OS preference.
   ══════════════════════════════════════════════════════════════════════ */

/* ── Visible focus, everywhere ── */
:focus-visible {
  outline: 3px solid var(--crimson-bright);
  outline-offset: 3px;
  border-radius: 2px;
}
.site-nav :focus-visible,
footer :focus-visible,
.segments :focus-visible,
.wa-float:focus-visible {
  outline-color: #fff;
}
/* Only suppress the ring for pointer users, never for keyboard users. */
:focus:not(:focus-visible) {
  outline: none;
}

/* ── Skip link ── */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 999;
  padding: 12px 20px;
  background: var(--crimson-dark);
  color: #fff;
  font-size: 0.85rem;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* ── Motion preferences ── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .js .fade-up {
    opacity: 1;
    transform: none;
  }
}

/* ── Current page indicator ── */
.nav-links a[aria-current="page"] {
  color: #fff;
}
.nav-links a[aria-current="page"]::after {
  content: "";
  display: block;
  height: 2px;
  margin-top: 4px;
  background: var(--crimson-bright);
}

/* ══════════════════════════════════════════════════════════════════════
   COMPONENTS ADDED IN THIS PASS
   ══════════════════════════════════════════════════════════════════════ */

.container--narrow {
  max-width: 820px;
}

/* ── Breadcrumbs (paired with BreadcrumbList JSON-LD) ──
   The nav is position:fixed at 72px, so the first element inside <main>
   has to clear it itself. */
.breadcrumbs {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--off-white);
  padding-top: 72px;
}
/* Breadcrumbs already cleared the nav — don't pad the next section again. */
main > .breadcrumbs + section {
  padding-top: clamp(40px, 6vw, 72px);
}
.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  padding: 14px 0;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-secondary);
}
.breadcrumbs li + li::before {
  content: "/";
  margin-right: 8px;
  opacity: 0.4;
}
.breadcrumbs a {
  color: inherit;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: var(--crimson);
}
.breadcrumbs [aria-current="page"] {
  color: var(--crimson-dark);
}

/* ── Language switch ── */
.nav-lang a {
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
}
.nav-lang a:hover {
  border-color: #fff;
}

/* ── Section lead paragraph ── */
.section-lead {
  max-width: 760px;
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 44px;
}

/* ── FAQ ── */
.faq {
  padding: clamp(70px, 10vw, 120px) 0;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  padding: 26px 28px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  background: #fff;
}
.faq-item h2 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-anchor {
  color: inherit;
  text-decoration: none;
}
.faq-anchor:hover {
  color: var(--crimson);
}
.faq-item p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-secondary);
}
.faq-updated {
  margin-top: 36px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

/* ── Legal pages ── */
.legal {
  padding: clamp(70px, 10vw, 120px) 0;
}
.legal-block {
  margin-bottom: 32px;
}
.legal-block h2 {
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.legal-block p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-secondary);
}

/* ── Forms ── */
.form-section {
  padding: clamp(70px, 10vw, 120px) 0;
  background: var(--off-white-dark);
}
.site-form {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}
.form-row {
  display: grid;
  gap: 7px;
}
.form-row label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-secondary);
}
.form-row input,
.form-row textarea {
  font: inherit;
  font-size: 0.92rem;
  padding: 13px 15px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 3px;
  background: #fff;
  color: inherit;
  width: 100%;
}
.form-row input:focus,
.form-row textarea:focus {
  border-color: var(--crimson);
}
.form-row textarea {
  resize: vertical;
  min-height: 130px;
}
.site-form button {
  justify-self: start;
  cursor: pointer;
  border: 1px solid var(--crimson);
  background: var(--crimson);
  color: #fff;
}
/* Honeypot: off-screen rather than display:none, which some bots detect. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-alt {
  margin-top: 22px;
  font-size: 0.85rem;
}

/* ── WhatsApp ── */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 90;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease;
}
.wa-float:hover {
  transform: scale(1.06);
}
.footer-wa,
.wa-inline {
  color: #7fe3a4;
}

/* ── Cookie notice ── */
.cookie-notice {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 95;
  max-width: 620px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 6px;
  background: var(--crimson-dark);
  color: #fff;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.cookie-notice[hidden] {
  display: none;
}
.cookie-notice p {
  font-size: 0.8rem;
  line-height: 1.6;
  flex: 1 1 300px;
}
.cookie-notice a {
  color: #fff;
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  gap: 8px;
}
.cookie-actions button {
  font: inherit;
  font-size: 0.78rem;
  padding: 8px 16px;
  border-radius: 3px;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: #fff;
}
.cookie-actions button[data-cookie="accept"] {
  background: #fff;
  color: var(--crimson-dark);
  border-color: #fff;
}

/* ── Contact figure links & address ── */
address.figures-row,
.footer-address {
  font-style: normal;
}
.figure-num--sm {
  font-size: 1rem;
  line-height: 1.6;
}
.figure-num--md {
  font-size: 1.1rem;
}
a.figure-num {
  color: inherit;
  text-decoration: none;
}
a.figure-num:hover {
  color: var(--crimson);
}
.footer-address a {
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
  line-height: 1.9;
  font-size: 0.82rem;
}
.footer-address a:hover {
  color: #fff;
}
.footer-social a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.62);
  text-decoration: none;
}

/* ── Home CTA + thank-you pages ── */
.home-cta,
.thanks {
  padding: clamp(70px, 10vw, 120px) 0;
  text-align: center;
}
.home-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: center;
  margin-top: 28px;
}
.text-link {
  color: var(--crimson);
  font-size: 0.85rem;
}

/* ── Segment sub-link (was a div with onclick) ──
   Only the underline is reset; the colour must stay var(--rose) from
   .segment-sub, or the label goes dark-on-crimson and fails contrast. */
a.segment-sub {
  text-decoration: none;
}

/* ══════════════════════════════════════════════════════════════════════
   PRINT
   ══════════════════════════════════════════════════════════════════════ */
@media print {
  .site-nav,
  .breadcrumbs,
  .wa-float,
  .cookie-notice,
  .skip-link,
  .hero-cta,
  .site-form {
    display: none !important;
  }
  .js .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }
  body {
    background: #fff;
    color: #000;
  }
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.75em;
    word-break: break-all;
  }
}
