/* ============================================================
   Arcadian CMS - style.css
   ============================================================ */

:root {
  --navy-900: #0c1420;
  --navy-800: #111927;
  --navy-700: #1c2739;
  --navy-600: #2a3550;
  --navy-500: #3c4a6b;

  --gold: #c6a23c;
  --gold-light: #d9bd6a;
  --gold-dark: #91721f;

  --ink: #111927;
  --ink-soft: #37415a;
  --muted: #5b6577;
  --muted-2: #6b768c;

  --paper: #ffffff;
  --paper-2: #f6f7fa;
  --paper-3: #eef0f5;
  --line: #e3e6ee;
  --line-soft: #ecedf2;

  --shadow-sm: 0 1px 2px rgba(17, 25, 39, 0.06);
  --shadow-md: 0 6px 20px -6px rgba(17, 25, 39, 0.14);
  --shadow-lg: 0 20px 50px -18px rgba(17, 25, 39, 0.28);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;

  --maxw: 1180px;

  --font-display: "Archivo", "Helvetica Neue", Arial, sans-serif;
  --font-body: "IBM Plex Sans", "Helvetica Neue", Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd { margin: 0; }
ul[class], ol[class] { list-style: none; margin: 0; padding: 0; }
img, picture, svg { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }

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

body {
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: var(--navy-900);
  font-weight: 700;
  padding: 12px 18px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2.5px solid var(--gold-dark);
  outline-offset: 2px;
  border-radius: 4px;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

section { position: relative; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-display);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold-dark);
}
.eyebrow--on { color: var(--gold-light); }

.muted { color: var(--muted); }

