@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@1,700&display=swap");

:root {
  --ink: #17191c;
  --muted: #5a6065;
  --line: #dde2e1;
  --paper: #f7f8f8;
  --soft: #ecefef;
  --deep: #252b2f;
  --deep-2: #171b1f;
  --accent: #31b67a;
  --accent-dark: #167a54;
  --accent-hover: #55c891;
  --section-accent: #e4f4ed;
  --ink-rgb: 23, 25, 28;
  --deep-rgb: 37, 43, 47;
  --deep-2-rgb: 23, 27, 31;
  --accent-rgb: 49, 182, 122;
  --accent-dark-rgb: 22, 122, 84;
  --paper-rgb: 247, 248, 248;
  --white-rgb: 255, 255, 255;
  --card-shadow: var(--ink-rgb);
  --section-accent-border: rgba(var(--accent-dark-rgb), 0.22);
  --white: #ffffff;
  --white-82: rgba(var(--white-rgb), 0.82);
  --white-70: rgba(var(--white-rgb), 0.70);
  --white-68: rgba(var(--white-rgb), 0.68);
  --white-66: rgba(var(--white-rgb), 0.66);
  --white-32: rgba(var(--white-rgb), 0.32);
  --white-18: rgba(var(--white-rgb), 0.18);
  --white-16: rgba(var(--white-rgb), 0.16);
  --white-10: rgba(var(--white-rgb), 0.10);
  --header-bg: rgba(var(--paper-rgb), 0.96);
  --shadow: 0 18px 50px rgba(var(--ink-rgb), 0.10);
  --service-chip-width: 162px;
  --service-chip-height: 58px;
  --site-max: 1200px;
  --site-gutter: 40px;
  --section-padding-y: clamp(54px, 7vw, 86px);
  --hero-padding-y: clamp(54px, 8vw, 94px);
  --header-height: 96px;
  --font-sans: Arial, Helvetica, sans-serif;
  --font-numeral: "Cormorant Garamond", "EB Garamond", "Playfair Display", "Instrument Serif", "DM Serif Display", Georgia, serif;
  --text-eyebrow: 0.78rem;
  --text-small: 0.92rem;
  --text-nav: 0.94rem;
  --text-body: 1rem;
  --text-card: 0.98rem;
  --text-chip: 0.8rem;
  --text-h3: 1.08rem;
  --text-hero: clamp(2.45rem, 6vw, 5.2rem);
  --text-hero-about: clamp(2.8rem, 5.5vw, 5rem);
  --text-hero-services: clamp(2.35rem, 5.15vw, 4.55rem);
  --text-hero-case: clamp(2.35rem, 4.9vw, 4.9rem);
  --text-mobile-hero: 2.45rem;
  --text-hero-copy: clamp(1.08rem, 2vw, 1.32rem);
  --text-section-heading: clamp(1.8rem, 3.4vw, 3rem);
  --text-section-copy: clamp(1.05rem, 1.6vw, 1.18rem);
  --text-section-intro: clamp(1.03rem, 1.5vw, 1.14rem);
  --text-card-heading-large: clamp(1.45rem, 2.4vw, 2.2rem);
  --text-case-section-heading: clamp(1.5rem, 2.8vw, 2.45rem);
  --text-cta-heading: clamp(1.55rem, 3vw, 2.35rem);
  --text-caption: clamp(0.88rem, 1.2vw, 0.98rem);
  --text-source-item: 1.06rem;
  --text-step-label: 0.82rem;
  --text-process-title: clamp(0.86rem, 1.15vw, 0.98rem);
  --text-process-number: clamp(4.35rem, 5.7vw, 5.35rem);
  --weight-bold: 700;
  --weight-heavy: 800;
  --weight-black: 900;
  --line-solid: 1;
  --line-tight: 1.08;
  --line-ui: 1.2;
  --line-body: 1.65;
  --line-card: 1.68;
  --line-copy: 1.7;
  --line-copy-loose: 1.75;
  --line-hero: 0.98;
  --line-hero-copy: 1.58;
  --tracking-eyebrow: 0.08em;
  --tracking-kicker: 0.06em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: var(--text-body);
  line-height: var(--line-body);
}

.scroll-progress {
  background: var(--accent);
  bottom: -3px;
  height: 3px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 80ms linear;
  width: 100%;
  z-index: 1;
}

a {
  color: inherit;
}

.site-header {
  align-items: center;
  background: transparent;
  border-bottom: 1px solid transparent;
  display: flex;
  gap: 24px;
  justify-content: space-between;
  padding: 18px clamp(18px, 4vw, 56px);
  position: fixed;
  top: 0;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
  width: 100%;
  z-index: 1000;
}

.site-header,
.site-header.nav-solid {
  background: var(--header-bg);
  border-bottom-color: var(--line);
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.08);
}

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

.brand-logo {
  display: block;
  height: clamp(52px, 5vw, 64px);
  max-width: min(300px, 62vw);
  object-fit: contain;
  transition: filter 180ms ease, opacity 180ms ease;
  width: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.site-nav a {
  border-radius: 999px;
  color: var(--muted);
  font-size: var(--text-nav);
  font-weight: var(--weight-bold);
  padding: 8px 12px;
  text-decoration: none;
  transition:
    background-color 180ms ease,
    color 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: var(--soft);
  color: var(--deep);
}

.nav-is-solid main {
  padding-top: var(--header-height);
}

.hero {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(var(--deep-rgb), 0.97), rgba(var(--deep-2-rgb), 0.94)),
    radial-gradient(circle at 85% 20%, rgba(var(--accent-rgb), 0.24), transparent 32%);
  color: var(--white);
  display: grid;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 640px);
  isolation: isolate;
  justify-content: center;
  overflow: hidden;
  padding: clamp(64px, 9vw, 118px) max(var(--site-gutter), calc((100vw - var(--site-max)) / 2));
  position: relative;
}

