/* ==========================================================================
   Work The Globe — Design System
   Swiss Professional: strong typography, clean grid, restrained palette.
   Author: project build. Single stylesheet, no build step required.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Colour roles */
  --c-primary: #D52B1E;
  --c-primary-hover: #B82318;
  --c-navy: #16324F;
  --c-navy-soft: #234a70;
  --c-blue: #3D7EA6;
  --c-blue-hover: #295F80;
  --c-ice: #EAF3F8;
  --c-bg: #F8FAFB;
  --c-white: #FFFFFF;
  --c-border: #DDE3E8;
  --c-border-strong: #C4CED6;
  --c-text: #263238;
  --c-muted: #667681;
  --c-success: #2E7D5B;
  --c-success-bg: #EAF5F0;
  --c-error: #B3261E;
  --c-error-bg: #FDF0EF;

  /* Typography */
  --f-head: "Manrope", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --f-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --t-h1: clamp(2.1rem, 1.35rem + 3.1vw, 3.75rem);      /* 34 → 60px */
  --t-h2: clamp(1.6rem, 1.2rem + 1.7vw, 2.5rem);        /* 26 → 40px */
  --t-h3: clamp(1.25rem, 1.1rem + 0.7vw, 1.6rem);       /* 20 → 26px */
  --t-h4: clamp(1.05rem, 1rem + 0.3vw, 1.2rem);         /* 17 → 19px */
  --t-lead: clamp(1.05rem, 1rem + 0.45vw, 1.25rem);     /* 17 → 20px */
  --t-body: 1.0625rem;                                   /* 17px */
  --t-small: 0.875rem;                                   /* 14px */
  --t-label: 0.9375rem;                                  /* 15px */
  --t-eyebrow: 0.78125rem;                               /* 12.5px */

  /* Spacing scale: 4 8 12 16 24 32 48 64 80 96 128 */
  --s-1: 4px;  --s-2: 8px;  --s-3: 12px; --s-4: 16px;
  --s-5: 24px; --s-6: 32px; --s-7: 48px; --s-8: 64px;
  --s-9: 80px; --s-10: 96px; --s-11: 128px;

  /* Layout */
  --container: 1240px;
  --gutter: 24px;
  --measure: 68ch;

  /* Radii + elevation (restrained) */
  --r-sm: 3px;
  --r-md: 5px;
  --r-lg: 8px;
  --shadow-sm: 0 1px 2px rgba(22, 50, 79, .06);
  --shadow-md: 0 6px 18px rgba(22, 50, 79, .08);
  --shadow-header: 0 1px 0 var(--c-border), 0 6px 16px rgba(22, 50, 79, .06);

  --header-h: 72px;
  --focus: 0 0 0 3px rgba(61, 126, 166, .45);
}

/* --------------------------------------------------------------------------
   2. Base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-text);
  font-family: var(--f-body);
  font-size: var(--t-body);
  line-height: 1.65;
  font-feature-settings: "kern" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5 {
  font-family: var(--f-head);
  color: var(--c-navy);
  margin: 0 0 var(--s-4);
  line-height: 1.16;
  letter-spacing: -0.015em;
  font-weight: 700;
  overflow-wrap: break-word;
  hyphens: auto;
}
h1 { font-size: var(--t-h1); letter-spacing: -0.025em; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); line-height: 1.25; }
h4 { font-size: var(--t-h4); line-height: 1.35; letter-spacing: -0.005em; }

p { margin: 0 0 var(--s-4); max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

a { color: var(--c-blue); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--c-blue-hover); }

img { max-width: 100%; height: auto; display: block; }
ul, ol { margin: 0 0 var(--s-4); padding-left: 1.25em; max-width: var(--measure); }
li { margin-bottom: var(--s-2); }
li:last-child { margin-bottom: 0; }
strong { font-weight: 650; color: var(--c-navy); }
hr { border: 0; border-top: 1px solid var(--c-border); margin: var(--s-7) 0; }

:focus-visible {
  outline: 2px solid var(--c-blue);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute; left: var(--s-4); top: -100px; z-index: 200;
  background: var(--c-navy); color: #fff; padding: 10px 16px;
  border-radius: var(--r-sm); text-decoration: none; font-size: var(--t-small);
  transition: top .15s ease;
}
.skip-link:focus { top: var(--s-3); color: #fff; }

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.container--narrow { max-width: 860px; }

.section { padding: var(--s-9) 0; }
.section--tight { padding: var(--s-8) 0; }
.section--alt { background: var(--c-white); border-top: 1px solid var(--c-border); border-bottom: 1px solid var(--c-border); }
.section--ice { background: var(--c-ice); }
.section--navy { background: var(--c-navy); color: rgba(255,255,255,.86); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: #fff; }

.grid { display: grid; gap: var(--s-5); align-items: stretch; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid > * { height: 100%; }

.stack > * + * { margin-top: var(--s-4); }

/* Section head */
.section-head { max-width: 760px; margin-bottom: var(--s-7); }
.section-head p { color: var(--c-muted); font-size: var(--t-lead); margin-bottom: 0; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head--center p { margin-left: auto; margin-right: auto; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--c-navy-soft);
  background: var(--c-ice);
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 0 var(--s-4);
}
.section-head--center .eyebrow { margin-left: auto; margin-right: auto; }
.section--navy .eyebrow, .section--teal .eyebrow {
  color: #fff; background: rgba(255,255,255,.14);
}

