@import url("https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400..700&family=Newsreader:opsz,wght@6..72,300..600&display=swap");

:root {
  --ivory: #f8f3eb;
  --paper: #efe7da;
  --beige: #d8cbb9;
  --mist: #e8e3db;
  --charcoal: #27231f;
  --ink: #342f2a;
  --muted: #746b61;
  --gold: #9b7a43;
  --gold-soft: #c5aa78;
  --line: rgba(52, 47, 42, .15);
  --white: #fffaf3;
  --shadow: 0 24px 64px rgba(39, 35, 31, .10);
  --ease: cubic-bezier(.22, 1, .36, 1);
  --space-section: clamp(72px, 9vw, 116px);
  --space-page: clamp(62px, 7vw, 104px);
  --h1: clamp(38px, 5.8vw, 64px);
  --h2: clamp(28px, 3.9vw, 41px);
  --h3: clamp(22px, 2.5vw, 26px);
  --body: clamp(15px, 1.6vw, 17px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: "Instrument Sans", sans-serif;
  font-size: var(--body);
  font-weight: 400;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

p {
  color: var(--muted);
  font-size: clamp(15px, 1.45vw, 16px);
  line-height: 1.76;
}

h1,
h2,
h3 {
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 400;
  letter-spacing: 0;
  text-wrap: balance;
}

.wrap {
  width: min(1240px, calc(100% - clamp(28px, 5vw, 64px)));
  margin: auto;
}

.eyebrow {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(248, 243, 235, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: flex;
  min-height: clamp(62px, 6.4vw, 70px);
  align-items: center;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 36px);
}

.brand {
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(18px, 1.85vw, 20px);
  font-weight: 400;
  letter-spacing: .015em;
  white-space: nowrap;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.1vw, 26px);
  color: #625a52;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: .105em;
  text-transform: uppercase;
}

.nav-links a {
  padding: 12px 2px;
  transition: color .24s var(--ease), opacity .24s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--charcoal);
}

.diagnostic-link {
  color: var(--gold) !important;
}

.home-signal {
  border-bottom: 1px solid rgba(52, 47, 42, .12);
  background: linear-gradient(180deg, rgba(232, 224, 211, .9), rgba(248, 243, 235, .96));
  padding: clamp(34px, 4.8vw, 58px) 0 clamp(34px, 4.6vw, 56px);
}

.signal-ticker {
  overflow: hidden;
  border-top: 1px solid rgba(83, 54, 35, .36);
  border-bottom: 1px solid rgba(83, 54, 35, .44);
  background: linear-gradient(90deg, #392e29, #6f4d32 42%, #8b643a 55%, #332d29);
  box-shadow: 0 24px 54px rgba(39, 35, 31, .16), inset 0 1px 0 rgba(255, 250, 243, .15), inset 0 -1px 0 rgba(39, 35, 31, .2);
  width: 100%;
  min-height: clamp(76px, 7.4vw, 104px);
}

.signal-ticker:focus-within,
.signal-ticker:hover .ticker-track {
  animation-play-state: paused;
}

.ticker-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  animation: editorialTicker 42s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(28px, 5vw, 58px);
  min-height: clamp(76px, 7.4vw, 104px);
  padding: clamp(22px, 2.5vw, 30px) clamp(32px, 6vw, 76px);
}

.ticker-group span {
  position: relative;
  color: rgba(255, 250, 243, .82);
  font-size: clamp(11px, 1.18vw, 13px);
  font-weight: 700;
  letter-spacing: .145em;
  line-height: 1.25;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-group span:first-child {
  color: #f0d59c;
}

.ticker-group span + span::before {
  position: absolute;
  top: 50%;
  left: calc(clamp(14px, 2.5vw, 29px) * -1);
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
  transform: translate(-50%, -50%);
}

@keyframes editorialTicker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.mobile-toggle {
  display: none;
  border: 0;
  background: none;
  color: var(--charcoal);
  font: 700 12px "Instrument Sans", sans-serif;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.btn {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(39, 35, 31, .78);
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--white) !important;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .075em;
  line-height: 1.1;
  padding: clamp(14px, 1.6vw, 16px) clamp(26px, 3.1vw, 34px) clamp(13px, 1.5vw, 15px);
  text-align: center;
  text-transform: uppercase;
  transition: transform .28s var(--ease), background .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), color .28s var(--ease);
}

.btn:hover {
  background: #3a332d;
  border-color: #3a332d;
  box-shadow: 0 14px 30px rgba(39, 35, 31, .13);
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn:focus-visible {
  outline: 3px solid rgba(155, 122, 67, .34);
  outline-offset: 3px;
}

.btn.secondary {
  background: rgba(255, 250, 243, .28);
  border-color: rgba(52, 47, 42, .24);
  color: var(--charcoal) !important;
}

.btn.secondary:hover {
  background: var(--white);
  border-color: rgba(155, 122, 67, .52);
  color: var(--charcoal) !important;
}

.hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, var(--paper), var(--ivory) 72%);
}

.hero-grid {
  display: grid;
  min-height: clamp(760px, calc(100vh - 74px), 980px);
  align-items: center;
  gap: clamp(54px, 7vw, 104px);
  grid-template-columns: 1.08fr .92fr;
  padding: clamp(76px, 8vw, 126px) 0 clamp(70px, 7vw, 112px);
}

.hero h1 {
  max-width: 820px;
  margin: 20px 0 22px;
  font-size: clamp(44px, 6.15vw, 70px);
  font-weight: 350;
  line-height: 1.04;
}

.lede {
  max-width: 780px;
  color: #5d554d;
  font-size: clamp(17px, 1.75vw, 20px);
  line-height: 1.76;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}

.trust-row {
  display: grid;
  max-width: 900px;
  margin-top: clamp(34px, 4.8vw, 52px);
  background: var(--line);
  gap: 1px;
  grid-template-columns: repeat(3, 1fr);
}

.trust-row div {
  background: rgba(255, 250, 243, .72);
  padding: clamp(18px, 2vw, 24px);
}

.trust-row strong {
  display: block;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.1;
}

.trust-row span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.48;
}

.portrait {
  position: relative;
  min-height: clamp(620px, 62vw, 780px);
  overflow: hidden;
  background: var(--beige);
  box-shadow: var(--shadow);
}

.portrait img,
.about-img img {
  width: 100%;
  height: 100%;
  filter: saturate(.86) contrast(1.03);
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 900ms var(--ease);
}

.portrait:hover img,
.about-img:hover img {
  filter: saturate(.92) contrast(1.04);
  transform: scale(1.018);
}

.portrait img {
  object-position: center top;
}

.caption {
  position: absolute;
  right: clamp(22px, 2.8vw, 34px);
  bottom: clamp(22px, 2.8vw, 34px);
  left: clamp(22px, 2.8vw, 34px);
  border-top: 3px solid var(--gold);
  background: rgba(39, 35, 31, .9);
  padding: clamp(22px, 2.6vw, 30px);
}

.caption p {
  margin: 7px 0 0;
  color: rgba(255, 250, 243, .72);
  font-size: 13px;
}

.page-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(105deg, var(--paper), var(--ivory) 72%);
  padding: var(--space-page) 0 clamp(42px, 5vw, 56px);
}

.page-hero h1 {
  max-width: 900px;
  margin: 16px 0;
  font-size: clamp(33px, 5.7vw, 54px);
  line-height: 1.1;
}

.section {
  border-bottom: 1px solid var(--line);
  padding: var(--space-section) 0;
}

.section-head {
  display: grid;
  align-items: end;
  gap: clamp(24px, 5vw, 56px);
  grid-template-columns: .68fr 1fr;
  margin-bottom: 40px;
}

.section h2 {
  margin: 12px 0 0;
  font-size: var(--h2);
  line-height: 1.14;
}

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

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

.dark p {
  color: rgba(255, 250, 243, .72);
}

.dark .eyebrow {
  color: var(--gold-soft);
}

.dark .btn.secondary {
  border-color: rgba(255, 250, 243, .34);
  background: rgba(255, 250, 243, .08);
  color: var(--white) !important;
}

.dark .btn.secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal) !important;
}

.dark .step {
  background: rgba(255, 250, 243, .055);
  border-color: rgba(255, 250, 243, .16);
}

.split {
  display: grid;
  align-items: start;
  gap: 52px;
  grid-template-columns: .82fr 1.18fr;
}

.panel,
.card,
.step,
.form,
.diagnostic-note,
.faq details {
  border: 1px solid var(--line);
  background: var(--white);
}

.panel {
  padding: 30px;
}

.grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(12, 1fr);
}

.card {
  padding: clamp(22px, 3vw, 28px);
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease), background .32s var(--ease);
}

.card:hover {
  border-color: rgba(155, 122, 67, .35);
  box-shadow: 0 18px 48px rgba(39, 35, 31, .08);
  transform: translateY(-4px);
}

.card h3 {
  margin: 0 0 13px;
  font-size: var(--h3);
  line-height: 1.18;
}

.card p {
  margin: 0;
  font-size: 14px;
}

.service {
  min-height: 214px;
  grid-column: span 4;
}

.service .num {
  display: block;
  margin-bottom: 20px;
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
  line-height: 1;
}

.proof {
  min-height: 215px;
  grid-column: span 4;
}

.proof.wide {
  grid-column: span 6;
}

.proof strong {
  display: block;
  margin: 12px 0;
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 31px;
  font-weight: 500;
  line-height: 1.08;
}

.insight-card {
  min-height: 250px;
  grid-column: span 4;
}

.insight-hero {
  background: radial-gradient(circle at 82% 12%, rgba(155, 122, 67, .16), transparent 28%), linear-gradient(105deg, var(--paper), var(--ivory) 72%);
}

.editorial-grid {
  display: grid;
  align-items: start;
  gap: clamp(24px, 5vw, 58px);
  grid-template-columns: .72fr 1.28fr;
}

.published-panel {
  position: sticky;
  top: 104px;
  border-left: 4px solid var(--gold);
  background: rgba(255, 250, 243, .66);
  box-shadow: 0 18px 48px rgba(39, 35, 31, .07);
  padding: clamp(24px, 3vw, 34px);
}

.published-panel h2 {
  margin: 12px 0;
  font-size: clamp(31px, 4vw, 44px);
  line-height: 1.05;
}

.published-panel p {
  margin: 0;
  color: #5f564e;
}

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

.article-link {
  display: grid;
  border: 1px solid var(--line);
  background: var(--white);
  gap: 8px;
  padding: clamp(20px, 3vw, 28px);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease), background .28s var(--ease);
}

.article-link:hover {
  border-color: rgba(155, 122, 67, .42);
  background: #fffdf8;
  box-shadow: 0 18px 44px rgba(39, 35, 31, .08);
  transform: translateY(-3px);
}

.article-link.featured {
  border-color: rgba(155, 122, 67, .32);
  background: linear-gradient(135deg, #fffaf3, #f2eadc);
}

.publication {
  color: var(--gold);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.article-link strong {
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.08;
}

.article-link em {
  max-width: 680px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.62;
}

.model-item {
  border: 1px solid rgba(255, 250, 243, .16);
  background: rgba(255, 250, 243, .05);
  grid-column: span 3;
  padding: 26px;
  transition: transform .32s var(--ease), border-color .32s var(--ease), background .32s var(--ease);
}

.model-item:hover {
  border-color: rgba(255, 250, 243, .28);
  background: rgba(255, 250, 243, .075);
  transform: translateY(-3px);
}

.model-item strong {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-soft);
}

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

.step {
  padding: 30px;
  transition: transform .32s var(--ease), border-color .32s var(--ease), box-shadow .32s var(--ease);
}

.step:hover {
  border-color: rgba(155, 122, 67, .32);
  box-shadow: 0 18px 48px rgba(39, 35, 31, .07);
  transform: translateY(-3px);
}

.step span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 29px;
  line-height: 1;
}

.fit-grid {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
  grid-template-columns: 1fr 1fr;
}

.fit-panel {
  min-width: 0;
}

.fit-grid ul,
.diagnostic-note ul {
  display: grid;
  margin: 16px 0 0;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.fit-grid li,
.diagnostic-note li {
  color: var(--muted);
  line-height: 1.55;
}

.fit-grid li::before,
.diagnostic-note li::before {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  background: var(--gold);
  content: "";
  vertical-align: 2px;
}

.faq {
  display: grid;
  gap: 12px;
}

.faq details {
  padding: 20px 22px;
  transition: border-color .28s var(--ease), transform .28s var(--ease);
}

.faq details:hover {
  border-color: rgba(155, 122, 67, .36);
  transform: translateY(-2px);
}

.faq summary {
  cursor: pointer;
  color: var(--charcoal);
  font-weight: 700;
}

.faq p {
  margin: 12px 0 0;
  color: #1f1b17;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.76;
}

.faq-actions {
  margin-top: 30px;
}

.about-grid {
  display: grid;
  align-items: center;
  gap: 58px;
  grid-template-columns: .86fr 1.14fr;
}

.about-img {
  min-height: 560px;
  overflow: hidden;
  background: var(--beige);
}

.about-img img {
  object-position: center 18%;
}

.credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.credentials span {
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .45);
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 10px 12px;
  text-transform: uppercase;
}

.team-band {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  padding: clamp(54px, 7vw, 82px) 0;
}

.team-band .wrap {
  display: grid;
  align-items: start;
  gap: clamp(28px, 5vw, 64px);
  grid-template-columns: .82fr 1.18fr;
}

.why-points {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.why-points p {
  margin: 0;
  background: var(--white);
  color: #554d45;
  font-size: clamp(15px, 1.35vw, 16px);
  line-height: 1.66;
  padding: clamp(18px, 2.3vw, 24px);
}

.team-list {
  display: grid;
  background: var(--line);
  gap: 1px;
  grid-template-columns: repeat(5, 1fr);
}

.team-list span {
  background: var(--white);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 700;
  padding: 14px 12px;
  text-align: center;
}

.team-depth .section-head {
  align-items: start;
}

.team-depth-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(6, 1fr);
}

.team-role {
  min-height: 188px;
  border: 1px solid rgba(255, 250, 243, .15);
  background: rgba(255, 250, 243, .055);
  grid-column: span 3;
  padding: clamp(22px, 3vw, 28px);
  transition: transform .32s var(--ease), border-color .32s var(--ease), background .32s var(--ease);
}

.team-role:hover {
  border-color: rgba(197, 170, 120, .42);
  background: rgba(255, 250, 243, .075);
  transform: translateY(-3px);
}

.team-role.wide {
  grid-column: 2 / span 4;
  min-height: 0;
}

.team-role span {
  display: block;
  color: var(--gold-soft);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  line-height: 1.12;
}

.team-role p {
  margin: 14px 0 0;
  font-size: 14px;
  line-height: 1.64;
}

.contact-grid {
  display: grid;
  align-items: start;
  gap: 54px;
  grid-template-columns: .78fr 1.22fr;
}

.form {
  box-shadow: var(--shadow);
  padding: 34px;
}

.fields {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr 1fr;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(52, 47, 42, .22);
  border-radius: 12px;
  background: #fffdf8;
  color: var(--ink);
  font: 500 15px "Instrument Sans", sans-serif;
  padding: 14px 13px;
  transition: border-color .22s var(--ease), box-shadow .22s var(--ease), background .22s var(--ease);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(155, 122, 67, .12);
  outline: 0;
}

.privacy {
  margin-top: 16px;
  color: var(--muted);
  font-size: 12px;
}

.diagnostic-hero {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 72% 20%, rgba(155, 122, 67, .13), transparent 26%), linear-gradient(105deg, #ece2d3, var(--ivory) 72%);
  padding: var(--space-page) 0;
}

.diagnostic-grid {
  display: grid;
  align-items: center;
  gap: clamp(30px, 6vw, 58px);
  grid-template-columns: 1.1fr .9fr;
}

.diagnostic-hero h1 {
  margin: 18px 0;
  font-size: var(--h1);
  line-height: 1.08;
}

.diagnostic-note {
  background: rgba(255, 250, 243, .78);
  box-shadow: var(--shadow);
  padding: 34px;
}

.diagnostic-note p {
  font-size: 16px;
}

.cta-band {
  background: var(--charcoal);
  color: var(--white);
  padding: 52px 0;
}

.cta-band .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.cta-band h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 3vw, 38px);
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 250, 243, .72);
}

.cta-band .btn.secondary {
  border-color: rgba(255, 250, 243, .32);
  background: rgba(255, 250, 243, .06);
  color: var(--white) !important;
}

.cta-band .btn.secondary:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--charcoal) !important;
}

