:root {
  --ink: #071832;
  --ink-soft: #243149;
  --teal: #18c7c2;
  --blue: #2d64c8;
  --violet: #6040c8;
  --mist: #f3f8f9;
  --line: #d8e5e8;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(7, 24, 50, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(216, 229, 232, 0.85);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1240px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: 160px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 700;
}

.nav-links a {
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta {
  padding: 9px 12px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 0.85rem;
  white-space: nowrap;
}

.nav-links .nav-cta:hover {
  color: var(--white);
  background: #12305d;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 10px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 54px;
  width: min(1240px, calc(100% - 40px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  padding: 64px 0 74px;
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  align-items: center;
  gap: 54px;
  width: min(1240px, calc(100% - 40px));
  min-height: calc(86vh - 78px);
  margin: 0 auto;
  padding: 74px 0;
}

.founder-hero h1 {
  max-width: 840px;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
}

.founder-hero-copy p:not(.eyebrow) {
  max-width: 690px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

.founder-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #f4fbfb 100%);
  box-shadow: var(--shadow);
}

.founder-card img {
  width: min(420px, 100%);
  margin: 0 auto 18px;
}

.founder-photo {
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.founder-photo-placeholder {
  display: grid;
  width: min(320px, 100%);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(135deg, #f4fbfb 0%, #ffffff 48%, #edf4ff 100%);
  color: var(--ink);
  font-size: clamp(3.6rem, 9vw, 6rem);
  font-weight: 760;
  letter-spacing: 0;
}

.founder-card span,
.founder-card strong {
  display: block;
}

.founder-card span {
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.founder-card strong {
  margin-top: 8px;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.3;
}

.founder-card p {
  margin: 8px 0 0;
  color: var(--ink-soft);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  font-weight: 760;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero-intro {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--ink-soft);
  font-size: 1.18rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  color: var(--white);
  background: var(--ink);
}

.button.primary:hover {
  background: #12305d;
}

.button.secondary {
  color: var(--blue);
  border: 1px solid var(--blue);
  background: var(--white);
}

.button.secondary:hover {
  color: var(--white);
  background: var(--blue);
}

.hero-panel {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: linear-gradient(145deg, #ffffff 0%, #f4fbfb 100%);
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: min(440px, 100%);
  margin: 0 auto;
  border-radius: 10px;
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.signal-grid div {
  min-height: 126px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.signal-grid strong,
.signal-grid span {
  display: block;
}

.signal-grid strong {
  color: var(--blue);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signal-grid span {
  margin-top: 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.section {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 92px 0;
}

.band {
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1240px) / 2));
  background: var(--mist);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 46px;
  margin-bottom: 34px;
}

.section-heading.compact {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.section-heading.compact p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.55;
}

.section-heading h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.8rem, 3.5vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 0;
}

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

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

.definition-grid article,
.work-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.definition-grid h3,
.work-card h3 {
  margin: 14px 0 10px;
  font-size: 1.35rem;
}

.definition-grid p,
.work-card p,
.contact p {
  margin: 0;
  color: var(--ink-soft);
}

.index {
  color: var(--teal);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.history-figure {
  margin: 0;
  border-radius: 12px;
  overflow: hidden;
  background: #06152b;
  box-shadow: var(--shadow);
}

.history-figure img {
  width: 100%;
}

.history-figure figcaption {
  padding: 18px 22px;
  color: #dce8f1;
  font-size: 0.95rem;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
}

.story-grid p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.founder-quote {
  margin: 28px 0 0;
  padding: 30px 30px 50px;
  border-left: 5px solid var(--teal);
  border-radius: 10px;
  background: var(--ink);
  color: var(--white);
  overflow: visible;
  min-height: fit-content;
}

.founder-quote p {
  margin: 0;
  font-size: clamp(1.25rem, 2.3vw, 2rem);
  line-height: 1.28;
}

.founder-quote cite {
  display: block;
  margin-top: 18px;
  color: #dbe7ed;
  font-style: normal;
  font-weight: 800;
}

.founder-principles {
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1240px) / 2));
  background: var(--mist);
}

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

.principle-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.principle-grid h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.principle-grid p {
  margin: 0;
  color: var(--ink-soft);
}

/* Case study layout */
.case-study-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: start;
}

.case-study-image img.playbook-thumb,
.resource-image img.playbook-thumb {
  width: 100%;
  max-width: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

/* Resources section */
.resources .section-heading {
  margin-bottom: 48px;
}

.resource-item {
  display: grid;
  grid-template-columns: 1fr 220px;
  gap: 34px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--line);
}

.resource-item:last-child {
  border-bottom: none;
}

.resource-item .resource-text {
  order: 1;
}

.resource-item .resource-image {
  order: 2;
}

.resource-item h3 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.resource-subtitle {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 1.05rem;
  font-weight: 700;
}

.resource-text > p:not(.resource-subtitle) {
  margin: 0 0 20px;
  color: var(--ink-soft);
  font-size: 1.06rem;
  max-width: 720px;
}

.resource-series {
  grid-template-columns: 1fr;
}

.resource-series .resource-text {
  margin-bottom: 8px;
}

.resource-series .series-grid {
  grid-column: 1 / -1;
}

.series-grid .work-card img.playbook-thumb {
  max-width: 280px;
  width: 100%;
  margin: 0 auto 16px;
}

.series-cta-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 32px;
}

.series-cta-row .series-cta {
  align-self: center;
}

.series-cta-row .series-image {
  max-width: 420px;
  width: 100%;
}

.series-cta-row .series-image img.playbook-thumb {
  max-width: 100%;
  width: 100%;
}

.series-image {
  text-align: center;
}

.series-image img.playbook-thumb {
  max-width: 340px;
  margin: 0 auto;
}

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

.series-grid .work-card h4 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

@media (max-width: 920px) {
  .case-study-layout {
    grid-template-columns: 1fr;
  }

  .case-study-image img.playbook-thumb,
  .resource-image img.playbook-thumb {
    max-width: 180px;
    margin: 0 auto;
  }

  .resource-item,
  .resource-series {
    grid-template-columns: 1fr;
  }

  .resource-item .resource-image {
    order: 1;
  }

  .resource-item .resource-text {
    order: 2;
  }

  .series-grid {
    grid-template-columns: 1fr;
  }
}

.about {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 42px;
  align-items: start;
}

.about h2 {
  margin: 0 0 22px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

.about-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.about-points {
  display: grid;
  gap: 12px;
}

.about-points div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--mist);
}

.about-points strong,
.about-points span {
  display: block;
}

.about-points strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.about-points span {
  margin-top: 6px;
  color: var(--ink-soft);
}

.founder-preview {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 42px;
  align-items: center;
}

.founder-preview-photo img {
  width: min(340px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.founder-preview h2 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.03;
}

.founder-preview p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 1.06rem;
}

.governance {
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1240px) / 2));
  background: linear-gradient(135deg, #071832 0%, #102b55 100%);
  color: var(--white);
}

