/* ==========================================================================
   WANAMAKER — style.css v2
   ========================================================================== */

/* --------------------------------------------------------------------------
   FONTS
   -------------------------------------------------------------------------- */
@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/outfit-regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Outfit';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/outfit-bold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6,
    U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122,
    U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   DESIGN TOKENS
   -------------------------------------------------------------------------- */
:root {
  --ink:        #141410;
  --paper:      #F2F2EE;
  --lime:       #D6FA33;
  --ink-70:     rgba(20, 20, 16, 0.70);
  --paper-70:   rgba(242, 242, 238, 0.70);
  --rule:       #141410;

  --s1: 0.5rem;
  --s2: 1rem;
  --s3: 1.5rem;
  --s4: 2rem;
  --s5: 3rem;
  --s6: 4rem;
  --s7: 6rem;
  --s8: 8rem;

  --fs-h1:      clamp(2.75rem, 7vw, 6rem);
  --fs-h2:      clamp(2rem, 4.5vw, 3.75rem);
  --fs-stat:    clamp(2.5rem, 6vw, 5rem);
  --fs-h3:      clamp(1.25rem, 2vw, 1.75rem);
  --fs-body:    clamp(1rem, 1.15vw, 1.1875rem);
  --fs-lead:    clamp(1.125rem, 1.6vw, 1.4375rem);
  --fs-eyebrow: 0.75rem;

  --font: 'Outfit', 'Helvetica Neue', Arial, sans-serif;

  --container-max: 1440px;
  --container-padding: clamp(1.5rem, 5vw, 6rem);

  --section-py: var(--s7);
  --tx: 180ms ease-out;
}

/* --------------------------------------------------------------------------
   RESET & BASE
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.6;
  color: var(--ink);
  background-color: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* --------------------------------------------------------------------------
   SKIP LINK
   -------------------------------------------------------------------------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: var(--s2);
  z-index: 9999;
  padding: var(--s1) var(--s3);
  background: var(--lime);
  color: var(--ink);
  font-weight: 700;
  font-size: var(--fs-body);
  outline: none;
  transition: top var(--tx);
}
.skip-link:focus { top: var(--s2); }

/* --------------------------------------------------------------------------
   CONTAINER
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

/* --------------------------------------------------------------------------
   HEADER
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--paper);
  border-bottom: 1px solid var(--rule);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s3);
  padding-block: var(--s2);
}

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  min-height: 44px;
  flex-shrink: 0;
}

.header-logo img {
  height: 28px;
  width: auto;
}

.footer-logo {
  height: 20px;
  width: auto;
  display: block;
  margin-bottom: var(--s3);
}

.header-right {
  display: flex;
  align-items: center;
  gap: var(--s2);
}

/* --------------------------------------------------------------------------
   MAIN NAVIGATION (desktop)
   -------------------------------------------------------------------------- */
.site-nav {
  display: none;
  align-items: center;
  gap: var(--s3);
}

@media (min-width: 768px) {
  .site-nav { display: flex; }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--tx);
  padding-bottom: 2px;
}

.nav-link:hover { color: var(--ink-70); }

.nav-link[aria-current="page"] {
  font-weight: 700;
  border-bottom: 2px solid var(--lime);
}

.nav-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   LANG SWITCH
   -------------------------------------------------------------------------- */
.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.875rem;
}

.lang-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  min-height: 44px;
  padding: 0 2px;
  color: var(--ink-70);
  transition: color var(--tx);
}

.lang-switch a:hover { color: var(--ink); }

.lang-switch a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.lang-switch a[aria-current="true"] {
  font-weight: 700;
  color: var(--ink);
}

.lang-switch .sep {
  color: var(--ink-70);
  user-select: none;
}

/* --------------------------------------------------------------------------
   BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: var(--s1) var(--s3);
  font-family: var(--font);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--ink);
  background-color: var(--lime);
  color: var(--ink);
  cursor: pointer;
  transition: background-color var(--tx), color var(--tx);
}

.btn:hover { background-color: var(--ink); color: var(--lime); }

.btn:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.btn:active { opacity: 0.85; }

.btn-inv {
  background-color: var(--lime);
  color: var(--ink);
  border: 2px solid var(--lime);
}

.btn-inv:hover { background-color: transparent; color: var(--lime); }

/* Header CTA hidden on mobile */
.header-cta { display: none; }

