/* ============================================================
   AECentric marketing site
   Implemented from the Claude Design handoff:
   "AECentric Website Mobile.dc.html" (390px reference, capped 480px)
   Desktop layouts per design-system handoff README (1440/1200px).
   Tokens are the canonical values from design-system/tokens/.
   ============================================================ */

:root {
  /* Navy (brand / ink) */
  --navy-900: #000d2f;
  --navy-800: #0a1a3f;
  --navy-700: #12294f;
  --navy-600: #1c3a66;
  --navy-500: #2b4d80;
  --navy-400: #547099;

  /* Gold (accent) */
  --gold-050: #fbf3d6;
  --gold-100: #f4e4a1;
  --gold-300: #ddb85c;
  --gold-500: #c89b3c;
  --gold-600: #b78a2a;
  --gold-700: #a6791e;
  --gold-gradient: linear-gradient(135deg, #f4e4a1 0%, #c89b3c 48%, #a6791e 100%);

  /* Neutrals (warm) */
  --white: #ffffff;
  --ink-900: #161616;
  --ink-700: #3a3a3a;
  --ink-500: #6b6b66;
  --ink-400: #8c8c86;
  --surface-0: #ffffff;
  --surface-1: #f7f6f1;
  --surface-2: #ecebe4;
  --surface-open: #fdfcf9;
  --hairline: #e2e1d8;
  --hairline-strong: #c9c8bd;
  --error: #c0392b;

  --text-on-dark-muted: #b9c2d6;
  --text-on-dark: #e8ebf2;
  --dark-subtle: #547099;

  /* Radius & elevation */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(0,13,47,0.08), 0 1px 2px rgba(0,13,47,0.04);
  --shadow-md: 0 4px 14px rgba(0,13,47,0.10);
  --shadow-lg: 0 12px 32px rgba(0,13,47,0.14);
  --shadow-gold: 0 6px 20px rgba(200,155,60,0.28);
  --ring-focus: 0 0 0 3px rgba(200,155,60,0.25);
  --transition-fast: 120ms cubic-bezier(0.2,0,0.2,1);
  --transition-base: 200ms cubic-bezier(0.2,0,0.2,1);

  --font-display: 'Poppins', sans-serif;
  --font-body: 'IBM Plex Sans', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--surface-0);
  color: var(--ink-900);
  font-family: var(--font-body);
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--navy-700); text-decoration: none; }
a:hover { color: var(--gold-700); }
img { max-width: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding-left: 24px; padding-right: 24px; }
@media (min-width: 900px) { .container { padding-left: 32px; padding-right: 32px; } }

/* Scroll reveal */
@keyframes aecRise {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
[data-reveal].is-hidden { opacity: 0; }
[data-reveal].is-revealed { animation: aecRise 0.55s cubic-bezier(0.2,0,0.2,1) both; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal].is-hidden { opacity: 1; }
  [data-reveal].is-revealed { animation: none; }
  html { scroll-behavior: auto; }
}

/* Blueprint grid overlay for navy sections */
.navy-band { position: relative; background: var(--navy-900); color: #fff; overflow: hidden; }
.navy-band::before {
  content: '';
  position: absolute; inset: 0; opacity: 0.06; pointer-events: none;
  background-image: linear-gradient(var(--gold-100) 1px, transparent 1px),
                    linear-gradient(90deg, var(--gold-100) 1px, transparent 1px);
  background-size: 44px 44px;
}
.navy-band > * { position: relative; }

/* ---------- Eyebrow ---------- */
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--gold-gradient); }
.eyebrow span {
  font-weight: 600; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-700);
}
.eyebrow.on-dark span { color: var(--gold-300); }
@media (min-width: 900px) { .eyebrow span { font-size: 13px; } }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  letter-spacing: 0.01em; line-height: 1;
  padding: 12px 22px; border-radius: var(--radius-sm);
  cursor: pointer; text-decoration: none;
  border: 1px solid transparent;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: none; box-shadow: var(--ring-focus); }
