:root {
  --ink: #0d1816;
  --muted: #52655f;
  --line: #dfe9e4;
  --paper: #f8faf7;
  --soft: #eef6f1;
  --white: #ffffff;
  --coal: #071412;
  --coal-soft: #0e2622;
  --teal: #14766f;
  --teal-dark: #0d514c;
  --coral: #e94b2b;
  --coral-dark: #bd3b22;
  --gold: #efb85c;
  --shadow: 0 18px 46px rgba(13, 28, 24, 0.11);
  --radius: 8px;
  --page-gutter: clamp(16px, 3.6vw, 56px);
  --content-max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, var(--paper) 46%, #ffffff 100%);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

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

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: 5.8rem;
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: 3rem;
  line-height: 1.04;
  font-weight: 700;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
  line-height: 1.22;
  font-weight: 700;
  letter-spacing: 0;
}

p {
  color: var(--muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  background: rgba(7, 17, 15, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.18);
}

.utility-bar,
.nav-shell {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding-left: var(--page-gutter);
  padding-right: var(--page-gutter);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 700;
}

.utility-bar div {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.utility-bar a:hover,
.nav-links a:hover,
.header-link:hover {
  color: var(--gold);
}

.nav-shell {
  position: relative;
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto auto;
  align-items: center;
  gap: 20px;
  min-height: 76px;
}

.brand,
.nav-links,
.hero-actions,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 10px;
  font-weight: 700;
}

.brand-wordmark {
  display: block;
  max-width: 140px;
  color: var(--white);
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.12;
  white-space: nowrap;
}

.brand-logo {
  width: min(238px, 44vw);
  height: auto;
  max-height: 48px;
  object-fit: contain;
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  inline-size: 38px;
  block-size: 38px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--coral), var(--teal));
  font-size: 0.78rem;
  flex: 0 0 auto;
}

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  gap: 20px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.9rem;
  font-weight: 600;
}

.mobile-nav-cta {
  display: none;
}

.nav-links a[aria-current="page"] {
  color: var(--gold);
}

.header-actions {
  gap: 10px;
}

.header-link,
.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 700;
  line-height: 1.1;
}

.header-link {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.82);
}

.header-cta {
  padding: 11px 16px;
  color: var(--coal);
  background: var(--gold);
  white-space: nowrap;
  transition: background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button {
  border: 0;
  max-width: 100%;
  padding: 14px 20px;
  cursor: pointer;
  text-align: center;
  white-space: normal;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.button.primary,
.button.footer-button {
  color: var(--white);
  border: 1px solid var(--coral);
  background: var(--coral);
  box-shadow: 0 10px 24px rgba(189, 59, 34, 0.2);
}

.button.primary:hover,
.button.footer-button:hover {
  border-color: var(--coral-dark);
  background: var(--coral-dark);
  box-shadow: 0 12px 28px rgba(189, 59, 34, 0.28);
  transform: translateY(-1px);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.button.secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.14);
}

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

.button.dark:hover {
  border-color: var(--teal-dark);
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.header-cta:hover {
  background: #f4c875;
  box-shadow: 0 10px 22px rgba(239, 184, 92, 0.2);
  transform: translateY(-1px);
}

.button:focus-visible,
.header-cta:focus-visible,
.nav-links a:focus-visible,
.text-link:focus-visible {
  outline: 3px solid rgba(239, 184, 92, 0.78);
  outline-offset: 3px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.09);
  cursor: pointer;
  position: relative;
}

.menu-toggle::before,
.menu-toggle::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
}

.menu-toggle::before {
  top: 15px;
  box-shadow: 0 6px 0 var(--white);
}

.menu-toggle::after {
  top: 27px;
}

.hero {
  position: relative;
  min-height: clamp(690px, 84vh, 790px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 116px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter))) 34px;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.9) 0%, rgba(7, 20, 18, 0.72) 52%, rgba(7, 20, 18, 0.18) 100%),
    linear-gradient(0deg, rgba(7, 20, 18, 0.62), rgba(7, 20, 18, 0.02));
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  min-width: 0;
  max-width: 100%;
  margin: 0 auto;
}

.hero-content {
  width: 100%;
  min-width: 0;
  max-width: min(100%, 860px);
}

.hero-kicker,
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.hero h1 {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
  line-height: 1.62;
  overflow-wrap: anywhere;
}

.hero-proof {
  max-width: 720px;
  margin: -14px 0 28px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
  line-height: 1.45;
}

.hero-actions {
  width: 100%;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-card-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 22px 48px rgba(7, 20, 18, 0.18);
}

.hero-card-strip article {
  min-height: 150px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.hero-card-strip article:last-child {
  border-right: 0;
}

.hero-card-strip span,
.solution-grid span,
.lane-top span,
.team-list span {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card-strip h3 {
  max-width: 320px;
}

.hero-card-strip a {
  color: var(--coral-dark);
  font-weight: 700;
}

.inner-main {
  padding-top: 76px;
}

.page-hero {
  position: relative;
  min-height: clamp(490px, 68vh, 570px);
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 88px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter))) 62px;
  color: var(--white);
}

.page-hero-image,
.page-hero-overlay {
  position: absolute;
  inset: 0;
}

.page-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image,
.page-hero-image {
  object-position: center;
}

.human-collaboration-hero {
  object-position: 68% 50%;
}

.nonprofit-campaign-hero {
  object-position: 50% 42%;
}

.planning-detail-hero {
  object-position: 54% 48%;
}

.blog-page-hero .page-hero-image {
  object-position: 50% 44%;
}

.page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.9) 0%, rgba(7, 20, 18, 0.76) 58%, rgba(7, 20, 18, 0.2) 100%),
    linear-gradient(0deg, rgba(7, 20, 18, 0.58), rgba(7, 20, 18, 0.08));
}

.page-hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--content-max));
  margin: 0 auto;
}

