:root {
  --navy-950: #04111f;
  --navy-900: #071a2f;
  --navy-800: #0b2744;
  --navy-700: #123b61;
  --blue-600: #14699e;
  --blue-100: #e8f2f8;
  --amber-600: #c9860a;
  --amber-500: #e2a11a;
  --amber-400: #f2bd4a;
  --ink: #132235;
  --muted: #5f6f80;
  --line: #dce3e9;
  --soft: #f4f7f9;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(5, 25, 45, 0.07);
  --shadow-md: 0 18px 48px rgba(5, 25, 45, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --container: 1180px;
  --header-height: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
svg { width: 1.25rem; height: 1.25rem; fill: currentColor; }
section[id] { scroll-margin-top: calc(var(--header-height) + 18px); }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 10px;
  left: 10px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--amber-600);
  border-radius: 6px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  height: var(--header-height);
  color: var(--white);
  background: rgba(4, 17, 31, 0.93);
  border-bottom: 1px solid rgba(255,255,255,.09);
  backdrop-filter: blur(16px);
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  text-decoration: none;
  line-height: 1.05;
  flex: 0 0 auto;
}
.brand-name {
  font-size: 1.25rem;
  font-weight: 850;
  letter-spacing: .02em;
}
.brand-name span { color: var(--amber-400); }
.brand-role {
  margin-top: 6px;
  color: rgba(255,255,255,.65);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
  font-size: .86rem;
  font-weight: 650;
}
.primary-nav > a:not(.button) {
  position: relative;
  color: rgba(255,255,255,.82);
  text-decoration: none;
  transition: color .2s ease;
}
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--amber-400);
  transition: right .2s ease;
}
.primary-nav > a:hover,
.primary-nav > a.active { color: var(--white); }
.primary-nav > a:hover::after,
.primary-nav > a.active::after { right: 0; }
.primary-nav .nav-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 8px;
}
.primary-nav .nav-icon::after { display: none; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
}
.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .2s, opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 760;
  line-height: 1.2;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-accent {
  color: #111a26;
  background: linear-gradient(135deg, var(--amber-400), var(--amber-600));
  box-shadow: 0 10px 24px rgba(217, 150, 20, .25);
}
.button-accent:hover { box-shadow: 0 14px 32px rgba(217, 150, 20, .35); }
.button-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.03);
}
.button-ghost:hover { background: rgba(255,255,255,.09); }
.button-small { min-height: 40px; padding: 10px 14px; font-size: .78rem; }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 52% 28%, rgba(27, 112, 162, .25), transparent 33%),
    linear-gradient(116deg, var(--navy-950) 0%, var(--navy-900) 53%, #0b253c 100%);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.12) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,.75) 55%, rgba(0,0,0,.25) 100%);
}
.hero-grid {
  position: relative;
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: stretch;
}
.hero-copy {
  position: relative;
  z-index: 3;
  align-self: center;
  max-width: 680px;
  padding: 84px 50px 84px 0;
}
.eyebrow,
.section-kicker {
  margin: 0 0 9px;
  color: var(--amber-500);
  font-weight: 820;
  letter-spacing: .09em;
  text-transform: uppercase;
  font-size: .77rem;
}
.hero h1 {
  margin: 0;
  font-size: clamp(3.8rem, 8vw, 7.1rem);
  line-height: .88;
  letter-spacing: -.055em;
  text-transform: uppercase;
}
.hero h2 {
  margin: 24px 0 18px;
  max-width: 650px;
  font-size: clamp(1.45rem, 2.6vw, 2.3rem);
  line-height: 1.13;
  letter-spacing: -.025em;
}
.hero h2 span { color: var(--amber-400); white-space: nowrap; }
.hero-lead {
  max-width: 650px;
  margin: 0;
  color: rgba(255,255,255,.83);
  font-size: 1.05rem;
}
.current-role {
  max-width: 620px;
  margin: 18px 0 0;
  padding-left: 17px;
  color: rgba(255,255,255,.94);
  border-left: 3px solid var(--amber-500);
  font-weight: 650;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.social-links { display: flex; flex-wrap: wrap; gap: 24px; margin-top: 30px; }
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
  font-size: .9rem;
}
.social-links a:hover { color: var(--amber-400); }