.btn-lg { padding: 16px 30px; font-size: 17px; }
.btn-primary { background: var(--navy-900); color: #fff; border-color: var(--navy-900); }
.btn-primary:hover { background: var(--navy-700); border-color: var(--navy-700); color: #fff; box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold-500); color: var(--navy-900); border-color: var(--gold-500); }
.btn-gold:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-block { display: flex; width: 100%; }

/* Text link with gold underline */
.text-link {
  display: inline-block; cursor: pointer;
  font-size: 16px; font-weight: 500; color: var(--navy-700);
  border-bottom: 2px solid var(--gold-500); padding-bottom: 2px;
  transition: color var(--transition-fast);
}
.text-link:hover { color: var(--gold-700); }

/* ---------- Badge ---------- */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-body); font-weight: 600; letter-spacing: 0.02em;
  line-height: 1.4; white-space: nowrap;
  font-size: 11px; padding: 2px 9px; border-radius: var(--radius-pill);
}
.badge-navy { background: var(--navy-900); color: #fff; border: 1px solid var(--navy-900); }
.badge-gold { background: var(--gold-100); color: var(--gold-700); border: 1px solid var(--gold-300); }
.badge-outline {
  background: transparent; color: var(--navy-700);
  border: 1px solid var(--navy-500); border-radius: var(--radius-sm);
  font-size: 12px; padding: 4px 12px;
}

/* ---------- Card ---------- */
.card {
  position: relative; overflow: hidden;
  background: var(--surface-0); color: var(--ink-700);
  border: 1px solid var(--hairline); border-radius: var(--radius-md);
  padding: 24px; box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}
.card.accent::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: var(--gold-gradient);
}
.card.interactive { cursor: pointer; display: block; }
.card.interactive:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.card .mono-num { font-family: var(--font-mono); font-size: 13px; color: var(--gold-700); margin-bottom: 10px; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 6px; color: var(--navy-900); }
.card p { font-size: 14px; line-height: 1.55; color: var(--ink-500); margin: 0; }

/* ---------- Stat ---------- */
.stat { display: flex; flex-direction: column; gap: 6px; }
.stat .value {
  font-family: var(--font-display); font-weight: 700; font-size: 52px;
  line-height: 1; letter-spacing: -0.02em;
  color: transparent; background-image: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text;
}
.stat .label { font-weight: 600; font-size: 16px; color: var(--navy-900); }
.stat .sublabel { font-size: 14px; color: var(--ink-500); }
.stat.on-dark .label { color: #fff; }
.stat.on-dark .sublabel { color: var(--text-on-dark-muted); }

/* ---------- Inputs ---------- */
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: 14px; font-weight: 500; color: var(--ink-900); }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; line-height: 1.55;
  color: var(--ink-900); background: var(--surface-0);
  padding: 12px 14px; border: 1px solid var(--hairline-strong);
  border-radius: var(--radius-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}
.field textarea { resize: vertical; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--gold-500); box-shadow: var(--ring-focus);
}
.field.has-error input, .field.has-error textarea { border-color: var(--error); }
.field .error-msg { display: none; font-size: 13px; color: var(--error); }
.field.has-error .error-msg { display: block; }

/* ---------- Circle callout ---------- */
.circle-callout { position: relative; display: inline-block; padding: 10px 22px; }
.circle-callout svg {
  position: absolute; inset: -6px -4px;
  width: calc(100% + 8px); height: calc(100% + 12px);
  overflow: visible; pointer-events: none;
}
.circle-callout .callout-text {
  position: relative; font-family: var(--font-display); font-weight: 700;
  color: var(--navy-900); font-size: 16px; white-space: nowrap;
}