.page-hero-content h1 {
  max-width: 900px;
  font-size: clamp(3.2rem, 7vw, 5.4rem);
}

.page-hero-content p:not(.eyebrow) {
  max-width: 690px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.14rem;
  line-height: 1.62;
}

.legal-page-hero {
  min-height: 360px;
  align-items: center;
  padding-top: 140px;
  background: var(--coal);
}

.principle-grid,
.topic-grid,
.leader-grid {
  display: grid;
  gap: 18px;
}

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

.principle-grid article,
.topic-grid article {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.principle-grid article,
.topic-grid article,
.article-card,
.work-card,
.simple-price-card,
.pricing-path-grid article {
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.principle-grid article:hover,
.topic-grid article:hover,
.article-card:hover,
.work-card:hover,
.simple-price-card:hover,
.pricing-path-grid article:hover {
  border-color: rgba(20, 118, 111, 0.28);
  box-shadow: 0 18px 38px rgba(13, 28, 24, 0.1);
  transform: translateY(-2px);
}

.principle-grid span,
.topic-grid span,
.leader-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-weight: 700;
}

.about-team-section .center-heading h2,
.about-team-section .center-heading p {
  color: var(--white);
}

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

.leader-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.leader-card div {
  padding: 24px;
}

.leader-card h3,
.leader-card p {
  color: var(--white);
}

.leader-card p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.leader-photo {
  width: 100%;
  height: clamp(380px, 38vw, 500px);
  object-fit: cover;
}

.leader-photo.jerna-photo {
  object-position: 50% 16%;
}

.leader-photo.allan-photo {
  object-position: 58% 32%;
}

.about-cta-band,
.blog-note {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.about-cta-band strong,
.blog-note strong {
  color: var(--ink);
  font-size: 1.24rem;
  line-height: 1.24;
}

.case-study-banner {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(233, 75, 43, 0.18), transparent 34%),
    linear-gradient(90deg, var(--coal) 0%, var(--teal-dark) 100%);
}

.case-study-banner-inner {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 52px var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.34fr);
  gap: 28px;
  align-items: center;
}

.case-study-banner h2 {
  max-width: 860px;
  margin-bottom: 14px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.case-study-banner p {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.case-study-metrics {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.18);
}

.case-study-metrics span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-study-metrics strong {
  display: block;
  color: var(--white);
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 0.94;
  font-weight: 700;
}

.case-study-metrics p {
  margin: 10px 0 18px;
}

.case-study-metrics .button {
  width: 100%;
}

.case-study-page-hero .page-hero-image {
  object-position: 50% 50%;
}

.case-study-page-hero .page-hero-overlay {
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.92) 0%, rgba(7, 20, 18, 0.78) 58%, rgba(7, 20, 18, 0.3) 100%),
    linear-gradient(0deg, rgba(7, 20, 18, 0.56), rgba(7, 20, 18, 0.08));
}

.service-page-hero .page-hero-image {
  object-position: 50% 50%;
}

.service-intro-note {
  max-width: 760px;
}

.service-deliverables {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.service-deliverables h3 {
  margin-bottom: 14px;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
}

.service-start-panel {
  margin-top: 28px;
}

.case-visual,
.article-inline-visual,
.service-preview-figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 34px rgba(13, 28, 24, 0.09);
}

.case-visual img,
.article-inline-visual img,
.service-preview-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.case-visual figcaption,
.article-inline-visual figcaption,
.service-preview-figure figcaption {
  padding: 15px 18px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.article-inline-visual {
  margin: 26px 0 30px;
}

.service-preview-figure {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto 24px;
  padding: 0 var(--page-gutter);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.service-preview-figure img {
  max-height: 520px;
  border-radius: var(--radius);
  box-shadow: 0 16px 34px rgba(13, 28, 24, 0.09);
}

.service-preview-figure figcaption {
  padding-right: 2px;
  padding-left: 2px;
}

.service-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.service-faq-grid details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.service-faq-grid summary {
  cursor: pointer;
  padding: 20px;
  color: var(--ink);
  font-weight: 700;
}

.service-faq-grid p {
  margin: -4px 20px 20px;
}

.benefit-grid h3 a {
  color: inherit;
}

.benefit-grid h3 a:hover {
  color: var(--coral-dark);
}

.case-snapshot {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--white);
  background: linear-gradient(90deg, var(--coal) 0%, var(--teal-dark) 100%);
}

.case-snapshot div {
  min-height: 132px;
  padding: 28px var(--page-gutter);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.case-snapshot div:last-child {
  border-right: 0;
}

.case-snapshot strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1;
  font-weight: 700;
}

.case-snapshot span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.case-detail-section {
  padding-top: 78px;
}

.case-content-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.case-sidebar {
  position: sticky;
  top: 112px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.case-sidebar h2 {
  font-size: clamp(1.8rem, 3vw, 2.35rem);
}

.case-sidebar dl {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
}

.case-sidebar dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.case-sidebar dt {
  color: var(--coral);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.case-sidebar dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 600;
}

.case-detail-stack {
  display: grid;
  gap: 18px;
}

.case-detail-stack article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.case-detail-stack h2 {
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.08;
}

.case-detail-stack p:last-child {
  margin-bottom: 0;
}

.case-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

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

.case-list li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-weight: 600;
}

.case-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.strategy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.strategy-grid div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.strategy-grid span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 700;
}

.strategy-grid p {
  margin-bottom: 0;
}

.campaign-timeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.campaign-timeline div {
  position: relative;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 184, 92, 0.14), transparent 42%),
    var(--paper);
}

.campaign-timeline span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-timeline h3 {
  font-size: 1.12rem;
}

.campaign-timeline p {
  margin-bottom: 0;
}

.case-results-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0;
}

.case-results-grid div {
  min-height: 134px;
  padding: 18px;
  border-radius: var(--radius);
  color: var(--white);
  background: linear-gradient(135deg, var(--coal) 0%, var(--teal-dark) 100%);
}

