:root {
  --bg: #070606;
  --bg-soft: #11100d;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --surface: #f3eee4;
  --surface-2: #ebe3d3;
  --text: #f7f1e5;
  --text-muted: rgba(247, 241, 229, 0.72);
  --text-dark: #171512;
  --text-dark-muted: rgba(23, 21, 18, 0.72);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(23, 21, 18, 0.14);
  --accent: #d4ff3f;
  --accent-deep: #9bb82d;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  --radius: 26px;
  --container: 1220px;
  --body-size: 16px;
  --hero-title-max: 6.05rem;
  --section-space: 118px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: var(--body-size);
  background:
    radial-gradient(circle at top left, rgba(212, 255, 63, 0.15), transparent 22%),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.07), transparent 18%),
    linear-gradient(180deg, #050505 0%, #0c0b09 100%);
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.site-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: rgba(7, 6, 6, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 12px;
}

.brand-mark {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(212, 255, 63, 0.45);
}

.brand-text {
  display: grid;
  gap: 2px;
}

.brand-text strong {
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.14em;
}

.brand-text em {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.main-nav a {
  color: var(--text-muted);
  font-size: 0.96rem;
  transition: color 180ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text);
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  padding: 96px 0 62px;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, black 0%, transparent 90%);
  pointer-events: none;
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.hero-copy {
  min-width: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-copy h1,
.section-heading h2,
.section-head h2,
.split-copy h2,
.cta-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 8.6ch;
  font-size: clamp(3.2rem, 6.15vw, var(--hero-title-max));
}

.hero-copy h1 span {
  color: rgba(247, 241, 229, 0.7);
}

.hero-intro {
  max-width: 640px;
  margin: 28px 0 0;
  font-size: 1.12rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--accent);
  color: #14120e;
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #ebff98;
}

.button-secondary {
  border-color: var(--line);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.hero-panel {
  position: relative;
  width: min(100%, 430px);
  margin-left: auto;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.panel-kicker,
.work-meta,
.card-index {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.panel-kicker {
  color: var(--text-muted);
  margin-bottom: 18px;
}

.panel-stack {
  display: grid;
  gap: 14px;
}

.signal-card {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.signal-card span,
.timeline-item span,
.insight-card span {
  color: var(--accent);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.signal-card h2,
.expertise-card h3,
.timeline-item h3,
.work-card h3,
.insight-card h3 {
  margin: 10px 0 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.signal-card p,
.expertise-card p,
.timeline-item p,
.work-card p,
.insight-card p,
.section-copy p,
.split-copy p,
.cta-copy p,
.metric span,
.footer p,
.contact-note {
  margin: 0;
  line-height: 1.8;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 52px;
}

.metric {
  padding: 22px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.metric strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.metric span {
  color: var(--text-muted);
}

.section {
  padding: var(--section-space) 0;
}

.section-band {
  padding: 28px 0;
  background: rgba(255, 255, 255, 0.03);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.section-light {
  background: var(--surface);
  color: var(--text-dark);
}

.section-sand {
  background: var(--surface-2);
  color: var(--text-dark);
}

.section-dark {
  background:
    radial-gradient(circle at top right, rgba(212, 255, 63, 0.08), transparent 24%),
    var(--bg-soft);
}

.section-grid,
.split-feature,
.insights-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.section-grid-balanced {
  align-items: end;
}

.section-heading h2,
.section-head h2,
.split-copy h2,
.cta-copy h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  max-width: 12ch;
}

.section-copy {
  color: var(--text-dark-muted);
}

.section-copy p + p,
.split-copy p + p {
  margin-top: 20px;
}

.section-head {
  margin-bottom: 34px;
}

.section-link {
  margin-top: 28px;
}

.media-feature-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 32px;
  align-items: center;
}

.media-feature-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.8vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.media-feature-copy p:last-child {
  margin-top: 20px;
  color: var(--text-dark-muted);
  line-height: 1.9;
}

.media-frame {
  overflow: hidden;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.08);
  background: rgba(23, 21, 18, 0.04);
}

.media-frame img,
.media-frame iframe {
  display: block;
  width: 100%;
  height: auto;
}

.media-embed {
  aspect-ratio: 16 / 9;
}

.media-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.band-list {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.band-list span {
  padding: 14px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-muted);
  text-align: center;
  font-size: 0.92rem;
  background: rgba(255, 255, 255, 0.03);
}

.stats-stack {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.stat-block,
.sector-card,
.engagement-card {
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.06);
}

.stat-block strong,
.sector-card h3,
.engagement-card h3 {
  display: block;
  margin-bottom: 10px;
  font-family: "Sora", sans-serif;
  font-size: 1.15rem;
  line-height: 1.3;
}

.stat-block p,
.sector-card p,
.engagement-card p {
  margin: 0;
  color: var(--text-dark-muted);
  line-height: 1.8;
}

.expertise-grid,
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.expertise-card,
.work-card {
  min-height: 260px;
  padding: 28px;
  border-radius: var(--radius);
}

.expertise-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
}

.card-index {
  color: var(--accent);
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px 22px 22px 0;
  border-top: 1px solid var(--line-dark);
}

.timeline-item:first-child {
  border-top: 0;
}

.work-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.06);
}

.sector-grid,
.engagement-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.engagement-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sector-card span,
.engagement-card span {
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.work-meta {
  color: rgba(23, 21, 18, 0.5);
}

.insights-list {
  display: grid;
  gap: 16px;
}

.insight-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  padding: 20px 0;
  border-top: 1px solid var(--line-dark);
}

.insight-card:first-child {
  border-top: 0;
}

.section-cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(212, 255, 63, 0.06), transparent),
    var(--bg);
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 28px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top right, rgba(212, 255, 63, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.contact-note {
  color: var(--text-muted);
}

.footer {
  padding: 24px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
}

.footer strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Sora", sans-serif;
  letter-spacing: 0.12em;
  font-size: 0.95rem;
}

.footer p {
  max-width: 560px;
  color: var(--text-muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--text-muted);
}

.text-link {
  color: var(--text-dark);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.inner-hero {
  padding: 110px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(212, 255, 63, 0.08), transparent 24%),
    var(--bg-soft);
}

.inner-hero-light {
  background:
    linear-gradient(180deg, rgba(212, 255, 63, 0.08), rgba(212, 255, 63, 0)),
    var(--surface);
  color: var(--text-dark);
}

.inner-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: end;
}

.inner-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  max-width: 11ch;
}

.inner-summary {
  font-size: 1.08rem;
  line-height: 1.85;
  color: var(--text-muted);
}

.inner-hero-light .inner-summary {
  color: var(--text-dark-muted);
}

.values-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.value-card,
.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.06);
}

.value-card span {
  color: var(--accent-deep);
  font-weight: 800;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
}

.value-card h3,
.contact-card h2 {
  margin: 10px 0 12px;
  font-family: "Sora", sans-serif;
  line-height: 1.25;
}

.value-card p,
.contact-card p {
  margin: 0;
  color: var(--text-dark-muted);
  line-height: 1.8;
}

.form-placeholder {
  margin-top: 20px;
  padding: 22px;
  border: 1px dashed rgba(23, 21, 18, 0.18);
  border-radius: 18px;
  background: rgba(23, 21, 18, 0.03);
  color: var(--text-dark-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.contact-note-dark {
  margin-top: 16px;
  color: var(--text-dark-muted);
}

.service-stack {
  display: grid;
  gap: 16px;
}

.service-row {
  display: grid;
  grid-template-columns: minmax(240px, 0.6fr) minmax(0, 1.4fr);
  gap: 28px;
  align-items: start;
  padding: 24px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-grid,
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.team-card,
.testimonial-card {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.06);
}

.team-photo {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: calc(var(--radius) - 8px);
  aspect-ratio: 4 / 4.6;
  background: rgba(23, 21, 18, 0.06);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card h3,
.testimonial-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.25rem;
  line-height: 1.2;
}

.team-role,
.testimonial-role,
.testimonial-quote-mark {
  margin: 10px 0 14px;
  color: var(--accent-deep);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.team-card p:last-child,
.testimonial-copy,
.testimonial-card p {
  margin: 0;
  color: var(--text-dark-muted);
  line-height: 1.85;
}

.article-card {
  display: flex;
  flex-direction: column;
  min-height: 300px;
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.06);
}

.article-card h2 {
  margin: 12px 0;
  font-family: "Sora", sans-serif;
  font-size: 1.35rem;
  line-height: 1.25;
}

.article-card p {
  margin: 0;
  color: var(--text-dark-muted);
  line-height: 1.8;
}

.article-link {
  margin-top: auto;
  padding-top: 22px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-grid-dark .article-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.article-card-dark h2 a,
.article-card-dark p,
.article-card-dark .article-link {
  color: var(--text);
}

.article-card-dark p {
  color: var(--text-muted);
}

.content-single {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 28px;
}

.content-body {
  color: var(--text-dark);
}

.content-body > *:first-child {
  margin-top: 0;
}

.content-body h2,
.content-body h3,
.content-body h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
  margin: 0 0 16px;
}

.content-body p,
.content-body li {
  color: var(--text-dark-muted);
  line-height: 1.9;
}

.editor-zone {
  max-width: 1040px;
}

.editor-zone-body {
  padding: 34px;
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(23, 21, 18, 0.08);
  box-shadow: 0 18px 40px rgba(56, 45, 20, 0.06);
}

.editor-zone-body > *:first-child {
  margin-top: 0;
}

.editor-zone-body > *:last-child {
  margin-bottom: 0;
}

.editor-zone-body h2,
.editor-zone-body h3,
.editor-zone-body h4 {
  font-family: "Sora", sans-serif;
  line-height: 1.2;
}

.editor-zone-body p,
.editor-zone-body li,
.editor-zone-body figcaption {
  color: var(--text-dark-muted);
  line-height: 1.9;
}

.editor-zone-body img,
.editor-zone-body video,
.editor-zone-body iframe {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.content-body p + p,
.content-body ul + p,
.content-body p + ul {
  margin-top: 16px;
}

.content-sidebar {
  position: relative;
}

.sidebar-card {
  position: sticky;
  top: 110px;
  padding: 26px;
  border-radius: var(--radius);
  background: rgba(23, 21, 18, 0.04);
  border: 1px solid rgba(23, 21, 18, 0.08);
}

.sidebar-card h2 {
  margin: 10px 0 16px;
  font-family: "Sora", sans-serif;
  line-height: 1.25;
}

.form-richtext {
  margin-top: 20px;
  color: var(--text-dark-muted);
}

.form-richtext p {
  line-height: 1.8;
}

.founder-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(220px, 0.9fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background:
    radial-gradient(circle at top right, rgba(212, 255, 63, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
}

.founder-label h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  line-height: 1.05;
}

.founder-photo {
  overflow: hidden;
  border-radius: calc(var(--radius) - 2px);
  min-height: 280px;
  background: rgba(255, 255, 255, 0.04);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.founder-role {
  margin-top: 12px;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.86rem;
}

.founder-copy p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.9;
  font-size: 1.02rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal-delay {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 390px);
    gap: 28px;
  }

  .hero-copy h1 {
    max-width: 7.8ch;
    font-size: clamp(3rem, 5.4vw, 5.2rem);
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-block;
  }

  .main-nav {
    position: absolute;
    top: calc(100% + 12px);
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: rgba(7, 6, 6, 0.96);
  }

  .main-nav.is-open {
    display: flex;
  }

  .hero-layout,
  .section-grid,
  .split-feature,
  .insights-layout,
  .cta-panel,
  .inner-hero-layout,
  .media-feature-grid,
  .expertise-grid,
  .work-grid,
  .metrics,
  .band-list,
  .stats-stack,
  .sector-grid,
  .engagement-grid,
  .values-grid,
  .contact-layout,
  .article-grid,
  .team-grid,
  .testimonial-grid,
  .content-single,
  .service-row,
  .founder-panel {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .section-head h2,
  .split-copy h2,
  .cta-copy h2 {
    max-width: none;
  }

  .hero-panel {
    width: 100%;
    margin-left: 0;
  }

  .editor-zone-body {
    padding: 28px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 64px;
  }

  .section {
    padding: 92px 0;
  }

  .hero-panel,
  .expertise-card,
  .work-card,
  .cta-panel,
  .article-card,
  .team-card,
  .testimonial-card,
  .stat-block,
  .sector-card,
  .engagement-card {
    padding: 24px;
  }

  .button,
  .nav-cta {
    width: 100%;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
}
