/* ============================================================
   NorthStar Advisory Partners — main.css
   Brand: Deep Navy #011634 · Gold #C9972E · Poppins + Source Serif 4
   ============================================================ */

/* ---------- Fonts (self-hosted, latin subsets) ---------- */
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/poppins-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/poppins-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap;
  src: url('../fonts/poppins-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/poppins-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4'; font-style: normal; font-weight: 400; font-display: swap;
  src: url('../fonts/source-serif-4-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4'; font-style: italic; font-weight: 400; font-display: swap;
  src: url('../fonts/source-serif-4-latin-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4'; font-style: normal; font-weight: 600; font-display: swap;
  src: url('../fonts/source-serif-4-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Source Serif 4'; font-style: normal; font-weight: 700; font-display: swap;
  src: url('../fonts/source-serif-4-latin-700-normal.woff2') format('woff2');
}

/* ---------- Design tokens ---------- */
:root {
  --navy: #011634;
  --navy-2: #011B40;
  --navy-3: #0A2A55;
  --gold: #C9972E;
  --gold-light: #D5A63A;
  --gold-dark: #8A5B18;
  --porcelain: #F4F6F8;
  --white: #FFFFFF;
  --ink: #17233A;
  --muted: #55617A;
  --line: rgba(1, 22, 52, 0.12);
  --line-gold: rgba(201, 151, 46, 0.45);

  --serif: 'Source Serif 4', Georgia, 'Times New Roman', serif;
  --sans: 'Poppins', 'Segoe UI', Arial, sans-serif;

  --w-max: 1180px;
  --w-narrow: 780px;
  --pad-x: clamp(1.25rem, 4vw, 2.5rem);
  --sec-y: clamp(4.5rem, 9vw, 7.5rem);

  --dur: 600ms;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; }

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

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--gold); color: var(--navy);
  padding: 0.75rem 1.25rem; font-weight: 600; z-index: 200;
}
.skip-link:focus { left: 0; }

.container { max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x); }
.container--narrow { max-width: var(--w-narrow); }

/* ---------- Typography ---------- */
h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.15; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.15rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p { max-width: 68ch; }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.1rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem; height: 1px;
  background: var(--gold);
}
.on-dark .eyebrow, .eyebrow--light { color: var(--gold-light); }

.lead { font-size: clamp(1.05rem, 1.5vw, 1.2rem); color: var(--muted); }
.on-dark .lead { color: rgba(255, 255, 255, 0.78); }

/* ---------- Star divider (signature motif) ---------- */
.star-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin: 0 auto;
  padding-block: clamp(2.5rem, 5vw, 4rem);
  max-width: var(--w-max); padding-inline: var(--pad-x);
}
.star-divider::before, .star-divider::after {
  content: ''; flex: 1; height: 1px;
  background: var(--line);
}
.star-divider svg { width: 18px; height: 18px; flex: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-family: var(--sans); font-weight: 600; font-size: 0.92rem;
  letter-spacing: 0.04em;
  padding: 0.95rem 1.9rem;
  border: 1px solid transparent;
  transition: background-color 250ms var(--ease), color 250ms var(--ease), border-color 250ms var(--ease), transform 250ms var(--ease);
}
.btn svg { width: 15px; height: 15px; transition: transform 250ms var(--ease); }
.btn:hover svg { transform: translateX(4px); }

.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-light); }

.btn--outline-light { border-color: rgba(255, 255, 255, 0.45); color: var(--white); }
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold-light); }

.btn--outline-navy { border-color: var(--navy); color: var(--navy); }
.btn--outline-navy:hover { background: var(--navy); color: var(--white); }

.link-more {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.9rem; letter-spacing: 0.05em;
  color: var(--gold-dark);
  border-bottom: 1px solid transparent;
  transition: color 250ms var(--ease);
}
.link-more svg { width: 14px; height: 14px; transition: transform 250ms var(--ease); }
.link-more:hover { color: var(--navy); }
.link-more:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset-inline: 0; top: 0; z-index: 100;
  background: rgba(1, 22, 52, 0.0);
  transition: background-color 300ms var(--ease), box-shadow 300ms var(--ease), padding 300ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(1, 22, 52, 0.96);
  box-shadow: 0 1px 0 rgba(201, 151, 46, 0.35);
}
@supports (backdrop-filter: blur(8px)) {
  .site-header.is-scrolled { background: rgba(1, 22, 52, 0.86); backdrop-filter: blur(8px); }
}
.header-inner {
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 1.1rem;
  transition: padding 300ms var(--ease);
}
.is-scrolled .header-inner { padding-block: 0.7rem; }
.brand img { width: clamp(190px, 22vw, 250px); height: auto; }