/* ---------- Logo lockup ---------- */
.logo-lockup { display: inline-flex; align-items: center; gap: 12px; cursor: pointer; }
.logo-lockup img { height: 32px; width: auto; display: block; border-radius: 2px; }
.logo-lockup .wordmark {
  font-family: var(--font-display); font-weight: 700; font-size: 16px;
  letter-spacing: -0.01em; color: var(--navy-900); line-height: 1;
}
.logo-lockup.on-dark .wordmark { color: #fff; }
@media (min-width: 900px) {
  .logo-lockup img { height: 40px; }
  .logo-lockup .wordmark { font-size: 20px; }
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 20px;
  max-width: var(--container); margin: 0 auto;
}
.header-nav { display: none; }
.header-cta { display: none; }

/* Hamburger */
.hamburger {
  width: 44px; height: 44px; border: none; background: none; cursor: pointer;
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
  padding: 0;
}
.hamburger span {
  width: 22px; height: 2px; background: var(--navy-900); display: block;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu panel */
.mobile-menu {
  display: none;
  position: absolute; top: 100%; left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--hairline);
  box-shadow: 0 12px 24px rgba(0,13,47,0.10);
  flex-direction: column; padding: 8px 0 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 14px 24px; font-size: 17px; font-weight: 500; color: var(--ink-900);
  border-left: 3px solid transparent;
}
.mobile-menu a.active { border-left-color: var(--gold-500); }
.mobile-menu .menu-cta { padding: 14px 24px 0; }

@media (min-width: 900px) {
  .header-inner { padding: 14px 32px; }
  .hamburger, .mobile-menu { display: none !important; }
  .header-nav { display: flex; gap: 30px; }
  .header-nav a {
    font-size: 15px; font-weight: 500; color: var(--ink-900);
    padding-bottom: 4px; border-bottom: 2px solid transparent;
    transition: color var(--transition-fast);
  }
  .header-nav a:hover { color: var(--gold-700); }
  .header-nav a.active { border-bottom-color: var(--gold-500); }
  .header-cta { display: inline-flex; }
}

/* ============================================================
   Sections (shared rhythm)
   ============================================================ */
.section { padding: 56px 24px; }
.section-tight { padding: 40px 24px; }
@media (min-width: 900px) {
  .section { padding: 80px 32px; }
  .section-tight { padding: 72px 32px; }
  .section > .inner, .section-tight > .inner { max-width: var(--container); margin: 0 auto; }
}
.inner { max-width: var(--container); margin: 0 auto; }

h1.display {
  font-family: var(--font-display); font-weight: 700;
  font-size: 40px; line-height: 1.08; letter-spacing: -0.8px;
  margin: 0; color: var(--navy-900); text-wrap: pretty;
}
h2.display {
  font-family: var(--font-display); font-weight: 700;
  font-size: 30px; letter-spacing: -0.5px; margin: 0 0 24px; color: var(--navy-900);
}
.navy-band h1.display, .navy-band h2.display { color: #fff; }
@media (min-width: 900px) {
  h1.display { font-size: 52px; line-height: 1.05; letter-spacing: -1.2px; }
  h2.display { font-size: 40px; }
}

.gold-text {
  background: linear-gradient(135deg, #c89b3c, #a6791e);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.gold-text-bright {
  background: var(--gold-gradient);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ============================================================
   Home
   ============================================================ */
.hero-home { background: var(--surface-1); border-bottom: 1px solid var(--hairline); padding: 56px 24px; }
.hero-home .sub { font-size: 17px; line-height: 1.6; color: var(--ink-700); margin: 20px 0 28px; }
.hero-ctas { display: flex; flex-direction: column; gap: 14px; align-items: stretch; }
.hero-ctas .text-link { align-self: center; padding: 8px 0 2px; }

/* Stats panel: full-bleed navy band on mobile, hero side panel on desktop */
.hero-stats { padding: 40px 24px; display: flex; flex-direction: column; gap: 26px; }

@media (min-width: 900px) {
  .hero-home { padding: 88px 32px; }
  .hero-home .hero-grid {
    max-width: var(--container); margin: 0 auto;
    display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 64px; align-items: start;
  }
  .hero-home h1.display { font-size: 60px; }
  .hero-home .sub { font-size: 19px; max-width: 540px; }
  .hero-ctas { flex-direction: row; align-items: center; gap: 24px; }
  .hero-ctas .btn { width: auto; }
  .hero-ctas .text-link { align-self: auto; }
  .hero-stats-wrap.navy-band { border-radius: var(--radius-lg); }
  .hero-stats { padding: 36px; }
  .stats-standalone { display: none; }
}
@media (max-width: 899px) {
  .hero-home .hero-stats-wrap { display: none; }
}

/* Approach strip */
.approach-strip { padding: 48px 24px; }
.approach-strip .step { border-top: 1px solid var(--hairline); padding: 20px 0; }
.approach-strip .mono-num, .approach-band .mono-num {
  font-family: var(--font-mono); font-size: 13px; color: var(--gold-700); margin-bottom: 8px;
}
.approach-strip h3, .approach-band h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 20px;
  margin: 0 0 6px; color: var(--navy-900);
}
.approach-strip p { font-size: 15px; line-height: 1.55; color: var(--ink-500); margin: 0; }
@media (min-width: 900px) {
  .approach-strip { padding: 64px 32px; }
  .approach-strip .inner { display: grid; grid-template-columns: 1fr 1fr 1fr; }
  .approach-strip .step { border-top: none; padding: 0 32px; }
  .approach-strip .step:first-child { padding-left: 0; }
  .approach-strip .step + .step { border-left: 1px solid var(--hairline); }
}

/* Teaser sections (services / insights on home) */
.teaser { border-top: 1px solid var(--hairline); padding: 56px 24px; }
.teaser .cards { display: flex; flex-direction: column; gap: 16px; }
.teaser .teaser-link-row { margin-top: 24px; text-align: center; }
.teaser .head-row .text-link { display: none; }
@media (min-width: 900px) {
  .teaser { padding: 80px 32px; }
  .teaser .head-row { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; }
  .teaser .head-row .text-link { display: inline-block; margin-bottom: 28px; }
  .teaser .teaser-link-row { display: none; }
  .cards.cols-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
  .cards.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
}

/* Testimonials */
.testimonials { padding: 56px 24px; }
.testimonials blockquote { margin: 0 0 32px; }
.testimonials blockquote p {
  font-family: var(--font-display); font-weight: 600; font-size: 23px; line-height: 1.35;
  letter-spacing: -0.3px; margin: 0; color: #fff;
}
.testimonials blockquote footer { margin-top: 16px; font-size: 14px; color: var(--text-on-dark-muted); }
.testimonials .side-quotes { display: flex; flex-direction: column; gap: 20px; }
.testimonials .side-quote { border-left: 2px solid var(--gold-500); padding-left: 16px; }
.testimonials .side-quote p { font-size: 15px; line-height: 1.55; color: var(--text-on-dark); margin: 0; }
.testimonials .side-quote .who { margin-top: 8px; font-size: 13px; color: var(--text-on-dark-muted); }
.testimonials .placeholder-note { margin: 28px 0 0; font-size: 12px; color: var(--dark-subtle); }
@media (min-width: 900px) {
  .testimonials { padding: 88px 32px; }
  .testimonials .quotes-grid { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 56px; }
  .testimonials blockquote { margin: 0; }
  .testimonials blockquote p { font-size: 30px; }
  .testimonials .side-quote { padding-left: 20px; }
  .testimonials .side-quote p { font-size: 16px; }
}

/* Blueprint signup */
.blueprint { background: var(--surface-1); border-top: 1px solid var(--hairline); padding: 56px 24px; }
.blueprint h2.display { font-size: 28px; margin-bottom: 12px; }
.blueprint .sub { font-size: 16px; line-height: 1.6; color: var(--ink-700); margin: 0 0 24px; }
.blueprint form { display: flex; flex-direction: column; gap: 14px; }
.blueprint .microcopy { font-size: 13px; color: var(--ink-400); text-align: center; }
.blueprint .success-card {
  display: none;
  background: #fff; border: 1px solid var(--hairline); border-radius: var(--radius-md);
  padding: 24px; border-top: 4px solid var(--gold-500);
}
.blueprint .success-card h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 19px;
  margin: 0 0 6px; color: var(--navy-900);
}
.blueprint .success-card p { font-size: 15px; line-height: 1.55; color: var(--ink-500); margin: 0; }
.blueprint.sent form { display: none; }
.blueprint.sent .success-card { display: block; }
@media (min-width: 900px) {
  .blueprint { padding: 72px 32px; }
  .blueprint .inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: start; }
  .blueprint h2.display { font-size: 36px; }
  .blueprint .sub { font-size: 17px; margin-bottom: 0; }
}

/* ============================================================
   Services
   ============================================================ */
.hero-page-navy { padding: 48px 24px; }
.hero-page-navy .sub { font-size: 16px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 18px 0 0; }
@media (min-width: 900px) {
  .hero-page-navy { padding: 72px 32px; }
  .hero-page-navy .sub { font-size: 18px; max-width: 640px; }
}

.accordion-section { padding: 32px 24px 56px; }
.accordion { border-top: 1px solid var(--hairline); }
.acc-item { border-bottom: 1px solid var(--hairline); background: transparent; transition: background 0.2s; }
.acc-item.open { background: var(--surface-open); }
.acc-head {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 20px 4px; min-height: 44px; cursor: pointer;
  width: 100%; border: none; background: none; text-align: left; font-family: inherit;
}
.acc-head .mono-num { font-family: var(--font-mono); font-size: 13px; color: var(--gold-700); padding-top: 4px; }
.acc-head .acc-title { flex: 1; }
.acc-head h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0; color: var(--navy-900); }
.acc-head .tag { font-size: 14px; color: var(--ink-500); margin: 5px 0 0; }
.acc-head .length { font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); margin-top: 6px; }
.acc-head .plus {
  font-family: var(--font-display); font-size: 24px; color: var(--gold-500);
  transition: transform 0.2s; line-height: 1; padding-top: 2px;
}
.acc-item.open .plus { transform: rotate(45deg); }
.acc-body { display: none; flex-direction: column; gap: 24px; padding: 0 4px 28px 31px; }
.acc-item.open .acc-body { display: flex; }
.acc-body .col-label {
  font-weight: 600; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-700); margin-bottom: 10px;
}
.acc-body .how p { font-size: 15px; line-height: 1.6; color: var(--ink-700); margin: 0; }
.acc-body .bullets { display: flex; flex-direction: column; gap: 10px; }
.acc-body .bullet { display: flex; gap: 12px; align-items: baseline; }
.acc-body .bullet .tick {
  width: 14px; height: 2px; flex: none; transform: translateY(-4px);
  background: var(--gold-gradient);
}
.acc-body .bullet span:last-child { font-size: 14px; line-height: 1.5; color: var(--ink-700); }
@media (min-width: 900px) {
  .accordion-section { padding: 56px 32px 72px; }
  .acc-head { display: grid; grid-template-columns: 64px 1fr auto 40px; padding: 28px 20px; align-items: start; }
  .acc-head h3 { font-size: 24px; }
  .acc-head .length { margin-top: 4px; font-size: 13px; }
  .acc-body { display: none; grid-template-columns: 1fr 1fr; gap: 48px; padding: 0 20px 36px 108px; }
  .acc-item.open .acc-body { display: grid; }
}

