/* ==========================================================================
   Alemar Marketing s.r.o. — shared design system
   Cobalt on chalk. Flat colour fields, shared 1px rules, two grotesques.
   ========================================================================== */

:root {
  /* surfaces */
  --white: #FFFFFF;
  --chalk: #EEF1F7;
  --chalk-2: #E3E9F4;
  --navy: #0A1A33;
  --navy-2: #12264A;

  /* ink */
  --ink: #0A1A33;
  --body: #46556E;
  --muted: #6B7A93;

  /* rules */
  --line: #D9DFEA;
  --line-strong: #BCC7DA;
  --line-dark: #22375C;

  /* brand */
  --brand: #1B45F5;
  --brand-dark: #1436C9;
  --brand-tint: #E7ECFF;
  --brand-light: #8BA5FF;
  --amber: #FFB020;

  /* states */
  --ok: #0E6B47;
  --ok-bg: #E6F4EE;
  --ok-line: #B9DECB;
  --err: #B32121;
  --err-bg: #FCECEC;
  --err-line: #F0C4C4;

  /* type */
  --font-display: 'Archivo', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Instrument Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* metrics */
  --shell: 1180px;
  --gutter: clamp(20px, 5vw, 48px);
  --section: clamp(60px, 7.5vw, 112px);
  --r-lg: 18px;
  --r: 12px;
  --r-sm: 8px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--body);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--brand); }
a:hover { color: var(--brand-dark); }

::selection { background: var(--brand); color: #fff; }

:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
  border-radius: 2px;
}
.on-navy :focus-visible { outline-color: var(--brand-light); }

