/* ═══════════════════════════════════════════════════════════
   Avantinfo — style.css
   ═══════════════════════════════════════════════════════════ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,400;1,500&family=DM+Sans:wght@300;400;500&display=swap');

/* ── Variables ────────────────────────────────────────────── */
:root {
  --navy:        #0f1f38;
  --navy-deep:   #091628;
  --cream:       #f8f5f0;
  --white:       #ffffff;
  --gold:        #b8965a;
  --gold-dim:    rgba(184,150,90,0.45);
  --text:        #3a3a3a;
  --text-light:  #7a8490;
  --border:      #ddd8d0;
  --border-dark: rgba(255,255,255,0.07);
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, -apple-system, sans-serif;
  --max-width:   1100px;
  --section-pad: 56px 24px;
  --nav-height:  84px;
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
h1,h2,h3,h4,h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}
h1 {
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin-bottom: 12px;
}
h3 {
  font-size: 1.22rem;
  font-weight: 500;
  margin-bottom: 10px;
  letter-spacing: -0.005em;
}
h4 {
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.005em;
}
p {
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 14px;
  color: var(--text);
}
p:last-child { margin-bottom: 0; }

/* ── Navigation ───────────────────────────────────────────── */
nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(15, 31, 56, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(14px);
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img,
.nav-logo svg {
  height: 38px;
  width: auto;
  display: block;
  flex-shrink: 0;
}
/* Footer wordmark — all gold, full name */
.footer-wordmark {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.01em;
  line-height: 1;
  display: block;
}

/* Nav / fallback wordmark */
.nav-wordmark {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--white);
  letter-spacing: 0.01em;
  line-height: 1;
}
.nav-wordmark span { color: var(--gold); font-weight: 300; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  transition: color 0.22s;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right 0.28s cubic-bezier(0.22,1,0.36,1);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { right: 0; }

.nav-cta {
  padding: 9px 18px !important;
  border: 1px solid rgba(184,150,90,0.65) !important;
  color: var(--gold) !important;
  border-radius: 999px;
  transition: background 0.25s, border-color 0.25s, color 0.25s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: var(--navy) !important;
}
.nav-cta.active { color: var(--gold) !important; }

/* hide old placeholder */
.logo-placeholder { display: none !important; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: rgba(255,255,255,0.8);
  transition: all 0.3s;
}

/* ── Scroll Reveal ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1),
              transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

/* ── Common Layout ────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}
.section-label {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #b8965a;
  opacity: 1;
  margin-bottom: 10px;
  max-width: none;
}
.divider {
  width: 40px;
  height: 2px;
  background: #b8965a;
  margin-bottom: 18px;
}

/* ── Buttons ──────────────────────────────────────────────── */
.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}
.btn-primary:hover { background: #c9a86c; transform: translateY(-1px); }

.btn-gold {
  padding: 18px 40px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 18px rgba(184,150,90,0.35);
}
.btn-gold:hover { box-shadow: 0 6px 24px rgba(184,150,90,0.5); }

.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.82);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.55); color: var(--white); }

.btn-dark {
  display: inline-block;
  padding: 14px 32px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s;
}
.btn-dark:hover { background: #1a3258; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,0.18), transparent 34%),
    linear-gradient(135deg, #14244a 0%, #0f1f38 56%, #091628 100%);
  overflow: hidden;
  padding: calc(100px + env(safe-area-inset-top)) 24px 64px;
}
#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.6;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  font-size: clamp(0.9rem, 3.5vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--gold);
  margin-bottom: 16px;
  max-width: none;
  opacity: 1;
  white-space: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}
.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--white);
  max-width: 720px;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero-founding {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.72);
  margin-bottom: 18px;
  max-width: none;
}
.hero-sub {
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
  line-height: 1.75;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.hero-actions .btn-secondary {
  padding: 10px 18px;
  font-size: 0.8rem;
  border: 1px solid rgba(255,255,255,0.55);
  background: transparent;
  color: rgba(255,255,255,0.55);
}
.hero-actions .btn-secondary:hover {
  border: 1px solid rgba(255,255,255,0.9);
  color: rgba(255,255,255,0.9);
  background: transparent;
}
.hero-charts {
  position: relative;
  top: -10px;
  display: flex;
  justify-content: center;
}
.hero-charts svg {
  filter: drop-shadow(0 28px 48px rgba(0,0,0,0.28));
}

/* ── Statement / Pull Quote ───────────────────────────────── */
.statement {
  padding: 56px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--border);
}
.statement-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.statement-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.55;
  color: var(--navy);
  padding: 0 0 0 28px;
  border-left: 2px solid var(--gold);
  max-width: none;
  margin-bottom: 0;
  position: relative;
}
.statement-quote::before {
  content: '';
}
.quote-attribution {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.quote-attribution-name {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 2px;
  max-width: none;
}
.quote-attribution-title {
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 2px;
  max-width: none;
}
.quote-attribution-cred {
  font-size: 0.75rem;
  color: var(--text-light);
  max-width: none;
}
.statement-text p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text);
  max-width: none;
}

