/* ==========================================================================
   Cross Current — crosscurrent.services
   Design tokens come straight from the Canva reference in /reference.
   ========================================================================== */

:root {
  --bg: #fdf7ea;          /* warm cream page background */
  --card: #dbd3c3;        /* rounded cards */
  --text: #2d3741;        /* headings and body */
  --navy: #01184e;        /* logo colour, small accents, taglines */
  --teal: #2a474d;        /* contact block text and icons */
  --btn-bg: #2d3741;
  --btn-fg: #ffffff;

  --line: rgba(45, 55, 65, .22);
  --muted: rgba(45, 55, 65, .75);

  --radius-card: 36px;
  --radius-field: 12px;

  --wrap: 1120px;
  --gutter: 20px;

  --section-y: 88px;
}

/* ------------------------------ reset ---------------------------------- */

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

/* the sticky header would otherwise cover anchored section headings */
:target { scroll-margin-top: 96px; }
[id] { scroll-margin-top: 96px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Montserrat, "Segoe UI", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3 { line-height: 1.15; margin: 0; text-wrap: balance; }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

a { color: inherit; }

.wrap {
  width: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--section-y); }

.section-title {
  font-size: clamp(2rem, 1.25rem + 2.6vw, 3.1rem);
  font-weight: 800;
  text-align: center;
  letter-spacing: -.01em;
  margin-bottom: 48px;
}
.section-title-left { text-align: left; }

/* focus ring, applied consistently across every interactive element */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
details:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--text);
  color: #fff;
  padding: 12px 20px;
  border-radius: 0 0 12px 0;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ------------------------------ buttons -------------------------------- */

.btn {
  display: inline-block;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: 2px solid var(--btn-bg);
  border-radius: 999px;
  padding: 14px 34px;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, opacity .18s ease;
}
.btn:hover { background: #1f2a33; border-color: #1f2a33; }
.btn:active { transform: translateY(1px); }
.btn[disabled], .btn[aria-disabled="true"] { opacity: .55; cursor: not-allowed; }

.btn-sm { padding: 9px 22px; font-size: .94rem; }
.btn-lg { padding: 16px 44px; font-size: 1.08rem; }
.btn-block { display: block; width: 100%; }

/* ------------------------------- header -------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(253, 247, 234, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px -18px rgba(45, 55, 65, .8);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  margin-right: auto;
}
.brand-mark { width: 40px; height: auto; }
.brand-name {
  font-weight: 700;
  letter-spacing: .13em;
  font-size: .92rem;
  white-space: nowrap;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-nav a {
  text-decoration: none;
  font-weight: 500;
  font-size: .97rem;
  padding-block: 6px;
  border-bottom: 2px solid transparent;
}
.site-nav a:not(.btn):hover { border-bottom-color: var(--text); }

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  border-radius: 10px;
}
.nav-toggle-bar {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform .22s ease, opacity .18s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------------------------- language switch --------------------------- */

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  flex: 0 0 auto;
}
.lang-switch button {
  font: inherit;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease;
}
.lang-switch button:hover { color: var(--text); }
.lang-switch button[aria-pressed="true"] {
  background: var(--text);
  color: var(--btn-fg);
  cursor: default;
}

/* -------------------------------- hero --------------------------------- */

.hero { padding-block: clamp(40px, 6vw, 84px) clamp(48px, 6vw, 88px); }

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}

.hero-title {
  font-size: clamp(3rem, 1.6rem + 6vw, 6.2rem);
  font-weight: 800;
  letter-spacing: -.03em;
  margin-bottom: .18em;
}
.hero-subtitle {
  font-size: clamp(1.02rem, .92rem + .45vw, 1.32rem);
  color: var(--muted);
  margin-bottom: 2rem;
}
.hero-cta { margin-bottom: 2.4rem; }