.primary-nav ul { display: flex; gap: clamp(1.1rem, 2.2vw, 2.1rem); align-items: center; }
.primary-nav a {
  font-size: 0.86rem; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.85);
  padding-block: 0.4rem;
  position: relative;
  transition: color 200ms var(--ease);
}
.primary-nav a::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 250ms var(--ease);
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a:hover::after, .primary-nav a[aria-current="page"]::after { transform: scaleX(1); }
.primary-nav .nav-cta {
  border: 1px solid var(--gold); color: var(--gold-light);
  padding: 0.55rem 1.2rem;
}
.primary-nav .nav-cta::after { display: none; }
.primary-nav .nav-cta:hover { background: var(--gold); color: var(--navy); }

.nav-toggle {
  display: none;
  background: none; border: 0;
  width: 44px; height: 44px;
  position: relative; z-index: 110;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ''; position: absolute; left: 10px;
  width: 24px; height: 2px; background: var(--white);
  transition: transform 250ms var(--ease), opacity 250ms var(--ease);
}
.nav-toggle span { top: 21px; }
.nav-toggle span::before { left: 0; top: -7px; }
.nav-toggle span::after { left: 0; top: 7px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .primary-nav {
    position: fixed; inset: 0;
    background: var(--navy);
    display: grid; place-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 300ms var(--ease), visibility 300ms var(--ease);
  }
  .primary-nav.is-open { opacity: 1; visibility: visible; }
  .primary-nav ul { flex-direction: column; gap: 1.6rem; text-align: center; }
  .primary-nav a { font-size: 1.15rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--navy-2) 0%, var(--navy) 62%);
  color: var(--white);
  overflow: hidden;
}
.hero--home {
  min-height: 92vh;
  display: flex; flex-direction: column; justify-content: center;
}
.hero--home .hero-content { width: 100%; }
.hero--home .hero-meta { margin-top: auto; width: 100%; }
.hero--page { padding-top: clamp(8.5rem, 16vw, 11.5rem); padding-bottom: clamp(3.5rem, 7vw, 6rem); }

.hero-star {
  position: absolute; right: -8%; top: 50%;
  width: clamp(420px, 52vw, 780px);
  transform: translateY(-50%);
  opacity: 0.5;
  pointer-events: none;
}
.hero--page .hero-star {
  width: clamp(280px, 30vw, 420px);
  right: -4%; top: 58%;
  opacity: 0.38;
}

.hero-content { position: relative; z-index: 2; padding-block: clamp(7rem, 14vw, 9rem) clamp(4rem, 8vw, 6rem); }
.hero--page .hero-content { padding-block: 0; }
.hero h1 { color: var(--white); max-width: 15ch; }
.hero h1 .gold { color: var(--gold-light); }
.hero .tagline {
  font-family: var(--sans); font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  font-size: 0.8rem; color: var(--gold-light);
  margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.9rem;
}
.tagline .star-glyph { width: 16px; height: 16px; }
.hero .lead { margin-top: 1.6rem; max-width: 54ch; }
.hero-actions { margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem; }

.hero-meta {
  position: relative; z-index: 2;
  border-top: 1px solid rgba(201, 151, 46, 0.35);
}
.hero-meta-inner {
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x);
  display: flex; flex-wrap: wrap; gap: 0.4rem 2.8rem;
  padding-block: 1.1rem;
  font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
}