/* --------------------------------------------------------------------------
   4. Buttons + links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: var(--s-2);
  min-height: 52px;
  padding: 14px 26px;
  font-family: var(--f-body);
  font-size: var(--t-label);
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--r-md);
  cursor: pointer;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .12s ease;
}
.btn:active { transform: translateY(1px); }
.btn svg { flex: 0 0 auto; }

.btn--primary { background: var(--c-primary); color: #fff; }
.btn--primary:hover { background: var(--c-primary-hover); color: #fff; }

.btn--secondary { background: var(--c-white); color: var(--c-navy); border-color: var(--c-border-strong); }
.btn--secondary:hover { background: var(--c-ice); border-color: var(--c-blue); color: var(--c-navy); }

.btn--outline-teal { background: var(--c-white); color: var(--c-blue); border-color: var(--c-blue); }
.btn--outline-teal:hover { background: var(--c-blue); color: #fff; }

.btn--ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost:hover { background: rgba(255,255,255,.12); border-color: #fff; color: #fff; }

.btn--block { width: 100%; }
.btn[disabled], .btn[aria-disabled="true"] {
  background: var(--c-border); color: var(--c-muted);
  border-color: var(--c-border); cursor: not-allowed; transform: none;
}

.btn-row { display: flex; flex-wrap: wrap; gap: var(--s-3); align-items: center; }

.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 600; font-size: var(--t-label);
  color: var(--c-blue); text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 1px;
}
.link-arrow:hover { color: var(--c-blue-hover); border-bottom-color: currentColor; }
.link-arrow svg { transition: transform .15s ease; }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   5. Header + navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
}
.site-header.is-scrolled { box-shadow: var(--shadow-header); }

.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--s-5);
  min-height: var(--header-h);
}

/* Text wordmark — temporary technical placeholder, not an official logo */
.wordmark {
  display: inline-flex; align-items: baseline; gap: 7px;
  text-decoration: none; color: var(--c-navy);
  font-family: var(--f-head); font-weight: 800;
  font-size: 1.125rem; letter-spacing: -0.02em;
  white-space: nowrap;
}
.wordmark:hover { color: var(--c-navy); }
.wordmark__mark {
  width: 10px; height: 10px; background: var(--c-primary);
  display: inline-block; flex: 0 0 auto; align-self: center;
}
.wordmark__light { font-weight: 500; color: var(--c-navy-soft); }

.nav { display: flex; align-items: center; gap: var(--s-5); }
.nav__list { display: flex; align-items: center; gap: var(--s-5); list-style: none; margin: 0; padding: 0; max-width: none; }
.nav__list li { margin: 0; }
.nav__link {
  position: relative;
  display: inline-block;
  padding: 8px 0;
  font-size: var(--t-label);
  font-weight: 500;
  color: var(--c-navy);
  text-decoration: none;
}
.nav__link:hover { color: var(--c-blue-hover); }
.nav__link[aria-current="page"] { font-weight: 650; }
.nav__link[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--c-primary);
}

.nav__toggle {
  display: none;
  align-items: center; gap: 8px;
  min-height: 44px; padding: 8px 12px;
  background: var(--c-white); color: var(--c-navy);
  border: 1px solid var(--c-border-strong); border-radius: var(--r-sm);
  font-family: var(--f-body); font-size: var(--t-small); font-weight: 600;
  cursor: pointer;
}
.nav__toggle:hover { background: var(--c-ice); }

/* --------------------------------------------------------------------------
   6. Hero
   -------------------------------------------------------------------------- */
.hero { background: var(--c-bg); padding: var(--s-9) 0 var(--s-8); }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: var(--s-8);
  align-items: center;
}
.hero h1 { margin-bottom: var(--s-5); max-width: 15ch; }
.hero__lead {
  font-size: var(--t-lead);
  color: var(--c-text);
  max-width: 54ch;
  margin-bottom: var(--s-6);
}
.hero__note {
  margin-top: var(--s-5);
  font-size: var(--t-small);
  color: var(--c-muted);
  max-width: 46ch;
}
.hero__media {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-ice);
  box-shadow: var(--shadow-md);
}
.hero__media img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

.hero-facts {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--s-5);
  margin-top: var(--s-8);
  padding-top: var(--s-6);
  border-top: 1px solid var(--c-border);
}
.hero-facts__item dt {
  font-family: var(--f-head); font-size: 1.75rem; font-weight: 800;
  color: var(--c-navy); line-height: 1.1; letter-spacing: -0.02em;
}
.hero-facts__item dd {
  margin: 6px 0 0; font-size: var(--t-small); color: var(--c-muted);
}

/* --------------------------------------------------------------------------
   7. Cards
   -------------------------------------------------------------------------- */
.card {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-6);
}
.card h3, .card h4 { margin-bottom: var(--s-3); }
.card p { color: var(--c-muted); margin-bottom: var(--s-4); max-width: none; }
.card p:last-child { margin-bottom: 0; }
.card__foot { margin-top: auto; padding-top: var(--s-4); }