.governance .eyebrow {
  color: var(--teal);
}

.governance h2 {
  color: var(--white);
}

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

.governance-grid article {
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

/* Who We Help section */
.who-we-help {
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1240px) / 2));
  background: var(--mist);
}

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

.audience-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.audience-grid h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  color: var(--ink);
}

.audience-grid p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.governance-grid h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.governance-grid p {
  margin: 0;
  color: #dbe7ed;
}

.work-card span {
  display: block;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--blue);
  font-weight: 800;
  font-size: 0.92rem;
}

/* Service tag styling */
.service-tag {
  display: block;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: none;
}

/* Wide card for retainer */
.work-card-wide {
  grid-column: 1 / -1;
}

.work-card-wide p:not(.service-tag) {
  margin: 0 0 16px;
  color: var(--ink-soft);
}

/* Retainer service tags */
.retainer-services {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.retainer-services span {
  display: inline-block;
  margin: 0;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--mist);
  color: var(--ink-soft);
  font-size: 0.85rem;
  font-weight: 600;
}

/* Service card list styling */
.work-card ul {
  margin: 0;
  padding: 0 0 0 18px;
  list-style: disc;
}

.work-card ul li {
  margin: 0 0 8px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.45;
}

.work-card ul li:last-child {
  margin-bottom: 0;
}

/* Image-based offer cards */
.work-grid-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.work-image-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.work-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.work-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

