/* united4energy — site styles.
   Layout, colors and type follow the design handoff (Option 1A "Corporate
   Clean"). Font files are self-hosted; the build adds ?v= hashes to URLs. */

/* ---------- Fonts (Source Sans 3, variable 400–700, SIL OFL 1.1) ---------- */

@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/source-sans-3-cyrillic-ext.woff2?v=6aba01e1a8) format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/source-sans-3-cyrillic.woff2?v=b6b721e08d) format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/source-sans-3-latin-ext.woff2?v=a85a7459bd) format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Source Sans 3';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url(/assets/fonts/source-sans-3-latin.woff2?v=7a19a7027e) 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;
}

/* ---------- Tokens ---------- */

:root {
  --navy: #0E2A44;
  --blue: #1568A8;
  --blue-light: #3E8CC7;
  --blue-pale: #8FC0E4;
  --text: #14263A;
  --text-list: #2C4258;
  --text-nav: #3E5872;
  --text-muted: #52708C;
  --tint: #F6FAFD;
  --img-fallback: #D9E8F4;
  --error: #B42318;

  --line-08: rgba(14, 42, 68, .08);
  --line-10: rgba(14, 42, 68, .1);
  --line-12: rgba(14, 42, 68, .12);
  --line-18: rgba(14, 42, 68, .18);
  --line-22: rgba(14, 42, 68, .22);
  --chip-line: rgba(21, 104, 168, .3);
  --connector: rgba(21, 104, 168, .25);
  --ring: rgba(21, 104, 168, .15);

  --font: 'Source Sans 3', system-ui, sans-serif;
  --container: 1152px;
  --pad-x: 44px;
  --header-h: 69px; /* sticky header height, keeps anchor targets below it */

  color-scheme: light;
}

/* ---------- Base ---------- */

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--tint);
  font-family: var(--font);
  color: var(--text);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background: #fff;
}
.page > main { flex: 1; }
main:focus { outline: none; }

[hidden] { display: none !important; }
h1, h2, h3, p, ul, ol, dl, dd { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img { display: block; max-width: 100%; }

a { color: var(--blue); }
a:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid rgba(21, 104, 168, .45);
  outline-offset: 2px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--navy);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { top: 12px; color: #fff; }

.container {
  width: 100%;
  max-width: calc(var(--container) + 2 * var(--pad-x));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--pad-x);
  padding-left: var(--pad-x);
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  color: #fff;
  font-family: inherit;
  font-weight: 700;
  line-height: normal;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .15s ease;
}
.btn:hover { color: #fff; }
.btn-dark { padding: 9px 16px; background: var(--navy); font-size: 13.5px; }
.btn-dark:hover { background: var(--blue); }
.btn-primary { background: var(--blue); }
.btn-primary:hover { background: var(--navy); }
.btn-lg { padding: 13px 22px; font-size: 15px; }
.btn-block { width: 100%; padding: 13px; font-size: 15px; }
.btn[disabled] { cursor: progress; opacity: .75; }
.btn-primary[disabled]:hover { background: var(--blue); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line-12);
}

.nav {
  position: relative;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 15px var(--pad-x);
}

.brand {
  display: flex;
  flex: none;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand img { width: auto; height: 28px; }

.wordmark {
  color: var(--navy);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.2px;
}
.wordmark > span { color: var(--blue); }

.nav-links {
  display: flex;
  gap: 20px;
  margin-left: auto;
  font-size: 14px;
  font-weight: 600;
}
.nav-links a {
  color: var(--text-nav);
  text-decoration: none;
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--navy); }
.nav-links .menu-cta { display: none; }

.lang-toggle {
  display: flex;
  flex: none;
  overflow: hidden;
  border: 1px solid var(--line-22);
  border-radius: 999px;
}
.lang-toggle a {
  padding: 6px 13px;
  color: var(--text-muted);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .4px;
  line-height: normal;
  text-decoration: none;
  transition: color .15s ease, background-color .15s ease;
}
.lang-toggle a:hover { color: var(--navy); }
.lang-toggle a[aria-current="true"] { background: var(--navy); color: #fff; }
.lang-toggle a:focus-visible { outline-offset: -3px; }

.nav-cta { flex: none; }

.menu-btn {
  display: none;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line-22);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  cursor: pointer;
}
.menu-icon,
.menu-icon::before,
.menu-icon::after {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
  transition: transform .15s ease, background-color .15s ease;
}
.menu-icon { position: relative; }
.menu-icon::before,
.menu-icon::after { content: ''; position: absolute; left: 0; }
.menu-icon::before { top: -6px; }
.menu-icon::after { top: 6px; }
.menu-btn[aria-expanded="true"] .menu-icon { background: transparent; }
.menu-btn[aria-expanded="true"] .menu-icon::before { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-icon::after { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Hero ---------- */

/* The handoff markup says 1.05fr .95fr, but the approved reference renders
   530 / 570 px (its image placeholder widens the second column): a 3:2
   photo frame at 380 px height. These proportions reproduce that render. */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 530fr) minmax(0, 570fr);
  gap: 52px;
  align-items: center;
  padding-top: 62px;
  padding-bottom: 54px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 43px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -1px;
  text-wrap: pretty;
}
.hero h1 .accent { color: var(--blue-light); }