.hero-visual {
  align-self: center;
  display: flex;
  justify-content: center;
  position: relative;
  transform: none;
}

.hero-mascot {
  align-self: center;
  filter: none;
  height: auto;
  opacity: 1;
  pointer-events: none;
  justify-self: center;
  display: block;
  max-height: none;
  max-width: 640px;
  position: relative;
  transform: none;
  width: 100%;
  z-index: 1;
}

.hero-mascot-standalone {
  display: block;
}

.hero-content,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-panel {
  align-self: end;
  width: 100%;
}

.hero-content,
.cta-band,
.site-footer {
  margin: 0 auto;
  max-width: var(--site-max);
  width: 100%;
}

.hero h1,
.page-hero h1 {
  font-size: var(--text-hero);
  line-height: var(--line-hero);
  margin: 0;
  max-width: 860px;
}

.hero .eyebrow,
.hero h1 {
  transform: none;
}

.no-break {
  white-space: nowrap;
}

.hero-copy,
.page-hero p {
  color: var(--white-82);
  font-size: var(--text-hero-copy);
  line-height: var(--line-hero-copy);
  max-width: 760px;
}

.eyebrow {
  color: var(--accent);
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-eyebrow);
  line-height: var(--line-ui);
  margin: 0 0 clamp(14px, 1.2vw, 18px);
  text-transform: uppercase;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 8px;
  display: inline-flex;
  font-family: var(--font-sans);
  font-size: var(--text-body);
  font-weight: var(--weight-heavy);
  justify-content: center;
  line-height: var(--line-ui);
  min-height: 48px;
  padding: 12px 18px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
}

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

.button-primary:hover {
  background: var(--accent-hover);
}

.button-large {
  font-size: clamp(1rem, 1.3vw, 1.08rem);
  min-height: 58px;
  padding: 18px 28px;
}

.button-secondary {
  border-color: var(--white-32);
  color: var(--white);
}

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

.button-outline {
  border-color: var(--line);
  color: var(--deep);
}

.button-outline:hover {
  background: var(--soft);
}

.hero-panel {
  align-self: center;
  background: var(--white-10);
  border: 1px solid var(--white-18);
  border-radius: 8px;
  box-shadow: var(--shadow);
  padding: 26px;
}

.hero-visual .hero-panel {
  align-self: end;
}

.panel-label {
  color: var(--white-70);
  font-size: var(--text-small);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-kicker);
  line-height: var(--line-ui);
  margin: 0 0 16px;
  text-transform: uppercase;
}

.panel-outcome {
  border-top: 1px solid var(--white-16);
  color: var(--white-70);
  font-size: var(--text-small);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-kicker);
  line-height: var(--line-ui);
  margin: 4px 0 0;
  padding-top: 18px;
  text-transform: uppercase;
}

.source-list,
.check-list,
.tag-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.source-list li {
  border-top: 1px solid var(--white-16);
  font-size: var(--text-source-item);
  font-weight: var(--weight-bold);
  line-height: var(--line-ui);
  padding: 13px 0;
}

.page-hero {
  background: var(--deep);
  color: var(--white);
  margin: 0 auto;
  max-width: none;
  padding: var(--hero-padding-y) var(--site-gutter);
  width: 100%;
}

.page-hero > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max);
  width: 100%;
}

.page-hero .eyebrow {
  color: var(--accent);
}

.services-page .page-hero {
  background: var(--deep);
  color: var(--white);
  padding-left: var(--site-gutter);
  padding-right: var(--site-gutter);
}

.page-hero-inner {
  padding-left: 0;
  padding-right: 0;
}

.services-page .page-hero h1 {
  font-size: var(--text-hero-services);
  line-height: 1.02;
  max-width: 720px;
}

.services-page .page-hero p:not(.eyebrow) {
  margin-top: clamp(28px, 3vw, 40px);
  max-width: 860px;
}

.services-page main > .section {
  padding-top: clamp(22px, 3vw, 36px);
}

.section {
  margin: 0 auto;
  max-width: none;
  padding: var(--section-padding-y) var(--site-gutter);
  width: 100%;
}

.home-section {
  max-width: none;
}

.section-light {
  background: var(--soft);
  max-width: none;
}

.section-light > *,
.section-accent > * {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max);
  width: 100%;
}

.section-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max);
  width: 100%;
}

.section > .section-heading,
.section > .two-column,
.section > .feature-grid,
.section > .deliverable-grid,
.section > .sample-package,
.section > .contact-layout,
.section > .service-list,
.section > .case-study-layout,
.section > .case-snapshot-grid {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--site-max);
  width: 100%;
}

.section-accent {
  background: var(--section-accent);
  max-width: none;
}

.about-section {
  max-width: none;
}

.about-hero h1 {
  font-size: var(--text-hero-about);
  max-width: 920px;
}

.about-hero p:not(.eyebrow) {
  margin-top: clamp(22px, 2.4vw, 30px);
  max-width: 900px;
}

