/* =============================================
   BRINAM  |  brinam.com
   Type: Cormorant Garamond (brand name "Brinam" only) + Inter (all headings, body, labels, buttons, UI)
   Colors: deep navy, warm ivory, charcoal, editorial red
   ============================================= */

/* --- Design tokens --- */
:root {
  --navy:       #0d1b33;
  --navy-mid:   #16253e;
  --ivory:      #f6f3ec;
  --white:      #ffffff;
  --charcoal:   #252d3a;
  --text:       #252d3a;
  --text-light: #454d5c;
  --red:        #922e2e;
  --line:       #d0d6e1;
  --line-heavy: #adb5c4;
  --surface:    #ffffff;
  --focus:      #3a69b0;
  --text-body:  #36404f;
  --text-placeholder: #a4acb8;

  --r:          2px;
  --r-lg:       3px;
  --header-stripe: 3px;
  --shadow:     0 2px 20px rgba(13, 27, 51, 0.07);
  --shadow-sm:  0 1px 4px rgba(13, 27, 51, 0.05), 0 2px 6px rgba(13, 27, 51, 0.04);
  --shadow-md:  0 4px 16px rgba(13, 27, 51, 0.09), 0 2px 8px rgba(13, 27, 51, 0.05);
  --shadow-lg:  0 8px 32px rgba(13, 27, 51, 0.12), 0 4px 16px rgba(13, 27, 51, 0.07);
  --ease:       cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out:   cubic-bezier(0.0, 0.0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 1.08rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* --- Layout --- */
.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.narrow {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section {
  padding: 6rem 0;
}

.section-alt {
  background: var(--white);
}

/* --- Typography --- */
.eyebrow {
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 1rem;
  display: flex;
  align-items: center;
  gap: 0.55em;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 1.4em;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
  opacity: 0.45;
}

h1, h2, h3 {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.1;
  margin: 0 0 1.1rem;
  color: var(--navy);
}

h1 {
  font-size: clamp(2.6rem, 5.5vw, 4.5rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h2 {
  font-size: clamp(1.9rem, 3.2vw, 3.1rem);
  font-weight: 600;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
}

.lead {
  font-size: 1.18rem;
  color: var(--text-body);
  line-height: 1.76;
}

.lead-text {
  font-size: 1.18rem;
  color: var(--text-body);
  line-height: 1.78;
}

/* --- Focus ring --- */
.button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.site-nav a:focus-visible,
.footer-nav a:focus-visible,
.nav-toggle:focus-visible,
.brand:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

/* --- Buttons --- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.82rem 1.55rem;
  border-radius: var(--r);
  font-family: "Inter", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  transition: background 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease), transform 0.14s var(--ease), box-shadow 0.18s var(--ease);
  white-space: nowrap;
  line-height: 1;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 1px 3px rgba(13, 27, 51, 0.18), 0 2px 8px rgba(13, 27, 51, 0.10);
}

.button-primary:hover {
  background: var(--charcoal);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(13, 27, 51, 0.20), 0 2px 6px rgba(13, 27, 51, 0.12);
}

.button-secondary {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}

.button-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.button-light {
  background: var(--white);
  color: var(--navy);
}

.button-light:hover {
  background: var(--ivory);
  transform: translateY(-1px);
}

.button-full {
  width: 100%;
  padding-top: 0.92rem;
  padding-bottom: 0.92rem;
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.site-header.is-scrolled {
  background-color: rgba(246, 243, 236, 0.97);
  box-shadow: 0 2px 20px rgba(13, 27, 51, 0.09), 0 1px 4px rgba(13, 27, 51, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.site-header::before {
  content: '';
  display: block;
  height: var(--header-stripe);
  background: var(--navy);
}

.nav-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 70px;
}

/* Brand */
.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  flex-shrink: 0;
  border-radius: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.025em;
  line-height: 1;
}

.brand-sub {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  line-height: 1;
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex: 1;
  padding: 0 1.5rem;
}

.site-nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 0.32rem 0;
  margin: 0 0.8rem;
  border-bottom: 1px solid transparent;
  border-radius: 0;
  background: none;
  transition: color 0.12s, border-color 0.15s;
}

.site-nav a:hover {
  color: var(--navy);
  background: none;
  border-bottom-color: var(--navy);
}

/* Nav CTA */
.nav-cta {
  flex-shrink: 0;
  margin-left: auto;
  font-size: 0.72rem;
  padding: 0.55rem 1rem;
}

/* "Become a member" inside site-nav: desktop nav-cta button handles this,
   so hide the inline link on desktop and only show it in the mobile dropdown */
.nav-member-link {
  display: none;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.5rem 0.75rem;
  background: var(--surface);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: auto;
}

/* =============================================
   PHOTO HERO
   ============================================= */
.photo-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.photo-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.photo-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.photo-hero-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.photo-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
  transform: translateZ(0);
}

.photo-hero-video.is-active {
  opacity: 1;
}

.photo-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 18, 38, 0.58) 0%,
    rgba(10, 18, 38, 0.42) 50%,
    rgba(10, 18, 38, 0.58) 100%
  );
}