.hero-photo-wrap {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}
.hero-photo-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  inset: 0 auto 0 0;
  width: 32%;
  background: linear-gradient(90deg, var(--navy-900), transparent);
  pointer-events: none;
}
.hero-photo-wrap::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto 0 0 0;
  height: 30%;
  background: linear-gradient(transparent, rgba(4,17,31,.92));
  pointer-events: none;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.hero-photo-glow {
  position: absolute;
  z-index: 1;
  top: 25%;
  left: 15%;
  width: 300px;
  height: 300px;
  background: rgba(226, 161, 26, .25);
  filter: blur(90px);
}

.section { padding: 92px 0; }
.section-light { background: var(--white); }
.section-soft { background: var(--soft); }
.section-heading { max-width: 760px; margin-bottom: 42px; }
.section-heading h2,
.language-panel h2,
.short-profile-card h2,
.request-card h2,
.contact-section h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.1;
  letter-spacing: -.035em;
}
.section-heading > p:last-child { margin: 14px 0 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(440px, .95fr);
  gap: 70px;
  align-items: start;
}
.about-copy { font-size: 1.02rem; }
.about-copy p { margin: 0 0 18px; }
.about-languages {
  margin-top: 28px !important;
  padding: 16px 18px;
  color: var(--navy-800);
  background: var(--blue-100);
  border-left: 3px solid var(--blue-600);
  border-radius: 0 8px 8px 0;
}
.about-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}
.info-card {
  min-height: 185px;
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}
.info-card svg { width: 34px; height: 34px; color: var(--blue-600); }
.info-card h3 { margin: 18px 0 8px; font-size: 1rem; line-height: 1.3; }
.info-card p { margin: 0; color: var(--muted); font-size: .88rem; }

.experience-list { display: grid; gap: 20px; }
.experience-card {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 245px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}
.experience-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.experience-logo {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 28px 20px;
  background: #fbfcfd;
  border-right: 1px solid var(--line);
}
.experience-logo a { display: block; }
.experience-logo img { width: 112px; max-height: 78px; object-fit: contain; }
.experience-main { padding: 26px 28px; }
.experience-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.experience-topline time {
  flex: 0 0 auto;
  color: var(--amber-600);
  font-size: .78rem;
  font-weight: 800;
}
.sector-label {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--blue-600);
  font-size: .7rem;
  font-weight: 850;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.experience-main h3 { margin: 0; font-size: 1.16rem; line-height: 1.28; }
.company-name { margin: 4px 0 0; color: var(--muted); font-size: .86rem; font-weight: 650; }
.company-description { margin: 16px 0 14px; color: #394b5d; font-size: .91rem; }
.achievement-list { margin: 0; padding-left: 18px; color: #2c3e50; font-size: .88rem; }
.achievement-list li + li { margin-top: 6px; }
.achievement-list li::marker { color: var(--amber-600); }
.experience-meta {
  display: grid;
  align-content: center;
  gap: 24px;
  padding: 26px 24px;
  background: #f9fbfc;
  border-left: 1px solid var(--line);
}
.experience-meta h4 {
  margin: 0 0 10px;
  color: var(--blue-600);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.tag-list { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.tag-list li {
  padding: 4px 8px;
  color: #425365;
  background: var(--white);
  border: 1px solid #dbe4ea;
  border-radius: 6px;
  font-size: .72rem;
  line-height: 1.35;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 14px;
}
.expertise-grid article {
  min-height: 178px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
}
.expertise-grid svg { width: 30px; height: 30px; color: var(--blue-600); }
.expertise-grid h3 { margin: 16px 0 0; font-size: .9rem; line-height: 1.3; }
.expertise-grid p { margin: 9px 0 0; color: var(--muted); font-size: .76rem; line-height: 1.55; }

.education-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: 65px;
  align-items: stretch;
}
.education-list { display: grid; gap: 14px; }
.education-list article {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 19px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.education-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--blue-600);
  background: var(--blue-100);
  border-radius: 50%;
}
.education-list h3 { margin: 0; font-size: 1rem; }
.education-list p { margin: 3px 0 0; color: var(--muted); font-size: .84rem; }
.education-list p a { color: inherit; text-decoration: none; border-bottom: 1px solid transparent; }
.education-list p a:hover { color: var(--blue-600); border-bottom-color: currentColor; }
.education-list time { color: var(--muted); font-size: .78rem; font-weight: 750; }
.language-panel {
  padding: 34px;
  color: var(--white);
  background: linear-gradient(145deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}
.language-panel h2 { margin-bottom: 28px; font-size: 2rem; }
.language-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,.16);
}
.language-row strong { color: var(--amber-400); }

.volunteer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, .9fr);
  gap: 28px;
}
.volunteer-story {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 34px;
  color: var(--white);
  background: linear-gradient(140deg, var(--navy-900), var(--navy-700));
  border-radius: var(--radius-md);
}
.volunteer-mark {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  color: var(--white);
  background: #e32632;
  border-radius: 16px;
  font-size: 2.2rem;
  font-weight: 900;
}
.volunteer-story h3 { margin: 0 0 10px; font-size: 1.35rem; }
.volunteer-story p { margin: 0; color: rgba(255,255,255,.78); }
.media-links { display: grid; gap: 12px; }
.media-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 18px 20px;
  text-decoration: none;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, border-color .2s ease;
}
.media-links a:hover { transform: translateX(4px); border-color: var(--amber-500); }
.media-links span { display: flex; flex-direction: column; }
.media-links small { margin-top: 4px; color: var(--muted); line-height: 1.35; }
.media-links svg { flex: 0 0 auto; color: var(--amber-600); }