.approach-band { padding: 56px 24px; }
.approach-band .steps { display: flex; flex-direction: column; gap: 24px; }
.approach-band .step { border-top: 1px solid rgba(255,255,255,0.14); padding-top: 16px; }
.approach-band .mono-num { color: var(--gold-300); }
.approach-band h3 { color: #fff; }
.approach-band p { font-size: 15px; line-height: 1.55; color: var(--text-on-dark-muted); margin: 0; }
.approach-band .cta-row { margin-top: 36px; display: flex; flex-direction: column; gap: 12px; }
.approach-band .cta-note { font-size: 14px; color: var(--text-on-dark-muted); text-align: center; }
@media (min-width: 900px) {
  .approach-band { padding: 88px 32px; }
  .approach-band .steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
  .approach-band .cta-row { flex-direction: row; align-items: center; gap: 20px; }
  .approach-band .cta-row .btn { width: auto; }
  .approach-band .cta-note { font-size: 15px; text-align: left; }
}

/* ============================================================
   About
   ============================================================ */
.hero-page-light { background: var(--surface-1); border-bottom: 1px solid var(--hairline); padding: 48px 24px; }
.hero-page-light .sub { font-size: 16px; line-height: 1.6; color: var(--ink-700); margin: 18px 0 0; }
@media (min-width: 900px) {
  .hero-page-light { padding: 72px 32px; }
  .hero-page-light .sub { font-size: 18px; max-width: 640px; }
}

.about-story { padding: 40px 24px; }
.headshot {
  width: 100%; height: 340px; margin-bottom: 16px;
  border-radius: var(--radius-lg); overflow: hidden;
  background: var(--surface-1); border: 1px solid var(--hairline);
  display: flex; align-items: center; justify-content: center;
}
.headshot img.photo { width: 100%; height: 100%; object-fit: cover; object-position: center 22%; }
.headshot .placeholder-mark { height: 96px; width: auto; opacity: 0.9; border-radius: var(--radius-sm); }
.headshot-caption { border-left: 2px solid var(--gold-500); padding-left: 16px; margin-bottom: 32px; }
.headshot-caption .name { font-family: var(--font-display); font-weight: 600; font-size: 17px; color: var(--navy-900); }
.headshot-caption .titles { font-family: var(--font-mono); font-size: 12px; color: var(--ink-500); margin-top: 4px; line-height: 1.6; }
.about-story .lead-p { font-size: 17px; line-height: 1.65; color: var(--ink-900); margin: 0 0 18px; }
.about-story p { font-size: 17px; line-height: 1.65; color: var(--ink-700); margin: 0 0 18px; }
.about-story .creds { display: flex; gap: 10px; flex-wrap: wrap; margin: 10px 0 28px; }
.about-story .cta-stack { display: flex; flex-direction: column; gap: 18px; align-items: stretch; }
.about-story .cta-stack .circle-callout { align-self: center; }
@media (min-width: 900px) {
  .about-story { padding: 72px 32px; }
  .about-story .inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 72px; align-items: start; }
  .about-story .story-col { order: -1; }
  .about-story .lead-p, .about-story p { font-size: 18px; }
  .headshot { height: 440px; }
  .headshot-caption .name { font-size: 18px; }
  .headshot-caption .titles { font-size: 13px; }
  .about-story .cta-stack { flex-direction: row; align-items: center; gap: 28px; }
  .about-story .cta-stack .btn { width: auto; }
}

