:root {
  --ink: #171717;
  --ink-soft: #302b28;
  --paper: #fffdf5;
  --white: #ffffff;
  --yellow: #f8de63;
  --yellow-light: #fff3b8;
  --yellow-dark: #d3aa19;
  --brown: #5b504a;
  --muted: #6d655f;
  --line: rgba(23, 23, 23, 0.13);
  --radius: 24px;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.18);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
.container { width: var(--container); margin-inline: auto; }
.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; }
.skip-link { position: fixed; z-index: 999; top: 10px; left: 10px; transform: translateY(-150%); background: var(--yellow); padding: 10px 14px; border-radius: 8px; font-weight: 800; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  background: rgba(23,23,23,.83);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.09);
  transition: background .25s ease, box-shadow .25s ease;
}
.site-header.scrolled { background: rgba(23,23,23,.97); box-shadow: 0 10px 40px rgba(0,0,0,.22); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
  text-decoration: none;
  line-height: 1;
}
.brand img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,.22));
}
.brand > span {
  display: flex;
  min-width: 118px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  transform: translateY(1px);
}
.brand strong {
  display: block;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .9;
}
.brand small {
  display: block;
  margin: 0;
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: .29em;
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
}

.primary-nav { display: flex; align-items: center; gap: 24px; }
.primary-nav a { color: rgba(255,255,255,.84); text-decoration: none; font-size: 14px; font-weight: 700; transition: color .2s ease; }
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--yellow); }
.language-toggle { border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.06); color: rgba(255,255,255,.6); padding: 9px 12px; border-radius: 999px; font: inherit; font-size: 12px; cursor: pointer; }
.language-toggle span { margin: 0 2px; }
.language-toggle .language-active { color: var(--yellow); font-weight: 900; }
.menu-button { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.06); border-radius: 12px; align-items: center; justify-content: center; flex-direction: column; gap: 5px; }
.menu-button span:not(.sr-only) { width: 18px; height: 2px; background: var(--white); border-radius: 2px; }