.card--ice { background: var(--c-ice); border-color: #D6E6F0; }
.card--plain { background: transparent; border: 0; padding: 0; }

.icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  margin-bottom: var(--s-5);
  border-radius: var(--r-sm);
  background: var(--c-ice);
  color: var(--c-navy);
  flex: 0 0 auto;
}
.icon-badge svg { width: 22px; height: 22px; }

/* Berufsfelder grid card: centered icon/title/text + full-width outlined button */
.sector-grid-card {
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-5);
}
.sector-grid-card .icon-badge { background: var(--c-ice); margin-bottom: var(--s-5); }
.sector-grid-card h3 { margin-bottom: var(--s-3); }
.sector-grid-card p { color: var(--c-muted); margin-bottom: var(--s-5); max-width: none; }
.sector-grid-card__foot { margin-top: auto; width: 100%; }

/* Distinct, brighter accent colours for each Berufsfelder icon &ndash;
   more saturated pastel chips, closer to the approved reference style */
.icon-badge--amber { background: rgba(217, 119, 6, .22); color: #B45309; }
.icon-badge--brown { background: rgba(120, 84, 45, .24); color: #6B4423; }
.icon-badge--blue { background: rgba(61, 126, 166, .24); color: var(--c-blue); }
.icon-badge--indigo { background: rgba(79, 70, 229, .20); color: #4F46E5; }
.icon-badge--rose { background: rgba(225, 29, 72, .20); color: #E11D48; }
.icon-badge--cyan { background: rgba(8, 145, 178, .20); color: #0891B2; }
.icon-badge--slate { background: rgba(71, 85, 105, .22); color: #475569; }
.icon-badge--green { background: rgba(5, 150, 105, .20); color: #059669; }

.sector-grid-card .icon-badge {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
}
.sector-grid-card .icon-badge svg { width: 26px; height: 26px; stroke-width: 2.1; }

/* Sector cards (link cards) */
.sector-card {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5) var(--s-5) var(--s-5);
  text-decoration: none;
  color: inherit;
  transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}
.sector-card:hover {
  border-left-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  color: inherit;
}
.sector-card:hover .sector-card__title { color: var(--c-blue-hover); }
.sector-card__icon { color: var(--c-blue); margin-bottom: var(--s-4); display: block; }
.sector-card__icon svg { width: 26px; height: 26px; }
.sector-card__title {
  font-family: var(--f-head); font-weight: 700; font-size: 1.0625rem;
  color: var(--c-navy); line-height: 1.3; margin: 0 0 var(--s-2);
}
.sector-card__text { font-size: var(--t-small); color: var(--c-muted); margin: 0; }
.sector-card__more {
  margin-top: auto; padding-top: var(--s-4); font-size: var(--t-small); font-weight: 600;
  color: var(--c-blue); display: inline-flex; align-items: center; gap: 6px;
}

/* Region cards */
.region-card {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5);
}
.region-card h3 { font-size: 1.125rem; margin-bottom: var(--s-2); }
.region-card p { font-size: var(--t-small); color: var(--c-muted); margin: 0; max-width: none; }
.region-card__tag {
  display: inline-block; margin-bottom: var(--s-3);
  font-size: 0.75rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-navy-soft);
}

/* --------------------------------------------------------------------------
   8. Editorial split (text + photo)
   -------------------------------------------------------------------------- */
.split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-8);
  align-items: center;
}
.split--reverse .split__media { order: 2; }
.split__media {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-ice);
}
.split__media img { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; }
.split__body h2 { margin-bottom: var(--s-5); }
.split__body p { color: var(--c-text); }

.figure-caption {
  margin-top: var(--s-3);
  font-size: var(--t-small);
  color: var(--c-muted);
}

/* Sector detail blocks (jobs page) */
.sector-detail { padding: var(--s-8) 0; border-top: 1px solid var(--c-border); }
.sector-detail:first-of-type { border-top: 0; padding-top: var(--s-6); }
.sector-detail__grid {
  display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--s-7); align-items: start;
}
.sector-detail--reverse .sector-detail__media { order: 2; }
.sector-detail__media { border-radius: var(--r-md); overflow: hidden; background: var(--c-ice); }
.sector-detail__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.sector-detail__index {
  font-family: var(--f-head); font-size: var(--t-small); font-weight: 700;
  letter-spacing: .1em; color: var(--c-primary); display: block; margin-bottom: var(--s-2);
}
.sector-detail h2 { font-size: var(--t-h3); margin-bottom: var(--s-4); }
.sector-detail__cta { margin-top: var(--s-5); }

/* --------------------------------------------------------------------------
   9. Lists: features, checks, process
   -------------------------------------------------------------------------- */
.feature-list { list-style: none; padding: 0; margin: 0; max-width: var(--measure); }
.feature-list > li {
  position: relative;
  padding-left: 34px;
  margin-bottom: var(--s-4);
}
.feature-list > li:last-child { margin-bottom: 0; }
.feature-list svg {
  position: absolute; left: 0; top: 3px;
  width: 20px; height: 20px; color: var(--c-blue);
}
.feature-list strong { display: block; color: var(--c-navy); }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list > li { position: relative; padding-left: 30px; margin-bottom: var(--s-3); font-size: var(--t-body); }
.check-list svg { position: absolute; left: 0; top: 4px; width: 18px; height: 18px; }
.check-list--yes svg { color: var(--c-success); }
.check-list--no svg { color: var(--c-muted); }

