:root {
  --color-ink: #191716;
  --color-graphite: #2a2725;
  --color-muted: #6d6965;
  --color-line: rgba(25, 23, 22, 0.13);
  --color-soft: #f3f0ec;
  --color-paper: #fbfaf7;
  --color-white: #ffffff;
  --color-burgundy: #7e1f2b;
  --color-brass: #b99059;
  --color-slate: #54606a;
  --color-dark: #151313;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --container: 1240px;
  --space-section: clamp(72px, 9vw, 132px);
  --radius: 6px;
  --shadow: 0 28px 80px rgba(25, 23, 22, 0.18);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--color-paper);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

body.modal-open {
  overflow: hidden;
}

body.nav-open::before {
  content: "";
  position: fixed;
  z-index: 49;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 31, 43, 0.18), transparent 34%),
    linear-gradient(180deg, rgba(10, 9, 9, 0.99) 0%, rgba(21, 19, 19, 0.98) 100%);
  pointer-events: none;
}

body::selection {
  background: rgba(185, 144, 89, 0.32);
}

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

a {
  color: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

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

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

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 56px);
  color: var(--color-white);
  transition: background 180ms ease, border-color 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(21, 19, 19, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

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

.brand__mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 18px;
}

.brand__text {
  display: grid;
  line-height: 1.1;
}

.brand__text span {
  font-weight: 650;
}

.brand__text small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 32px);
}

.primary-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 650;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.primary-nav a:hover,
.primary-nav a:focus {
  color: var(--color-white);
}

.primary-nav .nav-cta {
  padding: 11px 16px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 999px;
  color: var(--color-white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
}

.nav-toggle span:not(.screen-reader-text) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: min(850px, 100vh);
  overflow: hidden;
  display: grid;
  align-items: end;
  padding-top: 108px;
  background: var(--color-dark);
  color: var(--color-white);
}

.hero__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(21, 19, 19, 0.98) 0%, rgba(21, 19, 19, 0.9) 31%, rgba(21, 19, 19, 0.45) 61%, rgba(21, 19, 19, 0.2) 100%),
    linear-gradient(180deg, rgba(21, 19, 19, 0.15) 0%, rgba(21, 19, 19, 0.92) 100%);
  z-index: 2;
}

.hero__background::before,
.hero__background::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__background::before {
  background:
    radial-gradient(circle at 26% 24%, rgba(185, 144, 89, 0.18), transparent 28%),
    linear-gradient(115deg, transparent 0%, transparent 41%, rgba(255, 255, 255, 0.09) 48%, transparent 56%, transparent 100%);
  mix-blend-mode: screen;
  opacity: 0.7;
  transform: translateX(-18%);
  animation: hero-sheen 8s ease-in-out 1.2s infinite;
}

.hero__background::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 72%, transparent 100%);
  opacity: 0.28;
}

.hero__motion-lines {
  position: absolute;
  z-index: 3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__motion-lines span {
  position: absolute;
  display: block;
  width: 42vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 144, 89, 0.72), rgba(255, 255, 255, 0.24), transparent);
  opacity: 0.58;
  transform: rotate(-18deg);
  animation: motion-line 9s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero__motion-lines span:nth-child(1) {
  top: 23%;
  left: 42%;
}

.hero__motion-lines span:nth-child(2) {
  top: 52%;
  left: 56%;
  width: 30vw;
  animation-delay: 2.4s;
  opacity: 0.38;
}

.hero__motion-lines span:nth-child(3) {
  top: 72%;
  left: 34%;
  width: 36vw;
  animation-delay: 4.8s;
  opacity: 0.32;
}

.hero__grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 600px) minmax(360px, 1fr);
  gap: 48px;
  align-items: end;
  min-height: 555px;
}

.hero__content {
  max-width: 600px;
  padding-bottom: clamp(46px, 6vw, 76px);
}

.hero__portrait-wrap {
  position: absolute;
  z-index: 1;
  inset: 116px 0 0 57%;
  width: auto;
  overflow: hidden;
}

.hero__portrait {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 54% 35%;
  filter: saturate(0.96) contrast(1.02);
  transform: translate3d(0, calc(var(--hero-depth, 0) * -1px), 0) scale(1.035);
  transition: transform 120ms linear;
}

.hero__note {
  position: absolute;
  right: clamp(20px, 4vw, 58px);
  bottom: clamp(132px, 15vw, 190px);
  z-index: 4;
  width: min(280px, calc(100vw - 40px));
  padding: 18px 20px;
  border-left: 2px solid var(--color-brass);
  background: rgba(21, 19, 19, 0.66);
  backdrop-filter: blur(18px);
}