.mt-s { margin-top: 12px; }
.mt-l { margin-top: 40px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 10px;
  border: 1.5px solid transparent;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn--lg { padding: 15px 26px; font-size: 15.5px; }
.btn--p {
  background: var(--gold);
  color: var(--navy-900);
  box-shadow: var(--shadow-sm);
}
.btn--p:hover { background: var(--gold-light); box-shadow: var(--shadow-md); transform: translateY(-1px); }
.btn--dark {
  background: var(--navy-800);
  color: #fff;
}
.btn--dark:hover { background: var(--navy-700); transform: translateY(-1px); }
.btn--g {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
}
.btn--g:hover { border-color: var(--navy-600); background: var(--paper-2); }
.btn--on-dark {
  border-color: rgba(255,255,255,0.28);
  color: #fff;
}
.btn--on-dark:hover { border-color: rgba(255,255,255,0.55); background: rgba(255,255,255,0.06); }

/* ---------- Brand ---------- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.brand__mark {
  width: 22px;
  height: auto;
  flex-shrink: 0;
}
.brand__word {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand__word span { color: var(--gold-dark); }
.brand--on-dark .brand__word { color: #fff; }
.brand--on-dark .brand__word span { color: var(--gold-light); }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) saturate(140%);
  border-bottom: 1px solid var(--line-soft);
}
.nav__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 76px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.6vw, 26px);
  flex-wrap: nowrap;
}
.nav__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
  transition: color 0.15s ease;
  white-space: nowrap;
}
.nav__link:hover { color: var(--ink); }
.nav__link[aria-current="page"] { color: var(--gold-dark); }
.nav__right { display: flex; align-items: center; gap: 12px; }
.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--paper);
  align-items: center;
  justify-content: center;
  position: relative;
}
.burger span, .burger::before, .burger::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 1.6px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.burger::before { transform: translateY(-6px); }
.burger::after { transform: translateY(6px); }
.burger[aria-expanded="true"] span { opacity: 0; }
.burger[aria-expanded="true"]::before { transform: rotate(45deg); }
.burger[aria-expanded="true"]::after { transform: rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mm {
  position: fixed;
  inset: 0;
  z-index: 70;
  background: var(--navy-900);
  color: #fff;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.28s ease;
  visibility: hidden;
}
.mm.is-open { transform: translateX(0); visibility: visible; }
.mm__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--navy-600);
}
.mm__x {
  width: 40px; height: 40px;
  border-radius: 8px;
  border: 1px solid var(--navy-600);
  background: transparent;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.mm__links {
  display: flex;
  flex-direction: column;
  padding: 18px 24px;
  gap: 4px;
  overflow-y: auto;
}
.mm__links a {
  padding: 13px 4px;
  border-bottom: 1px solid var(--navy-700);
  text-decoration: none;
  color: #eef0f5;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
}
.mm__links a[aria-current="page"] { color: var(--gold-light); }
.mm__foot {
  margin-top: auto;
  padding: 20px 24px 28px;
  border-top: 1px solid var(--navy-700);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mm__foot a {
  color: var(--gold-light);
  text-decoration: none;
  font-weight: 700;
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 500px at 82% -10%, rgba(198,162,60,0.16), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 0%, var(--navy-900) 100%);
  color: #fff;
  padding: clamp(56px, 9vw, 108px) 0 clamp(48px, 7vw, 76px);
  overflow: hidden;
}
.hero__in { position: relative; }
.hero h1 {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
  margin-top: 18px;
  font-size: clamp(34px, 5.6vw, 60px);
  letter-spacing: -0.03em;
  color: #fff;
}
.hero h1 img { width: clamp(38px, 4.6vw, 54px); height: auto; }
.hero h1 span.accent { color: var(--gold-light); }
.hero .lead {
  font-size: clamp(17px, 1.7vw, 19px);
  color: #c3cadb;
}
.hero .lead--strong {
  font-weight: 700;
  color: #fff;
  font-size: clamp(19px, 2vw, 22px);
  margin-top: 22px;
  margin-bottom: 4px;
  font-family: var(--font-display);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}
.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
.hero__meta b {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}
.hero__meta p, .hero__meta div { font-size: 14px; color: #a8b1c4; line-height: 1.55; }

.trustbar {
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.trustbar__in {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 28px;
  padding: 18px 0;
}
.trustbar__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.trustbar__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pill {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-soft);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 14px;
}

/* ---------- Section heads ---------- */
.head { margin-bottom: 44px; }
.head h1,
.head h2 {
  margin-top: 12px;
  font-size: clamp(26px, 3.4vw, 38px);
}
.head .lead {
  margin-top: 16px;
  font-size: 17px;
  color: var(--muted);
}

.sec { padding: clamp(56px, 8vw, 96px) 0; }
.sec--tight { padding: clamp(48px, 7vw, 84px) 0; }
.sec--alt { background: var(--paper-2); }
.sec--border-t { border-top: 1px solid var(--line-soft); }

/* ---------- Cards ---------- */
.cards {
  display: grid;
  gap: 20px;
}
.cards--3 { grid-template-columns: repeat(3, 1fr); }
.cards--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px 24px;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { box-shadow: var(--shadow-md); border-color: var(--line); transform: translateY(-2px); }
.card h3 {
  font-size: 17px;
  margin-top: 14px;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.card__ic {
  width: 30px;
  height: 30px;
  color: var(--gold-dark);
}

/* module cards get a touch smaller padding for density */
.cards--mod .card { padding: 22px 20px; }
.cards--mod h3 { font-size: 15.5px; }
.cards--mod p { font-size: 13.5px; }
.cards--mod .card__ic { width: 26px; height: 26px; }

/* ---------- Comparison table ---------- */
.cmp {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--paper);
}
.cmp__head {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  background: var(--navy-800);
  color: #fff;
}
.cmp__head div {
  padding: 16px 20px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: 0.02em;
}
.cmp__head div:nth-child(3) { color: var(--gold-light); }
.cmp__row {
  display: grid;
  grid-template-columns: 1fr 1.4fr 1.4fr;
  border-top: 1px solid var(--line-soft);
}
.cmp__row:first-of-type { border-top: none; }
.cmp__row > div { padding: 18px 20px; font-size: 14px; }
.cmp__topic { font-family: var(--font-display); font-weight: 700; font-size: 14.5px; color: var(--ink); background: var(--paper-2); display: flex; align-items: center; }
.cmp__generic { color: var(--muted); border-right: 1px solid var(--line-soft); }
.cmp__ours { color: var(--ink-soft); background: rgba(198,162,60,0.06); font-weight: 500; }

/* ---------- Deep dive callout ---------- */
.callout {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(24px, 3vw, 34px);
}
.callout h3 { font-size: 17px; margin-bottom: 10px; }

/* ---------- Dark feature blocks ---------- */
.dark {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.4vw, 56px);
}
.dark h2 { color: #fff; margin-top: 10px; }
.dark > p { color: #c3cadb; font-size: 16px; }
.grid-cells {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.gc b {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--gold-light);
  margin-bottom: 8px;
}
.gc p { color: #a8b1c4; font-size: 14.5px; line-height: 1.6; }

/* ---------- FAQ / accordion ---------- */
.faq { border-top: 1px solid var(--line); }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  text-align: left;
  padding: 20px 4px;
  background: none;
  border: none;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15.5px;
  color: var(--ink);
}
.faq__q::after {
  content: "+";
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--muted);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
.faq__item.is-open .faq__q::after {
  transform: rotate(45deg);
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-900);
}
.faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}
.faq__a p {
  padding: 0 4px 20px;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

/* ---------- Lighthouse card ---------- */
.lh-card { padding: clamp(28px, 3.4vw, 40px); }
.lh-head { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.lh-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 800;
  color: var(--gold-dark);
  line-height: 1;
}
.lh-cap { display: flex; flex-direction: column; gap: 4px; }
.lh-cap strong { font-family: var(--font-display); font-size: 16px; }
.lh-cap em { font-style: normal; color: var(--muted); font-size: 13.5px; }
.lh-note { margin-top: 20px; color: var(--muted); font-size: 14.5px; line-height: 1.65; }

.doclist { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0; }
.frow {
  display: flex;
  gap: 14px;
  padding: 20px;
  border-bottom: 1px solid var(--line-soft);
}
.doclist .frow:nth-child(odd) { border-right: 1px solid var(--line-soft); }
.frow span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  position: relative;
  margin-top: 2px;
}
.frow span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border-right: 2px solid var(--navy-900);
  border-bottom: 2px solid var(--navy-900);
  transform: rotate(40deg);
}
.frow h4 { font-size: 14.5px; margin-bottom: 4px; }
.frow p { font-size: 13.5px; color: var(--muted); }