.photo-hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.photo-hero-stack {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.photo-hero-copy {
  max-width: 980px;
  width: 100%;
  text-align: center;
  padding: clamp(1.5rem, 2.5vw, 2.4rem) clamp(1.4rem, 3vw, 3rem);
}

.photo-hero-h1 {
  color: var(--white);
  font-size: clamp(3.2rem, 6vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
  text-wrap: balance;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.photo-hero-h1-animated {
  position: relative;
  min-height: 2.15em;
  display: grid;
  place-items: center;
}

.photo-hero-phrase {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.12em;
  transition:
    opacity 1.4s ease,
    transform 1.4s ease,
    filter 1.4s ease;
}

.photo-hero-line {
  display: block;
}

.photo-hero-line-accent {
  color: #f8f2e7;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.24em;
}

.photo-hero-word {
  display: inline-flex;
  align-items: baseline;
}

.photo-hero-word-group {
  display: inline-flex;
  align-items: baseline;
  gap: 0.22em;
}

.photo-hero-word-group-lower {
  flex-basis: 100%;
  justify-content: center;
}

.photo-hero-highlight {
  color: inherit;
  transition:
    color 0.8s ease,
    text-shadow 0.8s ease,
    transform 0.8s ease;
}

.photo-hero-brand-reveal {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -44%) scale(0.88);
  display: inline-block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(6.8rem, 15vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.78;
  color: var(--white);
  opacity: 0;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease,
    filter 1.5s ease;
  filter: blur(8px);
  pointer-events: none;
}

.photo-hero-brand-reveal::after {
  content: "";
  position: absolute;
  left: 12%;
  width: 76%;
  bottom: -0.06em;
  height: 0.12em;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 34%, rgba(200, 16, 46, 0.42) 70%, rgba(255, 255, 255, 0) 100%);
  box-shadow:
    0 0 20px rgba(255, 255, 255, 0.24),
    0 0 34px rgba(255, 255, 255, 0.14),
    0 0 28px rgba(200, 16, 46, 0.24);
  opacity: 0;
  transform: scaleX(0.18) translateY(0.02em);
  transform-origin: center;
  filter: blur(1.9px);
  transition:
    opacity 1.1s ease 0.36s,
    transform 1.4s ease 0.36s;
}

.photo-hero-copy.is-br .photo-hero-highlight-br,
.photo-hero-copy.is-in .photo-hero-highlight-br,
.photo-hero-copy.is-am .photo-hero-highlight-br,
.photo-hero-copy.is-morph .photo-hero-highlight-br,
.photo-hero-copy.is-in .photo-hero-highlight-in,
.photo-hero-copy.is-am .photo-hero-highlight-in,
.photo-hero-copy.is-morph .photo-hero-highlight-in,
.photo-hero-copy.is-am .photo-hero-highlight-am,
.photo-hero-copy.is-morph .photo-hero-highlight-am {
  color: #c8102e;
  text-shadow: 0 0 18px rgba(200, 16, 46, 0.35);
}

.photo-hero-copy.is-br .photo-hero-highlight-br,
.photo-hero-copy.is-in .photo-hero-highlight-in,
.photo-hero-copy.is-am .photo-hero-highlight-am {
  transform: translateY(-0.02em);
}

.photo-hero-copy.is-morph .photo-hero-phrase {
  opacity: 0;
  transform: translateY(-0.22em) scale(0.92);
  filter: blur(8px);
}

.photo-hero-copy.is-morph .photo-hero-brand-reveal {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  filter: blur(0);
}

.photo-hero-copy.is-morph .photo-hero-brand-reveal::after {
  opacity: 1;
  transform: scaleX(1);
}

.hero {
  padding-top: 5.5rem;
  padding-bottom: 5.5rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy {
  max-width: 580px;
}

.hero-copy .eyebrow {
  margin-bottom: 1.2rem;
}

.hero-copy h1 {
  margin-bottom: 1.4rem;
  line-height: 1.05;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

/* Hero SVG visual */
.hero-visual {
  position: relative;
}

.transatlantic-svg {
  width: 100%;
  height: auto;
  border-radius: 0;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.25rem;
  box-shadow: var(--shadow);
}

/* =============================================
   HERO STAT SLIDE (full replacement overlay)
   ============================================= */
.photo-hero-copy {
  position: relative;
}

.photo-hero-stat-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  opacity: 0;
  transform: scale(0.9) translateY(0.2em);
  filter: blur(8px);
  transition:
    opacity 1.5s ease,
    transform 1.5s ease,
    filter 1.5s ease;
  pointer-events: none;
}

.photo-hero-copy.is-stat .photo-hero-stat-slide {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
  pointer-events: auto;
}

.photo-hero-copy.is-stat .photo-hero-phrase {
  opacity: 0;
  transform: translateY(-0.22em) scale(0.92);
  filter: blur(8px);
}

.phss-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35em;
  text-align: center;
}

.phss-num {
  font-family: "Inter", sans-serif;
  font-size: clamp(4.5rem, 11vw, 10rem);
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.phss-label {
  font-family: "Inter", sans-serif;
  font-size: clamp(1.15rem, 2.4vw, 2rem);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.35;
  max-width: 28ch;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.22);
}

.phss-source {
  font-family: "Inter", sans-serif;
  font-size: 0.62rem;
  color: rgba(255, 255, 255, 0.32);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-top: 0.5em;
}

/* =============================================
   ASSOCIATION PURPOSE SECTION
   ============================================= */
.purpose-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5.5rem;
  align-items: start;
}

.purpose-intro h2 {
  margin-bottom: 1.6rem;
}

.purpose-intro .lead-text {
  margin-bottom: 1.1rem;
}

.pull-quote {
  margin: 0 0 2rem;
  padding: 1.4rem 0 0;
  border: none;
  border-top: 3px solid var(--navy);
  background: transparent;
  border-radius: 0;
}

.pull-quote p {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.2vw, 2.2rem);
  font-weight: 500;
  font-style: italic;
  color: var(--navy);
  line-height: 1.28;
  margin: 0;
  letter-spacing: -0.01em;
}