.process { list-style: none; padding: 0; margin: 0; counter-reset: step; display: grid; gap: var(--s-5); align-items: stretch; }
.process > li { height: 100%; }
.process--cols { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.process > li {
  counter-increment: step;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  margin: 0;
}
.process > li::before {
  content: counter(step, decimal-leading-zero);
  display: block;
  font-family: var(--f-head); font-size: var(--t-small); font-weight: 700;
  letter-spacing: .1em; color: var(--c-primary);
  margin-bottom: var(--s-3);
}
.process h3 { font-size: var(--t-h4); margin-bottom: var(--s-2); }
.process p { font-size: var(--t-small); color: var(--c-muted); margin: 0; max-width: none; }

/* Two-column transparency panel */
.panel-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-5); }
.panel {
  background: var(--c-white); border: 1px solid var(--c-border);
  border-radius: var(--r-md); padding: var(--s-6);
}
.panel--yes { border-top: 3px solid var(--c-success); }
.panel--no { border-top: 3px solid var(--c-border-strong); }
.panel h3 { font-size: var(--t-h4); margin-bottom: var(--s-4); }

/* Note / disclosure box */
.note {
  background: var(--c-ice);
  border-left: 3px solid var(--c-blue);
  border-radius: 0 var(--r-sm) var(--r-sm) 0;
  padding: var(--s-5);
  font-size: var(--t-small);
  color: var(--c-text);
}
.note p { max-width: none; }
.note strong { color: var(--c-navy); }

/* Definition-style info rows */
.info-rows { border-top: 1px solid var(--c-border); margin: 0; }
.info-rows__row {
  display: grid; grid-template-columns: minmax(0, 260px) minmax(0, 1fr);
  gap: var(--s-5);
  padding: var(--s-5) 0;
  border-bottom: 1px solid var(--c-border);
}
.info-rows__row dt { font-family: var(--f-head); font-weight: 700; color: var(--c-navy); }
.info-rows__row dd { margin: 0; color: var(--c-text); }
.info-rows__row dd p:last-child { margin-bottom: 0; }

/* --------------------------------------------------------------------------
   10. Accordion (FAQ)
   -------------------------------------------------------------------------- */
.accordion { border-top: 1px solid var(--c-border); }
.accordion__item { border-bottom: 1px solid var(--c-border); }
.accordion__trigger {
  display: flex; align-items: flex-start; justify-content: space-between; gap: var(--s-4);
  width: 100%;
  padding: var(--s-5) 0;
  background: none; border: 0;
  font-family: var(--f-head); font-size: 1.0625rem; font-weight: 700; line-height: 1.4;
  color: var(--c-navy); text-align: left;
  cursor: pointer;
}
.accordion__trigger:hover { color: var(--c-blue-hover); }
.accordion__icon {
  flex: 0 0 auto; width: 22px; height: 22px; margin-top: 2px;
  color: var(--c-primary);
  transition: transform .18s ease;
}
.accordion__trigger[aria-expanded="true"] .accordion__icon { transform: rotate(45deg); }
.accordion__panel { padding: 0 0 var(--s-5); max-width: var(--measure); }
.accordion__panel[hidden] { display: none; }
.accordion__panel p { color: var(--c-text); }

/* --------------------------------------------------------------------------
   11. Forms
   -------------------------------------------------------------------------- */
.form-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-7);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-5); }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }

.field__label {
  font-size: var(--t-label); font-weight: 600; color: var(--c-navy);
  margin-bottom: 6px;
}
.field__req { color: var(--c-primary); }
.field__hint { font-size: var(--t-small); color: var(--c-muted); margin-bottom: 8px; }

.input, .textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  font-family: var(--f-body); font-size: var(--t-body); color: var(--c-text);
  background: var(--c-white);
  border: 1px solid var(--c-border-strong);
  border-radius: var(--r-sm);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.textarea { min-height: 148px; resize: vertical; line-height: 1.6; }