/* ---------- Included checklist ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.split--narrow { grid-template-columns: 0.9fr 1.1fr; }
.incl__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
}
.incl__row:last-child { border-bottom: none; }
.incl__ck {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
}
.incl__t { font-size: 14.5px; color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.cta {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: var(--radius-lg);
  padding: clamp(32px, 4.4vw, 54px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
  color: #fff;
}
.cta h2 { color: #fff; font-size: clamp(22px, 2.6vw, 30px); max-width: 480px; }
.cta p { color: #b7c0d3; margin-top: 12px; max-width: 480px; font-size: 15px; }

/* ---------- Contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 28px 26px;
  background: var(--paper);
}
.contact-card__logo {
  height: 32px;
  width: auto;
  margin-bottom: 18px;
}
.contact-card__role {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.contact-card h3 { font-size: 19px; margin-bottom: 4px; }
.contact-card .role-sub { color: var(--muted); font-size: 14px; margin-bottom: 18px; }
.contact-card dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 7px 12px;
  font-size: 13.8px;
  margin-bottom: 20px;
}
.contact-card dt { color: var(--muted-2); }
.contact-card dd { color: var(--ink-soft); font-weight: 500; }
.contact-card dd a { color: var(--ink-soft); text-decoration: underline; text-decoration-color: var(--line); text-underline-offset: 3px; }
.contact-card dd a:hover { color: var(--gold-dark); text-decoration-color: var(--gold); }

/* ---------- Showcase ---------- */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.showcase-item {
  display: block;
  text-align: left;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--paper);
  overflow: hidden;
  cursor: zoom-in;
  transition: box-shadow 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.showcase-item:hover, .showcase-item:focus-visible {
  box-shadow: var(--shadow-md);
  border-color: var(--line);
  transform: translateY(-2px);
}
.showcase-item img {
  width: 100%;
  height: auto;
  display: block;
  border-bottom: 1px solid var(--line-soft);
  background: var(--paper-2);
}
.showcase-item__label {
  display: block;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13.5px;
  color: var(--ink);
}
.showcase-item__label em {
  font-style: normal;
  font-weight: 600;
  color: var(--gold-dark);
}

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.lightbox.is-open { visibility: visible; opacity: 1; }
.lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 10, 20, 0.86);
}
.lightbox__dialog {
  position: relative;
  margin: auto;
  z-index: 1;
  max-width: min(1200px, 92vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox__img {
  max-width: 100%;
  max-height: 78vh;
  width: auto;
  height: auto;
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
  background: var(--paper);
}
.lightbox__caption {
  color: #dfe3ec;
  font-size: 14.5px;
  text-align: center;
  margin-top: 16px;
  max-width: 640px;
}
.lightbox__close {
  position: absolute;
  top: -46px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 22px;
  line-height: 1;
}
.lightbox__close:hover { background: rgba(255,255,255,0.18); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 26px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox__nav:hover { background: rgba(255,255,255,0.18); }
.lightbox__prev { left: -10px; }
.lightbox__next { right: -10px; }
@media (max-width: 900px) {
  .lightbox__prev { left: 4px; }
  .lightbox__next { right: 4px; }
  .lightbox__close { top: 8px; right: 8px; }
}

/* ---------- Footer ---------- */
.foot {
  background: var(--navy-900);
  color: #a8b1c4;
  padding: clamp(48px, 6vw, 72px) 0 28px;
}
.foot__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--navy-700);
}
.foot__blurb { margin-top: 16px; font-size: 14px; line-height: 1.6; max-width: 280px; color: #8a95ac; }
.foot h5 {
  font-family: var(--font-display);
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.foot__nav { display: flex; flex-direction: column; gap: 11px; }
.foot__nav a { color: #a8b1c4; text-decoration: none; font-size: 14.5px; }
.foot__nav a:hover { color: var(--gold-light); }

.foot__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  padding-top: 22px;
  font-size: 13px;
  color: #7d8aa3;
}
.foot__legal-links { display: flex; gap: 18px; }
.foot__legal-links a { color: #7d8aa3; text-decoration: none; }
.foot__legal-links a:hover { color: var(--gold-light); }

.foot__legal--full {
  flex-direction: column;
  gap: 6px;
  padding-top: 18px;
  margin-top: 4px;
  border-top: 1px solid var(--navy-700);
  font-size: 12.5px;
  color: #727e95;
}
.foot__legal--full strong { color: #8a95ac; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1080px) {
  .cards--4 { grid-template-columns: repeat(3, 1fr); }
  .showcase-grid { grid-template-columns: repeat(3, 1fr); }
  .foot__top { grid-template-columns: 1.3fr 1fr 1fr; }
  .foot__top > div:last-child { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .nav__right > .btn { display: none; }
  .burger { display: flex; }
  .cards--3 { grid-template-columns: 1fr 1fr; }
  .cards--4 { grid-template-columns: 1fr 1fr; }
  .showcase-grid { grid-template-columns: 1fr 1fr; }
  .hero__meta { grid-template-columns: 1fr; gap: 20px; }
  .grid-cells { grid-template-columns: 1fr; gap: 22px; }
  .split, .split--narrow { grid-template-columns: 1fr; gap: 28px; }
  .doclist { grid-template-columns: 1fr; }
  .doclist .frow:nth-child(odd) { border-right: none; }
  .cmp__head, .cmp__row { grid-template-columns: 1fr; }
  .cmp__generic { border-right: none; border-bottom: 1px solid var(--line-soft); }
  .cmp__head div:nth-child(1) { display: none; }
  .contact-cards { grid-template-columns: 1fr; }
  .cta { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 620px) {
  .wrap { padding: 0 20px; }
  .cards--3, .cards--4 { grid-template-columns: 1fr; }
  .showcase-grid { grid-template-columns: 1fr; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .trustbar__in { flex-direction: column; align-items: flex-start; }
  .foot__top { grid-template-columns: 1fr; }
  .foot__top > div:last-child { grid-column: auto; }
  body { font-size: 16px; }
}
