:root {
  --ink: #171717;
  --ink-soft: #303030;
  --muted: #66625f;
  --paper: #fffdf9;
  --wash: #f5f3f0;
  --wash-strong: #e9e5df;
  --line: #ded8d0;
  --accent: #6f7f77;
  --accent-soft: #b6c0ba;
  --white: #ffffff;
  --steel: #33424a;
  --rouge: #9a675f;
  --shadow: 0 22px 54px rgba(23, 23, 23, 0.11);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 4vw, 56px);
  background: rgba(255, 253, 249, 0.9);
  border-bottom: 1px solid rgba(226, 216, 206, 0.82);
  backdrop-filter: blur(18px);
  animation: headerDrop 520ms ease both;
}

.brand {
  display: inline-grid;
  gap: 0;
  color: var(--ink);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}

.brand span {
  font-size: 1.3rem;
}

.brand small {
  color: var(--muted);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(14px, 2.4vw, 30px);
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible {
  color: var(--accent);
}

.nav-cta {
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
}

.hero {
  min-height: min(760px, calc(88vh - 60px));
  display: grid;
  align-items: end;
  padding: clamp(72px, 10vw, 122px) clamp(22px, 7vw, 96px) clamp(42px, 5vw, 68px);
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 76% 28%, rgba(154, 103, 95, 0.38), transparent 28%),
    linear-gradient(90deg, rgba(14, 18, 18, 0.86), rgba(14, 18, 18, 0.58) 48%, rgba(14, 18, 18, 0.18)),
    url("https://images.unsplash.com/photo-1618005182384-a83a8bd57fbe?auto=format&fit=crop&w=2200&q=84") center / cover;
  animation: heroScale 8s ease-out both;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(0deg, rgba(20, 16, 13, 0.6), transparent);
}

.hero-copy {
  width: min(760px, 100%);
  animation: heroRise 760ms 120ms ease both;
}

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

.hero .eyebrow {
  color: #eadbd3;
}

h1,
h2,
h3 {
  margin: 0;
  color: inherit;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-weight: 720;
  letter-spacing: 0;
}

h1 {
  max-width: 720px;
  font-size: clamp(3rem, 7vw, 6.1rem);
  line-height: 0.88;
}

h2 {
  max-width: 820px;
  font-size: clamp(1.9rem, 3.5vw, 3.35rem);
  line-height: 1.02;
}

h3 {
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  line-height: 1.18;
}

.hero-lede {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.04rem, 1.8vw, 1.28rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background-color 160ms ease, color 160ms ease;
}

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

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

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

.hero-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 680px;
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-signal span {
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.button.secondary {
  color: inherit;
  background: transparent;
}

.text-link {
  width: fit-content;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  content: " ->";
}

section {
  padding: clamp(62px, 8vw, 108px) clamp(22px, 6vw, 96px);
}

.brand-marquee {
  overflow: hidden;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.76);
}

.brand-marquee div {
  display: flex;
  width: max-content;
  animation: marqueeMove 30s linear infinite;
}

.brand-marquee span {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  padding: 0 34px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
}

.logo-wall {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  padding-top: clamp(38px, 5vw, 58px);
  padding-bottom: clamp(38px, 5vw, 58px);
  background: var(--paper);
}

.section-heading.compact {
  max-width: 760px;
}

.section-heading.compact h2 {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: clamp(1.55rem, 3vw, 3.05rem);
  line-height: 0.98;
}