.cv-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-950), var(--navy-800));
}
.cv-grid {
  display: grid;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: 24px;
}
.short-profile-card,
.request-card {
  padding: 38px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-md);
}
.short-profile-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 25%, rgba(226,161,26,.22), transparent 28%),
    rgba(255,255,255,.035);
}
.short-profile-card::after {
  content: "CV";
  position: absolute;
  right: -12px;
  bottom: -48px;
  color: rgba(255,255,255,.035);
  font-size: 13rem;
  font-weight: 900;
  line-height: 1;
}
.short-profile-card > * { position: relative; z-index: 1; }
.short-profile-card h2,
.request-card h2 { font-size: 2rem; }
.short-profile-card p:not(.section-kicker),
.request-card > p:not(.section-kicker) { color: rgba(255,255,255,.72); }
.short-profile-card .button { margin-top: 18px; }
.request-card { background: rgba(255,255,255,.07); }
.request-points {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}
.request-points span {
  display: flex;
  align-items: center;
  gap: 11px;
  color: rgba(255,255,255,.84);
}
.request-points svg { color: var(--amber-400); }
.request-email-button { margin-top: 4px; }
.privacy-note {
  margin: 16px 0 0;
  color: rgba(255,255,255,.56);
  font-size: .82rem;
}


.contact-section {
  padding: 68px 0;
  color: var(--white);
  background: var(--navy-950);
  border-top: 1px solid rgba(255,255,255,.08);
}
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  gap: 70px;
  align-items: center;
}
.contact-section h2 { font-size: 2.5rem; }
.contact-section p:not(.section-kicker) { max-width: 650px; color: rgba(255,255,255,.7); }
.contact-links { display: grid; gap: 14px; }
.contact-links a,
.contact-links > span {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255,255,255,.8);
  text-decoration: none;
}
.contact-links svg { color: var(--amber-400); }
.contact-links a:hover { color: var(--white); }

.site-footer { color: rgba(255,255,255,.62); background: #020b14; border-top: 1px solid rgba(255,255,255,.08); }
.footer-wrap { min-height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 20px; font-size: .78rem; }
.footer-wrap p { margin: 0; }
.footer-wrap div { display: flex; gap: 22px; }
.footer-wrap a { text-decoration: none; }
.footer-wrap a:hover { color: var(--white); }

.svg-sprite { position: absolute; width: 0; height: 0; overflow: hidden; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: none; }

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

@media (max-width: 1180px) {
  .primary-nav { gap: 15px; font-size: .8rem; }
  .primary-nav .button { display: none; }
  .hero-grid { grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr); }
  .experience-card { grid-template-columns: 130px minmax(0, 1fr); }
  .experience-meta {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0,1fr));
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .expertise-grid { grid-template-columns: repeat(4, minmax(0,1fr)); }
}

