/* ==========================================================================
   COOPEX Africa — site styles
   Values are carried over verbatim from the Claude Design prototype
   (project/Coopex Global Website.dc.html), which used inline styles.
   ========================================================================== */

:root {
  --navy: #0C2A59;
  --navy-hover: #17376B;
  --navy-deep: #071F45;
  --navy-black: #040F26;
  --navy-line: #223760;
  --ink: #0E1B33;
  --body: #46536B;
  --muted: #66738B;
  --line: #E2E5EB;
  --line-strong: #CBD0DA;
  --surface: #F7F8FA;
  --green: #0F6E3D;
  --green-light: #7BC397;
  --mint: #D6EDDE;
  --gold: #D19E22;
  --gold-dark: #8F6412;
  --gold-hover: #DFAC33;
  --link: #274A83;
  --ice: #E9EEF7;
  --slate: #A9B4C9;

  --container: 1240px;
  --gutter: 32px;
  --serif: 'Fraunces', Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* --------------------------------------------------------------- base */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Archivo', -apple-system, 'Helvetica Neue', Arial, sans-serif;
  color: var(--ink);
  background: #FFFFFF;
  line-height: 1.55;
  text-wrap: pretty;
}

img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
input, textarea, select { font: inherit; }
a { color: var(--link); text-decoration: none; }
a:hover { color: var(--navy-hover); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
::selection { background: #F8ECCC; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: #FFFFFF;
  color: var(--navy);
  font-weight: 600;
  padding: 12px 18px;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

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

.container { max-width: var(--container); margin: 0 auto; }
.measure { max-width: 820px; }
.measure--narrow { max-width: 700px; }
.measure--wide { max-width: 860px; }

/* --------------------------------------------------------- typography */

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 14px;
}
.kicker--gold { color: var(--gold); }
.kicker--group {
  font-size: 0.6875rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.kicker--quiet { color: var(--muted); font-weight: 600; }

.display {
  font-size: clamp(2.5rem, 4.6vw, 3.8125rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.display em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  color: var(--green);
}

.page-title {
  font-size: clamp(2.2rem, 4vw, 3.0625rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 22px;
}

.section-title {
  font-size: clamp(1.9rem, 3vw, 2.4375rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.14;
  margin-bottom: 18px;
}
.section-title--lg { font-size: clamp(2rem, 3.2vw, 2.4375rem); }

.lede { font-size: 1.125rem; color: var(--body); }
.body-lg { font-size: 1.0625rem; color: var(--body); }
.body { color: var(--body); }
.body-sm { color: var(--body); font-size: 0.9375rem; }

.serif-line {
  font-family: var(--serif);
  font-size: 1.375rem;
  font-weight: 500;
  color: var(--navy);
}

/* ------------------------------------------------------------- buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  font-size: 1rem;
  font-weight: 600;
  padding: 15px 26px;
  border-radius: 10px;
  white-space: nowrap;
  transition: background-color 160ms var(--ease), border-color 160ms var(--ease), color 160ms var(--ease);
}
.btn--navy { background: var(--navy); color: #FFFFFF; }
.btn--navy:hover { background: var(--navy-hover); color: #FFFFFF; }
.btn--gold { background: var(--gold); color: var(--navy-black); font-weight: 700; padding: 12px 20px; border-radius: 8px; }
.btn--gold:hover { background: var(--gold-hover); color: var(--navy-black); }
.btn--outline {
  border: 1px solid var(--line-strong);
  background: #FFFFFF;
  color: var(--navy);
  padding: 14px 22px;
}
.btn--outline:hover { border-color: var(--navy); color: var(--navy); }
.btn--block { width: 100%; }

.link-arrow {
  display: inline-block;
  background: none;
  border: 0;
  padding: 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--link);
}
.link-arrow:hover { color: var(--navy-hover); }

/* -------------------------------------------------------------- header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px var(--gutter);
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.site-header__logo { display: flex; align-items: center; flex: none; }
.site-header__logo img { height: 44px; width: auto; }

.site-nav {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.site-nav__item {
  padding: 10px 9px;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--body);
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
}
.site-nav__item:hover { color: var(--navy); }
.site-nav__item.is-current { color: var(--navy); border-bottom-color: var(--gold); }

.site-header__cta { display: flex; align-items: center; gap: 12px; flex: none; margin-left: auto; }
.site-header__cta .btn {
  font-size: 0.875rem;
  padding: 12px 18px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(7, 31, 69, 0.07);
}

/* ------------------------------------------------------------ sections */

/* Section rhythm. Each modifier carries the prototype's exact padding. */
.section { padding: 96px var(--gutter); }
.section--home-about { padding: 88px var(--gutter) 24px; }
.section--home-solutions { padding: 88px var(--gutter) 96px; }
.section--home-industries { padding: 96px var(--gutter) 0; }
.section--home-contact { padding: 96px var(--gutter) 104px; }
.section--arch { padding: 72px var(--gutter) 40px; }
.section--groups { padding: 40px var(--gutter) 96px; }
.section--acquisition {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: 96px var(--gutter) 104px;
}
.section--cards { padding: 80px var(--gutter) 104px; }
.section--about-intro { padding: 88px var(--gutter) 72px; }
.section--team { padding: 96px var(--gutter) 40px; }
.section--delivery { padding: 56px var(--gutter) 104px; }
.section--contact { padding: 88px var(--gutter) 104px; }

.page-head {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  padding: 80px var(--gutter);
}
.page-head--navy {
  background: var(--navy-deep);
  color: var(--ice);
  border-bottom: 0;
  padding: 88px var(--gutter);
}
.page-head--navy .lede { color: var(--slate); }

.band {
  background: var(--navy-deep);
  color: var(--ice);
  padding: 96px var(--gutter);
}
.band__head { max-width: 700px; margin-bottom: 44px; }
.band .body-lg { color: var(--slate); }

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.section-head__copy { max-width: 640px; }

/* Two-column split used by several sections. */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 64px;
}
.split--start { align-items: start; }
.split--narrow { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }

/* ---------------------------------------------------------------- hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px var(--gutter) 104px;
  background: linear-gradient(180deg, var(--surface) 0%, #FFFFFF 78%);
}
.hero__blob {
  position: absolute;
  top: -90px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: var(--mint);
  opacity: 0.55;
  border-radius: 58% 42% 55% 45% / 52% 48% 42% 58%;
  pointer-events: none;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 64px;
  align-items: center;
  position: relative;
}
.hero .kicker { margin-bottom: 20px; }
.hero__lede { font-size: 1.125rem; color: var(--body); max-width: 52ch; margin-bottom: 24px; }

.hero__media {
  position: relative;
  height: 520px;
  margin-right: calc(var(--gutter) * -1);
  isolation: isolate;
  /* Feathered on three edges so the photo dissolves into the page and bleeds
     off the right — the "T4" treatment the user picked. */
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, #000 22%, #000 76%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 48%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, #000 22%, #000 76%, transparent 100%),
    linear-gradient(90deg, transparent 0%, #000 48%);
  mask-composite: intersect;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 55%;
  filter: saturate(0.78) contrast(1.04);
}
/* Grades the photo into the palette: navy wash, then a gold lift on the left. */
.hero__wash {
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: color;
  opacity: 0.38;
  pointer-events: none;
}
.hero__lift {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(209, 158, 34, 0.16) 0%, rgba(209, 158, 34, 0) 60%);
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.pillars { display: flex; flex-wrap: wrap; gap: 10px 12px; margin-bottom: 26px; }
.pillar {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 7px 14px;
  background: #FFFFFF;
}

/* --------------------------------------------------------------- cards */

.card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 20px;
}
.card__title { font-size: 0.9375rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.card__body { color: var(--body); font-size: 0.875rem; }

.card-grid { display: grid; gap: 16px; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); }
.card-grid--wide { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }

.card--navy {
  background: var(--navy-black);
  border: 1px solid var(--navy-line);
  border-radius: 16px;
  padding: 30px 28px;
}
.card--navy h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
.card--navy p { color: var(--slate); font-size: 0.9375rem; }

.lift { transition: box-shadow 200ms var(--ease), transform 200ms var(--ease); }
.lift:hover { box-shadow: 0 14px 36px rgba(7, 31, 69, 0.14); transform: translateY(-3px); }

/* Bulleted feature lists (gold dot). */
.bullets { list-style: none; display: grid; gap: 8px; }
.bullets li { display: flex; gap: 9px; align-items: flex-start; font-size: 0.875rem; color: var(--body); }
.bullets li::before {
  content: '';
  flex: none;
  width: 5px;
  height: 5px;
  margin-top: 8px;
  border-radius: 50%;
  background: var(--gold);
}
.bullets--lg li { font-size: 0.9375rem; }

/* --------------------------------------------------------------- chips */

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; }
.chip-row--tight { gap: 8px; }

.chip {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--navy);
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 999px;
  padding: 10px 18px;
}
.chip--sm { font-size: 0.8125rem; padding: 6px 13px; }
.chip--md { font-size: 0.875rem; padding: 8px 16px; }
.chip--dark {
  font-size: 0.8125rem;
  color: var(--ice);
  background: transparent;
  border: 1px solid var(--navy-line);
  padding: 6px 13px;
}

/* ------------------------------------------------------- solution tabs */

.tabset__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
}
.tab {
  padding: 14px 18px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--muted);
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
  cursor: pointer;
  transition: color 160ms var(--ease), border-color 160ms var(--ease);
}
.tab:hover { color: var(--navy); }