@media (min-width: 768px) {
  .header-cta { display: inline-flex; }
}

/* --------------------------------------------------------------------------
   HAMBURGER
   -------------------------------------------------------------------------- */
.hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ink);
  flex-shrink: 0;
}

.hamburger:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@media (min-width: 768px) {
  .hamburger { display: none; }
}

/* --------------------------------------------------------------------------
   MOBILE OVERLAY
   -------------------------------------------------------------------------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background-color: var(--ink);
  color: var(--paper);
  display: flex;
  flex-direction: column;
  padding: var(--s3) var(--container-padding) var(--s5);
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease-out, visibility 0s linear 180ms;
}

.nav-overlay.is-open {
  visibility: visible;
  opacity: 1;
  transition: opacity 180ms ease-out, visibility 0s linear 0s;
}

@media (prefers-reduced-motion: reduce) {
  .nav-overlay { transition: none; }
  .nav-overlay.is-open { transition: none; }
}

.nav-overlay-top {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 60px;
}

.nav-overlay-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--paper);
}

.nav-overlay-close:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.nav-overlay-items {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--s2);
  padding-block: var(--s4);
}

.nav-overlay-link {
  font-size: clamp(2.5rem, 11vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--paper);
  text-decoration: none;
  line-height: 1;
  padding: var(--s1) 0;
  display: block;
  transition: color var(--tx);
}

.nav-overlay-link:hover,
.nav-overlay-link[aria-current="page"] {
  color: var(--lime);
}

.nav-overlay-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.nav-overlay-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  padding-top: var(--s4);
  border-top: 1px solid var(--paper-70);
}

.nav-overlay-lang {
  display: flex;
  align-items: center;
  gap: var(--s2);
  font-size: 0.875rem;
}

.nav-overlay-lang a {
  color: var(--paper-70);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.nav-overlay-lang a[aria-current="true"] {
  font-weight: 700;
  color: var(--paper);
}

.nav-overlay-lang .sep { color: var(--paper-70); }

/* --------------------------------------------------------------------------
   SECTIONS — base
   -------------------------------------------------------------------------- */
.section {
  padding-block: var(--section-py);
}

@media (max-width: 639px) {
  .section { padding-block: var(--s5); }
}

.section--ink {
  background-color: var(--ink);
  color: var(--paper);
}

.section--stats {
  padding-block: 0;
}

/* --------------------------------------------------------------------------
   EYEBROW
   -------------------------------------------------------------------------- */
.eyebrow {
  display: block;
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-70);
  margin-bottom: var(--s3);
}

.section--ink .eyebrow { color: var(--paper-70); }

/* --------------------------------------------------------------------------
   HEADINGS
   -------------------------------------------------------------------------- */
h1, h2 {
  font-weight: 700;
  text-transform: uppercase;
  line-height: 0.97;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

h3 {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }

p { max-width: 65ch; text-wrap: pretty; }

/* --------------------------------------------------------------------------
   PAGE HERO (inner pages)
   -------------------------------------------------------------------------- */
.page-hero {
  padding-top: var(--s6);
}

.page-hero .eyebrow { margin-bottom: var(--s2); }

.page-hero h1 { margin-bottom: var(--s3); }

.page-hero .lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  max-width: 50ch;
  color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   S01 HERO (homepage)
   -------------------------------------------------------------------------- */
#s01-hero {
  padding-top: var(--s6);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s6);
  align-items: start;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 55fr 45fr;
    align-items: center;
  }
}

.hero-content h1 { margin-bottom: var(--s4); }

.hero-content .lead {
  font-size: var(--fs-lead);
  line-height: 1.5;
  margin-bottom: var(--s4);
  max-width: 52ch;
}

/* --------------------------------------------------------------------------
   SIGNATURE ELEMENT
   -------------------------------------------------------------------------- */
.signature-wrap { width: 100%; }