.hero {
  position: relative;
  min-height: 790px;
  display: grid;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 79% 34%, rgba(248,222,99,.22), transparent 28%),
    linear-gradient(135deg, #171717 0%, #27211e 62%, #3a3029 100%);
  overflow: hidden;
}
.hero-pattern { position: absolute; inset: 0; opacity: .13; background-image: radial-gradient(circle, var(--yellow) 0 3px, transparent 4px); background-size: 54px 54px; mask-image: linear-gradient(to right, transparent 0%, black 55%, black 100%); }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1.06fr .94fr; gap: 72px; align-items: center; padding-top: 138px; padding-bottom: 74px; }
.eyebrow, .kicker { margin: 0 0 18px; text-transform: uppercase; letter-spacing: .17em; font-size: 12px; font-weight: 900; }
.eyebrow { color: var(--yellow); }
.hero h1 { margin: 0; max-width: 760px; font-size: clamp(54px, 6.2vw, 88px); line-height: .96; letter-spacing: -.055em; }
.hero h1 span { color: var(--yellow); }
.hero-text { max-width: 680px; margin: 28px 0 0; color: rgba(255,255,255,.72); font-size: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 12px 20px; border-radius: 999px; text-decoration: none; font-size: 14px; font-weight: 850; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--ink); background: var(--yellow); box-shadow: 0 15px 36px rgba(248,222,99,.18); }
.button-primary:hover { background: #ffe77d; }
.button-secondary { color: var(--white); border: 1px solid rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.button-secondary:hover { background: rgba(255,255,255,.12); }
.hero-logo-wrap { position: relative; min-height: 540px; display: grid; place-items: center; }
.hero-logo-card { width: min(500px, 96%); aspect-ratio: 1; padding: 24px; display: grid; place-items: center; border-radius: 50%; background: rgba(255,255,255,.055); border: 1px solid rgba(255,255,255,.14); box-shadow: var(--shadow); backdrop-filter: blur(12px); }
.hero-logo-card::before { content: ""; position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%; border: 1px dashed rgba(248,222,99,.35); animation: spin 35s linear infinite; }
.hero-logo-card img { position: relative; z-index: 2; width: 94%; filter: drop-shadow(0 22px 30px rgba(0,0,0,.3)); }
@keyframes spin { to { transform: rotate(360deg); } }

.stats-band { background: var(--yellow); border-bottom: 1px solid rgba(23,23,23,.14); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { min-height: 136px; padding: 28px 26px; display: flex; flex-direction: column; justify-content: center; border-right: 1px solid rgba(23,23,23,.15); }
.stat:last-child { border-right: 0; }
.stat strong { font-size: 31px; line-height: 1; letter-spacing: -.03em; }
.stat span { margin-top: 10px; color: rgba(23,23,23,.64); font-size: 12px; font-weight: 750; }

.section { padding: 108px 0; }
.section-heading h2, .learning-section h2, .join-panel h2 { margin: 0; font-size: clamp(40px, 4.8vw, 66px); line-height: 1.03; letter-spacing: -.045em; }
.section-heading > p:last-child { max-width: 670px; color: var(--muted); font-size: 17px; }
.section-heading.centered { max-width: 800px; margin: 0 auto 56px; text-align: center; }
.kicker { color: #8a6b00; }
.split-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 92px; align-items: start; }
.about-content > p { margin: 0 0 18px; color: var(--muted); font-size: 18px; }

.section-dark { color: var(--white); background: var(--ink); }
.section-dark .kicker { color: var(--yellow); }
.section-dark .section-heading > p:last-child { color: rgba(255,255,255,.58); margin-inline: auto; }
.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.program-card { min-height: 500px; padding: 32px; border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius); background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.025)); }
.program-card.featured { border-color: rgba(248,222,99,.46); box-shadow: inset 0 0 0 1px rgba(248,222,99,.08), 0 24px 80px rgba(0,0,0,.2); }
.program-banner {
  width: 100%;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 20px;
  border-radius: 18px;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,.18);
}
.program-banner img {
  display: block;
  width: 100%;
  max-width: 320px;
  max-height: 82px;
  object-fit: contain;
  margin: 0 auto;
}
.program-label { margin: 24px 0 8px; color: rgba(255,255,255,.48); text-transform: uppercase; letter-spacing: .11em; font-size: 10px; font-weight: 900; }
.program-card h3 { margin: 0; font-size: 28px; line-height: 1.14; letter-spacing: -.03em; }
.program-card > p:not(.program-label) { color: rgba(255,255,255,.62); font-size: 15px; }
.program-card ul { list-style: none; padding: 0; margin: 28px 0 0; }
.program-card li { position: relative; padding: 11px 0 11px 23px; border-top: 1px solid rgba(255,255,255,.09); color: rgba(255,255,255,.76); font-size: 13px; }
.program-card li::before { content: "+"; position: absolute; left: 0; color: var(--yellow); font-weight: 900; }