.stats-band { padding: 48px 24px; }
.stats-band .stats { display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 900px) {
  .stats-band { padding: 72px 32px; }
  .stats-band .stats { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
}

/* ============================================================
   Insights
   ============================================================ */
.insights-list { padding: 40px 24px; }
.featured-card {
  border-radius: var(--radius-lg);
  margin-bottom: 32px;
}
.featured-card .featured-inner { padding: 28px; }
.featured-card .meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; flex-wrap: wrap; }
.featured-card .meta {
  font-family: var(--font-mono); font-size: 12px; color: var(--text-on-dark-muted);
}
.featured-card h2 {
  font-family: var(--font-display); font-weight: 700; font-size: 25px; line-height: 1.2;
  letter-spacing: -0.4px; margin: 0 0 12px; color: #fff; text-wrap: pretty;
}
.featured-card .excerpt { font-size: 15px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0 0 20px; }
.featured-card .featured-logo { display: none; }
.article-grid { display: flex; flex-direction: column; gap: 16px; }
.draft-note { margin: 24px 0 0; font-size: 12px; color: var(--ink-400); }
.card .badge-meta-row { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.card .meta { font-family: var(--font-mono); font-size: 12px; color: var(--ink-400); }
.card h3.art-title { line-height: 1.3; margin-bottom: 8px; text-wrap: pretty; }
@media (min-width: 900px) {
  .insights-list { padding: 64px 32px; }
  .featured-card .featured-inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 48px; padding: 48px; align-items: center; }
  .featured-card h2 { font-size: 34px; }
  .featured-card .excerpt { font-size: 16px; }
  .featured-card .btn { width: auto; display: inline-flex; }
  .featured-card .featured-logo { display: flex; align-items: center; justify-content: center; }
  .featured-card .featured-logo img { max-height: 180px; width: auto; border-radius: var(--radius-md); }
  .article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
}
@media (max-width: 899px) {
  .blueprint.insights-repeat { display: none; }
}