.signature {
  width: 100%;
  border: 1px solid var(--rule);
  padding: var(--s3);
  background-color: var(--paper);
  min-height: 400px;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.sig-brief {
  font-family: 'Courier New', 'Courier', monospace;
  font-size: 0.8125rem;
  color: var(--ink-70);
  line-height: 1.4;
  padding-bottom: var(--s2);
  border-bottom: 1px solid var(--rule);
}

.sig-frames {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  flex: 1;
}

.sig-frame {
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
  background-color: transparent;
  transition: none;
}

.sig-frame--11  { aspect-ratio: 1 / 1; }
.sig-frame--916 { aspect-ratio: 9 / 16; max-height: 160px; }
.sig-frame--169 { aspect-ratio: 16 / 9; }
.sig-frame--banner { aspect-ratio: 728 / 90; }
.sig-frame--mobile { aspect-ratio: 320 / 50; }

.sig-frames-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s2);
}

.sig-frame-fill {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--s2);
  opacity: 0;
  transform: scaleY(0);
  transform-origin: top;
}

.sig-frame-fill--ink  { background-color: var(--ink); color: var(--paper); }
.sig-frame-fill--lime { background-color: var(--lime); color: var(--ink); }

.sig-frame-text {
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.3;
  opacity: 0.7;
}

.sig-frame-mark {
  width: 20px;
  height: 6px;
  background-color: currentColor;
  opacity: 0.5;
  margin-top: auto;
}

.sig-frame.is-filled .sig-frame-fill {
  opacity: 1;
  transform: scaleY(1);
  transition: opacity 120ms ease-out, transform 160ms ease-out;
}

@media (prefers-reduced-motion: reduce) {
  .sig-frame.is-filled .sig-frame-fill { transition: none; }
  .sig-frame-fill { transition: none; }
}

/* --------------------------------------------------------------------------
   CLAIMS STRIP (homepage — bewijsstrip)
   -------------------------------------------------------------------------- */
.claims-grid {
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .claims-grid { grid-template-columns: 1fr 1fr; }
}

.claim-block {
  padding: var(--s6) var(--container-padding);
}

@media (min-width: 640px) {
  .claim-block:first-child {
    border-right: 1px solid var(--paper-70);
  }
}

@media (max-width: 639px) {
  .claim-block:first-child {
    border-bottom: 1px solid var(--paper-70);
  }
}

.claim-text {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-wrap: balance;
}

/* --------------------------------------------------------------------------
   CONTEXTUAL TEXT LINKS (homepage sections)
   -------------------------------------------------------------------------- */
.section-ctx-link {
  display: inline-flex;
  align-items: center;
  margin-top: var(--s4);
  font-weight: 700;
  font-size: var(--fs-body);
  text-decoration: underline;
  text-decoration-color: var(--lime);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  color: inherit;
  min-height: 44px;
  transition: color var(--tx), text-decoration-thickness var(--tx);
}

.section-ctx-link:hover { text-decoration-thickness: 3px; }

.section--ink .section-ctx-link:hover {
  color: var(--lime);
  text-decoration-thickness: 2px;
}

.section-ctx-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   CONTACT STRIP (homepage)
   -------------------------------------------------------------------------- */
.contact-strip {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
}

.contact-strip p {
  font-size: var(--fs-lead);
  color: var(--paper);
  max-width: 50ch;
}

.contact-email {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--lime);
  text-decoration: none;
  transition: opacity var(--tx);
  display: block;
}

.contact-email:hover { opacity: 0.75; }

.contact-email:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   FOUR STEPS (platform page)
   -------------------------------------------------------------------------- */
.section-header {
  margin-bottom: var(--s6);
}

.section-header h2 { margin-top: var(--s2); }

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(3, 1fr); }
}

.step {
  padding: var(--s4);
  border-top: 1px solid var(--rule);
}

@media (min-width: 1024px) {
  .step {
    padding: var(--s4) var(--s4) var(--s5) 0;
    border-top: none;
    border-left: 1px solid var(--rule);
  }
  .step:nth-child(3n+1) { border-left: none; padding-left: 0; }
}

@media (max-width: 1023px) {
  .step:last-child { border-bottom: 1px solid var(--rule); }
}

.step-number {
  font-size: var(--fs-h2);
  font-weight: 700;
  line-height: 1;
  color: var(--lime);
  letter-spacing: -0.02em;
  margin-bottom: var(--s2);
  display: block;
}