.case-results-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.8rem;
  line-height: 1;
}

.case-results-grid span {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.case-confidentiality-note {
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  background: var(--paper);
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.related-case-link {
  display: inline-flex;
  margin-top: 22px;
}

/* Image direction: Use a premium collaboration or campaign-planning image with a dark, uncluttered area behind CTA text. Avoid faces directly behind the copy. */
.case-final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.96) 0%, rgba(7, 20, 18, 0.88) 62%, rgba(7, 20, 18, 0.7) 100%),
    url("assets/story/homepage-collaboration.jpg") center / cover no-repeat;
}

.case-final-cta-inner {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 64px var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.case-final-cta h2 {
  max-width: 820px;
  color: var(--white);
}

.case-final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.case-final-cta .button {
  white-space: nowrap;
}

.contact-meeting-link {
  margin-top: 18px;
}

.work-proof-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  color: var(--white);
  background: linear-gradient(90deg, var(--coal) 0%, var(--teal-dark) 100%);
}

.work-proof-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 2vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.work-proof-band div:first-child {
  padding-left: 0;
}

.work-proof-band div:last-child {
  padding-right: 0;
  border-right: 0;
}

.work-proof-band strong {
  display: block;
  color: var(--gold);
  font-size: clamp(2rem, 4vw, 2.7rem);
  line-height: 1;
  font-weight: 700;
}

.work-proof-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

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

.work-capability-grid article,
.work-card,
.sample-library,
.sample-request-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.work-capability-grid article {
  padding: 22px;
}

.work-capability-grid span,
.work-card-top span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-capability-grid p {
  margin-bottom: 0;
}

.work-section,
.sample-request-section {
  background: var(--paper);
}

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

.work-visual-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  gap: 16px;
}

.work-visual-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 30px rgba(13, 28, 24, 0.08);
}

.work-visual-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.work-visual-card:first-child img {
  aspect-ratio: 16 / 9;
}

.work-visual-card figcaption {
  padding: 14px 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.work-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
}

.featured-work-card {
  grid-column: span 2;
  min-height: 0;
  background:
    linear-gradient(135deg, rgba(20, 118, 111, 0.08), rgba(233, 75, 43, 0.08)),
    var(--white);
}

.work-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.work-card-top p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-align: right;
}

.work-card h3 {
  max-width: 800px;
  font-size: clamp(1.45rem, 2.4vw, 2.05rem);
}

.work-card p {
  margin-bottom: 0;
}

.work-card a:not(.text-link) {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.work-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.text-link {
  margin-top: auto;
  color: var(--coral-dark);
  font-weight: 800;
}

.text-link::after {
  content: "\00a0\2192";
}

.text-link:hover {
  color: var(--teal-dark);
}

.work-mini-results {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.work-mini-results strong {
  display: block;
  color: var(--teal-dark);
  font-size: 2rem;
  line-height: 1;
}

.work-mini-results span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 700;
}

.work-proof-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.work-proof-details.compact {
  grid-template-columns: 1fr;
}

.work-proof-details div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(239, 184, 92, 0.1);
}

.work-proof-details span {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-proof-details strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.38;
}

.sample-library-heading,
.sample-request-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.sample-library-heading {
  margin-bottom: 24px;
}

.sample-library-heading p {
  max-width: 820px;
}

.sample-library {
  padding: 28px;
}

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

.sample-category-grid article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--soft);
}

.sample-category-grid span {
  display: block;
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sample-title-list {
  columns: 2;
  column-gap: 42px;
  margin: 0;
  padding-left: 22px;
  color: var(--ink);
}

.sample-category-grid .sample-title-list {
  columns: 1;
  padding-left: 18px;
}

.sample-title-list li {
  break-inside: avoid;
  margin-bottom: 10px;
  padding-left: 4px;
  color: var(--muted);
  font-weight: 600;
}

.sample-library-note {
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-weight: 700;
}

.sample-request-grid {
  align-items: start;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.sample-request-copy p {
  max-width: 620px;
}

.sample-request-form textarea {
  resize: vertical;
}

.blog-listing-section {
  background: var(--paper);
}

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

.blog-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.blog-filter {
  min-height: 40px;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 800;
  cursor: pointer;
}

.blog-filter:hover,
.blog-filter.is-active {
  color: var(--white);
  border-color: var(--teal-dark);
  background: var(--teal-dark);
}

.article-card {
  display: flex;
  min-height: 430px;
  flex-direction: column;
  gap: 16px;
  padding: 0 26px 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.article-card-image {
  width: calc(100% + 52px);
  aspect-ratio: 16 / 9;
  margin: 0 -26px;
  object-fit: cover;
}

.article-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.article-card-top span {
  color: var(--teal);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-card-top p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
}

.article-card h3 {
  font-size: 1.45rem;
  line-height: 1.14;
}

.article-card p {
  margin-bottom: 0;
}

.source-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
}

.source-pill-list span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--soft);
  font-size: 0.74rem;
  font-weight: 700;
}

.read-more-link {
  color: var(--coral-dark);
  font-weight: 700;
}

.read-more-link:hover {
  color: var(--teal-dark);
}

.article-page-hero .page-hero-image {
  object-position: 50% 50%;
}

.article-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.34fr);
  gap: 34px;
  align-items: start;
}

.article-content {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.article-date {
  margin-bottom: 24px;
  color: var(--coral);
  font-size: 0.84rem;
  font-weight: 700;
  text-transform: uppercase;
}

.article-byline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-bottom: 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
}

.article-byline time {
  color: var(--coral-dark);
}

.article-content h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.article-content p,
.article-checklist li,
.source-list li {
  font-size: 1.03rem;
}

.article-callout {
  margin: 28px 0;
  padding: 22px;
  border-left: 5px solid var(--coral);
  border-radius: var(--radius);
  background: var(--soft);
}

.article-callout strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 1.05rem;
}

.article-callout p {
  margin-bottom: 0;
}