.hero__note span,
.eyebrow {
  display: block;
  color: var(--color-brass);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__note strong {
  display: block;
  margin-top: 6px;
  font-size: 17px;
  line-height: 1.25;
}

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

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: clamp(52px, 6.25vw, 88px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(40px, 5.6vw, 76px);
}

h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.hero__lead {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.45;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 21px;
  border: 1px solid var(--color-burgundy);
  border-radius: 999px;
  background: var(--color-burgundy);
  color: var(--color-white);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(126, 31, 43, 0.18);
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.button::after {
  content: "→";
  margin-left: 10px;
  font-size: 17px;
  line-height: 1;
  transition: transform 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(110deg, transparent 0%, transparent 35%, rgba(255, 255, 255, 0.42) 48%, transparent 60%, transparent 100%);
  transform: translateX(-120%);
  transition: transform 700ms ease;
}

.button > *,
.button::after {
  position: relative;
  z-index: 1;
}

.button:hover,
.button:focus {
  transform: translateY(-3px);
  background: #651822;
  border-color: #651822;
  box-shadow: 0 18px 42px rgba(126, 31, 43, 0.28);
  color: var(--color-white);
}

.button:hover::after,
.button:focus::after {
  transform: translateX(5px);
}

.button:hover::before,
.button:focus::before {
  transform: translateX(120%);
}

.button--secondary {
  border-color: rgba(255, 255, 255, 0.38);
  background: rgba(255, 255, 255, 0.08);
}

.button--secondary:hover,
.button--secondary:focus {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.62);
}

.button--light {
  border-color: var(--color-white);
  background: var(--color-white);
  color: var(--color-dark);
}

.button--light:hover,
.button--light:focus {
  background: var(--color-burgundy);
  border-color: var(--color-burgundy);
  color: var(--color-white);
}

.button--ghost-light {
  border-color: rgba(255, 255, 255, 0.35);
  background: transparent;
  color: var(--color-white);
}

.metric-ribbon {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(21, 19, 19, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 -18px 70px rgba(0, 0, 0, 0.22);
}

.metric-ribbon__item {
  position: relative;
  overflow: hidden;
  min-height: 116px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.result-card::before,
.service-card::before,
.audience-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(185, 144, 89, 0.1), transparent 58%),
    linear-gradient(90deg, rgba(126, 31, 43, 0.08), transparent 42%);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.result-card:hover::before,
.service-card:hover::before,
.audience-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.metric-ribbon__item::before,
.offer-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(185, 144, 89, 0.12), transparent 62%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055), transparent 46%);
  opacity: 0;
  transform: scale(0.992);
  transition: opacity 520ms ease, transform 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.metric-ribbon__item:hover::before,
.offer-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.metric-ribbon__item:last-child {
  border-right: 0;
}

.metric-ribbon__item strong {
  display: block;
  margin-bottom: 8px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  line-height: 1;
}

.metric-ribbon__item span {
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.35;
}

.section-head {
  max-width: 860px;
  margin-bottom: 44px;
}

.section-head--split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.36fr);
  gap: 48px;
  align-items: end;
  max-width: none;
}

.section-head--split p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 18px;
}

.section-dark .section-head--split p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
}

.section-note {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--color-muted);
  font-size: 18px;
}

.section-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
}

.section-links .text-link {
  margin-top: 0;
}

.intro__grid,
.problems__grid,
.expertise__grid,
.education__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.58fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: start;
}

.authority__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.58fr);
  gap: clamp(48px, 7vw, 92px);
  align-items: center;
}

.intro__copy {
  padding-top: 8px;
  color: var(--color-muted);
  font-size: 19px;
}

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