.hero-tagline {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  font-size: clamp(.86rem, .8rem + .22vw, .97rem);
  letter-spacing: .055em;
  text-transform: uppercase;
  line-height: 1.75;
  margin: 0;
}

.hero-art img {
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
}

/* ---------------------------- quiénes somos ----------------------------- */

/* clip, not hidden: keeps the decorative watermark from widening the page
   without turning the section into a scroll container */
.about { padding-block: clamp(32px, 4vw, 56px) var(--section-y); overflow-x: clip; }

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
}

.about-stores { position: relative; }
/* faint eagle watermark behind the retailer wall, as in the Canva page */
.about-stores::before {
  content: "";
  position: absolute;
  inset: -8% 0;
  background: url("/assets/logo.png") center / contain no-repeat;
  opacity: .055;
  pointer-events: none;
}

.store-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(20px, 3vw, 38px) clamp(16px, 2.5vw, 30px);
  list-style: none;
  margin: 0;
  padding: 0;
}
.store-grid li { display: flex; align-items: center; justify-content: center; width: 100%; }
/* optical sizing: each wordmark gets the height that makes it read evenly */
.store-grid img { width: auto; max-width: 100%; object-fit: contain; }
.store-grid li:nth-child(1) img { max-height: 42px; }   /* alibaba */
.store-grid li:nth-child(2) img { max-height: 62px; }   /* temu     */
.store-grid li:nth-child(3) img { max-height: 42px; }   /* walmart  */
.store-grid li:nth-child(4) img { max-height: 48px; }   /* rockauto */
.store-grid li:nth-child(5) img { max-height: 54px; }   /* amazon   */
.store-grid li:nth-child(6) img { max-height: 30px; }   /* shein    */

.about-text h2 {
  font-size: clamp(1.9rem, 1.2rem + 2.4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin-bottom: .7em;
}
.about-text p { color: var(--muted); }

/* -------------------------------- cards --------------------------------- */

.grid { display: grid; gap: clamp(18px, 2.2vw, 28px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

.card {
  background: var(--card);
  border-radius: var(--radius-card);
  padding: clamp(26px, 2.6vw, 38px);
}
.card-title { font-size: 1.16rem; font-weight: 700; margin-bottom: .75em; }
.card p { color: rgba(45, 55, 65, .88); }

/* shipping cards carry the plane / ship line art lifted from the Canva page */
.card-shipping {
  position: relative;
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 340px;
  isolation: isolate;
}
.card-shipping::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  width: 108%;
  aspect-ratio: 640 / 300;
  opacity: .14;
  background: center / contain no-repeat;
  pointer-events: none;
}
.card-plane::before { background-image: url("/assets/plane-art.png"); aspect-ratio: 528 / 270; }
.card-ship::before {
  background-image: url("/assets/ship-art.png");
  aspect-ratio: 537 / 333;
  width: 100%;   /* taller than the plane, so keep it inside the card */
}

.card-shipping .card-title {
  font-size: clamp(1.6rem, 1.1rem + 1.5vw, 2.35rem);
  font-weight: 500;
  margin-bottom: .8em;
}

/* ----------------------------- cómo funciona ---------------------------- */

.steps { list-style: none; margin: 0; padding: 0; counter-reset: none; }
.card-step { display: flex; flex-direction: column; }
.card-step .card-title { font-size: 1.1rem; }
.step-num { font-weight: 800; margin-right: .35em; }

/* --------------------------------- faq ---------------------------------- */

/* One question per row at every width — easier to scan than a 2-up grid.
   `.grid.faq` outranks the `.grid-2` overrides inside the media queries. */
.grid.faq { align-items: start; grid-template-columns: 1fr; }

.card-faq { padding: 0; overflow: hidden; }
.card-faq summary {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  list-style: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.06rem;
  line-height: 1.35;
  padding: clamp(22px, 2.2vw, 30px) clamp(24px, 2.4vw, 34px);
}
.card-faq summary::-webkit-details-marker { display: none; }
.card-faq summary::after {
  content: "";
  flex: 0 0 auto;
  width: 11px;
  height: 11px;
  margin-top: .42em;
  margin-left: auto;
  border-right: 2.5px solid currentColor;
  border-bottom: 2.5px solid currentColor;
  transform: rotate(45deg);
  transition: transform .2s ease;
}
.card-faq[open] summary::after { transform: rotate(-135deg); }
.card-faq summary:hover { background: rgba(45, 55, 65, .05); }

.faq-body {
  padding: 0 clamp(24px, 2.4vw, 34px) clamp(24px, 2.4vw, 32px);
  color: rgba(45, 55, 65, .88);
}

/* -------------------------------- tarifa -------------------------------- */

.tarifa-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  margin-bottom: clamp(40px, 5vw, 68px);
}
.tarifa-intro { color: var(--muted); max-width: 46ch; margin: 1.1em 0 0; }
.tarifa-mark { width: clamp(150px, 24vw, 300px); }

.tiers { align-items: stretch; }
.tiers + .tiers { margin-top: clamp(20px, 2.4vw, 30px); }

.tier { display: flex; flex-direction: column; gap: 14px; }
.card-tier {
  flex: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  border-radius: 32px;
}
.tier-title {
  font-size: clamp(1.25rem, 1rem + .8vw, 1.6rem);
  font-weight: 500;
  margin-bottom: 1rem;
}
.tier-lines {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: .93rem;
  color: rgba(45, 55, 65, .88);
}
.tier-lines li { padding-block: 11px; border-top: 1px solid rgba(45, 55, 65, .28); }

.tier-figure {
  margin: 0;
  background: var(--card);
  border-radius: 999px;
  text-align: center;
  padding: 16px 20px;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.95rem);
  font-weight: 500;
}