.tab-panel { display: none; }
.tab-panel__inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 48px;
  align-items: start;
}
.tab-panel__desc { position: sticky; top: 108px; }
.tab-panel__desc h3 {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9375rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
.tab-panel__desc .body-lg { margin-bottom: 26px; }
.delivery-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 10px;
}
.delivery-value { font-weight: 600; color: var(--navy); }

.module-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 20px; }
.module-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px 22px;
  background: #FFFFFF;
}
.module-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 12px; }

/* Radio-driven tabs: no JS, keyboard-navigable via the native radio group. */
#sg-0:checked ~ .tabs [for="sg-0"],
#sg-1:checked ~ .tabs [for="sg-1"],
#sg-2:checked ~ .tabs [for="sg-2"],
#sg-3:checked ~ .tabs [for="sg-3"] { color: var(--navy); border-bottom-color: var(--green); }

#sg-0:checked ~ .tab-panels #panel-0,
#sg-1:checked ~ .tab-panels #panel-1,
#sg-2:checked ~ .tab-panels #panel-2,
#sg-3:checked ~ .tab-panels #panel-3 { display: block; }

#sg-0:focus-visible ~ .tabs [for="sg-0"],
#sg-1:focus-visible ~ .tabs [for="sg-1"],
#sg-2:focus-visible ~ .tabs [for="sg-2"],
#sg-3:focus-visible ~ .tabs [for="sg-3"] { outline: 2px solid var(--gold); outline-offset: 2px; }

/* --------------------------------------------------- delivery framework */

.framework-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 20px; }
.framework-card {
  background: var(--navy-black);
  border: 1px solid var(--navy-line);
  border-radius: 14px;
  padding: 24px 22px;
}
.framework-card__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.framework-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.framework-card p { color: var(--slate); font-size: 0.875rem; }

.steps { display: grid; }
.step {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 28px;
  align-items: start;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}
.step__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.9375rem;
  color: var(--gold);
  line-height: 1;
}
.step h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 6px; }

.quote-block {
  margin-top: 48px;
  padding: 36px 40px;
  background: var(--surface);
  border-left: 4px solid var(--green);
  border-radius: 4px;
}
.quote-block p {
  font-family: var(--serif);
  font-size: 1.5625rem;
  font-weight: 500;
  color: var(--navy);
  max-width: 52ch;
  margin-bottom: 24px;
}

/* ------------------------------------------------ solutions: architecture */

.arch {
  position: relative;
  background: var(--navy-deep);
  border-radius: 16px;
  padding: 44px 40px 0;
  overflow: hidden;
}
.arch__grid-lines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(#0F2C5C 1px, transparent 1px), linear-gradient(90deg, #0F2C5C 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.55;
  pointer-events: none;
}
.arch__head { position: relative; max-width: 640px; margin-bottom: 32px; }
.arch__head h2 { font-size: 1.5625rem; font-weight: 800; color: #FFFFFF; letter-spacing: -0.01em; }
.arch__layers { position: relative; display: grid; gap: 14px; }
.layer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  align-items: center;
  background: var(--navy-black);
  border: 1px solid var(--navy-line);
  border-left: 4px solid var(--layer-accent, var(--gold));
  border-radius: 12px;
  padding: 22px 24px;
}
.layer__num {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  margin-bottom: 6px;
}
.layer h3 { font-size: 1.0625rem; font-weight: 700; color: #FFFFFF; }
.layer__chips { grid-column: 2 / -1; display: flex; flex-wrap: wrap; gap: 8px; }
.arch__foot {
  position: relative;
  margin: 28px -40px 0;
  background: var(--navy-black);
  padding: 22px 40px;
}
.arch__foot p { font-size: 0.875rem; color: var(--ice); text-align: center; }

/* ----------------------------------------------------- solutions: groups */

.group-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #FFFFFF;
  padding: 44px 40px;
}
.group-card__head {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-bottom: 32px;
}
.group-card__head h2 { font-size: 1.5625rem; font-weight: 700; margin-bottom: 12px; }
.delivery-box {
  align-self: start;
  justify-self: start;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 18px 22px;
  background: var(--surface);
}
.delivery-box .delivery-label { margin-bottom: 6px; }
.group-card__modules {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.group-card__modules h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  padding-top: 12px;
  border-top: 3px solid var(--green);
}