.page-hero p:not(.eyebrow) {
  margin-top: clamp(22px, 2.4vw, 30px);
}

.section-heading {
  margin-bottom: 30px;
  max-width: 780px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--text-section-intro);
  line-height: var(--line-copy);
  max-width: 820px;
}

.section-copy {
  color: var(--muted);
  font-size: var(--text-section-copy);
  line-height: var(--line-copy-loose);
  max-width: 820px;
}

.section-kicker {
  color: var(--deep);
  font-size: var(--text-section-intro);
  font-weight: var(--weight-heavy);
  line-height: 1.45;
  margin: 0 0 10px;
}

h2 {
  font-size: var(--text-section-heading);
  line-height: var(--line-tight);
  margin: 0 0 16px;
}

h3 {
  font-size: var(--text-h3);
  line-height: 1.25;
  margin: 0 0 10px;
}

p {
  margin: 0 0 16px;
}

.two-column {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.wide-gap {
  gap: clamp(30px, 7vw, 92px);
}

.stacked-copy p {
  color: var(--muted);
  font-size: var(--text-section-copy);
  line-height: var(--line-copy);
}

.about-what {
  align-items: start;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.about-explanation {
  margin-bottom: 0;
  max-width: 920px;
}

.about-explanation p:not(.eyebrow) {
  max-width: 860px;
}

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

.process-grid-five {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.process-grid-five article {
  grid-column: span 2;
}

.process-grid-five article:nth-child(4) {
  grid-column: 2 / span 2;
}

.process-grid-five article:nth-child(5) {
  grid-column: 4 / span 2;
}

.feature-card,
.process-grid article,
.sample-package article,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.07);
  padding: clamp(22px, 2.5vw, 28px);
}

.feature-card p,
.process-grid p,
.sample-package p,
.service-item p,
.contact-card p {
  color: var(--muted);
  font-size: var(--text-card);
  line-height: var(--line-card);
}

.about-audience-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-audience-grid .feature-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.about-audience-grid h3 {
  align-self: flex-start;
  font-size: clamp(var(--text-card), 1.05vw, var(--text-h3));
  min-height: calc(2em * 1.25);
  white-space: nowrap;
}

.about-audience-grid .feature-card p {
  margin-bottom: 0;
}

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

.deliverable-grid span {
  background: var(--white-68);
  border: 1px solid var(--section-accent-border);
  border-radius: 8px;
  font-weight: var(--weight-heavy);
  padding: 16px;
}

.portfolio-index .section-heading {
  max-width: 860px;
}

.portfolio-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 16px 42px rgba(var(--card-shadow), 0.08);
  display: grid;
  gap: clamp(22px, 4vw, 38px);
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 0.84fr);
  overflow: hidden;
}

.portfolio-card-media {
  background: var(--soft);
  display: block;
  min-height: 100%;
}

.portfolio-card-media img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.portfolio-card-content {
  align-self: center;
  padding: clamp(22px, 4vw, 38px) clamp(22px, 4vw, 42px) clamp(22px, 4vw, 38px) 0;
}

.portfolio-card-content h3 {
  font-size: var(--text-card-heading-large);
  line-height: var(--line-tight);
  margin-bottom: 14px;
}

.portfolio-card-content p:not(.eyebrow) {
  color: var(--muted);
  line-height: var(--line-card);
}

.portfolio-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.home-portfolio-card {
  gap: 24px;
  grid-template-columns: 1fr;
}

.home-portfolio-card .portfolio-card-media {
  min-height: 0;
}

.home-portfolio-card .portfolio-card-media img {
  height: auto;
  object-fit: contain;
}

.home-portfolio-card .portfolio-card-content {
  padding: 0 clamp(22px, 4vw, 42px) clamp(22px, 4vw, 38px);
}

.case-study-text-link {
  color: var(--deep);
  display: inline-flex;
  font-weight: var(--weight-heavy);
  margin-top: 12px;
  text-decoration-color: rgba(var(--accent-rgb), 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.case-study-text-link:hover {
  color: var(--accent-deep);
}

.feature-card,
.process-grid article,
.deliverable-grid span,
.about-proof-list li,
.portfolio-card,
.featured-case-study-card,
.featured-proof,
.featured-proof-points,
.featured-proof-points li,
.case-hero-proof-card,
.case-snapshot-card,
.case-copy-card,
.case-flow-grid article,
.case-materials-card,
.case-stage-grid article,
.case-proof-point-grid article,
.case-deliverable-grid span,
.package-card,
.option-card {
  border-left: 3px solid var(--accent, #31b67a);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover,
.process-grid article:hover,
.deliverable-grid span:hover,
.about-proof-list li:hover,
.portfolio-card:hover,
.featured-case-study-card:hover,
.featured-proof:hover,
.featured-proof-points:hover,
.featured-proof-points li:hover,
.case-hero-proof-card:hover,
.case-snapshot-card:hover,
.case-copy-card:hover,
.case-flow-grid article:hover,
.case-materials-card:hover,
.case-stage-grid article:hover,
.case-proof-point-grid article:hover,
.case-deliverable-grid span:hover,
.package-card:hover,
.option-card:hover {
  box-shadow: 0 4px 20px rgba(49, 182, 122, 0.10);
  transform: translateY(-2px);
}

.featured-case-study {
  display: grid;
  gap: clamp(22px, 3.5vw, 36px);
}

.featured-proof {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(var(--card-shadow), 0.09);
  margin: 0;
  overflow: hidden;
  padding: clamp(14px, 2vw, 22px);
}

.featured-proof a {
  display: block;
}

.featured-proof img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.featured-proof figcaption {
  border-top: 1px solid var(--line);
  color: var(--accent-dark);
  font-size: var(--text-small);
  font-weight: var(--weight-heavy);
  line-height: 1.45;
  margin-top: clamp(12px, 1.8vw, 18px);
  padding-top: 12px;
  text-align: center;
}

.featured-case-study-details {
  align-items: stretch;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.56fr);
}

.featured-case-study-card,
.featured-proof-points {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.06);
  margin: 0;
  padding: clamp(22px, 3vw, 30px);
}

.featured-case-study-card h3 {
  font-size: var(--text-card-heading-large);
  line-height: var(--line-tight);
  margin-bottom: 14px;
}

.featured-case-study-card p:not(.eyebrow) {
  color: var(--muted);
  line-height: var(--line-card);
  max-width: 760px;
}

.featured-proof-points {
  display: grid;
  gap: 12px;
  list-style: none;
}

.featured-proof-points li {
  background: var(--section-accent);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  color: var(--deep);
  font-size: var(--text-card);
  font-weight: var(--weight-heavy);
  line-height: 1.45;
  padding: 13px 14px;
}

.case-hero {
  background:
    linear-gradient(135deg, rgba(var(--deep-rgb), 0.97), rgba(var(--deep-2-rgb), 0.95)),
    radial-gradient(circle at 84% 18%, rgba(var(--accent-rgb), 0.20), transparent 30%);
  color: var(--white);
  margin: 0 auto;
  max-width: none;
  padding: clamp(86px, 11vw, 138px) var(--site-gutter);
  width: 100%;
}

.case-hero-inner {
  align-items: center;
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
}

.case-hero-copy,
.case-hero-visual,
.case-hero-proof-card {
  margin-left: 0;
  margin-right: 0;
  max-width: none;
}

.case-hero-copy {
  max-width: 860px;
}

.case-hero-proof-card {
  background: rgba(var(--white-rgb), 0.08);
  border: 1px solid rgba(var(--white-rgb), 0.18);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(var(--deep-2-rgb), 0.18);
  padding: clamp(24px, 4vw, 38px);
}

.case-hero-proof-card h2 {
  color: var(--white);
  font-size: var(--text-case-section-heading);
  line-height: var(--line-tight);
  margin-bottom: 16px;
}

.case-hero-proof-card p:not(.eyebrow) {
  color: var(--white-82);
  font-size: var(--text-body);
  line-height: var(--line-card);
  margin: 0;
}

.case-hero h1 {
  font-size: clamp(2.9rem, 5.4vw, 5.4rem);
  line-height: var(--line-solid);
  margin: 0 auto;
  max-width: 920px;
}

.case-hero p:not(.eyebrow) {
  color: var(--white-82);
  font-size: var(--text-section-copy);
  line-height: 1.62;
  margin: clamp(24px, 3vw, 34px) auto 0;
  max-width: 640px;
}

.case-hero .case-hero-proof-card p:not(.eyebrow) {
  font-size: var(--text-body);
  line-height: var(--line-card);
  margin: 0;
}

.case-secondary-link {
  align-items: center;
  color: var(--white);
  display: inline-flex;
  font-size: var(--text-body);
  font-weight: var(--weight-heavy);
  min-height: 48px;
  text-decoration-color: rgba(var(--white-rgb), 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}

.case-secondary-link:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent-hover);
}

.case-stat-strip,
.case-outcome-strip {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  justify-content: center;
  margin: clamp(26px, 3.6vw, 42px) auto 0;
}

.case-stat-strip span,
.case-outcome-strip span {
  color: var(--white-82);
  font-size: var(--text-small);
  font-weight: var(--weight-heavy);
  letter-spacing: var(--tracking-kicker);
  line-height: var(--line-ui);
  padding: 0 clamp(12px, 2vw, 22px);
  text-transform: uppercase;
}

.case-stat-strip span + span,
.case-outcome-strip span + span {
  border-left: 1px solid rgba(var(--white-rgb), 0.24);
}

.case-hero .button-row {
  justify-content: center;
}

.case-hero-visual {
  margin-bottom: 0;
  width: 100%;
}

.case-hero-visual img,
.case-proof-figure img {
  border: 1px solid rgba(var(--white-rgb), 0.22);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(var(--deep-2-rgb), 0.24);
  display: block;
  height: auto;
  width: 100%;
}

.case-hero-visual figcaption,
.case-proof-figure figcaption {
  color: var(--white-70);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  line-height: 1.45;
  margin-top: 12px;
}

.case-study-layout {
  align-items: start;
  display: grid;
  gap: clamp(28px, 5vw, 58px);
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
}

.case-snapshot-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-snapshot-card,
.case-copy-card,
.case-flow-grid article,
.case-materials-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.06);
}

.case-snapshot-card {
  padding: 24px;
}

.case-snapshot-card h3,
.case-flow-grid h3,
.case-materials-card h3 {
  font-size: var(--text-card-heading);
  line-height: var(--line-tight);
  margin-bottom: 10px;
}

.case-snapshot-card p,
.case-flow-grid p,
.case-materials-card li {
  color: var(--muted);
  line-height: var(--line-card);
}