.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;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 300;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--r-sm);
  font-weight: 600;
  text-decoration: none;
  transition: top .15s ease;
}
.skip-link:focus { top: 16px; color: #fff; }

/* --------------------------------------------------------------------------
   Layout primitives
   -------------------------------------------------------------------------- */
.shell {
  width: 100%;
  max-width: var(--shell);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.band { padding-block: var(--section); }
.band-chalk { background: var(--chalk); }
.band-navy { background: var(--navy); color: #C9D4E6; }
.band-tight { padding-block: clamp(48px, 5.5vw, 76px); }

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-stretch: 112%;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
}

.t-hero { font-size: clamp(2.4rem, 5.6vw, 4.15rem); line-height: 1.02; letter-spacing: -0.03em; }
.t-page { font-size: clamp(2.05rem, 4.6vw, 3.2rem); letter-spacing: -0.028em; }
.t-section { font-size: clamp(1.75rem, 3.2vw, 2.55rem); letter-spacing: -0.025em; }
.t-card { font-size: 1.22rem; font-weight: 600; letter-spacing: -0.015em; line-height: 1.22; }
.t-sm { font-size: 1.04rem; font-weight: 600; letter-spacing: -0.01em; }

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.28rem);
  line-height: 1.55;
  color: var(--body);
  max-width: 58ch;
}
.measure { max-width: 62ch; }
.dim { color: var(--muted); }
.band-navy h1, .band-navy h2, .band-navy h3, .band-navy h4 { color: #fff; }
.band-navy .lead, .band-navy p { color: #AFBDD4; }

/* section intro: heading plus a short lead, separated by a cobalt rule */
.intro { max-width: 62ch; margin-bottom: clamp(32px, 4vw, 56px); }
.intro .t-section { margin-bottom: 14px; }
.intro::before {
  content: "";
  display: block;
  width: 44px;
  height: 3px;
  background: var(--brand);
  margin-bottom: 22px;
  border-radius: 2px;
}
.band-navy .intro::before { background: var(--amber); }

/* --------------------------------------------------------------------------
   Buttons and links
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  padding: 14px 24px;
  min-height: 48px;
  border-radius: var(--r-sm);
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: background .16s ease, border-color .16s ease, color .16s ease;
}
.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn-outline:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.btn-light { background: #fff; border-color: #fff; color: var(--navy); }
.btn-light:hover { background: var(--chalk); border-color: var(--chalk); color: var(--navy); }
.btn-block { width: 100%; }

.textlink {
  font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  border-bottom: 2px solid var(--brand-tint);
  padding-bottom: 2px;
  transition: border-color .16s ease;
}
.textlink:hover { border-bottom-color: var(--brand); }

/* --------------------------------------------------------------------------
   Header and navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--brand);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
}
.brand-name span { font-weight: 500; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--body);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: var(--r-sm);
  transition: color .16s ease, background .16s ease;
}
.nav a:hover { color: var(--ink); background: var(--chalk); }
.nav a[aria-current="page"] { color: var(--brand); font-weight: 600; }
/* .nav a is more specific than .btn, so the CTA needs its own colours back. */
.nav a.btn { margin-left: 10px; color: #fff; background: var(--brand); }
.nav a.btn:hover { background: var(--brand-dark); border-color: var(--brand-dark); color: #fff; }

.nav-toggle {
  display: none;
  align-items: center;
  gap: 9px;
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: var(--r-sm);
  padding: 10px 14px;
  min-height: 44px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
}
.nav-toggle-bars { width: 16px; height: 10px; position: relative; }
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0; width: 100%; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .22s ease, top .22s ease;
}
.nav-toggle-bars::before { top: 0; }
.nav-toggle-bars::after { top: 8px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before { top: 4px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after { top: 4px; transform: rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    padding: 12px var(--gutter) 28px;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, transform .2s ease, visibility 0s .2s;
  }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; transition: opacity .2s ease, transform .2s ease; }
  .nav a {
    padding: 15px 4px;
    font-size: 1.08rem;
    border-radius: 0;
    border-bottom: 1px solid var(--line);
  }
  .nav a.btn { margin: 18px 0 0; width: 100%; }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { padding-block: clamp(48px, 6.5vw, 92px) clamp(52px, 7vw, 100px); }
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(36px, 5vw, 72px);
  align-items: center;
}
.hero-copy .t-hero { margin-bottom: 22px; }
.hero-copy .lead { margin-bottom: 32px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
  color: var(--muted);
}
.hero-facts b { color: var(--ink); font-weight: 600; }

/* engagement loop panel — the one loud element on the page */
.loop {
  background: var(--brand);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.loop::after {
  content: "";
  position: absolute;
  width: 320px; height: 320px;
  right: -120px; top: -140px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 68%);
  pointer-events: none;
}
.loop-title {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-size: 1.02rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 4px;
  position: relative;
}
.loop-note { font-size: 0.9rem; color: rgba(255,255,255,.78); margin-bottom: 18px; position: relative; }
.loop-figure { position: relative; }
.loop-steps { list-style: none; display: grid; gap: 10px; position: relative; }
.loop-steps li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: baseline;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--r);
  padding: 13px 15px;
}
.loop-steps b {
  font-family: var(--font-display);
  font-stretch: 112%;
  font-size: 0.85rem;
  color: var(--amber);
  font-weight: 700;
}
.loop-steps strong { display: block; color: #fff; font-weight: 600; font-size: 1rem; }
.loop-steps span { display: block; font-size: 0.88rem; color: rgba(255,255,255,.8); line-height: 1.5; }

@media (min-width: 761px) {
  .loop-steps { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
}
@media (max-width: 760px) {
  .loop-figure svg { display: none; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 520px) {
  /* Two buttons of different widths read as ragged on a phone. */
  .hero-actions .btn { flex: 1 1 100%; }
}

/* --------------------------------------------------------------------------
   Shared rule grid (services, principles, interests)
   -------------------------------------------------------------------------- */
.rulegrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.rulegrid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.rulecell {
  background: var(--white);
  padding: clamp(24px, 2.6vw, 34px);
  transition: background .18s ease;
}
.rulecell:hover { background: var(--chalk); }
.band-chalk .rulecell:hover { background: var(--chalk-2); }
.rulecell .t-card { margin-bottom: 10px; }
.rulecell p { font-size: 0.98rem; }
.rulecell-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--brand-tint);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.taglist {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.taglist li {
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--body);
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 11px;
}
.band-chalk .taglist li { background: var(--white); }

@media (max-width: 900px) { .rulegrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 620px) { .rulegrid, .rulegrid-2 { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Sequence (the four stages) — numbering is real here
   -------------------------------------------------------------------------- */
.stages { list-style: none; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: stage; }
.stage { border-top: 3px solid var(--line-dark); padding-top: 20px; }
.stage::before {
  counter-increment: stage;
  content: counter(stage);
  font-family: var(--font-display);
  font-stretch: 112%;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--amber);
  display: block;
  margin-bottom: 10px;
}
.stage h3 { color: #fff; margin-bottom: 8px; }
.stage p { font-size: 0.96rem; color: #A3B2CA; }
@media (max-width: 900px) { .stages { grid-template-columns: repeat(2, 1fr); gap: 28px; } }
@media (max-width: 560px) { .stages { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Company registry panel
   -------------------------------------------------------------------------- */
.registry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 64px);
  align-items: start;
}
.registry {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 34px);
}
.registry dl { display: grid; gap: 0; }
.registry div {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.registry div:last-child { border-bottom: 0; padding-bottom: 0; }
.registry div:first-child { padding-top: 0; }
.registry dt { font-size: 0.92rem; color: var(--muted); }
.registry dd { font-size: 0.99rem; color: var(--ink); font-weight: 500; }
@media (max-width: 860px) { .registry-grid { grid-template-columns: 1fr; } }
@media (max-width: 520px) { .registry div { grid-template-columns: 1fr; gap: 2px; } }

/* --------------------------------------------------------------------------
   Forms
   -------------------------------------------------------------------------- */
.formcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.2vw, 38px);
}
.band-chalk .formcard { border-color: var(--line-strong); }

.field { margin-bottom: 20px; }
.field > label {
  display: block;
  font-size: 0.93rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 7px;
}
.field .hint { font-size: 0.86rem; color: var(--muted); margin: -3px 0 8px; }
.field input[type="text"],
.field input[type="email"],
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 13px 14px;
  min-height: 48px;
  transition: border-color .16s ease, background .16s ease, box-shadow .16s ease;
}
.field textarea { resize: vertical; line-height: 1.6; min-height: 132px; }
.field select { appearance: none; background-image: none; cursor: pointer; }
.field ::placeholder { color: #93A0B5; }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  background: var(--white);
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] { border-color: var(--err); background: var(--err-bg); }
.field input[aria-invalid="true"]:focus,
.field textarea[aria-invalid="true"]:focus { box-shadow: 0 0 0 3px rgba(179,33,33,.14); }

.field-error {
  display: none;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--err);
  margin-top: 7px;
}
.field-error.is-shown { display: block; }

.check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  margin-bottom: 20px;
}
.band-chalk .check { background: var(--white); }
.check input[type="checkbox"] {
  width: 20px; height: 20px;
  margin-top: 2px;
  accent-color: var(--brand);
  cursor: pointer;
}
.check label { font-size: 0.93rem; line-height: 1.55; color: var(--body); cursor: pointer; }
.check.is-invalid { border-color: var(--err); background: var(--err-bg); }
.check + .field-error { margin: -14px 0 18px; }

.formnote { font-size: 0.88rem; color: var(--muted); margin-top: 18px; }

.formstatus:empty { display: none; }
.formstatus { margin-top: 20px; }
.statusbox {
  border-radius: var(--r);
  padding: 16px 18px;
  font-size: 0.95rem;
  line-height: 1.55;
}
.statusbox h3 { font-size: 1.04rem; margin-bottom: 5px; }
.statusbox.is-ok { background: var(--ok-bg); border: 1px solid var(--ok-line); color: var(--ok); }
.statusbox.is-ok h3 { color: var(--ok); }
.statusbox.is-err { background: var(--err-bg); border: 1px solid var(--err-line); color: var(--err); }
.statusbox.is-err h3 { color: var(--err); }

/* --------------------------------------------------------------------------
   Contact section
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(32px, 4.5vw, 64px);
  align-items: start;
}
.contact-side address { font-style: normal; line-height: 1.85; color: var(--body); }
.contact-block { margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line-strong); }
.contact-block h3 { font-size: 1rem; margin-bottom: 8px; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

/* --------------------------------------------------------------------------
   Page header (interior pages)
   -------------------------------------------------------------------------- */
.pagehead {
  background: var(--navy);
  color: #AFBDD4;
  padding-block: clamp(52px, 6vw, 84px);
}
.pagehead .t-page { color: #fff; margin-bottom: 16px; }
.pagehead p { color: #AFBDD4; max-width: 60ch; }
.crumbs { font-size: 0.9rem; color: #8195B3; margin-bottom: 18px; }
.crumbs a { color: #8195B3; text-decoration: none; border-bottom: 1px solid #2C4570; }
.crumbs a:hover { color: #fff; border-bottom-color: #fff; }
.crumbs span { padding: 0 8px; }

/* --------------------------------------------------------------------------
   Legal pages — readability first
   -------------------------------------------------------------------------- */
.legal-grid {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: start;
}
.legal-toc { position: sticky; top: 100px; }
.legal-toc h2 { font-size: 0.98rem; margin-bottom: 12px; }
.legal-toc ol { list-style: none; counter-reset: toc; border-left: 2px solid var(--line); }
.legal-toc li { counter-increment: toc; }
.legal-toc a {
  display: block;
  padding: 6px 0 6px 14px;
  font-size: 0.92rem;
  color: var(--body);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
}
.legal-toc a::before { content: counter(toc) ". "; color: var(--muted); }
.legal-toc a:hover { color: var(--brand); border-left-color: var(--brand); }

.legal-entity {
  background: var(--chalk);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 20px 22px;
  margin-bottom: 34px;
  font-size: 0.95rem;
  line-height: 1.8;
}
.legal-entity h2 { font-size: 0.98rem; margin-bottom: 8px; }
.legal-entity address { font-style: normal; color: var(--body); }

.prose { max-width: 68ch; counter-reset: sec; }
.prose > p { margin-bottom: 18px; }
.prose h2 {
  font-size: 1.42rem;
  margin: 46px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
  scroll-margin-top: 100px;
}
.prose h2::before {
  counter-increment: sec;
  content: counter(sec) ". ";
  color: var(--brand);
}
.prose h2:first-child { margin-top: 0; border-top: 0; padding-top: 0; }
.prose h3 { font-size: 1.08rem; margin: 26px 0 8px; }
.prose ul, .prose ol { margin: 0 0 18px 22px; }
.prose li { margin-bottom: 9px; }
.prose .lead { margin-bottom: 26px; }
.prose strong { color: var(--ink); font-weight: 600; }

@media (max-width: 900px) {
  .legal-grid { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .legal-toc ol { columns: 2; column-gap: 24px; }
}
@media (max-width: 520px) { .legal-toc ol { columns: 1; } }

/* --------------------------------------------------------------------------
   Narrow single-column pages (unsubscribe)
   -------------------------------------------------------------------------- */
.narrow { max-width: 620px; margin-inline: auto; }

/* --------------------------------------------------------------------------
   Modal (quick unsubscribe)
   -------------------------------------------------------------------------- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10, 26, 51, .62);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal.is-open { display: flex; }
.modal-panel {
  background: var(--white);
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 520px;
  max-height: calc(100dvh - 40px);
  overflow-y: auto;
  padding: clamp(24px, 3.4vw, 34px);
  position: relative;
}
.modal-panel h2 { font-size: 1.45rem; margin-bottom: 10px; padding-right: 40px; }
.modal-panel > p { font-size: 0.97rem; margin-bottom: 22px; }
.modal-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background: var(--white);
  color: var(--body);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.modal-close:hover { background: var(--chalk); color: var(--ink); }
body.modal-open { overflow: hidden; }

/* --------------------------------------------------------------------------
   CTA strip
   -------------------------------------------------------------------------- */
.ctastrip {
  background: var(--navy);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.ctastrip h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); max-width: 22ch; }
.ctastrip p { color: #A3B2CA; margin-top: 8px; max-width: 46ch; font-size: 0.98rem; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: #A3B2CA;
  padding-block: clamp(48px, 6vw, 76px) 28px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
  gap: clamp(28px, 3.5vw, 48px);
  padding-bottom: clamp(32px, 4vw, 52px);
}
.foot-brand .brand-name { color: #fff; }
.foot-brand .brand-name span { color: #8195B3; }
.foot-brand p { font-size: 0.93rem; color: #8195B3; margin-top: 14px; max-width: 34ch; }
.foot-col h2 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 9px; }
.foot-col a, .footer-unsub {
  font-size: 0.94rem;
  color: #A3B2CA;
  text-decoration: none;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.foot-col a:hover, .footer-unsub:hover { color: #fff; text-decoration: underline; }
.foot-col address { font-style: normal; font-size: 0.93rem; line-height: 1.8; color: #A3B2CA; }
.foot-col address a { color: #A3B2CA; }
.foot-legal {
  border-top: 1px solid var(--line-dark);
  padding-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  justify-content: space-between;
  font-size: 0.86rem;
  color: #7488A6;
}
@media (max-width: 900px) { .foot-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .foot-grid { grid-template-columns: 1fr; } .foot-legal { flex-direction: column; } }

/* --------------------------------------------------------------------------
   Motion preferences
   -------------------------------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}