.acq-card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-top: 4px solid var(--acq-accent, var(--navy));
  border-radius: 14px;
  padding: 34px 32px;
}
.acq-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 12px; }
.acq-card > p { color: var(--body); margin-bottom: 24px; }

.cta-row {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.cta-row p { max-width: 46ch; }

/* ---------------------------------------------------------- industries */

.industry-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.industry-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px 30px;
  background: #FFFFFF;
}
.industry-card__num {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.375rem;
  color: var(--gold);
  margin-bottom: 14px;
}
.industry-card h3 { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }

/* ----------------------------------------------------------- standards */

.standard-card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
  background: #FFFFFF;
  display: grid;
  gap: 32px;
}
.standard-card__head { max-width: 60ch; }
.standard-card__head h2 { font-size: 1.5625rem; font-weight: 700; margin-bottom: 10px; }
.standard-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  align-content: start;
}
.standard-item { border-left: 3px solid var(--green); padding-left: 18px; }
.standard-item__code { font-weight: 700; color: var(--navy); }
.standard-item__label { color: var(--body); font-size: 0.9375rem; }

/* ---------------------------------------------------------------- team */

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}
.team-card__photo {
  position: relative;
  height: 280px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--surface);
  isolation: isolate;
}
.team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75) contrast(1.02);
}
.team-card__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  mix-blend-mode: color;
  opacity: 0.2;
  pointer-events: none;
}
.team-card__name { font-size: 1.125rem; font-weight: 700; margin-bottom: 2px; }
.team-card__role,
.associate__role {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.associates { padding-top: 44px; border-top: 1px solid var(--line); }
.associates__label { margin-bottom: 32px; }
.associates__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px 40px;
}
.associate { border-left: 3px solid var(--green); padding-left: 20px; }
.associate__name { font-size: 1.0625rem; font-weight: 700; margin-bottom: 2px; }
.associate__role { font-size: 0.75rem; margin-bottom: 10px; }