.case-snapshot-card p {
  margin: 0;
}

.case-snapshot-section .section-heading {
  margin-bottom: 18px;
}

.case-copy-card {
  padding: clamp(28px, 4vw, 42px);
}

.case-copy-card h2 {
  font-size: var(--text-case-section-heading);
  line-height: var(--line-tight);
}

.case-copy-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--text-section-copy);
  line-height: 1.72;
}

.case-snapshot {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.06);
  padding: clamp(22px, 3vw, 28px);
}

.case-snapshot dl {
  display: grid;
  gap: 18px;
  margin: 0;
}

.case-snapshot dt {
  color: var(--accent-dark);
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-kicker);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.case-snapshot dd {
  color: var(--deep);
  margin: 0;
}

.case-study-copy {
  display: grid;
  gap: 28px;
}

.case-copy-block h2 {
  font-size: var(--text-case-section-heading);
  max-width: 760px;
}

.case-copy-block p:not(.eyebrow) {
  color: var(--muted);
  font-size: var(--text-section-copy);
  line-height: 1.72;
  max-width: 800px;
}

.case-proof-section .section-heading {
  max-width: 860px;
}

.case-snapshot-section,
.case-challenge-approach-section,
.case-project-brief-section,
.case-proof-section,
.case-package-section,
.case-flow-section,
.case-audience-materials-section,
.case-outcome-section {
  padding-bottom: clamp(50px, 6.4vw, 78px);
  padding-top: clamp(50px, 6.4vw, 78px);
}

.case-package-section .section-heading,
.case-flow-section .section-heading,
.case-audience-materials-section .section-heading {
  max-width: 880px;
}

.case-project-brief-section .section-heading {
  max-width: 860px;
}

.case-project-brief-section .case-snapshot-grid {
  margin-top: clamp(22px, 3vw, 30px);
}

.case-brief-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(20px, 3vw, 32px);
}

.case-brief-grid .case-copy-card {
  padding: clamp(24px, 3vw, 32px);
}

.case-brief-grid .case-copy-card h2 {
  font-size: clamp(1.2rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

.case-proof-figure {
  margin: clamp(22px, 3vw, 32px) 0 0;
}

.case-proof-figure img {
  border-color: var(--line);
  box-shadow: 0 14px 40px rgba(var(--card-shadow), 0.10);
  object-fit: contain;
}

.case-proof-figure figcaption {
  color: var(--muted);
  text-align: center;
}

.case-proof-figure-main img {
  background: var(--white);
}

.case-stage-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(18px, 2.5vw, 28px);
}

.case-stage-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.055);
  padding: 20px;
}

.case-stage-grid span {
  color: var(--accent-dark);
  display: inline-block;
  font-size: var(--text-eyebrow);
  font-weight: var(--weight-black);
  letter-spacing: var(--tracking-kicker);
  margin-bottom: 14px;
}

.case-stage-grid h3 {
  font-size: var(--text-card-heading);
}

.case-stage-grid p {
  color: var(--muted);
  line-height: var(--line-card);
  margin: 0;
}

.case-proof-figure-detail {
  margin-left: auto;
  margin-right: auto;
  max-width: 960px;
}

.case-study-visual-placeholder {
  align-items: center;
  background:
    linear-gradient(135deg, rgba(var(--accent-rgb), 0.08), rgba(var(--white-rgb), 0.92)),
    var(--soft);
  border: 1px dashed rgba(var(--accent-dark-rgb), 0.42);
  border-left: 5px solid var(--accent);
  border-radius: 8px;
  color: var(--accent-dark);
  display: flex;
  justify-content: center;
  min-height: clamp(170px, 24vw, 280px);
  padding: clamp(28px, 5vw, 48px);
  text-align: center;
}

.case-study-visual-placeholder span {
  font-size: var(--text-card-heading);
  font-weight: var(--weight-black);
  letter-spacing: 0.02em;
}

.case-study-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 40px rgba(var(--card-shadow), 0.09);
  margin: clamp(22px, 3vw, 32px) 0 0;
  overflow: hidden;
}

.case-study-visual img {
  display: block;
  height: auto;
  object-fit: contain;
  width: 100%;
}

.case-study-visual figcaption {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: var(--text-small);
  font-weight: var(--weight-bold);
  line-height: 1.45;
  padding: 14px clamp(18px, 3vw, 26px);
  text-align: center;
}

.case-package-section .case-deliverable-grid,
.case-flow-grid,
.case-materials-grid {
  margin-top: clamp(18px, 2.5vw, 28px);
}

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

.case-flow-grid article {
  min-height: 100%;
  padding: 22px;
}

.case-flow-grid p {
  margin: 0;
}

.case-phase-row {
  align-items: stretch;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin-top: clamp(18px, 2.5vw, 28px);
}

.case-phase-row span {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  display: flex;
  font-size: var(--text-small);
  font-weight: var(--weight-heavy);
  justify-content: center;
  line-height: 1.25;
  min-height: 48px;
  padding: 10px 14px;
  text-align: center;
}

.case-support-line {
  color: var(--muted);
  font-size: var(--text-section-copy);
  font-weight: var(--weight-bold);
  line-height: var(--line-copy);
  margin: clamp(16px, 2vw, 24px) auto 0;
  max-width: 820px;
  text-align: center;
}

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

.case-materials-card {
  padding: clamp(26px, 4vw, 36px);
}

