/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { background: none; border: 0; font: inherit; cursor: pointer; color: inherit; }
input, select, textarea { font: inherit; color: inherit; }
hr { border: 0; border-top: 1px solid rgba(255,255,255,0.12); }

/* ---------- Tokens ---------- */
:root {
  /* Type */
  --font-display: 'Instrument Serif', 'Times New Roman', Georgia, serif;
  --font-body: 'Poppins', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, sans-serif;

  --text-xs:   clamp(0.75rem, 0.70rem + 0.2vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.83rem + 0.25vw, 0.975rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1.05rem + 0.4vw, 1.375rem);
  --text-xl:   clamp(1.5rem, 1.3rem + 0.9vw, 2rem);
  --display-sm:clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  --display-md:clamp(2.75rem, 1.5rem + 4.5vw, 5rem);
  --display-lg:clamp(3.25rem, 1rem + 8vw, 7.5rem);

  /* Spacing */
  --s-1: .25rem; --s-2: .5rem; --s-3: .75rem; --s-4: 1rem;
  --s-5: 1.25rem; --s-6: 1.5rem; --s-8: 2rem; --s-10: 2.5rem;
  --s-12: 3rem; --s-16: 4rem; --s-20: 5rem; --s-24: 6rem; --s-32: 8rem;

  /* Palette — MEAS navy + sage + warm cream */
  --c-navy:        #0A1628;
  --c-primary:     #003052;
  --c-primary-2:   #002240;
  --c-accent:      #2D8A6E;
  --c-accent-2:    #247A60;
  --c-bg:          #FAF8F3;      /* warm off-white */
  --c-surface:     #F2EEE4;      /* cream surface */
  --c-surface-2:   #E8E3D5;
  --c-divider:     #DED7C6;
  --c-ink:         #141414;
  --c-ink-soft:    #4A4A4A;
  --c-ink-muted:   #7B7668;
  --c-inverse:     #FFFFFF;

  /* Radii + motion */
  --r-sm: 2px;
  --r-md: 6px;
  --r-lg: 14px;
  --ease: cubic-bezier(.2, .7, .2, 1);
  --t-1: 160ms var(--ease);
  --t-2: 320ms var(--ease);
  --t-3: 700ms var(--ease);

  /* Layout */
  --container: 1280px;
  --gutter: var(--s-8);
}

html { overflow-x: clip; }
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  overflow-x: clip;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
@media (max-width: 768px) {
  :root { --gutter: 1.25rem; }
}

/* ---------- Typography ---------- */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--c-navy);
  font-size: var(--display-md);
}
.display--md { font-size: var(--display-sm); line-height: 1.05; }
.display--lg { font-size: var(--display-lg); }
.display em {
  font-style: italic;
  color: var(--c-accent);
  font-feature-settings: "ss01";
}
.hero .display em { color: var(--c-accent); }

.eyebrow, .label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-ink-muted);
  margin-bottom: var(--s-5);
}
.label { color: var(--c-primary); }

.lede {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--c-ink-soft);
  line-height: 1.55;
  max-width: 42ch;
  margin-top: var(--s-6);
}

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--c-navy);
  --btn-fg: var(--c-inverse);
  --btn-bd: var(--c-navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-2);
  padding: 0.95rem 1.6rem;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border: 1px solid var(--btn-bd);
  border-radius: 999px;
  cursor: pointer;
  transition: transform var(--t-1), background var(--t-1), color var(--t-1), border-color var(--t-1), box-shadow var(--t-1);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn--primary { --btn-bg: var(--c-navy); --btn-bd: var(--c-navy); --btn-fg: #fff; }
.btn--primary:hover { --btn-bg: var(--c-primary); --btn-bd: var(--c-primary); }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--c-navy); --btn-bd: var(--c-navy);
}
.btn--ghost:hover { --btn-bg: var(--c-navy); --btn-fg: #fff; }

.btn--light { --btn-bg: #fff; --btn-fg: var(--c-navy); --btn-bd: #fff; }
.btn--light.btn--ghost {
  --btn-bg: transparent; --btn-fg: #fff; --btn-bd: rgba(255,255,255,.5);
}
.btn--light.btn--ghost:hover { --btn-bg: #fff; --btn-fg: var(--c-navy); --btn-bd: #fff; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250, 248, 243, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  transition: box-shadow var(--t-2), background var(--t-2);
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  box-shadow: 0 8px 40px -24px rgba(10,22,40,0.2);
  background: rgba(250,248,243,0.95);
  border-bottom-color: var(--c-divider);
}
.nav__inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 84px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--c-navy);
}
.nav__mark { color: var(--c-navy); display: inline-flex; }
.nav__wordmark {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
}