footer {
  background: #201d1a;
  color: rgba(255, 250, 243, .72);
  font-size: 13px;
  padding: 38px 0;
}

.footer-grid {
  display: grid;
  gap: 28px;
  grid-template-columns: 1.2fr .8fr .8fr;
}

.footer-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--white);
}

.footer-grid a {
  display: block;
  margin: 7px 0;
  color: rgba(255, 250, 243, .72);
  transition: color .22s var(--ease);
}

.footer-grid a:hover {
  color: var(--white);
}

.hero-grid > *,
.page-hero .wrap,
.diagnostic-grid > *,
.section-head,
.card,
.step,
.panel,
.fit-grid > *,
.team-band .wrap > *,
.contact-grid > *,
.cta-band .wrap > *,
.about-grid > *,
.faq details,
.model-item,
.trust-row {
  animation: riseIn 700ms var(--ease) both;
}

.hero-grid > :nth-child(2),
.diagnostic-grid > :nth-child(2),
.section-head + .wrap,
.steps .step:nth-child(2),
.grid .card:nth-child(2),
.team-band .wrap > :nth-child(2),
.contact-grid > :nth-child(2) {
  animation-delay: 90ms;
}

.steps .step:nth-child(3),
.grid .card:nth-child(3) {
  animation-delay: 150ms;
}

.grid .card:nth-child(n + 4),
.model-item:nth-child(n + 4) {
  animation-delay: 180ms;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

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

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

  .ticker-track {
    animation: none !important;
    transform: none !important;
  }
}

@media (max-width: 1180px) {
  .nav-links {
    gap: 13px;
  }

  .nav-links .btn {
    display: none;
  }
}

@media (max-width: 920px) {
  .mobile-toggle {
    display: block;
  }

  .nav-links {
    display: none;
  }

  .nav.open .nav-links {
    position: absolute;
    top: clamp(66px, 7vw, 74px);
    right: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    flex-direction: column;
    gap: 6px;
    padding: 18px 22px 24px;
  }

  .nav.open .nav-links a {
    width: 100%;
    padding: 13px 4px;
  }

  .hero-grid,
  .section-head,
  .split,
  .about-grid,
  .contact-grid,
  .diagnostic-grid,
  .team-band .wrap,
  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .published-panel {
    position: static;
  }

  .hero-grid {
    min-height: auto;
    gap: clamp(30px, 6vw, 46px);
    padding-top: clamp(34px, 6vw, 54px);
    padding-bottom: clamp(46px, 8vw, 72px);
  }

  .portrait {
    order: -1;
    min-height: clamp(430px, 74vw, 610px);
    border-radius: 0 0 28px 28px;
    box-shadow: 0 18px 48px rgba(39, 35, 31, .12);
  }

  .portrait img {
    object-position: center 12%;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero h1 {
    max-width: 640px;
    font-size: clamp(38px, 8vw, 54px);
    line-height: 1.06;
  }

  .lede {
    max-width: 620px;
  }

  .service,
  .proof,
  .proof.wide,
  .model-item,
  .insight-card {
    grid-column: span 6;
  }

  .steps,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .fit-grid {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .fit-panel {
    border: 1px solid rgba(255, 250, 243, .16);
    background: rgba(255, 250, 243, .045);
    padding: clamp(24px, 5vw, 34px);
  }

  .fit-not {
    border-top-color: rgba(197, 170, 120, .42);
  }

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

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

  .team-role,
  .team-role.wide {
    grid-column: auto;
  }

  .cta-band .wrap {
    display: block;
  }

  .cta-band .actions {
    margin-top: 22px;
  }
}

/* Global Expansion Desk */
.global-page {
  --global-ivory: #F5EFE5;
  --global-espresso: #2E2923;
  --global-bronze: #A8793D;
  --global-taupe: #BBA895;
  --global-black: #1B1915;
  background: var(--global-ivory);
  overflow-x: clip;
}

.global-mobile-support,
.mobile-hero-more,
.mobile-sticky-cta {
  display: none;
}

.global-page .nav {
  background: rgba(245, 239, 229, .94);
}

.global-nav-link {
  color: var(--global-bronze) !important;
}

.global-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(46, 41, 35, .16);
  background:
    radial-gradient(circle at 72% 16%, rgba(168, 121, 61, .12), transparent 26%),
    linear-gradient(112deg, #f9f4ec 0%, var(--global-ivory) 58%, #e9ddcf 100%);
}

.global-hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(168, 121, 61, .055) 1px, transparent 1px), linear-gradient(90deg, rgba(168, 121, 61, .055) 1px, transparent 1px);
  background-size: 68px 68px;
  content: "";
  mask-image: linear-gradient(90deg, transparent, black 50%, black);
  pointer-events: none;
}

.global-hero-grid {
  position: relative;
  display: grid;
  min-height: min(810px, calc(100vh - 70px));
  align-items: center;
  gap: clamp(36px, 7vw, 100px);
  grid-template-columns: 1.08fr .92fr;
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
}

.global-kicker {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 30px;
  color: var(--global-bronze);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}

.global-kicker span + span {
  display: flex;
  align-items: center;
  gap: 18px;
  color: #746553;
}

.global-kicker span + span::before {
  width: 42px;
  height: 1px;
  background: var(--global-bronze);
  content: "";
}

.global-hero h1 {
  max-width: 800px;
  margin: 0;
  color: var(--global-espresso);
  font-size: clamp(48px, 6.2vw, 82px);
  line-height: .99;
  letter-spacing: -.025em;
}

.global-hero-tagline {
  max-width: 760px;
  margin: 24px 0 0;
  color: var(--global-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.08;
}

.global-hero .lede {
  max-width: 750px;
  margin: 30px 0 0;
  color: #5f554b;
  font-size: clamp(16px, 1.45vw, 18px);
  line-height: 1.72;
}

.global-hero .actions {
  margin-top: 34px;
}

.global-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid rgba(46, 41, 35, .18);
  padding-top: 18px;
}

.global-hero-proof span {
  display: flex;
  align-items: center;
  color: #6a6056;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.global-hero-proof span:not(:last-child)::after {
  width: 3px;
  height: 3px;
  margin: 0 16px;
  border-radius: 50%;
  background: var(--global-bronze);
  content: "";
}

.global-visual {
  position: relative;
  width: 100%;
  max-width: 620px;
  justify-self: end;
}

.global-visual svg {
  display: block;
  width: 100%;
  height: auto;
}

.visual-index {
  position: absolute;
  right: 2%;
  bottom: 10%;
  display: grid;
  align-items: center;
  width: min(270px, 48%);
  border: 1px solid rgba(46, 41, 35, .17);
  background: rgba(245, 239, 229, .88);
  box-shadow: 0 20px 50px rgba(46, 41, 35, .12);
  gap: 8px 12px;
  grid-template-columns: auto 1fr;
  padding: 18px;
  backdrop-filter: blur(12px);
}

.visual-index span {
  color: var(--global-bronze);
  font-family: "Newsreader", Georgia, serif;
  font-size: 22px;
}

.visual-index strong {
  color: var(--global-espresso);
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.visual-index i {
  height: 1px;
  background: rgba(46, 41, 35, .15);
  grid-column: 1 / -1;
}

.global-gap-section,
.global-section {
  padding: clamp(86px, 10vw, 138px) 0;
}

.global-statement-grid {
  display: grid;
  align-items: start;
  gap: clamp(44px, 9vw, 130px);
  grid-template-columns: .82fr 1.18fr;
}

.global-statement-grid h2,
.global-section-head h2,
.presence-intro h2,
.fit-layout h2,
.difference-grid h2,
.final-cta-grid h2 {
  margin: 15px 0 0;
  color: var(--global-espresso);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.03;
  letter-spacing: -.018em;
}

.global-copy-stack {
  border-left: 1px solid var(--global-taupe);
  padding-left: clamp(28px, 5vw, 72px);
}

.global-copy-stack p {
  max-width: 720px;
  margin: 0 0 22px;
  color: #645a50;
  font-size: clamp(16px, 1.7vw, 19px);
}

.global-copy-stack .global-emphasis {
  margin: 33px 0;
  color: var(--global-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(29px, 3.5vw, 42px);
  line-height: 1.12;
}

.global-pillars {
  background: var(--global-espresso);
}

.global-section-head {
  margin-bottom: clamp(38px, 6vw, 72px);
}

.global-section-head.split {
  display: grid;
  align-items: end;
  gap: clamp(36px, 8vw, 100px);
  grid-template-columns: 1fr .82fr;
}

.global-section-head.split > p {
  margin: 0 0 5px;
  max-width: 620px;
}

.global-pillars .global-section-head h2,
.global-process .global-section-head h2 {
  color: var(--global-ivory);
}

.global-pillar-grid {
  display: grid;
  border-top: 1px solid rgba(245, 239, 229, .18);
  border-left: 1px solid rgba(245, 239, 229, .18);
  grid-template-columns: repeat(4, 1fr);
}

.global-pillar {
  position: relative;
  min-height: 620px;
  border-right: 1px solid rgba(245, 239, 229, .18);
  border-bottom: 1px solid rgba(245, 239, 229, .18);
  padding: clamp(25px, 3vw, 38px);
  transition: background .35s var(--ease), transform .35s var(--ease);
}

.global-pillar:hover {
  background: rgba(245, 239, 229, .055);
  transform: translateY(-5px);
}

.pillar-number {
  margin-bottom: clamp(70px, 8vw, 110px);
  color: var(--global-bronze);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
}

.global-pillar h3 {
  margin: 0 0 18px;
  color: var(--global-ivory);
  font-size: clamp(27px, 3vw, 37px);
}

.global-pillar p {
  min-height: 120px;
  color: rgba(245, 239, 229, .62);
  font-size: 14px;
}

.global-pillar ul,
.scenario-outcomes ul,
.ledger-service ul,
.global-checklist {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.global-pillar li {
  border-top: 1px solid rgba(245, 239, 229, .11);
  color: rgba(245, 239, 229, .82);
  font-size: 12px;
  padding: 9px 0;
}

.global-presence {
  position: relative;
  overflow: hidden;
  background: #e8ddcf;
}

.global-presence::after {
  position: absolute;
  top: -220px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(168, 121, 61, .23);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(168, 121, 61, .04), 0 0 0 160px rgba(168, 121, 61, .025);
  content: "";
}

.presence-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: 1fr 1fr;
}

.presence-intro > p {
  max-width: 560px;
  margin-top: 27px;
}

.presence-intro blockquote {
  margin: clamp(44px, 6vw, 76px) 0 0;
  border-top: 1px solid var(--global-bronze);
  border-bottom: 1px solid var(--global-bronze);
  color: var(--global-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  line-height: 1.25;
  padding: 28px 0;
}

.presence-questions > p {
  margin: 3px 0 27px;
  color: var(--global-espresso);
  font-weight: 650;
}

.presence-questions ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: presence-question;
}

.presence-questions li {
  display: grid;
  align-items: start;
  border-top: 1px solid rgba(46, 41, 35, .18);
  color: #544b43;
  counter-increment: presence-question;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(19px, 2vw, 24px);
  gap: 18px;
  grid-template-columns: 30px 1fr;
  line-height: 1.25;
  padding: 17px 0;
}

.presence-questions li::before {
  color: var(--global-bronze);
  content: "0" counter(presence-question);
  font-family: "Instrument Sans", sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .1em;
  padding-top: 7px;
}

.global-scenarios {
  background: #fbf7f0;
}

.scenario-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(2, 1fr);
}

.scenario-card {
  border: 1px solid rgba(46, 41, 35, .16);
  background: var(--global-ivory);
  box-shadow: 0 18px 55px rgba(46, 41, 35, .055);
  padding: clamp(26px, 4vw, 46px);
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), transform .3s var(--ease);
}

.scenario-card:hover {
  border-color: rgba(168, 121, 61, .55);
  box-shadow: 0 26px 70px rgba(46, 41, 35, .10);
  transform: translateY(-5px);
}

.scenario-top {
  display: flex;
  border-bottom: 1px solid rgba(46, 41, 35, .16);
  color: var(--global-bronze);
  font-size: 9px;
  font-weight: 750;
  justify-content: space-between;
  letter-spacing: .14em;
  padding-bottom: 16px;
  text-transform: uppercase;
}

.scenario-card h3 {
  min-height: 108px;
  margin: 30px 0 28px;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
}

.scenario-card h4 {
  margin: 0 0 9px;
  color: var(--global-bronze);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.scenario-block {
  margin-top: 24px;
}

.scenario-block p,
.scenario-why p {
  margin: 0;
  font-size: 14px;
}

.scenario-outcomes {
  margin: 30px 0;
  border: 1px solid rgba(168, 121, 61, .22);
  background: #eee4d6;
  padding: 24px;
}

.scenario-outcomes ul {
  margin-top: 14px;
}

.scenario-outcomes li {
  position: relative;
  color: #4e463f;
  font-size: 12px;
  line-height: 1.48;
  padding: 5px 0 5px 16px;
}

.scenario-outcomes li::before {
  position: absolute;
  top: 12px;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--global-bronze);
  content: "";
}

.scenario-why {
  border-top: 1px solid rgba(46, 41, 35, .14);
  padding-top: 24px;
}

.global-services {
  background: var(--global-ivory);
}

.service-ledger {
  border-top: 1px solid rgba(46, 41, 35, .24);
}

.ledger-service {
  display: grid;
  align-items: start;
  border-bottom: 1px solid rgba(46, 41, 35, .18);
  gap: clamp(24px, 4vw, 60px);
  grid-template-columns: 52px minmax(230px, .8fr) 1.2fr;
  padding: clamp(34px, 5vw, 64px) 0;
}

.ledger-num {
  color: var(--global-bronze);
  font-family: "Newsreader", Georgia, serif;
  font-size: 25px;
}

.ledger-copy h3 {
  margin: 0 0 14px;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.05;
}

.ledger-copy p {
  margin: 0;
  max-width: 470px;
  font-size: 14px;
}

.ledger-service ul {
  display: grid;
  margin: 0;
  gap: 0 28px;
  grid-template-columns: repeat(2, 1fr);
}

.ledger-service li {
  border-top: 1px solid rgba(46, 41, 35, .12);
  color: #5d544b;
  font-size: 12px;
  padding: 9px 0;
}

.ledger-service aside {
  border-left: 2px solid var(--global-bronze);
  color: #6b6055;
  font-size: 11px;
  font-style: italic;
  grid-column: 3;
  line-height: 1.65;
  padding: 5px 0 5px 18px;
}

.global-process {
  overflow: hidden;
  background: var(--global-black);
}

.process-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.process-track::before {
  position: absolute;
  top: 28px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--global-bronze) 12%, var(--global-bronze) 88%, transparent);
  content: "";
}

.process-track article {
  position: relative;
  border-right: 1px solid rgba(245, 239, 229, .12);
  padding: 0 clamp(18px, 2.6vw, 34px) 10px;
}

.process-track article:first-child {
  padding-left: 0;
}

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

.process-track span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 56px;
  height: 56px;
  border: 1px solid var(--global-bronze);
  border-radius: 50%;
  background: var(--global-black);
  color: var(--global-bronze);
  font-family: "Newsreader", Georgia, serif;
  font-size: 20px;
  place-items: center;
}

.process-track h3 {
  margin: 35px 0 15px;
  color: var(--global-ivory);
  font-size: 30px;
}

.process-track p {
  color: rgba(245, 239, 229, .59);
  font-size: 13px;
}

.global-fit {
  background: #e8ddcf;
}

.fit-layout {
  display: grid;
  align-items: start;
  gap: clamp(50px, 10vw, 150px);
  grid-template-columns: .75fr 1.25fr;
}

.fit-layout > div {
  position: sticky;
  top: 110px;
}

.global-checklist {
  margin: 0;
}

.global-checklist li {
  position: relative;
  border-top: 1px solid rgba(46, 41, 35, .2);
  color: var(--global-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(20px, 2.25vw, 29px);
  line-height: 1.22;
  padding: 22px 12px 22px 54px;
}

.global-checklist li:last-child {
  border-bottom: 1px solid rgba(46, 41, 35, .2);
}

.global-checklist li::before {
  position: absolute;
  top: 24px;
  left: 5px;
  display: grid;
  width: 25px;
  height: 25px;
  border: 1px solid var(--global-bronze);
  border-radius: 50%;
  color: var(--global-bronze);
  content: "✓";
  font-family: "Instrument Sans", sans-serif;
  font-size: 11px;
  place-items: center;
}

.global-difference {
  background: var(--global-bronze);
  padding: clamp(85px, 10vw, 136px) 0;
}

.global-difference .eyebrow {
  color: rgba(27, 25, 21, .62);
}

.difference-grid {
  display: grid;
  align-items: end;
  gap: clamp(50px, 9vw, 130px);
  grid-template-columns: 1.25fr .75fr;
}

.difference-grid h2 {
  color: var(--global-black);
}

.difference-grid h2 em {
  font-weight: 500;
}

.difference-grid p {
  color: rgba(27, 25, 21, .74);
}

.difference-grid strong {
  display: block;
  margin-top: 28px;
  border-top: 1px solid rgba(27, 25, 21, .45);
  color: var(--global-black);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(25px, 3vw, 38px);
  font-weight: 500;
  line-height: 1.15;
  padding-top: 24px;
}

.global-final-cta {
  position: relative;
  overflow: hidden;
  background: var(--global-espresso);
  padding: clamp(85px, 10vw, 132px) 0;
}

.global-final-cta::after {
  position: absolute;
  right: -100px;
  bottom: -420px;
  width: 780px;
  height: 780px;
  border: 1px solid rgba(168, 121, 61, .3);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(168, 121, 61, .035), 0 0 0 160px rgba(168, 121, 61, .02);
  content: "";
}

.final-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
  grid-template-columns: 1.15fr .85fr;
}

.final-cta-grid h2 {
  color: var(--global-ivory);
}

.final-cta-grid p {
  max-width: 720px;
  color: rgba(245, 239, 229, .68);
}

.final-cta-grid .actions {
  justify-content: flex-end;
}

.global-final-cta .btn.secondary {
  border-color: rgba(245, 239, 229, .38);
  background: transparent;
  color: var(--global-ivory) !important;
}

.global-final-cta .btn.secondary:hover {
  background: var(--global-ivory);
  color: var(--global-espresso) !important;
}

.global-discovery {
  background: #fbf7f0;
}

.global-discovery .faq {
  max-width: 920px;
}

.global-related {
  background: #e8ddcf;
}

.global-related-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, 1fr);
}