.logo-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.brand-tile {
  min-height: 148px;
  display: grid;
  align-content: space-between;
  gap: 20px;
  padding: clamp(18px, 2vw, 24px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(245, 241, 236, 0.62)),
    var(--white);
  line-height: 1.15;
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.brand-logo {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(36, 31, 27, 0.08);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  line-height: 0.95;
}

.brand-tile small {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.brand-logo img {
  display: block;
  width: 100%;
  max-width: 142px;
  max-height: 58px;
  object-fit: contain;
}

.brand-logo.dark-logo {
  background: #5a2b14;
}

.brand-logo.dark-logo img {
  max-height: 62px;
}

.brand-logo.icon-logo img {
  max-width: 74px;
  max-height: 74px;
}

.brand-logo.wide-logo img {
  max-width: 156px;
  max-height: 54px;
}

.brand-tile:hover,
.brand-tile:focus-visible {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 22px 55px rgba(36, 31, 27, 0.12);
}

.brand-tile:hover .brand-logo,
.brand-tile:focus-visible .brand-logo {
  background: rgba(255, 255, 255, 0.95);
}

.brand-tile:hover small,
.brand-tile:focus-visible small {
  color: rgba(255, 255, 255, 0.82);
}

.sector-strip {
  background: var(--wash);
}

.sector-grid,
.deliverables-grid,
.platform-grid,
.matrix-grid,
.method-grid,
.toolkit-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

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

.sector-grid a,
.deliverables-grid article,
.matrix-grid article,
.method-grid article,
.toolkit-card,
.faq-grid details,
.policy-content article {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--line);
  background: var(--white);
}

.sector-grid a,
.toolkit-card {
  color: inherit;
  text-decoration: none;
}

.sector-grid span,
.toolkit-card span,
.matrix-grid span,
.method-grid span,
.deliverables-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sector-grid p,
.deliverables-grid p,
.matrix-grid p,
.method-grid p,
.toolkit-card p,
.faq-grid p,
.policy-content p {
  margin: 0;
  color: var(--muted);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip div,
.proof-card {
  min-height: 156px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: clamp(24px, 4vw, 42px);
  border-right: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.proof-strip div:last-child,
.proof-card:last-child {
  border-right: 0;
}

.proof-strip strong,
.proof-card strong {
  color: var(--accent);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  font-weight: 760;
  line-height: 0.95;
}

.proof-strip span,
.proof-card span {
  max-width: 260px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.intro,
.conversion {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.intro-copy p,
.service p,
.case-grid p,
.process-grid p,
.conversion-copy p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
}

.credibility-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.credibility-list span,
.client-row span,
.client-row a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--accent);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.visual-story {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  grid-template-rows: repeat(2, minmax(190px, 1fr));
  gap: 18px;
  padding-top: clamp(34px, 5vw, 62px);
  padding-bottom: clamp(38px, 5vw, 66px);
}

.feature-image {
  position: relative;
  min-height: 216px;
  overflow: hidden;
  background: var(--wash);
  color: inherit;
  text-decoration: none;
}

.feature-image.tall {
  grid-row: span 2;
}

.feature-image img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 420ms ease;
}

.feature-image:hover img {
  transform: scale(1.025);
}

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

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

.proof-strip div:nth-child(2).reveal,
.service:nth-child(2).reveal,
.case-grid article:nth-child(2).reveal,
.process-grid article:nth-child(2).reveal,
.pathway-card:nth-child(2).reveal {
  transition-delay: 80ms;
}

.proof-strip div:nth-child(3).reveal,
.service:nth-child(3).reveal,
.case-grid article:nth-child(3).reveal,
.process-grid article:nth-child(3).reveal,
.pathway-card:nth-child(3).reveal {
  transition-delay: 150ms;
}

.service:nth-child(4).reveal,
.case-grid article:nth-child(4).reveal,
.process-grid article:nth-child(4).reveal {
  transition-delay: 220ms;
}

.feature-image span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.86);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.campaign-gallery {
  display: grid;
  gap: 28px;
  padding-top: 0;
  background: var(--paper);
}

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

.campaign-grid a {
  display: grid;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.campaign-grid img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.02);
  transition: transform 240ms ease, filter 240ms ease;
}

.campaign-grid a:hover img,
.campaign-grid a:focus-visible img {
  transform: translateY(-3px);
  filter: saturate(1.04) contrast(1.04);
}

.campaign-grid span {
  color: var(--ink-soft);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1.25;
  text-transform: uppercase;
}

.pathways {
  display: grid;
  gap: clamp(28px, 5vw, 56px);
  background:
    linear-gradient(180deg, rgba(246, 241, 235, 0.46), rgba(255, 253, 249, 1) 42%),
    var(--paper);
}

.pathway-grid {
  display: grid;
  grid-template-columns: 1.18fr 0.82fr;
  grid-template-rows: repeat(2, minmax(238px, 1fr));
  gap: 18px;
}