.lede {
  max-width: 480px;
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 17.5px;
  line-height: 1.55;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.tagline { color: var(--text-muted); font-size: 13.5px; }

.hero-media {
  height: 380px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--img-fallback);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }

/* ---------- Bands and section headings ---------- */

.band { background: var(--tint); border-top: 1px solid var(--line-08); }
.band-chips { border-bottom: 1px solid var(--line-08); }
.band-navy { background: var(--navy); border-top: 0; }

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 16px;
  padding-bottom: 16px;
}
.chip {
  padding: 7px 14px;
  border: 1px solid var(--chip-line);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.section { padding-top: 60px; padding-bottom: 60px; }
.band .section { padding-top: 56px; padding-bottom: 56px; }
.band-navy .section { padding-top: 54px; padding-bottom: 54px; }

.section-title {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.5px;
}
.section-sub {
  margin-bottom: 26px;
  color: var(--text-muted);
  font-size: 15.5px;
}
.section-sub-tight { margin-bottom: 14px; }
.section-sub-loose { margin-bottom: 28px; }

/* ---------- What we do ---------- */

.activities {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.activity {
  padding: 20px 18px;
  border: 1px solid var(--line-10);
  border-top: 3px solid var(--blue);
  border-radius: 10px;
  background: var(--tint);
}
.activity-num {
  display: block;
  margin-bottom: 10px;
  color: var(--blue-light);
  font-size: 12px;
  font-weight: 700;
}
.activity h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 16.5px;
  font-weight: 700;
}
.activity p { color: var(--text-muted); font-size: 14px; line-height: 1.5; }

/* ---------- Who we serve ---------- */

.audience {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.audience-card {
  padding: 24px;
  border: 1px solid var(--line-10);
  border-radius: 12px;
  background: #fff;
}
.audience-card h3 {
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.audience-card li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 9px 0;
  border-top: 1px solid var(--line-08);
  color: var(--text-list);
  font-size: 15px;
  line-height: 1.5;
}
.audience-card li::before {
  content: '';
  flex: none;
  width: 8px;
  height: 8px;
  margin-top: 6px;
  border-radius: 2px;
  background: var(--blue-light);
}

/* ---------- Financing ---------- */

.fin-row {
  display: flex;
  gap: 24px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line-10);
}
.fin-row dt {
  flex: none;
  width: 340px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}
.fin-row dd { color: var(--text-muted); font-size: 15px; }

/* ---------- Process ---------- */

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.step-top {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}
.step-num {
  display: flex;
  flex: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
}
.step-line { flex: 1; height: 2px; background: var(--connector); }
.step-label {
  padding-right: 10px;
  color: var(--text-list);
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.4;
}

/* ---------- Value proposition ---------- */

.band-navy .section-title { margin-bottom: 26px; color: #fff; }
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.value { padding-top: 16px; border-top: 2px solid var(--blue-light); }
.value h3 {
  margin-bottom: 10px;
  color: var(--blue-pale);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.value p { color: #fff; font-size: 16.5px; line-height: 1.5; }

/* ---------- Team ---------- */

.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.member {
  overflow: hidden;
  border: 1px solid var(--line-10);
  border-radius: 12px;
  background: #fff;
}
/* 373 x 270 px at full desktop width (as designed); same framing when narrower */
.member-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 373 / 270;
  background: var(--img-fallback);
  object-fit: cover;
  object-position: 50% 30%;
}
.member-photo-top { object-position: 50% 12%; }
.member-body { padding: 18px 20px 22px; }
.member h3 { color: var(--navy); font-size: 18px; font-weight: 700; }
.member-role {
  margin: 4px 0 10px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}
.member-bio { color: var(--text-muted); font-size: 14px; line-height: 1.55; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.contact-title { margin-bottom: 10px; }
.contact-lede {
  max-width: 400px;
  margin-bottom: 18px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.55;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 15px;
  line-height: 1.5;
}
.contact-details div { display: flex; gap: 12px; }
.contact-details dt {
  flex: none;
  width: 92px;
  color: var(--text-muted);
  font-weight: 600;
}
.contact-details dd { color: var(--text-list); }
.contact-details a { color: var(--blue); text-decoration: none; }
.contact-details a:hover { color: var(--navy); text-decoration: underline; }

.contact-brand { display: flex; gap: 10px; align-items: center; }
.contact-brand img { width: auto; height: 24px; }
.contact-brand span { color: var(--navy); font-size: 14px; font-weight: 700; }

.form-card {
  padding: 26px;
  border: 1px solid var(--line-10);
  border-radius: 12px;
  background: #fff;
}
.contact-form { display: grid; gap: 12px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field input,
.field textarea {
  display: block;
  width: 100%;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--line-18);
  border-radius: 8px;
  outline: none;
  background: #fff;
  color: var(--text);
  font-family: inherit;
  font-size: 14.5px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; }
.field input:focus,
.field textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--ring);
}
.field [aria-invalid="true"] { border-color: var(--error); }
.field [aria-invalid="true"]:focus {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(180, 35, 24, .15);
}
.field-error {
  margin-top: 6px;
  color: var(--error);
  font-size: 13px;
  line-height: 1.4;
}
.field-error:empty { display: none; }

.form-status {
  margin-bottom: 12px;
  color: var(--error);
  font-size: 14px;
  line-height: 1.45;
}
.form-status:empty { margin: 0; }

.form-note {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}
.form-note a { color: var(--text-muted); }
.form-note a:hover { color: var(--navy); }

/* Spam trap: out of sight for people, visible to simple bots */
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success { padding: 10px 0 6px; }
.form-success:focus { outline: none; }
.success-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--tint);
  border: 1px solid var(--chip-line);
}
.success-icon::after {
  content: '';
  width: 14px;
  height: 8px;
  margin-top: -4px;
  border-bottom: 2.5px solid var(--blue);
  border-left: 2.5px solid var(--blue);
  transform: rotate(-45deg);
}
.form-success h3 {
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 20px;
  font-weight: 700;
}
.form-success p { color: var(--text-muted); font-size: 15.5px; line-height: 1.55; }