.audience-card,
.service-card {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  padding: 28px;
  border-right: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.audience-card:hover,
.service-card:hover {
  z-index: 2;
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 60px rgba(25, 23, 22, 0.11);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 28px;
  color: var(--color-burgundy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card a::after {
  content: "→";
  margin-left: 10px;
  font-size: 17px;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card a::before,
.offer-card a::before,
.text-link::before,
.insight-card a::before {
  content: "";
  position: absolute;
  right: 26px;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  opacity: 0;
  transform: scaleX(0.55);
  transform-origin: left;
  transition: opacity 220ms ease, transform 260ms cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card a:hover,
.service-card a:focus {
  color: #6f1722;
  transform: translateX(4px);
}

.service-card a:hover::before,
.service-card a:focus::before,
.offer-card a:hover::before,
.offer-card a:focus::before,
.text-link:hover::before,
.text-link:focus::before,
.insight-card a:hover::before,
.insight-card a:focus::before {
  opacity: 0.42;
  transform: scaleX(1);
}

.service-card a:hover::after,
.service-card a:focus::after,
.offer-card a:hover::after,
.offer-card a:focus::after,
.text-link:hover::after,
.text-link:focus::after,
.insight-card a:hover::after,
.insight-card a:focus::after {
  transform: translateX(7px);
}

.audience-card ul,
.offer-card ul {
  padding-left: 18px;
  margin: 20px 0 0;
  color: var(--color-muted);
}

.audience-card li,
.offer-card li {
  margin-bottom: 9px;
}

.problems p {
  color: var(--color-muted);
  font-size: 18px;
}

.problems {
  position: relative;
  padding-bottom: clamp(48px, 5vw, 76px);
}

.problems::after {
  content: "";
  position: absolute;
  right: max(20px, calc((100% - var(--container)) / 2));
  bottom: 0;
  left: max(20px, calc((100% - var(--container)) / 2));
  height: 1px;
  background: linear-gradient(90deg, rgba(25, 23, 22, 0.08), rgba(126, 31, 43, 0.36), rgba(25, 23, 22, 0.08));
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 14px;
  color: var(--color-burgundy);
  font-weight: 750;
  text-decoration: none;
  transition: color 220ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link::after {
  content: "→";
  margin-left: 10px;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.text-link:hover,
.text-link:focus {
  color: #6f1722;
  transform: translateX(4px);
}

.problem-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 12px;
  padding-left: 22px;
}

.problem-list::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--color-brass), rgba(126, 31, 43, 0.8), rgba(185, 144, 89, 0.18));
}

.problem-list span {
  min-height: 52px;
  display: flex;
  align-items: center;
  padding: 13px 15px;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-graphite);
  font-size: 15px;
  font-weight: 650;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.problem-list span:hover {
  transform: translateX(5px);
  border-color: rgba(126, 31, 43, 0.3);
  box-shadow: 0 14px 34px rgba(25, 23, 22, 0.08);
}

.results {
  position: relative;
  overflow: hidden;
  background: var(--color-paper);
  padding-top: clamp(58px, 6vw, 86px);
}

.results::before {
  content: "";
  position: absolute;
  inset: 9% -8% auto;
  height: 220px;
  background:
    linear-gradient(90deg, transparent 0%, rgba(185, 144, 89, 0.18) 48%, transparent 100%),
    repeating-linear-gradient(90deg, transparent 0 92px, rgba(25, 23, 22, 0.055) 93px 94px);
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 78%, transparent 100%);
  opacity: 0.42;
  pointer-events: none;
}

.motion-ready .results::before {
  animation: section-drift 14s ease-in-out infinite;
}

.results > .container {
  position: relative;
  z-index: 1;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--color-line);
  border: 1px solid var(--color-line);
}

.result-card {
  position: relative;
  overflow: hidden;
  min-height: 340px;
  padding: 24px;
  background: var(--color-paper);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.result-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  box-shadow: 0 24px 70px rgba(25, 23, 22, 0.13);
}

.result-card strong {
  display: block;
  margin-bottom: 22px;
  color: var(--color-burgundy);
  font-family: var(--font-display);
  font-size: clamp(46px, 4.6vw, 68px);
  font-weight: 500;
  line-height: 0.9;
}

.result-card p,
.service-card p,
.process-step p,
.expertise-columns p {
  color: var(--color-muted);
}

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

.offer-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 430px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
  transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.offer-card:hover {
  transform: translateY(-7px);
  border-color: rgba(185, 144, 89, 0.42);
  background: rgba(255, 255, 255, 0.085);
}

.offer-card:nth-child(1),
.offer-card:nth-child(2),
.offer-card:nth-child(3) {
  grid-column: span 2;
}

.offer-card:nth-child(4),
.offer-card:nth-child(5) {
  grid-column: span 3;
}

.offer-card__kicker,
.offer-card__meta {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 18px;
  color: var(--color-brass);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.offer-card h3 {
  max-width: 440px;
  color: var(--color-white);
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 500;
}

.offer-card p,
.offer-card ul {
  color: rgba(255, 255, 255, 0.68);
}

.offer-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-top: 24px;
  color: var(--color-white);
  font-weight: 750;
  text-decoration: none;
  transition: color 220ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-card a::after {
  content: "→";
  margin-left: 10px;
  color: var(--color-brass);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.offer-card a:hover,
.offer-card a:focus {
  color: var(--color-white);
  transform: translateX(4px);
}

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

.service-card {
  min-height: 270px;
}

.expertise-columns {
  display: grid;
  gap: 18px;
}

.expertise-columns > div {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border-left: 2px solid var(--color-burgundy);
  background: rgba(255, 255, 255, 0.48);
  transition: transform 240ms ease, background 240ms ease;
}

.expertise-columns > div:hover {
  transform: translateX(6px);
  background: rgba(255, 255, 255, 0.76);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
}

.process {
  position: relative;
  overflow: hidden;
}

.process::before {
  content: "";
  position: absolute;
  left: max(20px, calc((100vw - var(--container)) / 2));
  right: max(20px, calc((100vw - var(--container)) / 2));
  top: 48%;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(126, 31, 43, 0.18) 18%, rgba(185, 144, 89, 0.34) 50%, transparent 86%);
  opacity: 0.62;
  pointer-events: none;
}

.process::after {
  content: "";
  position: absolute;
  top: 46%;
  left: max(20px, calc((100vw - var(--container)) / 2));
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(126, 31, 43, 0.82), transparent);
  opacity: 0;
  pointer-events: none;
}

.motion-ready .process::after {
  animation: process-scan 8s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.process > .container {
  position: relative;
  z-index: 1;
}

.process-step {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  padding: 36px 28px 0 30px;
  border-right: 1px solid var(--color-line);
  transition: background 360ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1), box-shadow 360ms ease;
}

.process-step::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-burgundy);
  transition: width 700ms ease, height 360ms ease, background 360ms ease, box-shadow 360ms ease;
}