.pathway-card {
  position: relative;
  min-height: 238px;
  display: grid;
  align-content: end;
  gap: 14px;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  color: var(--white);
  isolation: isolate;
  text-decoration: none;
}

.pathway-card.large {
  grid-row: span 2;
}

.pathway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: var(--path-image) center / cover;
  transition: transform 560ms ease;
}

.pathway-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 16, 13, 0.06), rgba(20, 16, 13, 0.74)),
    linear-gradient(90deg, rgba(20, 16, 13, 0.34), rgba(20, 16, 13, 0.06));
}

.pathway-card:hover::before,
.pathway-card:focus-visible::before {
  transform: scale(1.045);
}

.pathway-card span {
  width: fit-content;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.pathway-card h3 {
  max-width: 620px;
  font-size: clamp(1.45rem, 2.6vw, 2.55rem);
}

.pathway-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
}

.services {
  background: var(--wash);
}

.platform-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--ink);
  color: var(--white);
}

.platform-proof .eyebrow {
  color: var(--accent-soft);
}

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

.platform-grid span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.055);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: clamp(30px, 5vw, 54px);
}

.section-heading.compact {
  max-width: 780px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--white);
}

.service {
  min-height: 310px;
  display: grid;
  align-content: space-between;
  gap: 28px;
  padding: clamp(24px, 3.2vw, 38px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.card-link,
.case-link,
.resource-link,
.proof-card,
.process-card {
  color: inherit;
  text-decoration: none;
}

.card-link,
.case-link,
.resource-link,
.proof-card,
.process-card,
.feature-image,
.client-row a {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.card-link:hover,
.card-link:focus-visible,
.case-link:hover,
.case-link:focus-visible,
.resource-link:hover,
.resource-link:focus-visible,
.proof-card:hover,
.proof-card:focus-visible,
.process-card:hover,
.process-card:focus-visible,
.client-row a:hover,
.client-row a:focus-visible {
  border-color: rgba(141, 102, 87, 0.48);
  box-shadow: 0 18px 44px rgba(36, 31, 27, 0.08);
  transform: translateY(-2px);
}

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

.service span {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
}

.service.primary-service p {
  color: rgba(255, 255, 255, 0.72);
}

.results {
  background: var(--paper);
}

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

.case-grid article,
.case-link {
  min-height: 268px;
  display: grid;
  align-content: start;
  gap: 12px;
  padding: clamp(24px, 3.2vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
}

.case-grid span,
.case-link span {
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.process .eyebrow {
  color: var(--accent-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
}

.process-grid article,
.process-card {
  min-height: 220px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--ink);
}

.process-grid span,
.process-card span {
  display: block;
  margin-bottom: 26px;
  color: var(--white);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 760;
}

.process-grid p,
.process-card p {
  color: rgba(255, 255, 255, 0.68);
}

.clients {
  text-align: center;
}

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

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

.faq-grid details {
  min-height: 150px;
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.3rem);
  font-weight: 780;
  line-height: 1.25;
}

.faq-grid summary::marker {
  color: var(--accent);
}

.faq-grid p {
  margin-top: 18px;
}

.client-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.logo-ribbon {
  gap: 0;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.logo-ribbon a {
  min-width: 150px;
  flex: 1 1 150px;
  padding: 20px 16px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
}

.logo-ribbon a:last-child {
  border-right: 0;
}

.logo-ribbon span {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.35vw, 1.22rem);
  font-weight: 760;
  letter-spacing: 0;
  line-height: 1.1;
  text-transform: none;
}

.conversion {
  background: var(--wash);
}

.conversion-copy {
  position: sticky;
  top: 108px;
}

.direct-contact {
  display: grid;
  gap: 8px;
  margin-top: 30px;
}

.direct-contact a {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 720;
  text-decoration: none;
}

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

.brief-form,
.signup-form {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 3.4vw, 40px);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

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

.signup-form {
  grid-template-columns: repeat(2, 1fr);
  box-shadow: none;
}

.form-heading {
  grid-column: 1 / -1;
  margin-bottom: 4px;
}

.form-heading h3 {
  color: var(--ink);
}

label {
  display: grid;
  gap: 7px;
}

label span,
.form-heading .eyebrow {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #d8cec3;
  border-radius: 6px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(141, 102, 87, 0.28);
  outline-offset: 2px;
}

.full-field,
.brief-form button,
.brief-form .form-status,
.signup-form label:nth-of-type(3),
.signup-form button,
.signup-form .form-status,
.consent-check {
  grid-column: 1 / -1;
}

.consent-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.consent-check input {
  width: 18px;
  min-height: 18px;
  margin-top: 3px;
}

.consent-check span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--accent);
  font-weight: 800;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 24px clamp(22px, 4vw, 56px);
  color: var(--muted);
  background: var(--paper);
  border-top: 1px solid var(--line);
}

@keyframes headerDrop {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroScale {
  from {
    transform: scale(1.035);
  }
  to {
    transform: scale(1);
  }
}

@keyframes marqueeMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1020px) {
  .service-list,
  .process-grid,
  .pathway-grid,
  .campaign-grid,
  .sector-grid,
  .deliverables-grid,
  .matrix-grid,
  .method-grid,
  .toolkit-grid,
  .editorial-grid,
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .conversion,
  .platform-proof,
  .split-section,
  .newsletter.standalone {
    grid-template-columns: 1fr;
  }

  .conversion-copy {
    position: static;
  }
}

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

  nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 72vh;
    padding-top: 86px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(20, 16, 13, 0.74), rgba(20, 16, 13, 0.42)),
      url("https://images.unsplash.com/photo-1551836022-d5d88e9218df?auto=format&fit=crop&w=1300&q=82") center / cover;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 5.3rem);
  }

  .proof-strip,
  .intro,
  .split-section,
  .visual-story,
  .pathway-grid,
  .campaign-grid,
  .sector-grid,
  .platform-grid,
  .deliverables-grid,
  .matrix-grid,
  .method-grid,
  .toolkit-grid,
  .faq-grid,
  .policy-content article,
  .case-grid,
  .image-band,
  .service-detail article,
  .case-study-list article,
  .newsletter.standalone,
  .brief-form,
  .signup-form {
    grid-template-columns: 1fr;
  }

  .service-detail article:nth-child(even),
  .case-study-list article:nth-child(even) {
    direction: ltr;
  }

  .page-hero {
    min-height: 68vh;
  }

  .page-hero h1 {
    font-size: clamp(2.7rem, 13vw, 4.9rem);
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature-image.tall {
    grid-row: auto;
  }

  .pathway-card.large {
    grid-row: auto;
  }
}