.purpose-fact {
  font-size: 1.06rem;
  color: var(--text-light);
  line-height: 1.74;
  margin-bottom: 1rem;
}

.purpose-fact:last-child {
  margin-bottom: 0;
}

/* =============================================
   REPRESENTATION SECTION
   ============================================= */
.rep-head {
  max-width: 660px;
  margin-bottom: 3.5rem;
}

.rep-head h2 {
  margin-bottom: 0;
}

.rep-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid var(--navy);
}

.rep-card {
  padding: 2.2rem 2.5rem 2.2rem 0;
  border-right: 1px solid var(--line);
}

.rep-card:last-child {
  padding-right: 0;
  border-right: none;
}

.rep-card:not(:first-child) {
  padding-left: 2.5rem;
}

.rep-card-num {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.rep-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--navy);
}

.rep-card p {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.74;
  margin: 0;
}

/* =============================================
   DATA / CONTRIBUTION SECTION
   ============================================= */
.data-section {
  background: var(--navy);
}

.data-head {
  max-width: 720px;
  margin-bottom: 3.5rem;
}

.data-eyebrow {
  color: #ffffff !important;
}

.data-title {
  color: var(--white) !important;
  margin-bottom: 1rem;
}

.data-intro {
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.76;
  margin: 0;
}

.data-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.data-card {
  padding: 2.2rem 2.2rem 2.2rem 0;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.data-card:not(:first-child) {
  padding-left: 2.2rem;
}

.data-card:last-child {
  border-right: none;
}

.data-number {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.1rem, 3.5vw, 3.1rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.02em;
  display: block;
}

.data-label {
  font-size: 0.97rem;
  font-weight: 500;
  color: #ffffff;
  line-height: 1.42;
  display: block;
}

.data-desc {
  font-size: 0.95rem;
  color: #ffffff;
  line-height: 1.67;
  margin: 0.15rem 0 0;
  flex: 1;
}

.data-source {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: #ffffff;
  letter-spacing: 0.07em;
  margin-top: 0.5rem;
}

/* =============================================
   WHAT BRINAM PROVIDES
   ============================================= */
.provides-list {
  border-top: 1px solid var(--line);
  margin-top: 2.5rem;
}

.provide-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  padding: 2.2rem 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.provide-title {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.provide-num {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
}

.provide-title h3 {
  font-size: 1.38rem;
  margin: 0;
  color: var(--navy);
}

.provide-body {
  font-size: 1.06rem;
  color: var(--text-light);
  line-height: 1.76;
  margin: 0;
  max-width: 600px;
}

/* =============================================
   WHO BRINAM REPRESENTS
   ============================================= */
.who-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}

.who-intro h2 {
  margin-bottom: 0.75rem;
}

.who-lead {
  font-size: 1.06rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

.who-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
  border-radius: 0;
  overflow: visible;
}

.who-list li {
  padding: 0.82rem 1rem 0.82rem 0;
  font-size: 1rem;
  font-weight: 400;
  color: var(--charcoal);
  border-bottom: 1px solid var(--line);
  border-right: none;
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.who-list li:nth-child(even) {
  padding-left: 1rem;
  padding-right: 0;
}

.who-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.55;
}

.who-list li:last-child:nth-child(odd) {
  grid-column: span 2;
}

/* =============================================
   RESOURCES
   ============================================= */
.resources-head {
  max-width: 660px;
  margin-bottom: 2.5rem;
}

.resources-head h2 {
  margin-bottom: 0.6rem;
}

.resources-intro {
  color: var(--text-light);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0;
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.resource-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  transition: opacity 0.12s;
}

.resource-item:hover {
  opacity: 0.7;
}

.resource-item:nth-child(odd) {
  padding-right: 2.5rem;
  border-right: 1px solid var(--line);
}

.resource-item:nth-child(even) {
  padding-left: 2.5rem;
}

.resource-text h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.3rem;
  letter-spacing: 0;
}

.resource-text p {
  font-size: 0.97rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

.resource-arrow {
  font-size: 0.95rem;
  color: var(--line-heavy);
  flex-shrink: 0;
  margin-top: 0.1rem;
  transition: color 0.12s, transform 0.15s;
}

.resource-item:hover .resource-arrow {
  color: var(--navy);
  transform: translateX(4px);
}

/* =============================================
   MEMBERSHIP FORM
   ============================================= */
.membership-section {
  background: var(--white);
}

.membership-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4.5rem;
  align-items: start;
}

.membership-intro h2 {
  margin-bottom: 1rem;
}

.membership-intro p {
  font-size: 1.06rem;
  color: var(--text-light);
  line-height: 1.76;
}

.membership-form {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 2rem;
  display: grid;
  gap: 1.15rem;
}

.form-field {
  display: grid;
  gap: 0.42rem;
}

label {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.72rem 0.85rem;
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  appearance: none;
  -webkit-appearance: none;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23454d5c'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.9rem center;
  background-size: 10px 6px;
  padding-right: 2.5rem;
}