.process-step::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(185, 144, 89, 0.11), transparent 54%),
    linear-gradient(90deg, rgba(126, 31, 43, 0.055), transparent 48%);
  opacity: 0;
  transform: scaleY(0.96);
  transform-origin: top;
  transition: opacity 420ms ease, transform 560ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step.is-visible::before {
  width: 100%;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.42);
  transform: translateY(-5px);
  box-shadow: 0 24px 62px rgba(25, 23, 22, 0.08);
}

.process-step:hover::before {
  height: 2px;
  background: var(--color-brass);
  box-shadow: 0 0 24px rgba(185, 144, 89, 0.32);
}

.process-step:hover::after {
  opacity: 1;
  transform: scaleY(1);
}

.process-step:last-child {
  border-right: 0;
}

.process-step span {
  display: block;
  margin-bottom: 42px;
  color: var(--color-burgundy);
  font-family: var(--font-display);
  font-size: 44px;
  line-height: 1;
  transition: color 320ms ease, transform 360ms cubic-bezier(0.16, 1, 0.3, 1);
}

.process-step:hover span {
  color: #6f1722;
  transform: translateY(-4px);
}

.process-step h3 {
  transition: color 320ms ease;
}

.process-step:hover h3 {
  color: var(--color-burgundy);
}

.authority {
  border-top: 1px solid var(--color-line);
}

.authority h2 {
  margin-bottom: 0;
}

.authority-list {
  display: grid;
  gap: 10px;
}

.authority-list span {
  padding: 16px 18px;
  border: 1px solid var(--color-line);
  background: var(--color-white);
  font-weight: 650;
  transition: transform 220ms ease, border-color 220ms ease;
}

.authority-list span:hover {
  transform: translateX(6px);
  border-color: rgba(126, 31, 43, 0.28);
}

.education-list {
  display: grid;
  gap: 14px;
}

.education-list article,
.insight-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.58);
}

.education-list article {
  padding: 24px;
}

.education-list h3,
.insight-card h3 {
  margin-top: 0;
}

.education-list ul {
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--color-muted);
}

.education-list li {
  margin-bottom: 9px;
}

.insights {
  background: var(--color-paper);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--color-line);
  background: var(--color-line);
}

.insight-card {
  min-height: 270px;
  padding: 28px;
  background: var(--color-paper);
  transition: transform 260ms ease, box-shadow 260ms ease, background 260ms ease;
}

.insight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(185, 144, 89, 0.1), transparent 58%),
    linear-gradient(90deg, rgba(126, 31, 43, 0.07), transparent 42%);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 420ms ease, transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  background: var(--color-white);
  box-shadow: 0 24px 70px rgba(25, 23, 22, 0.11);
}

.insight-card:hover::before {
  opacity: 1;
  transform: scale(1);
}

.insight-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--color-brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.insight-card p {
  color: var(--color-muted);
}

.insight-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 18px;
}

.insight-card a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--color-burgundy);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 220ms ease, transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card > a {
  margin-top: 18px;
}

.insight-card a::after {
  content: "→";
  margin-left: 10px;
  color: var(--color-brass);
  font-size: 17px;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.insight-card a:hover,
.insight-card a:focus {
  color: #6f1722;
  transform: translateX(4px);
}

.final-cta {
  position: relative;
  overflow: hidden;
  background: var(--color-ink);
  color: var(--color-white);
}

.final-cta::before,
.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.final-cta::before {
  background:
    linear-gradient(115deg, transparent 0%, transparent 42%, rgba(255, 255, 255, 0.085) 48%, transparent 55%, transparent 100%),
    radial-gradient(circle at 50% 18%, rgba(185, 144, 89, 0.16), transparent 34%);
  opacity: 0.72;
  transform: translateX(-28%);
}

.final-cta::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 76%, transparent 100%);
  opacity: 0.22;
}

.motion-ready .final-cta::before {
  animation: final-sheen 10s ease-in-out infinite;
}