.input::placeholder, .textarea::placeholder { color: #93A1AB; }
.input:hover, .textarea:hover { border-color: var(--c-blue); }
.input:focus, .textarea:focus { outline: none; border-color: var(--c-blue); box-shadow: var(--focus); }
.input[aria-invalid="true"], .textarea[aria-invalid="true"] { border-color: var(--c-error); background: var(--c-error-bg); }
.input:disabled, .textarea:disabled { background: #F1F4F6; color: var(--c-muted); cursor: not-allowed; }

.field__error {
  display: none;
  margin-top: 6px;
  font-size: var(--t-small); font-weight: 500; color: var(--c-error);
}
.field__error.is-visible { display: block; }

.form-foot { margin-top: var(--s-6); display: grid; gap: var(--s-4); }
.form-legal { font-size: var(--t-small); color: var(--c-muted); margin: 0; max-width: 62ch; }

.form-status {
  display: none;
  margin-bottom: var(--s-5);
  padding: var(--s-5);
  border-radius: var(--r-sm);
  font-size: var(--t-body);
}
.form-status.is-visible { display: block; }
.form-status--success {
  background: var(--c-success-bg);
  border-left: 3px solid var(--c-success);
  color: #1F5C42;
}
.form-status--success strong { color: var(--c-success); display: block; margin-bottom: 4px; }
.form-status--error {
  background: var(--c-error-bg);
  border-left: 3px solid var(--c-error);
  color: #8C1E17;
}

/* Success modal */
.success-modal {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 0;
  overflow: visible;
  color: var(--c-text);
  background: transparent;
  border: 0;
}
.success-modal::backdrop {
  background: rgba(22, 50, 79, .66);
  backdrop-filter: blur(3px);
}
.success-modal__card {
  position: relative;
  padding: var(--s-7);
  overflow: auto;
  text-align: center;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  box-shadow: 0 24px 64px rgba(22, 50, 79, .24);
}
.success-modal__card h2 { font-size: var(--t-h3); }
.success-modal__card p { margin-right: auto; margin-left: auto; }
.success-modal__card .btn { margin-top: var(--s-3); min-width: 150px; }
.success-modal__icon {
  display: grid;
  width: 64px;
  height: 64px;
  margin: 0 auto var(--s-5);
  place-items: center;
  color: var(--c-success);
  background: var(--c-success-bg);
  border-radius: 50%;
}
.success-modal__icon svg { width: 34px; height: 34px; }
.success-modal__close {
  position: absolute;
  top: var(--s-3);
  right: var(--s-3);
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  place-items: center;
  color: var(--c-muted);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}
.success-modal__close:hover { color: var(--c-navy); background: var(--c-ice); }
.success-modal__close svg { width: 22px; height: 22px; }

@media (max-width: 520px) {
  .success-modal__card { padding: var(--s-6) var(--s-5); }
}

/* Contact panel (address / phone) */
.contact-panel { display: grid; gap: var(--s-5); }
.contact-item { display: flex; gap: var(--s-4); align-items: flex-start; }
.contact-item svg { width: 22px; height: 22px; color: var(--c-blue); flex: 0 0 auto; margin-top: 3px; }
.contact-item__label {
  font-size: var(--t-small); font-weight: 600; letter-spacing: .06em; text-transform: uppercase;
  color: var(--c-muted); margin: 0 0 2px;
}
.contact-item__value { margin: 0; font-size: var(--t-body); color: var(--c-navy); font-weight: 500; }
.contact-item__value a { color: var(--c-navy); text-decoration: none; }
.contact-item__value a:hover { color: var(--c-blue-hover); text-decoration: underline; }

/* --------------------------------------------------------------------------
   12. CTA band
   -------------------------------------------------------------------------- */
.cta-band { background: var(--c-navy); color: rgba(255,255,255,.86); padding: var(--s-8) 0; }
.cta-band__grid {
  display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: var(--s-7); align-items: center;
}
.cta-band h2 { color: #fff; margin-bottom: var(--s-4); }
.cta-band p { color: rgba(255,255,255,.82); margin-bottom: 0; }
.cta-band__actions { display: flex; flex-direction: column; gap: var(--s-3); align-items: stretch; max-width: 280px; }
.cta-band__actions .btn { width: 100%; }
.cta-band__phone { font-size: var(--t-small); color: rgba(255,255,255,.7); }
.cta-band__phone a { color: #fff; }

/* --------------------------------------------------------------------------
   13. Breadcrumb + page header
   -------------------------------------------------------------------------- */
.page-head {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border);
  padding: var(--s-6) 0 var(--s-8);
}
.page-head h1 { max-width: 22ch; margin-bottom: var(--s-4); }
.page-head__lead { font-size: var(--t-lead); color: var(--c-muted); max-width: 62ch; margin: 0; }

.breadcrumb { margin-bottom: var(--s-6); }
.breadcrumb ol {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  list-style: none; margin: 0; padding: 0; max-width: none;
  font-size: var(--t-small); color: var(--c-muted);
}
.breadcrumb li { margin: 0; display: flex; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--c-muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--c-blue-hover); text-decoration: underline; }
.breadcrumb [aria-current="page"] { color: var(--c-navy); font-weight: 500; }
.breadcrumb__sep { color: var(--c-border-strong); }

/* --------------------------------------------------------------------------
   14. Legal / prose pages
   -------------------------------------------------------------------------- */
.prose { max-width: 76ch; }
.prose h2 {
  font-size: var(--t-h3);
  margin-top: var(--s-8);
  padding-top: var(--s-5);
  border-top: 1px solid var(--c-border);
}
.prose > h2:first-child { margin-top: 0; padding-top: 0; border-top: 0; }
.prose h3 { font-size: var(--t-h4); margin-top: var(--s-6); }
.prose ul, .prose ol { max-width: none; }
.prose dl { margin: 0 0 var(--s-4); }
.prose dt { font-weight: 650; color: var(--c-navy); margin-top: var(--s-3); }
.prose dd { margin: 0 0 var(--s-2); }
.prose__meta { font-size: var(--t-small); color: var(--c-muted); }

.address-block {
  font-style: normal;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-5);
  line-height: 1.8;
}
.address-block strong { display: block; }

/* --------------------------------------------------------------------------
   15. Footer
   -------------------------------------------------------------------------- */
.site-footer { background: var(--c-navy); color: rgba(255,255,255,.78); padding: var(--s-8) 0 var(--s-6); }
.site-footer h2, .site-footer h3 { color: #fff; }
.site-footer a { color: rgba(255,255,255,.82); text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }

.footer__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr) minmax(0, 1fr) minmax(0, 1.2fr);
  gap: var(--s-7);
  padding-bottom: var(--s-7);
  border-bottom: 1px solid rgba(255,255,255,.16);
}
.footer__brand .wordmark { color: #fff; margin-bottom: var(--s-4); }
.footer__brand .wordmark__light { color: rgba(255,255,255,.7); }
.footer__about { font-size: var(--t-small); color: rgba(255,255,255,.72); max-width: 40ch; }
.footer__title {
  font-family: var(--f-body); font-size: var(--t-small); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: #fff;
  margin: 0 0 var(--s-4);
}
.footer__list { list-style: none; margin: 0; padding: 0; font-size: var(--t-small); max-width: none; }
.footer__list li { margin-bottom: 10px; }
.footer__legal-block { font-style: normal; font-size: var(--t-small); line-height: 1.8; color: rgba(255,255,255,.72); }
.footer__legal-block strong { color: #fff; font-weight: 600; }

.footer__bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between;
  gap: var(--s-4);
  padding-top: var(--s-5);
  font-size: var(--t-small);
  color: rgba(255,255,255,.62);
}
.footer__bottom-links { display: flex; flex-wrap: wrap; gap: var(--s-5); list-style: none; margin: 0; padding: 0; }
.footer__bottom-links li { margin: 0; }
.footer__disclaimer {
  margin-top: var(--s-5);
  font-size: 0.8125rem;
  line-height: 1.6;
  color: rgba(255,255,255,.55);
  max-width: 90ch;
}

/* --------------------------------------------------------------------------
   16. Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1080px) {
  .footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s-6); }
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process--cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero__grid { gap: var(--s-6); }
}

@media (max-width: 1120px) {
  /* Mobile navigation */
  .nav__toggle { display: inline-flex; }
  .nav {
    position: absolute; top: 100%; left: 0; right: 0;
    display: none;
    flex-direction: column; align-items: stretch; gap: 0;
    padding: var(--s-4) var(--gutter) var(--s-6);
    background: var(--c-white);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .nav.is-open { display: flex; }
  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__list li { border-bottom: 1px solid var(--c-border); }
  .nav__link { display: block; padding: var(--s-4) 0; font-size: 1.0625rem; }
  .nav__link[aria-current="page"]::after { display: none; }
  .nav__link[aria-current="page"] { color: var(--c-primary); }
  .nav .btn { margin-top: var(--s-5); width: 100%; }
  .site-header__inner { position: relative; }
}

@media (max-width: 960px) {
  :root { --header-h: 64px; }


  .hero__grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: 20ch; }
  .hero__media { order: -1; }
  .hero__media img { aspect-ratio: 16 / 10; }

  .split, .sector-detail__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .split--reverse .split__media,
  .sector-detail--reverse .sector-detail__media { order: 0; }
  .split__media img { aspect-ratio: 16 / 10; }
  .sector-detail__media img { aspect-ratio: 16 / 10; }

  .cta-band__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .info-rows__row { grid-template-columns: 1fr; gap: var(--s-2); }
  .panel-duo { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .wordmark__logo { height: 42px; }
  .section { padding: var(--s-8) 0; }
  .section--tight { padding: var(--s-7) 0; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .process--cols { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-card { padding: var(--s-5); }
  .hero { padding: var(--s-7) 0 var(--s-7); }
  .hero-facts { grid-template-columns: 1fr; gap: var(--s-4); margin-top: var(--s-6); }
  .hero-facts__item { display: flex; align-items: baseline; gap: var(--s-4); }
  .hero-facts__item dt { font-size: 1.375rem; min-width: 4.5em; }
  .hero-facts__item dd { margin-top: 0; }
  .footer__grid { grid-template-columns: 1fr; gap: var(--s-6); }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; align-items: stretch; }
  .btn-row .btn { width: 100%; }
  .cta-band__actions { align-items: stretch; width: 100%; }
  .sector-detail { padding: var(--s-7) 0; }
}

@media (max-width: 380px) {
  :root { --gutter: 16px; }
  .card { padding: var(--s-5); }
  .wordmark { font-size: 1rem; }
}

/* --------------------------------------------------------------------------
   17. Motion + print
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .sector-card:hover { transform: none; }
}

@media print {
  .site-header, .site-footer, .cta-band, .nav__toggle, .skip-link { display: none; }
  body { background: #fff; font-size: 11pt; }
  a { color: #000; }
}

/* --------------------------------------------------------------------------
   18. Contact layout (form + details side by side)
   -------------------------------------------------------------------------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--s-8);
  align-items: start;
}
@media (max-width: 960px) {
  .contact-layout { grid-template-columns: 1fr; gap: var(--s-6); }
}

/* --------------------------------------------------------------------------
   20. Teal hero (reference-style): dark teal background, dotted pattern,
   pill badge, orange accent line, checklist, 2x2 glass icon-card grid.
   -------------------------------------------------------------------------- */
.hero--teal {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c-navy) 0%, #0f4a4a 55%, #0d5555 100%);
  padding: var(--s-10) 0 var(--s-9);
  color: rgba(255,255,255,.92);
}
.hero--teal::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.10) 1.6px, transparent 1.6px);
  background-size: 22px 22px;
  opacity: .5;
  pointer-events: none;
}
.hero--teal .container { position: relative; z-index: 1; }
.hero--teal .hero__grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}
.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: var(--t-eyebrow);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: var(--s-5);
}
.hero__badge::before {
  content: ""; width: 6px; height: 6px; border-radius: 50%;
  background: var(--c-primary); flex: 0 0 auto;
}
.hero--teal h1 { color: #fff; max-width: 17ch; }
.hero__accent { color: var(--c-primary); }
.hero--teal .hero__lead { color: rgba(255,255,255,.82); }
.hero--teal .hero__note { color: rgba(255,255,255,.6); }

.hero__checklist {
  list-style: none; margin: var(--s-6) 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-3) var(--s-5);
  max-width: none;
}
.hero__checklist li {
  display: flex; align-items: center; gap: 10px;
  margin: 0; font-size: var(--t-small); color: rgba(255,255,255,.9);
}
.hero__checklist .check-circle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 50%; flex: 0 0 auto;
  background: rgba(255,255,255,.16); color: #fff;
}
.hero__checklist .check-circle svg { width: 12px; height: 12px; }