/* ---------- Footer ---------- */

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--pad-x);
  border-top: 1px solid var(--line-10);
  background: #fff;
}
.footer-brand { display: flex; gap: 8px; align-items: center; }
.footer-brand img { width: auto; height: 20px; }
.footer-brand span { color: var(--navy); font-size: 13px; font-weight: 700; }

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 20px;
  align-items: center;
  color: var(--text-muted);
  font-size: 12.5px;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 6px 16px; }
.footer-links a { color: var(--text-muted); text-decoration: none; }
.footer-links a:hover { color: var(--navy); text-decoration: underline; }

/* ---------- Legal pages, 404, form result page ---------- */

.nav-simple { justify-content: space-between; }
.legal-langs { display: flex; gap: 16px; font-size: 14px; font-weight: 600; }
.legal-langs a { color: var(--text-nav); text-decoration: none; }
.legal-langs a:hover { color: var(--navy); }

.legal {
  max-width: calc(760px + 2 * var(--pad-x));
  padding-top: 52px;
  padding-bottom: 72px;
}
.legal h1 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.5px;
}
.legal-intro { color: var(--text-muted); font-size: 15.5px; }
.legal-part {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--line-10);
}
.legal h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -.3px;
}
.legal h3 {
  margin: 26px 0 8px;
  color: var(--navy);
  font-size: 17px;
  font-weight: 700;
}
.legal p,
.legal li {
  color: var(--text-list);
  font-size: 16px;
  line-height: 1.6;
}
.legal p + p { margin-top: 10px; }
.legal ul { margin: 8px 0 10px; padding-left: 22px; list-style: disc; }
.legal .updated { color: var(--text-muted); font-size: 14.5px; }

.tbd {
  padding: 0 4px;
  border: 1px dashed #C98A00;
  border-radius: 4px;
  background: #FFF3CD;
  color: #6B4500;
  font-weight: 600;
}

