:root {
  --ink: #0f172a;
  --ink-2: #1e293b;
  --muted: #5f6b7a;
  --line: #dce3ea;
  --paper: #ffffff;
  --soft: #f4f7fa;
  --accent: #c1653f;
  --accent-dark: #9c4d2e;
  --mint: #8fd3c7;
  --max-width: 1180px;
  --radius: 24px;
  --shadow: 0 18px 60px rgba(15, 23, 42, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "DM Sans", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { max-width: 100%; }
h1, h2, h3 {
  font-family: "Manrope", system-ui, sans-serif;
  line-height: 1.1;
  letter-spacing: -0.04em;
  margin: 0 0 1rem;
}
h1 { font-size: clamp(3.4rem, 8vw, 7.4rem); max-width: 900px; }
h2 { font-size: clamp(2.3rem, 5vw, 4.8rem); }
h3 { font-size: 1.45rem; }
p { margin: 0 0 1rem; }
ul { padding-left: 1.2rem; }
.container { width: min(calc(100% - 2rem), var(--max-width)); margin: 0 auto; }
.section { padding: 7rem 0; }
.section-soft { background: var(--soft); }
.section-dark { background: var(--ink); color: white; }
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .78rem;
  font-weight: 700;
  color: var(--accent-dark);
  margin-bottom: 1.25rem;
}
.eyebrow-light { color: #f6b18e; }
.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 1000;
  background: white;
  padding: .75rem 1rem;
  border-radius: 8px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220,227,234,.8);
}
.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  font-weight: 700;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--ink);
  color: white;
  font-family: "Manrope";
  font-size: .82rem;
}
.brand-text { font-size: .95rem; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}
.site-nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 600;
}
.site-nav a:hover { color: var(--accent-dark); }
.nav-cta {
  padding: .7rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--ink);
}
.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: .5rem;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
}
.hero {
  min-height: calc(100vh - 74px);
  display: grid;
  align-items: center;
  padding: 6rem 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(143,211,199,.35), transparent 25%),
    radial-gradient(circle at 14% 88%, rgba(232,111,58,.14), transparent 24%);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, .75fr);
  gap: 5rem;
  align-items: center;
}
.hero-lede {
  max-width: 730px;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  color: var(--ink-2);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: .8rem 1.25rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--accent); color: #111827; }
.button-primary:hover { background: #f18451; }
.button-ghost { border: 1px solid var(--ink); }
.button-light { background: white; color: var(--ink); }
.button-outline-light { border: 1px solid rgba(255,255,255,.65); color: white; }
.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.4rem;
  color: var(--muted);
  font-size: .92rem;
}
.hero-proof span::before {
  content: "•";
  color: var(--accent);
  margin-right: .55rem;
}
.hero-panel {
  background: var(--ink);
  color: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}