/* ── Services Grid (home preview) ─────────────────────────── */
.services-preview {
  padding: 56px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.section-header { margin-bottom: 28px; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border: 1px solid var(--border);
}
.service-card {
  padding: 28px 22px;
  transition: transform 0.3s cubic-bezier(0.22,1,0.36,1),
              box-shadow 0.3s ease,
              border-color 0.3s ease;
  border: 1px solid transparent;
  position: relative;
  background: var(--white);
}
.service-card + .service-card {
  border-left: 1px solid var(--border);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(15,31,56,0.1);
  border-color: var(--gold);
  z-index: 1;
}
.service-card-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}
.service-number {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  margin-bottom: 0;
}
.service-card h3 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--navy);
  line-height: 1.3;
  font-weight: 400;
  margin: 0;
}
.service-card p {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text);
  max-width: none;
  margin-bottom: 12px;
}
.service-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.service-link:hover { border-bottom-color: var(--gold); }

/* ── Sections without individual padding rules ────────────── */
.why-fail   { padding: var(--section-pad); background: var(--white); }
.why-choose { padding: var(--section-pad); background: var(--cream); }
.deliverables { padding: var(--section-pad); background: var(--navy); }

/* ── Deliverables grid text — bright on navy ──────────────── */
.deliverables-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 28px;
}
@media (max-width: 768px) {
  .deliverables-grid { grid-template-columns: 1fr; gap: 20px; }
}
.deliverable-item h4 {
  color: #ffffff;
  font-weight: 600;
}
.deliverable-item p {
  color: rgba(255,255,255,0.9);
  font-weight: 400;
  max-width: none;
}

/* ── Why Models Fail — bullet list ───────────────────────── */
.why-fail-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 16px 0 0;
}
.why-fail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--navy);
  line-height: 1.4;
}
.why-fail-icon { flex-shrink: 0; }
.why-fail-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 20px 0 16px;
}

/* ── Consequences — compact bullet list ───────────────────── */
.consequences-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.consequence-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.consequence-item p {
  margin-bottom: 0;
  font-size: 0.95rem;
  color: var(--navy);
  max-width: none;
  line-height: 1.4;
}

/* ── What We Stand For — Manifesto ───────────────────────── */
.stands-manifesto {
  margin-top: 20px;
}
.stands-statement {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--gold-dim);
}
.stands-statement:last-child {
  border-bottom: 1px solid var(--gold-dim);
}
.stands-statement h4 {
  font-family: var(--font-serif);
  font-size: 1.12rem;
  color: var(--navy);
  font-weight: 400;
  line-height: 1.35;
}
.stands-statement p {
  font-size: 0.9rem;
  line-height: 1.82;
  color: var(--text);
  max-width: none;
}

/* ── Verification Gap (dark) ──────────────────────────────── */
.why-matters {
  background: var(--navy);
  padding: 56px 24px;
}
.why-matters .section-label { color: #b8965a; }
.why-matters p,
.why-matters h2,
.why-matters h4 { color: #ffffff; opacity: 1; }
.why-matters > .container > p { color: #ffffff; }
.why-matters > .container > .reveal > p { color: #ffffff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: var(--gold);
  margin-top: 20px;
}
.why-item {
  background: var(--navy);
  padding: 20px 28px;
  border-top: 2px solid var(--gold);
}
.why-icon {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: #b8965a;
  opacity: 1;
  margin-bottom: 12px;
  line-height: 1;
}
.why-item h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #ffffff;
  margin-bottom: 8px;
}
.why-item p { font-size: 0.875rem; color: #ffffff; opacity: 1; max-width: none; }

/* ── CTA Strip ────────────────────────────────────────────── */
.cta-strip {
  background: var(--cream);
  padding: 48px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-strip h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.5vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-strip p {
  font-size: 0.95rem;
  color: var(--text);
  max-width: 540px;
  margin: 0 auto 24px;
}

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: var(--navy);
  border-top: 1px solid var(--border-dark);
  padding: 40px 24px 28px;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 40px;
  align-items: start;
}
.footer-brand p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.45);
  max-width: 270px;
  line-height: 1.6;
  margin-top: 10px;
}
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 14px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid var(--border-dark);
  padding: 16px 24px;
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); max-width: none; margin: 0; }

/* ── Page Header (inner pages) ────────────────────────────── */
.page-header {
  background: var(--navy);
  padding: 100px 24px 48px;
  border-bottom: 1px solid var(--border-dark);
}
.page-header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.page-header .section-label { color: #b8965a; margin-bottom: 16px; }
.page-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.4rem);
  color: var(--white);
  max-width: 700px;
  margin-bottom: 12px;
}
.page-header > .page-header-inner > p {
  color: rgba(255,255,255,0.65);
  max-width: 580px;
  font-size: 1rem;
  margin: 0;
}

/* ── Services Detail ──────────────────────────────────────── */
.services-detail { padding: var(--section-pad); }
.services-detail > .container { max-width: var(--max-width); }
.service-row {
  display: block;
  padding: 0;
  border-bottom: 1px solid rgba(184,150,90,0.3);
}
.service-row:first-child .accordion-trigger { padding-top: 0; }
.service-row-label .service-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.service-row-label h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.35;
}
.tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 3px 9px;
  margin-right: 6px;
  margin-top: 4px;
}
.service-row-content h4 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--navy);
  margin: 16px 0 8px;
  font-weight: 500;
}
.service-row-content h4:first-child { margin-top: 0; }
.service-row-content p,
.service-row-content li { font-size: 0.9rem; line-height: 1.82; max-width: none; }
.service-row-content ul { margin: 0 0 16px; }
.service-row-content ul li {
  padding: 9px 0 9px 18px;
  border-bottom: 1px solid var(--border);
  position: relative;
  font-size: 0.88rem;
  color: var(--text);
}
.service-row-content ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.72rem;
  top: 11px;
}