/* ---------- Sections ---------- */
.section { padding-block: var(--sec-y); }
.section--porcelain { background: var(--porcelain); }
.section--navy { background: linear-gradient(150deg, var(--navy-2), var(--navy)); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.section-head { max-width: 760px; margin-bottom: clamp(2.5rem, 5vw, 4rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .eyebrow::before { display: none; }
.section-head--center p { margin-inline: auto; }
.section-head p { margin-top: 1rem; color: var(--muted); }
.section--navy .section-head p { color: rgba(255, 255, 255, 0.75); }

/* ---------- Method (Assess → Design → Execute) ---------- */
.method { position: relative; }
.method-track {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3.5vw, 3rem);
  position: relative;
}
.method-track::before {
  content: '';
  position: absolute; top: 26px; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-gold) 12%, var(--line-gold) 88%, transparent);
}
.method-step { position: relative; text-align: center; padding-top: 0.25rem; }
.method-node {
  width: 52px; height: 52px; margin: 0 auto 1.4rem;
  display: grid; place-content: center;
  background: var(--navy);
  border: 1px solid var(--gold);
  border-radius: 50%;
  position: relative; z-index: 2;
}
.method-node svg { width: 20px; height: 20px; }
.method-step .step-num {
  font-family: var(--serif); font-size: 0.85rem; color: var(--gold-dark);
  letter-spacing: 0.3em; display: block; margin-bottom: 0.4rem;
}
.section--navy .method-node { background: var(--gold); border-color: var(--gold); }
.method-step h3 { margin-bottom: 0.5rem; letter-spacing: 0.02em; }
.method-step p { font-size: 0.95rem; color: var(--muted); margin-inline: auto; max-width: 30ch; }
.section--navy .method-step p { color: rgba(255, 255, 255, 0.72); }
@media (max-width: 720px) {
  .method-track { grid-template-columns: 1fr; gap: 2.5rem; }
  .method-track::before { display: none; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid; gap: clamp(1.25rem, 2.5vw, 2rem);
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  display: flex; flex-direction: column;
  transition: transform 300ms var(--ease), box-shadow 300ms var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px -24px rgba(1, 22, 52, 0.28); }
.card .card-kicker {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.26em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 0.9rem;
}
.card h3 { margin-bottom: 0.9rem; }
.card p { font-size: 0.96rem; color: var(--muted); }
.card ul { margin-top: 1.1rem; display: grid; gap: 0.65rem; }
.card li {
  position: relative; padding-left: 1.35rem;
  font-size: 0.93rem; color: var(--ink); line-height: 1.55;
}
.card li::before {
  content: '';
  position: absolute; left: 0; top: 0.62em;
  width: 0.6rem; height: 1px; background: var(--gold);
}
.card .link-more { margin-top: auto; padding-top: 1.5rem; }

.section--navy .card { background: rgba(255, 255, 255, 0.035); border-color: rgba(255, 255, 255, 0.12); border-top-color: var(--gold); }
.section--navy .card li { color: rgba(255, 255, 255, 0.85); }
.section--navy .card p { color: rgba(255, 255, 255, 0.7); }

/* ---------- Differentiators ---------- */
.diff-grid {
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}
.diff-item {
  padding: clamp(1.75rem, 3vw, 2.6rem);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.diff-item .diff-mark { width: 22px; height: 22px; margin-bottom: 1.2rem; }
.diff-item h3 { font-size: 1.12rem; font-family: var(--sans); font-weight: 600; color: var(--white); margin-bottom: 0.6rem; line-height: 1.45; }
.diff-item p { font-size: 0.92rem; color: rgba(255, 255, 255, 0.68); }

/* ---------- Stats ---------- */
.stats-band { border-block: 1px solid var(--line); }
.stats-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(2rem, 4vw, 3rem);
  text-align: center;
}
.stat .stat-value {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(2.6rem, 5vw, 3.7rem);
  color: var(--navy); line-height: 1;
}
.stat .stat-value .suffix { color: var(--gold); }
.stat .stat-label {
  margin-top: 0.7rem; font-size: 0.84rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}

/* ---------- Split (text + image) ---------- */
.split {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.split--rev .split-media { order: -1; }
.split-media { position: relative; z-index: 0; }
.split-media img, .split-media .media-frame {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover;
  position: relative; z-index: 1;
}
.split-media::after {
  content: '';
  position: absolute; inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  border: 1px solid var(--line-gold);
  z-index: 0;
}
.split-body p + p { margin-top: 1rem; }
.split-body .btn, .split-body .link-more { margin-top: 1.8rem; }
@media (max-width: 860px) {
  .split { grid-template-columns: 1fr; }
  .split--rev .split-media { order: 0; }
  .split-media img, .split-media .media-frame { aspect-ratio: 16 / 10; }
}

/* ---------- Industries strip ---------- */
.industry-list {
  display: flex; flex-wrap: wrap; gap: 0.8rem;
}
.industry-list li {
  border: 1px solid var(--line);
  padding: 0.7rem 1.4rem;
  font-size: 0.88rem; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  background: var(--white);
  transition: border-color 250ms var(--ease), color 250ms var(--ease);
}
.industry-list li:hover { border-color: var(--gold); color: var(--gold-dark); }

/* ---------- Client columns ---------- */
.client-grid {
  display: grid; gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}
.client-col h3 {
  font-family: var(--sans); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-dark);
  padding-bottom: 0.8rem; margin-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.client-col li { padding-block: 0.45rem; font-size: 0.97rem; color: var(--ink); }
.section--navy .client-col li { color: rgba(255,255,255,0.85); }
.section--navy .client-col h3 { color: var(--gold-light); border-color: rgba(255,255,255,0.15); }
.client-note { margin-top: 2.2rem; font-size: 0.85rem; font-style: italic; color: var(--muted); }

/* ---------- Engagements ---------- */
.engagement-list { display: grid; gap: 0; border-top: 1px solid var(--line); }
.engagement {
  display: grid; gap: 1rem 3rem;
  grid-template-columns: minmax(200px, 320px) 1fr;
  padding-block: clamp(1.75rem, 3.5vw, 2.75rem);
  border-bottom: 1px solid var(--line);
}
.engagement h3 { font-size: 1.3rem; }
.engagement .eng-index {
  display: block;
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.26em; color: var(--gold-dark);
  margin-bottom: 0.7rem;
}
.engagement p { color: var(--muted); font-size: 0.98rem; }
@media (max-width: 720px) { .engagement { grid-template-columns: 1fr; gap: 0.5rem; } }

/* ---------- Values / snapshot tables ---------- */
.snapshot {
  display: grid; gap: 0;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  border: 1px solid var(--line);
  background: var(--white);
}
.snapshot > div {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.snapshot dt {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 0.45rem;
}
.snapshot dd { font-size: 0.97rem; color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-3) 100%);
  color: var(--white);
  position: relative; overflow: hidden;
}
.cta-band .hero-star { width: clamp(260px, 30vw, 420px); opacity: 0.35; right: -6%; }
.cta-inner {
  position: relative; z-index: 2;
  padding-block: clamp(4rem, 8vw, 6.5rem);
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x);
  display: grid; gap: 2rem;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.cta-inner h2 { color: var(--white); max-width: 22ch; }
.cta-inner p { color: rgba(255,255,255,0.75); margin-top: 0.8rem; }
@media (max-width: 780px) { .cta-inner { grid-template-columns: 1fr; } }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid; gap: clamp(2.5rem, 5vw, 4.5rem);
  grid-template-columns: minmax(280px, 420px) 1fr;
  align-items: start;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card { display: grid; gap: 1.75rem; }
.contact-item .ci-label {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: 0.3rem;
}
.contact-item a, .contact-item span { font-size: 1.05rem; color: var(--navy); font-weight: 500; }
.contact-item a:hover { color: var(--gold-dark); }

.form-grid { display: grid; gap: 1.4rem; grid-template-columns: 1fr 1fr; }
.form-field { display: grid; gap: 0.45rem; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; color: var(--navy); }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 0.96rem;
  color: var(--ink);
  padding: 0.85rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  width: 100%;
  transition: border-color 200ms var(--ease);
}
.form-field textarea { min-height: 150px; resize: vertical; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.form-status { margin-top: 1.2rem; font-size: 0.95rem; font-weight: 500; display: none; }
.form-status.is-visible { display: block; }
.form-status--success { color: #1D6B3F; }
.form-status--error { color: #A02A2A; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  border-top: 3px solid var(--gold);
}
.footer-main {
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2.5rem;
  display: grid; gap: clamp(2rem, 4vw, 3.5rem);
  grid-template-columns: minmax(260px, 1.3fr) 1fr 1fr;
}
.footer-brand img { width: 230px; margin-bottom: 1.3rem; }
.footer-brand p { font-size: 0.9rem; max-width: 38ch; }
.footer-col h3 {
  font-family: var(--sans); font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.1rem;
}
.footer-col li { padding-block: 0.32rem; }
.footer-col a { font-size: 0.92rem; transition: color 200ms var(--ease); }
.footer-col a:hover { color: var(--gold-light); }
.footer-col address { font-style: normal; font-size: 0.92rem; line-height: 2; }
.footer-col address a:hover { color: var(--gold-light); }
.footer-legal {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-legal-inner {
  max-width: var(--w-max); margin-inline: auto; padding-inline: var(--pad-x);
  padding-block: 1.3rem;
  display: flex; flex-wrap: wrap; gap: 0.5rem 2rem;
  justify-content: space-between;
  font-size: 0.78rem; letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}
@media (max-width: 820px) { .footer-main { grid-template-columns: 1fr; } }

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: 100ms; }
.reveal-d2 { transition-delay: 200ms; }
.reveal-d3 { transition-delay: 300ms; }

/* Hero load-in */
.hero-content > * {
  opacity: 0; transform: translateY(20px);
  animation: heroIn 800ms var(--ease) forwards;
}
.hero-content > *:nth-child(1) { animation-delay: 120ms; }
.hero-content > *:nth-child(2) { animation-delay: 260ms; }
.hero-content > *:nth-child(3) { animation-delay: 400ms; }
.hero-content > *:nth-child(4) { animation-delay: 540ms; }
@keyframes heroIn { to { opacity: 1; transform: none; } }

/* ---------- Reduced motion ---------- */
@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;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-content > * { opacity: 1; transform: none; animation: none; }
}

/* ---------- Print ---------- */
@media print {
  .site-header, .site-footer, .cta-band, .nav-toggle { display: none; }
  .hero { background: none; color: var(--navy); }
  .hero h1 { color: var(--navy); }
}