.status-page { padding-top: 72px; padding-bottom: 88px; }
.status-page h1 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -.5px;
}
.status-page p { max-width: 560px; color: var(--text-muted); font-size: 16px; line-height: 1.55; }
.status-page p + p { margin-top: 22px; }
.status-page .status-alt { margin-top: 48px; padding-top: 28px; border-top: 1px solid var(--line-10); }
.status-page h2 { margin-bottom: 8px; color: var(--navy); font-size: 22px; font-weight: 700; }
.status-page ul { margin-top: 10px; padding-left: 20px; list-style: disc; color: var(--text-list); line-height: 1.6; }

/* ---------- Responsive ---------- */

/* The Ukrainian nav labels need about 1050px; below that the links move into a menu. */
@media (max-width: 1080px) {
  :root { --header-h: 71px; }
  .menu-btn { display: inline-flex; }
  .nav-cta { display: none; }
  .lang-toggle { margin-left: auto; }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    margin: 0;
    padding: 6px var(--pad-x) 22px;
    border-bottom: 1px solid var(--line-12);
    background: #fff;
    font-size: 16px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-08); }
  .nav-links .menu-cta {
    display: flex;
    margin-top: 18px;
    padding: 13px 22px;
    border-bottom: 0;
    color: #fff;
    font-size: 15px;
  }
  .nav-links .menu-cta:hover { color: #fff; }
}

/* Without JavaScript the menu button cannot work: show the links as a row. */
@media (max-width: 1080px) and (scripting: none) {
  .nav { flex-wrap: wrap; }
  .menu-btn { display: none; }
  .nav-links {
    position: static;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    order: 5;
    width: 100%;
    gap: 6px 18px;
    padding: 0;
    border: 0;
    font-size: 14px;
  }
  .nav-links a { padding: 0; border: 0; }
  .nav-links .menu-cta { display: none; }
}

@media (max-width: 1024px) {
  .hero { gap: 40px; }
  .hero h1 { font-size: 36px; }
  .activities { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); row-gap: 28px; }
  .team { grid-template-columns: repeat(2, 1fr); }
  .fin-row dt { width: 280px; }
}

@media (max-width: 768px) {
  :root { --pad-x: 20px; --header-h: 63px; }

  .nav { gap: 12px; padding-top: 11px; padding-bottom: 11px; }
  .wordmark { font-size: 18px; }
  .brand { gap: 8px; }
  .brand img { height: 26px; }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .hero h1 { font-size: 32px; letter-spacing: -.6px; }
  .lede { font-size: 16.5px; }
  .hero-media { height: 260px; }

  .section { padding-top: 44px; padding-bottom: 44px; }
  .band .section,
  .band-navy .section { padding-top: 42px; padding-bottom: 42px; }
  .section-title { font-size: 26px; }

  .activities,
  .audience,
  .values { grid-template-columns: 1fr; }
  .values { gap: 24px; }
  .audience-card { padding: 20px; }

  .fin-row { flex-direction: column; gap: 4px; }
  .fin-row dt { width: auto; }

  /* Process as a vertical timeline */
  .steps { grid-template-columns: 1fr; gap: 0; }
  .step {
    display: grid;
    grid-template-columns: 34px 1fr;
    column-gap: 14px;
  }
  .step-top {
    flex-direction: column;
    gap: 0;
    align-self: stretch;
    margin-bottom: 0;
  }
  .step-line { flex: 1; width: 2px; height: auto; min-height: 16px; }
  .step:last-child .step-line { display: none; }
  .step-label { padding: 7px 0 22px; }
  .step:last-child .step-label { padding-bottom: 0; }

  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-card { padding: 20px; }
  .form-row { grid-template-columns: 1fr; }
  .field input,
  .field textarea { font-size: 16px; } /* 16px stops iOS from zooming into fields */

  .site-footer { flex-direction: column; align-items: flex-start; }

  .legal { padding-top: 36px; padding-bottom: 56px; }
  .legal h1, .status-page h1 { font-size: 26px; }
  .legal h2 { font-size: 21px; }
  .status-page { padding-top: 48px; padding-bottom: 64px; }
}

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

@media (max-width: 380px) {
  .wordmark { font-size: 16.5px; }
  .brand img { height: 24px; }
  .lang-toggle a { padding: 6px 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

@media print {
  .site-header { position: static; }
  .menu-btn, .lang-toggle, .nav-cta, .skip-link { display: none; }
  .band, .band-navy { background: none; }
  .band-navy .section-title, .value p { color: var(--navy); }
}