.case-materials-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.case-materials-card li {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.case-deliverables-section {
  max-width: none;
}

.case-deliverable-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.case-outcome-section .stacked-copy strong {
  color: var(--deep);
}

.case-proof-point-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.case-proof-point-grid article {
  background: var(--white);
  border: 1px solid var(--section-accent-border);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.06);
  padding: clamp(24px, 3vw, 34px);
}

.case-proof-point-grid p {
  color: var(--deep);
  font-size: var(--text-section-intro);
  font-weight: var(--weight-heavy);
  line-height: 1.5;
  margin: 0;
}

.case-result-hero {
  background:
    linear-gradient(180deg, rgba(var(--accent-rgb), 0.11), rgba(var(--paper-rgb), 0.92) 28%, var(--paper));
  border-top: 3px solid rgba(var(--accent-rgb), 0.42);
  padding: clamp(132px, 13vw, 176px) var(--site-gutter) clamp(86px, 11vw, 132px);
  scroll-margin-top: clamp(108px, 11vw, 142px);
  text-align: center;
}

.case-result-hero .section-heading {
  margin-left: auto;
  margin-right: auto;
  max-width: 860px;
}

.case-result-hero .section-heading h2 {
  font-size: clamp(2.25rem, 4.8vw, 4.6rem);
  line-height: var(--line-solid);
}

.case-result-hero .section-heading p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
  max-width: 640px;
}

.case-result-hero .case-outcome-strip span {
  color: var(--deep);
}

.case-result-hero .case-outcome-strip span + span {
  border-left-color: rgba(var(--deep-rgb), 0.18);
}

.case-bridge-line {
  color: var(--deep);
  font-size: clamp(1.12rem, 1.8vw, 1.34rem);
  font-weight: var(--weight-heavy);
  line-height: 1.55;
  margin: clamp(28px, 4vw, 44px) auto 0;
  max-width: 760px;
}

.case-final-cta {
  border-radius: 0;
  border-top: 3px solid var(--accent);
  flex-direction: column;
  gap: clamp(26px, 4vw, 40px);
  margin-bottom: 0;
  margin-top: 0;
  max-width: none;
  padding-bottom: clamp(76px, 10vw, 118px);
  padding-top: clamp(76px, 10vw, 118px);
  text-align: center;
}

.case-final-cta > div {
  margin-left: auto;
  margin-right: auto;
  max-width: 820px;
}

.case-final-cta .button-row {
  align-items: center;
  flex-direction: column;
  margin-top: 0;
}

.case-final-cta .button {
  width: auto;
}

.case-trust-line {
  color: var(--white-68);
  font-size: var(--text-small);
  line-height: 1.5;
  margin: 12px 0 0;
}

.cta-button-row {
  margin-top: 0;
}

.step-number,
.service-number {
  color: var(--accent-dark);
  display: inline-block;
  font-size: var(--text-step-label);
  font-weight: var(--weight-black);
  margin-bottom: 14px;
}

.process-card-top {
  align-items: center;
  column-gap: clamp(12px, 1.4vw, 14px);
  display: grid;
  grid-template-columns: clamp(48px, 4.8vw, 58px) minmax(0, 1fr);
  margin-bottom: 16px;
}

.process-card-top h3 {
  align-self: center;
  font-size: var(--text-process-title);
  line-height: 1.15;
  margin: 0;
  white-space: nowrap;
}

.process-card-top h3 span {
  -webkit-box-decoration-break: clone;
  background-image: linear-gradient(
    96deg,
    rgba(var(--accent-rgb), 0) 0%,
    rgba(var(--accent-rgb), 0.28) 8%,
    rgba(var(--accent-rgb), 0.62) 42%,
    rgba(var(--accent-rgb), 0.46) 78%,
    rgba(var(--accent-rgb), 0) 100%
  );
  background-position: 0 94%;
  background-repeat: no-repeat;
  background-size: 100% 0.32em;
  box-decoration-break: clone;
  padding: 0 0.06em 0.1em 0.02em;
}

.process-step-number {
  align-items: center;
  color: var(--deep-2);
  display: flex;
  font-family: var(--font-numeral);
  font-feature-settings: "lnum" 1, "tnum" 1;
  font-size: var(--text-process-number);
  font-style: italic;
  font-variant-numeric: lining-nums tabular-nums;
  font-weight: var(--weight-bold);
  height: clamp(58px, 5vw, 70px);
  justify-content: flex-start;
  letter-spacing: -0.08em;
  line-height: var(--line-solid);
  margin: 0;
  padding: 0 0.08em 0 0;
  position: relative;
  text-shadow:
    2px 2px 0 rgba(var(--accent-rgb), 0.3),
    4px 4px 0 rgba(var(--accent-rgb), 0.12);
  width: clamp(48px, 4.8vw, 58px);
}

.cta-band {
  align-items: center;
  background: var(--deep-2);
  border-radius: 8px;
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: clamp(42px, 6vw, 72px);
  margin-top: clamp(8px, 2vw, 18px);
  padding: clamp(26px, 4vw, 42px);
}

.cta-band h2 {
  font-size: var(--text-cta-heading);
  margin-bottom: 0;
}

.cta-support {
  color: var(--white-70);
  font-size: var(--text-section-intro);
  line-height: 1.6;
  margin: 12px 0 0;
  max-width: 720px;
}

.service-list {
  display: grid;
  gap: 18px;
}