/* ============================================================
   Contact
   ============================================================ */
.contact-section { padding: 40px 24px; }
.contact-form { display: flex; flex-direction: column; gap: 18px; }
.contact-form .microcopy { font-size: 13px; color: var(--ink-400); text-align: center; }
.contact-success {
  display: none;
  background: var(--surface-1); border: 1px solid var(--hairline); border-radius: var(--radius-lg);
  padding: 28px; border-top: 4px solid var(--gold-500);
}
.contact-success h3 {
  font-family: var(--font-display); font-weight: 600; font-size: 22px;
  margin: 0 0 8px; color: var(--navy-900);
}
.contact-success p { font-size: 15px; line-height: 1.6; color: var(--ink-700); margin: 0; }
.contact-wrap.sent .contact-form { display: none; }
.contact-wrap.sent .contact-success { display: block; }

.contact-aside-card { border-radius: var(--radius-lg); padding: 28px; margin-top: 36px; }
.contact-aside-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 19px; margin: 0 0 16px; color: #fff; }
.contact-aside-card .ways { display: flex; flex-direction: column; gap: 14px; font-size: 15px; line-height: 1.5; }
.contact-aside-card .way-label { color: var(--gold-300); font-weight: 600; }
.contact-aside-card .way-value { color: var(--text-on-dark); }
.contact-aside-card a .way-value:hover { color: var(--gold-300); }
.contact-callout-row { display: flex; justify-content: center; margin-top: 28px; }
.name-firm-row { display: contents; }
@media (min-width: 900px) {
  .contact-section { padding: 64px 32px; }
  .contact-section .inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
  .contact-aside-card { margin-top: 0; padding: 32px; }
  .name-firm-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
  .contact-form .btn { align-self: flex-start; width: auto; }
  .contact-form .microcopy { text-align: left; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer { background: var(--navy-900); color: #fff; margin-top: auto; }
.footer-inner { padding: 44px 24px 28px; max-width: var(--container); margin: 0 auto; }
.footer-tagline { font-size: 14px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 16px 0 28px; }
.footer-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-col-label {
  font-weight: 600; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--gold-300); margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; font-size: 15px; }
.footer-links a { color: var(--text-on-dark); }
.footer-links a:hover { color: var(--gold-300); }
.footer-links .footer-email { color: var(--text-on-dark-muted); }
.footer-legal {
  padding-top: 20px; font-size: 12px; color: var(--dark-subtle);
  display: flex; flex-direction: column; gap: 6px;
}
@media (min-width: 900px) {
  .footer-inner { padding: 56px 32px 32px; }
  .footer-grid { display: grid; grid-template-columns: 1.2fr 0.8fr 0.8fr; gap: 48px; }
  .footer-cols { display: contents; }
  .footer-cols > div { padding-bottom: 0; }
  .footer-grid { padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.14); }
  .footer-cols { border-bottom: none; padding-bottom: 0; }
  .footer-legal { flex-direction: row; justify-content: space-between; font-size: 13px; }
}

/* ============================================================
   Speaking & Media
   ============================================================ */
.media-section { padding: 56px 24px; }
.media-section.alt { background: var(--surface-1); border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline); }
.media-section h2.display { margin-bottom: 24px; }
.media-grid { display: flex; flex-direction: column; gap: 16px; }
.card .card-link {
  display: inline-block; margin-top: 14px;
  font-size: 14px; font-weight: 600; color: var(--gold-700);
}
.card.interactive:hover .card-link { color: var(--gold-600); }
@media (min-width: 900px) {
  .media-section { padding: 80px 32px; }
  .media-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
  .media-grid.two-up { grid-template-columns: repeat(2, 1fr); }
}

.host-band { padding: 56px 24px; }
.host-band .host-sub { font-size: 16px; line-height: 1.6; color: var(--text-on-dark-muted); margin: 0 0 28px; max-width: 60ch; }
.host-band .host-cta .btn { width: 100%; }
@media (min-width: 900px) {
  .host-band { padding: 80px 32px; }
  .host-band .host-sub { font-size: 18px; }
  .host-band .host-cta .btn { width: auto; display: inline-flex; }
}

.invite-band { padding: 56px 24px; }
.invite-band .sub { font-size: 16px; line-height: 1.6; color: var(--ink-700); margin: 18px 0 28px; max-width: 60ch; }
.invite-band .invite-cta .btn { width: 100%; }
@media (min-width: 900px) {
  .invite-band { padding: 80px 32px; }
  .invite-band .sub { font-size: 18px; }
  .invite-band .invite-cta .btn { width: auto; display: inline-flex; }
}

/* Page shell */
.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }
