/* ================================================================
   THRYVV.IO - calm authority WordPress homepage
   White base, coral + dark punctuation, soft shapes, human tone.
   ================================================================ */

:root {
  --c-coral: #FF5C46;
  --c-coral-deep: #E8472F;
  --c-coral-soft: #FFE8E2;
  --c-coral-pale: #FFF4F0;

  --c-ink: #0F1316;
  --c-ink-2: #1A2024;
  --c-graphite: #2A3338;
  --c-mid: #5B6770;
  --c-slate: #8A949C;
  --c-line: #ECE9E3;
  --c-line-2: #F2EFE9;

  --c-white: #FFFFFF;
  --c-paper: #FBFAF7;
  --c-cream: #F5F1E9;

  --c-mint: #C8E6CF;     /* friendly accent for "good news" */
  --c-amber: #F4B544;    /* DPN urgency */
  --c-amber-deep: #B26A12;

  --ff-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --ff-body: "Inter Tight", "Inter", system-ui, sans-serif;

  --fs-eyebrow: 0.74rem;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.2rem;
  --fs-h3: clamp(1.625rem, 1.3rem + 1.2vw, 2.25rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --fs-h1: clamp(2.75rem, 1.6rem + 5.5vw, 6rem);

  --tracking-tight: -0.028em;
  --tracking-snug: -0.014em;
  --tracking-caps: 0.14em;

  --gutter: clamp(20px, 4vw, 56px);
  --section-py: clamp(80px, 9vw, 140px);
  --container: 1280px;
  --container-narrow: 920px;

  --r-md: 14px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-blob: 40% 60% 60% 40% / 55% 45% 55% 45%;
  --r-pill: 999px;

  --ease: cubic-bezier(0.22, 0.7, 0.2, 1);
  --t-fast: 180ms;
  --t-base: 320ms;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-graphite);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: none; padding: 0; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  margin: 0;
  text-wrap: balance;
}
p { margin: 0; text-wrap: pretty; }

::selection { background: var(--c-coral); color: var(--c-white); }
:focus-visible { outline: 2px solid var(--c-coral); outline-offset: 3px; border-radius: 3px; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--section-py); }
.section--white { background: var(--c-white); }
.section--coral { background: var(--c-coral); color: var(--c-white); }
.section--dark { background: var(--c-ink); color: rgba(255,255,255,0.78); }

.section--coral h1, .section--coral h2, .section--coral h3, .section--coral h4 { color: var(--c-white); }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: var(--c-white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-body);
  font-size: var(--fs-eyebrow);
  font-weight: 500;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-coral);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 1px;
  background: currentColor;
}
.section--coral .eyebrow { color: rgba(255,255,255,0.85); }
.section--dark .eyebrow { color: var(--c-coral); }

/* ================================================================
   Buttons - pill, soft, friendly
   ================================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  line-height: 1;
  white-space: nowrap;
  border-radius: var(--r-pill);
  transition: transform var(--t-fast) var(--ease),
              background-color var(--t-fast) var(--ease),
              color var(--t-fast) var(--ease),
              border-color var(--t-fast) var(--ease),
              box-shadow var(--t-fast) var(--ease);
}
.btn .arrow { display: inline-block; transition: transform var(--t-base) var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

.btn--coral {
  background: var(--c-coral);
  color: var(--c-white);
  padding: 14px 22px;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 12px 24px -10px rgba(255, 92, 70, 0.55);
}
.btn--coral:hover { background: var(--c-coral-deep); transform: translateY(-1px); }

.btn--ink {
  background: var(--c-ink);
  color: var(--c-white);
  padding: 14px 22px;
}
.btn--ink:hover { background: var(--c-coral); }

.btn--white {
  background: var(--c-white);
  color: var(--c-ink);
  padding: 14px 22px;
}
.btn--white:hover { background: var(--c-ink); color: var(--c-white); }

.btn--ghost {
  color: var(--c-ink);
  background: transparent;
  border: 1px solid var(--c-ink);
  padding: 13px 21px;
}
.btn--ghost:hover { background: var(--c-ink); color: var(--c-white); }

.btn--link {
  padding: 6px 0;
  color: var(--c-ink);
  border-radius: 0;
  border-bottom: 1.5px solid var(--c-ink);
}
.btn--link:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }

.section--coral .btn--white:hover { background: var(--c-ink); color: var(--c-white); }
.section--coral .btn--link { color: var(--c-white); border-bottom-color: rgba(255,255,255,0.5); }
.section--coral .btn--link:hover { border-bottom-color: var(--c-white); color: var(--c-white); }
.section--dark .btn--ghost,
.shield .btn--ghost { color: var(--c-white); border-color: rgba(255,255,255,0.45); }
.section--dark .btn--ghost:hover,
.shield .btn--ghost:hover { background: var(--c-white); color: var(--c-ink); }
.section--dark .btn--link { color: var(--c-white); border-bottom-color: rgba(255,255,255,0.4); }

/* ================================================================
   DPN top banner
   ================================================================ */
.dpn-banner {
  background: var(--c-ink);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
}
.dpn-banner__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  padding: 10px var(--gutter);
  flex-wrap: wrap;
}
.dpn-banner__dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--c-amber);
  flex-shrink: 0;
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(244, 181, 68, 0.55); }
  60% { box-shadow: 0 0 0 8px rgba(244, 181, 68, 0); }
}
.dpn-banner__label { color: var(--c-white); font-weight: 600; }
.dpn-banner a {
  color: var(--c-amber);
  border-bottom: 1px solid rgba(244, 181, 68, 0.4);
  padding-bottom: 1px;
}
.dpn-banner a:hover { color: var(--c-white); border-bottom-color: var(--c-white); }

/* ================================================================
   Nav
   ================================================================ */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.85);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-base) var(--ease), background-color var(--t-base) var(--ease);
}
.nav.is-scrolled {
  background: rgba(255,255,255,0.94);
  border-bottom-color: var(--c-line);
}
.nav__inner {
  max-width: var(--container);
  margin-inline: auto;
  display: flex; align-items: center; gap: 32px;
  padding: 18px var(--gutter);
}
.nav__logo img { height: 22px; width: auto; }
.nav__links {
  display: none;
  list-style: none; margin: 0; padding: 0;
  gap: 28px;
}
.nav__links a {
  font-size: 0.95rem;
  color: var(--c-graphite);
  position: relative;
  padding: 6px 0;
  transition: color var(--t-fast) var(--ease);
}
.nav__links a:hover { color: var(--c-coral); }

.nav__phone {
  display: none;
  font-size: 0.9rem;
  color: var(--c-graphite);
  margin-left: auto;
  font-weight: 500;
}
.nav__phone:hover { color: var(--c-coral); }

.nav__cta { margin-left: auto; }
.nav__cta .btn { padding: 11px 18px; font-size: 0.875rem; }

.nav__burger {
  margin-left: auto;
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--c-ink);
  color: var(--c-white);
}
.nav__burger:hover { background: var(--c-coral); }
.nav__burger svg {
  display: none;
}
.nav__burger::before {
  content: "☰";
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__phone { display: inline-flex; align-items: center; }
  .nav__cta { margin-left: 0; }
  .nav__burger { display: none; }
}

/* mobile drawer */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-coral);
  color: var(--c-white);
  z-index: 100;
  display: flex; flex-direction: column;
  padding: 22px var(--gutter) 32px;
  transform: translateY(-100%);
  transition: transform 420ms var(--ease);
  visibility: hidden;
}
.mobile-menu.is-open { transform: translateY(0); visibility: visible; }
.mobile-menu__top {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu__top img { height: 22px; filter: brightness(0) invert(1); }
.mobile-menu__close {
  width: 40px; height: 40px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.15);
  color: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
}
.mobile-menu__nav {
  list-style: none; margin: 0; padding: 28px 0 0;
  display: flex; flex-direction: column;
}
.mobile-menu__nav a {
  display: block;
  font-family: var(--ff-display);
  font-size: clamp(1.875rem, 7vw, 2.75rem);
  color: var(--c-white);
  letter-spacing: var(--tracking-tight);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.mobile-menu__foot { margin-top: auto; display: flex; flex-direction: column; gap: 10px; }
.mobile-menu__foot .btn { justify-content: center; background: var(--c-ink); color: var(--c-white); }
.mobile-menu__phone { text-align: center; font-size: 0.92rem; color: rgba(255,255,255,0.85); }

/* ================================================================
   Hero - oversized type, soft blob shapes, asymmetric
   ================================================================ */
.hero {
  position: relative;
  padding-block: clamp(72px, 9vw, 144px) clamp(72px, 8vw, 120px);
  overflow: hidden;
  background: var(--c-white);
}

/* refined hero background: thin rule only */
.hero__rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: var(--c-line);
  pointer-events: none;
}
.hero__corner {
  position: absolute;
  top: 32px; right: var(--gutter);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-mid);
  font-weight: 500;
  display: none;
}
@media (min-width: 1024px) { .hero__corner { display: block; } }

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.76fr);
  gap: clamp(42px, 6vw, 92px);
  align-items: center;
}
.hero__copy {
  min-width: 0;
}
.hero__image-space {
  margin: 0;
  min-width: 0;
  justify-self: stretch;
}
.hero__image {
  display: block;
  width: 100%;
  min-height: clamp(360px, 38vw, 560px);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 52% center;
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: clamp(28px, 3vw, 44px);
  box-shadow: 0 28px 72px rgba(15, 19, 22, 0.12);
}
@media (max-width: 900px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
  .hero__image {
    min-height: clamp(260px, 58vw, 420px);
    aspect-ratio: 16 / 11;
    object-position: center center;
  }
}
/* Evidence transition - team imagery + numbers */
.evidence {
  background: var(--c-white);
  padding-block: clamp(72px, 8vw, 128px);
  border-top: 1px solid var(--c-line);
}
.evidence__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: stretch;
}
@media (min-width: 960px) {
  .evidence__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(56px, 6vw, 96px);
  }
}
.evidence__image {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}
@media (min-width: 960px) {
  }
.evidence__caption {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.35rem);
  line-height: 1.4;
  color: var(--c-graphite);
  max-width: 36ch;
  letter-spacing: -0.005em;
  padding-left: 16px;
  border-left: 2px solid var(--c-coral);
}
.evidence__numbers {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  min-width: 0;
}
.evidence__lede {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.125rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--c-ink);
  margin: 0;
  max-width: 22ch;
}
.evidence__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.evidence__row {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) 1fr;
  gap: clamp(20px, 3vw, 36px);
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--c-line);
}
.evidence__num {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 1.6rem + 1.6vw, 3rem);
  line-height: 1;
  color: var(--c-ink);
  letter-spacing: -0.025em;
  font-weight: 400;
}
.evidence__num em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.evidence__num .ph { color: var(--c-coral); font-style: italic; opacity: 0.85; font-size: 0.9em; }
.evidence__label {
  font-size: 0.95rem;
  color: var(--c-graphite);
  line-height: 1.5;
}
.hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-coral-pale);
  color: var(--c-coral);
  border: 1px solid var(--c-coral-soft);
  padding: 8px 16px 8px 12px;
  border-radius: var(--r-pill);
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 36px;
}
.hero__chip-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-coral);
}

.hero__h1 {
  font-size: clamp(2.75rem, 1.6rem + 4.2vw, 5.25rem);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.034em;
  color: var(--c-ink);
  max-width: 14ch;
  margin: 0;
}
.hero__h1 em {
  font-style: italic;
  color: var(--c-coral);
  font-weight: 400;
}
.hero__highlight {
  display: inline-block;
  background: var(--c-coral);
  color: var(--c-white);
  padding: 0 0.18em;
  border-radius: 8px;
  transform: rotate(-1deg);
}

.hero__sub {
  margin-top: 36px;
  max-width: 50ch;
  font-size: var(--fs-body-lg);
  color: var(--c-graphite);
  line-height: 1.5;
}
.hero__sub--punch {
  margin-top: 14px;
  font-weight: 700;
  color: var(--c-ink);
}

.hero__foot {
  margin-top: 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px 28px;
}
.hero__foot-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--c-mid);
}
.hero__foot-meta::before {
  content: "";
  display: inline-block;
  width: 4px; height: 4px;
  background: var(--c-coral);
  border-radius: 50%;
}

/* ================================================================
   Stats - coral chips on white, friendly + warm
   ================================================================ */
.stats {
  background: var(--c-white);
  padding-block: 0 var(--section-py);
}
.stats__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: var(--c-ink);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3vw, 36px);
}
@media (min-width: 700px) { .stats__grid { grid-template-columns: repeat(4, 1fr); gap: 8px; } }

.stat {
  background: rgba(255,255,255,0.04);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  border: 1px solid rgba(255,255,255,0.06);
  transition: background-color var(--t-fast) var(--ease);
}
.stat:hover { background: rgba(255,255,255,0.07); }
.stat__num {
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 1.5rem + 2vw, 3rem);
  font-weight: 400;
  line-height: 1;
  color: var(--c-white);
  letter-spacing: -0.025em;
}
.stat__num em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.stat__num .ph { color: var(--c-coral); font-style: italic; opacity: 0.8; font-size: 0.9em; }
.stat__label {
  margin-top: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.45;
}

/* ================================================================
   Confessional intro - big honest statement
   ================================================================ */
.confess {
  background: var(--c-white);
}
.confess__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 1024px) {
  .confess__grid { grid-template-columns: 7fr 5fr; gap: 80px; align-items: end; }
}
.confess__big {
  font-family: var(--ff-display);
  font-size: clamp(1.75rem, 1.1rem + 2.4vw, 2.875rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: var(--tracking-tight);
  color: var(--c-ink);
  max-width: 22ch;
}
.confess__big em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.confess__big .strike {
  text-decoration: line-through;
  text-decoration-color: var(--c-coral);
  text-decoration-thickness: 3px;
  color: var(--c-mid);
}
.confess__side {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 12px;
}
.confess__side p {
  font-size: 1.05rem;
  color: var(--c-graphite);
  line-height: 1.6;
  max-width: 42ch;
}

/* ================================================================
   Services - bento, mixed sizes, soft cards
   ================================================================ */
.services {
  background: var(--c-paper);
}
.services__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 56px;
  align-items: end;
}
@media (min-width: 800px) {
  .services__head { grid-template-columns: 5fr 5fr; gap: 56px; }
}
.services__h {
  font-size: var(--fs-h2);
  letter-spacing: var(--tracking-tight);
  margin-top: 24px;
  line-height: 1.04;
  max-width: 16ch;
}
.services__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.services__intro {
  font-size: var(--fs-body-lg);
  color: var(--c-graphite);
  line-height: 1.55;
  max-width: 50ch;
}

.bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 720px) {
  .bento { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
@media (min-width: 1080px) {
  .bento { grid-template-columns: repeat(4, 1fr); gap: 16px; }
}
.bento__referrers {
  margin-top: 16px;
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 800px) {
  .bento__referrers { grid-template-columns: 1fr auto; gap: 40px; }
}
.bento__referrers h3 {
  font-family: var(--ff-display);
  color: var(--c-white);
  font-size: clamp(1.25rem, 1rem + 0.6vw, 1.625rem);
  font-weight: 400;
  letter-spacing: var(--tracking-snug);
  line-height: 1.15;
  max-width: 28ch;
}
.bento__referrers p {
  color: rgba(255,255,255,0.72);
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.5;
  max-width: 56ch;
}
.bento__referrers .btn { white-space: nowrap; }

.tile {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  padding: 36px 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  overflow: hidden;
  min-height: 360px;
  transition: transform var(--t-fast) var(--ease), box-shadow var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.tile:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -22px rgba(15,19,22,0.22); border-color: var(--c-graphite); }
.tile__rule {
  width: 28px;
  height: 2px;
  background: var(--c-coral);
  margin-bottom: 4px;
  transition: width var(--t-base) var(--ease);
}
.tile:hover .tile__rule { width: 56px; }
.tile__num {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-coral);
}
.tile__h {
  font-family: var(--ff-display);
  font-size: clamp(1.5rem, 1.2rem + 0.6vw, 2rem);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.05;
  letter-spacing: var(--tracking-snug);
}
.tile__p {
  font-size: 0.98rem;
  color: var(--c-graphite);
  line-height: 1.55;
}
.tile__list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--c-line);
}
.tile__list li a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--c-graphite);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  border-radius: var(--r-pill);
  padding: 6px 12px;
  transition: all var(--t-fast) var(--ease);
}
.tile__list li a:hover {
  background: var(--c-ink);
  color: var(--c-white);
  border-color: var(--c-ink);
}

.tile__h { font-size: clamp(1.375rem, 1.15rem + 0.5vw, 1.625rem); }
.tile__p { font-size: 0.95rem; }
.services .tile__p { line-height: 1.5; }

/* ================================================================
   DPN - coral full-bleed punctuation
   ================================================================ */
.dpn {
  background: var(--c-coral);
  color: var(--c-white);
  position: relative;
  overflow: hidden;
}
.dpn::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 50%; height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.06) 100%);
  pointer-events: none;
}
.dpn__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.dpn__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
@media (min-width: 900px) {
  .dpn__grid { grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
}
.dpn__h {
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  max-width: 18ch;
}
.dpn__h em { font-style: italic; }
.dpn__p {
  margin-top: 24px;
  color: rgba(255,255,255,0.92);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  max-width: 50ch;
}
.dpn__actions {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.dpn__facts {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.dpn-fact {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--r-lg);
  padding: 20px 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: center;
}
.dpn-fact__key {
  font-family: var(--ff-display);
  font-size: 1.625rem;
  color: var(--c-white);
  font-weight: 400;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-style: italic;
}
.dpn-fact__val {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.92);
  line-height: 1.45;
}

/* ================================================================
   How it works - friendly cards in a row, soft
   ================================================================ */
.how {
  background: var(--c-white);
}
.how__head { margin-bottom: 64px; max-width: 36ch; }
.how__h {
  font-size: var(--fs-h2);
  letter-spacing: var(--tracking-tight);
  margin-top: 24px;
  line-height: 1.04;
}
.how__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }

.how__steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .how__steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.step {
  background: var(--c-paper);
  border-radius: var(--r-lg);
  padding: 32px 28px 28px;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform var(--t-fast) var(--ease), background-color var(--t-fast) var(--ease);
}
.step:hover { transform: translateY(-3px); background: var(--c-coral-pale); border-color: var(--c-coral-soft); }
.step__badge {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-ink);
  color: var(--c-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1.125rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.step:nth-child(2) .step__badge { background: var(--c-coral); }
.step:nth-child(3) .step__badge { background: var(--c-mint); color: var(--c-ink); }
.step__h {
  font-family: var(--ff-display);
  font-size: clamp(1.25rem, 1.1rem + 0.5vw, 1.5rem);
  color: var(--c-ink);
  letter-spacing: var(--tracking-snug);
  font-weight: 400;
  line-height: 1.1;
}
.step__p {
  font-size: 0.98rem;
  color: var(--c-graphite);
  line-height: 1.6;
}

.how__foot {
  margin-top: 48px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

/* ================================================================
   Quotes - overlapping cards, friendly
   ================================================================ */
.quotes {
  background: var(--c-paper);
}
.quotes__head {
  margin-bottom: 56px;
  max-width: 36ch;
}
.quotes__h {
  font-size: var(--fs-h2);
  margin-top: 24px;
  letter-spacing: var(--tracking-tight);
  line-height: 1.04;
}
.quotes__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }

.quotes__stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
@media (min-width: 1024px) {
  .quotes__stack { grid-template-columns: 1fr 1fr; gap: 32px; align-items: start; }
  .quote:nth-child(2) { margin-top: 56px; }
}

.quote {
  background: var(--c-white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 3vw, 40px);
  border: 1px solid var(--c-line);
  position: relative;
  transition: transform var(--t-base) var(--ease), box-shadow var(--t-base) var(--ease);
}
.quote:hover { transform: translateY(-3px); box-shadow: 0 18px 36px -20px rgba(15,19,22,0.16); }
.quote__mark {
  position: absolute;
  top: 14px; right: 24px;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 4.5rem;
  color: var(--c-coral);
  line-height: 1;
}
.quote__text {
  font-family: var(--ff-display);
  font-size: clamp(1.1875rem, 1rem + 0.5vw, 1.4rem);
  font-weight: 400;
  line-height: 1.4;
  color: var(--c-ink);
  letter-spacing: var(--tracking-snug);
  margin: 0;
  max-width: 42ch;
}
.quote__attr {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  display: flex;
  align-items: center;
  gap: 14px;
}
.quote__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--c-coral-pale);
  color: var(--c-coral);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  font-weight: 400;
}
.quote__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--c-ink);
}
.quote__role { display: block; font-size: 0.85rem; color: var(--c-mid); }

/* ================================================================
   DirectorShield - split, dark with coral details
   ================================================================ */
.shield {
  background: var(--c-ink);
  color: rgba(255,255,255,0.78);
  position: relative;
  overflow: hidden;
}
.shield__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.shield__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: start;
}
@media (min-width: 1024px) {
  .shield__grid { grid-template-columns: 5fr 5fr; gap: 80px; }
}
.shield__h {
  font-size: var(--fs-h2);
  font-weight: 400;
  color: var(--c-white);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  margin-top: 24px;
  max-width: 16ch;
}
.shield__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.shield__p {
  margin-top: 28px;
  font-size: var(--fs-body-lg);
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  max-width: 48ch;
}
.shield__cta {
  margin-top: 32px;
}

.shield__panel {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3vw, 32px);
}
.shield__panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
}
.shield__panel-head .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-transform: none;
  letter-spacing: 0;
  color: var(--c-mint);
  font-weight: 500;
  font-size: 0.85rem;
}
.shield__panel-head .badge::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-mint);
}
.shield__list {
  list-style: none;
  margin: 0; padding: 0;
}
.shield__row {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.shield__row:last-child { border-bottom: 0; padding-bottom: 0; }
.shield__row .label { flex: 1; }
.shield__row .badge {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 10px;
  border-radius: var(--r-pill);
}
.shield__row .badge--ok { background: rgba(200, 230, 207, 0.16); color: var(--c-mint); }
.shield__row .badge--coral { background: rgba(255, 92, 70, 0.16); color: var(--c-coral); }
.shield__row .badge--neutral { background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.7); }

/* ================================================================
   Final CTA - big, friendly, coral edges
   ================================================================ */
.final {
  background: var(--c-white);
}
.final__card {
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: var(--r-xl);
  padding: clamp(48px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.final__card::before {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, rgba(255,92,70,0.6), transparent);
  pointer-events: none;
}
.final__card::after {
  content: "thryvv";
  position: absolute;
  right: -1vw; bottom: -4vw;
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(12rem, 20vw, 22rem);
  color: rgba(255,92,70,0.07);
  letter-spacing: -0.05em;
  line-height: 0.8;
  pointer-events: none;
  user-select: none;
}
.final__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
@media (min-width: 900px) {
  .final__inner { grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: end; }
}
.final__h {
  font-size: clamp(2.25rem, 1.4rem + 3.5vw, 4.5rem);
  font-weight: 400;
  color: var(--c-white);
  line-height: 0.98;
  letter-spacing: -0.032em;
  max-width: 14ch;
}
.final__h em { font-style: italic; color: var(--c-coral); font-weight: 400; }
.final__col-r { display: flex; flex-direction: column; gap: 24px; padding-bottom: 8px; }
.final__p { color: rgba(255,255,255,0.8); font-size: var(--fs-body-lg); line-height: 1.55; max-width: 38ch; }
.final__actions { display: flex; flex-wrap: wrap; gap: 16px 24px; align-items: center; }
.final__phone { color: var(--c-white); font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.4); padding-bottom: 3px; }
.final__phone:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }

/* ================================================================
   Footer
   ================================================================ */
.footer {
  background: var(--c-ink);
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  padding-block: clamp(56px, 7vw, 88px) 32px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (min-width: 768px) {
  .footer__top { grid-template-columns: 1.4fr repeat(3, 1fr); gap: 64px; }
}
.footer__brand img { height: 22px; margin-bottom: 22px; }
.footer__tagline { color: rgba(255,255,255,0.7); max-width: 36ch; margin-bottom: 24px; line-height: 1.55; }
.footer__phone { display: inline-flex; align-items: center; gap: 8px; color: var(--c-white); font-weight: 500; }
.footer__phone:hover { color: var(--c-coral); }

.footer__col h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  font-weight: 600;
  margin-bottom: 18px;
}
.footer__col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { color: rgba(255,255,255,0.82); }
.footer__col a:hover { color: var(--c-coral); }

.footer__bottom { padding-top: 28px; display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 768px) { .footer__bottom { grid-template-columns: 1fr auto; align-items: center; gap: 28px; } }
.footer__legal { font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 60ch; }
.footer__legal a { color: rgba(255,255,255,0.7); border-bottom: 1px solid rgba(255,255,255,0.18); }
.footer__legal a:hover { color: var(--c-coral); border-bottom-color: var(--c-coral); }
.footer__social { display: flex; gap: 8px; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--t-fast) var(--ease);
}
.footer__social a:hover { background: var(--c-coral); color: var(--c-white); border-color: var(--c-coral); }

/* ================================================================
   Sticky mobile CTA
   ================================================================ */
.sticky-cta {
  position: fixed;
  bottom: 16px; left: 16px; right: 16px;
  z-index: 40;
  padding: 8px;
  background: var(--c-ink);
  border-radius: var(--r-pill);
  display: flex;
  gap: 8px;
  transform: translateY(150%);
  transition: transform 360ms var(--ease);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.4);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta .btn {
  flex: 1;
  justify-content: center;
  background: var(--c-coral);
  color: var(--c-white);
  padding: 12px 16px;
  font-size: 0.92rem;
}
.sticky-cta__call {
  min-width: 44px; height: 44px;
  padding-inline: 12px;
  border-radius: var(--r-pill);
  background: rgba(255,255,255,0.08);
  color: var(--c-white);
  display: inline-flex; align-items: center; justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 0.86rem;
  font-weight: 650;
  text-decoration: none;
}
.sticky-cta__call svg { flex-shrink: 0; }
@media (min-width: 1024px) { .sticky-cta { display: none !important; } }

/* ================================================================
   Reveal
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .dpn-banner__dot { animation: none; }
}

body.is-menu-open { overflow: hidden; }


/* WordPress adaptation overrides */
.admin-bar .nav { top: 32px; }
@media (max-width: 782px) { .admin-bar .nav { top: 46px; } }
.reveal { opacity: 1; transform: none; }
.reveal.is-in { opacity: 1; transform: none; }
@media (max-width: 760px) {
  :root { --section-py: 72px; }
  .hero { min-height: auto; padding-top: 86px; padding-bottom: 70px; }
  .hero__corner, .hero__rule { display: none; }
  .evidence, .section { padding-top: 72px; padding-bottom: 72px; }
  .dpn-banner__inner { line-height: 1.35; }
  .footer { padding-bottom: 94px; }
}

/* Brand tightening overrides */
.hero { min-height: auto; padding-top: clamp(92px, 11vw, 150px); padding-bottom: clamp(92px, 10vw, 150px); }
.evidence__visual-card {
  min-height: 440px;
  width: 100%;
  border: 1px solid rgba(15, 19, 22, 0.14);
  background:
    radial-gradient(circle at 24% 18%, rgba(232, 91, 74, 0.13), transparent 30%),
    linear-gradient(135deg, #fbfaf7 0%, #f1ede5 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 14px;
  padding: clamp(28px, 4vw, 46px);
  color: var(--c-ink);
}
.evidence__visual-card::before {
  content: none;
}
.visual-card__eyebrow {
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  color: var(--c-coral-deep);
  font-weight: 700;
}
.evidence__visual-card strong {
  max-width: 12ch;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(2rem, 2.8vw, 3.25rem);
  line-height: 1.02;
  letter-spacing: var(--tracking-tight);
}
.evidence__visual-card p { max-width: 34ch; margin: 0; color: var(--c-mid); }
.dpn { background: var(--c-ink); color: var(--c-white); }
.dpn::before { background: linear-gradient(135deg, transparent 0%, rgba(232,91,74,0.16) 100%); }
.dpn .eyebrow { color: var(--c-coral-soft); }
.dpn-fact { background: rgba(255,255,255,0.075); border-color: rgba(255,255,255,0.14); }
@media (max-width: 760px) { .evidence__visual-card { min-height: 320px; } }


/* Contact page alignment */
.thryvv-contact-page .contact-hero {
  padding-top: clamp(116px, 13vw, 170px);
  padding-bottom: clamp(76px, 8vw, 110px);
  background: var(--c-paper);
  border-bottom: 1px solid var(--c-line);
}
.contact-hero__inner { max-width: 900px; }
.contact-dpn-strip { background: var(--c-white); padding: 34px 0 0; }
.dpn-mini-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid rgba(232, 91, 74, 0.25);
  border-radius: var(--r-lg);
  background: var(--c-coral-pale);
}
.dpn-mini-card strong { display: block; color: var(--c-ink); font-size: 1.1rem; margin-bottom: 4px; }
.dpn-mini-card p { margin: 0; color: var(--c-mid); max-width: 66ch; }
.contact-section { background: var(--c-white); }
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 36px; align-items: start; }
@media (min-width: 980px) { .contact-grid { grid-template-columns: minmax(0, 1.15fr) 0.85fr; gap: 56px; } }
.contact-form, .expect-card {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  background: var(--c-paper);
  padding: clamp(24px, 4vw, 42px);
}
.form-heading h2, .expect-card h2 { font-size: clamp(2rem, 1.5rem + 2vw, 3.2rem); margin: 18px 0 10px; }
.form-heading p { margin: 0 0 28px; color: var(--c-mid); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 720px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid__full { grid-column: 1 / -1; }
.contact-form label { display: grid; gap: 8px; font-weight: 700; color: var(--c-ink); }
.contact-form label span { color: var(--c-coral-deep); }
.contact-form small { color: var(--c-mid); font-weight: 500; }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-white);
  color: var(--c-ink);
  padding: 14px 15px;
  font: inherit;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: 2px solid rgba(232,91,74,0.28); border-color: var(--c-coral); }
.contact-form button { margin-top: 24px; }
.form-status { margin: 18px 0 0; color: var(--c-coral-deep); font-weight: 700; }
.expect-card ol { list-style: none; margin: 22px 0 0; padding: 0; display: grid; gap: 18px; }
.expect-card li { border-top: 1px solid var(--c-line); padding-top: 18px; }
.expect-card strong { display: block; color: var(--c-ink); margin-bottom: 5px; }
.expect-card span { color: var(--c-mid); }
@media (max-width: 760px) {
  .dpn-mini-card { align-items: flex-start; flex-direction: column; }
  .thryvv-contact-page .contact-hero { padding-top: 98px; }
}




/* ================================================================
   Proof transition sequence — full-screen proof moments
   ================================================================ */
