/* ─────────────────────────────────────────────────────────
   FONTS
───────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300..800&family=Source+Serif+4:ital,opsz,wght@0,8..60,300..800;1,8..60,300..800&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─────────────────────────────────────────────────────────
   DESIGN TOKENS
───────────────────────────────────────────────────────── */
:root {
  /* Primary palette - bold, saturated, no warm neutrals */
  --forest:      #0E4D38;
  --forest-d:    #07382A;
  --forest-l:    #186248;
  --forest-tint: #E6EFEA;

  --marigold:    #E5A52B;
  --marigold-d:  #BC841A;
  --marigold-l:  #F2C268;

  --coral:       #CC4628;
  --coral-d:     #A53619;

  /* Neutrals - cool, never warm */
  --ink:         #0F1216;
  --ink-soft:    #2E333C;
  --muted:       #5E6571;
  --rule:        #E2E3DD;
  --rule-d:      #C8CAC2;

  --white:       #FFFFFF;
  --mist:        #F2F4F1;
  --mist-d:      #E7EAE5;

  /* Typography */
  --display: 'Bricolage Grotesque', 'Inter Tight', system-ui, sans-serif;
  --body:    'Source Serif 4', Georgia, serif;
  --mono:    'JetBrains Mono', ui-monospace, monospace;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 18, 22, 0.04), 0 2px 6px rgba(15, 18, 22, 0.04);
  --shadow-md: 0 4px 12px rgba(15, 18, 22, 0.06), 0 12px 32px rgba(15, 18, 22, 0.08);
  --shadow-lg: 0 16px 40px rgba(15, 18, 22, 0.10), 0 32px 64px rgba(15, 18, 22, 0.08);
}

/* ─────────────────────────────────────────────────────────
   RESET
───────────────────────────────────────────────────────── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

::selection { background: var(--marigold); color: var(--ink); }

/* ─────────────────────────────────────────────────────────
   TYPOGRAPHY
───────────────────────────────────────────────────────── */
.display {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.display em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 60, "wght" 400;
  color: var(--coral);
  letter-spacing: -0.01em;
}

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--coral);
}
.eyebrow.on-dark { color: var(--marigold); }
.eyebrow.on-dark::before { background: var(--marigold); }

/* ─────────────────────────────────────────────────────────
   LAYOUT
───────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

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

/* ─────────────────────────────────────────────────────────
   NAV
───────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-monogram {
  width: 42px;
  height: 42px;
  background: var(--forest);
  color: var(--marigold);
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.02em;
  border-radius: 3px;
}
.nav-name {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink);
  line-height: 1.1;
}
.nav-name small {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 2px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a.active { color: var(--ink); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--marigold);
}

.nav-mobile-toggle {
  display: none;
  background: var(--forest);
  color: var(--white);
  border: none;
  width: 42px;
  height: 42px;
  font-size: 18px;
  cursor: pointer;
  border-radius: 3px;
}

@media (max-width: 880px) {
  .nav-links { display: none; }

  /* Keep the menu inside the header so it always opens directly below it. */
  .nav.menu-active {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: var(--white);
  }

  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    width: 100%;
    height: calc(100vh - var(--mobile-menu-header-height, 83px));
    height: calc(100dvh - var(--mobile-menu-header-height, 83px));
    max-height: calc(100vh - var(--mobile-menu-header-height, 83px));
    max-height: calc(100dvh - var(--mobile-menu-header-height, 83px));
    min-height: 0;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    background: var(--white);
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
    padding: 24px 32px calc(48px + env(safe-area-inset-bottom));
    margin: 0;
    gap: 18px;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior-y: contain;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-y;
    box-sizing: border-box;
    box-shadow: 0 24px 40px rgba(15, 18, 22, 0.12);
  }

  html.menu-open,
  body.menu-open {
    overflow: hidden !important;
    overscroll-behavior: none;
  }

  body.menu-open {
    position: fixed;
    right: 0;
    left: 0;
    width: 100%;
  }

  .nav-mobile-toggle { display: block; }
}

/* ─────────────────────────────────────────────────────────
   HERO - HOME
───────────────────────────────────────────────────────── */
.hero-home {
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.hero-home-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 72px;
  align-items: end;
  padding-bottom: 110px;
}
.hero-home h1 {
  font-size: clamp(64px, 9.2vw, 140px);
  margin: 28px 0 36px;
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
}
.hero-home h1 .line-2 {
  display: block;
  position: relative;
  padding-left: clamp(40px, 8vw, 100px);
}
.hero-home h1 .line-2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: clamp(28px, 6vw, 72px);
  height: 4px;
  background: var(--marigold);
}
.hero-home h1 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 60, "wght" 400;
  color: var(--forest);
}

.hero-lede {
  font-family: var(--body);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 540px;
  font-weight: 300;
}

.hero-meta {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-meta-item {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.hero-meta-item::before {
  content: "";
  width: 6px;
  height: 6px;
  background: var(--marigold);
  border-radius: 50%;
}

/* Portrait card */
.hero-portrait {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--forest);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-portrait::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(229, 165, 43, 0.18), transparent 50%),
    radial-gradient(circle at 70% 80%, rgba(204, 70, 40, 0.15), transparent 50%);
}
.hero-portrait-inner {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(229, 165, 43, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  color: var(--white);
}
.hero-portrait-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
}
.hero-portrait-mono {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(120px, 18vw, 180px);
  line-height: 0.85;
  color: var(--marigold);
  text-align: center;
  margin: auto 0;
  letter-spacing: -0.04em;
}
.hero-portrait-bottom {
  font-family: var(--body);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
}
.hero-portrait-bottom strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--white);
  margin-bottom: 4px;
}

@media (max-width: 880px) {
  .hero-home-grid { grid-template-columns: 1fr; gap: 56px; padding-bottom: 80px; }
  .hero-portrait { max-width: 380px; }
}

/* ─────────────────────────────────────────────────────────
   HERO - INNER PAGES (BANNER)
───────────────────────────────────────────────────────── */
.hero-banner {
  background: var(--forest);
  color: var(--white);
  padding: 90px 0 100px;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 60% at 90% 30%, rgba(229, 165, 43, 0.18), transparent 70%),
    radial-gradient(ellipse 50% 70% at 10% 90%, rgba(204, 70, 40, 0.15), transparent 70%);
  pointer-events: none;
}
.hero-banner::after {
  content: attr(data-watermark);
  position: absolute;
  right: -2vw;
  bottom: -3vw;
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(180px, 22vw, 340px);
  color: rgba(255, 255, 255, 0.04);
  line-height: 0.8;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  pointer-events: none;
}
.hero-banner-inner { position: relative; z-index: 2; }
.hero-banner .breadcrumb {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-banner .breadcrumb a {
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s;
}
.hero-banner .breadcrumb a:hover { color: var(--white); }
.hero-banner h1 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(56px, 8vw, 112px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 24px;
}
.hero-banner h1 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--marigold);
  font-variation-settings: "opsz" 60, "wght" 400;
}
.hero-banner p {
  font-size: 21px;
  line-height: 1.5;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

/* ─────────────────────────────────────────────────────────
   STATS BAND
───────────────────────────────────────────────────────── */
.stats-band {
  background: var(--ink);
  color: var(--white);
  padding: 90px 0;
  position: relative;
  overflow: hidden;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(14, 77, 56, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(229, 165, 43, 0.12), transparent 60%);
  pointer-events: none;
}
.stats-eyebrow {
  text-align: center;
  margin-bottom: 64px;
  justify-content: center;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  padding: 0 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--white);
  margin-bottom: 14px;
}
.stat-number em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--marigold);
}
.stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.6;
}

@media (max-width: 760px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 56px 0; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(1), .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 56px;
  }
}

/* ─────────────────────────────────────────────────────────
   SECTION HEAD
───────────────────────────────────────────────────────── */
.section-head {
  max-width: 720px;
  margin-bottom: 72px;
}
.section-head h2 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(40px, 5.5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin-top: 20px;
  color: var(--ink);
}
.section-head h2 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
  font-variation-settings: "opsz" 60, "wght" 400;
}
.section-head p {
  margin-top: 20px;
  font-size: 19px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 600px;
}
.section-head.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.centered .eyebrow { justify-content: center; }
.section-head.centered p { margin-left: auto; margin-right: auto; }
.section-head.on-dark h2 { color: var(--white); }
.section-head.on-dark h2 em { color: var(--marigold); }
.section-head.on-dark p { color: rgba(255, 255, 255, 0.72); }

/* ─────────────────────────────────────────────────────────
   GATEWAY CARDS (home page)
───────────────────────────────────────────────────────── */
.gateway-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.gateway-card {
  display: block;
  padding: 56px 48px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--white);
  position: relative;
  transition: background 0.4s ease;
  overflow: hidden;
}
.gateway-card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--marigold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s ease;
}
.gateway-card:hover::before { transform: scaleY(1); transform-origin: top; }
.gateway-card:hover { background: var(--mist); }
.gateway-num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--coral);
  margin-bottom: 24px;
}
.gateway-card h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.gateway-card h3 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.gateway-card p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 460px;
}
.gateway-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: var(--coral);
  transition: gap 0.3s ease;
}
.gateway-card:hover .gateway-arrow { gap: 18px; }
.gateway-arrow svg { width: 16px; height: 16px; }

@media (max-width: 760px) {
  .gateway-grid { grid-template-columns: 1fr; }
  .gateway-card { padding: 40px 32px; }
}

/* ─────────────────────────────────────────────────────────
   EDITORIAL PROSE
───────────────────────────────────────────────────────── */
.editorial-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
}
.editorial-aside {
  position: sticky;
  top: 120px;
  align-self: start;
}
.editorial-aside .eyebrow { margin-bottom: 18px; }
.editorial-aside h2 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 48px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.editorial-aside h2 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}

.editorial-meta {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 2px solid var(--marigold);
}
.editorial-meta-block {
  margin-bottom: 24px;
}
.editorial-meta-block strong {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
}
.editorial-meta-block span {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  display: block;
}

.editorial-prose {
  font-family: var(--body);
  font-size: 19px;
  line-height: 1.75;
  color: var(--ink-soft);
}
.editorial-prose p { margin-bottom: 22px; }
.editorial-prose p strong { color: var(--ink); font-weight: 600; }
.editorial-prose p:first-child::first-letter {
  font-family: var(--display);
  font-weight: 600;
  font-size: 92px;
  line-height: 0.85;
  float: left;
  margin: 4px 14px -4px -4px;
  color: var(--forest);
}
.editorial-prose h3 {
  font-family: var(--display);
  font-weight: 600;
  font-variation-settings: "opsz" 96, "wght" 600;
  font-size: 28px;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 56px 0 18px;
  padding-top: 32px;
  border-top: 1px solid var(--rule);
}
.editorial-prose h3:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.editorial-prose ul {
  list-style: none;
  margin: 18px 0;
  padding: 0;
}
.editorial-prose ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}
.editorial-prose ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 12px;
  height: 2px;
  background: var(--coral);
}
.editorial-prose blockquote {
  margin: 40px 0;
  padding: 32px 36px;
  background: var(--forest-tint);
  border-left: 4px solid var(--forest);
  font-family: var(--body);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--forest-d);
}

@media (max-width: 880px) {
  .editorial-grid { grid-template-columns: 1fr; gap: 48px; }
  .editorial-aside { position: static; }
}

/* ─────────────────────────────────────────────────────────
   TIMELINE
───────────────────────────────────────────────────────── */
.timeline {
  position: relative;
}
.timeline-item {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  position: relative;
  align-items: baseline;
}
.timeline-item:last-child { border-bottom: 1px solid var(--rule); }
.timeline-year {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--coral);
  position: sticky;
  top: 120px;
}
.timeline-year-dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: var(--marigold);
  border-radius: 50%;
  margin-right: 14px;
  vertical-align: middle;
}
.timeline-content h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin-bottom: 6px;
  color: var(--ink);
}
.timeline-content h3 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.timeline-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.timeline-content p {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.65;
  max-width: 720px;
}
.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.timeline-tag {
  display: inline-block;
  padding: 6px 12px;
  background: var(--forest-tint);
  color: var(--forest);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 2px;
}

@media (max-width: 760px) {
  .timeline-item { grid-template-columns: 1fr; gap: 12px; }
  .timeline-year { position: static; }
}

/* ─────────────────────────────────────────────────────────
   FEATURE CARDS / INITIATIVES
───────────────────────────────────────────────────────── */
.feature-stack > * + * { margin-top: 28px; }

.feature-block {
  background: var(--white);
  border: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 0;
  overflow: hidden;
  transition: box-shadow 0.4s ease;
}
.feature-block:hover { box-shadow: var(--shadow-md); }
.feature-content { padding: 56px 56px 56px 56px; }
.feature-visual {
  background: var(--forest);
  color: var(--white);
  padding: 56px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 380px;
}
.feature-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 30%, rgba(229, 165, 43, 0.15), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(204, 70, 40, 0.12), transparent 60%);
}
.feature-visual.coral { background: var(--coral); }
.feature-visual.coral::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(229, 165, 43, 0.25), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08), transparent 60%);
}
.feature-visual.marigold { background: var(--marigold); color: var(--forest-d); }
.feature-visual.marigold::before {
  background:
    radial-gradient(circle at 30% 30%, rgba(14, 77, 56, 0.18), transparent 60%),
    radial-gradient(circle at 80% 80%, rgba(204, 70, 40, 0.15), transparent 60%);
}
.feature-visual.dark { background: var(--ink); }

.feature-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 24px;
}
.feature-content h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
  color: var(--ink);
}
.feature-content h3 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.feature-content p {
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.feature-content p strong { color: var(--ink); font-weight: 600; }

.feature-visual-stat {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(64px, 7vw, 112px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--marigold);
  position: relative;
  z-index: 2;
}
.feature-visual.marigold .feature-visual-stat { color: var(--forest-d); }
.feature-visual-stat-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 12px;
  position: relative;
  z-index: 2;
}
.feature-visual.marigold .feature-visual-stat-label { color: rgba(14, 77, 56, 0.8); }
.feature-visual-detail {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 20px;
}
.feature-visual.marigold .feature-visual-detail { color: var(--forest-d); border-top-color: rgba(14, 77, 56, 0.3); }

.feature-block.flip { grid-template-columns: 1fr 1.3fr; }
.feature-block.flip .feature-visual { order: -1; }

@media (max-width: 880px) {
  .feature-block, .feature-block.flip { grid-template-columns: 1fr; }
  .feature-block.flip .feature-visual { order: 0; }
  .feature-content, .feature-visual { padding: 40px 32px; }
  .feature-visual { min-height: 280px; }
}

/* ─────────────────────────────────────────────────────────
   AWARDS GRID
───────────────────────────────────────────────────────── */
.awards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-top: 2px solid var(--marigold);
}
.award-row {
  padding: 28px 32px;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 24px;
  align-items: baseline;
}
.award-row:nth-child(odd) { border-right: 1px solid var(--rule); }
.award-num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--coral);
}
.award-title {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.award-org {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 8px;
  display: block;
}
.award-year {
  font-family: var(--display);
  font-weight: 500;
  font-size: 14px;
  color: var(--forest);
  white-space: nowrap;
}

@media (max-width: 760px) {
  .awards-grid { grid-template-columns: 1fr; }
  .award-row:nth-child(odd) { border-right: none; }
}

/* ─────────────────────────────────────────────────────────
   QUOTE / PULL QUOTE
───────────────────────────────────────────────────────── */
.quote-section {
  background: var(--forest);
  color: var(--white);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.quote-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 50%, rgba(229, 165, 43, 0.14), transparent 70%);
  pointer-events: none;
}
.quote-section.coral { background: var(--coral); }
.quote-section.coral::before {
  background: radial-gradient(ellipse 60% 70% at 50% 50%, rgba(229, 165, 43, 0.22), transparent 70%);
}
.quote-mark {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  font-size: 140px;
  line-height: 0.5;
  color: var(--marigold);
  text-align: center;
  margin-bottom: 24px;
}
.quote-text {
  font-family: var(--display);
  font-weight: 400;
  font-variation-settings: "opsz" 96, "wght" 400;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  color: var(--white);
  position: relative;
  z-index: 2;
}
.quote-text em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--marigold);
}
.quote-attr {
  text-align: center;
  margin-top: 40px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
}

/* ─────────────────────────────────────────────────────────
   CALLOUT / CTA
───────────────────────────────────────────────────────── */
.cta-band {
  background: var(--mist);
  padding: 100px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 64px;
  align-items: center;
}
.cta-band h2 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: clamp(36px, 4.5vw, 56px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-band h2 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.cta-band p {
  font-size: 18px;
  color: var(--ink-soft);
  line-height: 1.6;
}
.cta-band .cta-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}
.btn-primary {
  background: var(--forest);
  color: var(--white);
}
.btn-primary:hover { background: var(--forest-d); transform: translateY(-1px); }
.btn-secondary {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-secondary:hover { background: var(--forest); color: var(--white); }
.btn-coral { background: var(--coral); color: var(--white); }
.btn-coral:hover { background: var(--coral-d); }
.btn svg { width: 14px; height: 14px; }

@media (max-width: 760px) {
  .cta-band-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─────────────────────────────────────────────────────────
   FACT GRID
───────────────────────────────────────────────────────── */
.fact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
}
.fact {
  padding: 40px 36px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.fact-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.fact-value {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 28px;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.fact-value em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.fact-detail {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 760px) {
  .fact-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   TESTIMONIAL CATEGORIES
───────────────────────────────────────────────────────── */
.testimonial-categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.tcat {
  background: var(--white);
  border: 1px solid var(--rule);
  padding: 36px 32px;
  transition: all 0.3s ease;
  position: relative;
}
.tcat:hover {
  border-color: var(--marigold);
  transform: translateY(-2px);
}
.tcat-icon {
  width: 44px;
  height: 44px;
  background: var(--forest-tint);
  color: var(--forest);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
}
.tcat h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 8px;
}
.tcat p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 880px) {
  .testimonial-categories { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────────────── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 96px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--forest) 0%, var(--marigold) 50%, var(--coral) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 64px;
}
.footer-brand h2 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 18px;
}
.footer-brand h2 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--marigold);
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 16px;
  line-height: 1.6;
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-email {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 18px;
  color: var(--marigold);
  border-bottom: 1.5px solid var(--marigold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}
.footer-email:hover { opacity: 0.75; }

.footer h4 {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
  margin-bottom: 20px;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 12px; }
.footer ul a {
  font-family: var(--body);
  font-size: 16px;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s;
}
.footer ul a:hover { color: var(--marigold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ─────────────────────────────────────────────────────────
   ANIMATIONS
───────────────────────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.9s ease, transform 0.9s ease; }
.fade-in.in { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────────────────────
   IMAGES
───────────────────────────────────────────────────────── */

/* Hero portrait with real photo */
.hero-portrait.has-image { background: var(--ink); }
.hero-portrait.has-image .hero-portrait-inner { border: none; padding: 0; }
.hero-portrait-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-portrait-overlay {
  position: absolute;
  inset: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  z-index: 2;
  background: linear-gradient(180deg, transparent 50%, rgba(8, 55, 42, 0.85) 100%);
  pointer-events: none;
}
.hero-portrait-overlay strong {
  font-family: var(--display);
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  display: block;
  margin-bottom: 4px;
}
.hero-portrait-overlay span {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
}
.hero-portrait-corner {
  position: absolute;
  top: 28px;
  right: 28px;
  z-index: 3;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--marigold);
  background: rgba(8, 55, 42, 0.7);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}

/* Inline photo block within editorial flow */
.photo-block {
  margin: 48px 0;
  border-left: 4px solid var(--marigold);
  background: var(--mist);
}
.photo-block img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.photo-block-caption {
  padding: 20px 28px;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--muted);
  text-transform: none;
}

/* Image strip (3-up row) */
.image-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin: 16px 0;
}
.image-strip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}
@media (max-width: 760px) {
  .image-strip { grid-template-columns: 1fr 1fr; }
}

/* Photo gallery grid (asymmetric) */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  background: var(--ink);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item::after {
  content: attr(data-caption);
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 18, 22, 0.92) 100%);
  color: var(--white);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s ease;
}
.gallery-item:hover::after { opacity: 1; transform: translateY(0); }
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 880px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; }
}

/* Feature block with image background instead of color */
.feature-visual.has-image { padding: 0; }
.feature-visual.has-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.feature-visual.has-image::before {
  background:
    linear-gradient(180deg, rgba(8, 55, 42, 0.35) 0%, rgba(8, 55, 42, 0.85) 100%);
  z-index: 1;
}
.feature-visual.has-image > * { position: relative; z-index: 2; padding: 0 56px; }
.feature-visual.has-image > *:first-child { padding-top: 56px; }
.feature-visual.has-image > *:last-child { padding-bottom: 56px; }

/* ─────────────────────────────────────────────────────────
   NEWS PAGE
───────────────────────────────────────────────────────── */

.news-featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  border: 1px solid var(--rule);
  margin-bottom: 64px;
  overflow: hidden;
}
.news-featured-image {
  position: relative;
  background: var(--forest);
  min-height: 440px;
}
.news-featured-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-featured-image-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--coral);
  color: var(--white);
  padding: 8px 14px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.news-featured-content {
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.news-featured-content .news-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 18px;
}
.news-featured-content h3 {
  font-family: var(--display);
  font-weight: 500;
  font-variation-settings: "opsz" 96, "wght" 500;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 18px;
}
.news-featured-content h3 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.news-featured-content .news-source {
  font-family: var(--body);
  font-style: italic;
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 24px;
}
.news-featured-content .news-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 14px;
  color: var(--coral);
  transition: gap 0.3s ease;
}
.news-featured-content .news-link:hover { gap: 16px; }

.news-list {
  border-top: 2px solid var(--marigold);
}
.news-item {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 36px;
  padding: 32px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
  transition: padding 0.3s ease;
}
.news-item:hover { padding-left: 12px; }
.news-item:hover h4 { color: var(--coral); }
.news-item .news-date {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--coral);
}
.news-item h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 6px;
  transition: color 0.3s ease;
}
.news-item h4 em {
  font-family: var(--body);
  font-style: italic;
  font-weight: 400;
  color: var(--forest);
}
.news-item .news-source {
  font-family: var(--body);
  font-style: italic;
  font-size: 15px;
  color: var(--muted);
}
.news-item .news-arrow {
  font-family: var(--display);
  color: var(--coral);
  font-size: 18px;
  transition: transform 0.3s ease;
}
.news-item:hover .news-arrow { transform: translateX(6px); }

@media (max-width: 880px) {
  .news-featured { grid-template-columns: 1fr; }
  .news-featured-content { padding: 40px 32px; }
  .news-item { grid-template-columns: 1fr; gap: 6px; }
  .news-item .news-arrow { display: none; }
}

/* News preview block on home page */
.news-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.news-preview-item {
  display: block;
  border-top: 3px solid var(--marigold);
  padding-top: 24px;
  transition: border-color 0.3s ease;
}
.news-preview-item:hover { border-top-color: var(--coral); }
.news-preview-item .news-date {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.news-preview-item h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 12px;
  transition: color 0.3s ease;
}
.news-preview-item:hover h4 { color: var(--coral); }
.news-preview-item .news-source {
  font-family: var(--body);
  font-style: italic;
  font-size: 14px;
  color: var(--muted);
}
@media (max-width: 880px) {
  .news-preview { grid-template-columns: 1fr; gap: 24px; }
}

/* ─────────────────────────────────────────────────────────
   NAV DROPDOWNS
───────────────────────────────────────────────────────── */
.nav-links { gap: 28px; }
.nav-links > li { position: relative; }
.nav-drop > a::after {
  content: "▾";
  font-size: 9px;
  margin-left: 5px;
  color: var(--muted);
  vertical-align: 1px;
}
.nav-sub {
  list-style: none;
  position: absolute;
  top: 100%;
  left: -18px;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--rule);
  border-top: 2px solid var(--marigold);
  box-shadow: 0 18px 40px rgba(15, 18, 22, 0.10);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
  z-index: 120;
}
.nav-links > li:hover > .nav-sub,
.nav-links > li:focus-within > .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-sub li a {
  display: block;
  padding: 9px 22px;
  font-size: 13px;
}
.nav-sub li a:hover { background: var(--mist); color: var(--coral); }
@media (max-width: 880px) {
  .nav-sub {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    box-shadow: none;
    border-left: 2px solid var(--rule);
    margin: 6px 0 0 10px;
    padding: 0;
    min-width: 0;
  }
  .nav-sub li a { padding: 7px 14px; }
}

/* Hebrew name under display heading */
.hero-hebrew-name {
  font-family: var(--body);
  font-style: italic;
  font-size: clamp(17px, 1.8vw, 22px);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  margin: 14px 0 0 6px;
}

/* Stats band that wraps to a second row (7 items) */
.stats-grid.wrap .stat-item:nth-child(4n) { border-right: none; }
.stats-grid.wrap .stat-item:nth-child(n+5) { margin-top: 64px; }
.stats-grid.wrap .stat-item:nth-child(7) { border-right: none; }
a.stat-item { display: block; }
a.stat-item:hover .stat-label { color: var(--marigold); }
@media (max-width: 760px) {
  .stats-grid.wrap .stat-item { border-right: none; margin-top: 0; }
  .stats-grid.wrap .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stats-grid.wrap .stat-item:nth-child(n+3) { margin-top: 48px; }
}

/* Image strip with captions */
.image-strip figure { position: relative; margin: 0; }
.image-strip figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 14px 10px;
  background: linear-gradient(180deg, transparent 0%, rgba(15, 18, 22, 0.82) 100%);
  color: rgba(255, 255, 255, 0.92);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Accomplishment bullet lists */
.accomplish-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.accomplish-list li {
  position: relative;
  padding: 0 0 0 30px;
  margin-bottom: 14px;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.accomplish-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 14px;
  height: 2px;
  background: var(--coral);
}
.accomplish-list li.new-item::after {
  content: "New";
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-d, #17342a);
  background: var(--marigold);
  padding: 2px 7px;
  border-radius: 2px;
  margin-left: 10px;
  vertical-align: 2px;
}

/* Period heading for accomplishments */
.period-head {
  display: flex;
  align-items: baseline;
  gap: 18px;
  margin: 0 0 8px;
}
.period-head h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(26px, 3vw, 36px);
  letter-spacing: -0.02em;
  color: var(--ink);
}
.period-head .period-line {
  flex: 1;
  height: 1px;
  background: var(--rule);
}

/* Ties grid */
.ties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(132px, 1fr));
  gap: 8px;
}
.ties-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--mist);
}

/* Testimonial quote cards */
.tquote-list { display: grid; gap: 14px; }
.tquote {
  background: var(--white);
  border: 1px solid var(--rule);
  border-left: 3px solid var(--marigold);
  padding: 26px 30px;
}
.tquote p {
  font-family: var(--body);
  font-size: 17px;
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 10px;
}
.tquote .tquote-attr {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Full letter block */
.letter-block {
  background: var(--mist);
  border: 1px solid var(--rule);
  border-top: 3px solid var(--coral);
  padding: 48px 52px;
  margin-top: 20px;
}
.letter-block p {
  font-size: 17px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.letter-block .letter-sig {
  font-family: var(--display);
  font-weight: 600;
  color: var(--ink);
  margin-top: 22px;
}
@media (max-width: 700px) {
  .letter-block { padding: 32px 26px; }
}

/* Category link cards (testimonials hub) */
a.tcat { display: block; transition: background 0.2s, transform 0.2s; }
a.tcat:hover { background: var(--mist); transform: translateY(-3px); }

/* Explore band on home */
.explore-band {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* Keep the rightmost nav dropdowns from overflowing the viewport edge */
@media (min-width: 881px) {
  .nav-links > li:last-child > .nav-sub,
  .nav-links > li:nth-last-child(2) > .nav-sub {
    left: auto;
    right: -18px;
  }
}