/* Package Cards */
.section--white {
  background: var(--paper);
}

.section--gray {
  background: var(--soft);
}

.section--emerald {
  background-color: var(--section-accent, #e4f4ed);
}

.section-subhead {
  color: var(--muted);
  font-size: var(--text-section-intro);
  line-height: var(--line-copy);
  margin-top: 16px;
  max-width: 640px;
}

.package-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.package-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, #31b67a);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.06);
  overflow: hidden;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.package-card:hover {
  box-shadow: 0 4px 24px rgba(49, 182, 122, 0.12);
  transform: translateY(-2px);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.package-card-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 16px;
  padding: 24px 32px;
}

.package-label {
  border: 1px solid var(--accent);
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(49, 182, 122, 0.35);
  color: var(--accent-deep);
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  padding: 4px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.package-card-header h3 {
  font-size: 1.375rem;
  margin: 0;
}

.package-card-body {
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 1fr;
  padding: 32px;
}

.package-description {
  color: var(--muted);
  grid-column: 1 / -1;
  line-height: var(--line-copy);
  margin: 0;
}

.package-meta {
  display: contents;
}

.package-meta-block {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-meta-block p:not(.package-meta-label) {
  color: var(--muted);
  line-height: var(--line-card);
  margin: 0;
}

.package-meta-label {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

.package-includes {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.package-includes li {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: var(--line-card);
  padding-left: 16px;
  position: relative;
}

.package-includes li::before {
  color: var(--accent);
  content: "·";
  font-weight: var(--weight-heavy);
  left: 0;
  position: absolute;
}

.package-note {
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  font-style: italic;
  grid-column: 1 / -1;
  line-height: var(--line-card);
  padding-top: 16px;
}

/* Options Grid */
.options-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 48px;
}

.option-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, #31b67a);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.05);
  padding: 28px;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.option-card:hover {
  box-shadow: 0 4px 20px rgba(49, 182, 122, 0.10);
  transform: translateY(-2px);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.option-card h3 {
  font-size: 1.125rem;
  margin: 0 0 12px;
}

.option-card p {
  color: var(--muted);
  font-size: 0.9375rem;
  line-height: var(--line-card);
  margin: 0;
}

/* Text link */
.text-link {
  color: var(--accent-deep);
  display: inline-block;
  font-weight: var(--weight-bold);
  margin-top: 24px;
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

.services-scene {
  margin: 0 auto clamp(16px, 2.2vw, 24px);
  max-width: 590px;
}

.services-scene-section {
  background-color: var(--paper, #f7f8f8);
  padding-top: 48px;
  padding-bottom: 0;
}

.services-scene-section .services-scene {
  margin: 0 auto;
  text-align: center;
  max-width: 1080px;
}

.services-scene-img {
  width: 100%;
  height: auto;
  display: block;
}

.services-scene-caption {
  margin-top: 4px;
  font-size: 0.9375rem;
  color: var(--accent, #31b67a);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.services-scene img {
  display: block;
  filter: drop-shadow(0 14px 24px rgba(var(--card-shadow), 0.06));
  height: auto;
  width: 100%;
}

.services-scene figcaption {
  color: var(--accent-dark);
  font-size: var(--text-caption);
  font-weight: var(--weight-heavy);
  line-height: 1.35;
  margin: 10px auto 0;
  max-width: 520px;
  text-align: center;
}

.services-scene .services-scene-caption {
  margin-top: 4px;
}

.service-category-heading {
  margin-top: clamp(10px, 2vw, 20px);
}

.service-category-heading:first-child {
  margin-top: 0;
}

.service-category-heading .eyebrow {
  margin-bottom: 0;
}

.service-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 12px 34px rgba(var(--card-shadow), 0.07);
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1fr) minmax(calc((var(--service-chip-width) * 3) + 20px), 0.8fr);
  padding: clamp(24px, 4vw, 38px);
}

.service-item h3 {
  margin-bottom: 14px;
}

.service-item .tag-list {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(3, var(--service-chip-width));
  justify-content: start;
}

.service-item .tag-list li {
  align-items: center;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--deep);
  display: flex;
  font-size: var(--text-chip);
  font-weight: var(--weight-heavy);
  height: var(--service-chip-height);
  justify-content: center;
  line-height: 1.15;
  padding: 8px 10px;
  text-align: center;
  width: var(--service-chip-width);
}

.check-list {
  display: grid;
  gap: 12px;
}

.check-list li {
  background: var(--white-66);
  border-left: 4px solid var(--accent);
  border-radius: 8px;
  padding: 12px 14px;
}

.about-working {
  align-items: start;
  gap: clamp(28px, 6vw, 78px);
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
}

.about-proof-list {
  align-self: start;
}

.about-proof-list li {
  background: rgba(var(--white-rgb), 0.74);
  box-shadow: 0 8px 24px rgba(var(--card-shadow), 0.04);
  line-height: 1.55;
  padding: 14px 16px;
}

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

.about-proof-list strong {
  color: var(--ink);
  font-size: var(--text-card);
  line-height: var(--line-tight);
  margin-bottom: 6px;
}

.about-proof-list span {
  color: var(--muted);
}

.about-style-line {
  margin-bottom: 0;
}

.contact-layout {
  display: grid;
  gap: 30px;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  font-size: var(--text-small);
  line-height: var(--line-ui);
  gap: 18px;
  justify-content: space-between;
  padding: 28px clamp(20px, 5vw, 72px);
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-footer a {
  color: var(--muted);
  font-weight: var(--weight-bold);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--deep);
}

/* Reinforce card accents after page-specific card borders are declared. */
.featured-proof,
.featured-case-study-card,
.featured-proof-points,
.featured-proof-points li,
.case-hero-proof-card,
.case-snapshot-card,
.case-copy-card,
.case-flow-grid article,
.case-materials-card,
.case-stage-grid article,
.case-proof-point-grid article,
.case-deliverable-grid span {
  border-left: 3px solid var(--accent, #31b67a);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.featured-proof:hover,
.featured-case-study-card:hover,
.featured-proof-points:hover,
.featured-proof-points li:hover,
.case-hero-proof-card:hover,
.case-snapshot-card:hover,
.case-copy-card:hover,
.case-flow-grid article:hover,
.case-materials-card:hover,
.case-stage-grid article:hover,
.case-proof-point-grid article:hover,
.case-deliverable-grid span:hover {
  box-shadow: 0 4px 20px rgba(49, 182, 122, 0.10);
  transform: translateY(-2px);
}

@media (max-width: 1080px) {
  .about-audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: clamp(64px, 9vw, 118px);
  }

  .page-hero {
    padding-top: var(--hero-padding-y);
  }

  .hero,
  .case-hero-inner,
  .two-column,
  .portfolio-card,
  .featured-case-study-details,
  .case-study-layout,
  .case-materials-grid,
  .service-item,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-card-content {
    padding: 0 clamp(22px, 4vw, 34px) clamp(24px, 4vw, 34px);
  }

  .hero-mascot {
    display: block;
  }

  .feature-grid,
  .process-grid,
  .sample-package,
  .deliverable-grid,
  .case-brief-grid,
  .case-stage-grid,
  .case-snapshot-grid,
  .case-flow-grid,
  .case-phase-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-grid-five article,
  .process-grid-five article:nth-child(4),
  .process-grid-five article:nth-child(5) {
    grid-column: auto;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .case-hero {
    padding-bottom: clamp(66px, 9vw, 96px);
    padding-top: clamp(66px, 9vw, 96px);
  }

  .case-hero h1 {
    max-width: 720px;
  }

  .case-study-visual figcaption,
  .case-proof-figure figcaption {
    text-align: left;
  }

  .case-proof-point-grid {
    grid-template-columns: 1fr;
  }

  .package-card-body,
  .options-grid {
    grid-template-columns: 1fr;
  }

  .package-card-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-result-hero,
  .case-final-cta {
    padding-bottom: clamp(66px, 9vw, 96px);
    padding-top: clamp(66px, 9vw, 96px);
  }

  .case-result-hero {
    padding-top: clamp(126px, 16vw, 160px);
    scroll-margin-top: 150px;
  }
}

@media (max-width: 620px) {
  :root {
    --service-chip-width: min(162px, calc((100vw - 100px) / 3));
  }

  .brand-logo {
    max-width: min(260px, 72vw);
  }

  .site-nav a {
    padding: 7px 9px;
  }

  .hero,
  .page-hero,
  .case-hero,
  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-top: clamp(64px, 9vw, 118px);
  }

  .page-hero {
    padding-top: var(--hero-padding-y);
  }

  .case-hero {
    padding-top: clamp(66px, 9vw, 96px);
  }

  .hero h1,
  .page-hero h1 {
    font-size: var(--text-mobile-hero);
  }

  .case-hero-inner {
    gap: 24px;
  }

  .case-hero h1 {
    font-size: clamp(2.1rem, 12vw, 3rem);
    line-height: 1.03;
  }

  .case-result-hero {
    padding-top: clamp(148px, 26vw, 184px);
    scroll-margin-top: 170px;
  }

  .case-hero p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.58;
    margin-top: 18px;
  }

  .case-hero-proof-card,
  .case-snapshot-card,
  .case-flow-grid article,
  .case-materials-card {
    padding: 20px;
  }

  .case-copy-card {
    padding: 24px 20px;
  }

  .case-study-visual figcaption {
    padding-left: 14px;
    padding-right: 14px;
  }

  .case-secondary-link {
    justify-content: center;
    width: 100%;
  }

  .feature-grid,
  .process-grid,
  .sample-package,
  .deliverable-grid,
  .case-brief-grid,
  .case-stage-grid,
  .case-deliverable-grid,
  .case-snapshot-grid,
  .case-flow-grid,
  .case-phase-row {
    grid-template-columns: 1fr;
  }

  .case-stat-strip,
  .case-outcome-strip {
    align-items: stretch;
    display: grid;
    gap: 8px;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .case-stat-strip span,
  .case-outcome-strip span {
    border: 1px solid rgba(var(--white-rgb), 0.18);
    border-radius: 999px;
    padding: 10px 14px;
  }

  .case-result-hero .case-outcome-strip span {
    border-color: rgba(var(--deep-rgb), 0.16);
  }

  .case-stat-strip span + span,
  .case-outcome-strip span + span {
    border-left: 1px solid rgba(var(--white-rgb), 0.18);
  }

  .case-result-hero .case-outcome-strip span + span {
    border-left-color: rgba(var(--deep-rgb), 0.16);
  }

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

  .package-card-header,
  .package-card-body,
  .option-card {
    padding: 22px;
  }

  .button {
    width: 100%;
    white-space: normal;
  }

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