/* ------------------------- cotización + contacto ------------------------ */

.contact-section { padding-bottom: clamp(64px, 7vw, 104px); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: clamp(36px, 5vw, 72px);
}

.contact-col { color: var(--teal); text-align: center; }
.contact-logo { width: 74px; margin: 0 auto 18px; }
.contact-brand {
  font-size: clamp(1.4rem, 1rem + 1.6vw, 2.1rem);
  font-weight: 700;
  letter-spacing: .17em;
  margin: 0 0 .6em;
  color: var(--teal);
}
.contact-tagline {
  font-weight: 700;
  letter-spacing: .17em;
  font-size: .88rem;
  color: var(--navy);
  margin: 0 0 1.4em;
}
.contact-rule {
  width: 250px;
  max-width: 70%;
  height: 2px;
  border: 0;
  background: var(--teal);
  margin: 0 auto 1.8em;
}
.contact-heading {
  font-size: clamp(1.45rem, 1.1rem + 1.5vw, 2.15rem);
  font-weight: 700;
  margin-bottom: .6em;
}
.contact-lead { color: rgba(42, 71, 77, .85); margin-bottom: 2.2em; }

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 20px;
  justify-content: center;
  text-align: left;
}
.contact-list li { display: flex; align-items: center; gap: 14px; }
.contact-icon {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--bg);
  display: grid;
  place-items: center;
}
.contact-item { display: flex; flex-direction: column; }
.contact-item-single { justify-content: center; }
.contact-item-single a { font-weight: 700; }
.contact-label {
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .085em;
  color: var(--navy);
}
.contact-list a {
  color: var(--teal);
  text-decoration: none;
  font-size: .99rem;
  /* padding keeps these above the 24px minimum tap target on phones */
  padding-block: 4px;
}
.contact-list a:hover { text-decoration: underline; }

/* --------------------------------- form --------------------------------- */

.form-shell {
  border: 3px solid var(--text);
  border-radius: var(--radius-card);
  padding: clamp(24px, 3vw, 38px);
}
.form-heading {
  font-size: clamp(1.35rem, 1.1rem + 1vw, 1.8rem);
  font-weight: 600;
  margin-bottom: 1.2em;
}