.global-related-grid a {
  border: 1px solid rgba(46, 41, 35, .17);
  background: rgba(245, 239, 229, .62);
  padding: clamp(24px, 4vw, 38px);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.global-related-grid a:hover {
  border-color: rgba(168, 121, 61, .52);
  box-shadow: 0 20px 48px rgba(46, 41, 35, .08);
  transform: translateY(-4px);
}

.global-related-grid span {
  color: var(--global-bronze);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .14em;
}

.global-related-grid h3 {
  margin: 22px 0 12px;
  font-size: clamp(25px, 3vw, 34px);
}

.global-related-grid p {
  margin: 0;
}

.global-hero-grid > *,
.global-section-head,
.global-statement-grid > *,
.global-pillar,
.presence-grid > *,
.scenario-card,
.ledger-service,
.process-track article,
.fit-layout > *,
.difference-grid > *,
.final-cta-grid > * {
  animation: riseIn 760ms var(--ease) both;
}

@media (max-width: 1180px) {
  .global-page .nav-links {
    gap: 12px;
    font-size: 8.5px;
  }

  .global-page .nav-links .btn {
    display: none;
  }

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

  .global-pillar {
    min-height: 560px;
  }

  .process-track {
    gap: 0;
  }
}

@media (max-width: 920px) {
  .global-hero-grid,
  .global-statement-grid,
  .global-section-head.split,
  .presence-grid,
  .fit-layout,
  .difference-grid,
  .final-cta-grid {
    grid-template-columns: 1fr;
  }

  .global-hero-grid {
    padding-top: 70px;
  }

  .global-visual {
    width: min(100%, 620px);
    margin-top: -30px;
    justify-self: center;
  }

  .global-copy-stack {
    border-top: 1px solid var(--global-taupe);
    border-left: 0;
    padding-top: 35px;
    padding-left: 0;
  }

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

  .scenario-card h3 {
    min-height: 0;
  }

  .ledger-service {
    grid-template-columns: 42px 1fr;
  }

  .ledger-service ul,
  .ledger-service aside {
    grid-column: 2;
  }

  .process-track {
    grid-template-columns: 1fr;
  }

  .process-track::before {
    top: 0;
    bottom: 0;
    left: 27px;
    width: 1px;
    height: auto;
  }

  .process-track article,
  .process-track article:first-child {
    display: grid;
    border-right: 0;
    gap: 0 28px;
    grid-template-columns: 56px 1fr;
    padding: 0 0 42px;
  }

  .process-track h3 {
    margin: 8px 0 12px;
  }

  .process-track p {
    margin: 0;
    grid-column: 2;
  }

  .fit-layout > div {
    position: static;
  }

  .final-cta-grid .actions {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .global-hero h1 {
    font-size: clamp(43px, 13vw, 61px);
  }

  .global-hero-tagline {
    margin-top: 16px;
    font-size: clamp(27px, 8vw, 31px);
  }

  .global-kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .global-kicker span + span {
    gap: 10px;
  }

  .global-kicker span + span::before {
    width: 24px;
  }

  .global-hero .actions,
  .final-cta-grid .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .global-hero .btn,
  .final-cta-grid .btn {
    width: 100%;
    text-align: center;
  }

  .global-hero-proof span:not(:last-child)::after {
    margin: 0 9px;
  }

  .visual-index {
    right: 0;
    bottom: 6%;
    width: 55%;
    padding: 12px;
  }

  .global-pillar-grid {
    grid-template-columns: 1fr;
  }

  .global-pillar {
    min-height: 0;
  }

  .pillar-number {
    margin-bottom: 45px;
  }

  .global-pillar p {
    min-height: 0;
  }

  .scenario-card {
    padding: 24px 20px;
  }

  .ledger-service {
    gap: 18px 8px;
    grid-template-columns: 34px 1fr;
  }

  .ledger-service ul {
    grid-template-columns: 1fr;
  }

  .global-checklist li {
    padding-right: 0;
    padding-left: 43px;
  }

  .global-checklist li::before {
    left: 0;
  }
}

@media (max-width: 767px) {
  html,
  body.global-page {
    width: 100%;
    min-height: 100%;
    overflow-x: clip;
    overflow-y: auto;
    scroll-behavior: smooth;
  }

  body.global-page {
    padding-bottom: calc(76px + env(safe-area-inset-bottom));
  }

  .global-page main,
  .global-page section,
  .global-page header,
  .global-page footer,
  .global-page .wrap,
  .global-page article,
  .global-page details,
  .global-page summary,
  .global-page div {
    max-width: 100%;
  }

  .global-page .wrap {
    width: calc(100% - 40px);
  }

  .global-page .nav {
    z-index: 50;
  }

  .global-page .nav-inner {
    min-height: 64px;
  }

  .global-page .brand {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
  }

  .global-page .mobile-toggle {
    display: inline-flex;
    min-width: 76px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-color: rgba(46, 41, 35, .22);
    gap: 9px;
    padding: 10px 12px;
  }

  .mobile-toggle-icon {
    display: grid;
    width: 15px;
    gap: 4px;
  }

  .mobile-toggle-icon i {
    display: block;
    width: 100%;
    height: 1px;
    background: currentColor;
    transition: transform .22s var(--ease);
  }

  .nav.open .mobile-toggle-icon i:first-child {
    transform: translateY(2.5px) rotate(45deg);
  }

  .nav.open .mobile-toggle-icon i:last-child {
    transform: translateY(-2.5px) rotate(-45deg);
  }

  .global-page .nav.open .nav-links {
    top: 64px;
    max-height: calc(100dvh - 64px);
    overflow-y: auto;
    overscroll-behavior: contain;
    background: rgba(245, 239, 229, .985);
    box-shadow: 0 24px 50px rgba(46, 41, 35, .12);
    padding: 12px 20px calc(20px + env(safe-area-inset-bottom));
  }

  .global-page .nav.open .nav-links a {
    min-height: 46px;
    display: flex;
    align-items: center;
    font-size: 11px;
  }

  .global-hero-grid {
    min-height: 0;
    display: block;
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .global-kicker {
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 11px;
    gap: 7px;
    letter-spacing: .14em;
  }

  .global-kicker span + span {
    display: inline-flex;
  }

  .global-hero h1 {
    max-width: 390px;
    font-size: clamp(34px, 9.6vw, 38px);
    line-height: 1.02;
    letter-spacing: -.018em;
  }

  .global-hero-tagline {
    margin-top: 14px;
    font-size: clamp(26px, 7.4vw, 30px);
    line-height: 1.08;
  }

  .global-mobile-support {
    display: block;
    margin: 16px 0 0;
    color: #5f554b;
    font-size: 16px;
    line-height: 1.58;
  }

  .global-hero .actions {
    margin-top: 22px;
    gap: 12px;
  }

  .global-hero .btn,
  .final-cta-grid .btn {
    min-height: 50px;
    padding: 14px 18px;
    font-size: 10.5px;
    line-height: 1.35;
  }

  .global-visual {
    display: none;
  }

  .global-hero-proof {
    display: grid;
    margin-top: 20px;
    border-top: 1px solid rgba(46, 41, 35, .16);
    gap: 0 12px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 14px;
  }

  .global-hero-proof span {
    min-width: 0;
    padding: 5px 0;
    font-size: 10px;
  }

  .global-hero-proof span:not(:last-child)::after {
    display: none;
  }

  .mobile-hero-more {
    display: block;
    padding-top: 18px;
  }

  .mobile-hero-more details,
  .mobile-read-more,
  .pillar-disclosure,
  .questions-disclosure,
  .fit-disclosure {
    border-bottom: 1px solid rgba(46, 41, 35, .2);
  }

  .mobile-hero-more summary,
  .mobile-read-more summary,
  .pillar-disclosure summary,
  .questions-disclosure summary,
  .fit-disclosure summary,
  .mobile-scenario summary,
  .mobile-service summary {
    position: relative;
    list-style: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  .mobile-hero-more summary::-webkit-details-marker,
  .mobile-read-more summary::-webkit-details-marker,
  .pillar-disclosure summary::-webkit-details-marker,
  .questions-disclosure summary::-webkit-details-marker,
  .fit-disclosure summary::-webkit-details-marker,
  .mobile-scenario summary::-webkit-details-marker,
  .mobile-service summary::-webkit-details-marker {
    display: none;
  }

  .mobile-hero-more summary,
  .mobile-read-more summary,
  .pillar-disclosure summary,
  .questions-disclosure summary,
  .fit-disclosure summary {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--global-espresso);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-hero-more summary::after,
  .mobile-read-more summary::after,
  .pillar-disclosure summary::after,
  .questions-disclosure summary::after,
  .fit-disclosure summary::after,
  .mobile-service summary::after {
    content: "+";
    color: var(--global-bronze);
    font-family: "Newsreader", Georgia, serif;
    font-size: 23px;
    font-weight: 300;
  }

  details[open] > summary::after {
    content: "–";
  }

  .mobile-hero-more-copy .lede {
    display: block;
    margin: 0;
    padding: 4px 0 22px;
    font-size: 16px;
    line-height: 1.62;
  }

  .global-gap-section,
  .global-section {
    padding: 44px 0;
  }

  .global-statement-grid,
  .global-section-head.split,
  .presence-grid,
  .fit-layout,
  .difference-grid,
  .final-cta-grid {
    display: block;
  }

  .global-statement-grid h2,
  .global-section-head h2,
  .presence-intro h2,
  .fit-layout h2,
  .difference-grid h2,
  .final-cta-grid h2 {
    font-size: clamp(28px, 8vw, 32px);
    line-height: 1.06;
  }

  .global-copy-stack {
    margin-top: 28px;
    border: 0;
    padding: 0;
  }

  .global-copy-stack > p:not(.mobile-section-summary) {
    display: none;
  }

  .global-copy-stack .mobile-section-summary {
    margin: 0;
    color: #574e46;
    font-size: 16px;
    line-height: 1.62;
  }

  .mobile-read-more {
    margin-top: 10px;
  }

  .mobile-read-more .mobile-disclosure-body {
    padding-bottom: 8px;
  }

  .mobile-read-more .mobile-disclosure-body p {
    display: block;
    font-size: 16px;
    line-height: 1.62;
  }

  .global-section-head {
    margin-bottom: 24px;
  }

  .global-pillar-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: 1fr;
  }

  .global-pillar {
    min-height: 0;
    border: 1px solid rgba(245, 239, 229, .18);
    padding: 20px 20px 16px;
  }

  .global-pillar:hover,
  .scenario-card:hover {
    transform: none;
  }

  .pillar-number {
    margin-bottom: 14px;
  }

  .global-pillar h3 {
    margin: 0 0 8px;
    font-size: 22px;
  }

  .global-pillar p {
    min-height: 0;
    margin: 0;
    font-size: 16px;
    line-height: 1.58;
  }

  .pillar-disclosure {
    margin-top: 12px;
  }

  .global-pillar .pillar-disclosure ul {
    display: grid;
    margin: 0;
    padding: 0 0 10px;
    gap: 0;
  }

  .global-pillar .pillar-disclosure li {
    border-top: 1px solid rgba(245, 239, 229, .12);
    font-size: 15px;
    line-height: 1.45;
    padding: 10px 0 10px 16px;
  }

  .presence-intro > p {
    margin-top: 20px;
    font-size: 16px;
  }

  .presence-intro blockquote {
    margin-top: 24px;
    font-size: 25px;
    padding: 22px 0;
  }

  .presence-questions {
    margin-top: 18px;
  }

  .questions-disclosure summary {
    min-height: 58px;
    border-top: 1px solid rgba(46, 41, 35, .2);
    font-size: 12px;
  }

  .questions-disclosure .mobile-disclosure-body > p {
    margin: 14px 0 8px;
    font-size: 15px;
  }

  .presence-questions li {
    grid-template-columns: 26px 1fr;
    font-size: 18px;
    gap: 10px;
    padding: 14px 0;
  }

  .global-section-head.split > p {
    margin-top: 18px;
    font-size: 16px;
    line-height: 1.6;
  }

  .scenario-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .global-related-grid {
    grid-template-columns: 1fr;
  }

  .global-related-grid a {
    padding: 22px 20px;
  }

  .global-related-grid a:hover {
    transform: none;
  }

  .scenario-card {
    width: 100%;
    border-color: rgba(46, 41, 35, .18);
    padding: 0;
    box-shadow: 0 12px 34px rgba(46, 41, 35, .05);
  }

  .mobile-scenario summary {
    min-height: 48px;
    padding: 18px 20px;
  }

  .mobile-scenario .scenario-top {
    padding-bottom: 13px;
  }

  .mobile-scenario h3 {
    min-height: 0;
    margin: 18px 0 11px;
    font-size: 22px;
    line-height: 1.12;
  }

  .scenario-preview {
    margin: 0;
    color: #655b51;
    font-size: 16px;
    line-height: 1.56;
  }

  .disclosure-action {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    margin-top: 15px;
    color: var(--global-bronze);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .disclosure-action::after {
    content: "+";
    margin-left: 8px;
    font-family: "Newsreader", Georgia, serif;
    font-size: 20px;
  }

  details[open] > summary .disclosure-action::after {
    content: "–";
  }

  .mobile-scenario .mobile-disclosure-body {
    border-top: 1px solid rgba(46, 41, 35, .12);
    padding: 0 20px 22px;
  }

  .scenario-block {
    margin-top: 22px;
  }

  .scenario-block p,
  .scenario-why p {
    font-size: 16px;
    line-height: 1.58;
  }

  .scenario-outcomes {
    margin: 22px 0;
    padding: 18px;
  }

  .scenario-outcomes li {
    font-size: 14px;
    line-height: 1.5;
    padding-top: 7px;
    padding-bottom: 7px;
  }

  .service-ledger {
    display: grid;
    border-top: 0;
    gap: 14px;
  }

  .ledger-service.mobile-service {
    display: block;
    border: 1px solid rgba(46, 41, 35, .17);
    background: rgba(255, 250, 243, .5);
    padding: 0;
  }

  .mobile-service summary {
    display: grid;
    min-height: 64px;
    align-items: center;
    gap: 10px;
    grid-template-columns: 32px 1fr auto;
    padding: 15px 16px;
  }

  .mobile-service summary::after {
    grid-column: 3;
    grid-row: 1;
  }

  .mobile-service .ledger-num {
    font-size: 18px;
  }

  .mobile-service h3 {
    margin: 0;
    font-size: 19px;
    line-height: 1.15;
  }

  .mobile-service .disclosure-action {
    display: none;
  }

  .mobile-service .mobile-disclosure-body {
    border-top: 1px solid rgba(46, 41, 35, .12);
    padding: 18px 16px 20px 58px;
  }

  .mobile-service .mobile-disclosure-body > p {
    margin: 0 0 14px;
    font-size: 16px;
    line-height: 1.58;
  }

  .mobile-service ul {
    display: block;
    margin: 0;
  }

  .mobile-service li {
    font-size: 14px;
    line-height: 1.45;
    padding: 9px 0;
  }

  .mobile-service aside {
    margin-top: 16px;
    font-size: 13px;
    padding-left: 14px;
  }

  .process-track {
    display: grid;
    gap: 0;
    grid-template-columns: 1fr;
  }

  .process-track::before {
    top: 5px;
    bottom: 5px;
    left: 21px;
  }

  .process-track article,
  .process-track article:first-child {
    display: grid;
    gap: 0 18px;
    grid-template-columns: 44px 1fr;
    padding: 0 0 24px;
  }

  .process-track article:last-child {
    padding-bottom: 0;
  }

  .process-track span {
    width: 44px;
    height: 44px;
    font-size: 17px;
  }

  .process-track h3 {
    margin: 2px 0 5px;
    font-size: 22px;
  }

  .process-track p {
    grid-column: 2;
    margin: 0;
    font-size: 15px;
    line-height: 1.55;
  }

  .fit-layout > div {
    position: static;
  }

  .fit-layout > div > p {
    margin-bottom: 18px;
    font-size: 16px;
  }

  .fit-disclosure {
    border-top: 1px solid rgba(46, 41, 35, .2);
    border-bottom: 1px solid rgba(46, 41, 35, .2);
  }

  .fit-disclosure summary {
    min-height: 54px;
  }

  .fit-disclosure .mobile-disclosure-body {
    padding-bottom: 8px;
  }

  .fit-disclosure .global-checklist {
    display: block;
  }

  .global-checklist li {
    font-size: 17px;
    line-height: 1.35;
    padding: 15px 0 15px 38px;
  }

  .global-checklist li::before {
    top: 15px;
    width: 24px;
    height: 24px;
  }

  .global-difference {
    padding: 52px 0;
  }

  .difference-grid h2 br {
    display: none;
  }

  .difference-grid > div:last-child {
    margin-top: 26px;
  }

  .difference-grid p {
    margin: 0 0 13px;
    color: rgba(27, 25, 21, .82);
    font-size: 17px;
    line-height: 1.5;
  }

  .difference-grid p:nth-of-type(3),
  .difference-grid strong {
    display: block;
  }

  .difference-grid strong {
    margin-top: 3px;
    font-size: 18px;
    line-height: 1.45;
  }

  .global-final-cta {
    padding: 52px 0 56px;
  }

  .final-cta-grid p {
    font-size: 16px;
    line-height: 1.6;
  }

  .final-cta-grid .actions {
    margin-top: 26px;
    gap: 12px;
  }

  .mobile-sticky-cta {
    position: fixed;
    right: 14px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    left: 14px;
    z-index: 45;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(245, 239, 229, .32);
    border-radius: 3px;
    background: var(--global-espresso);
    box-shadow: 0 12px 34px rgba(27, 25, 21, .24);
    color: var(--global-ivory);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .11em;
    text-transform: uppercase;
  }

  .global-page footer {
    padding-bottom: 28px;
  }

  .global-page footer a {
    display: flex;
    min-height: 44px;
    align-items: center;
  }

  .global-hero-grid > *,
  .global-section-head,
  .global-statement-grid > *,
  .global-pillar,
  .presence-grid > *,
  .scenario-card,
  .ledger-service,
  .process-track article,
  .fit-layout > *,
  .difference-grid > *,
  .final-cta-grid > * {
    animation: none;
  }
}

@media (max-width: 350px) {
  .global-hero h1 {
    font-size: 34px;
  }

  .global-hero .btn,
  .final-cta-grid .btn {
    padding-right: 12px;
    padding-left: 12px;
    font-size: 10px;
  }

  .mobile-service .mobile-disclosure-body {
    padding-left: 16px;
  }
}

/* SEO service landing pages */
.seo-page {
  --seo-ivory: #F5EFE5;
  --seo-espresso: #2E2923;
  --seo-bronze: #A8793D;
  --seo-taupe: #BBA895;
  --seo-black: #1B1915;
  overflow-x: clip;
  background: var(--seo-ivory);
}

.seo-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(46, 41, 35, .16);
  background: linear-gradient(120deg, #fbf7f0 0%, var(--seo-ivory) 62%, #e7dacb 100%);
}

.seo-hero::after {
  position: absolute;
  right: -180px;
  bottom: -340px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(168, 121, 61, .22);
  border-radius: 50%;
  box-shadow: 0 0 0 72px rgba(168, 121, 61, .035), 0 0 0 144px rgba(168, 121, 61, .02);
  content: "";
}

.seo-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 650px;
  align-items: center;
  gap: clamp(48px, 9vw, 130px);
  grid-template-columns: 1.15fr .85fr;
  padding-top: clamp(72px, 9vw, 112px);
  padding-bottom: clamp(72px, 9vw, 112px);
}

.seo-hero h1 {
  max-width: 850px;
  margin: 16px 0 24px;
  color: var(--seo-espresso);
  font-size: clamp(48px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -.025em;
}

.seo-hero .lede {
  max-width: 760px;
  color: #5d534a;
  font-size: clamp(17px, 1.55vw, 19px);
  line-height: 1.72;
}

.seo-hero-note {
  border-top: 1px solid rgba(46, 41, 35, .2);
  border-bottom: 1px solid rgba(46, 41, 35, .2);
  padding: 28px 0;
}

.seo-hero-note span {
  display: block;
  margin-bottom: 12px;
  color: var(--seo-bronze);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.seo-hero-note p {
  margin: 0;
  color: var(--seo-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(25px, 3vw, 36px);
  line-height: 1.18;
}

.seo-section {
  padding: clamp(72px, 9vw, 112px) 0;
}

.seo-section.soft {
  background: #ebe0d2;
}

.seo-section.dark {
  background: var(--seo-espresso);
}

.seo-section-head {
  display: grid;
  align-items: end;
  gap: clamp(32px, 7vw, 90px);
  grid-template-columns: 1.05fr .95fr;
  margin-bottom: clamp(36px, 6vw, 66px);
}

.seo-section-head h2,
.seo-split h2,
.seo-cta h2 {
  margin: 10px 0 0;
  color: var(--seo-espresso);
  font-size: clamp(34px, 4.6vw, 55px);
  line-height: 1.04;
}

.seo-section.dark .seo-section-head h2,
.seo-section.dark h3,
.seo-section.dark p {
  color: var(--seo-ivory);
}

.seo-section-head > p {
  margin: 0;
  max-width: 650px;
  font-size: 16px;
}

.seo-split {
  display: grid;
  align-items: start;
  gap: clamp(42px, 9vw, 120px);
  grid-template-columns: .82fr 1.18fr;
}

.seo-problem-list,
.seo-checklist {
  display: grid;
  margin: 0;
  padding: 0;
  list-style: none;
}

.seo-problem-list li,
.seo-checklist li {
  position: relative;
  border-top: 1px solid rgba(46, 41, 35, .18);
  color: var(--seo-espresso);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(20px, 2.3vw, 28px);
  line-height: 1.25;
  padding: 18px 0 18px 38px;
}

.seo-problem-list li::before,
.seo-checklist li::before {
  position: absolute;
  top: 24px;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--seo-bronze);
  content: "";
}

.seo-card-grid,
.seo-scenario-grid,
.seo-related-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
}

.seo-card,
.seo-scenario,
.seo-related-card {
  border: 1px solid rgba(46, 41, 35, .16);
  background: rgba(255, 250, 243, .74);
  padding: clamp(24px, 3.2vw, 36px);
  transition: transform .28s var(--ease), border-color .28s var(--ease), box-shadow .28s var(--ease);
}

.seo-card:hover,
.seo-scenario:hover,
.seo-related-card:hover {
  border-color: rgba(168, 121, 61, .48);
  box-shadow: 0 20px 52px rgba(46, 41, 35, .08);
  transform: translateY(-4px);
}

.seo-card span,
.seo-scenario span {
  color: var(--seo-bronze);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.seo-card h3,
.seo-scenario h3,
.seo-related-card h3 {
  margin: 22px 0 12px;
  color: var(--seo-espresso);
  font-size: clamp(23px, 2.7vw, 31px);
  line-height: 1.08;
}

.seo-card p,
.seo-scenario p,
.seo-related-card p {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
}

.seo-process {
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(245, 239, 229, .16);
}

.seo-process article {
  background: var(--seo-espresso);
  padding: 30px 26px;
}

.seo-process span {
  color: var(--seo-bronze);
  font-family: "Newsreader", Georgia, serif;
  font-size: 26px;
}

.seo-process h3 {
  margin: 35px 0 12px;
  font-size: 27px;
}

.seo-process p {
  margin: 0;
  color: rgba(245, 239, 229, .68) !important;
  font-size: 14px;
}

.seo-faq {
  display: grid;
  gap: 12px;
  max-width: 920px;
  margin: 0 auto;
}

.seo-faq details {
  border: 1px solid rgba(46, 41, 35, .16);
  background: rgba(255, 250, 243, .7);
  padding: 20px 22px;
}

.seo-faq summary {
  cursor: pointer;
  color: var(--seo-espresso);
  font-size: 16px;
  font-weight: 700;
}

.seo-faq p {
  margin: 14px 0 0;
  font-size: 15px;
}

.seo-related-card {
  display: block;
}

.seo-related-card small {
  color: var(--seo-bronze);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.seo-cta {
  background: var(--seo-bronze);
  padding: clamp(68px, 8vw, 96px) 0;
}

.seo-cta-grid {
  display: grid;
  align-items: end;
  gap: 40px;
  grid-template-columns: 1.1fr .9fr;
}

.seo-cta .actions {
  justify-content: flex-end;
}

.seo-cta p {
  color: rgba(27, 25, 21, .76);
}

@media (max-width: 920px) {
  .seo-hero-grid,
  .seo-section-head,
  .seo-split,
  .seo-cta-grid {
    grid-template-columns: 1fr;
  }

  .seo-hero-grid {
    min-height: 0;
  }

  .seo-card-grid,
  .seo-scenario-grid,
  .seo-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .seo-cta .actions {
    justify-content: flex-start;
  }
}

@media (max-width: 640px) {
  .seo-hero-grid {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .seo-hero h1 {
    font-size: clamp(36px, 10vw, 42px);
  }

  .seo-hero-note {
    margin-top: 32px;
  }

  .seo-section {
    padding: 52px 0;
  }

  .seo-section-head h2,
  .seo-split h2,
  .seo-cta h2 {
    font-size: clamp(29px, 8vw, 34px);
  }

  .seo-card-grid,
  .seo-scenario-grid,
  .seo-related-grid,
  .seo-process {
    grid-template-columns: 1fr;
  }

  .seo-card,
  .seo-scenario,
  .seo-related-card {
    padding: 22px 20px;
  }

  .seo-card:hover,
  .seo-scenario:hover,
  .seo-related-card:hover {
    transform: none;
  }

  .seo-problem-list li,
  .seo-checklist li {
    font-size: 18px;
  }

  .seo-faq details {
    padding: 18px;
  }

  .seo-faq summary,
  .seo-page p {
    font-size: 16px;
  }

  .seo-cta .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .seo-cta .btn {
    width: 100%;
  }
}

@media (max-width: 640px) {
  :root {
    --space-section: clamp(52px, 14vw, 74px);
    --space-page: clamp(36px, 10vw, 54px);
    --h1: clamp(36px, 10vw, 48px);
    --h2: clamp(24px, 6.8vw, 31px);
    --h3: clamp(19px, 5.2vw, 23px);
  }

  .wrap {
    width: min(100% - 30px, 1160px);
  }

  body {
    line-height: 1.5;
  }

  p {
    font-size: 14.5px;
    line-height: 1.64;
  }

  .nav-inner {
    min-height: 60px;
  }

  .brand {
    font-size: 17px;
  }

  .mobile-toggle {
    border: 1px solid rgba(52, 47, 42, .16);
    border-radius: 999px;
    padding: 9px 13px 8px;
  }

  .nav.open .nav-links {
    top: 60px;
    gap: 5px;
    padding: 14px 15px 18px;
  }

  .nav.open .nav-links a {
    width: 100%;
    border-bottom: 1px solid rgba(52, 47, 42, .09);
    padding: 13px 3px;
  }

  .home-signal {
    padding: 24px 0 26px;
  }

  .signal-ticker {
    min-height: 70px;
  }

  .ticker-group {
    gap: 24px;
    min-height: 70px;
    padding: 18px 22px;
  }

  .ticker-group span {
    font-size: 10px;
    letter-spacing: .12em;
  }

  .page-hero,
  .diagnostic-hero {
    background: linear-gradient(180deg, var(--paper), var(--ivory) 86%);
    padding: 30px 0 34px;
  }

  .hero {
    background: linear-gradient(180deg, var(--paper), var(--ivory) 82%);
  }

  .hero-grid {
    gap: 28px;
    padding-top: 30px;
    padding-bottom: 48px;
  }

  .hero-copy {
    padding-top: 2px;
  }

  .hero h1,
  .page-hero h1,
  .diagnostic-hero h1 {
    margin: 16px 0 14px;
    font-size: var(--h1);
    font-weight: 400;
    line-height: 1.08;
  }

  .page-hero h1 {
    max-width: 100%;
    font-size: var(--h1);
  }

  .lede {
    font-size: 16px;
    line-height: 1.68;
  }

  .actions {
    align-items: flex-start;
    gap: 11px;
    margin-top: 23px;
  }

  .btn {
    width: auto;
    min-width: 0;
    min-height: 48px;
    padding: 14px 22px 13px;
    font-size: 10px;
    letter-spacing: .068em;
  }

  .actions .btn {
    flex: 1 1 190px;
  }

  .trust-row,
  .fields {
    grid-template-columns: 1fr;
  }

  .trust-row {
    margin-top: 24px;
  }

  .trust-row div {
    padding: 15px 16px;
  }

  .trust-row strong {
    font-size: 20px;
  }

  .trust-row span {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .portrait {
    width: min(100%, 500px);
    display: flex;
    min-height: 0;
    flex-direction: column;
    margin: 0 auto;
    border: 1px solid rgba(52, 47, 42, .13);
    border-radius: 0 0 26px 26px;
    background: rgba(255, 250, 243, .62);
  }

  .portrait img {
    height: clamp(340px, 94vw, 460px);
    object-position: center 10%;
  }

  .caption {
    position: static;
    border-top-width: 2px;
    background: rgba(39, 35, 31, .94);
    padding: 17px 18px 18px;
  }

  .caption p {
    font-size: 12.5px;
    line-height: 1.55;
  }

  .team-band {
    padding: 42px 0;
  }

  .team-band .wrap,
  .section-head,
  .steps,
  .fit-grid {
    gap: 18px;
  }

  .section-head {
    margin-bottom: 30px;
  }

  .step {
    padding: 24px;
  }

  .step span {
    font-size: 23px;
  }

  .step h3,
  .model-item strong {
    margin-top: 8px;
    margin-bottom: 8px;
  }

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

  .fit-panel,
  .fit-grid > div {
    border-color: rgba(255, 250, 243, .18);
    background: rgba(255, 250, 243, .06);
    padding: 22px 20px 24px;
  }

  .section:not(.dark) .fit-grid > div {
    border: 1px solid var(--line);
    background: var(--white);
  }

  .fit-panel + .fit-panel,
  .fit-grid > div + div {
    margin-top: 4px;
  }

  .fit-grid ul {
    gap: 12px;
    margin-top: 16px;
  }

  .fit-grid li {
    color: inherit;
    font-size: 15px;
    line-height: 1.62;
    padding-left: 18px;
    position: relative;
  }

  .dark .fit-grid li {
    color: rgba(255, 250, 243, .78);
  }

  .fit-grid li::before {
    left: 0;
    margin: 0;
    position: absolute;
    top: .75em;
  }

  .fit-grid h2 {
    margin-top: 10px;
    font-size: clamp(23px, 6.4vw, 29px);
    line-height: 1.1;
  }

  .cta-band {
    padding: 34px 0;
  }

  .cta-band h2 {
    font-size: clamp(24px, 6.8vw, 31px);
    line-height: 1.12;
  }

  .grid {
    display: block;
  }

  .card,
  .model-item {
    margin-bottom: 11px;
  }

  .card {
    padding: 19px;
  }

  .card h3 {
    margin-bottom: 8px;
  }

  .service {
    min-height: 0;
  }

  .service .num {
    float: right;
    margin: 1px 0 8px 14px;
    font-size: 22px;
  }

  .proof {
    min-height: 0;
  }

  .proof strong {
    margin: 8px 0 7px;
    font-size: clamp(25px, 7vw, 31px);
  }

  .model-item {
    padding: 19px;
  }

  .form {
    padding: 20px;
    box-shadow: 0 16px 40px rgba(39, 35, 31, .09);
  }

  input,
  select,
  textarea {
    border-radius: 10px;
    font-size: 15px;
    padding: 12px;
  }

  textarea {
    min-height: 108px;
  }

  .faq details {
    padding: 17px 18px;
  }

  .faq summary {
    line-height: 1.35;
  }

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

  .team-list span {
    padding: 12px;
    text-align: left;
  }

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

  .team-role {
    min-height: 0;
  }

  .published-panel,
  .article-link {
    padding: 20px;
  }

  .article-link strong {
    font-size: clamp(22px, 6.4vw, 28px);
  }

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

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 26px, 1160px);
  }

  .hero-grid {
    padding-bottom: 32px;
  }

  .portrait img {
    height: clamp(286px, 86vw, 356px);
  }

  .caption {
    padding: 15px 16px;
  }

  .actions {
    gap: 9px;
  }

  .actions .btn,
  .field.full .btn {
    width: 100%;
  }

  .trust-row div {
    padding: 13px 14px;
  }

  .trust-row strong {
    font-size: 18px;
  }
}

/* Homepage continuum, calculator, contact, and FAQ */
.credibility-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 24px 0;
}

.credibility-row {
  display: grid;
  align-items: center;
  gap: 20px;
  grid-template-columns: repeat(3, minmax(0, 1fr)) auto;
}

.credibility-row > div {
  min-width: 0;
  border-left: 1px solid rgba(52, 47, 42, .16);
  padding-left: 18px;
}

.credibility-row > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.credibility-row strong,
.credibility-row span {
  display: block;
}

.credibility-row strong {
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.15;
}

.credibility-row span {
  margin-top: 5px;
  color: #5c544c;
  font-size: 12px;
  line-height: 1.45;
}

.continuum-section {
  background: var(--ivory);
}

.continuum-shell {
  border-top: 1px solid var(--line);
}

.continuum-visual {
  position: relative;
  height: 104px;
  overflow: clip;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(216, 203, 185, .34), rgba(248, 243, 235, .2) 55%, rgba(155, 122, 67, .08));
}

.operating-lines i {
  position: absolute;
  right: 4%;
  left: 4%;
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent 0 3%, rgba(92, 84, 76, .5) 3% 9%, transparent 9% 13%, rgba(92, 84, 76, .35) 13% 22%, transparent 22% 27%, rgba(155, 122, 67, .6) 27% 100%);
  transform-origin: right center;
  transition: transform .45s var(--ease), opacity .45s var(--ease);
}

.operating-lines i:nth-child(1) { top: 30px; transform: rotate(-2deg) translateY(4px); }
.operating-lines i:nth-child(2) { top: 52px; transform: rotate(1.4deg) translateY(-2px); }
.operating-lines i:nth-child(3) { top: 74px; transform: rotate(-1deg) translateY(5px); }

.operating-nodes i {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(52, 47, 42, .35);
  border-radius: 50%;
  background: var(--ivory);
  transition: border-color .3s var(--ease), background .3s var(--ease), transform .3s var(--ease);
}

.operating-nodes i:nth-child(1) { top: 25px; left: 5%; }
.operating-nodes i:nth-child(2) { top: 65px; left: 18%; }
.operating-nodes i:nth-child(3) { top: 42px; left: 35%; }
.operating-nodes i:nth-child(4) { top: 47px; left: 55%; }
.operating-nodes i:nth-child(5) { top: 47px; left: 74%; }
.operating-nodes i:nth-child(6) { top: 47px; left: 94%; }

.continuum-shell[data-active-stage="control"] .operating-lines i,
.continuum-shell[data-active-stage="calm"] .operating-lines i,
.continuum-shell[data-active-stage="clarity"] .operating-lines i,
.continuum-shell[data-active-stage="growth"] .operating-lines i {
  transform: rotate(0) translateY(0);
}

.continuum-shell[data-active-stage="calm"] .operating-nodes i,
.continuum-shell[data-active-stage="clarity"] .operating-nodes i,
.continuum-shell[data-active-stage="growth"] .operating-nodes i {
  border-color: var(--gold);
  background: var(--gold);
}

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

.stage-tabs button {
  min-width: 0;
  min-height: 54px;
  border: 0;
  border-right: 1px solid var(--line);
  background: transparent;
  color: #746b61;
  cursor: pointer;
  font: 650 13px/1.25 "Instrument Sans", sans-serif;
  padding: 10px 12px;
  transition: color .2s var(--ease), background .2s var(--ease);
}

.stage-tabs button:last-child {
  border-right: 0;
}

.stage-tabs button:hover,
.stage-tabs button:focus-visible {
  background: rgba(216, 203, 185, .2);
  color: var(--charcoal);
}

.stage-tabs button[aria-selected="true"] {
  background: var(--charcoal);
  color: var(--white);
}

.stage-panels article {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
}

.stage-panels article[hidden] {
  display: none;
}

.stage-panels article > div {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: clamp(20px, 2.4vw, 28px);
}

.stage-panels article > div:last-child {
  border-right: 0;
}

.stage-panels span,
.prompt-result > span,
.contact-option-list span,
.results-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.stage-panels p,
.stage-panels ul {
  margin: 0;
  color: #2e2923;
  font-size: 14px;
  line-height: 1.55;
}

.stage-panels ul {
  display: grid;
  gap: 6px;
  padding-left: 17px;
}

.company-prompt {
  display: grid;
  gap: 28px;
  grid-template-columns: .7fr 1.2fr .8fr;
  padding-top: clamp(52px, 6vw, 72px);
}

.company-prompt h3 {
  margin: 10px 0 0;
  font-size: clamp(25px, 2.6vw, 34px);
  line-height: 1.1;
}

.prompt-options {
  display: grid;
  gap: 7px;
}

.prompt-options button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: #2e2923;
  cursor: pointer;
  font: 600 13px/1.4 "Instrument Sans", sans-serif;
  padding: 12px 14px;
  text-align: left;
  transition: border-color .2s var(--ease), background .2s var(--ease), transform .2s var(--ease);
}

.prompt-options button:hover,
.prompt-options button:focus-visible,
.prompt-options button.active {
  border-color: rgba(155, 122, 67, .6);
  background: rgba(216, 203, 185, .22);
  transform: translateX(2px);
}

.prompt-result {
  align-self: start;
  border-top: 2px solid var(--gold);
  background: var(--paper);
  padding: 24px;
}

.prompt-result h4 {
  margin: 0 0 8px;
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.15;
}

.prompt-result p {
  margin: 0 0 20px;
  font-size: 14px;
}

.pathway-line {
  position: relative;
  display: grid;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pathway-line::before {
  position: absolute;
  top: 9px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.pathway-line article {
  position: relative;
  min-width: 0;
  padding-top: 32px;
}

.pathway-line article::before {
  position: absolute;
  top: 3px;
  left: 0;
  width: 13px;
  height: 13px;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  content: "";
}

.pathway-line span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pathway-line h3 {
  margin: 9px 0 10px;
  font-size: clamp(22px, 2.1vw, 27px);
  line-height: 1.12;
}

.pathway-line p {
  margin: 0;
  font-size: 15px;
}

.centered-action {
  display: flex;
  justify-content: center;
  margin-top: 38px;
}

.calculator-intro {
  background: #24211e;
  color: var(--white);
}

.calculator-preview-grid {
  display: grid;
  align-items: center;
  gap: clamp(50px, 8vw, 100px);
  grid-template-columns: 1.05fr .95fr;
}

.calculator-intro h2,
.calculator-intro h3 {
  color: var(--white);
}

.calculator-intro p {
  color: rgba(255, 250, 243, .72);
}

.illustrative-panel {
  min-width: 0;
  border: 1px solid rgba(255, 250, 243, .2);
  border-radius: 12px;
  background: rgba(255, 250, 243, .055);
  padding: clamp(24px, 3vw, 34px);
}

.illustrative-panel > strong {
  display: block;
  margin: 20px 0 8px;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(38px, 4.2vw, 48px);
  font-weight: 500;
  line-height: 1;
}

.illustrative-panel h3 {
  margin: 0 0 26px;
  font-size: 22px;
}

.illustrative-panel > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid rgba(255, 250, 243, .15);
  padding: 13px 0;
}

.illustrative-panel > div span {
  color: rgba(255, 250, 243, .68);
  font-size: 13px;
}

.illustrative-panel > div b {
  color: var(--white);
  font-size: 17px;
}

.illustrative-panel > p {
  margin: 15px 0 0;
  font-size: 12px;
}

.proof-preview-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1.25fr .875fr .875fr;
}

.proof-preview-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: clamp(22px, 2.5vw, 28px);
}

.proof-preview-grid .featured-proof {
  background: var(--paper);
}

.proof-preview-grid h3 {
  margin: 14px 0 18px;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.14;
}

.proof-preview-grid strong {
  display: block;
  color: #1b1915;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 500;
  line-height: 1;
}

.proof-preview-grid p {
  margin: 13px 0 0;
  font-size: 14px;
}

/* Calculator */
.calculator-hero {
  padding-bottom: 60px;
}

.calculator-examines {
  padding-top: 58px;
  padding-bottom: 58px;
}

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

.examination-grid > div {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 22px 16px;
}

.examination-grid > div:last-child {
  border-right: 0;
}

.examination-grid span,
.audit-sequence span,
.calculator-group-head span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
}