.nav__menu {
  display: flex; align-items: center; gap: var(--s-8);
}
.nav__menu ul {
  display: flex; align-items: center; gap: var(--s-8);
}
.nav__menu a {
  font-size: var(--text-sm); font-weight: 500;
  color: var(--c-ink);
  position: relative; padding: 6px 0;
  transition: color var(--t-1);
}
.nav__menu ul a::after {
  content: ""; position: absolute;
  left: 0; bottom: 0; height: 1px; width: 0;
  background: var(--c-navy);
  transition: width var(--t-2);
}
.nav__menu ul a:hover { color: var(--c-primary); }
.nav__menu ul a:hover::after { width: 100%; }

.nav__cta {
  padding: 0.7rem 1.2rem;
  border: 1px solid var(--c-navy);
  border-radius: 999px;
  background: var(--c-navy);
  color: #fff !important;
  transition: background var(--t-1), color var(--t-1);
  font-weight: 500;
}
.nav__cta:hover { background: var(--c-primary); }
.nav__cta::after { display: none !important; }

.nav__burger {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
  color: var(--c-navy);
}
.nav__burger span {
  width: 22px; height: 1.5px;
  background: currentColor;
  transition: transform var(--t-2), opacity var(--t-1);
  transform-origin: center;
}
.nav__burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  top: 84px;
  left: 0; right: 0;
  height: calc(100vh - 84px);
  background: var(--c-bg);
  padding: var(--s-10) var(--gutter);
  flex-direction: column;
  gap: var(--s-4);
  z-index: 70;
  overflow-y: auto;
}
.nav__mobile.active { display: flex; }
.nav__mobile a {
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1.15;
  color: var(--c-navy);
  padding: var(--s-3) 0;
  border-bottom: 1px solid var(--c-divider);
}
.nav__mobile a.nav__cta--mobile {
  margin-top: var(--s-4);
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  background: var(--c-navy);
  color: #fff;
  border-radius: 999px;
  text-align: center;
  padding: 1rem 1.5rem;
  border-bottom: 0;
}
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 5.5rem) 0 0;
  overflow: hidden;
}
.hero__grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  min-height: min(72vh, 760px);
}
.hero__text { padding: var(--s-8) 0; }
.hero__text .display {
  font-size: clamp(3rem, 2rem + 5vw, 6.25rem);
  letter-spacing: -0.025em;
}
.hero__text .display em { color: var(--c-primary); }
.hero__actions {
  display: flex; gap: var(--s-4); flex-wrap: wrap;
  margin-top: var(--s-10);
}
.hero__media { position: relative; }
.hero__media-inner {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 30px 80px -50px rgba(10,22,40,0.35);
}
.hero__media-inner--split {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}
.hero__tile {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
  box-shadow: 0 20px 50px -35px rgba(10,22,40,0.4);
  margin: 0;
}
.hero__tile img {
  width: 100%; height: 100%; object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 1.2s var(--ease);
}
.hero__tile::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,48,82,0) 55%, rgba(0,48,82,0.18) 100%);
  pointer-events: none;
}
[data-reveal].is-visible .hero__tile img { transform: scale(1); }

/* Marquee */
.hero__marquee {
  margin-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--c-divider);
  border-bottom: 1px solid var(--c-divider);
  padding: 1rem 0;
  overflow: hidden;
  background: var(--c-surface);
}
.hero__marquee-track {
  display: inline-flex; gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 42s linear infinite;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.6rem);
  color: var(--c-navy);
}
.hero__marquee-track span { flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: var(--s-10);
    min-height: auto;
  }
  .hero__media-inner { aspect-ratio: 16/10; }
}