.step h3 { margin-bottom: var(--s2); }

.step p {
  font-size: var(--fs-body);
  color: var(--ink-70);
}

/* --------------------------------------------------------------------------
   DE KERN (platform page)
   -------------------------------------------------------------------------- */
.kern-intro {
  margin-bottom: var(--s5);
  max-width: 55ch;
}

.kern-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.kern-list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
}

.kern-list li {
  font-size: var(--fs-body);
  line-height: 1.55;
  max-width: 65ch;
  color: var(--paper);
  margin-bottom: var(--s2);
}

.kern-accent {
  margin-top: var(--s5);
  padding: var(--s3) var(--s4);
  background-color: rgba(214, 250, 51, 0.07);
  font-size: var(--fs-body);
  line-height: 1.6;
  max-width: 60ch;
  color: var(--paper);
}

/* --------------------------------------------------------------------------
   UITBREIDINGEN (platform page)
   -------------------------------------------------------------------------- */
.ext-intro {
  margin-bottom: var(--s5);
}

.ext-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.ext-intro p { color: var(--ink-70); }

.ext-groups { border-top: 3px solid var(--rule); }

.ext-group {
  padding: var(--s4) 0;
  border-bottom: 3px solid var(--rule);
}

@media (min-width: 640px) {
  .ext-group-inner {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: var(--s4);
    align-items: start;
  }
}

.ext-number {
  font-size: var(--fs-h3);
  font-weight: 700;
  color: var(--lime);
  line-height: 1;
  margin-bottom: var(--s2);
  display: block;
}

@media (min-width: 640px) {
  .ext-number { margin-bottom: 0; }
}

.ext-group h3 { margin-bottom: var(--s2); }

/* Extension labels */
.ext-labels {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
  margin-top: var(--s2);
}

@media (min-width: 640px) {
  .ext-labels {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0;
  }
}

.ext-label {
  font-size: var(--fs-body);
  color: var(--ink-70);
}

@media (min-width: 640px) {
  .ext-label + .ext-label::before {
    content: ' / ';
    color: var(--ink-70);
    margin-inline: 0.25em;
  }
}

/* --------------------------------------------------------------------------
   DEVELOPMENT (ontwikkeling page)
   -------------------------------------------------------------------------- */
.dev-list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
}

.dev-list li {
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--paper);
  max-width: 65ch;
  margin-bottom: var(--s2);
}

.section-text-link {
  display: inline-flex;
  align-items: center;
  gap: var(--s2);
  margin-top: var(--s5);
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  min-height: 44px;
  color: var(--paper);
  transition: color var(--tx);
}

.section-text-link:hover { color: var(--paper-70); }

.section-text-link:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   PRICING (prijsmodel page)
   -------------------------------------------------------------------------- */
.pricing-intro { margin-bottom: var(--s5); }

.pricing-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.pricing-list {
  list-style: disc;
  list-style-position: outside;
  padding-left: 1.25em;
}

.pricing-list li {
  font-size: var(--fs-body);
  line-height: 1.55;
  max-width: 65ch;
  margin-bottom: var(--s2);
}

/* --------------------------------------------------------------------------
   CALCULATION BLOCK (pricing page)
   -------------------------------------------------------------------------- */
.calc-intro { margin-bottom: var(--s5); }

.calc-intro h2 { margin-top: var(--s2); }

.calc-block {
  margin-bottom: var(--s4);
  max-width: 46ch;
}

.calc-entry {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--s4);
  padding: var(--s2) 0;
  border-bottom: 1px solid var(--paper-70);
  font-size: var(--fs-body);
  color: var(--paper);
  line-height: 1.5;
}

.calc-entry--accent {
  color: var(--lime);
  font-weight: 700;
}

.calc-divider {
  height: 2px;
  background-color: var(--paper-70);
  margin: var(--s2) 0;
}

.calc-divider--lime { background-color: var(--lime); }

.calc-result {
  padding-top: var(--s3);
}