.article-faq {
  margin-top: 38px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.article-faq h2 {
  margin-top: 0;
}

.article-faq details {
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.article-faq summary {
  padding: 16px 18px;
  color: var(--ink);
  font-weight: 800;
  cursor: pointer;
}

.article-faq details p {
  margin: -2px 18px 18px;
}

.article-author-box {
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(20, 118, 111, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 184, 92, 0.14), transparent 40%),
    var(--soft);
}

.article-author-box h2 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
}

.article-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.article-service-links a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--teal-dark);
  background: var(--white);
  font-size: 0.82rem;
  font-weight: 800;
}

.article-service-links a:hover {
  color: var(--coral-dark);
  border-color: rgba(233, 75, 43, 0.4);
}

.article-checklist,
.source-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.article-checklist li,
.source-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.article-checklist li::before,
.source-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.source-list a {
  color: var(--teal-dark);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.source-list a:hover {
  color: var(--coral-dark);
}

.article-sidebar {
  position: sticky;
  top: 112px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.article-sidebar h2 {
  font-size: clamp(1.65rem, 3vw, 2.1rem);
}

.article-sidebar .button {
  margin-top: 12px;
}

/* Image direction: Use a website or content-planning visual that supports the article CTA and stays readable beneath a dark overlay. */
.article-final-cta {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(7, 20, 18, 0.97) 0%, rgba(7, 20, 18, 0.9) 64%, rgba(7, 20, 18, 0.74) 100%),
    url("assets/story/website-review-workspace.jpg") center / cover no-repeat;
}

.article-final-cta-inner {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 64px var(--page-gutter);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.article-final-cta h2 {
  max-width: 820px;
  color: var(--white);
}

.article-final-cta p:not(.eyebrow) {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.article-final-cta .button {
  white-space: nowrap;
}

.section {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 78px var(--page-gutter);
}

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

.section-heading h2 {
  max-width: 900px;
}

.section-heading p:last-child {
  max-width: 760px;
}

.center-heading {
  max-width: 880px;
  margin-right: auto;
  margin-left: auto;
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.7fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
}

.section-heading p,
.easy-section p,
.impact-copy p,
.support-copy p,
.process-intro p,
.team-copy p,
.contact-copy p {
  font-size: 1.04rem;
}

.center-heading {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.easy-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
}

.visual-panel,
.support-visual {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(13, 28, 24, 0.1);
  overflow: hidden;
}

.visual-panel img,
.support-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.interactive-panel {
  min-height: 560px;
  padding: clamp(18px, 3vw, 28px);
  background:
    radial-gradient(circle at 18% 18%, rgba(239, 184, 92, 0.18), transparent 26%),
    radial-gradient(circle at 86% 14%, rgba(20, 118, 111, 0.2), transparent 28%),
    linear-gradient(145deg, #071412 0%, #0e2622 58%, #f8faf7 58%, #ffffff 100%);
}

.presence-console {
  display: grid;
  grid-template-rows: auto minmax(270px, 1fr) auto auto;
  gap: 16px;
  height: 100%;
  min-height: 504px;
  color: var(--white);
}

.presence-topline,
.presence-readout {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(7, 20, 18, 0.78);
  backdrop-filter: blur(12px);
}

.presence-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  padding: 14px 16px;
}

.presence-topline span,
.presence-readout span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.presence-topline span {
  max-width: min(100%, 370px);
}

.presence-topline strong {
  font-size: 1.05rem;
}

.presence-map-canvas {
  position: relative;
  min-height: 300px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(239, 184, 92, 0.18), transparent 34%),
    rgba(7, 20, 18, 0.78);
  background-size: 54px 54px, 54px 54px, auto, auto;
}

.presence-map-canvas::before,
.presence-map-canvas::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 58%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 184, 92, 0.72), transparent);
  transform-origin: left center;
}

.presence-map-canvas::before {
  transform: rotate(25deg) translateX(-50%);
}

.presence-map-canvas::after {
  transform: rotate(-28deg) translateX(-50%);
}

.presence-node,
.presence-core,
.signal-rack {
  position: absolute;
  z-index: 1;
  border-radius: var(--radius);
}

.presence-node {
  width: min(38%, 164px);
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.presence-node span {
  display: block;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
}

.presence-node strong {
  display: block;
  margin-top: 4px;
  font-size: 0.88rem;
  line-height: 1.1;
}

.presence-node.is-active {
  border-color: rgba(239, 184, 92, 0.8);
  color: var(--white);
  background: rgba(239, 184, 92, 0.16);
  transform: translateY(-3px);
}

.node-positioning {
  top: 22px;
  left: 22px;
}

.node-content {
  top: 22px;
  right: 22px;
}

.node-seo {
  bottom: 22px;
  left: 22px;
}

.node-conversion {
  right: 22px;
  bottom: 22px;
}

.presence-core {
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 128px;
  height: 128px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--coal);
  background: var(--white);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.24);
  text-align: center;
  transform: translate(-50%, -50%);
}

.presence-core span {
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.presence-core strong {
  color: var(--coral);
  font-size: 2.45rem;
  line-height: 1;
}

.signal-rack {
  left: 50%;
  bottom: 18px;
  display: grid;
  grid-template-columns: auto minmax(84px, 1fr);
  gap: 8px 10px;
  width: min(54%, 236px);
  padding: 12px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 20, 18, 0.78);
  transform: translateX(-50%);
}

.signal-rack span {
  font-size: 0.72rem;
  font-weight: 600;
}

.signal-rack i {
  align-self: center;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.signal-rack b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transition: width 220ms ease;
}

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

.presence-tab {
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.78);
  background: rgba(7, 20, 18, 0.72);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.presence-tab.is-active {
  color: var(--coal);
  border-color: var(--gold);
  background: var(--gold);
}

.presence-readout {
  padding: 16px;
}

.presence-readout h3 {
  color: var(--white);
  font-size: 1.22rem;
}