.linkedin {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--body);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 7px 12px;
}
.linkedin:hover { border-color: var(--navy); color: var(--navy); }
.linkedin svg { width: 15px; height: 15px; fill: currentColor; }

/* -------------------------------------------------------------- contact */

.contact-list { display: grid; gap: 18px; }
.contact-list__row { display: flex; gap: 14px; align-items: baseline; }
.contact-list__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  min-width: 76px;
}
.contact-blocks { display: grid; gap: 24px; }
.contact-blocks__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.contact-help { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--line); }
.contact-help__label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}

/* ----------------------------------------------------------------- form */

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 36px;
}
.form-card h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 20px; }
.form-grid { display: grid; gap: 16px; }
.form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }

.field { width: 100%; padding: 14px 16px; border: 1px solid var(--line-strong); border-radius: 8px; background: #FFFFFF; }
.field:hover { border-color: var(--muted); }
select.field { color: var(--body); }
textarea.field { resize: vertical; }
.field:user-invalid { border-color: #B3261E; }

.form-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.8125rem; color: var(--muted); }
.form-consent input { margin-top: 3px; }
.form-note { font-size: 0.8125rem; color: var(--muted); }
.form-status { font-size: 0.875rem; color: var(--green); font-weight: 600; }
.form-status:empty { display: none; }

/* --------------------------------------------------------------- footer */

.site-footer { background: var(--navy-black); color: var(--slate); padding: 72px var(--gutter) 40px; }
.site-footer__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-line);
}
.wordmark { display: flex; align-items: stretch; gap: 16px; margin-bottom: 20px; }
.wordmark__rule { width: 3px; background: var(--gold); flex: none; }
.wordmark__name { font-size: 1.5625rem; font-weight: 800; letter-spacing: 0.02em; line-height: 1; color: #FFFFFF; }
.wordmark__sub { font-size: 0.6875rem; font-weight: 600; letter-spacing: 0.26em; color: var(--green-light); margin-top: 6px; }
.site-footer__tagline { font-size: 0.9375rem; max-width: 34ch; }
.site-footer__heading {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ice);
  margin-bottom: 16px;
}
.site-footer__links { display: grid; gap: 10px; font-size: 0.9375rem; }
.site-footer__links--contact { gap: 12px; }
.site-footer__links a { color: var(--slate); }
.site-footer__links a:hover { color: #FFFFFF; }
.site-footer__cta { margin-top: 20px; }
.site-footer__bar {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  font-size: 0.8125rem;
}
.site-footer__legal { display: flex; gap: 24px; }
.site-footer__legal a { color: var(--slate); }
.site-footer__legal a:hover { color: #FFFFFF; }

/* -------------------------------------------------------------- reveals */

[data-reveal].is-hidden { opacity: 0; transform: translateY(18px); }
[data-reveal].is-armed {
  transition:
    opacity 620ms var(--ease) var(--reveal-delay, 0ms),
    transform 620ms var(--ease) var(--reveal-delay, 0ms);
}

/* ----------------------------------------------------------- responsive */

@media (max-width: 720px) {
  :root { --gutter: 20px; }
  .hero { padding-bottom: 72px; }
  .hero__media { height: 380px; }
  .group-card { padding: 32px 24px; }
  .arch { padding: 32px 24px 0; }
  .arch__foot { margin: 24px -24px 0; padding: 20px 24px; }
  .standard-card { padding: 28px 24px; }
  .form-card { padding: 28px 24px; }
  .quote-block { padding: 28px 24px; }
  .step { grid-template-columns: 56px 1fr; gap: 18px; }
  .split, .hero__grid { gap: 44px; }
  .section { padding: 64px var(--gutter); }
  /* One column: keep the chips in the same track as the layer name rather
     than letting `2 / -1` spill into an implicit column. */
  .layer__chips { grid-column: 1 / -1; }
}

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

@media print {
  .site-header, .site-footer__cta, .skip-link { display: none; }
  [data-reveal].is-hidden { opacity: 1; transform: none; }
}