.calc-result-main {
  font-size: var(--fs-h3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  color: var(--lime);
  line-height: 1.1;
}

.calc-result-sub {
  margin-top: var(--s1);
  font-size: var(--fs-body);
  color: var(--paper);
  line-height: 1.5;
}

.calc-footnote {
  margin-top: var(--s4);
  font-size: 0.8125rem;
  color: var(--paper-70);
  max-width: 50ch;
  line-height: 1.6;
}

.section-note {
  margin-top: var(--s5);
  font-size: var(--fs-body);
  color: var(--ink-70);
  max-width: 60ch;
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   VOOR WIE (platform page + homepage)
   -------------------------------------------------------------------------- */
.voor-wie p {
  margin-top: var(--s3);
  font-size: var(--fs-body);
  color: var(--ink-70);
}

.section--ink .voor-wie p { color: var(--paper-70); }

/* --------------------------------------------------------------------------
   ABOUT TEXT & TEAM PHOTOS (over ons page)
   -------------------------------------------------------------------------- */
.about-intro { margin-bottom: var(--s5); }

.about-intro h2 {
  margin-top: var(--s2);
  margin-bottom: var(--s4);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
  max-width: 65ch;
  margin-bottom: var(--s7);
}

.about-text p {
  font-size: var(--fs-body);
  line-height: 1.65;
}

.team-photos {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--s4);
  border-top: 1px solid var(--rule);
  padding-top: var(--s5);
}

@media (min-width: 640px) {
  .team-photos { grid-template-columns: repeat(3, 1fr); }
}

.team-photo-card {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.team-photo-wrap {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--ink-70);
}

.team-photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(1);
  display: block;
}

.team-name {
  font-size: var(--fs-body);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
}

.team-role {
  font-size: 0.875rem;
  color: var(--ink-70);
  display: block;
}

/* --------------------------------------------------------------------------
   FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--paper);
  border-top: 1px solid var(--rule);
  padding-block: var(--s6);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: var(--s5);
}

.footer-top {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s1) var(--s4);
}

.footer-nav a {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ink);
  text-decoration: none;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  transition: color var(--tx);
}

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

.footer-nav a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.footer-email {
  font-size: var(--fs-body);
  font-weight: 700;
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--tx);
  display: inline-block;
  margin-bottom: var(--s2);
}

.footer-email:hover { color: var(--ink-70); }

.footer-email:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.footer-links {
  display: flex;
  gap: var(--s3);
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.footer-links a {
  color: var(--ink-70);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--tx);
  min-height: 44px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover { color: var(--ink); }

.footer-links a:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.footer-credit {
  font-size: 0.8125rem;
  color: var(--ink-70);
  line-height: 1.5;
  padding-top: var(--s4);
  border-top: 1px solid var(--rule);
}

/* --------------------------------------------------------------------------
   SCROLL FADE
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 400ms ease-out, transform 400ms ease-out;
}

.fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in { opacity: 1; transform: none; transition: none; }
}

/* --------------------------------------------------------------------------
   LEGAL PAGES
   -------------------------------------------------------------------------- */
.legal-content {
  padding-block: var(--s7);
  max-width: 72ch;
}

@media (max-width: 639px) {
  .legal-content { padding-block: var(--s5); }
}

.legal-content h1 { font-size: var(--fs-h2); margin-bottom: var(--s5); }
.legal-content h2 { font-size: var(--fs-h3); margin-top: var(--s5); margin-bottom: var(--s2); }
.legal-content p { margin-bottom: var(--s3); line-height: 1.65; }
.legal-content ul { list-style: disc; padding-left: var(--s4); margin-bottom: var(--s3); }
.legal-content ul li { margin-bottom: var(--s1); line-height: 1.6; }

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: var(--s5);
  min-height: 44px;
  border-bottom: 2px solid var(--ink);
  transition: color var(--tx), border-color var(--tx);
}

.legal-back:hover { color: var(--ink-70); border-color: var(--ink-70); }

.legal-back:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

/* --------------------------------------------------------------------------
   404 PAGE
   -------------------------------------------------------------------------- */
.page-404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-block: var(--s7);
}

.page-404 .eyebrow { margin-bottom: var(--s3); }
.page-404 h1 { font-size: var(--fs-h2); margin-bottom: var(--s4); }
.page-404 p { margin-bottom: var(--s4); color: var(--ink-70); }

/* --------------------------------------------------------------------------
   UTILITIES
   -------------------------------------------------------------------------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