.hero__cards {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--s-4);
}
.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: var(--s-5);
  backdrop-filter: blur(2px);
}
.hero-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: rgba(255,255,255,.14);
  margin-bottom: var(--s-4);
}
.hero-card__icon svg { width: 20px; height: 20px; color: #fff; }
.hero-card__title { font-family: var(--f-head); font-weight: 700; color: #fff; margin: 0 0 4px; font-size: 1rem; }
.hero-card__text { font-size: var(--t-small); color: rgba(255,255,255,.72); margin: 0; }

/* --------------------------------------------------------------------------
   21. About / Über uns — quote panel + info rows (two-column layout)
   -------------------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: var(--s-8);
  align-items: center;
}
.quote-panel {
  background: linear-gradient(160deg, var(--c-navy) 0%, #0f4a4a 100%);
  border-radius: var(--r-lg);
  padding: var(--s-7);
  color: #fff;
}
.quote-panel__quote {
  font-family: var(--f-head); font-style: italic; font-weight: 600;
  font-size: 1.375rem; line-height: 1.4; margin: 0 0 var(--s-6);
}
.quote-panel__row {
  display: flex; align-items: flex-start; gap: 12px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-md);
  padding: var(--s-4);
  margin-bottom: var(--s-3);
  font-size: var(--t-small);
}
.quote-panel__row:last-child { margin-bottom: 0; }
.quote-panel__row svg { width: 18px; height: 18px; flex: 0 0 auto; margin-top: 1px; }

.about-item {
  display: flex; gap: var(--s-4); margin-bottom: var(--s-5);
}
.about-item:last-child { margin-bottom: 0; }
.about-item__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: var(--r-md);
  background: var(--c-ice); color: var(--c-blue); flex: 0 0 auto;
}
.about-item__icon svg { width: 20px; height: 20px; }
.about-item h4 { margin: 0 0 4px; font-size: 1.0625rem; }
.about-item p { margin: 0; color: var(--c-muted); font-size: var(--t-small); max-width: none; }

/* --------------------------------------------------------------------------
   22. Region / destination cards — banner header + tag pills + note + CTA
   -------------------------------------------------------------------------- */
.dest-card {
  display: flex; flex-direction: column;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.dest-card__banner {
  background: linear-gradient(135deg, var(--c-navy), #0f4a4a);
  padding: var(--s-5);
  display: flex; align-items: center; gap: 12px;
}
.dest-card__icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: rgba(255,255,255,.16); color: #fff; flex: 0 0 auto;
}
.dest-card__icon svg { width: 18px; height: 18px; }
.dest-card__title { color: #fff; font-family: var(--f-head); font-weight: 700; font-size: 1.0625rem; margin: 0; }
.dest-card__body { padding: var(--s-5); display: flex; flex-direction: column; flex: 1; }
.dest-card__body p { color: var(--c-muted); font-size: var(--t-small); margin-bottom: var(--s-4); max-width: none; }
.tag-pills { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: var(--s-4); }
.tag-pill {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  color: var(--c-navy-soft); background: var(--c-ice);
  border-radius: 999px; padding: 4px 11px;
}
.dest-card__disclaimer {
  font-size: 0.8125rem; font-style: italic; color: var(--c-muted);
  margin-bottom: var(--s-4);
}
.dest-card__foot { margin-top: auto; }

/* --------------------------------------------------------------------------
   23. Numbered cards ("Für wen") — faint large number + title + text
   -------------------------------------------------------------------------- */
.numbered-card {
  position: relative;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  padding: var(--s-6) var(--s-5) var(--s-5);
}
.numbered-card__num {
  font-family: var(--f-head); font-weight: 800; font-size: 2.25rem;
  color: var(--c-border-strong); line-height: 1; margin-bottom: var(--s-3);
}
.numbered-card h3 { font-size: 1.0625rem; margin-bottom: var(--s-2); }
.numbered-card p { font-size: var(--t-small); color: var(--c-muted); margin: 0; max-width: none; }

/* --------------------------------------------------------------------------
   24. Vertical timeline ("Werkweise")
   -------------------------------------------------------------------------- */
.timeline { list-style: none; margin: 0; padding: 0; max-width: 640px; margin-left: auto; margin-right: auto; }
.timeline > li {
  position: relative;
  display: grid; grid-template-columns: 44px 1fr;
  gap: var(--s-5);
  padding-bottom: var(--s-7);
}
.timeline > li:last-child { padding-bottom: 0; }
.timeline__dot {
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--c-navy); color: #fff;
  font-family: var(--f-head); font-weight: 700;
  position: relative; z-index: 1;
}
.timeline > li:not(:last-child)::before {
  content: "";
  position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 2px; background: var(--c-border);
}
.timeline__body h3 { font-size: 1.0625rem; margin: 8px 0 6px; }
.timeline__body p { color: var(--c-muted); margin: 0; max-width: none; }

/* --------------------------------------------------------------------------
   25. Teal benefit cards ("Vorteile") — reuse the glass-card visual language
   -------------------------------------------------------------------------- */
.section--teal {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--c-navy) 0%, #0f4a4a 100%);
  color: rgba(255,255,255,.9);
}
.section--teal h2, .section--teal h3 { color: #fff; }
.section--teal .section-head p { color: rgba(255,255,255,.72); }
.benefit-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-lg);
  padding: var(--s-6);
}
.benefit-card .icon-badge { background: rgba(255,255,255,.14); color: #fff; }
.benefit-card h3 { font-size: 1.0625rem; margin-bottom: var(--s-2); }
.benefit-card p { color: rgba(255,255,255,.72); margin: 0; max-width: none; }

/* --------------------------------------------------------------------------
   26. Centered CTA band variant + standalone centered CTA button
   -------------------------------------------------------------------------- */
.cta-band--center .cta-band__center { max-width: 680px; margin: 0 auto; text-align: center; }
.cta-band--center h2 { color: #fff; }
.btn-row--center { justify-content: center; margin-top: var(--s-5); }
.section-cta { text-align: center; margin-top: var(--s-7); max-width: none; }

/* --------------------------------------------------------------------------
   27. Wordmark as image logo
   -------------------------------------------------------------------------- */
.wordmark__logo { display: block; height: 52px; width: auto; }
.wordmark--footer .wordmark__logo { height: 44px; }

/* --------------------------------------------------------------------------
   28. Select fields (Berufsfeld dropdown in the contact form)
   -------------------------------------------------------------------------- */
select.input {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23667681' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 40px;
}
.u-mt-5 { margin-top: var(--s-5); }
.u-mt-6 { margin-top: var(--s-6); }
.u-mt-7 { margin-top: var(--s-7); }

.h-alt { font-size: var(--t-h3); }
.h-card { font-size: 1.0625rem; }
.h-sub { font-size: 1rem; margin-bottom: var(--s-3); }

.text-small-muted { font-size: 0.9375rem; color: var(--c-muted); }
.list-compact { font-size: 0.9375rem; color: var(--c-muted); }
.list-compact li { margin-bottom: 6px; }

.list-title {
  font-family: var(--f-body); font-size: var(--t-small); font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase; color: var(--c-navy-soft);
  margin: 0 0 var(--s-4);
}
.link-list {
  list-style: none; margin: 0; padding: 0;
  font-size: 0.9375rem;
  columns: 2; column-gap: var(--s-6);
}
.link-list li { margin-bottom: 10px; break-inside: avoid; }
.link-list a { color: var(--c-navy); text-decoration: none; border-bottom: 1px solid var(--c-border); }
.link-list a:hover { color: var(--c-blue-hover); border-bottom-color: currentColor; }

.split--top { align-items: start; }
.note--white { background: var(--c-white); }
.process--auto { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.accordion__heading { margin: 0; }
.field__hint--flush { margin: 0; }
.field__hint--tight { margin-top: 6px; margin-bottom: 0; }
.section-head--form { margin-bottom: var(--s-6); }
.spacer { height: var(--s-8); }

@media (max-width: 600px) {
  .link-list { columns: 1; }
  .spacer { height: var(--s-6); }
}

.u-mb-5 { margin-bottom: var(--s-5); }

/* Late-defined homepage components need their responsive overrides here so
   they are not overridden by the component rules above. */
@media (max-width: 960px) {
  .hero--teal .hero__grid,
  .about-grid { grid-template-columns: 1fr; }
  .hero--teal .hero__grid { gap: var(--s-7); }
}

@media (max-width: 720px) {
  .wordmark__logo { height: 42px; }
  .hero--teal { padding: var(--s-7) 0; }
  .hero--teal h1 { max-width: none; }
  .hero__checklist { grid-template-columns: 1fr; }
  .quote-panel { padding: var(--s-5); }
  .page-head h1,
  .prose h2,
  .prose h3 { overflow-wrap: anywhere; }
}

@media (max-width: 520px) {
  .hero__cards { grid-template-columns: 1fr; }
  .hero__badge { max-width: 100%; }
}