@media (max-width: 560px) {
  .site-header {
    position: static;
  }

  nav {
    gap: 10px 16px;
    font-size: 0.72rem;
  }

  .nav-cta {
    padding: 0;
    border: 0;
    background: transparent;
  }

  section {
    padding-left: 20px;
    padding-right: 20px;
  }

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

  .service-list,
  .process-grid,
  .pathway-grid,
  .campaign-grid,
  .sector-grid,
  .platform-grid,
  .deliverables-grid,
  .matrix-grid,
  .method-grid,
  .toolkit-grid,
  .editorial-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

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

  .service,
  .case-grid article,
  .process-grid article,
  .process-card,
  .deliverables-grid article,
  .matrix-grid article,
  .faq-grid details,
  .pathway-card {
    min-height: auto;
  }

  .service-detail img,
  .case-media img,
  .image-band img {
    min-height: 300px;
    height: 74vw;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

.page-hero {
  min-height: 68vh;
  display: grid;
  align-items: end;
  padding-top: clamp(96px, 13vw, 170px);
  position: relative;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 16, 13, 0.74), rgba(20, 16, 13, 0.36)),
    var(--hero-image) center / cover;
  animation: heroScale 8s ease-out both;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 36%;
  background: linear-gradient(0deg, rgba(20, 16, 13, 0.6), transparent);
}

.page-hero > div {
  width: min(900px, 100%);
  animation: heroRise 760ms 120ms ease both;
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(3rem, 7vw, 6.1rem);
}

.about-hero {
  --hero-image: url("https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=2200&q=82");
}

.services-hero {
  --hero-image: url("https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=2200&q=82");
}

.results-hero {
  --hero-image: url("https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?auto=format&fit=crop&w=2200&q=82");
}