.proof-sequence {
  position: relative;
  background: #f7f1e8;
  border-top: 1px solid rgba(15, 19, 22, 0.09);
  border-bottom: 1px solid rgba(15, 19, 22, 0.09);
  overflow: clip;
}
.proof-sequence::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(15,19,22,0.028) 1px, transparent 1px) 0 0 / 42px 42px,
    linear-gradient(0deg, rgba(15,19,22,0.020) 1px, transparent 1px) 0 0 / 42px 42px,
    radial-gradient(circle at 12% 18%, rgba(232,91,74,0.09), transparent 30%),
    radial-gradient(circle at 88% 76%, rgba(232,91,74,0.07), transparent 28%);
}
.proof-panel {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  padding-block: clamp(56px, 7vw, 96px);
  isolation: isolate;
}
.proof-panel + .proof-panel {
  border-top: 1px solid rgba(15, 19, 22, 0.08);
}
.proof-panel__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
}
.proof-panel--reverse .proof-panel__inner {
  grid-template-columns: minmax(360px, 1.08fr) minmax(0, 0.92fr);
}
.proof-panel--reverse .proof-panel__copy { order: 2; }
.proof-panel--reverse .proof-panel__photo { order: 1; }
.proof-panel__copy {
  position: relative;
  min-width: 0;
}
.proof-panel__rule {
  width: min(320px, 56vw);
  height: 1px;
  background: linear-gradient(90deg, var(--c-coral) 0%, rgba(232,91,74,0.34) 54%, transparent 100%);
  transform-origin: left center;
  margin-bottom: clamp(22px, 3vw, 34px);
}
.proof-panel--reverse .proof-panel__rule {
  margin-left: auto;
  transform-origin: right center;
  background: linear-gradient(270deg, var(--c-coral) 0%, rgba(232,91,74,0.34) 54%, transparent 100%);
}
.proof-panel__number {
  font-family: var(--ff-display);
  font-size: clamp(6.4rem, 7vw + 4rem, 14rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: var(--c-ink);
  font-weight: 400;
  white-space: nowrap;
}
.proof-panel__line {
  max-width: 24ch;
  margin: clamp(22px, 3vw, 38px) 0 0;
  font-size: clamp(1.38rem, 0.9rem + 1.55vw, 2.65rem);
  line-height: 1.08;
  color: var(--c-graphite);
  letter-spacing: -0.025em;
}
.proof-panel--reverse .proof-panel__copy { text-align: right; }
.proof-panel--reverse .proof-panel__line { margin-left: auto; }
.proof-panel__photo {
  position: relative;
  min-height: clamp(420px, 58vh, 680px);
  border: 1px solid rgba(15, 19, 22, 0.13);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.38), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 30% 24%, rgba(232,91,74,0.13), transparent 30%),
    linear-gradient(135deg, #fcfaf5 0%, #eee5d8 48%, #ded2c3 100%);
  box-shadow:
    0 34px 90px rgba(48, 38, 30, 0.14),
    inset 0 0 0 18px rgba(255,255,255,0.16);
  overflow: hidden;
}
.proof-panel__photo::before {
  content: "";
  position: absolute;
  inset: 26px;
  border: 1px solid rgba(15, 19, 22, 0.08);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.025) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(0deg, rgba(15,19,22,0.02) 1px, transparent 1px) 0 0 / 28px 28px;
}
.proof-panel__photo::after {
  content: "";
  position: absolute;
  right: clamp(28px, 5vw, 64px);
  bottom: clamp(28px, 5vw, 64px);
  width: min(42%, 230px);
  height: min(30%, 170px);
  border: 1px solid rgba(15,19,22,0.10);
  background: rgba(255,255,255,0.34);
  box-shadow: -38px -30px 0 rgba(255,255,255,0.16), -74px -58px 0 rgba(255,255,255,0.10);
}
.proof-panel__photo span {
  position: absolute;
  left: clamp(24px, 4vw, 42px);
  top: clamp(24px, 4vw, 42px);
  z-index: 1;
  display: inline-flex;
  max-width: calc(100% - 48px);
  padding: 10px 13px;
  border: 1px solid rgba(15, 19, 22, 0.12);
  background: rgba(255,255,255,0.72);
  color: var(--c-mid);
  font-size: 0.72rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
}
.proof-panel--one .proof-panel__photo { transform: rotate(0.35deg); }
.proof-panel--two .proof-panel__photo {
  transform: rotate(-0.35deg);
  background:
    linear-gradient(65deg, rgba(255,255,255,0.34), rgba(255,255,255,0) 46%),
    radial-gradient(circle at 72% 18%, rgba(232,91,74,0.12), transparent 30%),
    linear-gradient(135deg, #f8f4ed 0%, #e9dfd0 54%, #dcd0c0 100%);
}
.proof-panel--three .proof-panel__photo {
  background:
    linear-gradient(100deg, rgba(255,255,255,0.36), rgba(255,255,255,0) 44%),
    radial-gradient(circle at 24% 78%, rgba(232,91,74,0.12), transparent 31%),
    linear-gradient(135deg, #fbf7ef 0%, #ebe1d4 48%, #d9cdbc 100%);
}
.proof-panel--three .proof-panel__rule::after {
  content: "";
  display: block;
  height: 3px;
  width: 58%;
  margin-top: 10px;
  background: var(--c-coral);
  border-radius: 999px;
  transform-origin: left center;
  opacity: 0.78;
}
.proof-panel:not(.is-in) .proof-panel__rule,
.proof-panel:not(.is-in) .proof-panel__number,
.proof-panel:not(.is-in) .proof-panel__line,
.proof-panel:not(.is-in) .proof-panel__photo {
  opacity: 0;
}
.proof-panel.is-in .proof-panel__rule {
  animation: proof-rule-draw 780ms var(--ease) both;
}
.proof-panel.is-in .proof-panel__number {
  animation: proof-number-rise 780ms var(--ease) 120ms both;
}
.proof-panel.is-in .proof-panel__line {
  animation: proof-line-appear 700ms var(--ease) 320ms both;
}
.proof-panel.is-in .proof-panel__photo {
  animation: proof-photo-place 900ms var(--ease) 180ms both;
}
.proof-panel--two.is-in .proof-panel__number { animation-name: proof-number-expand; }
.proof-panel--three.is-in .proof-panel__number { animation-duration: 1050ms; }
@keyframes proof-rule-draw {
  from { opacity: 0; transform: scaleX(0); }
  to { opacity: 1; transform: scaleX(1); }
}
@keyframes proof-number-rise {
  from { opacity: 0; transform: translateY(34px); filter: blur(3px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes proof-number-expand {
  from { opacity: 0; transform: scaleX(0.82) translateY(12px); transform-origin: center; filter: blur(2px); }
  to { opacity: 1; transform: scaleX(1) translateY(0); filter: blur(0); }
}
@keyframes proof-line-appear {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes proof-photo-place {
  from { opacity: 0; transform: translateY(22px) scale(0.965) rotate(-0.6deg); }
  to { opacity: 1; transform: translateY(0) scale(1) rotate(var(--proof-photo-rotate, 0deg)); }
}
.proof-panel--one { --proof-photo-rotate: 0.35deg; }
.proof-panel--two { --proof-photo-rotate: -0.35deg; }
.proof-panel--three { --proof-photo-rotate: 0deg; }
@media (min-width: 1024px) {
  .proof-panel {
    min-height: 100vh;
  }
  .proof-panel__inner {
    position: sticky;
    top: clamp(72px, 8vh, 96px);
  }
}
@media (max-width: 900px) {
  .proof-panel {
    min-height: 86vh;
    padding-block: 48px 58px;
  }
  .proof-panel__inner,
  .proof-panel--reverse .proof-panel__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .proof-panel--reverse .proof-panel__copy,
  .proof-panel--reverse .proof-panel__photo {
    order: initial;
  }
  .proof-panel__photo {
    order: 1;
    min-height: clamp(260px, 46vh, 430px);
  }
  .proof-panel__copy {
    order: 2;
  }
  .proof-panel--reverse .proof-panel__copy,
  .proof-panel--reverse .proof-panel__line {
    text-align: left;
    margin-left: 0;
  }
  .proof-panel--reverse .proof-panel__rule {
    margin-left: 0;
    transform-origin: left center;
    background: linear-gradient(90deg, var(--c-coral) 0%, rgba(232,91,74,0.34) 54%, transparent 100%);
  }
  .proof-panel__number {
    font-size: clamp(4.8rem, 22vw, 7.8rem);
  }
  .proof-panel__line {
    font-size: clamp(1.28rem, 5.5vw, 1.75rem);
  }
  .proof-panel__photo span {
    font-size: 0.63rem;
    line-height: 1.25;
  }
}
@media (prefers-reduced-motion: reduce) {
  .proof-panel:not(.is-in) .proof-panel__rule,
  .proof-panel:not(.is-in) .proof-panel__number,
  .proof-panel:not(.is-in) .proof-panel__line,
  .proof-panel:not(.is-in) .proof-panel__photo {
    opacity: 1;
  }
  .proof-panel.is-in .proof-panel__rule,
  .proof-panel.is-in .proof-panel__number,
  .proof-panel.is-in .proof-panel__line,
  .proof-panel.is-in .proof-panel__photo {
    animation: none;
  }
}

/* Proof sequence refinement — image placeholders as full-panel backgrounds */
.proof-panel {
  overflow: hidden;
  background: #efe5d7;
}
.proof-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(250,247,240,0.96) 0%, rgba(250,247,240,0.88) 34%, rgba(250,247,240,0.48) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel--reverse::after {
  background:
    linear-gradient(270deg, rgba(250,247,240,0.96) 0%, rgba(250,247,240,0.88) 34%, rgba(250,247,240,0.48) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel__inner {
  position: static;
  min-height: min(720px, calc(100vh - 150px));
  display: flex;
  align-items: center;
}
.proof-panel__copy {
  position: relative;
  z-index: 2;
  width: min(620px, 52vw);
  padding: clamp(28px, 5vw, 64px) 0;
}
.proof-panel--reverse .proof-panel__copy {
  margin-left: auto;
}
.proof-panel__photo {
  position: absolute;
  inset: clamp(24px, 3vw, 44px);
  z-index: 0;
  min-height: 0;
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: 0;
  box-shadow: 0 34px 90px rgba(48, 38, 30, 0.16);
  transform: none !important;
  background:
    linear-gradient(115deg, rgba(255,255,255,0.24), rgba(255,255,255,0) 38%),
    radial-gradient(circle at 72% 32%, rgba(232,91,74,0.14), transparent 34%),
    linear-gradient(135deg, #fbf7ee 0%, #eadfce 42%, #d2c3b0 100%);
}
.proof-panel--two .proof-panel__photo {
  background:
    linear-gradient(62deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 44%),
    radial-gradient(circle at 24% 22%, rgba(232,91,74,0.13), transparent 32%),
    linear-gradient(135deg, #f8f2e8 0%, #e7dccb 48%, #cfc0ad 100%);
}
.proof-panel--three .proof-panel__photo {
  background:
    linear-gradient(98deg, rgba(255,255,255,0.28), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 78% 72%, rgba(232,91,74,0.13), transparent 32%),
    linear-gradient(135deg, #faf5ea 0%, #e6dac8 48%, #cdbda9 100%);
}
.proof-panel__photo::before {
  inset: 0;
  border: 0;
  background:
    linear-gradient(90deg, rgba(15,19,22,0.035) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(15,19,22,0.028) 1px, transparent 1px) 0 0 / 46px 46px,
    repeating-linear-gradient(100deg, rgba(255,255,255,0.14) 0 1px, transparent 1px 14px);
  opacity: 0.85;
}
.proof-panel__photo::after {
  right: clamp(44px, 9vw, 150px);
  bottom: clamp(46px, 8vw, 120px);
  width: min(34vw, 430px);
  height: min(27vh, 260px);
  background: rgba(255,255,255,0.26);
  box-shadow:
    -58px -42px 0 rgba(255,255,255,0.16),
    -112px -82px 0 rgba(255,255,255,0.09);
}
.proof-panel--reverse .proof-panel__photo::after {
  right: auto;
  left: clamp(44px, 9vw, 150px);
  box-shadow:
    58px -42px 0 rgba(255,255,255,0.16),
    112px -82px 0 rgba(255,255,255,0.09);
}
.proof-panel__photo span {
  z-index: 2;
  left: auto;
  top: auto;
  right: clamp(30px, 5vw, 70px);
  bottom: clamp(28px, 4vw, 56px);
  background: rgba(255,255,255,0.64);
  color: rgba(15, 19, 22, 0.62);
  backdrop-filter: blur(6px);
}
.proof-panel--reverse .proof-panel__photo span {
  right: auto;
  left: clamp(30px, 5vw, 70px);
}
.proof-panel__number,
.proof-panel__line {
  text-shadow: 0 1px 0 rgba(255,255,255,0.42);
}
.proof-panel__rule {
  height: 2px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.38);
}
.proof-panel:not(.is-in) .proof-panel__photo {
  opacity: 0;
}
.proof-panel.is-in .proof-panel__photo {
  animation: proof-bg-place 1050ms var(--ease) 80ms both;
}
@keyframes proof-bg-place {
  from { opacity: 0; transform: scale(1.035); filter: blur(4px); }
  to { opacity: 1; transform: scale(1); filter: blur(0); }
}
@media (max-width: 900px) {
  .proof-panel {
    min-height: 92vh;
  }
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(250,247,240,0.22) 0%, rgba(250,247,240,0.50) 32%, rgba(250,247,240,0.96) 62%, rgba(250,247,240,0.98) 100%);
  }
  .proof-panel__inner {
    min-height: calc(92vh - 96px);
    display: flex;
    align-items: flex-end;
    width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  }
  .proof-panel__copy,
  .proof-panel--reverse .proof-panel__copy {
    width: 100%;
    margin-left: 0;
    padding: 0 0 clamp(30px, 7vh, 70px);
    text-align: left;
  }
  .proof-panel__photo {
    inset: 18px 18px auto 18px;
    height: min(54vh, 480px);
  }
  .proof-panel__photo::after {
    right: 28px;
    left: auto;
    bottom: 34px;
    width: 48%;
    height: 26%;
  }
  .proof-panel--reverse .proof-panel__photo::after {
    left: auto;
    right: 28px;
    box-shadow:
      -38px -28px 0 rgba(255,255,255,0.16),
      -74px -52px 0 rgba(255,255,255,0.09);
  }
  .proof-panel__photo span,
  .proof-panel--reverse .proof-panel__photo span {
    left: 22px;
    right: 22px;
    bottom: 22px;
    justify-content: center;
    text-align: center;
  }
}

/* Proof background readability pass */
.proof-panel::after {
  background:
    linear-gradient(90deg, rgba(250,247,240,0.995) 0%, rgba(250,247,240,0.96) 38%, rgba(250,247,240,0.66) 66%, rgba(250,247,240,0.22) 100%);
}
.proof-panel--reverse::after {
  background:
    linear-gradient(270deg, rgba(250,247,240,0.995) 0%, rgba(250,247,240,0.96) 38%, rgba(250,247,240,0.66) 66%, rgba(250,247,240,0.22) 100%);
}
.proof-panel__copy::before {
  content: "";
  position: absolute;
  inset: clamp(-18px, -2vw, -10px) clamp(-20px, -2.5vw, -12px);
  z-index: -1;
  background: radial-gradient(ellipse at center, rgba(250,247,240,0.72) 0%, rgba(250,247,240,0.38) 58%, transparent 78%);
  pointer-events: none;
}
.proof-panel__number {
  color: #111417;
  text-shadow: 0 2px 0 rgba(255,255,255,0.54), 0 20px 56px rgba(48,38,30,0.12);
}
.proof-panel__line {
  color: #25292c;
  text-shadow: 0 1px 0 rgba(255,255,255,0.62), 0 12px 34px rgba(48,38,30,0.10);
}
.proof-panel:not(.is-in) .proof-panel__rule,
.proof-panel:not(.is-in) .proof-panel__number,
.proof-panel:not(.is-in) .proof-panel__line,
.proof-panel:not(.is-in) .proof-panel__photo {
  opacity: 1;
}
@media (max-width: 900px) {
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(250,247,240,0.18) 0%, rgba(250,247,240,0.42) 30%, rgba(250,247,240,0.98) 58%, rgba(250,247,240,0.995) 100%);
  }
}

/* Keep proof copy legible throughout reveal, not just after animation completes */
.proof-panel.is-in .proof-panel__number {
  animation-duration: 560ms;
  animation-delay: 60ms;
}
.proof-panel.is-in .proof-panel__line {
  animation-duration: 520ms;
  animation-delay: 140ms;
}
@keyframes proof-number-rise {
  from { opacity: 0.58; transform: translateY(22px); filter: blur(1px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}
@keyframes proof-number-expand {
  from { opacity: 0.58; transform: scaleX(0.88) translateY(10px); transform-origin: center; filter: blur(1px); }
  to { opacity: 1; transform: scaleX(1) translateY(0); filter: blur(0); }
}
@keyframes proof-line-appear {
  from { opacity: 0.72; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Strong contrast layer for background-photo proof panels */
.proof-panel__copy::before {
  inset: clamp(-26px, -3vw, -16px) clamp(-28px, -3.5vw, -18px);
  background: linear-gradient(90deg, rgba(250,247,240,0.92) 0%, rgba(250,247,240,0.72) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel--reverse .proof-panel__copy::before {
  background: linear-gradient(270deg, rgba(250,247,240,0.92) 0%, rgba(250,247,240,0.72) 58%, rgba(250,247,240,0.18) 100%);
}
.proof-panel__number {
  color: #050607 !important;
  font-weight: 500;
  opacity: 1 !important;
}
.proof-panel__line {
  color: #111417 !important;
  font-weight: 520;
  opacity: 1 !important;
}
@media (max-width: 900px) {
  .proof-panel__copy::before,
  .proof-panel--reverse .proof-panel__copy::before {
    background: linear-gradient(180deg, rgba(250,247,240,0.08) 0%, rgba(250,247,240,0.92) 24%, rgba(250,247,240,0.98) 100%);
  }
}

/* Final background-photo treatment: warm readable editorial gradient */
.proof-panel::after {
  background:
    linear-gradient(90deg, rgba(27,22,18,0.82) 0%, rgba(27,22,18,0.66) 34%, rgba(27,22,18,0.22) 62%, rgba(27,22,18,0.04) 100%);
}
.proof-panel--reverse::after {
  background:
    linear-gradient(270deg, rgba(27,22,18,0.82) 0%, rgba(27,22,18,0.66) 34%, rgba(27,22,18,0.22) 62%, rgba(27,22,18,0.04) 100%);
}
.proof-panel__copy::before,
.proof-panel--reverse .proof-panel__copy::before {
  background: none;
}
.proof-panel__number {
  color: #fffaf0 !important;
  text-shadow: 0 8px 34px rgba(0,0,0,0.28);
}
.proof-panel__line {
  color: rgba(255,250,240,0.94) !important;
  text-shadow: 0 5px 22px rgba(0,0,0,0.24);
}
.proof-panel__rule {
  background: linear-gradient(90deg, #e85b4a 0%, rgba(232,91,74,0.66) 58%, rgba(255,250,240,0.10) 100%);
  box-shadow: none;
}
.proof-panel--reverse .proof-panel__rule {
  background: linear-gradient(270deg, #e85b4a 0%, rgba(232,91,74,0.66) 58%, rgba(255,250,240,0.10) 100%);
}
@media (max-width: 900px) {
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(27,22,18,0.04) 0%, rgba(27,22,18,0.12) 34%, rgba(27,22,18,0.74) 64%, rgba(27,22,18,0.86) 100%);
  }
}

/* Extra legibility for proof copy over photo backgrounds */
.proof-panel__number {
  -webkit-text-stroke: 1.2px rgba(255,250,240,0.98);
  paint-order: stroke fill;
  font-weight: 700;
}
.proof-panel__line {
  font-weight: 700;
  max-width: 25ch;
}

/* Definitive readable editorial text panel over background image */
.proof-panel__copy {
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(255,255,255,0.46);
  box-shadow: 0 28px 80px rgba(0,0,0,0.18);
  padding: clamp(30px, 4vw, 58px) !important;
  backdrop-filter: blur(8px);
}
.proof-panel__number {
  color: #08090a !important;
  -webkit-text-stroke: 0 !important;
  text-shadow: none !important;
}
.proof-panel__line {
  color: #151719 !important;
  text-shadow: none !important;
}
.proof-panel__rule {
  background: linear-gradient(90deg, #e85b4a 0%, rgba(232,91,74,0.55) 65%, transparent 100%);
}
.proof-panel--reverse .proof-panel__rule {
  background: linear-gradient(270deg, #e85b4a 0%, rgba(232,91,74,0.55) 65%, transparent 100%);
}
@media (max-width: 900px) {
  .proof-panel__copy,
  .proof-panel--reverse .proof-panel__copy {
    background: rgba(255, 250, 240, 0.94);
    padding: 24px !important;
    margin-bottom: 22px;
  }
}


/* Proof sequence transition pass — backgrounds move in/out between proof moments */
.proof-sequence {
  background: #efe6d9;
}
.proof-panel {
  --proof-bg-opacity: 1;
  --proof-bg-scale: 1.03;
  --proof-bg-y: 0px;
  --proof-copy-opacity: 1;
  --proof-copy-y: 0px;
  --proof-rule-scale: 1;
  min-height: 116vh;
}
@media (min-width: 1024px) {
  .proof-panel {
    min-height: 122vh;
    position: sticky;
    top: 0;
  }
  .proof-panel--one { z-index: 1; }
  .proof-panel--two { z-index: 2; }
  .proof-panel--three { z-index: 3; }
  .proof-panel__inner {
    min-height: 100vh;
  }
}
.proof-panel::after {
  opacity: calc(0.74 + (var(--proof-bg-opacity) * 0.26));
  transition: opacity 420ms var(--ease);
}
.proof-panel__photo {
  opacity: var(--proof-bg-opacity) !important;
  transform: translate3d(0, var(--proof-bg-y), 0) scale(var(--proof-bg-scale)) !important;
  filter: saturate(calc(0.82 + (var(--proof-bg-opacity) * 0.18))) contrast(calc(0.96 + (var(--proof-bg-opacity) * 0.06))) !important;
  transform-origin: center center;
  transition:
    opacity 720ms var(--ease),
    transform 900ms var(--ease),
    filter 900ms var(--ease);
  will-change: opacity, transform, filter;
}
.proof-panel__copy {
  opacity: var(--proof-copy-opacity);
  transform: translate3d(0, var(--proof-copy-y), 0);
  transition:
    opacity 520ms var(--ease),
    transform 650ms var(--ease),
    background-color 420ms var(--ease);
  will-change: opacity, transform;
}
.proof-panel__rule {
  transform: scaleX(var(--proof-rule-scale));
  transition: transform 650ms var(--ease), opacity 520ms var(--ease);
}
.proof-panel.is-transitioning-out .proof-panel__photo {
  filter: saturate(0.78) contrast(0.96) blur(1px) !important;
}
.proof-panel.is-transitioning-out .proof-panel__copy {
  opacity: max(0.34, var(--proof-copy-opacity));
}
.proof-panel.is-transitioning-in .proof-panel__photo {
  filter: saturate(1) contrast(1.02) blur(0) !important;
}
@media (max-width: 900px) {
  .proof-panel {
    min-height: 100vh;
  }
  .proof-panel__photo {
    transform: translate3d(0, calc(var(--proof-bg-y) * 0.45), 0) scale(var(--proof-bg-scale)) !important;
  }
  .proof-panel__copy {
    opacity: max(0.72, var(--proof-copy-opacity));
  }
}
@media (prefers-reduced-motion: reduce) {
  .proof-panel,
  .proof-panel__photo,
  .proof-panel__copy,
  .proof-panel__rule {
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
  }
}

/* Proof transition correction — keep transitions readable, avoid cropped sticky overlap */
@media (min-width: 1024px) {
  .proof-panel {
    position: relative !important;
    top: auto !important;
    min-height: 108vh;
  }
  .proof-panel__inner {
    min-height: min(760px, calc(100vh - 120px));
  }
}
.proof-panel__copy {
  opacity: max(0.86, var(--proof-copy-opacity));
}
.proof-panel__photo {
  opacity: max(0.48, var(--proof-bg-opacity)) !important;
}
.proof-panel.is-transitioning-out .proof-panel__copy {
  opacity: max(0.86, var(--proof-copy-opacity));
}
@media (max-width: 900px) {
  .proof-panel__copy,
  .proof-panel.is-transitioning-out .proof-panel__copy {
    opacity: max(0.92, var(--proof-copy-opacity));
  }
  .proof-panel__photo {
    opacity: max(0.58, var(--proof-bg-opacity)) !important;
  }
}

/* Proof transition readability polish — crisper copy panel during motion */
.proof-panel__copy,
.proof-panel--reverse .proof-panel__copy {
  background: rgba(255, 250, 240, 0.97) !important;
  border-color: rgba(255,255,255,0.72) !important;
  box-shadow: 0 28px 80px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.7) !important;
}
.proof-panel__number {
  color: #050607 !important;
}
.proof-panel__line {
  color: #0d1012 !important;
  font-weight: 650;
}

/* Proof mobile transition softness — lighter overlay while copy panel carries readability */
@media (max-width: 900px) {
  .proof-panel::after,
  .proof-panel--reverse::after {
    background:
      linear-gradient(180deg, rgba(27,22,18,0.02) 0%, rgba(27,22,18,0.06) 34%, rgba(27,22,18,0.42) 66%, rgba(27,22,18,0.54) 100%) !important;
  }
}

/* Director's Advocate transition sequence — contrast, explanation, proof */
.advocate-sequence {
  background: #f7f1e8;
  color: var(--c-ink);
}
.advocate-panel {
  min-height: 96vh;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(232, 91, 74, 0.08), transparent 28%),
    linear-gradient(135deg, #fffaf1 0%, #f3eadf 58%, #ebe0d2 100%);
}
.advocate-panel + .advocate-panel {
  border-top: 1px solid rgba(15,19,22,0.10);
}
.advocate-panel::after {
  display: none;
}
.advocate-panel__inner,
.proof-panel .advocate-panel__inner {
  position: relative !important;
  z-index: 2;
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  min-height: min(780px, calc(100vh - 120px));
  margin-inline: auto;
  display: flex;
  align-items: center;
}
.advocate-panel__inner--split {
  display: grid !important;
  grid-template-columns: minmax(360px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 7vw, 104px);
}
.advocate-contrast {
  max-width: 1040px;
}
.advocate-contrast__line,
.advocate-contrast__final {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(2.25rem, 4.7vw, 6.7rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  color: var(--c-ink);
}
.advocate-contrast__line--first {
  max-width: 16ch;
}
.advocate-contrast__line--can {
  margin-top: clamp(22px, 4vh, 48px);
  max-width: 12ch;
}
.advocate-contrast__final {
  margin-top: clamp(28px, 5vh, 64px);
  color: var(--c-coral-deep);
  font-style: italic;
}
.advocate-mark {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.advocate-mark--cant::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  top: 54%;
  height: 0.08em;
  background: rgba(232,91,74,0.72);
  transform: scaleX(0);
  transform-origin: left center;
}
.advocate-mark--can::after {
  content: "";
  position: absolute;
  left: -0.04em;
  right: -0.08em;
  bottom: 0.02em;
  height: 0.10em;
  border-radius: 999px;
  background: rgba(129, 166, 116, 0.56);
  transform: scaleX(0);
  transform-origin: left center;
}
.advocate-photo {
  position: relative;
  min-height: clamp(420px, 62vh, 720px);
  border: 1px solid rgba(15,19,22,0.12);
  background:
    linear-gradient(115deg, rgba(255,255,255,0.36), rgba(255,255,255,0) 42%),
    radial-gradient(circle at 72% 26%, rgba(232,91,74,0.12), transparent 32%),
    repeating-linear-gradient(95deg, rgba(15,19,22,0.025) 0 1px, transparent 1px 18px),
    linear-gradient(135deg, #fbf7ef 0%, #e7dccb 52%, #d3c3ae 100%);
  box-shadow: 0 34px 90px rgba(48,38,30,0.14), inset 0 0 0 18px rgba(255,255,255,0.14);
  overflow: hidden;
}
.advocate-photo::before {
  content: "";
  position: absolute;
  inset: clamp(28px, 5vw, 72px);
  border: 1px solid rgba(15,19,22,0.08);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.030) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(15,19,22,0.024) 1px, transparent 1px) 0 0 / 34px 34px;
}
.advocate-photo::after {
  content: "";
  position: absolute;
  right: clamp(34px, 5vw, 74px);
  bottom: clamp(34px, 5vw, 74px);
  width: min(42%, 260px);
  height: min(28%, 180px);
  background: rgba(255,255,255,0.26);
  border: 1px solid rgba(15,19,22,0.09);
  box-shadow: -46px -34px 0 rgba(255,255,255,0.14), -86px -66px 0 rgba(255,255,255,0.08);
}
.advocate-photo span {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 2;
  max-width: min(78%, 420px);
  padding: 10px 13px;
  background: rgba(255,255,255,0.68);
  border: 1px solid rgba(15,19,22,0.12);
  color: rgba(15,19,22,0.64);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
  backdrop-filter: blur(6px);
}
.advocate-explain {
  max-width: 720px;
}
.advocate-explain__main {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(1.9rem, 2.35vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: -0.036em;
  color: var(--c-ink);
}
.advocate-explain__punch {
  margin-top: clamp(26px, 4vw, 46px);
  max-width: 38ch;
  font-size: clamp(1.05rem, 1vw, 1.3rem);
  line-height: 1.45;
  color: var(--c-graphite);
  font-weight: 700;
}
.advocate-note {
  position: relative;
  display: inline-block;
  color: var(--c-coral-deep);
}
.advocate-note::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.02em;
  height: 0.08em;
  border-radius: 999px;
  background: rgba(232,91,74,0.22);
}
.advocate-proof-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 74px);
  align-items: end;
}
.advocate-proof-item {
  min-height: clamp(280px, 44vh, 470px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.6vw, 34px) 0 0;
  border-top: 2px solid rgba(232,91,74,0.72);
}
.advocate-proof-item__num {
  font-family: var(--ff-display);
  font-size: clamp(5.2rem, 10vw, 13rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: var(--c-ink);
  white-space: nowrap;
}
.advocate-proof-item p {
  margin: clamp(22px, 3vw, 36px) 0 0;
  max-width: 20ch;
  font-size: clamp(1.1rem, 1.55vw, 1.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-graphite);
}
.advocate-panel:not(.is-in) .advocate-contrast__line,
.advocate-panel:not(.is-in) .advocate-contrast__final,
.advocate-panel:not(.is-in) .advocate-photo,
.advocate-panel:not(.is-in) .advocate-explain__main,
.advocate-panel:not(.is-in) .advocate-explain__punch,
.advocate-panel:not(.is-in) .advocate-proof-item {
  opacity: 0;
}
.advocate-panel.is-in .advocate-contrast__line--first { animation: advocate-rise 620ms var(--ease) both; }
.advocate-panel.is-in .advocate-mark--cant::after { animation: advocate-draw 520ms var(--ease) 520ms both; }
.advocate-panel.is-in .advocate-contrast__line--can { animation: advocate-rise 620ms var(--ease) 780ms both; }
.advocate-panel.is-in .advocate-mark--can::after { animation: advocate-draw 520ms var(--ease) 1180ms both; }
.advocate-panel.is-in .advocate-contrast__final { animation: advocate-rise 700ms var(--ease) 1320ms both; }
.advocate-panel.is-in .advocate-photo { animation: advocate-photo-in 820ms var(--ease) 100ms both; }
.advocate-panel.is-in .advocate-explain__main { animation: advocate-rise 720ms var(--ease) 300ms both; }
.advocate-panel.is-in .advocate-explain__punch { animation: advocate-rise 620ms var(--ease) 760ms both; }
.advocate-panel.is-in .advocate-proof-item:nth-child(1) { animation: advocate-proof-in 620ms var(--ease) 80ms both; }
.advocate-panel.is-in .advocate-proof-item:nth-child(2) { animation: advocate-proof-in 620ms var(--ease) 300ms both; }
.advocate-panel.is-in .advocate-proof-item:nth-child(3) { animation: advocate-proof-in 620ms var(--ease) 520ms both; }
@keyframes advocate-rise {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes advocate-draw {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}
@keyframes advocate-photo-in {
  from { opacity: 0; transform: translateY(24px) scale(0.975); filter: blur(2px); }
  to { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}
@keyframes advocate-proof-in {
  from { opacity: 0; transform: translateY(26px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (min-width: 1024px) {
  .advocate-panel {
    min-height: 100vh;
  }
}
@media (max-width: 900px) {
  .advocate-panel {
    min-height: auto;
    padding-block: 72px;
  }
  .advocate-panel__inner,
  .proof-panel .advocate-panel__inner,
  .advocate-panel__inner--split {
    min-height: auto;
    display: flex !important;
    flex-direction: column;
    align-items: stretch;
    gap: 32px;
  }
  .advocate-contrast__line,
  .advocate-contrast__final {
    font-size: clamp(2.25rem, 11vw, 4.7rem);
  }
  .advocate-photo {
    min-height: 390px;
    order: 1;
  }
  .advocate-explain {
    order: 2;
  }
  .advocate-explain__main {
    font-size: clamp(1.65rem, 7.5vw, 2.55rem);
  }
  .advocate-proof-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .advocate-proof-item {
    min-height: auto;
    padding-top: 22px;
  }
  .advocate-proof-item__num {
    font-size: clamp(5.4rem, 23vw, 8.2rem);
  }
  .advocate-proof-item p {
    max-width: 24ch;
    font-size: clamp(1.25rem, 5.5vw, 1.75rem);
  }
}
@media (prefers-reduced-motion: reduce) {
  .advocate-panel:not(.is-in) .advocate-contrast__line,
  .advocate-panel:not(.is-in) .advocate-contrast__final,
  .advocate-panel:not(.is-in) .advocate-photo,
  .advocate-panel:not(.is-in) .advocate-explain__main,
  .advocate-panel:not(.is-in) .advocate-explain__punch,
  .advocate-panel:not(.is-in) .advocate-proof-item {
    opacity: 1;
  }
  .advocate-panel.is-in .advocate-contrast__line--first,
  .advocate-panel.is-in .advocate-contrast__line--can,
  .advocate-panel.is-in .advocate-contrast__final,
  .advocate-panel.is-in .advocate-photo,
  .advocate-panel.is-in .advocate-explain__main,
  .advocate-panel.is-in .advocate-explain__punch,
  .advocate-panel.is-in .advocate-proof-item {
    animation: none !important;
  }
  .advocate-mark--cant::after,
  .advocate-mark--can::after {
    transform: scaleX(1);
  }
}

/* Director's Advocate sequence polish — clearer pencil marks */
.advocate-mark--cant::after {
  left: -0.10em;
  right: -0.10em;
  top: 52%;
  height: 0.095em;
  transform: rotate(-1.2deg) scaleX(0);
}
.advocate-panel.is-in .advocate-mark--cant::after {
  animation-name: advocate-pencil-strike;
}
.advocate-mark--can::after {
  left: -0.08em;
  right: -0.14em;
  bottom: -0.025em;
  height: 0.125em;
  background: rgba(129, 166, 116, 0.70);
  transform: rotate(-1deg) scaleX(0);
}
.advocate-panel.is-in .advocate-mark--can::after {
  animation-name: advocate-pencil-underline;
}
@keyframes advocate-pencil-strike {
  from { transform: rotate(-1.2deg) scaleX(0); }
  to { transform: rotate(-1.2deg) scaleX(1); }
}
@keyframes advocate-pencil-underline {
  from { transform: rotate(-1deg) scaleX(0); }
  to { transform: rotate(-1deg) scaleX(1); }
}

/* Director's Advocate sequence polish — make the positive can mark unmissable */
.advocate-mark--can {
  background: linear-gradient(to top, rgba(129, 166, 116, 0.34) 0 0.18em, transparent 0.18em 100%);
  padding-inline: 0.02em;
}
.advocate-mark--can::after {
  bottom: 0.015em;
  height: 0.16em;
  background: rgba(129, 166, 116, 0.84);
  z-index: -1;
}

/* Single Director's Advocate bridge — replaces the previous three full-screen transition panels */
.advocate-bridge {
  position: relative;
  overflow: hidden;
  padding: clamp(86px, 11vw, 156px) var(--gutter) clamp(74px, 9vw, 128px);
  background:
    radial-gradient(circle at 84% 8%, rgba(232, 91, 74, 0.09), transparent 30%),
    linear-gradient(135deg, #fffaf2 0%, #f5ecdf 56%, #efe3d3 100%);
  color: var(--c-ink);
  border-top: 1px solid rgba(15, 19, 22, 0.08);
  border-bottom: 1px solid rgba(15, 19, 22, 0.08);
}
.advocate-bridge::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 44%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 0%, rgba(255,255,255,0.30) 100%);
}
.advocate-bridge__inner {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.82fr);
  gap: clamp(42px, 7vw, 104px);
  align-items: center;
}
.advocate-bridge__copy {
  max-width: 760px;
}
.advocate-bridge__eyebrow {
  color: var(--c-coral-deep);
}
.advocate-bridge__h {
  margin: 14px 0 clamp(28px, 4vw, 48px);
  font-family: var(--ff-display);
  font-size: clamp(3rem, 6vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: -0.065em;
  color: var(--c-ink);
  max-width: 8.6ch;
}
.advocate-bridge__contrast {
  display: grid;
  gap: clamp(14px, 2vw, 22px);
  max-width: 690px;
}
.advocate-bridge__contrast p {
  margin: 0;
  font-family: var(--ff-display);
  font-size: clamp(2rem, 3.2vw, 4.65rem);
  line-height: 1.02;
  letter-spacing: -0.048em;
  color: var(--c-ink);
}
.advocate-bridge__contrast p + p {
  color: var(--c-coral-deep);
}
.advocate-bridge__explain {
  margin: clamp(26px, 4vw, 46px) 0 0;
  max-width: 62ch;
  font-size: clamp(1.08rem, 1.28vw, 1.38rem);
  line-height: 1.58;
  color: var(--c-graphite);
  font-weight: 620;
}
.advocate-bridge__image {
  position: relative;
  min-height: clamp(390px, 43vw, 640px);
  margin: 0;
  border-radius: clamp(28px, 3vw, 46px);
  border: 1px solid rgba(15,19,22,0.12);
  background:
    linear-gradient(120deg, rgba(255,255,255,0.42), rgba(255,255,255,0) 40%),
    radial-gradient(circle at 76% 22%, rgba(232,91,74,0.12), transparent 30%),
    repeating-linear-gradient(95deg, rgba(15,19,22,0.026) 0 1px, transparent 1px 19px),
    linear-gradient(135deg, #fbf7ef 0%, #eadfcc 50%, #d8c7af 100%);
  box-shadow: 0 34px 86px rgba(48,38,30,0.13), inset 0 0 0 18px rgba(255,255,255,0.13);
  overflow: hidden;
}
.advocate-bridge__image::before {
  content: "";
  position: absolute;
  inset: clamp(30px, 5vw, 72px);
  border: 1px solid rgba(15,19,22,0.08);
  border-radius: clamp(18px, 2vw, 32px);
  background:
    linear-gradient(90deg, rgba(15,19,22,0.03) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(0deg, rgba(15,19,22,0.024) 1px, transparent 1px) 0 0 / 34px 34px;
}
.advocate-bridge__image::after {
  content: "";
  position: absolute;
  right: clamp(34px, 5vw, 74px);
  bottom: clamp(34px, 5vw, 74px);
  width: min(42%, 260px);
  height: min(28%, 180px);
  border-radius: 22px;
  background: rgba(255,255,255,0.27);
  border: 1px solid rgba(15,19,22,0.09);
  box-shadow: -46px -34px 0 rgba(255,255,255,0.14), -86px -66px 0 rgba(255,255,255,0.08);
}
.advocate-bridge__image span {
  position: absolute;
  left: clamp(24px, 4vw, 44px);
  bottom: clamp(24px, 4vw, 44px);
  z-index: 2;
  padding: 10px 13px;
  background: rgba(255,255,255,0.70);
  border: 1px solid rgba(15,19,22,0.12);
  color: rgba(15,19,22,0.64);
  font-size: 0.72rem;
  line-height: 1.25;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 760;
  backdrop-filter: blur(6px);
}
.advocate-proof-strip {
  position: relative;
  z-index: 1;
  width: min(var(--container), 100%);
  margin: clamp(54px, 7vw, 92px) auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 62px);
  border-top: 1px solid rgba(15,19,22,0.16);
  padding-top: clamp(24px, 3vw, 36px);
}
.advocate-proof-strip__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: end;
}
.advocate-proof-strip__item strong {
  font-family: var(--ff-display);
  font-size: clamp(3.6rem, 6vw, 8.4rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
  color: var(--c-ink);
  white-space: nowrap;
}
.advocate-proof-strip__item span {
  max-width: 18ch;
  font-size: clamp(0.98rem, 1.1vw, 1.22rem);
  line-height: 1.24;
  color: var(--c-graphite);
  font-weight: 650;
  padding-bottom: 0.36em;
}
.advocate-bridge .advocate-mark--cant::after,
.advocate-bridge .advocate-mark--can::after {
  transform: scaleX(1);
}
.advocate-bridge:not(.is-in) .advocate-bridge__copy,
.advocate-bridge:not(.is-in) .advocate-bridge__image,
.advocate-bridge:not(.is-in) .advocate-proof-strip__item {
  opacity: 0;
  transform: translateY(22px);
}
.advocate-bridge.is-in .advocate-bridge__copy {
  animation: advocate-rise 700ms var(--ease) both;
}
.advocate-bridge.is-in .advocate-bridge__image {
  animation: advocate-photo-in 820ms var(--ease) 120ms both;
}
.advocate-bridge.is-in .advocate-mark--cant::after {
  animation: advocate-pencil-strike 520ms var(--ease) 420ms both;
}
.advocate-bridge.is-in .advocate-mark--can::after {
  animation: advocate-pencil-underline 520ms var(--ease) 780ms both;
}
.advocate-bridge.is-in .advocate-proof-strip__item:nth-child(1) { animation: advocate-proof-in 580ms var(--ease) 280ms both; }
.advocate-bridge.is-in .advocate-proof-strip__item:nth-child(2) { animation: advocate-proof-in 580ms var(--ease) 440ms both; }
.advocate-bridge.is-in .advocate-proof-strip__item:nth-child(3) { animation: advocate-proof-in 580ms var(--ease) 600ms both; }
@media (max-width: 980px) {
  .advocate-bridge {
    padding-block: 76px 72px;
  }
  .advocate-bridge__inner {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .advocate-bridge__h {
    max-width: 10ch;
    font-size: clamp(3.05rem, 14vw, 5.15rem);
  }
  .advocate-bridge__contrast p {
    font-size: clamp(2.1rem, 8.8vw, 3.6rem);
  }
  .advocate-bridge__image {
    min-height: 360px;
  }
  .advocate-proof-strip {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .advocate-proof-strip__item {
    border-top: 1px solid rgba(15,19,22,0.12);
    padding-top: 22px;
  }
  .advocate-proof-strip__item:first-child {
    border-top: 0;
    padding-top: 0;
  }
  .advocate-proof-strip__item span {
    max-width: 25ch;
  }
}
@media (prefers-reduced-motion: reduce) {
  .advocate-bridge:not(.is-in) .advocate-bridge__copy,
  .advocate-bridge:not(.is-in) .advocate-bridge__image,
  .advocate-bridge:not(.is-in) .advocate-proof-strip__item {
    opacity: 1;
    transform: none;
  }
}
/* Advocate bridge visibility safeguard: content must remain readable if scroll reveal has not fired before capture. */
.advocate-bridge:not(.is-in) .advocate-bridge__copy,
.advocate-bridge:not(.is-in) .advocate-bridge__image,
.advocate-bridge:not(.is-in) .advocate-proof-strip__item {
  opacity: 1;
  transform: none;
}

/* Sticky CTA safety: when hidden by JS, keep it out of screenshots and interaction flow. */
.sticky-cta:not(.is-visible) {
  visibility: hidden;
  pointer-events: none;
}
.sticky-cta.is-visible {
  visibility: visible;
  pointer-events: auto;
}

/* Who We Are trust-section refinement — remove second-hero heading, use real landscape team image */
.advocate-bridge {
  padding-block: clamp(76px, 9vw, 126px) clamp(66px, 7vw, 104px);
}
.advocate-bridge__inner {
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1fr);
  gap: clamp(36px, 5.5vw, 82px);
  align-items: center;
}
.advocate-bridge__copy {
  max-width: 820px;
}
.advocate-bridge__h {
  display: none;
}
.advocate-bridge__statement {
  margin: clamp(16px, 2vw, 24px) 0 0;
  display: grid;
  gap: clamp(13px, 1.8vw, 22px);
  font-family: var(--ff-display);
  font-size: clamp(2.35rem, 4.15vw, 5.95rem);
  line-height: 1.01;
  letter-spacing: -0.052em;
  color: var(--c-ink);
  max-width: 13.6ch;
  font-weight: 700;
}
.advocate-bridge__statement > span {
  display: block;
}
.advocate-bridge__statement-red {
  color: var(--c-coral-deep);
}
.advocate-bridge__explain {
  margin-top: clamp(22px, 3vw, 36px);
  max-width: 49ch;
  font-size: clamp(1.06rem, 1.16vw, 1.24rem);
  line-height: 1.54;
  font-weight: 620;
}
.advocate-bridge__image--photo {
  min-height: 0;
  aspect-ratio: 4 / 3;
  border-radius: clamp(24px, 2.4vw, 38px);
  background: #efe3d3;
  box-shadow: 0 28px 74px rgba(48,38,30,0.13);
  overflow: hidden;
}
.advocate-bridge__image--photo::before,
.advocate-bridge__image--photo::after {
  display: none;
}
.advocate-bridge__photo {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: 50% 50%;
}
.advocate-bridge__image--photo span {
  display: none;
}
.advocate-bridge .advocate-mark--cant::after {
  transform: rotate(-1.2deg) scaleX(1);
}
.advocate-bridge .advocate-mark--can {
  background: linear-gradient(to top, rgba(129, 166, 116, 0.34) 0 0.18em, transparent 0.18em 100%);
}
.advocate-bridge .advocate-mark--can::after {
  transform: rotate(-1deg) scaleX(1);
}
@media (max-width: 980px) {
  .advocate-bridge {
    padding-block: 70px 66px;
  }
  .advocate-bridge__inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .advocate-bridge__statement {
    max-width: 12.4ch;
    font-size: clamp(2.45rem, 10.2vw, 4.1rem);
  }
  .advocate-bridge__image--photo {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
  .advocate-bridge__photo {
    object-position: 50% 50%;
  }
}
@media (max-width: 520px) {
  .advocate-bridge__statement {
    max-width: 11.6ch;
  }
  .advocate-proof-strip {
    margin-top: 42px;
  }
}
/* Who We Are working-moment refinement — quieter text scale and tighter advisory image crop */
.advocate-bridge {
  padding-block: clamp(64px, 7.5vw, 104px) clamp(58px, 6.5vw, 92px);
}
.advocate-bridge__inner {
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1.05fr);
  gap: clamp(34px, 5vw, 76px);
}
.advocate-bridge__statement {
  font-size: clamp(1.55rem, 2.58vw, 3.65rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
  max-width: 16.2ch;
  gap: clamp(10px, 1.4vw, 17px);
}
.advocate-bridge__statement-red {
  font-size: 0.84em;
  line-height: 1.12;
  letter-spacing: -0.035em;
}
.advocate-bridge__explain {
  margin-top: clamp(18px, 2.4vw, 30px);
  max-width: 47ch;
  font-size: clamp(1rem, 1.04vw, 1.14rem);
  line-height: 1.56;
}
.advocate-bridge__image--photo {
  aspect-ratio: 3 / 2;
  border-radius: clamp(22px, 2.2vw, 34px);
  box-shadow: 0 24px 62px rgba(48,38,30,0.12);
}
.advocate-bridge__photo {
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: 35% 60%;
}
.advocate-bridge .advocate-mark--cant::after {
  top: 54%;
  height: 0.055em;
  background: rgba(232, 91, 74, 0.45);
  transform: rotate(-0.8deg) scaleX(1);
}
.advocate-bridge .advocate-mark--can {
  background: linear-gradient(to top, rgba(129, 166, 116, 0.20) 0 0.15em, transparent 0.15em 100%);
}
.advocate-bridge .advocate-mark--can::after {
  height: 0.065em;
  bottom: 0.01em;
  background: rgba(129, 166, 116, 0.38);
  transform: rotate(-0.6deg) scaleX(1);
}
.advocate-proof-strip {
  margin-top: clamp(38px, 5vw, 70px);
}
.advocate-proof-strip__item strong {
  font-size: clamp(3rem, 4.8vw, 6.6rem);
}
.advocate-proof-strip__item span {
  font-size: clamp(0.94rem, 1vw, 1.12rem);
}
@media (max-width: 980px) {
  .advocate-bridge__statement {
    font-size: clamp(2rem, 8vw, 3.25rem);
    max-width: 13.4ch;
  }
  .advocate-bridge__statement-red {
    font-size: 0.86em;
  }
  .advocate-bridge__image--photo,
  .advocate-bridge__photo {
    aspect-ratio: 3 / 2;
  }
  .advocate-bridge__photo {
    object-position: 35% 60%;
  }
}
/* Who We Are mobile layout fix: keep advisory image stacked below readable copy. */
@media (max-width: 980px) {
  .advocate-bridge__inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    width: min(var(--container), 100%) !important;
  }
  .advocate-bridge__copy {
    width: 100%;
    max-width: 100%;
  }
  .advocate-bridge__statement {
    width: 100%;
    max-width: 14.5ch;
  }
  .advocate-bridge__explain {
    width: 100%;
    max-width: 34ch;
  }
  .advocate-bridge__image--photo {
    width: 100%;
    max-width: 100%;
    justify-self: stretch;
  }
}

/* UI/UX polish pass — 21st.dev/Open Design inspired component clarity. */
.nav__links a,
.nav__phone,
.mobile-menu__nav a {
  text-decoration: none;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--c-coral);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast) var(--ease);
}
.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}
.nav__links a:focus-visible,
.nav__phone:focus-visible,
.btn:focus-visible,
.tile__primary:focus-visible,
.tile__list a:focus-visible {
  outline: 3px solid rgba(232, 91, 74, 0.34);
  outline-offset: 4px;
}
.nav__burger {
  background: rgba(15, 19, 22, 0.08);
  color: var(--c-ink);
}
.nav__burger::before { color: currentColor; }
.nav__burger:hover { color: var(--c-white); }
.hero__foot-meta {
  flex-basis: 100%;
  color: var(--c-graphite);
  font-weight: 650;
}
.tile__kicker {
  margin-top: -6px;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--c-graphite);
  font-weight: 760;
}
.tile__primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: auto;
  color: var(--c-ink);
  font-weight: 760;
  font-size: 0.94rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 19, 22, 0.28);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.tile__primary:hover {
  color: var(--c-coral);
  border-bottom-color: var(--c-coral);
  transform: translateX(2px);
}
.tile__list { margin-top: auto; }
.services__uncertain {
  margin-top: 18px;
  background: linear-gradient(135deg, #fff 0%, #fbf4ef 100%);
  border: 1px solid rgba(232, 91, 74, 0.20);
  border-radius: var(--r-lg);
  padding: clamp(26px, 3vw, 40px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: center;
}
@media (min-width: 820px) {
  .services__uncertain { grid-template-columns: 1fr auto; gap: 36px; }
}
.services__uncertain-label,
.bento__referrers-label {
  display: inline-block;
  color: var(--c-coral);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.services__uncertain h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.45rem, 1.1rem + 0.9vw, 2rem);
  line-height: 1.08;
  max-width: 24ch;
  color: var(--c-ink);
}
.services__uncertain p {
  margin-top: 10px;
  max-width: 58ch;
  color: var(--c-graphite);
  line-height: 1.55;
}
.services__uncertain-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
}
.bento__referrers-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
}
.bento__referrers-list li {
  color: rgba(255,255,255,0.82);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.07);
  border-radius: var(--r-pill);
  padding: 7px 11px;
  font-size: 0.82rem;
  line-height: 1.25;
}
@media (max-width: 760px) {
  .hero { padding-top: 54px; padding-bottom: 62px; }
  .hero__chip { margin-bottom: 24px; line-height: 1.35; padding: 9px 14px; }
  .hero__foot { margin-top: 34px; gap: 16px; }
  .hero__foot .btn--coral { width: 100%; justify-content: center; }
  .hero__foot-meta { font-size: 0.82rem; line-height: 1.45; }
  .advocate-bridge__statement { line-height: 1.04; }
  .advocate-proof-strip {
    border-top: 0;
    gap: 14px;
  }
  .advocate-proof-strip__item {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 8px;
    border: 1px solid rgba(15,19,22,0.12) !important;
    border-radius: 18px;
    padding: 18px !important;
    background: rgba(255,255,255,0.50);
  }
  .advocate-proof-strip__item strong { font-size: clamp(2.65rem, 16vw, 4.2rem); letter-spacing: -0.055em; }
  .advocate-proof-strip__item span { max-width: 28ch; padding-bottom: 0; line-height: 1.35; }
  .tile { min-height: 0; padding: 30px 24px 24px; }
  .tile__h { line-height: 1.12; }
  .services__uncertain-actions .btn { width: 100%; justify-content: center; }
  .bento__referrers .btn { width: 100%; justify-content: center; }
}
/* UI/UX polish QA fixes: readable Who We Are display type + safe sticky-nav anchors. */
#services,
#advocate,
#dpn,
#proof,
#book {
  scroll-margin-top: 96px;
}
.advocate-bridge__statement {
  line-height: 1.08;
  letter-spacing: -0.035em;
  max-width: 15.2ch;
}
@media (max-width: 760px) {
  #services,
  #advocate,
  #dpn,
  #proof,
  #book {
    scroll-margin-top: 82px;
  }
  .advocate-bridge__statement {
    font-size: clamp(1.82rem, 7.1vw, 2.72rem);
    line-height: 1.14;
    letter-spacing: -0.018em;
    max-width: 15.5ch;
  }
  .advocate-bridge__statement-red {
    font-size: 0.88em;
    line-height: 1.16;
  }
}
/* Buyer-led testimonial update: feature the emotional proof, keep referrer proof secondary. */
.quotes__stack--featured {
  align-items: stretch;
}
@media (min-width: 1024px) {
  .quotes__stack--featured {
    grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  }
  .quotes__stack--featured .quote:nth-child(2) {
    margin-top: clamp(46px, 5vw, 88px);
  }
}
.quote--featured {
  border-color: rgba(232, 91, 74, 0.22);
  background:
    radial-gradient(circle at 94% 8%, rgba(232, 91, 74, 0.10), transparent 26%),
    var(--c-white);
  box-shadow: 0 22px 52px -34px rgba(15,19,22,0.28);
}
.quote--featured .quote__text {
  font-size: clamp(1.36rem, 1.08rem + 1vw, 2rem);
  line-height: 1.34;
  max-width: 48ch;
}
.quote--featured .quote__avatar {
  background: var(--c-coral);
  color: var(--c-white);
}
.quote--secondary {
  background: rgba(255,255,255,0.72);
}
.quote--secondary .quote__text {
  font-size: clamp(1.05rem, 0.96rem + 0.35vw, 1.22rem);
  line-height: 1.45;
}
.quote--secondary .quote__mark {
  opacity: 0.55;
}
@media (max-width: 760px) {
  .quotes__head {
    margin-bottom: 34px;
  }
  .quote--featured .quote__text {
    font-size: clamp(1.22rem, 5.7vw, 1.52rem);
    line-height: 1.38;
  }
  .quote__mark {
    font-size: 3.4rem;
    right: 18px;
  }
}
/* QA refinement for buyer-led testimonial section: tighter hierarchy and sticky CTA clearance. */
@media (min-width: 1024px) {
  .quotes__stack--featured {
    grid-template-columns: minmax(0, 1.14fr) minmax(340px, 0.86fr);
    align-items: start;
  }
  .quotes__stack--featured .quote:nth-child(2) {
    margin-top: 18px;
  }
}
.quote--featured .quote__text {
  font-size: clamp(1.24rem, 1.02rem + 0.66vw, 1.64rem);
  line-height: 1.43;
  letter-spacing: -0.012em;
}
.quote--secondary .quote__text {
  font-size: clamp(1.04rem, 0.98rem + 0.18vw, 1.14rem);
  line-height: 1.55;
  letter-spacing: -0.006em;
}
@media (max-width: 760px) {
  .quotes {
    padding-bottom: 132px;
  }
  .quote--featured .quote__text {
    font-size: clamp(1.08rem, 4.75vw, 1.28rem);
    line-height: 1.48;
    letter-spacing: -0.006em;
  }
  .quote--featured {
    padding-bottom: 30px;
  }
}
/* Mobile sticky CTA clearance after testimonial cards. */
@media (max-width: 760px) {
  .quotes {
    padding-bottom: 230px;
  }
}
/* Alix-only testimonial layout: feature card sits beside the section heading. */
.quotes__feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}
.quotes__feature-row .quotes__head {
  margin-bottom: 0;
  max-width: 37ch;
}
.quotes__feature-row .quote--featured {
  max-width: 760px;
  justify-self: stretch;
}
@media (min-width: 1024px) {
  .quotes__feature-row {
    grid-template-columns: minmax(0, 0.9fr) minmax(560px, 1.1fr);
  }
  .quotes__feature-row .quote--featured {
    justify-self: end;
  }
}
@media (max-width: 760px) {
  .quotes__feature-row {
    gap: 26px;
  }
}
/* Mobile sticky CTA clearance for sections following testimonials. */
@media (max-width: 760px) {
  .shield {
    padding-bottom: calc(var(--section-py) + 110px);
  }
}

/* Services density refinement: quieter service details + one compact next-step rail. */
@media (min-width: 1080px) {
  .tile {
    min-height: 318px;
  }
  .tile__list {
    max-height: 0;
    opacity: 0;
    transform: translateY(8px);
    overflow: hidden;
    padding-top: 0;
    border-top-color: transparent;
    transition: max-height 360ms var(--ease), opacity 260ms var(--ease), transform 260ms var(--ease), padding-top 260ms var(--ease), border-color 260ms var(--ease);
  }
  .tile:hover .tile__list,
  .tile:focus-within .tile__list {
    max-height: 120px;
    opacity: 1;
    transform: translateY(0);
    padding-top: 14px;
    border-top-color: var(--c-line);
  }
}
.services__next-step {
  margin-top: clamp(16px, 2vw, 24px);
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15, 19, 22, 0.10);
  border-radius: clamp(22px, 2vw, 30px);
  padding: clamp(20px, 2.4vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: center;
  box-shadow: 0 18px 48px rgba(15, 19, 22, 0.045);
}
@media (min-width: 860px) {
  .services__next-step {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
  }
}
.services__next-copy h3 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.32rem, 1.05rem + 0.65vw, 1.8rem);
  line-height: 1.06;
  letter-spacing: var(--tracking-snug);
  color: var(--c-ink);
  margin: 0;
}
.services__next-copy p {
  margin: 7px 0 0;
  max-width: 42ch;
  color: var(--c-graphite);
  line-height: 1.45;
}
.services__next-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 860px) {
  .services__next-actions { justify-content: flex-end; }
}
.services__referral-link {
  color: var(--c-graphite);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid rgba(15, 19, 22, 0.22);
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.services__referral-link:hover,
.services__referral-link:focus-visible {
  color: var(--c-coral);
  border-bottom-color: var(--c-coral);
}
@media (max-width: 760px) {
  .services__next-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .services__referral-link {
    width: 100%;
    text-align: center;
    border-bottom: 0;
  }
}

/* ================================================================
   Thryvv commercial gap positioning page
   ================================================================ */
.thryvv-commercial-page {
  background: #F6F0E7;
  color: var(--c-graphite);
}
.thryvv-commercial-page .nav {
  background: rgba(246, 240, 231, 0.88);
  border-bottom-color: rgba(15, 19, 22, 0.08);
}
.thryvv-commercial-page .screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.commercial-hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  padding: clamp(128px, 13vw, 190px) 0 clamp(76px, 9vw, 120px);
  position: relative;
  overflow: hidden;
}
.commercial-hero::before {
  content: "";
  position: absolute;
  inset: 10% -18% auto auto;
  width: clamp(360px, 48vw, 720px);
  height: clamp(360px, 48vw, 720px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232,91,74,0.17), rgba(232,91,74,0) 66%);
  pointer-events: none;
}
.commercial-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.58fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: end;
  position: relative;
  z-index: 1;
}
.commercial-hero h1 {
  max-width: 920px;
  font-size: clamp(3.15rem, 1.7rem + 6vw, 7.25rem);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin-top: 22px;
}
.commercial-hero__lead {
  max-width: 770px;
  margin-top: clamp(26px, 3vw, 38px);
  font-size: clamp(1.22rem, 1.05rem + 0.7vw, 1.66rem);
  line-height: 1.42;
  color: var(--c-ink-2);
}
.commercial-hero__sub {
  max-width: 680px;
  margin-top: 16px;
  font-size: 1.08rem;
  color: var(--c-mid);
}
.commercial-hero__actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 34px;
}
.commercial-hero__panel {
  border: 1px solid rgba(15, 19, 22, 0.13);
  background: rgba(255,255,255,0.56);
  border-radius: 34px;
  padding: clamp(26px, 4vw, 42px);
  box-shadow: 0 34px 80px -58px rgba(15,19,22,0.48);
  backdrop-filter: blur(12px);
}
.commercial-hero__panel p,
.commercial-hero__panel strong {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid rgba(15,19,22,0.1);
  font-size: clamp(1.05rem, 0.98rem + 0.3vw, 1.28rem);
  line-height: 1.25;
  color: var(--c-ink);
}
.commercial-hero__panel strong {
  border-bottom: 0;
  padding-bottom: 0;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.45rem + 1.8vw, 3rem);
  letter-spacing: -0.035em;
  color: var(--c-coral-deep);
}
.adviser-lanes {
  background: var(--c-ink);
  color: rgba(255,255,255,0.8);
  padding: clamp(88px, 10vw, 154px) 0;
}
.adviser-lanes .eyebrow {
  color: var(--c-coral);
  margin-bottom: 34px;
}
.lane-sequence {
  font-family: var(--ff-display);
  font-size: clamp(2.1rem, 1.15rem + 4.25vw, 5.4rem);
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: var(--c-white);
}
.lane-sequence p {
  padding: clamp(12px, 1.7vw, 22px) 0;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.lane-sequence p:first-child { border-top: 0; }
.lane-sequence__pause {
  margin-top: clamp(28px, 5vw, 64px);
  color: rgba(255,255,255,0.58);
}
.lane-sequence .lane-sequence__turn {
  color: #F8D6CE;
}
.lane-sequence .lane-sequence__answer {
  max-width: 1000px;
  color: var(--c-coral);
}
.gap-section,
.thryvv-does,
.matters-section {
  background: var(--c-paper);
}
.gap-section__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}
.gap-section h2,
.thryvv-does__head h2,
.matters-section__head h2,
.commercial-close h2 {
  font-size: clamp(2.25rem, 1.35rem + 3.45vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.gap-section__copy {
  display: grid;
  gap: 22px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  color: var(--c-graphite);
}
.gap-section__copy p {
  border-left: 2px solid rgba(232,91,74,0.35);
  padding-left: 24px;
}
.thryvv-does__head {
  max-width: 930px;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.thryvv-does__head p {
  max-width: 740px;
  margin-top: 20px;
  font-size: 1.16rem;
  color: var(--c-mid);
}
.thryvv-does__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--c-line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--c-white);
}
.do-card {
  min-height: 330px;
  padding: clamp(24px, 3vw, 34px);
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--c-line);
}
.do-card:last-child { border-right: 0; }
.do-card span {
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  color: var(--c-coral);
  text-transform: uppercase;
  margin-bottom: auto;
}
.do-card h3 {
  font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.3rem);
  margin: 46px 0 16px;
}
.do-card p { color: var(--c-mid); }
.thryvv-does__note {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-top: 24px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  background: #EFE6D8;
  color: var(--c-ink);
}
.thryvv-does__note strong {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 1.2rem + 1.1vw, 2.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.matters-section__head {
  display: grid;
  grid-template-columns: minmax(0, 0.36fr) minmax(0, 1fr);
  gap: 36px;
  align-items: end;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.scenario-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}
.scenario-card {
  grid-column: span 2;
  min-height: 250px;
  border-radius: 28px;
  padding: clamp(24px, 3vw, 34px);
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 22px 58px -54px rgba(15,19,22,0.6);
}
.scenario-card--wide { grid-column: span 4; background: var(--c-ink); }
.scenario-card h3 {
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2.05rem);
}
.scenario-card p {
  margin-top: 20px;
  color: var(--c-mid);
}
.scenario-card--wide h3 { color: var(--c-white); }
.scenario-card--wide p { color: rgba(255,255,255,0.7); }
.commercial-close {
  background: #171B1F;
  color: rgba(255,255,255,0.76);
}
.commercial-close__card {
  max-width: 1080px;
  margin-inline: auto;
  text-align: center;
  border-radius: 40px;
  padding: clamp(42px, 7vw, 88px) clamp(24px, 6vw, 76px);
  background:
    radial-gradient(circle at 50% 0%, rgba(232,91,74,0.22), rgba(232,91,74,0) 48%),
    rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.12);
}
.commercial-close .eyebrow { color: var(--c-coral); }
.commercial-close h2 { color: var(--c-white); margin-inline: auto; max-width: 950px; }
.commercial-close p {
  max-width: 660px;
  margin: 24px auto 30px;
  font-size: 1.14rem;
}
@media (max-width: 1020px) {
  .commercial-hero__inner,
  .gap-section__grid,
  .matters-section__head,
  .thryvv-does__note { grid-template-columns: 1fr; }
  .commercial-hero__panel { max-width: 560px; }
  .thryvv-does__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .do-card:nth-child(2) { border-right: 0; }
  .do-card:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
  .scenario-card { grid-column: span 3; }
  .scenario-card--wide { grid-column: span 6; }
}
@media (max-width: 680px) {
  .commercial-hero { min-height: auto; padding-top: 112px; }
  .commercial-hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .commercial-hero__panel { border-radius: 26px; }
  .lane-sequence { font-size: clamp(2.05rem, 10vw, 3.7rem); }
  .gap-section__copy p { padding-left: 18px; }
  .thryvv-does__grid,
  .scenario-grid { display: block; }
  .do-card,
  .scenario-card {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--c-line);
  }
  .do-card:last-child,
  .scenario-card:last-child { border-bottom: 0; }
  .scenario-card { margin-bottom: 14px; }
  .scenario-card--wide { background: var(--c-ink); }
}