.final-cta__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.final-cta__inner .eyebrow {
  margin-bottom: 18px;
}

.final-cta__inner p {
  max-width: 660px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
}

.final-cta__inner .hero__actions {
  justify-content: center;
}

.site-footer {
  padding: clamp(56px, 7vw, 92px) clamp(20px, 4vw, 56px) 28px;
  background: #0e0d0d;
  color: var(--color-white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(240px, 0.5fr) minmax(240px, 0.44fr);
  gap: 46px;
  align-items: start;
}

.footer-grid h2 {
  font-size: clamp(36px, 5vw, 64px);
}

.footer-grid p:not(.eyebrow),
.footer-meta {
  color: rgba(255, 255, 255, 0.66);
}

.footer-actions,
.footer-meta {
  display: grid;
  gap: 12px;
}

.footer-meta a {
  color: var(--color-white);
  text-decoration: none;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 70px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.footer-bottom a {
  text-decoration: none;
}

.inquiry-modal {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.inquiry-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.inquiry-modal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(126, 31, 43, 0.28), transparent 32%),
    rgba(14, 13, 13, 0.78);
  backdrop-filter: blur(18px);
}

.inquiry-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1040px, 100%);
  max-height: min(820px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(360px, 1fr);
  overflow: auto;
  background: var(--color-paper);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.36);
}