.field { margin-bottom: 20px; }
.field > label {
  display: block;
  font-size: .92rem;
  font-weight: 500;
  margin-bottom: 7px;
}
/* the consent label is a sentence, not a field label, so it gets no asterisk */
.field > label:not(.consent)::after { content: "*"; margin-left: .25em; }

.quote-form input[type="text"],
.quote-form input[type="email"],
.quote-form input[type="tel"],
.quote-form textarea {
  width: 100%;
  font: inherit;
  font-size: 1rem;
  color: var(--text);
  background: #fffdf7;
  border: 1.5px solid rgba(42, 71, 77, .55);
  border-radius: var(--radius-field);
  padding: 12px 14px;
}
.quote-form textarea { resize: vertical; min-height: 120px; }
.quote-form input::placeholder,
.quote-form textarea::placeholder { color: rgba(45, 55, 65, .48); }

.quote-form input[aria-invalid="true"],
.quote-form textarea[aria-invalid="true"] { border-color: #9d2f22; border-width: 2px; }

.field-error {
  margin: 6px 0 0;
  font-size: .86rem;
  font-weight: 500;
  color: #8f2a1e;
}

/* honeypot: off-screen rather than display:none, which some bots skip */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field-consent { margin-top: 24px; }
.consent {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: .9rem;
  line-height: 1.5;
  cursor: pointer;
}
.consent input {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--text);
  cursor: pointer;
}
.consent a { color: var(--navy); font-weight: 600; }

.turnstile-slot { margin: 18px 0 4px; min-height: 0; }
.turnstile-slot:empty { margin: 0; }

.form-status {
  margin: 0 0 14px;
  padding: 12px 15px;
  border-radius: var(--radius-field);
  font-size: .92rem;
  font-weight: 500;
  background: rgba(143, 42, 30, .1);
  color: #8f2a1e;
}

.form-success p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.55;
}
.form-success .btn { margin-top: 24px; }

.form-noscript {
  background: rgba(45, 55, 65, .08);
  border-radius: var(--radius-field);
  padding: 14px 16px;
  font-size: .93rem;
}

/* -------------------------------- footer -------------------------------- */

.site-footer {
  border-top: 1px solid var(--line);
  padding-block: 44px 40px;
  font-size: .82rem;
  line-height: 1.7;
  color: rgba(45, 55, 65, .72);
  text-align: center;
}
.footer-legal { max-width: 78ch; margin-inline: auto; }
.footer-links { margin-top: 1.4em; font-weight: 600; color: var(--text); }
.footer-links a { color: var(--text); }
.footer-links span { margin-inline: .6em; }
.footer-copy { margin-top: .9em; }

/* --------------------------- whatsapp floater --------------------------- */

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 70;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 8px 24px -6px rgba(45, 55, 65, .45);
  transition: transform .18s ease;
}
.wa-float:hover { transform: scale(1.06); }

/* ------------------------------ quote modal ------------------------------ */

.quote-dialog {
  width: min(560px, calc(100vw - 32px));
  max-width: none;
  max-height: min(88vh, 900px);
  padding: 0;
  border: 0;
  border-radius: 28px;
  background: var(--bg);
  color: var(--text);
  overflow: hidden;
}
.quote-dialog::backdrop { background: rgba(28, 34, 40, .55); }

.quote-dialog-inner {
  position: relative;
  max-height: min(88vh, 900px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: clamp(26px, 4vw, 40px);
}

.quote-dialog .form-heading { padding-right: 44px; }

/* inside the modal the panel border would double up with the dialog edge */
.quote-dialog .form-shell { border: 0; padding: 0; }

.dialog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}
.dialog-close:hover { background: rgba(45, 55, 65, .1); }

body.dialog-open { overflow: hidden; }