.presence-readout p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.people-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  background: var(--coal);
}

.people-panel figure {
  position: relative;
  height: clamp(430px, 36vw, 500px);
  min-height: 430px;
  margin: 0;
  overflow: hidden;
}

.people-panel figure + figure {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.people-panel img {
  filter: saturate(0.96) contrast(1.02);
}

.people-panel .jerna-photo {
  object-position: 50% 42%;
}

.people-panel .allan-photo {
  height: calc(100% + 90px);
  transform: translateY(-64px);
  object-position: 58% 50%;
}

.people-panel figcaption {
  position: absolute;
  inset: auto 18px 18px;
  padding: 15px 16px;
  color: var(--white);
  background: rgba(7, 17, 15, 0.76);
  backdrop-filter: blur(12px);
}

.people-panel figcaption span,
.team-card-body span {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.people-panel figcaption strong {
  display: block;
  font-size: 1.12rem;
  line-height: 1.15;
}

.value-stack {
  display: grid;
  gap: 12px;
}

.value-stack article,
.benefit-grid article,
.solution-grid article,
.pricing-lane,
.lead-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.value-stack article {
  padding: 24px;
}

.value-stack span,
.benefit-grid span,
.process-track span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--coral);
  font-weight: 700;
}

.value-stack p,
.benefit-grid p,
.solution-grid p,
.process-track p {
  margin-bottom: 0;
}

.impact-section {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.impact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.impact-copy {
  position: sticky;
  top: 134px;
}

.impact-copy .button {
  margin-top: 10px;
}

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

.benefit-grid article {
  position: relative;
  min-height: 0;
  padding: 24px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.service-card-image {
  width: calc(100% + 48px);
  aspect-ratio: 16 / 8;
  margin: 0 -24px 20px;
  object-fit: cover;
}

.benefit-grid article::after {
  content: none;
}

.benefit-grid article:hover {
  border-color: rgba(20, 118, 111, 0.22);
  box-shadow: 0 14px 30px rgba(13, 28, 24, 0.08);
  transform: none;
}

.benefit-grid article:focus-within {
  border-color: rgba(233, 75, 43, 0.44);
  box-shadow: 0 0 0 3px rgba(239, 184, 92, 0.28), 0 18px 38px rgba(13, 28, 24, 0.11);
}

.benefit-grid h3 {
  padding-right: 0;
}

.benefit-grid h3 a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.service-card-grid {
  align-items: stretch;
}

.service-card {
  --service-accent: var(--teal);
  --service-accent-text: var(--teal-dark);
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-top: 4px solid var(--service-accent);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
  flex-direction: column;
  isolation: isolate;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -28px;
  bottom: -28px;
  width: 96px;
  height: 96px;
  border: 18px solid color-mix(in srgb, var(--service-accent) 12%, transparent);
  border-radius: 50%;
  pointer-events: none;
}

.service-card:hover {
  border-color: color-mix(in srgb, var(--service-accent) 56%, var(--line));
  box-shadow: 0 20px 42px rgba(13, 28, 24, 0.14);
  transform: translateY(-3px);
}

.service-card:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  box-shadow: 0 20px 42px rgba(13, 28, 24, 0.14);
}

.service-card-visual {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.service-card-visual::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(7, 20, 18, 0.16));
  pointer-events: none;
}

.service-card .service-card-image {
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  transition: transform 240ms ease;
}

.service-card:hover .service-card-image {
  transform: scale(1.025);
}

.service-card-body {
  display: flex;
  min-width: 0;
  padding: 22px 22px 20px;
  flex: 1;
  flex-direction: column;
}

.service-card .service-card-kicker {
  margin-bottom: 12px;
  color: var(--service-accent-text);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.service-card h3 {
  max-width: 14ch;
  margin-bottom: 10px;
  padding: 0;
  font-size: 1.22rem;
}

.service-card p {
  margin-bottom: 18px;
  font-size: 0.94rem;
}

.service-card-action {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--service-accent-text);
  font-size: 0.82rem;
}

.service-card-action span {
  display: inline;
  margin: 0;
  color: inherit;
  transition: transform 180ms ease;
}

.service-card:hover .service-card-action span {
  transform: translateX(4px);
}

.service-card--brand {
  --service-accent: #efb85c;
  --service-accent-text: #81540a;
}

.service-card--social {
  --service-accent: #e94b2b;
  --service-accent-text: #a3331d;
}

.service-card--content {
  --service-accent: #14766f;
  --service-accent-text: #0d5e58;
}

.service-card--website {
  --service-accent: #4c7891;
  --service-accent-text: #315e77;
}

.service-card--seo {
  --service-accent: #0d514c;
  --service-accent-text: #0d514c;
}

.service-card--nonprofit {
  --service-accent: #b15d78;
  --service-accent-text: #8a4058;
}

.service-card--white-label {
  --service-accent: #6d796f;
  --service-accent-text: #4e5c53;
  grid-column: 1 / -1;
  min-height: 280px;
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
}

.service-card--white-label .service-card-visual {
  height: 100%;
  aspect-ratio: auto;
  border-right: 1px solid var(--line);
  border-bottom: 0;
}

.service-card--white-label h3 {
  max-width: none;
}

.support-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 34px;
  align-items: center;
}

.support-section,
.process-section,
.contact-grid {
  row-gap: 38px;
}

.support-copy .button {
  margin-top: 8px;
}

.solutions-section {
  background: var(--white);
}

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

.solution-grid article {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  overflow: hidden;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.solution-grid article:hover {
  border-color: rgba(20, 118, 111, 0.28);
  box-shadow: 0 16px 34px rgba(13, 28, 24, 0.09);
  transform: translateY(-2px);
}

.solution-grid img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
}

.solution-grid div {
  padding: 24px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-inline: max(var(--page-gutter), calc((100vw - var(--content-max)) / 2));
  color: var(--white);
  background: linear-gradient(90deg, var(--coal) 0%, var(--teal-dark) 100%);
}