.timeline { position: relative; max-width: 980px; margin: 58px auto 0; }
.timeline::before { content: ""; position: absolute; left: 110px; top: 10px; bottom: 10px; width: 1px; background: var(--line); }
.timeline-item { display: grid; grid-template-columns: 82px 56px 1fr; align-items: start; margin-bottom: 28px; }
.timeline-year { padding-top: 24px; font-size: 13px; font-weight: 900; color: var(--muted); text-align: right; }
.timeline-dot { position: relative; z-index: 2; width: 14px; height: 14px; margin: 29px auto 0; border-radius: 50%; background: var(--paper); border: 4px solid var(--yellow-dark); box-shadow: 0 0 0 7px var(--paper); }
.timeline-card { padding: 24px 27px; border: 1px solid var(--line); border-radius: 20px; background: var(--white); }
.timeline-card h3 { margin: 4px 0 9px; font-size: 23px; line-height: 1.25; }
.timeline-card > p:last-child { margin: 0; color: var(--muted); }
.timeline-category { margin: 0; color: #8a6b00; text-transform: uppercase; letter-spacing: .13em; font-size: 10px; font-weight: 900; }
.timeline-next { background: var(--yellow-light); }

/* Impact */
.impact-section { background: #f6f1e7; }
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.impact-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(55,43,15,.07);
}
.impact-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #181818;
  border-bottom: 1px solid var(--line);
}
.impact-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.impact-media-contain img { object-fit: contain; }
.impact-card:hover .impact-media img { transform: scale(1.02); }
.impact-copy { padding: 24px 24px 26px; }
.impact-label {
  margin: 0 0 8px;
  color: #8a6b00;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 900;
}
.impact-copy h3 { margin: 0; font-size: 24px; line-height: 1.18; letter-spacing: -.025em; }
.impact-copy > p:not(.impact-label):not(.impact-photo-caption) { margin: 14px 0 0; color: var(--muted); font-size: 14px; line-height: 1.62; }
.impact-photo-caption { margin: 18px 0 0; padding-top: 14px; border-top: 1px solid var(--line); color: #7a726c; font-size: 11px; font-weight: 750; }
.impact-source { margin: 26px 0 0; color: var(--muted); text-align: center; font-size: 11px; }
.impact-source a { color: #715700; font-weight: 850; text-underline-offset: 3px; }

.gallery-section { background: #fff8d7; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-item { align-self: start; margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: var(--white); box-shadow: 0 16px 40px rgba(55,43,15,.07); }
.gallery-item img { width: 100%; height: auto; object-fit: contain; background: #111; transition: transform .35s ease; }
.gallery-item:hover img { transform: scale(1.025); }
.gallery-item figcaption { padding: 17px 19px; font-size: 14px; font-weight: 750; }

.learning-section { background: var(--white); }
.learning-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 76px; align-items: center; }
.learning-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.learning-grid article { min-height: 170px; padding: 24px; display: flex; flex-direction: column; justify-content: space-between; border-radius: 18px; background: var(--yellow-light); border: 1px solid rgba(23,23,23,.09); }
.learning-grid article:nth-child(2), .learning-grid article:nth-child(3) { background: #f4efe9; }
.learning-grid strong { font-size: 20px; }
.learning-grid span { color: var(--muted); font-size: 13px; }

.join-section { padding-bottom: 54px; }
.join-panel { padding: 62px; display: grid; grid-template-columns: 1.15fr .85fr; gap: 60px; align-items: center; border-radius: 30px; background: var(--yellow); box-shadow: 0 28px 80px rgba(76,59,0,.12); }
.join-panel .kicker { color: rgba(23,23,23,.55); }
.join-panel p:not(.kicker) { max-width: 680px; color: rgba(23,23,23,.68); }
.join-actions { display: flex; flex-direction: column; gap: 12px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-outline-dark { color: var(--ink); border: 1px solid rgba(23,23,23,.32); }
.button-outline-dark:hover { background: rgba(23,23,23,.06); }
.join-actions small { color: rgba(23,23,23,.55); text-align: center; font-size: 10px; }

.sponsor-section { padding-top: 52px; }
.sponsor-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; }
.sponsor-copy > p { margin: 0; color: var(--muted); font-size: 17px; }
.sponsor-levels { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.sponsor-levels span { padding: 11px 14px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 12px; font-weight: 800; }

.site-footer { padding: 42px 0; color: rgba(255,255,255,.58); background: #0f0f0f; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 28px; align-items: center; font-size: 12px; }
.footer-grid p:nth-child(2) { text-align: center; }
.footer-grid p:last-child { text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); transition-delay: var(--delay, 0ms); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1000px) {
  .primary-nav { gap: 17px; }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; padding-top: 154px; gap: 28px; }
  .hero-copy { max-width: 800px; }
  .hero-logo-wrap { min-height: 500px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(23,23,23,.14); }
  .split-layout, .learning-layout, .join-panel, .sponsor-layout { grid-template-columns: 1fr; gap: 42px; }
  .program-grid { grid-template-columns: 1fr; }
  .program-card { min-height: auto; }
  .impact-grid { grid-template-columns: 1fr; }
  .impact-card { display: grid; grid-template-columns: minmax(280px, .9fr) 1.1fr; }
  .impact-media { aspect-ratio: auto; min-height: 100%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 780px) {
  :root { --container: min(100% - 28px, 1180px); }
  .nav-wrap { min-height: 72px; }
  .brand { gap: 10px; }
  .brand img { width: 50px; height: 50px; }
  .brand > span { min-width: 102px; gap: 5px; }
  .brand strong { font-size: 18px; }
  .brand small { font-size: 8px; letter-spacing: .25em; }
  .menu-button { display: flex; }
  .primary-nav { position: absolute; top: calc(100% + 1px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; border-radius: 0 0 18px 18px; background: rgba(23,23,23,.99); box-shadow: 0 20px 40px rgba(0,0,0,.25); }
  .primary-nav.is-open { display: flex; }
  .primary-nav a { padding: 13px 10px; }
  .language-toggle { margin-top: 8px; }
  .hero-layout { padding-top: 126px; }
  .hero h1 { font-size: clamp(47px, 14vw, 70px); }
  .hero-text { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-logo-wrap { min-height: 390px; }
  .hero-logo-card { width: min(370px, 93%); padding: 14px; }
  .stat { min-height: 116px; padding: 22px 18px; }
  .stat strong { font-size: 27px; }
  .section { padding: 82px 0; }
  .section-heading h2, .learning-section h2, .join-panel h2 { font-size: clamp(34px, 10vw, 48px); }
  .timeline::before { left: 17px; }
  .timeline-item { grid-template-columns: 34px 1fr; }
  .timeline-year { display: none; }
  .timeline-dot { grid-column: 1; grid-row: 1; margin-top: 27px; }
  .timeline-card { grid-column: 2; grid-row: 1; padding: 21px; }
  .impact-card { display: block; }
  .impact-media { aspect-ratio: 4 / 3; min-height: 0; }
  .gallery-grid { grid-template-columns: 1fr; }
  .learning-grid { grid-template-columns: 1fr; }
  .join-panel { padding: 34px 24px; }
  .footer-grid { grid-template-columns: 1fr; text-align: left; }
  .footer-grid p:nth-child(2), .footer-grid p:last-child { text-align: left; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.program-card { display: flex; flex-direction: column; }
.program-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--yellow);
  text-decoration: none;
  font-size: 13px;
  font-weight: 850;
}
.program-link::after { content: " →"; margin-left: 5px; }
.program-link:hover, .program-link:focus-visible { text-decoration: underline; }

.achievement-list { margin: 14px 0 0; padding-left: 20px; color: var(--muted); }
.achievement-list li { margin: 8px 0; padding-left: 4px; }
.achievement-list li::marker { color: var(--yellow-dark); }
.more-to-come { margin: 18px 0 0; font-weight: 850; color: var(--ink) !important; }

.sponsor-button { margin-top: 26px; }
.supporters { margin-top: 70px; }
.supporters-heading { margin: 0 0 22px; font-size: 16px; font-weight: 850; }
.supporter-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.supporter-card {
  min-height: 190px;
  display: grid;
  place-items: center;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 14px 38px rgba(55,43,15,.06);
}
.supporter-card img { width: 100%; max-height: 120px; object-fit: contain; }

@media (max-width: 780px) {
  .supporter-grid { grid-template-columns: 1fr; }
  .supporter-card { min-height: 150px; }
}


/* Header brand lockup */
.site-header .header-brand {
  gap: 13px;
  flex: 0 0 auto;
}
.site-header .header-brand img {
  width: 58px;
  height: 58px;
}
.site-header .header-wordmark {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-width: 0;
  transform: none;
  white-space: nowrap;
}
.site-header .header-wordmark strong {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: .035em;
}
.site-header .header-wordmark .brand-divider {
  width: 1px;
  height: 24px;
  flex: 0 0 1px;
  background: rgba(255,255,255,.28);
}
.site-header .header-wordmark small {
  margin: 0;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .18em;
}

@media (max-width: 1120px) {
  .site-header .header-wordmark strong { font-size: 18px; }
  .site-header .header-wordmark small { font-size: 9px; letter-spacing: .14em; }
  .site-header .header-wordmark { gap: 8px; }
  .site-header .header-wordmark .brand-divider { height: 21px; }
  .primary-nav { gap: 15px; }
}

@media (max-width: 780px) {
  .site-header .header-brand { gap: 9px; }
  .site-header .header-brand img { width: 48px; height: 48px; }
  .site-header .header-wordmark { gap: 7px; }
  .site-header .header-wordmark strong { font-size: 16px; }
  .site-header .header-wordmark small { font-size: 8px; letter-spacing: .12em; }
  .site-header .header-wordmark .brand-divider { height: 18px; }
}

@media (max-width: 420px) {
  .site-header .header-wordmark .brand-divider,
  .site-header .header-wordmark small { display: none; }
}

/* Recruitment */
.recruitment-section { background: #f4efe9; }
.recruitment-layout {
  display: grid;
  grid-template-columns: .96fr 1.04fr;
  gap: 26px;
  align-items: stretch;
}
.recruitment-photo {
  min-height: 520px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--ink);
  box-shadow: 0 22px 60px rgba(55,43,15,.10);
}
.recruitment-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.recruitment-copy {
  padding: 46px;
  border: 1px solid rgba(23,23,23,.08);
  border-radius: 26px;
  background: var(--yellow-light);
}
.recruitment-copy h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.recruitment-lead {
  margin: 22px 0 0;
  color: rgba(23,23,23,.68);
  font-size: 16px;
}
.recruitment-list {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 22px;
}
.recruitment-list li {
  position: relative;
  padding: 12px 0 12px 20px;
  border-top: 1px solid rgba(23,23,23,.12);
  font-size: 13px;
  font-weight: 750;
}
.recruitment-list li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: #8a6b00;
  font-weight: 950;
}
.recruitment-who {
  margin: 25px 0 0;
  padding-top: 21px;
  border-top: 1px solid rgba(23,23,23,.14);
  color: rgba(23,23,23,.68);
  font-size: 14px;
}
.recruitment-who strong { color: var(--ink); }
.recruitment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

@media (max-width: 1000px) {
  .recruitment-layout { grid-template-columns: 1fr; }
  .recruitment-photo { min-height: 430px; }
}

@media (max-width: 780px) {
  .recruitment-photo { min-height: 330px; }
  .recruitment-copy { padding: 32px 24px; }
  .recruitment-list { grid-template-columns: 1fr; }
  .recruitment-actions { flex-direction: column; }
  .recruitment-actions .button { width: 100%; }
}

/* Merged Contact & Recruitment */
.contact-section { background: #f4efe9; }
.contact-section .recruitment-copy { display: flex; flex-direction: column; justify-content: center; }
.recruitment-actions-primary { margin-top: 28px; }
.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(23,23,23,.14);
}
.contact-links a {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}
.contact-links a:hover, .contact-links a:focus-visible { text-decoration: underline; }
.contact-email-text { margin-top: 10px; color: rgba(23,23,23,.52); font-size: 11px; }
@media (max-width: 780px) {
  .contact-links { flex-direction: column; gap: 10px; }
}