.work-image-card-wide {
  grid-column: 1 / -1;
}

/* Audience image cards */
.audience-grid-images {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.audience-image-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.audience-image-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.audience-image-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* Methodology section */
.methodology {
  background: var(--mist);
}

.methodology-roi {
  margin-bottom: 28px;
}

.roi-card {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  max-width: 900px;
  margin: 0 auto;
}

.roi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.roi-card img {
  width: 100%;
  height: auto;
  display: block;
}

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

.pillar-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
}

.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.pillar-card img {
  width: 100%;
  height: auto;
  display: block;
}

.assessment {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 34px;
  width: 100%;
  padding: 92px max(20px, calc((100vw - 1240px) / 2));
  background: var(--ink);
  color: var(--white);
}

.assessment h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.assessment p {
  color: #dbe7ed;
  font-size: 1.06rem;
}

.assessment .eyebrow {
  color: var(--teal);
}

.assessment .button.primary {
  background: var(--teal);
  color: var(--ink);
}

.assessment-frame {
  height: 760px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

.assessment-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.contact h2 {
  max-width: 740px;
  margin: 0 0 14px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.02;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 30px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.footer img {
  width: 150px;
}

.footer p {
  margin: 0;
}

/* AI Fluency Framework Section */
.fluency-framework {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  margin-bottom: 48px;
}

.fluency-concepts {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.fluency-concepts h3 {
  margin: 0 0 18px;
  font-size: 1.5rem;
  color: var(--ink);
}

.fluency-concepts h4 {
  margin: 0 0 12px;
  font-size: 1rem;
  color: var(--teal);
  font-weight: 700;
}

.fluency-concepts ul {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  list-style: disc;
}

.fluency-concepts ul li {
  margin: 0 0 10px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fluency-concepts ul li strong {
  color: var(--ink);
  font-weight: 700;
}

.fluency-concepts p {
  margin: 0 0 14px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.fluency-concepts p:last-child {
  margin-bottom: 0;
}

.fluency-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.fluency-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.fluency-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 16px;
  color: var(--teal);
}

.fluency-icon svg {
  width: 100%;
  height: 100%;
}

.fluency-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
  color: var(--ink);
}

.fluency-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
  line-height: 1.5;
}

.fluency-outcomes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
}

.outcome {
  text-align: center;
}

.outcome strong {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

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

  .nav-links {
    position: absolute;
    top: 78px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero,
  .founder-hero,
  .section-heading,
  .definition-grid,
  .work-grid,
  .work-grid-images,
  .story-grid,
  .principle-grid,
  .governance-grid,
  .founder-preview,
  .about,
  .assessment,
  .fluency-framework,
  .fluency-grid,
  .fluency-outcomes,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .audience-grid-images {
    grid-template-columns: 1fr 1fr;
  }

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

  .hero {
    min-height: auto;
    padding-top: 42px;
  }

  .assessment-frame {
    height: 680px;
  }

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

  .series-image img.playbook-thumb {
    max-width: 300px;
  }

  .series-grid .work-card img.playbook-thumb {
    max-width: 240px;
  }

  .series-cta-row .series-image {
    max-width: 380px;
  }
}

@media (max-width: 620px) {
  .nav,
  .hero,
  .section,
  .footer {
    width: min(100% - 28px, 1240px);
  }

  .brand img {
    width: 132px;
  }

  h1 {
    font-size: clamp(2.25rem, 13vw, 3.8rem);
  }

  .hero-panel {
    padding: 16px;
  }

  .signal-grid {
    grid-template-columns: 1fr;
  }

  .band,
  .founder-principles,
  .governance,
  .assessment,
  .who-we-help {
    padding-right: 14px;
    padding-left: 14px;
  }

  .section {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .founder-quote {
    padding: 20px 20px 40px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .assessment-frame {
    height: 620px;
  }

  .audience-grid-images {
    grid-template-columns: 1fr;
  }

  .pillar-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .series-image img.playbook-thumb {
    max-width: 260px;
  }

  .series-grid .work-card img.playbook-thumb {
    max-width: 200px;
  }

  .series-cta-row .series-image {
    max-width: 320px;
  }
}