/* ── Why page ─────────────────────────────────────────────── */
.why-intro { padding: var(--section-pad); background: var(--white); }
.why-intro-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.why-intro-left h2 { color: var(--navy); font-size: clamp(1.4rem, 2.5vw, 1.9rem); margin-bottom: 12px; }
.why-intro-left p { max-width: none; }
.callout-box {
  background: var(--cream);
  border-left: 2px solid var(--gold);
  padding: 16px 22px;
  margin: 16px 0;
}
.callout-box p {
  font-family: var(--font-serif);
  font-size: 0.97rem;
  font-style: italic;
  color: var(--navy);
  max-width: none;
  margin: 0;
  line-height: 1.6;
}
.scenarios {
  display: flex;
  flex-direction: column;
  gap: 2px;
  background: var(--border);
}
.scenario { background: var(--cream); padding: 16px 20px; }
.scenario h4 { font-family: var(--font-serif); font-size: 0.97rem; color: var(--navy); margin-bottom: 6px; }
.scenario p { font-size: 0.875rem; max-width: none; line-height: 1.65; }
.why-intro-right .section-label { color: #b8965a; }

/* ── Principles (dark) ────────────────────────────────────── */
.principles { background: var(--navy); padding: 56px 24px; }
.principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  background: rgba(255,255,255,0.07);
  margin-top: 20px;
}
.principle { background: var(--navy); padding: 20px 24px; }
.principles .section-label { color: #b8965a; }
.principle-num {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: #b8965a;
  opacity: 1;
  margin-bottom: 8px;
}
.principle h4 { font-family: var(--font-serif); font-size: 1rem; color: #ffffff; margin-bottom: 0; }
.principle p { font-size: 0.875rem; color: #ffffff; opacity: 1; max-width: none; line-height: 1.72; }
.principle .accordion-content p { padding: 12px 0 16px; }

/* ── About ────────────────────────────────────────────────── */
.about-main { padding: var(--section-pad); background: var(--white); }
.about-content h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 12px; }
.about-content p { max-width: none; line-height: 1.8; font-size: 0.97rem; }

/* ── Contact ──────────────────────────────────────────────── */
.contact-main { padding: var(--section-pad); background: var(--white); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: var(--max-width);
  margin: 0 auto;
}
.contact-info h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 10px; }
.contact-info p { max-width: none; font-size: 0.93rem; }
.contact-details { margin: 16px 0; display: flex; flex-direction: column; gap: 0; }
.contact-detail-item {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.87rem;
}
.contact-detail-label {
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  padding-top: 2px;
}
.contact-detail-value a { color: var(--gold); }
.contact-note { font-size: 0.875rem; color: var(--text-light); max-width: none; line-height: 1.65; }
.contact-form h2 { font-family: var(--font-serif); font-size: 1.4rem; color: var(--navy); margin-bottom: 6px; }
.contact-form > p { font-size: 0.875rem; color: var(--text-light); margin-bottom: 20px; max-width: none; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 14px; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--navy);
  background: var(--cream);
  border: 1px solid var(--border);
  padding: 11px 14px;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-submit {
  width: 100%;
  padding: 15px 32px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}
.form-submit:hover { background: #1a3258; }
.form-disclaimer { font-size: 0.8rem; color: var(--text-light); margin-top: 14px; max-width: none; }

/* ── Accordion ────────────────────────────────────────────── */
.accordion-trigger {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  user-select: none;
}
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-content.active {
  max-height: 2000px;
}
.accordion-indicator {
  color: #b8965a;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.2s ease;
}

/* ── Service-row accordion overrides ─────────────────────── */
.service-row {
  border-left: none;
}
.service-row.active {
  border-left: none;
}
.service-row .accordion-trigger {
  padding: 28px 0;
  align-items: flex-start;
}
.service-row .service-row-label {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex: 1;
}
.service-row-label-text {
  flex: 1;
}
.service-summary {
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
  margin-top: 4px;
  margin-bottom: 8px;
  max-width: none;
}
.service-row .accordion-content .service-row-content {
  padding-bottom: 28px;
}

/* ── Principle accordion overrides ───────────────────────── */
.principle .accordion-trigger {
  padding: 4px 0;
}
.principle-trigger-left {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex: 1;
}

/* ── Responsive — 1024px ──────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { max-width: 820px; }
  .hero-charts { justify-content: flex-start; }
  .statement-inner { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card + .service-card { border-left: none; border-top: 1px solid var(--border); }
  .why-intro-inner { grid-template-columns: 1fr; gap: 48px; }
  .stands-statement { grid-template-columns: 1fr; gap: 10px; }
  .contact-inner { grid-template-columns: 1fr; gap: 56px; }
}

/* ── Responsive — 768px ───────────────────────────────────── */
@media (max-width: 768px) {
  :root {
    --section-pad: 36px 16px;
    --nav-height:  76px;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy);
    padding: 20px 20px 28px;
    gap: 16px;
    border-top: 1px solid var(--border-dark);
    z-index: 190;
    align-items: flex-start;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-inner { padding: 0 16px; }
  .nav-logo img { height: 44px; }
  .hero { padding: calc(96px + env(safe-area-inset-top)) 16px 48px; }
  .hero-inner { padding: 0 16px; }
  .hero h1 { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-eyebrow {
    font-size: clamp(0.88rem, 4vw, 1.1rem);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
  }
  .why-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; padding: 28px 16px 20px; }
  .footer-bottom { flex-direction: column; padding: 14px 16px; gap: 4px; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
}

/* ── Responsive — 480px ───────────────────────────────────── */
@media (max-width: 480px) {
  :root { --section-pad: 28px 14px; }
  .container { padding: 0 14px; }
  .hero { padding: calc(86px + env(safe-area-inset-top)) 14px 36px; }
  .hero-inner { padding: 0 14px; }
  .hero h1 { font-size: clamp(1.9rem, 9vw, 2.8rem); }
  .hero-eyebrow {
    font-size: clamp(0.85rem, 4.2vw, 1rem);
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    letter-spacing: 0.005em;
  }
  .service-card { padding: 18px 16px; }
  .cta-strip { padding: 28px 14px; }
  .page-header { padding: 90px 14px 24px; }
  .why-item { padding: 16px 18px; }
  .principle { padding: 16px 18px; }
  .stands-statement { padding: 14px 0; }
}