/* ---------- Intro ---------- */
.intro {
  padding: clamp(4rem, 8vw, 8rem) 0 clamp(1rem, 3vw, 3rem);
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
}
.intro__body p + p { margin-top: var(--s-4); }
.intro__body p { color: var(--c-ink-soft); line-height: 1.8; }
@media (max-width: 900px) {
  .intro__grid { grid-template-columns: 1fr; gap: var(--s-8); }
}

/* ---------- Section generic ---------- */
.section { padding: clamp(4rem, 8vw, 8rem) 0; }
.section__head {
  max-width: 780px;
  margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.section__head .label { margin-bottom: var(--s-4); }
.section__intro {
  margin-top: var(--s-6);
  font-size: var(--text-base);
  color: var(--c-ink-soft);
  max-width: 52ch;
  line-height: 1.75;
}

/* Services */
.section--services { background: var(--c-bg); }
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.75rem);
}
.card {
  position: relative;
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--c-surface);
  border: 1px solid transparent;
  border-radius: var(--r-md);
  transition: transform var(--t-2), background var(--t-2), border-color var(--t-2);
  overflow: hidden;
}
.card::before {
  content: ""; position: absolute;
  inset: 0; bottom: auto;
  height: 1px; background: transparent;
  transition: background var(--t-2);
}
.card:hover {
  background: var(--c-bg);
  border-color: var(--c-divider);
  transform: translateY(-4px);
}
.card__icon {
  width: 52px; height: 52px;
  border-radius: var(--r-sm);
  background: #fff;
  border: 1px solid var(--c-divider);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary);
  margin-bottom: var(--s-6);
  transition: background var(--t-2), color var(--t-2);
}
.card:hover .card__icon {
  background: var(--c-navy);
  color: #fff;
  border-color: var(--c-navy);
}
.card__icon svg { width: 24px; height: 24px; }
.card__title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  color: var(--c-navy);
  margin-bottom: var(--s-3);
  letter-spacing: -0.01em;
}
.card__text {
  font-size: var(--text-sm);
  color: var(--c-ink-soft);
  line-height: 1.7;
}
@media (max-width: 900px) { .services { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services { grid-template-columns: 1fr; } }

/* Process */
.section--process {
  background: var(--c-navy);
  color: #fff;
}
.section--process .label { color: rgba(255,255,255,0.6); }
.section--process .display { color: #fff; }
.section--process .display em { color: #B5E4D1; }
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.process__step { padding-top: var(--s-6); position: relative; }
.process__step::before {
  content: ""; position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: rgba(255,255,255,0.18);
}
.process__num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 2rem + 3vw, 4.5rem);
  line-height: 1;
  color: rgba(255,255,255,0.35);
  margin-bottom: var(--s-5);
  font-style: italic;
}
.process__step h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: var(--s-3);
  color: #fff;
}
.process__step p {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  line-height: 1.75;
}
@media (max-width: 800px) { .process { grid-template-columns: 1fr; gap: var(--s-10); } }

/* About */
.section--about { background: var(--c-bg); }
.about {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.about__text .display { margin-bottom: var(--s-8); }
.about__text p {
  color: var(--c-ink-soft);
  line-height: 1.8;
  margin-top: var(--s-5);
}
.about__text a {
  color: var(--c-primary);
  border-bottom: 1px solid currentColor;
  transition: color var(--t-1);
}
.about__text a:hover { color: var(--c-accent); }

.about__card {
  background: var(--c-navy);
  color: #fff;
  padding: clamp(2rem, 3vw, 2.75rem);
  border-radius: var(--r-lg);
  position: sticky;
  top: 120px;
}
.about__card-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: var(--s-4);
}
.about__card-name {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  margin-bottom: var(--s-2);
  letter-spacing: -0.01em;
}
.about__card-role {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s-6);
}
.about__card-links {
  display: flex; flex-direction: column; gap: var(--s-2);
  margin-bottom: var(--s-6);
}
.about__card-links a {
  font-size: var(--text-sm);
  color: #B5E4D1;
  transition: color var(--t-1);
}
.about__card-links a:hover { color: #fff; }
.about__card hr { margin: var(--s-2) 0 var(--s-6); }
.about__stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-5);
}
.about__stats dt {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.about__stats dd {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: #fff;
  line-height: 1.2;
}
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__card { position: static; }
}

/* CTA band */
.cta-band {
  background: var(--c-primary);
  color: #fff;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -50%; right: -10%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(45,138,110,0.3) 0%, rgba(45,138,110,0) 70%);
  pointer-events: none;
}
.cta-band__inner {
  max-width: 880px;
  text-align: center;
  margin: 0 auto;
  position: relative;
}
.cta-band .display {
  color: #fff;
  font-size: clamp(2.5rem, 1.5rem + 4vw, 4.5rem);
  margin-bottom: var(--s-5);
}
.cta-band .display em { color: #B5E4D1; }
.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: var(--text-lg);
  margin-bottom: var(--s-10);
  max-width: 56ch;
  margin-left: auto; margin-right: auto;
  font-weight: 300;
}
.cta-band__actions {
  display: flex; justify-content: center; gap: var(--s-4); flex-wrap: wrap;
}

/* Contact */
.section--contact { background: var(--c-surface); }
.contact {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
.contact__form {
  display: flex; flex-direction: column;
  gap: var(--s-5);
  background: var(--c-bg);
  padding: clamp(1.75rem, 3vw, 2.75rem);
  border-radius: var(--r-lg);
  border: 1px solid var(--c-divider);
}
.field { display: flex; flex-direction: column; gap: var(--s-2); }
.field label {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--c-ink);
}
.field input,
.field select,
.field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--c-divider);
  border-radius: var(--r-sm);
  background: #fff;
  color: var(--c-ink);
  font-size: var(--text-base);
  transition: border-color var(--t-1), box-shadow var(--t-1);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(10,22,40,0.08);
}
.field textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-body);
}
.contact__form .btn {
  align-self: flex-start;
  margin-top: var(--s-2);
}
.field__status {
  font-size: var(--text-sm);
  min-height: 1.25em;
}
.field__status--ok { color: var(--c-accent); }
.field__status--err { color: #B24A4A; }

.contact__info {
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: var(--c-navy);
  color: #fff;
  border-radius: var(--r-lg);
}
.contact__brand {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: var(--s-6);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--s-6);
  color: #fff;
}
.contact__brand h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 2px;
}
.contact__brand p {
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.6);
}
.contact__list {
  display: flex; flex-direction: column; gap: var(--s-4);
}
.contact__list li {
  display: flex; align-items: flex-start; gap: var(--s-3);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.85);
}
.contact__list svg {
  color: #B5E4D1;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact__list a { color: inherit; border-bottom: 1px solid rgba(255,255,255,0.3); }
.contact__list a:hover { border-color: #fff; }
@media (max-width: 900px) {
  .contact { grid-template-columns: 1fr; }
}

/* Footer */
.footer {
  background: var(--c-navy);
  color: #fff;
  padding: clamp(4rem, 6vw, 6rem) 0 var(--s-8);
  position: relative;
  overflow: hidden;
}
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: clamp(2rem, 4vw, 5rem);
  padding-bottom: clamp(2rem, 4vw, 4rem);
  position: relative;
  z-index: 2;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  margin-bottom: var(--s-4);
  color: #fff;
}
.footer__about p {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: rgba(255,255,255,0.6);
  max-width: 380px;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--s-5);
}
.footer__col ul { display: flex; flex-direction: column; gap: var(--s-3); }
.footer__col li, .footer__col a {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.8);
  transition: color var(--t-1);
}
.footer__col a:hover { color: #fff; }

.footer__wordmark {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(7rem, 4rem + 20vw, 22rem);
  line-height: 0.85;
  color: rgba(255,255,255,0.06);
  letter-spacing: -0.04em;
  user-select: none;
  padding: 0;
  margin: 0 auto var(--s-8);
  pointer-events: none;
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: var(--s-6);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s-3);
  font-size: var(--text-xs);
  color: rgba(255,255,255,0.5);
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) {
  .footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: left; }
}

/* ---------- Reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--t-3), transform var(--t-3);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; }
  .hero__marquee-track { animation: none; }
  * { transition: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Selection + focus ---------- */
::selection { background: var(--c-navy); color: #fff; }
:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 2px; }