.notes-hero {
  --hero-image: url("https://images.unsplash.com/photo-1516321497487-e288fb19713f?auto=format&fit=crop&w=2200&q=82");
}

.contact-hero {
  --hero-image: url("https://images.unsplash.com/photo-1559136555-9303baea8ebd?auto=format&fit=crop&w=2200&q=82");
}

.split-section,
.newsletter.standalone {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(34px, 7vw, 94px);
  align-items: start;
}

.rich-copy p,
.editorial-grid p,
.case-copy p,
.article-grid p,
.newsletter.standalone p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.25vw, 1.1rem);
}

.rich-copy p:first-child {
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.55vw, 1.28rem);
}

.image-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding-top: 0;
}

.image-band img {
  min-height: 420px;
  height: 48vw;
  max-height: 620px;
  object-fit: cover;
}

.service-detail,
.case-study-list {
  display: grid;
  gap: clamp(48px, 8vw, 100px);
}

.deliverables-section,
.proof-matrix,
.method-section,
.toolkit-section,
.resource-detail,
.policy-content {
  background: var(--paper);
}

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

.deliverables-grid article {
  min-height: 236px;
}

.service-detail article,
.case-study-list article {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(26px, 5vw, 70px);
  align-items: center;
}

.service-detail article:nth-child(even),
.case-study-list article:nth-child(even) {
  direction: rtl;
}

.service-detail article:nth-child(even) > *,
.case-study-list article:nth-child(even) > * {
  direction: ltr;
}

.service-detail img,
.case-media img {
  min-height: 420px;
  height: 44vw;
  max-height: 560px;
  object-fit: cover;
}

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

.check-list li {
  padding-left: 22px;
  position: relative;
  color: var(--ink-soft);
}

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

.package-section,
.values-section,
.newsletter.standalone {
  background: var(--wash);
}

.proof-matrix,
.toolkit-section {
  background: var(--wash);
}

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

.matrix-grid article {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 300px;
}

.matrix-grid strong {
  align-self: end;
  color: var(--ink);
  font-size: clamp(1.4rem, 2.4vw, 2.15rem);
  font-weight: 760;
  line-height: 1;
}

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

.method-grid article:first-child {
  background: var(--ink);
  color: var(--white);
}

.method-grid article:first-child p,
.method-grid article:first-child span {
  color: rgba(255, 255, 255, 0.76);
}

.toolkit-card {
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 12px;
}

.toolkit-card h3 {
  font-size: clamp(1.28rem, 1.9vw, 1.7rem);
}

.resource-detail {
  display: grid;
  gap: 18px;
  padding-top: clamp(38px, 5vw, 68px);
  padding-bottom: clamp(38px, 5vw, 68px);
}

.resource-detail + .resource-detail {
  border-top: 1px solid var(--line);
}

.resource-detail h2 {
  max-width: 900px;
}

.policy-content {
  display: grid;
  gap: 18px;
}

.policy-content article {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: clamp(20px, 4vw, 56px);
  align-items: start;
}

.policy-content h2 {
  font-size: clamp(1.25rem, 2vw, 1.8rem);
}

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

.editorial-grid article,
.article-grid article,
.resource-link {
  padding: clamp(24px, 3vw, 38px);
  border: 1px solid var(--line);
  background: var(--white);
}

.editorial-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

.mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
}

.mini-stats span {
  display: inline-grid;
  gap: 2px;
  min-width: 160px;
  padding: 16px;
  border: 1px solid var(--line);
  color: var(--muted);
  background: var(--white);
  font-size: 0.88rem;
}

.mini-stats strong {
  color: var(--accent);
  font-size: 2rem;
  font-weight: 760;
  line-height: 1;
}

.article-grid article,
.resource-link {
  display: grid;
  align-content: start;
  gap: 16px;
}

.article-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
  margin-bottom: 10px;
}

.contact-page {
  padding-top: clamp(62px, 8vw, 108px);
}

.cta-band {
  display: grid;
  gap: 20px;
  justify-items: start;
  background: var(--ink);
  color: var(--white);
}

.cta-band .eyebrow {
  color: var(--accent-soft);
}

.cta-band h2 {
  max-width: 900px;
}

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