.stats-band div {
  min-height: 132px;
  padding: 28px clamp(18px, 2vw, 32px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-band div:first-child {
  padding-left: 0;
}

.stats-band div:last-child {
  padding-right: 0;
  border-right: 0;
}

.stats-band strong {
  display: block;
  color: var(--gold);
  font-size: 2.6rem;
  line-height: 1;
  font-weight: 700;
}

.stats-band span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-weight: 600;
}

.pricing-section {
  color: var(--white);
  background: linear-gradient(180deg, var(--coal-soft) 0%, #071412 100%);
}

.pricing-section .section-heading p,
.pricing-section h2 {
  color: var(--white);
}

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

.pricing-lane {
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.14);
  background: #0b1714;
  box-shadow: none;
}

.lane-top {
  min-height: 276px;
  padding: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg, rgba(20, 118, 111, 0.28), rgba(233, 75, 43, 0.13));
}

.lane-top h3 {
  max-width: 500px;
  color: var(--white);
  font-size: 1.55rem;
}

.lane-top span {
  color: var(--gold);
}

.lane-description {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.pricing-service-link {
  display: inline-flex;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.pricing-service-link:hover {
  color: var(--gold);
}

.pricing-service-link:focus-visible {
  outline: 3px solid rgba(239, 184, 92, 0.78);
  outline-offset: 4px;
}

.lane-services {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.lane-services strong {
  display: block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lane-services ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lane-services li {
  position: relative;
  padding-left: 13px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  line-height: 1.4;
}

.lane-services li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--coral);
}

.lane-pricing-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.lane-pricing-label span {
  color: var(--gold);
  font-size: 0.66rem;
}

.price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.price-row > div {
  min-width: 0;
}

.price-row:last-child {
  border-bottom: 0;
}

.price-row.featured {
  background: rgba(233, 75, 43, 0.12);
}

.price-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.price-row p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.94rem;
}

.package-details {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
}

.package-details div {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  gap: 12px;
  padding: 9px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
}

.package-details dt {
  color: var(--gold);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-details dd {
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.price {
  display: block;
  width: fit-content;
  max-width: 100%;
  justify-self: start;
  padding: 7px 10px;
  border: 1px solid rgba(239, 184, 92, 0.28);
  border-radius: var(--radius);
  background: rgba(239, 184, 92, 0.08);
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  white-space: nowrap;
}

.custom-pricing-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.72fr) auto;
  gap: 22px;
  align-items: center;
  margin-top: 22px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(239, 184, 92, 0.12), transparent 38%),
    rgba(255, 255, 255, 0.06);
}

.custom-pricing-panel span {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.custom-pricing-panel h3 {
  max-width: 560px;
  color: var(--white);
  font-size: 1.45rem;
}

.custom-pricing-panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
}

.custom-pricing-panel ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-pricing-panel li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.custom-pricing-panel li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.custom-pricing-panel .button {
  white-space: nowrap;
}

.pricing-page .page-hero-content h1 {
  max-width: 980px;
}

.pricing-intro-section,
.pricing-fit-section {
  background: var(--paper);
}

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

.simple-price-card {
  display: flex;
  min-height: 440px;
  flex-direction: column;
  gap: 14px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 28px rgba(13, 28, 24, 0.07);
}

.simple-price-card span,
.pricing-path-grid span {
  color: var(--teal);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.simple-price-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
}

.simple-price {
  margin: 0;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--coral-dark);
  font-size: 1.55rem;
  font-weight: 800;
}

.simple-price-card .case-list {
  margin: 4px 0 10px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--soft);
}

.simple-price-card .case-list li {
  font-size: 0.92rem;
}

.simple-price-card .case-list li + li {
  padding-top: 10px;
  border-top: 1px solid rgba(20, 118, 111, 0.12);
}

.simple-price-card .case-list li + li::before {
  top: calc(10px + 0.72em);
}

.simple-price-card .text-link {
  margin-top: auto;
  padding-top: 4px;
  color: var(--coral-dark);
  font-weight: 700;
}

.featured-simple-price {
  border-top: 4px solid var(--coral);
  border-color: rgba(233, 75, 43, 0.38);
  background:
    linear-gradient(135deg, rgba(239, 184, 92, 0.16), transparent 42%),
    var(--white);
}

.pricing-path-section {
  background: var(--white);
}

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

.pricing-path-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  border-radius: var(--radius);
  background: var(--soft);
}

.pricing-path-grid strong {
  display: block;
  margin: 10px 0;
  color: var(--ink);
  font-size: 1.35rem;
}

.pricing-path-grid p {
  margin-bottom: 0;
}

.process-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 108px;
}

.process-track {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-track article {
  display: grid;
  grid-template-columns: 56px minmax(140px, 0.34fr) minmax(0, 1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.process-track strong {
  color: var(--ink);
}

.team-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--coal) 0%, #102c27 100%);
}

.team-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1fr);
  gap: 46px;
}

.team-copy h2,
.team-copy p {
  color: var(--white);
}

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

.team-list article {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
}

.team-list span {
  color: var(--gold);
}

.team-list h3 {
  color: var(--white);
  font-size: 2rem;
}

.team-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.team-card-body {
  padding: 28px;
}

.contact-section {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 46px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 134px;
}

.contact-points {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact-points span {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--paper);
  font-weight: 600;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--white);
}

.lead-form.hubspot-contact-form {
  display: block;
  width: 100%;
  min-width: 0;
  min-height: 430px;
}

.hubspot-contact-form form {
  margin: 0;
}

.hubspot-contact-form .hs-form-field {
  margin-bottom: 14px;
}

.hubspot-contact-form .hs-button {
  width: auto;
  min-height: 52px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: var(--coral);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 800;
  cursor: pointer;
}

.hubspot-contact-form .hs-button:hover {
  background: var(--coral-dark);
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(20, 118, 111, 0.22);
  border-color: var(--teal);
}