input::placeholder,
textarea::placeholder {
  color: var(--text-placeholder);
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 27, 51, 0.09);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 96px;
}

/* =============================================
   MEMBERSHIP BENEFITS
   ============================================= */
.membership-benefits {
  margin-top: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
}

.benefits-label {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 0.9rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1rem;
  color: var(--charcoal);
  font-weight: 400;
}

.benefit-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.55;
}

/* =============================================
   MISSION
   ============================================= */
.mission-section {
  background: var(--navy);
}

.mission-section .container {
  text-align: center;
}

.mission-section .eyebrow {
  color: #ffffff;
}

.mission-section h2 {
  color: var(--white);
  margin-bottom: 1.4rem;
}

.mission-body {
  color: #ffffff;
  font-size: 1.14rem;
  line-height: 1.82;
  max-width: 640px;
  margin: 0 auto;
}

.mission-body--spaced {
  margin-top: 1.1rem;
}

/* =============================================
   FINAL CTA
   ============================================= */
.cta-final {
  background: var(--ivory);
  padding: 5.5rem 0;
  border-top: 1px solid var(--line);
}

.cta-inner {
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}

.cta-inner h2 {
  color: var(--navy);
  margin-bottom: 0.9rem;
}

.cta-inner p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.72;
  margin-bottom: 2rem;
}

/* =============================================
   JOIN PAGE
   ============================================= */
.join-page {
  padding: 5rem 0 6rem;
  background: var(--ivory);
  min-height: calc(100vh - 73px);
}

.join-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.join-intro {
  position: sticky;
  top: 6rem;
}

.join-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.06;
  letter-spacing: -0.02em;
  margin: 0.6rem 0 1.4rem;
}

.join-lead {
  font-size: 1.08rem;
  line-height: 1.78;
  color: var(--text-body);
  margin: 0 0 1rem;
}

.join-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.join-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.38rem;
}

.form-label {
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--text-light);
}

.form-optional {
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  opacity: 0.65;
}

.join-submit {
  margin-top: 0.4rem;
}

.join-notice {
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
  text-align: center;
}

/* =============================================
   WHAT WE DO  (homepage 3-col section)
   ============================================= */
.what-we-do {
  padding: 5.5rem 0;
  background: var(--ivory);
  border-top: 1px solid var(--line);
}

.wwd-intro {
  max-width: 720px;
  margin-bottom: 3rem;
}

.wwd-intro h2 {
  margin-bottom: 0;
}

.wwd-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 2px solid var(--navy);
}

.wwd-card {
  padding: 2.2rem 2.4rem 2.2rem 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.wwd-card:not(:first-child) {
  padding-left: 2.4rem;
}

.wwd-card:last-child {
  border-right: none;
}

.wwd-num {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.2rem;
}

.wwd-card h3 {
  font-size: 1.48rem;
  margin: 0;
  color: var(--navy);
}

.wwd-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.72;
  margin: 0;
}

/* =============================================
   WHO WE SERVE  (British nationals only)
   ============================================= */
.who-serves {
  padding: 5.5rem 0;
  background: var(--white);
}

.who-serves-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}

.who-serves-intro h2 {
  margin-bottom: 1.5rem;
}

.who-serves-intro .lead-text {
  font-size: 1.05rem;
  margin-bottom: 1.1rem;
}

.who-serves-members {
  padding-top: 0.5rem;
}

.who-serves-members .eyebrow {
  margin-bottom: 1.1rem;
}

.serves-list {
  border-top: 2px solid var(--navy);
  margin: 0;
  padding: 0;
  list-style: none;
}

.serves-list li {
  font-size: 1rem;
  color: var(--charcoal);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  transition: padding-left 0.2s var(--ease), color 0.18s var(--ease);
}

.serves-list li:hover {
  padding-left: 0.3rem;
  color: var(--navy);
}

.serves-list li::before {
  content: '';
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--red);
  flex-shrink: 0;
  opacity: 0.6;
}

/* =============================================
   MISSION STRIP
   ============================================= */
.mission-strip {
  background: var(--navy);
  padding: 0;
}

.mission-strip-inner {
  max-width: 740px;
}

.mission-strip .eyebrow {
  color: #ffffff;
}

.mission-strip h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
  max-width: 640px;
}

.mission-strip .mission-body {
  color: #ffffff;
  font-size: 1.14rem;
  line-height: 1.82;
  max-width: 660px;
  margin: 0;
}

.mission-strip .mission-body--spaced {
  margin-top: 1.1rem;
}

/* =============================================
   SITE DIRECTORY  (homepage teaser grid)
   ============================================= */
.site-dir {
  padding: 5rem 0 6rem;
  background: var(--white);
  border-top: 1px solid var(--line);
}

.site-dir-intro {
  max-width: 760px;
}

.site-dir-lead {
  max-width: 700px;
  margin: 0;
}

.site-dir-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 2px solid var(--navy);
  margin-top: 2.5rem;
}

.site-dir-card {
  padding: 2.2rem 2.2rem 2.2rem 0;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.site-dir-card:not(:first-child) {
  padding-left: 2.2rem;
}

.site-dir-card:last-child {
  border-right: none;
}

.site-dir-num {
  font-family: "Inter", sans-serif;
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--text-light);
  display: block;
  margin-bottom: 0.25rem;
}

.site-dir-card h3 {
  font-size: 1.45rem;
  margin: 0;
  color: var(--navy);
}