@media (max-width: 980px) {
  :root { --header-height: 70px; }
  .site-header { height: var(--header-height); }
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 12px 20px 22px;
    background: rgba(4,17,31,.98);
    border-bottom: 1px solid rgba(255,255,255,.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform .25s ease, opacity .25s ease;
  }
  .primary-nav.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .primary-nav > a:not(.button) { padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .nav-icon { display: none; }
  .primary-nav .button { display: inline-flex; margin-top: 14px; }

  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-copy { padding: 74px 0 52px; }
  .hero-photo-wrap { min-height: 540px; margin-inline: -20px; }
  .hero-photo-wrap::before { width: 100%; background: linear-gradient(180deg, var(--navy-900), transparent 23%); }
  .hero-photo { object-position: 50% 42%; }

  .about-grid,
  .education-layout,
  .volunteer-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 38px; }
  .about-cards { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .info-card { min-height: 160px; padding: 20px; }
  .expertise-grid { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .cv-grid { grid-template-columns: 1fr; }
  .short-profile-card { min-height: 280px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 30px), var(--container)); }
  .section { padding: 70px 0; }
  .brand-role { display: none; }
  .hero h1 { font-size: clamp(3.6rem, 18vw, 6rem); }
  .hero h2 span { white-space: normal; display: block; margin-top: 5px; }
  .hero-copy { padding-top: 58px; }
  .hero-photo-wrap { min-height: 475px; margin-inline: -15px; }
  .about-cards { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .experience-card { grid-template-columns: 1fr; }
  .experience-logo { min-height: 130px; border-right: 0; border-bottom: 1px solid var(--line); }
  .experience-logo img { width: 140px; max-height: 82px; }
  .experience-main { padding: 24px 20px; }
  .experience-topline { display: block; }
  .experience-topline time { display: block; margin-top: 10px; }
  .experience-meta { grid-template-columns: 1fr; padding: 22px 20px; }
  .expertise-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .education-list article { grid-template-columns: 44px minmax(0,1fr); }
  .education-list time { grid-column: 2; }
  .short-profile-card,
  .request-card { padding: 28px 22px; }
  .footer-wrap { flex-direction: column; justify-content: center; padding: 18px 0; text-align: center; }
}

@media (max-width: 500px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .hero-copy { padding: 46px 0 40px; }
  .hero h1 { font-size: 3.75rem; }
  .hero h2 { font-size: 1.45rem; }
  .hero-lead { font-size: .96rem; }
  .hero-actions { display: grid; }
  .hero-actions .button { width: 100%; }
  .social-links { gap: 17px; }
  .social-links span { display: none; }
  .hero-photo-wrap { min-height: 410px; margin-inline: -12px; }
  .hero-photo { object-position: 51% 40%; }
  .section-heading { margin-bottom: 30px; }
  .section-heading h2 { font-size: 2.05rem; }
  .about-cards { grid-template-columns: 1fr; }
  .info-card { min-height: auto; }
  .expertise-grid { grid-template-columns: 1fr; }
  .expertise-grid article { min-height: auto; }
  .expertise-grid h3 { margin-top: 14px; }
  .volunteer-story { flex-direction: column; padding: 26px 22px; }
  .media-links a { min-height: 96px; }
  .contact-section h2 { font-size: 2rem; }
  .contact-links span { overflow-wrap: anywhere; }
}

/* Language selection */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(255,255,255,.52);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .06em;
}
.language-switch a {
  color: rgba(255,255,255,.62);
  text-decoration: none;
}
.language-switch a:hover,
.language-switch a.active {
  color: var(--amber-400);
}

/* Volunteer organisation logo */
.volunteer-logo-link {
  flex: 0 0 150px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: var(--white);
  border-radius: 14px;
  text-decoration: none;
}
.volunteer-logo {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1180px) {
  .language-switch { margin-left: auto; }
}

@media (max-width: 980px) {
  .primary-nav .language-switch {
    order: 20;
    justify-content: center;
    margin: 14px 0 0;
    padding: 10px 0;
  }
}

@media (max-width: 500px) {
  .volunteer-logo-link { flex-basis: auto; width: min(190px, 100%); }
}