.form-status {
  min-height: 0;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.form-status.success {
  color: var(--teal-dark);
}

.form-status.error {
  color: var(--coral-dark);
}

.site-footer {
  color: var(--ink);
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #ffffff 0%, var(--paper) 100%);
}

.footer-inner {
  width: min(100%, calc(var(--content-max) + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 56px var(--page-gutter) 24px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 1.3fr) minmax(130px, 0.65fr) minmax(210px, 1fr) minmax(190px, 0.8fr);
  gap: 38px;
  align-items: start;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  color: var(--ink);
  font-weight: 700;
}

.footer-brand .brand-wordmark {
  max-width: 100%;
}

.footer-overview p {
  max-width: 440px;
}

.footer-column h2,
.footer-newsletter-copy h2 {
  margin-bottom: 14px;
  font-family: inherit;
  font-size: 0.78rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.footer-inner p {
  margin-bottom: 0;
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 9px;
  margin: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-links a:hover,
.footer-contact-link:hover,
.footer-legal a:hover {
  color: var(--coral-dark);
}

.footer-contact-link {
  display: inline-block;
  margin-top: 7px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 600;
}

.footer-placeholder {
  display: block;
  margin-top: 4px;
  font-size: 0.74rem;
  color: var(--muted);
}

.footer-review-link {
  margin-top: 18px;
}

.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
  margin-top: 44px;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}

.footer-newsletter-copy p {
  max-width: 440px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.82rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 600;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
}

.newsletter-form .form-status {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.74);
}

.newsletter-form.hubspot-newsletter {
  display: block;
  width: 100%;
  min-width: 0;
  max-width: 520px;
  justify-self: end;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(13, 28, 24, 0.08);
}

.hubspot-newsletter .hs-form-frame {
  width: 100%;
  min-height: 430px;
  color: var(--ink);
}

.hubspot-newsletter iframe {
  display: block;
  width: 100% !important;
  max-width: 100%;
  border: 0;
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

  .nav-shell {
    grid-template-columns: minmax(0, 1fr) auto;
  }

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

  .menu-toggle {
    display: inline-block;
  }

  .header-actions {
    display: none;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: var(--page-gutter);
    right: var(--page-gutter);
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: rgba(7, 17, 15, 0.98);
  }

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

  .nav-links a {
    padding: 12px;
  }

  .nav-links .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    margin: 10px 12px 12px;
    color: var(--coal);
    background: var(--gold);
  }

  .nav-links .mobile-nav-cta:hover {
    color: var(--coal);
    background: #f4c875;
  }

  .split-heading,
  .easy-layout,
  .impact-layout,
  .support-section,
  .process-section,
  .team-layout,
  .contact-grid,
  .work-card-grid,
  .work-visual-grid,
  .sample-library-heading,
  .sample-request-grid,
  .work-proof-details,
  .sample-category-grid,
  .campaign-timeline,
  .case-study-banner-inner,
  .case-content-grid,
  .case-final-cta-inner,
  .article-card-grid,
  .article-shell,
  .article-final-cta-inner,
  .service-faq-grid,
  .principle-grid,
  .topic-grid,
  .leader-grid {
    grid-template-columns: 1fr;
  }

  .simple-pricing-grid,
  .pricing-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .impact-copy,
  .process-intro,
  .contact-copy,
  .case-sidebar,
  .article-sidebar {
    position: static;
  }

  .solution-grid article {
    grid-template-columns: 1fr;
  }

  .team-list {
    grid-template-columns: 1fr;
  }

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

  .featured-work-card {
    grid-column: auto;
  }

  .solution-grid img {
    aspect-ratio: 16 / 8;
    min-height: 0;
  }

  .interactive-panel {
    min-height: 520px;
  }

  .page-hero {
    min-height: 520px;
  }

  .custom-pricing-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .custom-pricing-panel .button {
    justify-self: start;
  }

  .case-final-cta .button {
    justify-self: start;
  }

  .article-final-cta .button {
    justify-self: start;
  }

  .sample-library-heading .button {
    justify-self: start;
  }

  .sample-title-list {
    columns: 1;
  }
}

@media (max-width: 820px) {
  html {
    scroll-padding-top: 86px;
  }

  body {
    font-size: 15px;
  }

  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .utility-bar {
    display: none;
  }

  .nav-shell {
    min-height: 76px;
  }

  .brand-logo {
    width: min(190px, 55vw);
  }

  .brand-wordmark {
    max-width: 34vw;
    font-size: clamp(0.95rem, 3.8vw, 1.05rem);
  }

  .brand-text {
    max-width: 58vw;
  }

  .hero {
    min-height: auto;
    padding-top: 108px;
    padding-bottom: 26px;
  }

  .page-hero {
    min-height: auto;
    padding-top: 68px;
    padding-bottom: 46px;
  }

  .page-hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-card-strip {
    margin-top: 30px;
  }

  .hero-card-strip,
  .benefit-grid,
  .solution-grid,
  .pricing-grid,
  .simple-pricing-grid,
  .pricing-path-grid,
  .custom-pricing-panel,
  .stats-band,
  .work-proof-band,
  .work-capability-grid,
  .case-snapshot,
  .case-list.two-column,
  .strategy-grid,
  .case-results-grid,
  .article-card-grid,
  .article-shell,
  .article-final-cta-inner,
  .footer-main,
  .footer-newsletter,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-form.hubspot-newsletter {
    max-width: none;
    justify-self: stretch;
  }

  .service-card,
  .service-card--white-label {
    min-height: 0;
    display: flex;
    grid-column: auto;
    grid-template-columns: none;
  }

  .service-card--white-label .service-card-visual {
    height: auto;
    aspect-ratio: 16 / 9;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero-card-strip article,
  .stats-band div,
  .work-proof-band div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stats-band div,
  .work-proof-band div {
    padding-right: 0;
    padding-left: 0;
  }

  .hero-card-strip article:last-child,
  .stats-band div:last-child,
  .work-proof-band div:last-child {
    border-bottom: 0;
  }

  .case-snapshot div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .case-snapshot div:last-child {
    border-bottom: 0;
  }

  .process-track article,
  .price-row {
    grid-template-columns: 1fr;
  }

  .about-cta-band,
  .blog-note {
    display: grid;
  }

  .case-study-banner-inner {
    padding-top: 38px;
    padding-bottom: 38px;
  }

  .case-final-cta-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .article-content,
  .article-sidebar {
    padding: 24px;
  }

  .article-final-cta-inner {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .people-panel {
    grid-template-columns: 1fr;
  }

  .people-panel figure {
    height: clamp(420px, 108vw, 500px);
    min-height: 420px;
  }

  .people-panel .jerna-photo {
    object-position: 50% 8%;
  }

  .people-panel .allan-photo {
    height: calc(100% + 72px);
    transform: translateY(-52px);
  }

  .people-panel figure + figure {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

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

  .section-heading {
    margin-bottom: 28px;
  }

  .button {
    width: 100%;
  }

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

  .presence-node {
    width: min(42%, 150px);
  }

  .presence-core {
    width: 112px;
    height: 112px;
  }

  .signal-rack {
    width: min(66%, 230px);
  }

  .price {
    white-space: normal;
  }

  .lane-top {
    min-height: 0;
  }

  .package-details div {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .solution-grid img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 470px) {
  h1 {
    font-size: 2.45rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 1.68rem;
  }

  .lane-services ul {
    grid-template-columns: 1fr;
  }

  .lane-pricing-label {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 0.68rem;
  }

  .hero h1 {
    font-size: clamp(2.15rem, 10vw, 2.4rem);
  }

  .hero-copy {
    max-width: 100%;
    overflow-wrap: anywhere;
  }

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

  .brand-mark {
    inline-size: 34px;
    block-size: 34px;
  }

  .hero-card-strip article,
  .value-stack article,
  .benefit-grid article,
  .simple-price-card,
  .pricing-path-grid article,
  .principle-grid article,
  .topic-grid article,
  .article-card,
  .work-visual-card figcaption,
  .work-card,
  .sample-library,
  .article-content,
  .article-sidebar,
  .article-callout,
  .lane-top,
  .price-row,
  .custom-pricing-panel,
  .lead-form,
  .interactive-panel,
  .solution-grid div {
    padding: 20px;
  }

  .article-card {
    padding: 0 20px 20px;
  }

  .article-card-image {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }

  .benefit-grid article {
    padding: 0 20px 20px;
  }

  .service-card-image {
    width: calc(100% + 40px);
    margin-right: -20px;
    margin-left: -20px;
  }

  .people-panel figure {
    height: 430px;
    min-height: 430px;
  }

  .presence-map-canvas {
    min-height: 320px;
  }

  .presence-node {
    width: calc(50% - 26px);
    padding: 10px;
  }

  .presence-node strong {
    font-size: 0.76rem;
  }

  .signal-rack {
    bottom: 14px;
    width: calc(100% - 36px);
  }

  .presence-core {
    width: 102px;
    height: 102px;
  }

  .presence-core strong {
    font-size: 2rem;
  }

  .page-hero-content h1 {
    font-size: 2.2rem;
  }

  .page-hero-content p:not(.eyebrow) {
    font-size: 1rem;
  }

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

  .hero-card-strip article,
  .principle-grid article,
  .topic-grid article,
  .article-card,
  .simple-price-card {
    min-height: 0;
  }
}

@media (min-width: 471px) and (max-width: 560px) {
  h1 {
    font-size: 2.7rem;
    line-height: 0.98;
  }

  .hero-kicker {
    max-width: 100%;
    font-size: 0.7rem;
  }

  .hero-copy {
    max-width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

.review-body {
  background: #eef1ed;
}

.review-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px max(var(--page-gutter), calc((100vw - var(--content-max)) / 2 + var(--page-gutter)));
  color: var(--white);
  background: rgba(7, 17, 15, 0.97);
}

.review-workspace {
  width: min(100%, calc(1380px + (var(--page-gutter) * 2)));
  margin: 0 auto;
  padding: 44px var(--page-gutter) 70px;
}

.review-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(280px, 0.58fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 28px;
}

.review-intro h1 {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 3.4rem;
  line-height: 0.98;
}

.review-intro p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.review-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: 22px;
  align-items: start;
}

.review-preview-panel,
.review-form-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.review-preview-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.review-preview-toolbar span,
.review-preview-toolbar strong {
  display: block;
}

.review-preview-toolbar span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.review-preview-toolbar strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.small-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--coal);
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}

.section-preview {
  display: block;
  width: 100%;
  height: min(72vh, 780px);
  border: 0;
  background: var(--paper);
}

.review-form-panel {
  padding: 18px;
}

.section-picker {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.section-chip {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 11px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  cursor: pointer;
}

.section-chip.is-active {
  color: var(--white);
  border-color: var(--coral);
  background: var(--coral);
}

.review-form {
  display: grid;
  gap: 14px;
}

.review-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 700;
}

.review-copy {
  width: 100%;
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.saved-feedback {
  margin-top: 18px;
}

.saved-feedback h2 {
  margin-bottom: 12px;
  font-size: 1rem;
}

.saved-feedback article {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.saved-feedback strong,
.saved-feedback span {
  display: block;
}

.saved-feedback span {
  margin: 4px 0 8px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
}

.saved-feedback p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .review-intro,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .review-form-panel {
    order: -1;
  }

  .section-preview {
    height: 620px;
  }
}

@media (max-width: 560px) {
  .review-header .header-cta {
    display: none;
  }

  .review-workspace {
    padding-top: 32px;
  }

  .review-intro h1 {
    font-size: 2.2rem;
  }

  .review-preview-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .section-preview {
    height: 560px;
  }
}