.panel-label {
  color: #bcc7d5;
  font-size: .85rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.principles {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}
.principles li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
  font-weight: 600;
}
.principles span {
  display: inline-block;
  width: 2.4rem;
  color: var(--mint);
  font-family: "Manrope";
}
.panel-note {
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 16px;
  background: rgba(255,255,255,.07);
}
.panel-note p { color: #c7d1dc; margin: .3rem 0 0; }
.section-heading { max-width: 820px; margin-bottom: 3rem; }
.section-heading > p:last-child { font-size: 1.12rem; color: var(--muted); }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.card-grid > :last-child { grid-column: span 2; }
.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 2rem;
  background: white;
  transition: transform .2s ease, box-shadow .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--soft);
  font-family: "Manrope";
  font-weight: 700;
  margin-bottom: 2rem;
}
.service-card p { color: var(--muted); }
.service-card li { margin: .45rem 0; }
.approach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 6rem;
}
.section-dark .section-heading > p:last-child { color: #c4ced8; }
.steps { display: grid; }
.step {
  display: grid;
  grid-template-columns: 55px 1fr;
  gap: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.step > span {
  color: var(--mint);
  font-family: "Manrope";
  font-weight: 700;
}
.step p { color: #bdc8d3; }
.split-heading {
  max-width: none;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 2rem;
}
.text-link {
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.article-card {
  min-height: 340px;
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
}
.article-card.featured {
  background: var(--accent);
  border-color: var(--accent);
}
.article-card p { color: var(--muted); }
.article-card.featured p { color: #3b2419; }
.article-card a {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
}
.article-kicker {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .78rem;
  font-weight: 700;
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.stat-card {
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
}
.stat-number {
  display: block;
  font-family: "Manrope", system-ui, sans-serif;
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.02em;
  margin-bottom: .6rem;
}
.stat-label { color: var(--muted); margin: 0; font-size: .98rem; }
.stat-label a { color: var(--accent-dark); font-weight: 600; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}
.testimonial-card {
  margin: 0;
  padding: 2rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
}
.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 1.15rem;
  line-height: 1.45;
  letter-spacing: -0.01em;
}
.testimonial-card figcaption {
  color: var(--muted);
  font-size: .92rem;
  font-weight: 600;
}

.about-grid {
  display: grid;
  grid-template-columns: .55fr 1.45fr;
  gap: 5rem;
  align-items: center;
}
.about-monogram {
  aspect-ratio: 1;
  border-radius: 32px;
  background: var(--ink);
  color: white;
  display: grid;
  place-items: center;
  font-family: "Manrope";
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  box-shadow: var(--shadow);
}
.large-copy { font-size: 1.35rem; color: var(--ink-2); }
.about-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}
.about-links a { font-weight: 700; }
.contact-section { background: white; }
.contact-card {
  background: var(--ink);
  color: white;
  border-radius: 32px;
  padding: 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3rem;
}
.contact-card p:not(.eyebrow) { color: #c6d0da; max-width: 650px; }
.contact-actions { display: flex; flex-direction: column; gap: 1rem; min-width: 220px; }
.site-footer {
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}
.footer-brand { margin-bottom: 1rem; }
.footer-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 1rem;
}
.footer-links a { font-size: .92rem; font-weight: 600; text-decoration: none; }
.footer-meta { text-align: right; color: var(--muted); }
.footer-meta p { margin: 0; }

.speaking-grid {
  display: grid;
  gap: 3rem;
}
.speaking-group h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}
.speaking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.speaking-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.speaking-list h3 { font-size: 1.1rem; margin: 0 0 .3rem; }
.speaking-list p { margin: 0; color: var(--muted); }
.speaking-meta { color: var(--muted); font-size: .92rem; white-space: nowrap; }

.article-page {
  max-width: 820px;
  padding: 6rem 0;
}
.article-page .meta { color: var(--muted); margin-bottom: 2rem; }
.article-page h1 { font-size: clamp(2.8rem, 7vw, 5.5rem); }
.article-page h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-top: 2.5rem; }
.article-page p, .article-page li { font-size: 1.08rem; }
.back-link { font-weight: 700; text-decoration: none; }

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .site-nav {
    position: fixed;
    inset: 74px 0 auto 0;
    background: white;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 1.5rem;
    border-bottom: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .menu-toggle { display: block; }
  .hero-grid,
  .approach-grid,
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-panel { transform: none; }
  .article-grid { grid-template-columns: 1fr; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-card { align-items: flex-start; flex-direction: column; padding: 2.5rem; }
  .contact-actions { width: 100%; }
}

@media (max-width: 640px) {
  .section { padding: 5rem 0; }
  .hero { padding: 4rem 0; }
  h1 { font-size: clamp(3rem, 15vw, 4.7rem); }
  .card-grid { grid-template-columns: 1fr; }
  .split-heading { align-items: flex-start; flex-direction: column; }
  .about-links { flex-direction: column; }
  .footer-grid { flex-direction: column; }
  .footer-meta { text-align: left; }
  .brand-text { display: none; }
  .contact-card { border-radius: 24px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