.site-dir-card p {
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.68;
  margin: 0;
  flex: 1;
}

.site-dir-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--navy);
  margin-top: 0.4rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.14s, gap 0.14s;
}

.site-dir-link:hover {
  border-bottom-color: var(--navy);
  gap: 0.7rem;
}

/* =============================================
   PAGE HERO  (inner pages)
   ============================================= */
.page-hero {
  padding: 4rem 0 3.5rem;
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow {
  margin-bottom: 0.85rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
  max-width: 780px;
}

.page-hero .lead {
  max-width: 620px;
  margin: 0;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--navy);
  color: #ffffff;
  padding: 3rem 0 1.75rem;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-brand-name {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.025em;
  line-height: 1;
}

.footer-tagline {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  margin: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem 1.5rem;
  align-items: center;
}

.footer-nav a {
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  padding: 0.2rem 0;
  transition: color 0.18s var(--ease);
}

.footer-nav a:hover {
  color: var(--white);
}

.footer-disclaimer {
  margin-top: 1.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
  line-height: 1.7;
}

/* =============================================
   RESPONSIVE  |  Tablet  (<= 1020px)
   ============================================= */
@media (max-width: 1020px) {
  .photo-hero {
    min-height: 75vh;
  }

  .photo-hero-inner {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }

  .photo-hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 18, 38, 0.82) 0%,
      rgba(10, 18, 38, 0.72) 100%
    );
  }

  .hero-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero-copy {
    max-width: 100%;
  }

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

  .rep-grid {
    grid-template-columns: 1fr;
    border-top: 2px solid var(--navy);
  }

  .rep-card {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .rep-card:not(:first-child) {
    padding-left: 0;
  }

  .rep-card:last-child {
    border-bottom: none;
  }

  .site-dir-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-dir-card {
    padding: 2rem 2rem 2rem 0;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .site-dir-card:nth-child(2) {
    padding-left: 2rem;
    border-right: none;
  }

  .site-dir-card:nth-child(3) {
    padding-left: 0;
    border-bottom: none;
  }

  .site-dir-card:nth-child(4) {
    padding-left: 2rem;
    border-right: none;
    border-bottom: none;
  }

  .who-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .membership-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .resources-grid {
    grid-template-columns: 1fr;
  }

  .resource-item:nth-child(odd),
  .resource-item:nth-child(even) {
    padding-left: 0;
    padding-right: 0;
    border-right: none;
  }

  .data-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .data-card {
    padding: 2rem 2rem 2rem 0;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .data-card:nth-child(2) {
    padding-left: 2rem;
    border-right: none;
  }

  .data-card:nth-child(3) {
    padding-left: 0;
    border-bottom: none;
  }

  .data-card:nth-child(4) {
    padding-left: 2rem;
    border-right: none;
    border-bottom: none;
  }

  .provide-row {
    grid-template-columns: 180px 1fr;
    gap: 2rem;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
    border-top: 2px solid var(--navy);
  }

  .wwd-card {
    padding: 2rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .wwd-card:not(:first-child) {
    padding-left: 0;
  }

  .wwd-card:last-child {
    border-bottom: none;
  }

  .wwd-impact {
    grid-template-columns: 1fr;
  }

  .wwd-impact-stat {
    padding: 1.5rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .wwd-impact-stat:not(:first-child) {
    padding-left: 0;
  }

  .wwd-impact-stat:last-child {
    border-bottom: none;
  }

  .who-serves-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* =============================================
   RESPONSIVE  |  Mobile  (<= 760px)
   ============================================= */
@media (max-width: 760px) {
  .section {
    padding: 4rem 0;
  }

  /* Container: minimum side padding on narrow screens */
  .container {
    width: 100%;
    padding-left: max(1rem, 4vw);
    padding-right: max(1rem, 4vw);
  }

  .photo-hero {
    min-height: 70vh;
  }

  .photo-hero-inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .photo-hero-h1 {
    font-size: clamp(2.4rem, 8.5vw, 3.8rem);
  }

  .photo-hero-copy {
    padding: 1.2rem 0.75rem 1.4rem;
  }

  .photo-hero-brand-reveal {
    font-size: clamp(4.2rem, 17vw, 6.5rem);
  }

  /* Shrink brand name to fit alongside the menu toggle */
  .brand-name {
    font-size: 2.4rem;
  }

  /* Show hamburger, hide desktop nav and CTA */
  .nav-toggle {
    display: inline-flex;
    padding: 0.7rem 0.9rem;
    min-height: 44px;
  }

  .nav-cta {
    display: none;
  }

  /* Dropdown nav */
  .site-nav {
    position: absolute;
    top: calc(70px + var(--header-stripe));
    left: max(1rem, 4vw);
    right: max(1rem, 4vw);
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 0;
    padding: 0.65rem;
    box-shadow: var(--shadow);
    gap: 0;
    z-index: 200;
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    margin: 0;
    border-bottom: none;
    font-size: 0.65rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Show the Become a member link in the mobile hamburger dropdown */
  .nav-member-link {
    display: flex;
  }

  /* Hero */
  .hero {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  /* Data grid */
  .data-grid {
    grid-template-columns: 1fr;
  }

  .data-card {
    padding: 1.75rem 0;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .data-card:nth-child(2),
  .data-card:nth-child(3),
  .data-card:nth-child(4) {
    padding-left: 0;
    border-right: none;
  }

  .data-card:nth-child(3) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .data-card:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Provide rows */
  .provide-row {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1.6rem 0;
  }

  /* Site directory */
  .site-dir-grid {
    grid-template-columns: 1fr;
  }

  .site-dir-card {
    padding: 1.5rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .site-dir-card:nth-child(2),
  .site-dir-card:nth-child(3),
  .site-dir-card:nth-child(4) {
    padding-left: 0;
    border-right: none;
  }

  .site-dir-card:last-child {
    border-bottom: none;
  }

  /* What we do */
  .what-we-do {
    padding: 3.5rem 0;
  }

  .wwd-grid {
    grid-template-columns: 1fr;
  }

  .wwd-card {
    padding: 1.5rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .wwd-card:not(:first-child) {
    padding-left: 0;
  }

  .wwd-card:last-child {
    border-bottom: none;
  }

  .wwd-impact {
    grid-template-columns: 1fr;
  }

  .wwd-impact-stat {
    padding: 1.25rem 0;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .wwd-impact-stat:not(:first-child) {
    padding-left: 0;
  }

  .wwd-impact-stat:last-child {
    border-bottom: none;
  }

  .who-serves {
    padding: 3.5rem 0;
  }

  .who-serves-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Mission strip */
  .mission-strip {
    padding: 0;
  }
  .mission-split-text {
    padding: 3.5rem max(1rem, 4vw);
  }

  /* Who list */
  .who-list {
    grid-template-columns: 1fr;
  }

  .who-list li:nth-child(even) {
    padding-left: 0;
  }

  .who-list li:last-child:nth-child(odd) {
    grid-column: span 1;
  }

  /* Benefits */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer-main {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Join page */
  .join-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .join-intro {
    position: static;
  }
}

/* =============================================
   RESPONSIVE  |  Small mobile  (<= 480px)
   ============================================= */
@media (max-width: 480px) {
  .brand-name {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
    justify-content: center;
  }

  .membership-form {
    padding: 1.25rem;
  }

  .join-form-wrap {
    padding: 1.5rem;
  }

  .cta-final {
    padding: 4rem 0;
  }

  .cta-inner .button {
    width: 100%;
  }

  .rep-card {
    padding: 1.5rem 0;
  }

  .data-card {
    padding: 1.5rem 0;
  }

  .photo-hero-h1 {
    font-size: clamp(2.2rem, 9.5vw, 3rem);
  }

  .photo-hero-brand-reveal {
    font-size: clamp(3.8rem, 17vw, 5.5rem);
  }
}

/* =============================================
   WHAT WE DO  |  Section header split
   ============================================= */
.wwd-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 3rem;
}

.wwd-header-body p {
  font-size: 1.08rem;
  color: var(--text-light);
  line-height: 1.78;
  margin: 0;
}

/* =============================================
   OUR CONTRIBUTION  (dark navy stat section)
   ============================================= */
.contribution {
  background: var(--navy);
  padding: 3.5rem 0;
}

.contribution-header {
  margin-bottom: 1.5rem;
}

.contribution-eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.contribution-heading {
  color: var(--white);
  margin: 0.4rem 0 0;
}

.contribution-list {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.contribution-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.contribution-item:last-child {
  border-bottom: none;
}

.contribution-item-num {
  font-family: "Inter", sans-serif;
  font-size: clamp(2rem, 8vw, 2.6rem);
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.04em;
  line-height: 1;
}

.contribution-item-body {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.contribution-item-label {
  font-size: 1rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.5;
  margin: 0;
}

.contribution-item-context {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
  margin: 0;
}

.contribution-item-source {
  font-family: "Inter", sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

@media (min-width: 600px) {
  .contribution-item {
    grid-template-columns: 150px 1fr;
    gap: 0 2rem;
    padding: 2.25rem 0;
    align-items: start;
  }

  .contribution-item-num {
    font-size: clamp(2.4rem, 4vw, 3.6rem);
  }
}

@media (min-width: 1021px) {
  .contribution {
    padding: 5rem 0;
  }

  .contribution-header {
    margin-bottom: 3rem;
  }

  .contribution-item {
    grid-template-columns: 260px 1fr;
    gap: 0 4rem;
    padding: 3rem 0;
  }

  .contribution-item-num {
    font-size: clamp(2.8rem, 4vw, 4.8rem);
  }
}

/* =============================================
   WHO WE SERVE  |  Side photo
   ============================================= */

/* =============================================
   MISSION  |  Split with image
   ============================================= */
.mission-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
}

.mission-split-text {
  padding: 5.5rem max(4vw, 2rem) 5.5rem max(calc((100vw - 1100px) / 2), 4vw);
}

.mission-split-photo {
  position: relative;
  overflow: hidden;
}

.mission-split-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.06);
  transition: transform 12s ease-out;
}

.mission-split-photo.is-visible img {
  transform: scale(1);
}

/* =============================================
   RESPONSIVE  |  New image layouts
   ============================================= */
@media (max-width: 1020px) {
  .wwd-header {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
  }


  .mission-split {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .mission-split-photo {
    height: 360px;
  }

  .mission-split-photo img {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

}

@media (max-width: 760px) {
  .mission-split-photo {
    height: 260px;
  }

}

/* =============================================
   SCROLL REVEAL
   ============================================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

[data-reveal][data-delay="1"] { transition-delay: 0.08s; }
[data-reveal][data-delay="2"] { transition-delay: 0.16s; }
[data-reveal][data-delay="3"] { transition-delay: 0.24s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .mission-split-photo img {
    transform: scale(1);
    transition: none;
  }
}

/* =============================================
   BLOG HUB
   ============================================= */
.blog-hub {
  padding: 4.5rem 0 6rem;
  background: var(--ivory);
  min-height: calc(100vh - 73px);
}

.blog-hub-header {
  padding-bottom: 2.25rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 0;
}

.blog-hub-header h1 {
  font-size: clamp(1.9rem, 3vw, 2.65rem);
  max-width: 720px;
  margin: 0.35rem 0 0.85rem;
  line-height: 1.12;
}

.blog-hub-header .lead-text {
  max-width: 640px;
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-body);
}

/* Featured lead article */
.blog-lead {
  padding: 2.75rem 0 2.75rem;
  border-bottom: 1px solid var(--line-heavy);
  max-width: 820px;
}

.blog-lead-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.7rem;
}

.blog-lead-meta .blog-card-topic {
  font-size: 0.67rem;
}

.blog-lead-meta .blog-card-date {
  font-size: 0.67rem;
  color: var(--text-light);
}

.blog-lead-meta .blog-card-date::before {
  content: "·";
  margin-right: 0.9rem;
  color: var(--line-heavy);
}

.blog-lead-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.8rem, 2.8vw, 2.55rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.1;
  margin: 0 0 1rem;
  letter-spacing: -0.015em;
}

.blog-lead-title a,
.blog-card-title a {
  color: inherit;
  text-decoration: none;
}

.blog-lead-title a:hover,
.blog-card-title a:hover {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.14em;
}

.blog-lead-excerpt {
  font-size: 1.06rem;
  color: var(--text-body);
  line-height: 1.78;
  margin: 0;
  max-width: 680px;
}

/* Grid section header */
.blog-grid-header {
  padding: 2rem 0 0;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.blog-grid-header-label {
  font-family: "Inter", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
}

/* Article grid */
.blog-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 2.75rem;
  margin-top: 0;
}

.blog-card {
  padding: 1.75rem 0 2rem;
  border-top: 1px solid var(--line);
}

.blog-card:nth-child(-n+3) {
  border-top: 2px solid var(--navy);
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 0.6rem;
}

.blog-card-topic {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0;
  display: block;
}

.blog-card-date {
  font-family: "Inter", sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.04em;
  color: var(--text-light);
  display: block;
}

.blog-card-date::before {
  content: "·";
  margin: 0 0.6rem;
  color: var(--line-heavy);
}

.blog-card-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.28;
  margin: 0 0 0.6rem;
  letter-spacing: -0.005em;
}

.blog-card-excerpt {
  font-size: 0.91rem;
  color: var(--text-light);
  line-height: 1.7;
  margin: 0;
}

/* Responsive: blog hub tablet */
@media (max-width: 1020px) {
  .blog-hub-grid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.25rem;
  }

  .blog-card:nth-child(-n+3) {
    border-top: 1px solid var(--line);
  }

  .blog-card:nth-child(-n+2) {
    border-top: 2px solid var(--navy);
  }
}

/* Responsive: blog hub mobile */
@media (max-width: 760px) {
  .blog-hub {
    padding: 3rem 0 4rem;
  }

  .blog-hub-grid {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

  .blog-card:nth-child(-n+2) {
    border-top: 1px solid var(--line);
  }

  .blog-card:first-child {
    border-top: 2px solid var(--navy);
  }

  .blog-lead {
    padding: 2rem 0;
  }
}

/* =============================================
   ARTICLE PAGE
   ============================================= */
.article-page {
  padding: 4rem 0 6rem;
  background: var(--ivory);
  min-height: calc(100vh - 73px);
}

.article-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 4.5rem;
  align-items: start;
  margin-top: 3rem;
  border-top: 2px solid var(--navy);
  padding-top: 2.5rem;
}

.article-header {
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--navy);
  max-width: 820px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 1rem;
}

.article-meta .blog-card-topic {
  font-size: 0.67rem;
}

.article-meta .blog-card-date {
  font-size: 0.67rem;
  color: var(--text-light);
}

.article-meta .blog-card-date::before {
  content: "·";
  margin: 0 0.75rem;
  color: var(--line-heavy);
}

.article-title {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.9rem, 3.2vw, 2.8rem);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.08;
  letter-spacing: -0.018em;
  margin: 0 0 1.1rem;
}

.article-intro {
  font-size: 1.08rem;
  color: var(--text-body);
  line-height: 1.8;
  margin: 0;
  max-width: 720px;
}

.article-prose {
  font-size: 1.06rem;
  line-height: 1.82;
  color: var(--text-body);
}

.article-prose h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.42rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.85rem;
}

.article-prose h2:first-child {
  margin-top: 0;
}

.article-prose h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.28;
  letter-spacing: -0.005em;
  margin: 1.8rem 0 0.6rem;
}

.article-prose p {
  margin: 0 0 1.15rem;
  color: var(--text-body);
}

.article-prose p:last-child {
  margin-bottom: 0;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 1.15rem;
  padding-left: 1.4rem;
  list-style: disc;
}

.article-prose ol {
  list-style: decimal;
}

.article-prose li {
  margin-bottom: 0.5rem;
  color: var(--text-body);
  line-height: 1.72;
}

.article-prose strong {
  font-weight: 600;
  color: var(--charcoal);
}

.article-sidebar {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-cta-box {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 1.75rem;
}

.article-cta-box p {
  font-size: 0.9rem;
  line-height: 1.68;
  color: rgba(255,255,255,0.78);
  margin: 0 0 1.25rem;
}

.article-cta-box .button {
  width: 100%;
  justify-content: center;
}

.article-cta-label {
  font-family: "Inter", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  margin: 0 0 0.75rem;
  display: block;
}

.article-cta-heading {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.18rem;
  font-weight: 600;
  color: var(--white);
  line-height: 1.22;
  margin: 0 0 0.8rem;
}

.article-related {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 1.5rem 1.75rem;
}

.article-related-label {
  font-family: "Inter", sans-serif;
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 1rem;
  display: block;
}

.article-related-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.article-related-item {
  padding: 0.75rem 0;
  border-top: 1px solid var(--line);
}

.article-related-item:first-child {
  border-top: none;
  padding-top: 0;
}

.article-related-item a {
  font-family: "Inter", sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.38;
  display: block;
  transition: color 0.14s;
}

.article-related-item a:hover {
  color: var(--red);
}

.article-related-item .blog-card-topic {
  font-size: 0.6rem;
  display: block;
  margin-bottom: 0.25rem;
}

.article-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Inter", sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  transition: color 0.14s, gap 0.14s;
}

.article-back:hover {
  color: var(--navy);
  gap: 0.75rem;
}

.article-back svg {
  transition: transform 0.14s;
}

.article-back:hover svg {
  transform: translateX(-3px);
}

/* Responsive: article */
@media (max-width: 1020px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .article-sidebar {
    position: static;
  }
}

@media (max-width: 680px) {
  .article-page {
    padding: 3rem 0 5rem;
  }

  .article-title {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }
}

/* =============================================
   STATIC PAGES  (privacy, terms, sitemap)
   ============================================= */
.static-page {
  padding: 4rem 0 6rem;
  background: var(--ivory);
  min-height: calc(100vh - 73px);
}

.static-header {
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 3rem;
}

.static-header .eyebrow {
  margin-bottom: 0.85rem;
}

.static-header h1 {
  margin-bottom: 1rem;
  max-width: 700px;
}

.static-header .lead {
  max-width: 620px;
  margin: 0;
}

.static-body {
  max-width: 780px;
  font-size: 1.04rem;
  line-height: 1.82;
  color: var(--text-body);
}

.static-body h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.38rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 2.5rem 0 0.85rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.static-body h2:first-child {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.static-body h3 {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.28;
  margin: 1.75rem 0 0.55rem;
}

.static-body p {
  margin: 0 0 1.1rem;
}

.static-body p:last-child {
  margin-bottom: 0;
}

.static-body ul,
.static-body ol {
  margin: 0 0 1.1rem;
  padding-left: 1.4rem;
  list-style: disc;
}

.static-body ol {
  list-style: decimal;
}

.static-body li {
  margin-bottom: 0.45rem;
  line-height: 1.72;
}

.static-body strong {
  font-weight: 600;
  color: var(--charcoal);
}

.static-body a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.static-body a:hover {
  color: var(--red);
}

.static-effective {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-light);
  margin-top: 0.5rem;
}

/* =============================================
   SITEMAP PAGE
   ============================================= */
.sitemap-page {
  padding: 4rem 0 6rem;
  background: var(--ivory);
  min-height: calc(100vh - 73px);
}

.sitemap-header {
  padding-bottom: 2.5rem;
  border-bottom: 2px solid var(--navy);
  margin-bottom: 3rem;
}

.sitemap-section {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--line);
}

.sitemap-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.sitemap-section-label {
  font-family: "Inter", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  margin: 0 0 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6em;
}

.sitemap-section-label::after {
  content: '';
  display: block;
  flex: 1;
  height: 1px;
  background: var(--line);
}

.sitemap-section h2 {
  font-size: 1.45rem;
  margin: 0 0 1.25rem;
  color: var(--navy);
}

.sitemap-main-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.sitemap-main-item {
  background: var(--white);
  padding: 1.5rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.sitemap-main-item a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--navy);
  transition: color 0.14s;
}

.sitemap-main-item a:hover {
  color: var(--red);
}

.sitemap-main-item p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.58;
  margin: 0;
}

.sitemap-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem 3.5rem;
}

.sitemap-cat {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.sitemap-cat-name {
  font-family: "Inter", sans-serif;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 0.65rem;
  display: block;
}

.sitemap-cat-items {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--navy);
}

.sitemap-cat-item {
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
}

.sitemap-cat-item a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.38;
  display: block;
  transition: color 0.14s;
}

.sitemap-cat-item a:hover {
  color: var(--red);
}

.sitemap-cat-item time {
  font-size: 0.68rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
  display: block;
  margin-top: 0.15rem;
}

.sitemap-tech-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 2px solid var(--navy);
  max-width: 500px;
}

.sitemap-tech-item {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.sitemap-tech-item a {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--navy);
  transition: color 0.14s;
}

.sitemap-tech-item a:hover {
  color: var(--red);
}

.sitemap-tech-item span {
  font-size: 0.72rem;
  color: var(--text-light);
  letter-spacing: 0.03em;
}

@media (max-width: 768px) {
  .sitemap-main-list {
    grid-template-columns: 1fr;
  }

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