.examination-grid h3 {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.2;
}

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

.calculator-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.calculator-heading h2 {
  margin: 10px 0;
}

.calculator-heading p {
  margin: 0;
}

.preset-controls {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.preset-controls button,
.text-action {
  min-height: 44px;
  border: 1px solid rgba(52, 47, 42, .22);
  border-radius: 8px;
  background: transparent;
  color: var(--charcoal);
  cursor: pointer;
  font: 650 13px/1.2 "Instrument Sans", sans-serif;
  padding: 10px 13px;
}

.preset-controls button:hover,
.preset-controls button:focus-visible,
.preset-controls button.active,
.text-action:hover,
.text-action:focus-visible {
  border-color: var(--gold);
  background: rgba(155, 122, 67, .1);
}

.calculator-layout {
  display: grid;
  align-items: start;
  gap: 24px;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, .88fr);
}

.calculator-inputs {
  min-width: 0;
}

.calculator-group {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  padding: clamp(22px, 2.5vw, 28px);
}

.calculator-group + .calculator-group {
  margin-top: 14px;
}

.calculator-group-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 18px;
  padding-bottom: 14px;
}

.calculator-group-head h3 {
  margin: 0;
  font-size: 22px;
}

.calculator-fields {
  gap: 14px;
}

.calculator-fields label {
  min-height: 34px;
}

.input-suffix {
  position: relative;
}

.input-suffix input {
  width: 100%;
  padding-right: 42px;
}

.input-suffix span {
  position: absolute;
  top: 50%;
  right: 15px;
  color: #746b61;
  transform: translateY(-50%);
}

.calculator-submit {
  width: 100%;
  margin-top: 16px;
}

.calculator-disclaimer {
  margin: 13px 0 0;
  font-size: 12px;
}

.calculator-results {
  position: sticky;
  top: 88px;
  min-width: 0;
  border: 1px solid rgba(255, 250, 243, .14);
  border-radius: 12px;
  background: #24211e;
  color: var(--white);
  padding: clamp(24px, 3vw, 34px);
}

.calculator-results h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2.3vw, 30px);
  line-height: 1.12;
}

.calculator-results > p {
  color: rgba(255, 250, 243, .66);
  font-size: 12px;
}

.main-result {
  display: block;
  margin: 16px 0 8px;
  color: var(--white);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(42px, 4.5vw, 52px);
  font-weight: 500;
  line-height: 1;
}

.result-categories {
  margin-top: 24px;
}

.result-categories > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 250, 243, .13);
  padding: 13px 0;
}

.result-categories span {
  max-width: 220px;
  color: rgba(255, 250, 243, .7);
  font-size: 12px;
  line-height: 1.4;
}

.result-categories strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1;
  text-align: right;
}

.result-categories .separate-result {
  background: rgba(155, 122, 67, .09);
  margin: 0 -10px;
  padding-right: 10px;
  padding-left: 10px;
}

.planning-ranges {
  display: grid;
  gap: 7px;
  margin-top: 20px;
}

.planning-ranges > div {
  display: grid;
  align-items: center;
  gap: 3px 14px;
  grid-template-columns: 1fr auto;
  border: 1px solid rgba(255, 250, 243, .13);
  border-radius: 8px;
  padding: 12px 13px;
}

.planning-ranges span,
.planning-ranges small {
  color: rgba(255, 250, 243, .65);
  font-size: 11px;
}

.planning-ranges strong {
  grid-row: span 2;
  color: var(--white);
  font-size: 19px;
}

.planning-ranges .expected {
  border-color: rgba(197, 170, 120, .55);
  background: rgba(155, 122, 67, .1);
}

.results-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 22px;
}

.calculator-results .text-action {
  border-color: rgba(255, 250, 243, .22);
  color: var(--white);
}