/* ------------------------------ responsive ------------------------------ */

@media (max-width: 900px) {
  :root { --section-y: 68px; --radius-card: 30px; }

  .nav-toggle { display: block; }

  /* brand | language | burger — the switch stays reachable without opening
     the menu, so it must sit outside the collapsible nav */
  .brand { order: -2; }
  .lang-switch { order: -1; }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px -22px rgba(45, 55, 65, .9);
    display: none;
  }
  .site-nav.is-open { display: block; }
  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px var(--gutter) 22px;
  }
  .site-nav li + li { border-top: 1px solid var(--line); }
  .site-nav li:last-child { border-top: 0; margin-top: 16px; }
  .site-nav a:not(.btn) { display: block; padding: 15px 2px; font-size: 1.02rem; }
  .site-nav .btn { display: block; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-art { order: -1; }
  .hero-art img { max-width: min(58vw, 260px); }
  .hero-tagline { align-items: center; }

  .about-inner { grid-template-columns: 1fr; }
  .about-text { order: -1; text-align: center; }
  .store-grid { grid-template-columns: repeat(3, 1fr); }

  .grid-2, .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .tarifa-head { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .tarifa-head .section-title-left { text-align: center; }
  .tarifa-intro { margin-inline: auto; }
  .tarifa-mark { order: -1; }

  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; --section-y: 56px; --radius-card: 26px; }

  body { font-size: 16px; }

  .section-title { margin-bottom: 32px; }

  .grid-2, .grid-3 { grid-template-columns: 1fr; }

  .card-shipping { min-height: 0; }
  .store-grid { grid-template-columns: repeat(2, 1fr); }

  .contact-list { justify-content: start; }

  .wa-float { width: 54px; height: 54px; right: 16px; bottom: 16px; }

  /* near full-screen sheet on phones, still scrollable */
  .quote-dialog {
    width: 100vw;
    max-width: 100vw;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    border-radius: 0;
  }
  .quote-dialog-inner { max-height: 100dvh; height: 100dvh; padding-top: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* --------------------------------- print -------------------------------- */

@media print {
  .site-header, .wa-float, .quote-dialog, .form-col { display: none !important; }
  body { font-size: 12pt; }
}

/* ------------------------------ legal pages ------------------------------ */

.site-nav-legal { display: block; }
.site-nav-legal ul { flex-direction: row; }

.legal { padding-block: clamp(40px, 5vw, 72px) clamp(56px, 6vw, 88px); }
.legal-wrap { max-width: 760px; }

.legal h1 {
  font-size: clamp(1.9rem, 1.3rem + 2.2vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.015em;
  margin-bottom: .8em;
}
.legal h2 {
  font-size: clamp(1.15rem, 1rem + .6vw, 1.4rem);
  font-weight: 700;
  margin: 2.2em 0 .7em;
}
.legal p, .legal li { color: rgba(45, 55, 65, .88); }
.legal ul { padding-left: 1.2em; margin: 0 0 1.2em; }
.legal li { margin-bottom: .5em; }
.legal strong { color: var(--text); font-weight: 700; }
.legal a { color: var(--navy); }

@media (max-width: 900px) {
  /* the legal header has no collapsible menu, so keep it inline */
  .site-nav-legal { position: static; display: block; background: none; border: 0; box-shadow: none; }
  .site-nav-legal ul { flex-direction: row; gap: 18px; padding: 0; }
  .site-nav-legal li + li { border-top: 0; }
  .site-nav-legal li:last-child { margin-top: 0; }
  .site-nav-legal a:not(.btn) { display: inline; padding: 6px 2px; font-size: .95rem; }
  .site-nav-legal .btn { display: inline-block; }
}

@media (max-width: 520px) {
  .site-nav-legal ul { gap: 12px; }
  .site-nav-legal .btn-sm { padding: 8px 16px; font-size: .86rem; }
}
