:root {
  --navy: #071422;
  --navy-2: #10243f;
  --navy-3: #173056;
  --ink: #f4efe4;
  --muted: #c9c0b0;
  --gold: #d4b36a;
  --gold-text: #e8d2a0;
  --gold-deep: #e8d2a0;
  --paper: #061018;
  --white: rgba(255, 252, 247, 0.08);
  --line: rgba(232, 210, 160, 0.22);
  --danger: #ffb4ae;
  --ok: #b7ebc9;
  --shadow: 0 22px 50px rgba(0, 0, 0, 0.28);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Manrope", "Segoe UI", sans-serif;
  --wrap: 1120px;
  --header: 4.5rem;
  --glass: linear-gradient(180deg, rgba(255, 252, 247, 0.14), rgba(255, 252, 247, 0.05));
  --lx: 70vw;
  --ly: 18vh;
  --mx: 30%;
  --my: 20%;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #061018;
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.05rem;
  line-height: 1.65;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

body::before {
  background:
    radial-gradient(46rem circle at 10% 16%, rgba(42, 150, 200, 0.62), transparent 56%),
    radial-gradient(38rem circle at 90% 10%, rgba(232, 196, 120, 0.42), transparent 50%),
    radial-gradient(52rem circle at 72% 90%, rgba(18, 78, 150, 0.78), transparent 58%),
    radial-gradient(34rem circle at 14% 84%, rgba(20, 120, 170, 0.55), transparent 52%);
  filter: blur(18px);
  transform: scale(1.15);
  animation: liquid-drift 28s ease-in-out infinite alternate;
}

body::after {
  background: radial-gradient(38rem circle at var(--lx) var(--ly), rgba(232, 210, 160, 0.16), transparent 42%);
  mix-blend-mode: screen;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: white;
}

p {
  margin: 0 0 1rem;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -5rem;
  z-index: 80;
  background: var(--gold);
  color: var(--navy);
  padding: 0.55rem 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.skip:focus {
  top: 0.75rem;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.wrap {
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0.7rem;
  z-index: 40;
  width: min(var(--wrap), calc(100% - 1.5rem));
  margin: 0.7rem auto 0;
  background: rgba(7, 20, 34, 0.42);
  border: 1px solid rgba(255, 252, 247, 0.16);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(22px) saturate(1.5);
  overflow: visible;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(28rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 46%);
}

.header-bar {
  position: relative;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding-inline: 0.85rem 0.45rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: white;
  min-width: 0;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  flex: none;
  display: grid;
  place-items: center;
  border: 1px solid rgba(232, 210, 160, 0.65);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.35);
  color: var(--gold-text);
  font-family: var(--serif);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
}

.brand-name {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.brand-sub {
  display: block;
  color: var(--gold-text);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(232, 210, 160, 0.45);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.05);
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-icon,
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--gold-text);
  position: relative;
}

.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-icon::before { top: -5px; }
.nav-toggle-icon::after { top: 5px; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.site-nav a {
  color: rgba(255, 252, 247, 0.86);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.55rem 0.75rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--gold-text);
  background: rgba(255, 252, 247, 0.08);
}

.site-nav a:focus-visible,
.brand:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.field input:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid var(--gold-text);
  outline-offset: 3px;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  min-height: calc(100svh - var(--header));
  display: grid;
  align-items: end;
  color: white;
  background: var(--navy);
  isolation: isolate;
  overflow: hidden;
  margin: 1rem 0.85rem 0;
  border-radius: 2rem 2rem 46% 46% / 2rem 2rem 5.5rem 5.5rem;
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.08);
  animation: ken-burns 28s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(7, 20, 34, 0.88) 0%, rgba(7, 20, 34, 0.55) 48%, rgba(7, 20, 34, 0.2) 100%),
    linear-gradient(180deg, rgba(7, 20, 34, 0.15), rgba(7, 20, 34, 0.4));
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: -10%;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at 25% 80%, rgba(232, 210, 160, 0.22), transparent 42%),
    radial-gradient(ellipse at 78% 30%, rgba(90, 170, 210, 0.16), transparent 40%);
  mix-blend-mode: screen;
  animation: liquid-drift 18s ease-in-out infinite alternate;
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 8rem;
  max-width: 42rem;
  margin-left: max(1.25rem, calc((100% - var(--wrap)) / 2));
}