.inquiry-modal__close {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(25, 23, 22, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
}

.inquiry-modal__close::before,
.inquiry-modal__close::after {
  content: "";
  position: absolute;
  top: 20px;
  left: 11px;
  width: 18px;
  height: 2px;
  background: var(--color-ink);
}

.inquiry-modal__close::before {
  transform: rotate(45deg);
}

.inquiry-modal__close::after {
  transform: rotate(-45deg);
}

.inquiry-modal__intro {
  padding: clamp(34px, 5vw, 58px);
  background: var(--color-ink);
  color: var(--color-white);
}

.inquiry-modal__intro h2 {
  font-size: clamp(36px, 4.8vw, 58px);
}

.inquiry-modal__intro p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.inquiry-modal__topic {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.inquiry-modal__topic span {
  display: block;
  margin-bottom: 8px;
  color: var(--color-brass);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inquiry-modal__topic strong {
  display: block;
  color: var(--color-white);
  font-size: 20px;
  line-height: 1.25;
}

.inquiry-modal__form {
  padding: clamp(28px, 4vw, 48px);
}

.inquiry-modal form {
  display: grid;
  gap: 16px;
}

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

.inquiry-modal label {
  display: grid;
  gap: 7px;
  color: var(--color-graphite);
  font-size: 13px;
  font-weight: 750;
}

.inquiry-modal input,
.inquiry-modal textarea,
.inquiry-modal select {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(25, 23, 22, 0.16);
  border-radius: 0;
  background: var(--color-white);
  color: var(--color-ink);
  font: inherit;
  font-size: 15px;
  padding: 12px 13px;
}

.inquiry-modal textarea {
  min-height: 128px;
  resize: vertical;
}

.inquiry-modal input:focus,
.inquiry-modal textarea:focus,
.inquiry-modal select:focus {
  outline: 2px solid rgba(185, 144, 89, 0.38);
  outline-offset: 1px;
  border-color: rgba(126, 31, 43, 0.42);
}

.inquiry-modal .button,
.inquiry-modal input[type="submit"],
.inquiry-modal button[type="submit"] {
  width: fit-content;
  min-width: 210px;
  border: 1px solid var(--color-burgundy);
  border-radius: 999px;
  background: var(--color-burgundy);
  color: var(--color-white);
  cursor: pointer;
}

.form-note,
.wpcf7-response-output {
  margin: 0;
  color: var(--color-muted);
  font-size: 13px;
}

.wpcf7 form .wpcf7-response-output {
  position: relative;
  margin-top: 10px;
  padding: 18px 20px 18px 58px;
  border: 1px solid rgba(185, 144, 89, 0.34);
  background:
    linear-gradient(135deg, rgba(185, 144, 89, 0.12), rgba(255, 255, 255, 0.82) 46%),
    var(--color-white);
  box-shadow: 0 18px 40px rgba(25, 23, 22, 0.08);
  color: var(--color-graphite);
  font-size: 15px;
  line-height: 1.55;
}

.wpcf7 form .wpcf7-response-output::before {
  content: "";
  position: absolute;
  top: 19px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 1px solid rgba(126, 31, 43, 0.32);
  border-radius: 50%;
  background: rgba(126, 31, 43, 0.08);
}

.wpcf7 form .wpcf7-response-output::after {
  content: "";
  position: absolute;
  top: 25px;
  left: 26px;
  width: 8px;
  height: 5px;
  border-left: 2px solid var(--color-burgundy);
  border-bottom: 2px solid var(--color-burgundy);
  transform: rotate(-45deg);
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: rgba(185, 144, 89, 0.42);
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output {
  border-color: rgba(126, 31, 43, 0.34);
  background:
    linear-gradient(135deg, rgba(126, 31, 43, 0.1), rgba(255, 255, 255, 0.84) 46%),
    var(--color-white);
}

.wpcf7 form.invalid .wpcf7-response-output::after,
.wpcf7 form.unaccepted .wpcf7-response-output::after,
.wpcf7 form.payment-required .wpcf7-response-output::after,
.wpcf7 form.failed .wpcf7-response-output::after,
.wpcf7 form.aborted .wpcf7-response-output::after,
.wpcf7 form.spam .wpcf7-response-output::after {
  content: "!";
  top: 18px;
  left: 27px;
  width: auto;
  height: auto;
  border: 0;
  color: var(--color-burgundy);
  font-size: 14px;
  font-weight: 850;
  transform: none;
}

.wpcf7-not-valid-tip {
  margin-top: 6px;
  color: var(--color-burgundy);
  font-size: 12px;
}

.motion-ready .hero__content > *,
.motion-ready .hero__portrait-wrap,
.motion-ready .hero__note,
.motion-ready .metric-ribbon {
  animation: hero-rise 900ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.motion-ready .hero__content .eyebrow {
  animation-delay: 120ms;
}

.motion-ready .hero__content h1 {
  animation-delay: 220ms;
}

.motion-ready .hero__lead {
  animation-delay: 340ms;
}

.motion-ready .hero__actions {
  animation-delay: 460ms;
}

.motion-ready .hero__portrait-wrap {
  animation-delay: 180ms;
}

.motion-ready .hero__note {
  animation-delay: 640ms;
}

.motion-ready .metric-ribbon {
  animation-delay: 720ms;
}

.motion-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay, 0ms),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1) var(--motion-delay, 0ms);
  will-change: opacity, transform;
}

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

.motion-ready .metric-ribbon__item strong,
.motion-ready .result-card strong,
.motion-ready .process-step span {
  font-variant-numeric: tabular-nums;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-sheen {
  0%,
  36% {
    transform: translateX(-22%);
    opacity: 0;
  }

  52% {
    opacity: 0.78;
  }

  78%,
  100% {
    transform: translateX(38%);
    opacity: 0;
  }
}

@keyframes motion-line {
  0% {
    transform: translate3d(-22vw, 20px, 0) rotate(-18deg);
    opacity: 0;
  }

  18% {
    opacity: 0.58;
  }

  62% {
    opacity: 0.42;
  }

  100% {
    transform: translate3d(42vw, -34px, 0) rotate(-18deg);
    opacity: 0;
  }
}

@keyframes section-drift {
  0%,
  100% {
    transform: translateX(-2%);
    opacity: 0.3;
  }

  48% {
    transform: translateX(2.4%);
    opacity: 0.48;
  }
}

@keyframes process-scan {
  0%,
  22% {
    transform: translateX(0);
    opacity: 0;
  }

  34% {
    opacity: 0.58;
  }

  76% {
    opacity: 0.38;
  }

  100% {
    transform: translateX(calc(100vw - 160px));
    opacity: 0;
  }
}

@keyframes final-sheen {
  0%,
  34% {
    transform: translateX(-32%);
    opacity: 0.28;
  }

  52% {
    opacity: 0.76;
  }

  82%,
  100% {
    transform: translateX(34%);
    opacity: 0.22;
  }
}

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

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

  .hero__portrait {
    transform: none;
  }
}

@media (max-width: 1080px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }

  .hero__portrait-wrap {
    width: 58vw;
    opacity: 0.82;
  }

  .hero__motion-lines span {
    width: 58vw;
  }

  .metric-ribbon,
  .audience-grid,
  .results-grid,
  .service-grid,
  .insights-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .offer-card:nth-child(n) {
    grid-column: span 3;
  }

  .intro__grid,
  .problems__grid,
  .expertise__grid,
  .education__grid,
  .authority__grid,
  .section-head--split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .process-step:nth-child(2n) {
    border-right: 0;
  }
}

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

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

  .site-header {
    padding: 14px 20px;
  }

  .brand__text small {
    display: none;
  }

  .nav-toggle {
    display: block;
    position: relative;
    z-index: 82;
  }

  body.nav-open .site-header {
    z-index: 80;
    bottom: 0;
    align-items: flex-start;
    min-height: 100vh;
    min-height: 100dvh;
    background: rgba(13, 12, 12, 0.98);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
  }

  .primary-nav {
    position: absolute;
    z-index: 70;
    inset: 0;
    width: 100%;
    min-height: 100vh;
    min-height: 100dvh;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 118px 28px 40px;
    background:
      radial-gradient(circle at 14% 14%, rgba(126, 31, 43, 0.2), transparent 32%),
      linear-gradient(180deg, #0d0c0c 0%, rgba(21, 19, 19, 0.99) 58%, rgba(21, 19, 19, 0.96) 100%);
    backdrop-filter: blur(22px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 28px 90px rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 160ms ease, visibility 160ms ease, transform 160ms ease;
  }

  .primary-nav::before {
    content: "";
    position: absolute;
    top: 92px;
    right: 28px;
    left: 28px;
    height: 1px;
    background: linear-gradient(90deg, rgba(185, 144, 89, 0.52), rgba(255, 255, 255, 0.14), transparent);
  }

  .primary-nav.is-open,
  body.nav-open .primary-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .primary-nav a {
    position: relative;
    z-index: 1;
    width: min(100%, 360px);
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.86);
    font-size: clamp(26px, 8vw, 42px);
    line-height: 1.05;
  }

  .primary-nav .nav-cta {
    width: fit-content;
    margin-top: 14px;
    padding: 14px 20px;
    border-color: rgba(185, 144, 89, 0.58);
    background: rgba(126, 31, 43, 0.72);
    font-size: 15px;
    line-height: 1;
  }

  .hero {
    min-height: 1040px;
    align-items: end;
  }

  .hero__background {
    background:
      linear-gradient(180deg, rgba(21, 19, 19, 0.58) 0%, rgba(21, 19, 19, 0.9) 47%, rgba(21, 19, 19, 0.99) 100%);
  }

  .hero__portrait-wrap {
    inset: 0 0 auto 0;
    width: 100%;
    height: 52%;
  }

  .hero__portrait {
    object-position: 54% 20%;
    transform: scale(1.02);
  }

  .hero__grid {
    min-height: auto;
  }

  .hero__content {
    padding-top: 570px;
    padding-bottom: 50px;
  }

  h1 {
    max-width: 100%;
    font-size: 44px;
    line-height: 1.02;
  }

  h2 {
    font-size: 40px;
  }

  .hero__note {
    display: none;
  }

  .metric-ribbon,
  .audience-grid,
  .results-grid,
  .service-grid,
  .insights-grid,
  .process-grid,
  .problem-list,
  .offer-grid {
    grid-template-columns: 1fr;
  }

  .offer-card:nth-child(n) {
    grid-column: auto;
  }

  .audience-card,
  .service-card,
  .result-card,
  .insight-card,
  .offer-card {
    min-height: auto;
  }

  .process-step,
  .process-step:nth-child(2n) {
    min-height: auto;
    padding: 22px 0;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .process-step span {
    margin-bottom: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .inquiry-modal {
    padding: 0;
    place-items: stretch;
  }

  .inquiry-modal__panel {
    width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    grid-template-columns: 1fr;
  }

  .inquiry-modal__intro,
  .inquiry-modal__form {
    padding: 28px 20px;
  }

  .inquiry-modal__intro h2 {
    max-width: 320px;
    font-size: 34px;
  }

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

  .inquiry-modal .button,
  .inquiry-modal input[type="submit"],
  .inquiry-modal button[type="submit"] {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .brand__mark {
    width: 38px;
    height: 38px;
  }

  .brand__text span {
    font-size: 14px;
  }

  .hero {
    min-height: 1020px;
  }

  .hero__content {
    padding-top: 540px;
  }

  h1 {
    font-size: 32px;
    max-width: 340px;
    overflow-wrap: normal;
  }

  .hero__lead {
    max-width: 340px;
  }

  .eyebrow {
    font-size: 10px;
    letter-spacing: 0.08em;
  }

  .hero__lead,
  .intro__copy,
  .final-cta__inner p {
    font-size: 17px;
  }

  .button {
    width: 100%;
  }

  .metric-ribbon__item {
    min-height: auto;
    padding: 20px;
  }
}

@media (max-width: 820px) {
  :root {
    --space-section: 64px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section-pad {
    padding: 64px 0;
  }

  .site-header {
    padding: 18px 16px;
    background: rgba(21, 19, 19, 0.94);
    backdrop-filter: blur(16px);
  }

  .site-header.is-scrolled {
    padding: 12px 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand__mark {
    flex: 0 0 auto;
    width: 48px;
    height: 48px;
    font-size: 19px;
  }

  .brand__text span {
    font-size: 18px;
    line-height: 1.1;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
    padding: 86px 0 0;
    align-items: stretch;
  }

  .hero__background {
    background:
      linear-gradient(180deg, rgba(21, 19, 19, 0.96) 0%, rgba(21, 19, 19, 0.99) 100%);
  }

  .hero__grid {
    display: contents;
  }

  .hero__content {
    position: relative;
    z-index: 3;
    order: 1;
    width: min(calc(100% - 32px), 560px);
    max-width: none;
    margin: 0 auto;
    padding: 34px 0 28px;
  }

  .hero__content .eyebrow {
    max-width: 320px;
    margin-bottom: 14px;
    font-size: 11px;
    letter-spacing: 0.12em;
    line-height: 1.55;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(39px, 11vw, 48px);
    line-height: 1;
  }

  .hero__lead {
    max-width: 350px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 17px;
    line-height: 1.48;
  }

  .hero__actions {
    display: grid;
    gap: 10px;
    margin-top: 28px;
  }

  .hero__actions .button {
    width: min(100%, 360px);
    min-height: 54px;
  }

  .metric-ribbon {
    position: relative;
    z-index: 3;
    order: 2;
    width: min(calc(100% - 32px), 560px);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    margin: 0 auto 18px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
  }

  .metric-ribbon__item {
    min-height: 118px;
    padding: 18px;
    border: 0;
    background: rgba(21, 19, 19, 0.9);
  }

  .metric-ribbon__item strong {
    margin-bottom: 7px;
    font-size: 34px;
  }

  .metric-ribbon__item span {
    font-size: 13px;
  }

  .results::before {
    inset: 7% -22% auto;
    height: 160px;
    opacity: 0.22;
  }

  .process::before,
  .process::after {
    display: none;
  }

  .final-cta::before {
    opacity: 0.34;
  }

  .final-cta::after {
    background-size: 58px 58px;
    opacity: 0.14;
  }

  .hero__portrait-wrap {
    position: relative;
    z-index: 3;
    order: 3;
    inset: auto;
    width: min(calc(100% - 32px), 560px);
    height: 390px;
    margin: 0 auto 34px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero__portrait {
    object-position: 55% 26%;
  }

  .hero__note {
    display: block;
    right: 12px;
    bottom: 12px;
    width: min(230px, calc(100% - 24px));
    padding: 14px 16px;
  }

  .hero__note strong {
    font-size: 15px;
  }

  h2 {
    max-width: 100%;
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  .section-head,
  .section-head--split {
    margin-bottom: 28px;
  }

  .section-head--split p:not(.eyebrow) {
    font-size: 16px;
  }

  .intro__copy,
  .problems p {
    font-size: 16px;
  }

  .audience-grid,
  .results-grid,
  .service-grid {
    gap: 10px;
    border: 0;
    background: transparent;
  }

  .audience-card,
  .service-card,
  .result-card {
    padding: 22px;
    border: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.55);
  }

  .problem-list {
    gap: 8px;
  }

  .problem-list span {
    min-height: 48px;
    font-size: 14px;
  }

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

  .result-card strong {
    margin-bottom: 18px;
    font-size: 46px;
  }

  .offer-grid {
    gap: 12px;
  }

  .offer-card {
    padding: 22px;
    border-color: rgba(255, 255, 255, 0.16);
  }

  .offer-card h3 {
    font-size: 30px;
  }

  .expertise-columns > div {
    padding: 20px;
  }

  .process-grid {
    display: grid;
    gap: 10px;
    border-top: 0;
  }

  .process-step,
  .process-step:nth-child(2n) {
    padding: 22px;
    border: 1px solid var(--color-line);
    background: rgba(255, 255, 255, 0.45);
  }

  .process-step span {
    margin-bottom: 18px;
    font-size: 38px;
  }

  .authority__grid {
    gap: 30px;
    align-items: start;
  }

  .authority-list {
    gap: 8px;
  }

  .authority-list span {
    padding: 15px 16px;
  }

  .final-cta__inner {
    text-align: left;
  }

  .final-cta__inner p {
    margin-left: 0;
    font-size: 17px;
  }

  .final-cta__inner .hero__actions {
    justify-content: start;
  }

  .footer-grid {
    gap: 26px;
  }
}

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

  .hero__content {
    width: min(calc(100% - 28px), 560px);
    padding-top: 30px;
  }

  h1 {
    max-width: 330px;
    font-size: 38px;
  }

  .hero__lead {
    max-width: 330px;
    font-size: 16px;
  }

  .metric-ribbon {
    width: min(calc(100% - 28px), 560px);
  }

  .metric-ribbon__item {
    min-height: 106px;
    padding: 16px;
  }

  .metric-ribbon__item strong {
    font-size: 30px;
  }

  .hero__portrait-wrap {
    width: min(calc(100% - 28px), 560px);
    height: 330px;
    margin-bottom: 28px;
  }

  .hero__portrait {
    object-position: 55% 22%;
  }

  .hero__note {
    display: none;
  }

  h2 {
    max-width: 340px;
    font-size: 34px;
  }

  .section-head h2,
  .intro__grid h2,
  .problems__grid h2,
  .expertise__grid h2,
  .authority__grid h2 {
    max-width: 340px;
  }

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

  .footer-grid h2 {
    font-size: 34px;
  }
}