/* ================================================================
   Thryvv Who we are revision for commercial gap page
   ================================================================ */
.thryvv-who-page-shell .who-hero .commercial-hero__lead {
  max-width: 820px;
}
.thryvv-who-page-shell .who-hero__panel p,
.thryvv-who-page-shell .who-hero__panel strong {
  border-bottom-color: rgba(15,19,22,0.12);
}
.why-exists,
.team-section,
.difference-section,
.work-section {
  background: var(--c-paper);
}
.why-exists .gap-section__copy p:nth-child(3) {
  color: var(--c-ink);
  font-weight: 600;
}
.team-section__head {
  max-width: 980px;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.team-section__head h2,
.difference-section__head h2,
.work-section__head h2 {
  font-size: clamp(2.25rem, 1.35rem + 3.45vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin-top: 18px;
}
.team-section__head p {
  max-width: 820px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.28rem);
  color: var(--c-graphite);
}
.team-profile {
  display: grid;
  grid-template-columns: minmax(240px, 0.35fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: stretch;
  margin-bottom: 22px;
  border-radius: 34px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 24px 70px -58px rgba(15,19,22,0.64);
}
.team-profile__photo {
  min-height: 410px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232,91,74,0.12), rgba(15,19,22,0.04)),
    #EFE6D8;
  color: rgba(15,19,22,0.42);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-align: center;
  text-transform: uppercase;
}
.team-profile__body {
  padding: clamp(28px, 5vw, 58px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.team-profile__label,
.team-profile__role {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  color: var(--c-coral);
  font-weight: 600;
}
.team-profile__body h3 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 1.4rem + 2.1vw, 4rem);
}
.team-profile__body > p:not(.team-profile__label):not(.team-profile__role) {
  margin-top: 18px;
  max-width: 760px;
  color: var(--c-graphite);
  font-size: 1.08rem;
}
.team-profile__note {
  padding-top: 18px;
  border-top: 1px solid var(--c-line);
  color: var(--c-mid) !important;
}
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.capability-card {
  min-height: 245px;
  padding: clamp(22px, 2.6vw, 32px);
  border-radius: 26px;
  background: #F2E9DC;
  border: 1px solid rgba(15,19,22,0.07);
}
.capability-card h3 {
  font-size: clamp(1.35rem, 1.1rem + 0.8vw, 1.9rem);
}
.capability-card p {
  margin-top: 16px;
  color: var(--c-mid);
}
.difference-section {
  background: #F0E7DA;
}
.difference-section__head {
  max-width: 1050px;
  margin-bottom: clamp(34px, 5vw, 62px);
}
.difference-list {
  display: grid;
  gap: 10px;
}
.difference-list div {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 22px;
  padding: clamp(20px, 2.2vw, 30px);
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(15,19,22,0.08);
}
.difference-list span {
  color: var(--c-coral);
  font-size: 0.78rem;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
}
.difference-list p {
  font-family: var(--ff-display);
  font-size: clamp(1.45rem, 1.1rem + 1.25vw, 2.45rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--c-ink);
}
.difference-list__answer {
  background: var(--c-ink) !important;
}
.difference-list__answer p {
  color: var(--c-white);
}
.work-section__head {
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 62px);
}
.work-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--c-line);
  border-radius: 34px;
  overflow: hidden;
  background: var(--c-white);
}
.work-step {
  min-height: 310px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.work-step:last-child { border-right: 0; }
.work-step span {
  color: var(--c-coral);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: var(--tracking-caps);
  font-weight: 700;
  margin-bottom: auto;
}
.work-step h3 {
  margin: 44px 0 14px;
  font-size: clamp(1.45rem, 1.15rem + 1vw, 2.05rem);
}
.work-step p { color: var(--c-mid); }
.thryvv-who-page-shell .commercial-close__card p {
  max-width: 720px;
}
@media (max-width: 1080px) {
  .capability-grid,
  .work-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .work-step:nth-child(2) { border-right: 0; }
  .work-step:nth-child(-n+2) { border-bottom: 1px solid var(--c-line); }
}
@media (max-width: 820px) {
  .team-profile { grid-template-columns: 1fr; }
  .team-profile__photo { min-height: 260px; }
}
@media (max-width: 680px) {
  .capability-grid,
  .work-steps { display: block; }
  .capability-card { margin-bottom: 12px; min-height: auto; }
  .work-step { min-height: auto; border-right: 0; border-bottom: 1px solid var(--c-line); }
  .work-step:last-child { border-bottom: 0; }
  .difference-list div { grid-template-columns: 1fr; gap: 10px; }
  .difference-list p { font-size: clamp(1.45rem, 7vw, 2rem); }
}

/* Who we are readability polish */
.thryvv-who-page-shell .lane-sequence__pause { color: rgba(255,255,255,0.7); }
.thryvv-who-page-shell .capability-card p,
.thryvv-who-page-shell .work-step p,
.thryvv-who-page-shell .scenario-card p,
.thryvv-who-page-shell .team-profile__note { color: #4E5961 !important; }
.thryvv-who-page-shell .footer__tagline,
.thryvv-who-page-shell .footer__legal,
.thryvv-who-page-shell .footer__col a { color: rgba(255,255,255,0.74); }
.thryvv-who-page-shell .btn--coral { background: #D94D3E; }
.thryvv-who-page-shell .btn--coral:hover { background: #BE4033; }

/* ================================================================
   Thryvv Who we are concise rewrite
   ================================================================ */
.thryvv-who-rewrite-shell {
  background: #F6F0E7;
}
.who-simple-hero {
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: clamp(126px, 14vw, 190px) 0 clamp(70px, 8vw, 110px);
  background:
    radial-gradient(circle at 86% 26%, rgba(232,91,74,0.16), rgba(232,91,74,0) 40%),
    #F6F0E7;
}
.who-simple-hero__copy {
  max-width: 980px;
}
.who-simple-hero h1 {
  margin-top: 20px;
  font-size: clamp(4.2rem, 2rem + 9vw, 9.5rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}
.who-simple-hero p {
  max-width: 790px;
  margin-top: clamp(28px, 3vw, 42px);
  font-size: clamp(1.25rem, 1.05rem + 0.85vw, 1.78rem);
  line-height: 1.38;
  color: var(--c-ink-2);
}
.who-simple-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 34px;
}
.thryvv-who-rewrite-shell .who-gap-short {
  padding: clamp(72px, 8vw, 122px) 0;
}
.thryvv-who-rewrite-shell .who-gap-short .lane-sequence {
  font-size: clamp(2rem, 1.1rem + 3.8vw, 4.9rem);
}
.cameron-section,
.people-section {
  background: var(--c-paper);
}
.cameron-card {
  display: grid;
  grid-template-columns: minmax(280px, 0.38fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: stretch;
  border-radius: 38px;
  overflow: hidden;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 28px 76px -62px rgba(15,19,22,0.7);
}
.cameron-photo {
  min-height: 620px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(232,91,74,0.13), rgba(15,19,22,0.04)),
    #EFE6D8;
  color: rgba(15,19,22,0.45);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-align: center;
  text-transform: uppercase;
}
.cameron-copy {
  padding: clamp(34px, 5.2vw, 72px) clamp(28px, 5vw, 70px) clamp(34px, 5vw, 60px) 0;
}
.cameron-copy h2,
.people-head h2,
.show-up-head h2 {
  margin-top: 18px;
  font-size: clamp(2.6rem, 1.4rem + 4.8vw, 6.2rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}
.cameron-role {
  margin-top: 18px;
  color: var(--c-coral-deep);
  font-weight: 700;
  font-size: clamp(1.02rem, 0.95rem + 0.3vw, 1.22rem);
  line-height: 1.45;
}
.cameron-body {
  display: grid;
  gap: 18px;
  margin-top: clamp(28px, 3vw, 42px);
  max-width: 760px;
  color: var(--c-graphite);
  font-size: clamp(1.04rem, 0.99rem + 0.25vw, 1.18rem);
}
.cameron-copy blockquote {
  margin: clamp(30px, 4vw, 52px) 0 0;
  padding: clamp(24px, 3vw, 34px);
  border-left: 3px solid var(--c-coral);
  border-radius: 0 22px 22px 0;
  background: #F6F0E7;
  font-family: var(--ff-display);
  font-size: clamp(1.7rem, 1.25rem + 1.5vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
  color: var(--c-ink);
}
.people-head {
  max-width: 1000px;
  margin-bottom: clamp(34px, 5vw, 66px);
}
.people-head p {
  max-width: 860px;
  margin-top: 22px;
  font-size: clamp(1.08rem, 1rem + 0.35vw, 1.3rem);
  color: var(--c-graphite);
}
.people-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.people-card {
  min-height: 255px;
  padding: clamp(24px, 3vw, 34px);
  border-radius: 28px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  box-shadow: 0 22px 58px -54px rgba(15,19,22,0.6);
}
.people-card h3 {
  font-size: clamp(1.45rem, 1.12rem + 1vw, 2.1rem);
}
.people-card p {
  margin-top: 18px;
  color: #4E5961;
}
.show-up-section {
  background: #F0E7DA;
}
.show-up-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 90px);
  align-items: start;
}
.show-up-lines {
  display: grid;
  gap: 10px;
}
.show-up-lines p {
  padding: clamp(18px, 2.4vw, 28px) clamp(20px, 3vw, 34px);
  border-radius: 24px;
  background: rgba(255,255,255,0.74);
  border: 1px solid rgba(15,19,22,0.08);
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 1.15rem + 1.35vw, 2.55rem);
  line-height: 1.06;
  letter-spacing: -0.035em;
  color: var(--c-ink);
}
.thryvv-who-rewrite-shell .commercial-close__card p {
  max-width: 800px;
}
.thryvv-who-rewrite-shell .lane-sequence__pause { color: rgba(255,255,255,0.7); }
.thryvv-who-rewrite-shell .footer__tagline,
.thryvv-who-rewrite-shell .footer__legal,
.thryvv-who-rewrite-shell .footer__col a { color: rgba(255,255,255,0.74); }
.thryvv-who-rewrite-shell .btn--coral { background: #D94D3E; }
.thryvv-who-rewrite-shell .btn--coral:hover { background: #BE4033; }
@media (max-width: 1040px) {
  .cameron-card,
  .show-up-grid { grid-template-columns: 1fr; }
  .cameron-photo { min-height: 340px; }
  .cameron-copy { padding: clamp(28px, 5vw, 52px); }
  .people-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 680px) {
  .who-simple-hero { min-height: auto; padding-top: 118px; }
  .who-simple-hero h1 { font-size: clamp(4rem, 22vw, 6.6rem); }
  .who-simple-hero__actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .people-grid { display: block; }
  .people-card { min-height: auto; margin-bottom: 14px; }
  .cameron-copy blockquote { font-size: clamp(1.55rem, 7vw, 2.15rem); }
}

/* Who we are scale alignment with homepage */
.thryvv-who-rewrite-shell .who-simple-hero {
  min-height: 72vh;
  padding: clamp(116px, 11vw, 154px) 0 clamp(58px, 7vw, 92px);
}
.thryvv-who-rewrite-shell .who-simple-hero h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: -0.034em;
  max-width: 760px;
}
.thryvv-who-rewrite-shell .who-simple-hero p {
  max-width: 760px;
  font-size: clamp(1.14rem, 1.02rem + 0.5vw, 1.42rem);
  line-height: 1.45;
}
.thryvv-who-rewrite-shell .who-gap-short {
  padding: clamp(70px, 8vw, 112px) 0;
}
.thryvv-who-rewrite-shell .who-gap-short .lane-sequence {
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.thryvv-who-rewrite-shell .lane-sequence p {
  padding: clamp(10px, 1.2vw, 17px) 0;
}
.thryvv-who-rewrite-shell .lane-sequence__pause {
  margin-top: clamp(18px, 3vw, 42px);
}
.thryvv-who-rewrite-shell .cameron-card {
  border-radius: var(--r-xl);
}
.thryvv-who-rewrite-shell .cameron-photo {
  min-height: 560px;
}
.thryvv-who-rewrite-shell .cameron-copy h2,
.thryvv-who-rewrite-shell .people-head h2,
.thryvv-who-rewrite-shell .show-up-head h2 {
  font-size: var(--fs-h2);
  line-height: 1.04;
  letter-spacing: -0.028em;
}
.thryvv-who-rewrite-shell .cameron-copy blockquote {
  font-size: clamp(1.55rem, 1.2rem + 1.25vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.024em;
}
.thryvv-who-rewrite-shell .people-card h3 {
  font-size: var(--fs-h3);
  line-height: 1.06;
  letter-spacing: -0.014em;
}
.thryvv-who-rewrite-shell .people-card {
  min-height: 230px;
}
.thryvv-who-rewrite-shell .show-up-lines p {
  font-size: clamp(1.35rem, 1.05rem + 0.95vw, 2.05rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
  padding: clamp(16px, 2vw, 24px) clamp(18px, 2.6vw, 30px);
}
.thryvv-who-rewrite-shell .commercial-close__card h2 {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.8rem);
  line-height: 1.02;
  letter-spacing: -0.028em;
}
@media (max-width: 680px) {
  .thryvv-who-rewrite-shell .who-simple-hero {
    padding-top: 106px;
  }
  .thryvv-who-rewrite-shell .who-simple-hero h1 {
    font-size: var(--fs-h1);
    line-height: 0.98;
    letter-spacing: -0.034em;
  }
  .thryvv-who-rewrite-shell .who-simple-hero p {
    font-size: 1.12rem;
    line-height: 1.48;
  }
  .thryvv-who-rewrite-shell .who-gap-short .lane-sequence {
    font-size: var(--fs-h2);
    line-height: 1.06;
    letter-spacing: -0.026em;
  }
  .thryvv-who-rewrite-shell .cameron-copy h2,
  .thryvv-who-rewrite-shell .people-head h2,
  .thryvv-who-rewrite-shell .show-up-head h2 {
    font-size: var(--fs-h2);
    line-height: 1.04;
    letter-spacing: -0.028em;
  }
  .thryvv-who-rewrite-shell .cameron-photo {
    min-height: 280px;
  }
  .thryvv-who-rewrite-shell .cameron-copy blockquote {
    font-size: clamp(1.45rem, 5.8vw, 1.9rem);
  }
  .thryvv-who-rewrite-shell .show-up-lines p {
    font-size: clamp(1.3rem, 5.6vw, 1.75rem);
    line-height: 1.14;
  }
}

/* Who we are final homepage-scale tightening */
.thryvv-who-rewrite-shell .who-simple-hero h1 {
  font-size: clamp(2.75rem, 1.6rem + 4.6vw, 5.25rem);
}
.thryvv-who-rewrite-shell .people-card h3 {
  font-size: clamp(1.45rem, 1.18rem + 0.75vw, 1.6rem);
  line-height: 1.05;
  letter-spacing: -0.014em;
}
.thryvv-who-rewrite-shell .show-up-lines p {
  font-size: clamp(1.45rem, 1.18rem + 0.75vw, 1.9rem);
  line-height: 1.12;
}
@media (max-width: 680px) {
  .thryvv-who-rewrite-shell .people-card h3 {
    font-size: 22px;
    line-height: 1.12;
  }
  .thryvv-who-rewrite-shell .show-up-lines p {
    font-size: 22px;
    line-height: 1.16;
  }
}
/* Who we are sharp message polish */
.thryvv-who-rewrite-shell .who-simple-hero h1 {
  max-width: 980px;
}
.thryvv-who-rewrite-shell .who-simple-hero__support {
  max-width: none;
  margin-top: 24px;
  font-family: var(--ff-display);
  font-size: clamp(1.35rem, 1.12rem + 0.9vw, 1.95rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--c-ink);
}
.thryvv-who-rewrite-shell .who-gap-title {
  margin: 0 0 clamp(32px, 4.5vw, 60px);
  color: rgba(255,255,255,0.86);
  font-size: clamp(1rem, 0.92rem + 0.32vw, 1.2rem);
  line-height: 1.1;
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
  font-weight: 700;
}
.thryvv-who-rewrite-shell .cameron-copy h2,
.thryvv-who-rewrite-shell .people-head h2,
.thryvv-who-rewrite-shell .show-up-head h2 {
  margin-top: 0;
}
.thryvv-who-rewrite-shell .show-up-lines .show-up-lines__close {
  margin-top: 12px;
  background: var(--c-ink);
  color: var(--c-white);
}
@media (max-width: 680px) {
  .thryvv-who-rewrite-shell .who-simple-hero__support {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

/* Who we are exact five-section replacement */
.thryvv-who-exact-shell .who-exact-hero {
  background: var(--c-white);
}
.thryvv-who-exact-shell .who-exact-hero .hero__h1 {
  max-width: 10.5ch;
}
.thryvv-who-exact-shell .who-exact-hero .hero__sub {
  max-width: 42rem;
}
.thryvv-who-exact-shell .who-hero-panel {
  min-height: clamp(360px, 38vw, 560px);
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: clamp(28px, 3vw, 44px);
  background:
    linear-gradient(145deg, rgba(246,240,231,0.96), rgba(255,255,255,0.78)),
    radial-gradient(circle at 75% 20%, rgba(232,91,74,0.18), rgba(232,91,74,0) 38%);
  box-shadow: 0 28px 72px rgba(15, 19, 22, 0.12);
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 42px);
}
.thryvv-who-exact-shell .who-hero-panel__card {
  width: min(100%, 390px);
  display: grid;
  gap: 12px;
}
.thryvv-who-exact-shell .who-hero-panel__card span,
.thryvv-who-exact-shell .who-hero-panel__card strong {
  display: block;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(15,19,22,0.08);
  font-size: 0.95rem;
  line-height: 1.35;
  color: var(--c-graphite);
}
.thryvv-who-exact-shell .who-hero-panel__card strong {
  background: var(--c-ink);
  color: var(--c-white);
  font-weight: 600;
}
.thryvv-who-exact-shell .who-gap-exact {
  background: var(--c-paper);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
}
.thryvv-who-exact-shell .who-gap-exact__head {
  margin-bottom: clamp(30px, 4vw, 56px);
}
.thryvv-who-exact-shell .who-gap-exact__copy {
  max-width: 900px;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--c-line);
}
.thryvv-who-exact-shell .who-gap-exact__copy p {
  margin: 0;
  padding: clamp(14px, 1.8vw, 22px) 0;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--ff-display);
  font-size: var(--fs-h3);
  line-height: 1.12;
  letter-spacing: -0.014em;
  color: var(--c-ink);
}
.thryvv-who-exact-shell .who-gap-exact__copy p:nth-last-child(2) {
  color: var(--c-coral-deep);
}
.thryvv-who-exact-shell .who-gap-exact__copy p:last-child {
  color: var(--c-ink);
  font-weight: 600;
}
.thryvv-who-exact-shell .who-founder-exact {
  background: var(--c-white);
}
.thryvv-who-exact-shell .who-founder-exact__grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: stretch;
}
.thryvv-who-exact-shell .who-founder-exact__photo {
  min-height: 520px;
  border: 1px solid rgba(15, 19, 22, 0.12);
  border-radius: var(--r-xl);
  background:
    linear-gradient(135deg, rgba(232,91,74,0.10), rgba(15,19,22,0.04)),
    #EFE6D8;
  display: grid;
  place-items: center;
  color: rgba(15,19,22,0.45);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: var(--tracking-caps);
  text-align: center;
  text-transform: uppercase;
}
.thryvv-who-exact-shell .who-founder-exact__copy {
  align-self: center;
  max-width: 760px;
}
.thryvv-who-exact-shell .who-founder-exact__role {
  margin-top: 18px;
  color: var(--c-coral-deep);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.45;
}
.thryvv-who-exact-shell .who-founder-exact__body {
  display: grid;
  gap: 16px;
  margin-top: 28px;
  color: var(--c-graphite);
  font-size: var(--fs-body);
  line-height: 1.65;
}
.thryvv-who-exact-shell .who-founder-exact__copy blockquote {
  margin: 28px 0 0;
  padding: 22px 24px;
  border-left: 3px solid var(--c-coral);
  border-radius: 0 18px 18px 0;
  background: var(--c-paper);
  color: var(--c-ink);
  font-size: 1rem;
  line-height: 1.55;
}
.thryvv-who-exact-shell .who-people-exact .services__intro {
  display: grid;
  gap: 12px;
}
.thryvv-who-exact-shell .who-people-exact__grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.thryvv-who-exact-shell .who-people-exact__grid .tile {
  min-height: 230px;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__h {
  font-size: clamp(1.375rem, 1.15rem + 0.5vw, 1.625rem);
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__p {
  font-size: 0.95rem;
}
.thryvv-who-exact-shell .final__h {
  max-width: 12ch;
}
@media (max-width: 980px) {
  .thryvv-who-exact-shell .who-founder-exact__grid,
  .thryvv-who-exact-shell .who-people-exact__grid {
    grid-template-columns: 1fr;
  }
  .thryvv-who-exact-shell .who-founder-exact__photo {
    min-height: 340px;
  }
}
@media (max-width: 760px) {
  .thryvv-who-exact-shell .who-hero-panel {
    min-height: 280px;
    aspect-ratio: auto;
  }
  .thryvv-who-exact-shell .who-gap-exact__copy p {
    font-size: 22px;
    line-height: 1.18;
  }
  .thryvv-who-exact-shell .who-founder-exact__photo {
    min-height: 280px;
  }
}

/* Who we are exact typography restraint */
.thryvv-who-exact-shell .who-exact-hero .hero__h1 {
  max-width: 820px;
  font-size: clamp(2.75rem, 1.65rem + 4vw, 4.75rem);
  line-height: 0.98;
}
@media (max-width: 760px) {
  .thryvv-who-exact-shell .who-exact-hero .hero__h1 {
    max-width: 350px;
    font-size: clamp(2.55rem, 10vw, 3.4rem);
    line-height: 0.98;
  }
}

/* Who we are design correction: simple hero, split commercial gap, restrained people/founder cards */
.thryvv-who-exact-shell .who-exact-hero .hero__inner {
  grid-template-columns: minmax(0, 820px);
  justify-content: start;
}
.thryvv-who-exact-shell .who-exact-hero .hero__copy {
  max-width: 820px;
}
.thryvv-who-exact-shell .who-exact-hero .hero__h1 {
  max-width: 760px;
  font-size: clamp(2.75rem, 1.65rem + 4vw, 4.75rem);
  line-height: 0.98;
}
.thryvv-who-exact-shell .who-gap-split {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: stretch;
}
.thryvv-who-exact-shell .who-gap-split__lanes {
  display: grid;
  gap: 12px;
}
.thryvv-who-exact-shell .who-gap-split__lanes p {
  margin: 0;
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  color: var(--c-graphite);
  font-size: var(--fs-body);
  line-height: 1.45;
}
.thryvv-who-exact-shell .who-gap-split__owner {
  position: relative;
  padding: clamp(28px, 4vw, 48px);
  border-radius: var(--r-xl);
  background: var(--c-ink);
  color: var(--c-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}
.thryvv-who-exact-shell .who-gap-split__owner p {
  margin: 0;
  max-width: 680px;
  font-family: var(--ff-display);
  font-size: clamp(1.55rem, 1.2rem + 1.2vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: -0.022em;
}
.thryvv-who-exact-shell .who-gap-split__owner .who-gap-split__answer {
  margin-top: 8px;
  color: var(--c-coral);
}
.thryvv-who-exact-shell .who-founder-exact__grid {
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  align-items: center;
}
.thryvv-who-exact-shell .who-founder-exact__photo {
  min-height: auto;
  align-self: start;
  padding: clamp(28px, 4vw, 42px);
  border-radius: var(--r-xl);
  background: var(--c-paper);
  border: 1px solid var(--c-line);
  box-shadow: none;
  display: grid;
  place-items: start;
  gap: 10px;
  color: var(--c-ink);
  text-align: left;
  text-transform: none;
  letter-spacing: normal;
}
.thryvv-who-exact-shell .who-founder-exact__photo span {
  font-family: var(--ff-display);
  font-size: clamp(1.8rem, 1.3rem + 1.6vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.025em;
}
.thryvv-who-exact-shell .who-founder-exact__photo strong,
.thryvv-who-exact-shell .who-founder-exact__photo em {
  display: block;
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.45;
  color: var(--c-graphite);
  font-style: normal;
  font-weight: 600;
}
.thryvv-who-exact-shell .who-founder-exact__copy blockquote {
  font-size: 0.98rem;
  line-height: 1.55;
}
.thryvv-who-exact-shell .who-people-exact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile {
  min-height: auto;
  padding: 24px;
  background: rgba(255,255,255,0.72);
  box-shadow: none;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__rule {
  width: 28px;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__h {
  font-size: clamp(1.25rem, 1.08rem + 0.45vw, 1.45rem);
  line-height: 1.12;
}
.thryvv-who-exact-shell .who-people-exact__grid .tile__p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .thryvv-who-exact-shell .who-gap-split,
  .thryvv-who-exact-shell .who-founder-exact__grid,
  .thryvv-who-exact-shell .who-people-exact__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 760px) {
  .thryvv-who-exact-shell .who-exact-hero .hero__h1 {
    max-width: 350px;
    font-size: clamp(2.55rem, 10vw, 3.4rem);
  }
  .thryvv-who-exact-shell .who-gap-split__owner p {
    font-size: clamp(1.45rem, 6.2vw, 1.9rem);
  }
  .thryvv-who-exact-shell .who-gap-split__lanes p {
    padding: 16px 18px;
  }
}
/* Feature image radius alignment — match the rounded hero image treatment on the index page. */
.hero__image,
.advocate-bridge__image,
.advocate-bridge__photo,
.evidence__image,
.evidence__image image-slot,
.story__image image-slot,
.story__image img,
.story__image video,
img.wp-post-image,
.featured-image img,
.post-image img,
.inside-article .featured-image img {
  border-radius: clamp(28px, 3vw, 44px);
  overflow: hidden;
}


/* ================================================================
   What We Do baseline consistency pass — fonts, colour, highlights,
   heading/body scale and feature media treatment across the site.
   ================================================================ */
:root {
  --c-coral: #FF5C46;
  --c-coral-deep: #E8472F;
  --ff-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --ff-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --fs-eyebrow: 0.74rem;
  --fs-body: 1.0625rem;
  --fs-body-lg: 1.2rem;
  --fs-h3: clamp(1.625rem, 1.3rem + 1.2vw, 2.25rem);
  --fs-h2: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  --fs-h1: clamp(2.75rem, 1.6rem + 5.5vw, 6rem);
  --tracking-tight: -0.028em;
  --tracking-snug: -0.014em;
}

body,
.thryvv-claude-home,
.thryvv-contact-page,
.site-content,
.inside-article,
.sidebar .widget {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--c-graphite);
}

h1, h2, h3, h4,
.hero__h1,
.entry-title,
.page-title,
.form-heading h2,
.expect-card h2,
.sidebar .widget-title,
.inside-article h1,
.inside-article h2,
.inside-article h3,
.inside-article h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  color: var(--c-ink);
  line-height: 1.04;
  letter-spacing: var(--tracking-tight);
  text-wrap: balance;
}

.hero__h1,
.entry-header .entry-title,
.page-header h1,
.contact-hero .hero__h1 {
  font-size: var(--fs-h1);
  line-height: 0.98;
  letter-spacing: var(--tracking-tight);
}

.section h2,
.form-heading h2,
.expect-card h2,
.inside-article h2,
.sidebar .widget-title {
  font-size: var(--fs-h2);
  line-height: 1.04;
}

.section h3,
.inside-article h3,
.entry-summary h2,
.entry-summary h3 {
  font-size: var(--fs-h3);
}

.hero__sub,
.contact-hero .hero__sub,
.inside-article p,
.entry-summary,
.entry-content p {
  font-family: var(--ff-body);
  font-size: var(--fs-body-lg);
  line-height: 1.55;
  color: var(--c-graphite);
}

.eyebrow,
.hero__chip,
.posted-on,
.byline,
.cat-links,
.tags-links,
.about-hero__eyebrow,
.sidebar .widget-title {
  font-family: var(--ff-body);
  letter-spacing: var(--tracking-caps);
  text-transform: uppercase;
}

em,
.hero__h1 em,
.section h2 em,
.section h3 em,
.entry-title em,
.inside-article h1 em,
.inside-article h2 em,
.inside-article h3 em {
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
  color: var(--c-coral);
}

.hero__highlight,
mark,
.has-inline-color.has-vivid-red-color {
  background: transparent;
  color: var(--c-coral) !important;
  padding: 0;
  border-radius: 0;
  transform: none;
  font-family: var(--ff-display);
  font-style: italic;
  font-weight: 400;
}

a:hover,
.btn--link:hover,
.entry-title a:hover,
.sidebar a:hover { color: var(--c-coral); }

.btn--coral,
button[type="submit"],
input[type="submit"] {
  background: var(--c-coral);
  border-color: var(--c-coral);
}
.btn--coral:hover,
button[type="submit"]:hover,
input[type="submit"]:hover { background: var(--c-coral-deep); border-color: var(--c-coral-deep); }

.hero__image,
.advocate-bridge__image,
.advocate-bridge__photo,
.evidence__image,
.evidence__image image-slot,
.story__image image-slot,
.story__image img,
.story__image video,
img.wp-post-image,
.featured-image img,
.post-image img,
.inside-article .featured-image img {
  border-radius: clamp(28px, 3vw, 44px);
  overflow: hidden;
}

/* Consistency refinement: buttons, blog archive and sidebar polish against What We Do baseline. */
.btn,
.btn:visited,
.btn:hover,
.btn:focus,
a.btn,
a.btn:visited,
a.btn:hover,
a.btn:focus,
.nav__cta a,
.hero__foot a.btn--coral,
.contact-hero a.btn--coral {
  text-decoration: none !important;
}

.blog .entry-header .entry-title,
.archive .entry-header .entry-title,
.search .entry-header .entry-title {
  font-size: clamp(2rem, 1.4rem + 2.4vw, 3.25rem);
  line-height: 1.04;
  max-width: 18ch;
  margin-bottom: 18px;
}
.blog .entry-title a,
.archive .entry-title a,
.search .entry-title a,
.sidebar a {
  color: var(--c-ink);
  text-decoration: none;
}
.blog .entry-title a:hover,
.archive .entry-title a:hover,
.search .entry-title a:hover,
.sidebar a:hover {
  color: var(--c-coral);
  text-decoration: none;
}
.blog .entry-summary,
.archive .entry-summary,
.search .entry-summary {
  font-size: var(--fs-body);
  color: var(--c-graphite);
  line-height: 1.6;
}
.sidebar .widget-title {
  font-family: var(--ff-body);
  font-size: var(--fs-eyebrow, 0.74rem);
  font-weight: 500;
  letter-spacing: var(--tracking-caps, 0.14em);
  text-transform: uppercase;
  color: var(--c-coral);
  margin-bottom: 18px;
}
.sidebar .widget {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg, 24px);
  background: var(--c-white);
}
.sidebar .search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}
.sidebar .search-field {
  width: 100%;
  border: 1px solid var(--c-line);
  border-radius: 14px;
  background: var(--c-white);
  color: var(--c-ink);
  padding: 13px 14px;
  font-family: var(--ff-body);
  font-size: 1rem;
}
.sidebar .search-submit,
.search-submit {
  border: 0;
  border-radius: var(--r-pill, 999px);
  background: var(--c-coral);
  color: var(--c-white);
  padding: 13px 18px;
  font-family: var(--ff-body);
  font-weight: 500;
}
.sidebar .search-submit:hover,
.search-submit:hover { background: var(--c-coral-deep); }
@media (min-width: 1024px) {
  .hero { padding-top: clamp(72px, 8vw, 122px); }
  .thryvv-contact-page .contact-hero { padding-top: clamp(86px, 10vw, 132px); }
}

/* Consistency refinement 2: remove default blue WordPress link/widget styling. */
.byline a,
.posted-on a,
.cat-links a,
.tags-links a,
.comments-link a,
.entry-meta a,
.entry-footer a,
.sidebar .widget a {
  color: var(--c-ink) !important;
  text-decoration: none !important;
}
.byline a:hover,
.posted-on a:hover,
.cat-links a:hover,
.tags-links a:hover,
.comments-link a:hover,
.entry-meta a:hover,
.entry-footer a:hover,
.sidebar .widget a:hover {
  color: var(--c-coral) !important;
}
.sidebar .widget .widget-title,
.sidebar .widget h2,
.sidebar .widget h3 {
  font-family: var(--ff-body) !important;
  font-size: var(--fs-eyebrow, 0.74rem) !important;
  font-weight: 500 !important;
  letter-spacing: var(--tracking-caps, 0.14em) !important;
  text-transform: uppercase !important;
  color: var(--c-coral) !important;
  line-height: 1.25 !important;
}

/* STRICT What We Do baseline — computed-size and highlight-colour enforcement. */
:root {
  --c-coral: #FF5C46;
  --c-coral-deep: #E8472F;
  --ff-display: "Newsreader", "Source Serif 4", Georgia, serif;
  --ff-body: "Inter Tight", "Inter", system-ui, sans-serif;
  --wwd-h1: clamp(2.5rem, 1.5rem + 3.6vw, 4.5rem);
  --wwd-h2: clamp(2rem, 1.4rem + 2.2vw, 3rem);
  --wwd-h3: clamp(1.5rem, 1.15rem + 1.4vw, 2.25rem);
  --wwd-body-lg: 1.2rem;
  --wwd-body: 1.0625rem;
}

.thryvv-claude-home .hero__h1,
.thryvv-contact-page .hero__h1,
.thryvv-contact-page .contact-hero .hero__h1,
.blog .entry-header .entry-title,
.archive .entry-header .entry-title,
.search .entry-header .entry-title,
.single .entry-header .entry-title,
.page-header h1,
.entry-header h1.entry-title {
  font-family: var(--ff-display) !important;
  font-size: var(--wwd-h1) !important;
  line-height: 1 !important;
  letter-spacing: -0.032em !important;
  font-weight: 400 !important;
  color: var(--c-ink) !important;
}

.thryvv-claude-home .section h2,
.thryvv-claude-home .advocate-bridge__statement,
.thryvv-contact-page .form-heading h2,
.thryvv-contact-page .expect-card h2,
.entry-content h2,
.sidebar .widget-title,
.sidebar .widget h2,
.sidebar .widget h3 {
  font-family: var(--ff-display) !important;
  font-size: var(--wwd-h2) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.028em !important;
  font-weight: 400 !important;
  color: var(--c-ink) !important;
}

.thryvv-claude-home .section h3,
.entry-content h3,
.blog .entry-summary h2,
.archive .entry-summary h2 {
  font-family: var(--ff-display) !important;
  font-size: var(--wwd-h3) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.02em !important;
  font-weight: 400 !important;
  color: var(--c-ink) !important;
}

.thryvv-claude-home .hero__sub,
.thryvv-contact-page .hero__sub,
.thryvv-claude-home .section p,
.thryvv-contact-page p,
.entry-content p,
.entry-summary,
.sidebar .widget,
.sidebar .widget p,
.sidebar .widget li {
  font-family: var(--ff-body) !important;
  font-size: var(--wwd-body-lg) !important;
  line-height: 1.55 !important;
  color: var(--c-graphite) !important;
}

.thryvv-claude-home .hero__sub--punch {
  font-weight: 400 !important;
}

.thryvv-claude-home h1 em,
.thryvv-claude-home h2 em,
.thryvv-claude-home h3 em,
.thryvv-contact-page h1 em,
.thryvv-contact-page h2 em,
.entry-content h1 em,
.entry-content h2 em,
.entry-content h3 em,
.hero__highlight,
mark,
.advocate-bridge__statement-red,
[class*="highlight"] {
  font-family: var(--ff-display) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  color: var(--c-coral) !important;
  background: transparent !important;
}

.btn--coral,
.nav__cta .btn,
button[type="submit"],
input[type="submit"],
.search-submit {
  background: var(--c-coral) !important;
  border-color: var(--c-coral) !important;
  color: #fff !important;
  font-family: var(--ff-body) !important;
}
.btn--coral:hover,
.nav__cta .btn:hover,
button[type="submit"]:hover,
input[type="submit"]:hover,
.search-submit:hover {
  background: var(--c-coral-deep) !important;
  border-color: var(--c-coral-deep) !important;
  color: #fff !important;
}

a:hover,
.nav__links a:hover,
.nav__phone:hover,
.sidebar a:hover,
.entry-title a:hover,
.entry-meta a:hover,
.entry-footer a:hover { color: var(--c-coral) !important; }

@media (max-width: 760px) {
  :root {
    --wwd-h1: clamp(2.5rem, 1.55rem + 7vw, 4rem);
    --wwd-h2: clamp(2rem, 1.35rem + 4.6vw, 3rem);
    --wwd-body-lg: 1.08rem;
  }
}

/* Strict baseline correction: remaining mismatched body/highlight elements. */
.advocate-bridge__statement .advocate-bridge__statement-red {
  font-size: var(--wwd-h2) !important;
  line-height: 1.04 !important;
  letter-spacing: -0.028em !important;
}

/* Strict baseline correction: sidebar widget titles use the What We Do eyebrow scale, not H2 scale. */
.sidebar .widget-title,
.sidebar .widget h2,
.sidebar .widget h3 {
  font-family: var(--ff-body) !important;
  font-size: 0.74rem !important;
  line-height: 1.6 !important;
  letter-spacing: var(--tracking-caps, 0.14em) !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  color: var(--c-coral) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

/* Fix Pack 1 — launch readiness spacing/context only. */
html { scroll-padding-top: 96px; }
#recover, #manage, #grow, #exit, #services, #dpn { scroll-margin-top: 104px; }
.reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
.thryvv-claude-home .section,
body.thryvv-claude-front-page .section { padding-block: clamp(64px, 6.4vw, 104px); }
body.thryvv-claude-front-page .services { padding-top: clamp(56px, 5.8vw, 92px); }
body.thryvv-claude-front-page .services__head { margin-bottom: clamp(24px, 3vw, 38px); align-items: start; }
body.thryvv-claude-front-page .services__h { margin-top: 16px; }
body.thryvv-claude-front-page .bento { margin-top: 0; }
body.thryvv-claude-front-page .how__head { margin-bottom: clamp(30px, 3.8vw, 46px); }
body.thryvv-claude-front-page .shield__p + .shield__p { margin-top: 16px; }
@media (max-width: 760px) {
  html { scroll-padding-top: 82px; }
  #recover, #manage, #grow, #exit, #services, #dpn { scroll-margin-top: 86px; }
  body.thryvv-claude-front-page .section { padding-block: 58px; }
  body.thryvv-claude-front-page .services__head { margin-bottom: 24px; gap: 14px; }
}


/* Animated Google reviews replacement for homepage proof section. */
.google-reviews {
  background: linear-gradient(180deg, rgba(255,255,255,0.92), rgba(248,243,236,0.72));
}
.google-reviews__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}
.google-reviews__head {
  max-width: 520px;
}
.google-reviews__intro {
  margin: 1rem 0 0;
  color: var(--c-mid);
  line-height: 1.7;
}
.google-reviews__link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 92, 70, 0.55);
  padding-bottom: 0.18rem;
}
.google-reviews__link:hover,
.google-reviews__link:focus-visible {
  color: var(--c-coral);
}
.google-reviews__panel {
  position: relative;
  min-height: 420px;
  padding: clamp(1.25rem, 2.4vw, 1.85rem);
  border: 1px solid rgba(15, 19, 22, 0.08);
  border-radius: 30px;
  background: rgba(255,255,255,0.88);
  box-shadow: 0 24px 60px -36px rgba(15,19,22,0.34);
  overflow: hidden;
}
.google-reviews__panel::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--c-coral), rgba(255, 92, 70, 0.18));
}
.google-reviews__stars {
  color: #f6b400;
  letter-spacing: 0.12em;
  font-size: 1rem;
  line-height: 1;
  margin-bottom: 0.85rem;
}
.google-reviews__viewport {
  position: relative;
  transition: min-height 180ms ease;
}
.google-review {
  animation: googleReviewIn 420ms ease both;
}
.google-review[hidden] {
  display: none !important;
}
.google-review__text {
  margin: 0;
  color: var(--c-ink);
  font-family: var(--f-serif);
  font-size: var(--wwd-body-lg, 1.2rem);
  line-height: 1.5;
}
.google-review__footer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.35rem;
}
.google-reviews__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.05rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(15,19,22,0.08);
}
.google-reviews__control {
  border: 1px solid rgba(15,19,22,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  color: var(--c-mid);
  cursor: pointer;
  font-family: var(--f-sans);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 0.52rem 0.8rem;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}
.google-reviews__control:hover,
.google-reviews__control:focus-visible,
.google-reviews__control.is-active {
  background: rgba(255, 92, 70, 0.1);
  border-color: rgba(255, 92, 70, 0.48);
  color: var(--c-ink);
  transform: translateY(-1px);
}
@keyframes googleReviewIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (max-width: 900px) {
  .google-reviews__grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .google-reviews__panel {
    min-height: 0;
  }
}
@media (max-width: 640px) {
  .google-reviews__panel {
    padding: 1.05rem;
    border-radius: 22px;
  }
  .google-review__text {
    font-size: var(--wwd-body-lg, 1.08rem);
    line-height: 1.48;
  }
  .google-reviews__controls {
    gap: 0.45rem;
  }
  .google-reviews__control {
    font-size: 0.8rem;
    padding: 0.48rem 0.68rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .google-review,
  .google-reviews__control {
    animation: none;
    transition: none;
  }
}