.results-conversion {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.results-conversion .btn {
  width: 100%;
}

.copy-status {
  min-height: 20px;
  margin: 10px 0 0;
}

.audit-sequence {
  display: grid;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.audit-sequence > div {
  min-width: 0;
  border-right: 1px solid var(--line);
  padding: 24px 18px;
}

.audit-sequence > div:last-child {
  border-right: 0;
}

.audit-sequence h3 {
  margin: 10px 0 0;
  font-size: 18px;
  line-height: 1.18;
}

.audit-request {
  background: var(--paper);
}

.honeypot {
  display: none;
}

/* Contact */
.contact-hero .wrap {
  max-width: 1180px;
}

.contact-hero h1 {
  max-width: 760px;
}

.contact-options h2 {
  margin: 10px 0 14px;
}

.contact-option-list {
  display: grid;
  gap: 0;
  margin-top: 28px;
  border-top: 1px solid var(--line);
}

.contact-option-list > div {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.contact-option-list a:not(.text-link) {
  color: var(--charcoal);
  font-weight: 650;
}

.contact-faq-invite {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  padding: 44px 0;
}

.contact-faq-invite .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.contact-faq-invite h2 {
  margin: 8px 0;
  font-size: clamp(25px, 2.6vw, 34px);
}

.contact-faq-invite p {
  margin: 0;
}

.contact-reassurance {
  padding: 34px 0;
}

.contact-reassurance p {
  max-width: 880px;
  margin: 0;
  color: #5c544c;
}

.contact-reassurance strong {
  color: var(--charcoal);
}

/* FAQ */
.faq-page,
.faq-page p,
.faq-page summary {
  color: #2e2923;
}

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

.faq-category {
  padding-top: 58px;
  padding-bottom: 58px;
}

.faq-category:nth-child(even) {
  background: rgba(216, 203, 185, .12);
}

.faq-category-grid {
  display: grid;
  align-items: start;
  gap: clamp(38px, 7vw, 90px);
  grid-template-columns: minmax(240px, .72fr) minmax(0, 1.28fr);
}

.faq-category h2 {
  margin: 10px 0 0;
  font-size: clamp(27px, 2.8vw, 36px);
}

.faq-page .faq details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.faq-page .faq details:first-child {
  border-top: 1px solid var(--line);
}

.faq-page .faq summary {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.35;
  list-style: none;
  padding: 14px 0;
}

.faq-page .faq summary::-webkit-details-marker {
  display: none;
}

.faq-page .faq summary::after {
  flex: 0 0 auto;
  color: var(--gold);
  content: "+";
  font-size: 21px;
  font-weight: 400;
}

.faq-page .faq details[open] summary::after {
  content: "−";
}

.faq-page .faq details p {
  margin: 0;
  padding: 0 34px 18px 0;
  font-size: 15px;
}

@media (max-width: 1040px) {
  .credibility-row {
    grid-template-columns: repeat(3, 1fr);
  }

  .credibility-row .text-link {
    grid-column: 1 / -1;
  }

  .company-prompt {
    grid-template-columns: .8fr 1.2fr;
  }

  .prompt-result {
    grid-column: 1 / -1;
  }

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

  .examination-grid > div:nth-child(3) {
    border-right: 0;
  }

  .examination-grid > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }

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

  .audit-sequence > div:nth-child(3) {
    border-right: 0;
  }

  .audit-sequence > div:nth-child(-n + 3) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 920px) {
  .stage-panels article {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-panels article > div:nth-child(2) {
    border-right: 0;
  }

  .stage-panels article > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .calculator-preview-grid,
  .calculator-layout,
  .faq-category-grid {
    grid-template-columns: 1fr;
  }

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

  .proof-preview-grid .featured-proof {
    grid-column: 1 / -1;
  }

  .calculator-results {
    position: static;
  }

  .calculator-heading {
    display: block;
  }

  .preset-controls {
    justify-content: flex-start;
    margin-top: 20px;
  }
}

@media (max-width: 700px) {
  .credibility-row,
  .company-prompt,
  .pathway-line,
  .proof-preview-grid,
  .audit-sequence {
    grid-template-columns: 1fr;
  }

  .credibility-row > div {
    border-top: 1px solid rgba(52, 47, 42, .12);
    border-left: 0;
    padding-top: 14px;
    padding-left: 0;
  }

  .credibility-row > div:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .continuum-visual {
    height: 82px;
  }

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

  .stage-tabs button {
    display: none;
    min-height: 48px;
    border-right: 1px solid var(--line);
  }

  .stage-tabs button[aria-selected="true"],
  .stage-tabs button.is-previous,
  .stage-tabs button.is-next {
    display: block;
  }

  .stage-tabs button[aria-selected="true"]:first-child {
    grid-column: 1;
  }

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

  .stage-panels article > div,
  .stage-panels article > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .stage-panels article > div:last-child {
    border-bottom: 0;
  }

  .company-prompt {
    gap: 24px;
  }

  .prompt-result {
    grid-column: auto;
  }

  .pathway-line {
    gap: 0;
  }

  .pathway-line::before {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .pathway-line article {
    min-height: 130px;
    padding: 0 0 28px 34px;
  }

  .pathway-line article::before {
    top: 0;
  }

  .proof-preview-grid .featured-proof {
    grid-column: auto;
  }

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

  .examination-grid > div:nth-child(3) {
    border-right: 1px solid var(--line);
  }

  .examination-grid > div:nth-child(even) {
    border-right: 0;
  }

  .examination-grid > div:nth-child(-n + 4) {
    border-bottom: 1px solid var(--line);
  }

  .audit-sequence > div,
  .audit-sequence > div:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .audit-sequence > div:last-child {
    border-bottom: 0;
  }

  .contact-faq-invite .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .stage-tabs button {
    font-size: 11px;
    padding: 8px 6px;
  }

  .prompt-options button {
    min-height: 52px;
  }

  .calculator-preview-grid .actions,
  .results-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .calculator-preview-grid .actions .btn,
  .calculator-preview-grid .actions .text-link,
  .results-actions button {
    width: 100%;
  }

  .illustrative-panel > div,
  .result-categories > div {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .result-categories strong {
    text-align: left;
  }

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

  .examination-grid > div,
  .examination-grid > div:nth-child(3),
  .examination-grid > div:nth-child(even) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .examination-grid > div:last-child {
    border-bottom: 0;
  }

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

  .planning-ranges > div {
    grid-template-columns: 1fr;
  }

  .planning-ranges strong {
    grid-row: auto;
  }
}

@media print {
  .nav,
  .calculator-inputs,
  .calculator-examines,
  .audit-section,
  .audit-request,
  .cta-band,
  footer,
  .results-actions,
  .results-conversion {
    display: none !important;
  }

  .calculator-section {
    background: #fff;
  }

  .calculator-layout {
    display: block;
  }

  .calculator-results {
    position: static;
    color: #1b1915;
    background: #fff;
    border-color: #999;
  }

  .calculator-results h2,
  .calculator-results strong,
  .calculator-results .text-link {
    color: #1b1915;
  }
}

/* Compact editorial refinement */
:root {
  --shadow: 0 10px 30px rgba(39, 35, 31, .055);
  --space-section: clamp(72px, 7vw, 96px);
  --space-page: clamp(72px, 6vw, 88px);
  --h1: clamp(48px, 4.8vw, 64px);
  --h2: clamp(30px, 3.2vw, 42px);
  --h3: clamp(22px, 2.1vw, 28px);
  --body: clamp(15px, 1.25vw, 17px);
}

html,
body {
  max-width: 100%;
}

body {
  overflow-x: visible;
  line-height: 1.62;
}

h1,
h2,
h3,
h4,
strong,
p,
a,
li,
span {
  overflow-wrap: anywhere;
  word-break: normal;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

p {
  max-width: 620px;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.65;
}

.wrap {
  width: min(1180px, calc(100% - clamp(32px, 5vw, 64px)));
}

.eyebrow,
.model-label,
.service-category {
  font-size: 11px;
  letter-spacing: .14em;
}

.nav-inner {
  min-height: 66px;
}

.nav-links {
  gap: clamp(13px, 1.45vw, 20px);
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: none;
}

.btn {
  min-height: 46px;
  border-radius: 9px;
  box-shadow: none;
  padding: 13px 23px 12px;
  font-size: 14px;
  letter-spacing: .025em;
  text-transform: none;
}

.text-link {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid rgba(155, 122, 67, .5);
  color: var(--charcoal);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.35;
  padding: 5px 0 4px;
}

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

.light-link {
  border-bottom-color: rgba(255, 250, 243, .45);
  color: var(--white);
}

.section,
.global-section,
.global-gap-section,
.seo-section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.page-hero,
.diagnostic-hero,
.seo-hero {
  padding-top: var(--space-page);
  padding-bottom: var(--space-page);
}

.page-hero h1,
.diagnostic-hero h1,
.seo-hero h1 {
  max-width: 760px;
  margin: 15px 0 14px;
  font-size: clamp(40px, 4.1vw, 54px);
  line-height: 1.08;
}

.section h2,
.team-band h2,
.cta-band h2,
.global-section h2,
.seo-section h2 {
  max-width: 720px;
  font-size: clamp(30px, 3.2vw, 42px);
  line-height: 1.12;
}

.section-head {
  align-items: start;
  gap: clamp(28px, 4vw, 52px);
  margin-bottom: 34px;
}

.panel,
.card,
.step,
.form,
.diagnostic-note,
.faq details,
.fit-panel,
.model-item,
.seo-card,
.seo-scenario,
.scenario-card,
.global-pillar {
  min-height: 0;
  border-radius: 12px;
  box-shadow: none;
}

.card,
.step,
.panel,
.form,
.diagnostic-note,
.model-item {
  padding: clamp(22px, 2.3vw, 28px);
}

.card:hover,
.step:hover,
.model-item:hover {
  box-shadow: none;
  transform: translateY(-2px);
}

.hero {
  overflow: visible;
}

.hero-grid {
  min-height: 0;
  align-items: center;
  gap: clamp(44px, 6vw, 74px);
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  padding-top: clamp(72px, 6vw, 88px);
  padding-bottom: clamp(72px, 6vw, 88px);
}

.hero-copy {
  min-width: 0;
}

.hero h1 {
  max-width: 650px;
  margin: 16px 0 15px;
  font-size: clamp(48px, 4.8vw, 64px);
  font-weight: 400;
  line-height: 1.06;
}

.hero .lede {
  max-width: 620px;
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.65;
}

.hero-actions {
  align-items: center;
  gap: 18px;
  margin-top: 22px;
}

.hero-support {
  max-width: 600px;
  margin: 20px 0 0;
  color: #5c544c;
  font-size: 15px;
  line-height: 1.6;
}

.home-page .hero .lede {
  margin: 0;
}

.home-page .hero-solution {
  max-width: 620px;
  margin: 18px 0 0;
  color: #4f4841;
  font-size: 15px;
  line-height: 1.65;
}

.home-page .hero-primary {
  border-color: var(--gold);
  background: var(--gold);
}

.home-page .hero-primary:hover {
  border-color: #876735;
  background: #876735;
}

.home-page .hero-secondary {
  border-color: rgba(155, 122, 67, .58);
  background: transparent;
  color: var(--charcoal) !important;
}

.home-page .hero-secondary:hover {
  border-color: var(--gold);
  background: rgba(255, 250, 243, .58);
}

.home-page .hero-bottom-line {
  max-width: 600px;
  margin: 22px 0 0;
  border-left: 2px solid var(--gold);
  color: #5c544c;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
  padding-left: 14px;
}

.portrait {
  display: flex;
  min-height: 0;
  overflow: visible;
  flex-direction: column;
  border: 1px solid rgba(155, 122, 67, .34);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.portrait img,
.about-img img,
.portrait:hover img,
.about-img:hover img {
  width: 100%;
  height: clamp(430px, 41vw, 560px);
  filter: none;
  object-fit: cover;
  object-position: center top;
  transform: none;
}

.caption {
  position: static;
  border-top: 1px solid rgba(155, 122, 67, .36);
  background: transparent;
  padding: 14px 0 0;
}

.caption .eyebrow {
  color: var(--gold);
}

.caption p {
  margin-top: 5px;
  color: #5c544c;
  font-size: 13px;
}

.home-signal {
  padding: 18px 0;
}

.signal-ticker,
.ticker-group {
  min-height: 58px;
}

.ticker-group {
  padding-top: 15px;
  padding-bottom: 15px;
}

.team-band {
  padding-top: clamp(64px, 6vw, 82px);
  padding-bottom: clamp(64px, 6vw, 82px);
}

.trust-row,
.service,
.proof,
.insight-card,
.team-role {
  min-height: 0;
}

/* Services */
.services-hero .wrap,
.proof-hero .wrap {
  max-width: 1180px;
}

.services-hero .lede,
.proof-hero .lede {
  max-width: 620px;
}

.services-architecture > .wrap + .wrap {
  margin-top: clamp(64px, 7vw, 88px);
}

.service-rows {
  border-top: 1px solid var(--line);
}

.service-row {
  display: grid;
  min-width: 0;
  align-items: start;
  border-bottom: 1px solid var(--line);
  gap: clamp(24px, 3vw, 44px);
  grid-template-columns: minmax(74px, .1fr) minmax(0, .52fr) minmax(250px, .38fr);
  padding: clamp(28px, 3.5vw, 42px) 0;
}

.service-index {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.service-index .num {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 3vw, 40px);
  line-height: 1;
}

.service-category {
  color: #5c544c;
  font-weight: 700;
  text-transform: uppercase;
}

.service-primary,
.service-details {
  min-width: 0;
}

.service-primary h3,
.capability-rows h3 {
  max-width: 540px;
  margin: 0 0 11px;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.12;
}

.service-primary p,
.service-details p,
.capability-rows p {
  margin: 0 0 16px;
  font-size: 15px;
}

.service-details strong {
  display: block;
  margin-bottom: 6px;
  color: var(--charcoal);
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.service-details ul {
  display: grid;
  gap: 8px;
  margin: 15px 0 0;
  padding: 0;
  list-style: none;
}

.service-details li {
  border-top: 1px solid rgba(52, 47, 42, .1);
  color: #2e2923;
  font-size: 14px;
  padding-top: 8px;
}

.compact-head {
  display: block;
  margin-bottom: 24px;
}

.capability-rows {
  border-top: 1px solid var(--line);
}

.capability-rows article {
  display: grid;
  align-items: start;
  border-bottom: 1px solid var(--line);
  gap: clamp(24px, 5vw, 72px);
  grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr);
  padding: 24px 0;
}

.capability-rows article:nth-child(even) {
  background: rgba(216, 203, 185, .12);
}

.capability-rows h3,
.capability-rows p {
  margin: 0;
}

.build-strip,
.engagement-line {
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.build-columns {
  display: grid;
  margin-top: 22px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.build-columns > div {
  min-width: 0;
  border-left: 1px solid var(--line);
  padding: 0 20px;
}

.build-columns > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.build-columns h3,
.process-points h3 {
  margin: 0 0 8px;
  font-size: 20px;
  line-height: 1.15;
}

.build-columns p,
.process-points p {
  margin: 0;
  font-size: 14px;
}

.process-points {
  position: relative;
  display: grid;
  gap: 30px;
  margin-top: 24px;
  grid-template-columns: repeat(3, 1fr);
}

.process-points::before {
  position: absolute;
  top: 6px;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--line);
  content: "";
}

.process-points > div {
  position: relative;
  padding-top: 25px;
}

.process-points span {
  position: absolute;
  top: 0;
  left: 0;
  width: 13px;
  height: 13px;
  overflow: hidden;
  border: 3px solid var(--ivory);
  border-radius: 50%;
  background: var(--gold);
  color: transparent;
}

.selection-guide {
  display: grid;
  align-items: end;
  gap: clamp(28px, 5vw, 70px);
  grid-template-columns: 1fr .8fr;
  border-top: 1px solid var(--line);
  padding-top: 34px;
}

.selection-guide h2 {
  margin: 10px 0 0;
}

.selection-guide p {
  margin: 0;
}

/* Industry proof */
.proof-hero h1 {
  max-width: 720px;
  font-size: clamp(42px, 4vw, 52px);
}

.proof-labels {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.proof-labels span,
.model-label {
  border: 1px solid rgba(52, 47, 42, .2);
  border-radius: 4px;
  color: #5c544c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.2;
  padding: 7px 9px 6px;
  text-transform: uppercase;
}

.industry-proof-page .grid {
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.industry-proof-page .proof,
.industry-proof-page .proof.wide {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  grid-column: auto;
  border-radius: 12px;
  padding: clamp(22px, 2.4vw, 28px);
}

.industry-proof-page .proof:first-child {
  display: grid;
  align-items: end;
  gap: 12px 30px;
  grid-column: 1 / -1;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

.industry-proof-page .proof:first-child .model-label,
.industry-proof-page .proof:first-child .eyebrow {
  grid-column: 1;
}

.industry-proof-page .proof:first-child strong,
.industry-proof-page .proof:first-child p {
  grid-column: 2;
}

.model-label {
  width: fit-content;
  margin-bottom: 16px;
}

.industry-proof-page .proof .eyebrow {
  color: #5c544c;
}

.industry-proof-page .proof strong {
  margin: 12px 0 10px;
  color: #1b1915;
  font-size: clamp(30px, 3vw, 38px);
  line-height: 1.06;
}

.industry-proof-page .proof:first-child strong {
  font-size: clamp(36px, 3.6vw, 44px);
}

.industry-proof-page .proof p {
  color: #2e2923;
  font-size: 15px;
}

/* Compact form and result-like panels */
input,
select,
textarea {
  min-height: 48px;
  border-radius: 9px;
  font-size: 16px;
  padding: 12px 14px;
}

label {
  font-size: 13px;
}

.fields {
  gap: 16px;
}

.form {
  box-shadow: none;
}

.proof strong,
.model-item strong {
  max-width: 100%;
  font-size: clamp(30px, 3.2vw, 42px);
}

.global-hero-grid,
.seo-hero-grid {
  min-height: 0;
}

.global-pillar p,
.scenario-card h3 {
  min-height: 0;
}

.global-page,
.seo-page {
  overflow-x: visible;
}

@media (min-width: 1440px) {
  .industry-proof-page .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .industry-proof-page .proof:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 920px) {
  :root {
    --space-section: clamp(48px, 8vw, 64px);
    --space-page: clamp(48px, 8vw, 60px);
    --h1: clamp(36px, 8vw, 43px);
    --h2: clamp(26px, 6vw, 32px);
    --h3: clamp(21px, 5vw, 24px);
  }

  .nav.open .nav-links a {
    font-size: 14px;
  }

  .hero-grid {
    gap: 34px;
    grid-template-columns: 1fr;
    padding-top: var(--space-page);
    padding-bottom: var(--space-page);
  }

  .hero h1 {
    max-width: 650px;
    font-size: clamp(36px, 8vw, 43px);
    line-height: 1.07;
  }

  .page-hero h1,
  .diagnostic-hero h1,
  .seo-hero h1 {
    max-width: 720px;
    font-size: clamp(32px, 7vw, 38px);
  }

  .section h2,
  .team-band h2,
  .cta-band h2,
  .global-section h2,
  .seo-section h2 {
    font-size: clamp(26px, 6vw, 32px);
  }

  .portrait {
    order: initial;
    width: min(100%, 560px);
    margin: 0;
    border-radius: 0;
  }

  .portrait img,
  .about-img img,
  .portrait:hover img,
  .about-img:hover img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .service-row {
    gap: 20px 28px;
    grid-template-columns: 76px minmax(0, 1fr);
  }

  .service-details {
    grid-column: 2;
  }

  .capability-rows article,
  .selection-guide {
    grid-template-columns: 1fr;
  }

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

  .build-columns > div {
    border-top: 1px solid var(--line);
    border-left: 0;
    padding: 18px 18px 18px 0;
  }

  .process-points {
    gap: 22px;
  }

  .proof-hero h1 {
    font-size: clamp(34px, 7vw, 40px);
  }

  .industry-proof-page .proof:first-child {
    display: flex;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  body,
  p {
    font-size: 15px;
  }

  .wrap {
    width: min(100% - 30px, 1180px);
  }

  .page-hero,
  .diagnostic-hero,
  .seo-hero {
    padding-top: var(--space-page);
    padding-bottom: var(--space-page);
  }

  .hero-actions,
  .services-hero .actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .services-hero .actions .btn {
    width: 100%;
    flex: none;
  }

  .hero-actions .text-link,
  .services-hero .actions .text-link {
    width: fit-content;
  }

  .btn {
    min-height: 48px;
    font-size: 14px;
    padding-right: 20px;
    padding-left: 20px;
  }

  .card,
  .step,
  .panel,
  .form,
  .diagnostic-note,
  .model-item {
    padding: 20px;
  }

  .services-architecture > .wrap + .wrap {
    margin-top: 56px;
  }

  .service-row {
    display: block;
    padding: 28px 0;
  }

  .service-index {
    flex-direction: row;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 16px;
  }

  .service-index .num {
    font-size: clamp(27px, 8vw, 32px);
  }

  .service-primary h3,
  .capability-rows h3 {
    font-size: clamp(21px, 6vw, 24px);
  }

  .service-details {
    margin-top: 22px;
  }

  .capability-rows article {
    gap: 10px;
    padding: 22px 0;
  }

  .build-columns,
  .process-points,
  .industry-proof-page .grid {
    grid-template-columns: 1fr;
  }

  .process-points {
    gap: 0;
  }

  .process-points::before {
    top: 0;
    bottom: 0;
    left: 6px;
    width: 1px;
    height: auto;
  }

  .process-points > div {
    min-height: 86px;
    padding: 0 0 25px 34px;
  }

  .industry-proof-page .proof strong,
  .industry-proof-page .proof:first-child strong {
    font-size: clamp(30px, 9vw, 38px);
  }

  .proof-labels {
    gap: 6px;
  }

  .proof-labels span {
    font-size: 11px;
    padding: 6px 8px 5px;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 26px, 1180px);
  }

  .hero-grid {
    padding-bottom: 48px;
  }

  .portrait img,
  .about-img img,
  .portrait:hover img,
  .about-img:hover img {
    height: auto;
  }
}

#calculator,
#audit,
#audit-request,
#inquiry {
  scroll-margin-top: 82px;
}

@media (max-width: 700px) {
  body.global-page {
    overflow-x: visible;
  }
}

/* Final cohesive editorial system */
:root {
  --ivory: #F5EFE5;
  --paper: #EFE6D9;
  --beige: #BBA895;
  --mist: #E8E0D6;
  --charcoal: #1B1915;
  --ink: #2E2923;
  --muted: #665D54;
  --gold: #A8793D;
  --gold-soft: #C8A978;
  --line: rgba(46, 41, 35, .16);
  --white: #F5EFE5;
  --space-section: clamp(72px, 7vw, 94px);
  --space-page: clamp(72px, 6vw, 88px);
  --h1: clamp(48px, 4.4vw, 58px);
  --h2: clamp(30px, 3vw, 38px);
  --h3: clamp(21px, 2vw, 27px);
  --body: clamp(15.5px, 1.15vw, 17px);
}

body {
  background: var(--ivory);
  color: var(--ink);
  font-size: var(--body);
  line-height: 1.62;
}

p,
li {
  color: var(--muted);
  font-size: clamp(15.5px, 1.15vw, 17px);
  line-height: 1.64;
}

h1,
h2,
h3,
h4 {
  color: var(--charcoal);
  line-height: 1.1;
}

.wrap {
  width: min(1200px, calc(100% - clamp(40px, 7vw, 112px)));
}

.nav {
  background: rgba(245, 239, 229, .96);
}

.nav-links {
  gap: clamp(12px, 1.2vw, 18px);
  font-size: 14px;
  letter-spacing: 0;
}

.nav-links a {
  padding: 11px 1px;
}

.btn {
  min-height: 46px;
  border-color: var(--gold);
  border-radius: 9px;
  background: var(--gold);
  box-shadow: none;
  color: #fffaf3 !important;
  font-size: 14px;
  padding: 12px 23px;
}

.btn:hover,
.btn:focus-visible {
  border-color: #8D642F;
  background: #8D642F;
  box-shadow: none;
}

.hero h1 {
  font-size: clamp(48px, 4.4vw, 58px);
}

.page-hero h1,
.diagnostic-hero h1,
.seo-hero h1,
.proof-hero h1 {
  font-size: clamp(40px, 3.8vw, 48px);
}

.section h2,
.team-band h2,
.cta-band h2,
.global-section h2,
.seo-section h2 {
  font-size: clamp(30px, 3vw, 38px);
}

.section h3,
.service-primary h3,
.capability-rows h3 {
  font-size: clamp(21px, 2vw, 27px);
}

.card,
.panel,
.step,
.form,
.model-item,
.faq details,
.case-study {
  border-radius: 12px;
  box-shadow: none;
}

/* Homepage operational continuum */
.stage-tabs button {
  position: relative;
  min-height: 52px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
}

.stage-tabs button[aria-selected="true"] {
  background: rgba(168, 121, 61, .06);
  color: var(--gold);
}

.stage-tabs button[aria-selected="true"]::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.continuum-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0 0;
}

.stage-announcement {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

/* Services editorial rows and accordions */
.service-row {
  grid-template-columns: minmax(72px, 8%) minmax(0, 52%) minmax(230px, 40%);
}

.service-accordions {
  grid-column: 2 / -1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 8px;
}

.service-accordions details {
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.service-accordions summary {
  min-height: 48px;
  padding: 14px 28px 12px 0;
  color: var(--ink);
  font-size: 14px;
}

.service-accordions details p {
  margin: 0;
  padding: 0 18px 16px 0;
  font-size: 15.5px;
}

.capability-rows article:nth-child(even) {
  background: transparent;
}

.selection-guide {
  align-items: start;
}

/* Industry Proof featured models, filters, and expandable library */
.featured-model-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.featured-model-grid > a {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  align-items: flex-start;
  background: var(--ivory);
  padding: clamp(22px, 3vw, 34px);
}

.featured-model-grid > a:hover,
.featured-model-grid > a:focus-visible {
  background: var(--paper);
}

.featured-model-primary {
  grid-row: span 2;
  justify-content: flex-end;
}

.featured-model-grid h3 {
  max-width: 540px;
  margin: 13px 0 18px;
}

.featured-model-grid strong {
  display: block;
  margin: auto 0 18px;
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(34px, 3.4vw, 44px);
  font-weight: 400;
  line-height: 1;
}

.industry-filter {
  margin-bottom: 28px;
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.filter-buttons button {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: 600 13px/1.25 "Instrument Sans", sans-serif;
  padding: 9px 13px;
}

.filter-buttons button:hover,
.filter-buttons button:focus-visible,
.filter-buttons button.active {
  border-color: var(--gold);
  background: rgba(168, 121, 61, .08);
  color: var(--gold);
}

.filter-select-label,
#industry-filter-select {
  display: none;
}

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

.case-study {
  min-width: 0;
  border: 1px solid var(--line);
  background: rgba(255, 250, 243, .26);
}

.case-study[hidden] {
  display: none;
}

.case-study summary {
  display: flex;
  min-height: 100%;
  cursor: pointer;
  flex-direction: column;
  align-items: flex-start;
  list-style: none;
  padding: clamp(20px, 2.5vw, 28px);
}

.case-study summary::-webkit-details-marker {
  display: none;
}

.case-study summary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.case-study .model-label {
  margin-bottom: 15px;
}

.case-industry {
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(21px, 2vw, 26px);
  line-height: 1.12;
}

.case-challenge {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.58;
}

.case-study summary > strong {
  margin-top: auto;
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(32px, 3.1vw, 42px);
  font-weight: 400;
  line-height: 1;
}

.case-benefit {
  margin-top: 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 650;
}

.case-action {
  margin-top: 18px;
  border-bottom: 1px solid rgba(168, 121, 61, .55);
  color: var(--gold);
  font-size: 14px;
  font-weight: 650;
  padding-bottom: 3px;
}

.case-action::after {
  content: " →";
}

.case-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 28px;
  border-top: 1px solid var(--line);
  padding: clamp(20px, 2.5vw, 28px);
}

.case-body > div,
.case-body > p {
  min-width: 0;
  margin: 0;
}

.case-body h3 {
  margin: 0 0 8px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.case-body p,
.case-body li {
  margin: 0;
  font-size: 15px;
}

.case-impact {
  border-left: 2px solid var(--gold);
  padding-left: 16px;
}

.case-impact span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.case-impact strong {
  display: block;
  margin-top: 7px;
  color: var(--charcoal);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 400;
  line-height: 1;
}

.model-disclaimer {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.filter-status {
  margin-top: 18px;
  font-size: 14px;
}

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

.methodology-grid > div {
  min-width: 0;
  border-bottom: 1px solid var(--line);
  padding: 22px 24px 22px 0;
}

.methodology-grid > div:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
  padding-left: 24px;
}

.methodology-grid h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.methodology-grid p {
  margin: 0;
  font-size: 15px;
}

.methodology-disclaimer {
  margin-top: 26px;
  border-left: 2px solid var(--gold);
  padding-left: 18px;
}

.methodology-disclaimer strong {
  color: var(--charcoal);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.methodology-disclaimer p {
  margin: 7px 0 0;
}

@media (min-width: 1440px) {
  .case-study-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1080px) {
  .mobile-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    display: none;
  }

  .nav.open .nav-links {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    padding: 14px clamp(20px, 5vw, 44px) 22px;
  }

  .nav.open .nav-links a,
  .nav.open .nav-links .btn {
    display: flex;
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 12px 4px;
  }

  .nav.open .nav-links .btn {
    width: auto;
    justify-content: center;
    margin-top: 8px;
    padding-right: 20px;
    padding-left: 20px;
  }
}

@media (max-width: 920px) {
  :root {
    --space-section: clamp(48px, 8vw, 64px);
    --space-page: clamp(48px, 8vw, 60px);
    --h1: clamp(34px, 8vw, 41px);
    --h2: clamp(26px, 6vw, 32px);
    --h3: clamp(20px, 5vw, 24px);
  }

  .hero h1 {
    font-size: clamp(34px, 8vw, 41px);
  }

  .page-hero h1,
  .diagnostic-hero h1,
  .seo-hero h1,
  .proof-hero h1 {
    font-size: clamp(31px, 7vw, 37px);
  }

  .service-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .service-details,
  .service-accordions {
    grid-column: 2;
  }

  .featured-model-grid {
    grid-template-columns: 1fr 1fr;
  }

  .featured-model-primary {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .methodology-grid > div:not(:nth-child(3n + 1)) {
    border-left: 0;
    padding-left: 0;
  }

  .methodology-grid > div:nth-child(even) {
    border-left: 1px solid var(--line);
    padding-left: 22px;
  }
}

@media (max-width: 700px) {
  .wrap {
    width: min(100% - 40px, 1200px);
  }

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

  .stage-tabs button,
  .stage-tabs button[aria-selected="true"],
  .stage-tabs button.is-previous,
  .stage-tabs button.is-next {
    display: block;
    min-height: 48px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .stage-tabs button:nth-child(even) {
    border-right: 0;
  }

  .stage-tabs button[aria-selected="true"]::after {
    right: 10px;
    left: 10px;
  }

  .continuum-action {
    align-items: stretch;
    flex-direction: column;
  }

  .continuum-action .btn {
    width: 100%;
  }

  .service-row {
    display: block;
  }

  .service-accordions {
    display: block;
    margin-top: 20px;
  }

  .build-columns,
  .methodology-grid,
  .case-study-grid,
  .featured-model-grid {
    grid-template-columns: 1fr;
  }

  .featured-model-primary {
    grid-column: auto;
  }

  .filter-buttons {
    display: none;
  }

  .filter-select-label,
  #industry-filter-select {
    display: block;
  }

  .filter-select-label {
    margin-bottom: 7px;
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
  }

  #industry-filter-select {
    width: 100%;
  }

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

  .methodology-grid > div,
  .methodology-grid > div:nth-child(even),
  .methodology-grid > div:not(:nth-child(3n + 1)) {
    border-left: 0;
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 430px) {
  .wrap {
    width: min(100% - 40px, 1200px);
  }
}

/* Services starting-point guide */
.selection-rows {
  border-top: 1px solid var(--line);
}

.selection-rows > div {
  display: grid;
  align-items: baseline;
  gap: 18px 28px;
  grid-template-columns: 52px minmax(0, 1fr) minmax(260px, .9fr);
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

.selection-rows span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 24px;
}

.selection-rows p,
.selection-rows strong {
  margin: 0;
}

.selection-rows strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 650;
}

.case-study-grid {
  align-items: start;
}

.case-study {
  align-self: start;
}

.case-study summary {
  min-height: 0;
}

@media (max-width: 700px) {
  .selection-rows > div {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .selection-rows strong {
    grid-column: 2;
  }
}

/* Focused spacing and navigation corrections */
.nav-inner {
  flex-wrap: nowrap;
}

.brand {
  flex: 0 0 auto;
}

.nav-links {
  min-width: 0;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: clamp(14px, 1.25vw, 18px);
  font-size: clamp(12.5px, .9vw, 13.5px);
  white-space: nowrap;
}

.nav-links a,
.nav-links .btn {
  flex: 0 0 auto;
  white-space: nowrap;
}

.nav-links .btn {
  padding-right: clamp(16px, 1.4vw, 20px);
  padding-left: clamp(16px, 1.4vw, 20px);
  font-size: clamp(12.5px, .9vw, 13.5px);
}

.home-page .caption {
  padding: 13px 18px 16px;
}

.home-page .caption .eyebrow,
.home-page .caption p {
  max-width: 100%;
}

.home-page .caption p {
  margin-top: 7px;
  line-height: 1.55;
}

.continuum-visual {
  display: none;
}

.featured-models {
  padding-top: clamp(64px, 6vw, 80px);
  padding-bottom: clamp(64px, 6vw, 80px);
}

.featured-models .section-head {
  margin-bottom: 28px;
}

.featured-models .section-head h2 {
  font-size: clamp(30px, 2.8vw, 36px);
}

.featured-model-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 22px);
  border: 0;
  background: transparent;
}

.featured-model-grid > a,
.featured-model-grid > a.featured-model-primary {
  min-height: 0;
  grid-row: auto;
  border: 1px solid var(--line);
  background: transparent;
  padding: clamp(22px, 2vw, 26px);
}

.featured-model-grid h3 {
  margin: 12px 0 18px;
  font-size: clamp(20px, 1.7vw, 24px);
}

.featured-model-grid strong {
  margin: auto 0 18px;
  font-size: clamp(32px, 3vw, 40px);
}

.point-of-view-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.point-of-view-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(168, 121, 61, .45);
}

.point-of-view-grid article {
  display: grid;
  min-width: 0;
  gap: 16px;
  grid-template-columns: 34px minmax(0, 1fr);
  border-bottom: 1px solid var(--line);
  padding: 24px 26px 24px 0;
}

.point-of-view-grid article:nth-child(even) {
  border-left: 1px solid var(--line);
  padding-right: 0;
  padding-left: 26px;
}

.point-of-view-grid article > span {
  color: var(--gold);
  font-family: "Newsreader", Georgia, serif;
  font-size: 18px;
  line-height: 1.2;
}

.point-of-view-grid h3 {
  margin: 0 0 10px;
  color: var(--charcoal);
  font-size: clamp(21px, 1.9vw, 25px);
}

.point-of-view-grid p {
  max-width: 560px;
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
}

.insights-authority-note {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}

.insights-authority-note .wrap {
  display: flex;
  align-items: baseline;
  gap: 18px 28px;
}

.insights-authority-note .eyebrow {
  flex: 0 0 auto;
}

.insights-authority-note p {
  max-width: 760px;
  margin: 0;
}

.insights-authority-note strong {
  color: var(--charcoal);
}

@media (min-width: 1121px) {
  .nav-links .btn {
    display: inline-flex;
  }
}

@media (max-width: 1120px) {
  .mobile-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-links {
    display: none;
  }

  .nav.open .nav-links {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: flex;
    max-height: calc(100dvh - 66px);
    overflow-y: auto;
    align-items: flex-start;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    background: var(--ivory);
    flex-direction: column;
    gap: 0;
    overscroll-behavior: contain;
    padding: 14px clamp(20px, 5vw, 44px) 22px;
    white-space: normal;
  }

  .nav.open .nav-links a,
  .nav.open .nav-links .btn {
    display: flex;
    width: 100%;
    min-height: 44px;
    justify-content: flex-start;
    padding: 12px 4px;
    white-space: nowrap;
  }

  .nav.open .nav-links .btn {
    width: auto;
    justify-content: center;
    margin-top: 8px;
    padding-right: 18px;
    padding-left: 18px;
  }
}

@media (max-width: 920px) {
  .featured-model-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .featured-model-grid > a:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  .featured-models {
    padding-top: clamp(48px, 9vw, 64px);
    padding-bottom: clamp(48px, 9vw, 64px);
  }

  .featured-model-grid,
  .point-of-view-grid {
    grid-template-columns: 1fr;
  }

  .featured-model-grid > a:last-child {
    grid-column: auto;
  }

  .point-of-view-grid article,
  .point-of-view-grid article:nth-child(even) {
    border-left: 0;
    padding: 20px 0;
  }

  .insights-authority-note {
    padding: 20px 0;
  }

  .insights-authority-note .wrap {
    display: block;
  }

  .insights-authority-note p {
    margin-top: 8px;
  }
}

/* Preserve the approved About section while separating new viewpoints */
.point-of-view-section {
  background: var(--charcoal);
}

.point-of-view-grid {
  margin-bottom: 28px;
  border: 1px solid rgba(168, 121, 61, .5);
  background: var(--ivory);
  padding-right: 26px;
  padding-left: 26px;
}

.point-of-view-grid + .team-depth-grid {
  margin-top: 14px;
}

@media (max-width: 700px) {
  .point-of-view-grid {
    padding-right: 20px;
    padding-left: 20px;
  }
}

/* About team positioning */
.founder-team-positioning {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.founder-team-positioning h3 {
  margin: 0 0 10px;
  font-size: clamp(21px, 2vw, 25px);
}

.founder-team-positioning p {
  margin: 0;
}

.about-team-section .section-head {
  grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
}

.team-section-introduction p {
  margin: 0;
}

.team-section-introduction p + p {
  margin-top: 14px;
}

.team-capability-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid rgba(168, 121, 61, .55);
}

.team-capability-list article {
  min-width: 0;
  border-bottom: 1px solid rgba(245, 239, 229, .16);
  padding: 24px 28px 24px 0;
}

.team-capability-list article:nth-child(even) {
  border-left: 1px solid rgba(245, 239, 229, .16);
  padding-right: 0;
  padding-left: 28px;
}

.team-capability-list h3 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(21px, 1.9vw, 25px);
}

.team-capability-list p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 250, 243, .74);
  font-size: 15.5px;
}

.team-experience-statement {
  margin-top: 28px;
  border-left: 2px solid var(--gold);
  padding-left: 20px;
}

.team-experience-statement p {
  max-width: 860px;
  margin: 0;
}

.team-experience-statement p + p {
  margin-top: 10px;
  color: var(--white);
  font-weight: 650;
}

/* Mobile-only refinement system */
@media (max-width: 767px) {
  .nav-inner {
    width: min(100% - 40px, 1200px);
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    max-width: calc(100% - 64px);
    font-size: 18px;
    white-space: nowrap;
  }

  .mobile-toggle {
    display: inline-flex;
    min-width: 44px;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(46, 41, 35, .18);
    border-radius: 8px;
    padding: 8px 10px;
  }

  .nav.open .nav-links,
  .global-page .nav.open .nav-links {
    top: 74px;
    max-height: calc(100dvh - 74px);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .home-page .section,
  .services-page .section,
  .calculator-page .section {
    padding-top: clamp(48px, 11vw, 60px);
    padding-bottom: clamp(48px, 11vw, 60px);
  }

  .home-page .hero-grid {
    gap: 24px;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .home-page .hero-copy {
    display: flex;
    flex-direction: column;
  }

  .home-page .hero-copy > .eyebrow { order: 1; }
  .home-page .hero-copy > h1 { order: 2; }
  .home-page .hero-copy > .lede { order: 3; }
  .home-page .hero-copy > .hero-solution { order: 4; }
  .home-page .hero-copy > .hero-actions { order: 5; }
  .home-page .hero-copy > .hero-bottom-line { order: 6; }

  .home-page .hero h1 {
    margin-top: 14px;
    margin-bottom: 14px;
    font-size: clamp(36px, 10vw, 41px);
    line-height: 1.07;
  }

  .home-page .hero .lede,
  .home-page .hero-solution {
    font-size: 16px;
    line-height: 1.58;
  }

  .home-page .hero-solution {
    margin-top: 16px;
  }

  .home-page .hero-actions {
    align-items: stretch;
    gap: 10px;
    margin-top: 20px;
  }

  .home-page .hero-actions .btn {
    width: 100%;
    min-height: 50px;
    padding: 13px 20px;
  }

  .home-page .hero-actions .hero-secondary {
    width: 100%;
    min-height: 50px;
  }

  .home-page .hero-bottom-line {
    margin-top: 20px;
    font-size: 14px;
  }

  .home-page .portrait {
    margin-top: 0;
  }

  .home-page .calculator-preview-grid {
    gap: 20px;
  }

  .home-page .calculator-intro .actions {
    margin-top: 18px;
  }

  .home-page .calculator-intro .actions .btn {
    width: 100%;
    min-height: 50px;
    border-radius: 9px;
    padding: 13px 20px;
  }

  .home-page .illustrative-panel {
    padding: 20px;
  }

  .home-page .illustrative-panel > strong {
    font-size: clamp(34px, 10vw, 40px);
  }

  .home-page .illustrative-panel h3 {
    margin-bottom: 14px;
    font-size: 21px;
  }

  .home-page .illustrative-panel > div,
  .home-page .illustrative-panel > div:nth-child(n) {
    display: flex;
    min-height: 0;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    gap: 12px;
    border-top: 1px solid rgba(245, 239, 229, .18);
    padding: 11px 0;
  }

  .home-page .illustrative-panel > p {
    margin-top: 12px;
  }

  .services-page .service-row {
    padding: 34px 0;
  }

  .services-page .service-index {
    margin-bottom: 12px;
  }

  .services-page .service-primary h3 {
    margin-bottom: 12px;
  }

  .services-page .service-primary p {
    margin-bottom: 16px;
  }


  .services-page .service-details {
    margin-top: 18px;
  }

  .services-page .service-details ul {
    gap: 10px;
    margin-top: 12px;
  }

  .mobile-service-details,
  .mobile-capability-details {
    display: block;
    margin-top: 20px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .mobile-service-details summary,
  .mobile-capability-details summary {
    position: relative;
    min-height: 48px;
    cursor: pointer;
    list-style: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 700;
    padding: 14px 34px 13px 0;
  }

  .mobile-service-details summary::-webkit-details-marker,
  .mobile-capability-details summary::-webkit-details-marker {
    display: none;
  }

  .mobile-service-details summary::after,
  .mobile-capability-details summary::after {
    position: absolute;
    top: 50%;
    right: 2px;
    color: var(--gold);
    content: "+";
    font-family: "Newsreader", Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    transform: translateY(-50%);
  }

  .mobile-service-details[open] summary::after,
  .mobile-capability-details[open] summary::after {
    content: "–";
  }

  .mobile-service-detail-body {
    padding: 4px 0 18px;
  }

  .mobile-service-detail-body section {
    border-top: 1px solid var(--line);
    padding: 16px 0;
  }

  .mobile-service-detail-body h4 {
    margin: 0 0 7px;
    color: var(--charcoal);
    font-size: 14px;
  }

  .mobile-service-detail-body p {
    margin: 0;
    font-size: 15.5px;
  }

  .mobile-service-detail-body .text-link {
    margin-top: 14px;
  }

  .services-page .capability-rows article {
    display: block;
    padding: 0;
  }


  .mobile-capability-details {
    margin-top: 0;
  }

  .mobile-capability-details summary {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .mobile-capability-title,
  .mobile-capability-preview {
    display: block;
  }

  .mobile-capability-title {
    font-family: "Newsreader", Georgia, serif;
    font-size: 21px;
    line-height: 1.15;
  }

  .mobile-capability-preview {
    margin-top: 8px;
    color: var(--muted);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
  }

  .mobile-capability-body {
    border-top: 1px solid var(--line);
    padding: 16px 0 20px;
  }

  .mobile-capability-body p {
    margin: 0 0 12px;
    font-size: 15.5px;
  }

  .calculator-page main {
    display: flex;
    flex-direction: column;
  }

  .calculator-page .calculator-section { order: 1; }
  .calculator-page .calculator-examines { order: 2; }
  .calculator-page .audit-section { order: 3; }
  .calculator-page .audit-request { order: 4; }
  .calculator-page .cta-band { order: 5; }

  .calculator-page .calculator-hero {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .calculator-page .calculator-hero h1 {
    font-size: clamp(32px, 9vw, 37px);
  }

  .calculator-page .calculator-hero .lede {
    font-size: 16px;
  }

  .calculator-page .calculator-hero .actions {
    margin-top: 20px;
  }

  .calculator-page .calculator-hero .btn {
    width: 100%;
    min-height: 50px;
  }

  .calculator-page .calculator-heading {
    margin-bottom: 22px;
  }

  .calculator-page .calculator-layout {
    gap: 20px;
  }

  .calculator-page .calculator-inputs {
    padding: 20px;
  }

  .mobile-calculator-wizard ~ .calculator-group {
    display: none;
  }

  .mobile-calculator-progress {
    margin: 0 0 18px;
    color: var(--gold);
    font-size: 12px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-calculator-step[hidden] {
    display: none;
  }

  .mobile-calculator-step-heading {
    margin-bottom: 20px;
  }

  .mobile-calculator-step-heading > span {
    color: var(--gold);
    font-size: 11px;
    font-weight: 750;
    letter-spacing: .1em;
    text-transform: uppercase;
  }

  .mobile-calculator-step-heading h3 {
    margin: 5px 0 0;
    font-size: 24px;
  }

  .mobile-calculator-step-heading p {
    margin: 8px 0 0;
    font-size: 15px;
  }

  .mobile-calculator-fields {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .mobile-calculator-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px;
  }

  .mobile-calculator-controls .btn,
  .mobile-calculator-controls .text-action {
    min-height: 48px;
    flex: 1;
  }

  .calculator-page .calculator-results {
    display: flex;
    flex-direction: column;
    padding: 20px;
  }

  .calculator-page .calculator-results h2 {
    font-size: 22px;
  }

  .calculator-page .main-result {
    font-size: clamp(34px, 10vw, 42px);
  }

  .calculator-page .planning-ranges {
    order: 5;
    margin-top: 18px;
  }

  .calculator-page .result-categories {
    order: 6;
    margin-top: 18px;
  }

  .calculator-page .results-actions { order: 7; }
  .calculator-page .results-conversion { order: 8; }
  .calculator-page .copy-status { order: 9; }

  .calculator-page .planning-ranges > div,
  .calculator-page .result-categories > div,
  .calculator-page .result-categories > div:nth-child(n) {
    display: grid;
    min-height: 0;
    align-items: center;
    gap: 5px 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    border-top: 1px solid rgba(245, 239, 229, .18);
    padding: 12px 0;
  }

  .calculator-page .planning-ranges small {
    grid-column: 1 / -1;
  }

  .calculator-page .result-categories strong,
  .calculator-page .planning-ranges strong {
    font-size: 20px;
    text-align: right;
  }

  .calculator-page .calculator-examines {
    padding-top: 48px;
    padding-bottom: 48px;
  }

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

  .calculator-page .examination-grid > div,
  .calculator-page .examination-grid > div:nth-child(n) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 16px 12px;
  }

  .calculator-page .examination-grid > div:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .calculator-page .examination-grid h3 {
    font-size: 16px;
  }

  .global-page .global-hero .actions,
  .global-page .final-cta-grid .actions {
    gap: 10px;
  }

  .global-page .global-hero .btn,
  .global-page .final-cta-grid .btn {
    width: 100%;
    min-height: 50px;
    border-radius: 9px;
    padding: 13px 20px;
    font-size: 14px;
  }

  .global-page .global-hero .btn.secondary {
    width: fit-content;
    min-height: 44px;
    border: 0;
    border-bottom: 1px solid var(--global-bronze);
    border-radius: 0;
    background: transparent;
    color: var(--global-espresso) !important;
    padding: 8px 0 5px;
  }

  .global-page .final-cta-grid .btn.secondary,
  .global-page .mobile-sticky-cta {
    display: none !important;
  }

  .global-page .global-final-cta {
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .global-mobile-more-info {
    margin: 0;
    border-top: 1px solid rgba(46, 41, 35, .2);
    border-bottom: 1px solid rgba(46, 41, 35, .2);
    background: var(--global-ivory);
  }

  .global-mobile-more-info > summary {
    position: relative;
    width: min(100% - 40px, 1200px);
    min-height: 56px;
    margin: auto;
    cursor: pointer;
    list-style: none;
    color: var(--global-espresso);
    font-size: 13px;
    font-weight: 750;
    letter-spacing: .08em;
    padding: 18px 32px 16px 0;
    text-transform: uppercase;
  }

  .global-mobile-more-info > summary::-webkit-details-marker {
    display: none;
  }

  .global-mobile-more-info > summary::after {
    position: absolute;
    top: 50%;
    right: 0;
    color: var(--global-bronze);
    content: "+";
    font-family: "Newsreader", Georgia, serif;
    font-size: 24px;
    transform: translateY(-50%);
  }

  .global-mobile-more-info[open] > summary::after {
    content: "–";
  }

  .global-mobile-more-info > .mobile-disclosure-body {
    padding: 0;
  }

  .about-team-section .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .team-capability-list article,
  .team-capability-list article:nth-child(even) {
    border-left: 0;
    padding: 20px 0;
  }

  .team-capability-list h3 {
    font-size: 21px;
  }

  .team-capability-list p {
    font-size: 16px;
  }

  .team-experience-statement {
    margin-top: 24px;
    padding-left: 16px;
  }
}

@media (min-width: 768px) {
  .mobile-service-details,
  .mobile-capability-details,
  .mobile-calculator-wizard,
  .global-mobile-more-info {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .nav-inner {
    width: min(100% - 40px, 1200px);
    min-height: 74px;
    gap: 16px;
  }

  .brand {
    max-width: calc(100% - 64px);
    font-size: 18px;
    white-space: nowrap;
  }

  .mobile-toggle {
    min-width: 44px;
    min-height: 44px;
    padding: 8px 10px;
  }

  .nav.open .nav-links,
  .global-page .nav.open .nav-links {
    top: 74px;
    max-height: calc(100dvh - 74px);
  }
}

@media (max-width: 767px) {
  body.global-page {
    padding-bottom: 0;
  }

  .mobile-service-details summary:focus-visible,
  .mobile-capability-details summary:focus-visible,
  .global-mobile-more-info > summary:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .mobile-services-ready .services-page .service-primary > .text-link,
  .mobile-services-ready .services-page .service-accordions {
    display: none !important;
  }

  .mobile-services-ready .services-page .capability-rows article > div {
    display: none;
  }
}

/* Two targeted mobile corrections */
.mobile-founder-bio {
  display: none;
}

@media (max-width: 767px) {
  .mobile-about-ready .about-grid {
    gap: 22px;
  }

  .mobile-about-ready #radiance-mack > p,
  .mobile-about-ready #radiance-mack > .founder-team-positioning {
    display: none;
  }

  .mobile-about-ready .mobile-founder-bio {
    display: block;
    margin-top: 14px;
  }

  .mobile-about-ready .mobile-founder-bio p {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.6;
    text-align: left;
  }

  .mobile-about-ready .mobile-founder-bio p + p {
    margin-top: 14px;
  }

  .mobile-about-ready .mobile-founder-bio + .credentials {
    margin-top: 22px;
  }

  .home-page .calculator-intro .actions {
    min-height: 0;
    align-items: flex-start;
    margin-top: 20px;
    padding: 0;
  }

  .home-page .calculator-intro .actions .btn {
    width: 100%;
    height: 50px;
    min-height: 0;
    max-height: 52px;
    aspect-ratio: auto;
    flex: 0 0 auto;
    align-self: auto;
    border-radius: 9px;
    box-shadow: none;
    font-size: 15px;
    font-weight: 650;
    line-height: 1.2;
    padding: 13px 20px;
  }

  .home-page .calculator-preview-grid {
    gap: 28px;
  }
}