.eyebrow,
.kicker {
  margin: 0 0 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-text);
}

.hero h1,
.page-hero h1 {
  margin: 0 0 1rem;
  font-size: clamp(3.1rem, 7vw, 5.6rem);
  color: white;
}

.hero-lead,
.page-hero p {
  max-width: 36rem;
  font-size: 1.12rem;
  color: rgba(255, 252, 247, 0.88);
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.75rem;
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.65rem 1.2rem;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  transition: transform 0.3s ease, background-position 0.5s ease, border-color 0.3s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-gold {
  background-image: linear-gradient(110deg, #c9a45a 0%, #f3ddb0 42%, #d4b36a 68%, #b8924a 100%);
  background-size: 220% 100%;
  background-position: 0% 0;
  color: var(--navy);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65), 0 10px 24px rgba(212, 179, 106, 0.25);
}

.btn-gold:hover {
  background-position: 100% 0;
}

.btn-line,
.btn-line-dark,
.btn-navy {
  border-color: rgba(232, 210, 160, 0.55);
  color: white;
  background:
    linear-gradient(110deg, rgba(255, 252, 247, 0.05), rgba(255, 252, 247, 0.16), rgba(255, 252, 247, 0.05));
  background-size: 220% 100%;
  background-position: 0% 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(10px);
}

.btn-line:hover,
.btn-line-dark:hover,
.btn-navy:hover {
  background-position: 100% 0;
  border-color: rgba(232, 210, 160, 0.85);
}

.stat-wrap {
  position: relative;
  z-index: 2;
  margin-top: -4.2rem;
}

.stat-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background:
    radial-gradient(24rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 42%),
    var(--glass);
  border: 1px solid rgba(255, 252, 247, 0.2);
  border-radius: 1.75rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.35),
    var(--shadow);
  backdrop-filter: blur(20px) saturate(1.45);
  overflow: hidden;
}

.stat {
  padding: 1.45rem 1.2rem 1.3rem;
  border-left: 1px solid var(--line);
}

.stat:first-child {
  border-left: 0;
}

.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 600;
  line-height: 1;
  color: white;
  margin-bottom: 0.45rem;
}

.stat span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
}

.stat-note {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.85rem;
}

.section {
  padding: 5.25rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section h2,
.band h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  color: white;
}

.band h2,
.band p,
.page-hero h1 {
  color: white;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
}

.split-reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.figure {
  margin: 0;
  position: relative;
  isolation: isolate;
  padding: 0 0.85rem 0.85rem 0;
}

.figure img {
  width: 100%;
  height: 28rem;
  object-fit: cover;
  border-radius: 1.4rem 2.2rem 1.2rem 2rem;
}

.figure::after {
  content: "";
  position: absolute;
  inset: 0.85rem 0 0 0.85rem;
  border: 1px solid rgba(232, 210, 160, 0.55);
  border-radius: 2rem 1.2rem 2.1rem 1.3rem;
  box-shadow:
    0 0 28px rgba(212, 179, 106, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.08);
  z-index: -1;
}

.lead {
  font-size: 1.15rem;
}

.card-grid,
.req-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card,
.req,
.coverage,
.disclaimer,
.address-card,
.form,
.leader {
  position: relative;
  background:
    radial-gradient(20rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.16), transparent 42%),
    var(--glass);
  border: 1px solid rgba(232, 210, 160, 0.28);
  border-radius: 1.5rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px) saturate(1.4);
  overflow: hidden;
}

.card,
.req {
  padding: 1.35rem 1.25rem 1.2rem;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.card:hover,
.req:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 210, 160, 0.6);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    0 24px 48px rgba(0, 0, 0, 0.28);
}

.card h3,
.req h3,
.leader h3,
.address-card h2,
.form h2,
.coverage strong {
  color: white;
}

.card h3,
.req h3 {
  margin: 0.55rem 0 0.35rem;
  font-size: 1.45rem;
  line-height: 1.15;
}

.idx {
  display: inline-grid;
  place-items: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  background: rgba(7, 20, 34, 0.55);
  border: 1px solid rgba(232, 210, 160, 0.35);
  border-radius: 999px;
  color: var(--gold-text);
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.band {
  position: relative;
  margin: 0.5rem clamp(0.75rem, 2.4vw, 1.6rem);
  border-radius: 3rem 1.8rem 3.4rem 2.2rem;
  background:
    radial-gradient(28rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.1), transparent 46%),
    linear-gradient(160deg, rgba(8, 24, 44, 0.62), rgba(16, 40, 72, 0.38));
  color: rgba(255, 252, 247, 0.92);
  padding: 5.25rem 0;
  border: 1px solid rgba(232, 210, 160, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 60px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(16px) saturate(1.35);
  overflow: hidden;
}

.ticks {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.ticks li {
  position: relative;
  padding-left: 1.35rem;
}

.ticks li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 10px rgba(212, 179, 106, 0.7);
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.ticks.two {
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem 2rem;
}

.band .ticks {
  margin-top: 1.5rem;
}

.page-hero {
  position: relative;
  min-height: 22rem;
  display: grid;
  align-items: end;
  color: white;
  background: var(--navy);
  isolation: isolate;
  overflow: hidden;
  margin: 1rem 0.85rem 0;
  border-radius: 1.8rem 1.8rem 40% 40% / 1.8rem 1.8rem 3.2rem 3.2rem;
}

.page-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(7, 20, 34, 0.9) 0%, rgba(7, 20, 34, 0.62) 50%, rgba(7, 20, 34, 0.25) 100%);
}

.page-hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--wrap), calc(100% - 2.5rem));
  margin-left: max(1.25rem, calc((100% - var(--wrap)) / 2));
  padding: 4.5rem 0 4rem;
}

.page-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  max-width: min(14ch, 100%);
}

.section-follow {
  padding-top: 0;
}

.glance {
  margin: 0;
  position: relative;
  background:
    radial-gradient(26rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.12), transparent 46%),
    var(--glass);
  border: 1px solid rgba(232, 210, 160, 0.24);
  border-radius: 1.8rem;
  padding: 0.4rem 1.2rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(18px) saturate(1.4);
}

.glance-row {
  display: grid;
  grid-template-columns: minmax(14rem, 22rem) 1fr;
  gap: 1.25rem;
  align-items: baseline;
  padding: 1.15rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

.glance-row:last-child {
  border-bottom: 0;
}

.glance-row dt {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
  color: white;
}

.glance-row dd {
  margin: 0;
  color: var(--ink);
}

.note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.statement {
  margin: 0 0 1rem;
  padding: 0;
  border: 0;
}

.statement p {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.35;
  color: white;
}

.disclaimer {
  color: white;
  padding: 1.35rem 1.35rem 1.2rem;
  border-left: 0;
  border-radius: 1.4rem 1.4rem 2rem 1.1rem;
}

.disclaimer strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--gold-text);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.disclaimer p:last-child {
  margin-bottom: 0;
}

.leader {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.25rem;
  align-items: center;
  padding: 1.4rem;
}

.leader .idx {
  width: 3rem;
  height: 3rem;
  font-size: 0.85rem;
}

.leader h3 {
  margin: 0;
  font-size: 2rem;
}

.leader p {
  margin: 0.15rem 0 0;
  color: var(--muted);
}

.coverage {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 1.5rem;
  border-radius: 2rem 1.4rem 2.2rem 1.6rem;
}

.coverage strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.05;
  font-weight: 500;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: start;
}

.address-card,
.form {
  padding: 1.5rem;
}

.address-card h2,
.form h2 {
  margin: 0 0 0.75rem;
  font-size: 2.2rem;
}

.address-card address {
  font-style: normal;
  margin-bottom: 1rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 700;
  font-size: 0.92rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(232, 210, 160, 0.32);
  background: rgba(6, 16, 24, 0.45);
  color: white;
  font: inherit;
  padding: 0.75rem 0.8rem;
  min-height: 2.9rem;
  border-radius: 0.9rem;
  scroll-margin-top: 6rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
}

.error {
  min-height: 1.1rem;
  margin: 0;
  color: var(--danger);
  font-size: 0.88rem;
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  font-size: 0.98rem;
  scroll-margin-bottom: 2rem;
}

.form-status.is-error { color: var(--danger); }
.form-status.is-ok { color: var(--ok); }

.form-help {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.site-footer {
  background:
    radial-gradient(30rem circle at var(--mx) var(--my), rgba(255, 255, 255, 0.08), transparent 46%),
    linear-gradient(180deg, rgba(7, 20, 34, 0.15), rgba(7, 20, 34, 0.55));
  color: rgba(255, 252, 247, 0.84);
  padding: 3rem 0 1.5rem;
  margin: 1rem 0.85rem 0;
  border: 1px solid rgba(232, 210, 160, 0.18);
  border-bottom: 0;
  border-radius: 3rem 3rem 0 0;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(18px) saturate(1.3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 0.8fr;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(232, 210, 160, 0.2);
}

.footer-brand {
  margin: 0 0 0.4rem;
  color: white;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-label {
  margin: 0 0 0.35rem;
  color: var(--gold-text);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 700;
}

.footer-nav {
  display: grid;
  align-content: start;
  gap: 0.35rem;
}

.footer-nav a {
  color: white;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--gold-text);
}

.footer-note,
.footer-meta {
  font-size: 0.88rem;
  color: rgba(255, 252, 247, 0.68);
}

.footer-note {
  margin: 1.25rem 0 0.4rem;
  max-width: 70rem;
}

.footer-meta {
  margin: 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.js .reveal.is-in {
  opacity: 1;
  transform: none;
}

.js .card.reveal.is-in:hover,
.js .req.reveal.is-in:hover,
.card:hover,
.req:hover {
  transform: translateY(-6px);
}

@keyframes liquid-drift {
  0% { transform: translate3d(-6%, -4%, 0) scale(1.08); }
  50% { transform: translate3d(3%, 2%, 0) scale(1.18); }
  100% { transform: translate3d(7%, 5%, 0) scale(1.12); }
}

@keyframes ken-burns {
  from { transform: scale(1.08) translate3d(0, 0, 0); }
  to { transform: scale(1.16) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 980px) {
  .card-grid,
  .req-grid,
  .stat-grid,
  .footer-grid,
  .split,
  .split-reverse,
  .contact-layout,
  .coverage,
  .ticks.two {
    grid-template-columns: 1fr 1fr;
  }

  .stat:nth-child(odd) { border-left: 0; }
  .stat:nth-child(1),
  .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split,
  .split-reverse,
  .contact-layout,
  .coverage,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    top: 0.4rem;
    width: min(var(--wrap), calc(100% - 1rem));
    border-radius: 1.4rem;
  }

  .nav-toggle { display: inline-flex; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 0.4rem);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: rgba(7, 20, 34, 0.88);
    border: 1px solid rgba(232, 210, 160, 0.24);
    border-radius: 1.2rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 18px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(22px) saturate(1.4);
    padding: 0.4rem 0.75rem 0.9rem;
  }

  .site-nav.is-open { display: flex; }

  .site-nav a {
    padding: 0.8rem 0.6rem;
    border-bottom: 1px solid rgba(255, 252, 247, 0.08);
    border-radius: 0;
  }
}

@media (max-width: 700px) {
  .wrap { width: min(var(--wrap), calc(100% - 1.75rem)); }
  .hero,
  .page-hero { margin-inline: 0.55rem; border-radius: 1.3rem 1.3rem 2.2rem 2.2rem; }
  .hero-copy,
  .page-hero-copy { width: min(var(--wrap), calc(100% - 1.75rem)); margin-left: auto; margin-right: auto; }
  .stat-wrap { margin-top: -2rem; }
  .card-grid,
  .req-grid,
  .stat-grid,
  .glance-row,
  .ticks.two {
    grid-template-columns: 1fr;
  }
  .stat { border-left: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .section,
  .band { padding: 3.5rem 0; }
  .band,
  .site-footer { margin-inline: 0.55rem; }
  .figure img { height: 16rem; }
  .hero-copy { padding: 3.5rem 0 5rem; }
  .leader { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal,
  .js .reveal.is-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
  body::before,
  body::after,
  .hero::before,
  .page-hero::before,
  .hero-media img,
  .page-hero-media img,
  .btn,
  .card,
  .req {
    animation: none;
    transition: none;
  }
  .hero-media img,
  .page-hero-media img {
    transform: none;
  }
  .btn:hover,
  .card:hover,
  .req:hover {
    transform: none;
  }
}

@media print {
  body::before,
  body::after { display: none !important; }
  .site-header,
  .nav-toggle,
  .hero-actions,
  .cta-row,
  .form,
  .skip { display: none !important; }
  .site-header { position: static; }
  body { background: white; color: black; }
  .hero, .page-hero, .band, .site-footer { color: black; background: white; }
  a { text-decoration: underline; }
}
