:root {
  --bg: #f6efe2;
  --surface: transparent;
  --surface-strong: #fffdf8;
  --ink: #132e4f;
  --muted: #53677d;
  --line: rgba(19, 46, 79, 0.12);
  --accent: #3f82a8;
  --accent-strong: #d9ae5d;
  --accent-soft: rgba(63, 130, 168, 0.18);
  --accent-gold-soft: rgba(217, 174, 93, 0.22);
  --navy-strong: #0d2746;
  --navy-soft: #143a63;
  --shadow: 0 4px 10px rgba(13, 39, 70, 0.04);
  --radius-lg: 10px;
  --radius-md: 8px;
  --radius-sm: 4px;
  --section-space: clamp(5.25rem, 7vw, 7.2rem);
  --space-internal: clamp(1.5rem, 2.4vw, 2.2rem);
  --space-micro: clamp(0.85rem, 1.5vw, 1.2rem);
  --hero-header-overlap: clamp(5.2rem, 7.2vw, 6.3rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #f4f1ea;
  position: relative;
}

body::after {
  display: none;
}

body::before {
  display: none;
}

body:has(main#home)::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: clamp(8.5rem, 14vw, 12.5rem);
  background: linear-gradient(180deg, #173255 0%, #1c3a60 100%);
  z-index: -1;
}

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

.site-shell {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: 4rem;
}

.topbar {
  position: sticky;
  top: 0.55rem;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.92rem;
  padding: 0.68rem 1.1rem;
  margin-top: 1rem;
  border-radius: 8px;
  border: 1px solid rgba(19, 46, 79, 0.12);
  background: rgba(255, 253, 248, 0.94);
  box-shadow: none;
  backdrop-filter: blur(4px);
  transition:
    padding 180ms ease,
    gap 180ms ease,
    border-radius 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

body:has(main#home) .topbar:not(.is-compact),
body:has(.page-main > .page-hero:first-child) .topbar:not(.is-compact) {
  top: 0;
  margin-top: 0;
  background: rgba(255, 253, 248, 0.68);
  border-color: rgba(255, 253, 248, 0.2);
  box-shadow: none;
  backdrop-filter: blur(3px);
}

.brand {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  overflow: visible;
}

.brand-wordmark {
  width: min(8.9rem, 24vw);
  display: block;
  transition:
    width 180ms ease,
    margin 180ms ease,
    transform 180ms ease;
}

.nav {
  display: flex;
  gap: 1.05rem;
  flex-wrap: wrap;
  align-items: center;
  margin-left: auto;
  transition: gap 180ms ease;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-left: auto;
  padding: 0;
  border: 1px solid rgba(19, 46, 79, 0.14);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.nav-toggle:hover {
  border-color: rgba(217, 174, 93, 0.42);
  background: rgba(217, 174, 93, 0.08);
}

.nav-toggle-line {
  display: block;
  width: 1.1rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease,
    background-color 180ms ease;
}

.nav-toggle-line + .nav-toggle-line {
  margin-top: 0.26rem;
}

.topbar.nav-open .nav-toggle-line:nth-child(1) {
  transform: translateY(0.36rem) rotate(45deg);
}

.topbar.nav-open .nav-toggle-line:nth-child(2) {
  opacity: 0;
}

.topbar.nav-open .nav-toggle-line:nth-child(3) {
  transform: translateY(-0.36rem) rotate(-45deg);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: 0.6rem;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(19, 46, 79, 0.12);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lang-switch a {
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease, opacity 180ms ease;
}

.lang-switch a:hover {
  color: var(--accent-strong);
}

.lang-switch a.is-active {
  color: var(--ink);
}

.lang-switch-separator {
  color: rgba(19, 46, 79, 0.34);
}

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
  position: relative;
  transition: font-size 180ms ease, opacity 180ms ease, color 180ms ease;
  cursor: pointer;
}

.topbar.is-compact {
  gap: 0.72rem;
  padding: 0.52rem 0.98rem;
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 8px 18px rgba(13, 39, 70, 0.08);
}

.topbar.is-compact .brand {
  height: 2.72rem;
}

.topbar.is-compact .brand-wordmark {
  width: min(9.9rem, 29vw);
  margin-top: -0.34rem;
  margin-bottom: -0.08rem;
}

.topbar.is-compact .nav {
  gap: 0.9rem;
}

.topbar.is-compact .nav a {
  font-size: 0.88rem;
}

.topbar.is-compact .lang-switch {
  font-size: 0.72rem;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 2px;
  background: var(--accent-strong);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after {
  transform: scaleX(1);
}

.nav a:hover {
  color: var(--accent-strong);
}

.header-cta {
  min-height: 3rem;
  padding-inline: 1.1rem;
  margin-left: 0.45rem;
  font-size: 0.86rem;
  white-space: nowrap;
}


.section {
  width: 100%;
  position: relative;
  padding: var(--section-space) 0;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
  overflow: clip;
}

.page-main {
  padding: 2.35rem 0 4.6rem;
}

.page-main > *:not(:first-child) {
  content-visibility: auto;
  contain-intrinsic-size: 1px 860px;
}

.page-main > .section--base,
.page-main > .section--alt,
.page-main > .content-grid.section--base,
.page-main > .content-grid.section--alt,
.page-main > .visual-gallery.section--base,
.page-main > .visual-gallery.section--alt,
.page-main > .page-hero.section--base,
.page-main > .page-hero.section--alt,
.about-band {
  width: 100%;
  position: relative;
}

.section-frame {
  width: 100%;
  position: relative;
  overflow: clip;
}

.section-frame--alt {
  isolation: isolate;
  padding-block: clamp(1.45rem, 2.4vw, 2rem);
}

.section-frame--alt::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(19, 46, 79, 0.044);
  pointer-events: none;
  z-index: -3;
}

.section-frame--alt > :first-child,
.section-frame--alt > :last-child {
  margin-block-start: 0;
  margin-block-end: 0;
}

.section-frame--alt .page-lede,
.section-frame--alt p,
.section-frame--alt .content-card p {
  color: rgba(36, 56, 78, 0.96);
}

.page-hero {
  padding: 3.3rem 0 2.75rem;
  max-width: 54rem;
}

.visual-panel,
.proof-block {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.has-watermark {
  position: relative;
  isolation: isolate;
  overflow: clip;
}

.has-watermark::after,
.watermark-light::after,
.watermark-balanced::after,
.watermark-dense::after,
.watermark-rise::after,
.watermark-soft::after {
  content: none !important;
  display: none !important;
  background: none !important;
  opacity: 0 !important;
}


.page-hero h1 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.page-lede {
  margin-top: var(--space-internal);
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
  max-width: 46rem;
}

.compact-lede {
  max-width: none;
  margin: 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 2.6rem;
  align-items: start;
  min-height: calc(100vh - 8.2rem);
  padding-top: 1.2rem;
  border-top: 0;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.hero h1,
.section h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.05em;
  font-family: "Sora", sans-serif;
  text-wrap: balance;
}

.hero h1 {
  max-width: 9.5ch;
  font-size: clamp(4rem, 8vw, 6.35rem);
  line-height: 0.9;
  color: #0f2440;
}

.hero h1 span {
  display: block;
  color: var(--accent-strong);
}

.lede,
.problem-band p,
.offer-card p,
.approach-card p,
.timeline p,
.proof-copy p,
.contact-actions p {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.89rem;
  max-width: 38rem;
}

.section p,
.content-card p,
.mini-link-card p,
.faq-item p,
.authority-label,
.authority-outcome,
.price-tag,
.page-lede,
.lede {
  overflow-wrap: anywhere;
}

.hero .lede {
  max-width: 21rem;
  margin-top: 1.25rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin: 1.85rem 0 1rem;
}

.contact-actions {
  margin: 1.45rem 0 0;
  gap: 0.8rem;
  align-items: flex-start;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.5rem;
  padding: 0 1.45rem;
  border-radius: 6px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-family: "Sora", sans-serif;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 2px rgba(217, 174, 93, 0.22);
}

.button-primary {
  background: var(--accent-strong);
  color: #132e4f;
  box-shadow: none;
}

.button-primary:hover {
  background: #c9983f;
}

.button-cta {
  min-height: 4rem;
  padding: 0 1.85rem;
  font-size: 1rem;
  box-shadow: 0 12px 22px rgba(201, 152, 63, 0.26);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(19, 46, 79, 0.18);
  background: transparent;
}

.button-secondary:hover {
  border-color: rgba(217, 174, 93, 0.52);
  background: rgba(217, 174, 93, 0.08);
}

.archive-reveal {
  margin-top: 1.45rem;
}

.archive-reveal summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}

.archive-reveal summary::-webkit-details-marker {
  display: none;
}

.archive-reveal[open] summary {
  margin-bottom: 1.5rem;
}

.archive-hidden-grid {
  margin-top: 0;
}

.hero-microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 0.55rem;
}

.hero-microcopy span {
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.42);
}

.hero-panel,
.problem-band,
.contact-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: none;
  backdrop-filter: none;
}

.contact-actions p {
  flex: 0 0 100%;
  max-width: 21rem;
  margin-top: 0.15rem;
}

.hero-copy {
  position: relative;
}

.hero-copy::before { display: none; }

.content-grid,
.cards-three,
.page-grid-links,
.faq-list,
.visual-gallery {
  display: grid;
  gap: var(--space-micro);
}

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

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

.page-main > .content-grid,
.page-main > .cards-three,
.page-main > .faq-list,
.page-main > .visual-gallery {
  margin-bottom: clamp(2.15rem, 3.2vw, 3rem);
}

.page-main > .content-grid + .cards-three,
.page-main > .cards-three + .content-grid,
.page-main > .cards-three + .cards-three,
.page-main > .content-grid + .faq-list,
.page-main > .faq-list + .content-grid,
.page-main > .faq-list + .cards-three {
  margin-top: clamp(1.7rem, 2.6vw, 2.35rem);
}

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

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

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

.content-card,
.mini-link-card,
.faq-item,
.cta-band {
  border-radius: var(--radius-md);
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  box-shadow: none;
}

.content-card,
.faq-item {
  padding: 1.45rem 1.75rem;
}

.mini-link-card {
  padding: 1.2rem 1.5rem;
}

.content-card h2,
.content-card h3,
.mini-link-card h3,
.faq-item h3,
.cta-band h2 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
}

.content-card p,
.mini-link-card p,
.faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.62;
}

.article-body {
  max-width: 48rem;
}

.article-intro {
  margin: 0 0 1.4rem;
  font-size: 1.08rem;
  line-height: 1.82;
  color: rgba(36, 56, 78, 0.96);
}

.article-sections {
  display: grid;
  gap: clamp(1.8rem, 2.8vw, 2.6rem);
}

.article-section {
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.article-section h2 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.article-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.78;
}

.article-section p + p {
  margin-top: 0.95rem;
}

.content-card p + p,
.mini-link-card p + p,
.faq-item p + p {
  margin-top: 0.8rem;
}

.price-tag {
  margin-top: 1rem !important;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink) !important;
}

.bilingual-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.15rem, 3vw, 3rem);
  margin: 0 0 2.45rem;
  padding: 2.15rem 0 0;
  border-top: 1px solid rgba(61, 127, 166, 0.22);
  background: transparent;
  box-shadow: none;
}

.bilingual-band p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form-section {
  display: grid;
  gap: var(--space-internal);
}

.contact-form {
  display: grid;
  gap: 1.15rem;
  padding: 1.5rem 1.75rem;
  border-top: 1px solid var(--line);
  background: transparent;
}

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

.form-field {
  display: grid;
  gap: 0.5rem;
}

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

.form-field span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.2rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(19, 46, 79, 0.14);
  border-radius: 6px;
  background: rgba(255, 253, 248, 0.82);
  color: var(--ink);
  font: inherit;
  transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 8.8rem;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(217, 174, 93, 0.7);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 0 0 3px rgba(217, 174, 93, 0.12);
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.9rem 1rem;
}

.form-note {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.form-note a {
  color: var(--ink);
}

.linked-card,
.mini-link-card {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.linked-card:hover,
.mini-link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 174, 93, 0.38);
  background: rgba(217, 174, 93, 0.045);
  box-shadow: inset 0 1px 0 rgba(217, 174, 93, 0.34);
}

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

.mini-link-card {
  padding: 1.2rem 1.5rem;
}

.service-link-card {
  display: grid;
  align-content: start;
  min-height: 14.4rem;
}

.service-family-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 0 2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.service-family-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.35rem;
  padding: 0 0.8rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  background: rgba(255, 255, 255, 0.42);
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
  cursor: pointer;
}

.service-family-link:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 174, 93, 0.5);
  background: rgba(217, 174, 93, 0.08);
}

.service-family-link.is-active {
  border-color: rgba(217, 174, 93, 0.6);
  background: rgba(217, 174, 93, 0.14);
}

.service-link-card .eyebrow {
  margin-bottom: 0.8rem;
}

.service-link-card h3 {
  margin-bottom: 0.55rem;
}

.service-link-card p:not(.service-link-arrow) {
  max-width: 15rem;
}

.service-link-arrow {
  margin-top: 1rem !important;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink) !important;
}

.visual-gallery-single {
  grid-template-columns: 1fr;
}

.visual-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.3rem, 3vw, 3rem);
  align-items: start;
  padding: 1.9rem 0 0;
  border-top: 1px solid rgba(19, 46, 79, 0.16);
}

.visual-panel-copy h2 {
  margin-bottom: 0.85rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.3rem, 4.8vw, 4.1rem);
  line-height: 0.92;
  max-width: 11ch;
}

.visual-panel-copy p {
  margin: 0;
}

.service-cluster {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem 1.2rem;
  position: relative;
  padding-top: 1.25rem;
}

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

.service-cluster::before {
  content: "";
  position: absolute;
  left: 2%;
  right: 2%;
  top: 0.35rem;
  height: 1px;
  background: rgba(19, 46, 79, 0.42);
}

.service-cluster span {
  position: relative;
  display: block;
  padding-top: 1.6rem;
  font-family: "Sora", sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0f2440;
}

.service-cluster span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--accent-strong);
  border: 2px solid #f4f1ea;
  box-shadow: 0 0 0 2px rgba(19, 46, 79, 0.18);
}

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

.section-guidance {
  margin-top: 1.15rem;
  max-width: 30rem;
}

.case-study-sections {
  display: grid;
  gap: 2rem;
}

.case-study-block {
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.case-study-block h2 {
  margin: 0;
  max-width: 16ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.case-study-list {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.case-study-list li {
  margin: 0.45rem 0 0;
  line-height: 1.55;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 3vw, 2.8rem);
  margin-top: clamp(3.4rem, 5vw, 4.8rem);
  padding: 2rem;
  overflow: hidden;
  position: relative;
  background: var(--navy-strong);
  border-color: rgba(19, 46, 79, 0.08);
}

.cta-band::after {
  content: "";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  width: 10rem;
  height: 10rem;
  background: none;
  opacity: 0;
  pointer-events: none;
}

.cta-band h2,
.cta-band .eyebrow,
.cta-band p,
.cta-band a {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  color: #fff;
}

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

.cta-band p,
.cta-band .page-lede {
  color: rgba(255, 255, 255, 0.76);
}

.cta-band .hero-actions {
  margin: 0;
  justify-content: flex-start;
  align-items: center;
}

.cta-band .button-primary {
  box-shadow: 0 0 0 1px rgba(217, 174, 93, 0.12);
}

.cta-band .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.cta-band .button-secondary:hover {
  border-color: rgba(217, 174, 93, 0.5);
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
}

.faq-list {
  margin-top: 1rem;
}

.faq-item h3 {
  font-size: 1.1rem;
}

.hero-panel {
  align-self: start;
  padding: 0.95rem 1.2rem 0;
  background: var(--navy-strong);
  color: #fff;
  border-color: rgba(217, 174, 93, 0.28);
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.hero-system-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.98rem;
  gap: 1rem;
}

.hero-wordmark {
  width: min(8.8rem, 46%);
}

.hero-wordmark,
.hero-monogram,
.contact-monogram {
  display: block;
}

.card-label {
  margin: 0;
  font-size: 0.94rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.88);
  font-family: "Sora", sans-serif;
}

.hero-flow {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  margin-top: 0.15rem;
}

.hero-flow article,
.approach-card,
.offer-card,
.timeline article {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
  background: #fffdf8;
}

.hero-flow article {
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 0;
  padding: 1.2rem 0 1.16rem;
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  column-gap: 0.9rem;
  align-items: start;
}

.hero-flow article:last-child {
  border-bottom: 0;
}

.hero-flow span,
.approach-card span,
.timeline span {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--accent-strong);
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.hero-flow span,
.process-flow span,
.approach-card span {
  font-size: 1.38rem;
}

.hero-flow h3,
.offer-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.08rem;
  font-family: "Sora", sans-serif;
}

.hero-flow span {
  grid-column: 1;
  align-self: start;
}

.hero-flow-copy {
  grid-column: 2;
}

.hero-flow-copy h3,
.hero-flow-copy p {
  margin: 0;
}

.hero-flow-copy p {
  margin-top: 0.1rem;
}

.hero-flow p,
.approach-card p,
.timeline p,
.offer-card p {
  margin: 0;
}

.hero-flow p {
  max-width: 14.5rem;
  color: rgba(255, 255, 255, 0.76);
}

.problem-band,
.contact-card,
.proof-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.15rem, 3vw, 2.9rem);
  padding: 1.8rem 0 0;
}

.problem-band {
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.problem-band h2,
.section-heading h2,
.proof-copy h2,
.contact-card h2 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
  max-width: 12ch;
  line-height: 0.92;
}

.section-heading {
  max-width: 54rem;
  margin-bottom: clamp(1.6rem, 2.5vw, 2.2rem);
}

.section-heading .page-lede,
.section-heading .section-guidance {
  margin-top: var(--space-internal);
}

.system-flow,
.offers-grid,
.timeline,
.principles {
  display: grid;
  gap: var(--space-micro);
}

.authority-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1rem, 1.7vw, 1.35rem);
  align-items: start;
}

.authority-item {
  display: grid;
  align-content: start;
  min-height: 100%;
  padding-top: 1.02rem;
  border-top: 1px solid var(--line);
}

.authority-item-featured {
  padding-top: 1.1rem;
}

.authority-item blockquote {
  margin: 0;
  max-width: 17.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.authority-item-featured blockquote {
  font-size: 1.24rem;
  max-width: 18.25rem;
}

.authority-outcome {
  margin: 1.1rem 0 0;
  font-family: "Sora", sans-serif;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--navy-soft);
}

.authority-label {
  margin: 0.55rem 0 0;
  color: rgba(83, 103, 125, 0.88);
  font-size: 0.8rem;
  line-height: 1.4;
}

.system-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: start;
  position: relative;
  gap: 3.05rem;
  padding: 1.15rem 1.5rem 0 2rem;
  box-sizing: border-box;
}

.system-flow::before {
  content: "";
  position: absolute;
  left: calc(2% + 1.9rem);
  right: calc(2% + 1.35rem);
  top: 1.7rem;
  height: 1px;
  background: rgba(19, 46, 79, 0.42);
}

.approach-card {
  position: relative;
  z-index: 1;
  padding: 2.7rem 0 0 0.35rem;
  border: 0;
  background: transparent;
  border-radius: 0;
  min-height: 0;
}

.approach-card::before {
  content: "";
  position: absolute;
  top: 1.2rem;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  background: var(--accent-strong);
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(19, 46, 79, 0.2);
}

.approach-card strong {
  display: block;
  margin-bottom: 0.6rem;
  font-family: "Sora", sans-serif;
  font-size: 1.08rem;
}

.approach-card span {
  margin-bottom: 1rem;
  font-size: 1.22rem;
  line-height: 1;
}

.approach-card p {
  max-width: 13rem;
}

.approach-card::after {
  content: "";
  position: absolute;
  top: 1.58rem;
  left: -1.08rem;
  width: 0.62rem;
  height: 0.62rem;
  border-top: 1px solid rgba(217, 174, 93, 0.82);
  border-right: 1px solid rgba(217, 174, 93, 0.82);
  transform: rotate(45deg);
}

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.metrics-strip > div {
  padding: 1.5rem;
  border: 0;
  border-top: 1px solid rgba(19, 46, 79, 0.1);
  border-radius: var(--radius-md);
  background: transparent;
  box-shadow: none;
}

.metric-value {
  margin: 0 0 0.4rem;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Sora", sans-serif;
}

.metric-label,
.offer-tag {
  margin: 0;
  color: var(--muted);
}

.offer-tag {
  display: inline-block;
  margin-bottom: 0.65rem;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.offers-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.offer-card {
  min-height: 11.75rem;
  padding: 1rem 1.35rem;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
}

.featured {
  position: relative;
  transform: scale(1.03);
  background: linear-gradient(180deg, rgba(10, 29, 53, 1), rgba(18, 52, 86, 1));
  color: #fff;
  overflow: hidden;
  border: 1px solid rgba(217, 174, 93, 0.68);
  border-top: 0;
  padding: 1.25rem 1.15rem 1.15rem;
  border-radius: var(--radius-sm);
  box-shadow: none;
}

.featured::after {
  content: "Recommended";
  position: absolute;
  top: 1rem;
  right: 1rem;
  padding: 0.35rem 0.55rem;
  background: var(--accent-strong);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.featured .offer-tag,
.featured p {
  color: rgba(255, 255, 255, 0.8);
}

.featured h3 {
  color: #fff;
}

.offer-card h3 {
  max-width: 14ch;
  margin-bottom: 0.4rem;
}

.offer-card p {
  max-width: 16rem;
}

.timeline {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(1.2rem, 1.9vw, 1.8rem);
}

.process-title {
  font-size: clamp(3.4rem, 6.5vw, 5.8rem);
  line-height: 0.88;
  max-width: 10ch;
}

.process-flow {
  position: relative;
  gap: clamp(2.2rem, 3.1vw, 3.1rem);
  padding: 1.35rem 1.5rem 0 2rem;
  box-sizing: border-box;
}

.process-flow::before {
  content: "";
  position: absolute;
  left: calc(2% + 1.9rem);
  right: calc(2% + 1.35rem);
  top: 2rem;
  height: 1px;
  background: rgba(19, 46, 79, 0.42);
}

.process-flow article {
  position: relative;
  z-index: 1;
  padding: 2.8rem 0 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.process-flow article::before {
  content: "";
  position: absolute;
  top: 1.45rem;
  left: 0;
  width: 1rem;
  height: 1rem;
  background: var(--ink);
  border: 2px solid #f4f1ea;
  box-shadow: 0 0 0 2px rgba(19, 46, 79, 0.24);
}

.process-flow article::after {
  content: "";
  position: absolute;
  top: 1.83rem;
  left: -1.08rem;
  width: 0.62rem;
  height: 0.62rem;
  border-top: 1px solid rgba(19, 46, 79, 0.58);
  border-right: 1px solid rgba(19, 46, 79, 0.58);
  transform: rotate(45deg);
}

.process-flow span {
  margin-bottom: 0.9rem;
  font-size: 1.25rem;
  color: var(--accent-strong);
}

.page-main > .visual-gallery,
.page-main > .authority-section,
.page-main > .faq-list,
.page-main > .section-heading + .cards-three,
.page-main > .section-heading + .content-grid,
.page-main > .section-heading + .timeline,
.page-main > .bilingual-band + .content-grid,
.page-main > .bilingual-band + .cards-three {
  position: relative;
  isolation: isolate;
}

.page-main > .visual-gallery::before,
.page-main > .authority-section::before,
.page-main > .faq-list::before,
.page-main > .section-heading + .cards-three::before,
.page-main > .section-heading + .content-grid::before,
.page-main > .section-heading + .timeline::before,
.page-main > .bilingual-band + .content-grid::before,
.page-main > .bilingual-band + .cards-three::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(19, 46, 79, 0.032);
  pointer-events: none;
  z-index: -2;
}

.section-stack {
  display: grid;
  gap: clamp(1.5rem, 2.3vw, 2.1rem);
}

.section-stack > .section-heading {
  margin-bottom: 0;
}

.process-flow strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  color: var(--ink);
}

.process-flow p {
  max-width: 12rem;
}

.proof-block {
  align-items: start;
  gap: 1.35rem;
  padding-top: 0.8rem;
  border-top: 2px solid var(--ink);
}

.principles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.7rem 1.5rem;
}

.principles p {
  margin: 0;
  padding: 0.8rem 0 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  border-top: 1px solid var(--line);
  font-weight: 700;
  font-family: "Sora", sans-serif;
  font-size: 0.96rem;
  line-height: 1.4;
}

.proof-copy .eyebrow {
  margin-bottom: 0.6rem;
}

.proof-copy h2 {
  font-size: clamp(3rem, 6vw, 4.9rem);
  line-height: 0.9;
  max-width: 9.5ch;
}

.proof-copy p {
  margin-top: 1.15rem;
  max-width: 24rem;
}

.contact-actions .button-primary {
  box-shadow: 0 10px 18px rgba(201, 152, 63, 0.22);
}

.contact-card {
  align-items: center;
  position: relative;
  overflow: hidden;
  background: transparent;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
}

.final-cta-title {
  font-size: clamp(3.9rem, 7vw, 6.45rem);
  line-height: 0.88;
  max-width: 10ch;
}

.contact-actions .button-secondary {
  min-height: 3.7rem;
  padding-inline: 1.55rem;
}

.contact-monogram {
  position: absolute;
  right: -3rem;
  bottom: -4rem;
  width: 16rem;
  opacity: 0.14;
  pointer-events: none;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  padding: 2rem 0 3rem;
  border-top: 1px solid var(--line);
  margin-top: 2rem;
}

.system-step {
  position: relative;
}

.system-step::before {
  content: "";
  position: absolute;
  left: -0.9rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(19, 46, 79, 0.12);
}

.footer-wordmark {
  width: min(10rem, 42vw);
  display: block;
  margin-bottom: 0.8rem;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  max-width: 26rem;
}

.hero-step-title,
.hero-flow h3,
.content-card h2,
.content-card h3,
.offer-card h3,
.section h2,
.page-hero h1 {
  overflow-wrap: anywhere;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem 1.4rem;
  align-content: start;
}

.footer-links a {
  color: var(--ink);
  text-decoration: none;
  font-size: 0.95rem;
  transition:
    color 180ms ease,
    text-decoration-color 180ms ease,
    opacity 180ms ease;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.18rem;
  cursor: pointer;
}

.footer-links a:hover {
  color: var(--accent-strong);
  text-decoration-color: rgba(217, 174, 93, 0.5);
}

@media (max-width: 1080px) {
  :root {
    --section-space: clamp(4.25rem, 6vw, 5.7rem);
    --space-internal: clamp(1.35rem, 2vw, 1.9rem);
    --space-micro: clamp(0.8rem, 1.4vw, 1rem);
    --hero-header-overlap: clamp(4.8rem, 8vw, 5.6rem);
  }

  .site-shell {
    width: min(1160px, calc(100% - 1.5rem));
  }

  .page-main {
    padding: 2rem 0 4rem;
  }

  .hero,
  .problem-band,
  .proof-block,
  .contact-card,
  .bilingual-band,
  .authority-list,
  .system-flow,
  .offers-grid,
  .timeline,
  .metrics-strip,
  .content-grid,
  .cards-three,
  .cards-four,
  .cards-six,
  .page-grid-links,
  .visual-gallery,
  .cta-band,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    gap: 2rem;
  }

  .page-hero {
    padding: 2.8rem 0 2.35rem;
  }

  .page-hero h1 {
    max-width: 12ch;
  }

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

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

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

  .cards-three,
  .authority-list,
  .page-grid-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

  .hero-wordmark {
    width: min(11rem, 60%);
  }

  .featured {
    transform: none;
  }

  .approach-card::after,
  .process-flow article::after {
    display: none;
  }
}

@media (max-width: 900px) {
  :root {
    --hero-header-overlap: 4.65rem;
  }

  .topbar {
    gap: 0.85rem;
    padding: 0.85rem 1rem;
  }

  .nav {
    gap: 0.85rem 1rem;
    justify-content: flex-end;
  }

  .nav a {
    font-size: 0.92rem;
  }

  .lang-switch {
    margin-left: 0.35rem;
    padding-left: 0.7rem;
  }

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

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

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(4rem, 9vw, 5.6rem);
  }

  .hero .lede {
    max-width: 30rem;
  }

  .bilingual-band,
  .problem-band,
  .proof-block,
  .contact-card,
  .visual-panel {
    gap: 1.75rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --section-space: clamp(3.2rem, 9vw, 4.35rem);
    --space-internal: clamp(1.15rem, 3.5vw, 1.5rem);
    --space-micro: 0.9rem;
  }

  .site-shell {
    width: min(100% - 1.4rem, 100%);
    padding-bottom: 2.5rem;
  }

  .topbar {
    flex-wrap: wrap;
    align-items: center;
    border-radius: 8px;
    top: 0.35rem;
  }

  .brand-wordmark {
    width: min(8.8rem, 48vw);
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
    margin-left: 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(19, 46, 79, 0.1);
    gap: 0.65rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .topbar.nav-open .nav {
    display: flex;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.4rem 0;
    font-size: 0.94rem;
  }

  .lang-switch {
    width: auto;
    align-self: center;
    justify-content: center;
    gap: 0.2rem;
    margin-left: 0;
    padding: 0.6rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(19, 46, 79, 0.08);
  }

  .lang-switch a {
    width: auto;
    padding: 0;
  }

  .topbar.is-compact {
    padding: 0.48rem 0.9rem;
  }

  .topbar.is-compact .brand {
    height: 2.3rem;
  }

  .topbar.is-compact .brand-wordmark {
    width: min(9.2rem, 42vw);
    margin-top: -0.92rem;
    margin-bottom: -0.56rem;
  }

  .topbar.is-compact .nav a {
    font-size: 0.92rem;
  }

  .topbar.is-compact .nav-toggle {
    width: 2.7rem;
    height: 2.7rem;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero h1 {
    font-size: clamp(3rem, 18vw, 4.7rem);
    line-height: 0.9;
    max-width: 100%;
  }

  .page-hero {
    padding: 2.15rem 0 1.9rem;
  }

  .page-hero h1,
  .section-heading h2,
  .problem-band h2,
  .proof-copy h2,
  .contact-card h2,
  .visual-panel-copy h2,
  .process-title,
  .final-cta-title {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.4rem);
    line-height: 0.96;
  }

  .hero .lede,
  .page-lede,
  .compact-lede {
    max-width: 100%;
    font-size: 1rem;
    line-height: 1.65;
  }

  .hero-flow,
  .principles,
  .authority-list,
  .offers-grid,
  .content-grid,
  .cards-three,
  .cards-four,
  .cards-six,
  .visual-gallery,
  .service-cluster,
  .visual-panel {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .contact-actions,
  .cta-band .hero-actions {
    gap: 0.75rem;
  }

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

  .hero-microcopy {
    gap: 0.6rem;
  }

  .hero-microcopy span {
    font-size: 0.66rem;
  }

  .hero-panel {
    padding: 0.9rem 1rem 0;
  }

  .hero-system-head {
    align-items: flex-start;
  }

  .hero-wordmark {
    width: min(9rem, 46vw);
  }

  .hero-flow article {
    grid-template-columns: 2.4rem minmax(0, 1fr);
    column-gap: 0.7rem;
    padding: 1rem 0;
  }

  .hero-flow span {
    font-size: 1.15rem;
  }

  .problem-band,
  .proof-block,
  .contact-card {
    padding: 1.3rem 0 0;
  }

  .bilingual-band {
    padding: 1.3rem 0 0;
    gap: 1rem;
    margin-bottom: 1.8rem;
  }

  .content-card,
  .faq-item,
  .mini-link-card,
  .offer-card {
    padding: 1.1rem 1.25rem;
  }

  .cards-three,
  .content-grid,
  .offers-grid,
  .metrics-strip,
  .authority-list,
  .service-cluster {
    gap: 1rem;
  }

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

  .contact-form {
    padding: 1.2rem 1.25rem;
  }

  /* Compact structural grids stay two-up on mobile by default. */
  :is(
    .page-grid-links,
    .system-flow,
    .timeline.process-flow,
    .service-cluster,
    .service-cluster.service-cluster-four
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .system-flow {
    gap: 1rem 0.95rem;
  }

  .timeline.process-flow {
    gap: 1.05rem 1rem;
  }

  .service-cluster.service-cluster-four {
    gap: 0.95rem 0.95rem;
  }

  .service-cluster span {
    padding-top: 1.35rem;
    font-size: 0.98rem;
  }

  .service-cluster span::before {
    width: 0.82rem;
    height: 0.82rem;
  }

  .service-family-nav {
    gap: 0.5rem;
  }

  .service-family-link {
    width: 100%;
    justify-content: center;
  }

  .visual-panel {
    padding-top: 1.35rem;
    gap: 1.35rem;
  }

  .page-main > .visual-gallery,
  .page-main > .content-grid.section--base,
  .page-main > .content-grid.section--alt,
  .page-main > .visual-gallery.section--base,
  .page-main > .visual-gallery.section--alt {
    margin-left: -0.7rem;
    margin-right: -0.7rem;
  }

  .page-main > .visual-gallery .visual-panel,
  .page-main > .content-grid.section--base,
  .page-main > .content-grid.section--alt,
  .page-main > .visual-gallery.section--base .visual-panel,
  .page-main > .visual-gallery.section--alt .visual-panel {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .process-flow {
    gap: 1.5rem;
  }

  .timeline.service-process-four {
    gap: 1.05rem 1rem;
  }

  .process-flow article,
  .approach-card {
    padding-top: 2.15rem;
  }

  .process-flow article p,
  .approach-card p {
    max-width: 100%;
  }

  .process-flow article::before,
  .approach-card::before {
    top: 1rem;
  }

  .authority-item blockquote,
  .authority-item-featured blockquote {
    max-width: 100%;
    font-size: 1.05rem;
  }

  .cta-band {
    margin-top: 2.6rem;
    padding: 1.4rem 1rem;
    gap: 1rem;
  }

  .cta-band .hero-actions {
    width: 100%;
  }

  .contact-monogram {
    width: 11rem;
    right: -2rem;
    bottom: -3rem;
  }

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

  .site-footer {
    gap: 1.2rem;
    padding: 1.5rem 0 2.4rem;
  }

  .system-step::before {
    display: none;
  }

  .system-flow::before {
    display: none;
  }

  .process-flow::before {
    display: none;
  }
}

@media (max-width: 520px) {
  :root {
    --hero-header-overlap: 4.1rem;
  }

  .topbar {
    padding: 0.75rem 0.85rem;
  }

  .site-shell {
    width: min(100% - 1.6rem, 100%);
  }

  .nav {
    gap: 0.65rem 0.85rem;
  }

  .nav a,
  .topbar.is-compact .nav a {
    font-size: 0.88rem;
  }

  .lang-switch {
    width: auto;
    align-self: center;
    justify-content: center;
    gap: 0.18rem;
    margin-left: 0;
    padding-top: 0.5rem;
  }

  .button,
  .button-cta {
    min-height: 3.35rem;
  }

  .page-main > .visual-gallery,
  .page-main > .content-grid.section--base,
  .page-main > .content-grid.section--alt,
  .page-main > .visual-gallery.section--base,
  .page-main > .visual-gallery.section--alt {
    margin-left: -0.8rem;
    margin-right: -0.8rem;
  }

  .page-main > .visual-gallery .visual-panel,
  .page-main > .content-grid.section--base,
  .page-main > .content-grid.section--alt,
  .page-main > .visual-gallery.section--base .visual-panel,
  .page-main > .visual-gallery.section--alt .visual-panel {
    padding-left: 1.3rem;
    padding-right: 1.3rem;
  }

  .contact-form {
    padding: 1.1rem 1.15rem;
  }

  :is(
    .page-grid-links,
    .system-flow,
    .timeline.process-flow,
    .service-cluster,
    .service-cluster.service-cluster-four
  ) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 0.85rem;
  }

  .approach-card {
    padding-top: 1.95rem;
  }

  .approach-card span {
    margin-bottom: 0.55rem;
    font-size: 1.02rem;
  }

  .service-cluster.service-cluster-four {
    gap: 0.85rem 0.8rem;
  }

  .service-cluster span {
    padding-top: 1.25rem;
    font-size: 0.94rem;
  }

  .page-grid-links .service-link-card {
    min-height: 0;
  }

  .page-hero h1,
  .hero h1,
  .section-heading h2,
  .problem-band h2,
  .proof-copy h2,
  .contact-card h2,
  .visual-panel-copy h2,
  .final-cta-title {
    font-size: clamp(2.1rem, 10.5vw, 2.95rem);
  }

  .article-intro,
  .article-section p,
  .content-card p,
  .faq-item p,
  .lede,
  .page-lede {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-panel,
  .cta-band {
    border-radius: 6px;
  }

  .timeline.service-process-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 0.85rem;
  }

  .timeline.service-process-four article {
    padding-top: 1.9rem;
  }

  .timeline.service-process-four span {
    font-size: 1.05rem;
  }
}

/* === REFINEMENT SYSTEM START === */
:root {
  --section-space: clamp(6rem, 8vw, 7.5rem);
  --space-block: clamp(3.5rem, 5vw, 4.5rem);
  --space-internal: clamp(1.5rem, 2.4vw, 2rem);
  --space-micro: clamp(1rem, 1.8vw, 1.5rem);
  --reading-measure: 42rem;
  --reading-measure-wide: 45rem;
  --section-alt-grey: rgba(255, 255, 255, 0.52);
  --section-alt-tint: rgba(19, 46, 79, 0.04);
  --eyebrow-ink: rgba(83, 103, 125, 0.82);
}

.page-main {
  padding: 3rem 0 5.5rem;
}

body:has(.page-main > .page-hero:first-child) .page-main {
  padding-top: 0;
}

.section,
.page-hero,
.about-band,
.page-main > .content-grid,
.page-main > .cards-three,
.page-main > .faq-list,
.page-main > .visual-gallery,
.page-main > .section-heading,
.page-main > .cta-band,
.page-main > .authority-section {
  position: relative;
}

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

.page-main > .section + .section,
.page-main > .section + .content-grid,
.page-main > .section + .cards-three,
.page-main > .section + .faq-list,
.page-main > .section + .visual-gallery,
.page-main > .content-grid + .section,
.page-main > .cards-three + .section,
.page-main > .faq-list + .section,
.page-main > .visual-gallery + .section,
.page-main > .section-heading + .cards-three,
.page-main > .section-heading + .content-grid,
.page-main > .section-heading + .timeline,
.page-main > .section-heading + .section,
.page-main > .cta-band + .section,
.page-main > .section + .cta-band {
  margin-top: clamp(3.5rem, 5vw, 4.5rem);
}

.page-hero {
  padding: 5rem clamp(1.75rem, 2.6vw, 2.25rem) 4.5rem;
  max-width: 58rem;
}

body:has(.page-main > .page-hero:first-child) .page-main > .page-hero:first-child {
  margin-top: calc(-1 * var(--hero-header-overlap));
  padding-top: calc(5rem + var(--hero-header-overlap));
}

.section-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.15rem, 3.1vw, 2.9rem);
}

.eyebrow {
  margin: 0 0 1.25rem;
  color: var(--eyebrow-ink);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.page-hero h1,
.hero h1,
.section h2,
.cta-band h2 {
  margin: 0;
}

.hero h1,
.page-hero h1,
.section h2,
.proof-copy h2,
.problem-band h2,
.contact-card h2,
.visual-panel-copy h2,
.process-title,
.final-cta-title {
  line-height: 0.92;
}

.hero .lede,
.page-lede,
.article-intro,
.article-section p,
.case-study-block p,
.legal-page p,
.content-card p,
.faq-item p,
.mini-link-card p,
.form-note,
.problem-band > p,
.bilingual-band > p,
.proof-copy p,
.contact-actions p,
.visual-panel-copy .page-lede,
.contact-form-section .page-lede,
.offer-card p,
.approach-card p,
.timeline p {
  max-width: var(--reading-measure);
  line-height: 1.68;
}

.page-hero .page-lede,
.section-heading .page-lede,
.section-heading .section-guidance,
.hero .lede,
.proof-copy p,
.visual-panel-copy .page-lede,
.contact-form-section .page-lede {
  margin-top: 1.65rem;
}

.page-main > .section:not(.hero):not(.cta-band):nth-of-type(3n),
.page-main > .visual-gallery,
.page-main > .faq-list,
.about-band.section--alt,
.page-main > .section.section--alt,
.page-main > .authority-section {
  background: var(--section-alt-tint);
}

.page-main > .section:not(.hero):not(.cta-band):nth-of-type(3n + 2),
.page-main > .section.section--base,
.page-main > .content-grid.section--base,
.page-main > .visual-gallery.section--base,
.page-main > .page-hero.section--base,
.page-main > .cards-three {
  background: var(--section-alt-grey);
}

.page-main > .section:nth-of-type(3n),
.page-main > .section:nth-of-type(3n + 2),
.about-band.section--alt,
.page-main > .section.section--base,
.page-main > .section.section--alt,
.page-main > .content-grid.section--base,
.page-main > .visual-gallery.section--base,
.page-main > .faq-list,
.page-main > .visual-gallery,
.page-main > .authority-section,
.page-main > .cards-three {
  padding-inline: clamp(1.5rem, 2.4vw, 2rem);
}

.content-grid,
.cards-three,
.page-grid-links,
.faq-list,
.visual-gallery,
.system-flow,
.timeline,
.offers-grid,
.authority-list,
.service-cluster,
.principles {
  gap: var(--space-micro);
}

.content-card,
.faq-item,
.mini-link-card,
.offer-card,
.authority-item {
  padding: 1.75rem;
}

.hero-actions,
.contact-actions,
.cta-band .hero-actions {
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  min-height: 3.75rem;
  padding-inline: 1.6rem;
}

.button-secondary {
  background: rgba(255, 253, 248, 0.78);
}

.system-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2rem;
  padding-top: 1.5rem;
  align-items: start;
}

.system-flow::before {
  top: 1.8rem;
  left: 1%;
  right: 1%;
}

.approach-card {
  padding: 3rem 0 0;
}

.approach-card strong {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.approach-card span,
.process-flow span {
  font-size: 1rem;
  color: var(--accent-strong);
}

.approach-card p,
.process-flow p {
  max-width: 11rem;
}

.process-flow {
  gap: 2rem;
  padding-top: 1.5rem;
}

.process-flow::before {
  top: 1.95rem;
  left: 1%;
  right: 1%;
}

.process-flow article {
  padding: 3rem 0 0;
}

.authority-section {
  padding-inline: clamp(1.5rem, 2.4vw, 2rem);
}

.authority-list {
  gap: 1.5rem;
}

.authority-item {
  min-height: 100%;
  border: 1px solid rgba(19, 46, 79, 0.12);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.84);
}

.authority-item-featured {
  background: rgba(255, 253, 248, 0.98);
  border-color: rgba(217, 174, 93, 0.34);
}

.authority-item blockquote,
.authority-item-featured blockquote {
  max-width: 100%;
}

.authority-outcome {
  margin-top: 1.2rem;
  font-size: clamp(1.05rem, 1.95vw, 1.45rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--ink);
}

.authority-label {
  margin-top: 0.65rem;
  font-size: 0.84rem;
}

.proof-block {
  align-items: start;
  gap: 2rem;
  padding-top: 1.5rem;
}

.principles {
  gap: 1rem 1.5rem;
}

.principles p {
  padding-top: 1rem;
}

.cta-band {
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(4rem, 6vw, 5rem);
  padding: 2.75rem;
}

.cta-band .hero-actions {
  margin-top: 1.5rem;
}

@media (max-width: 1080px) {
  :root {
    --section-space: clamp(5.5rem, 8vw, 6.5rem);
    --space-block: clamp(3rem, 4.5vw, 4rem);
    --space-internal: clamp(1.5rem, 2.2vw, 2rem);
    --space-micro: clamp(1rem, 1.8vw, 1.25rem);
  }

  .page-main {
    padding: 2.5rem 0 4.75rem;
  }

  .section,
  .page-hero {
    padding-block: var(--section-space);
  }

  .page-main > .section + .section,
  .page-main > .section + .content-grid,
  .page-main > .section + .cards-three,
  .page-main > .section + .faq-list,
  .page-main > .section + .visual-gallery,
  .page-main > .content-grid + .section,
  .page-main > .cards-three + .section,
  .page-main > .faq-list + .section,
  .page-main > .visual-gallery + .section,
  .page-main > .section-heading + .cards-three,
  .page-main > .section-heading + .content-grid,
  .page-main > .section-heading + .timeline,
  .page-main > .section-heading + .section,
  .page-main > .cta-band + .section,
  .page-main > .section + .cta-band {
    margin-top: clamp(3rem, 4.5vw, 4rem);
  }
}

@media (max-width: 1024px) {
  :root {
    --section-space: clamp(3.5rem, 9vw, 4.5rem);
    --space-block: clamp(2.25rem, 6vw, 3rem);
    --space-internal: clamp(1rem, 3.8vw, 1.5rem);
    --space-micro: clamp(1rem, 3vw, 1.5rem);
  }

  .page-main {
    padding: 2rem 0 4rem;
  }

  .section,
  .page-hero,
  .about-band,
  .page-main > .content-grid,
  .page-main > .cards-three,
  .page-main > .faq-list,
  .page-main > .visual-gallery,
  .page-main > .section-heading,
  .page-main > .cta-band,
  .page-main > .authority-section {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -0.3rem;
    margin-right: -0.3rem;
  }

  .page-hero {
    padding-top: 3.5rem;
    padding-bottom: 3rem;
  }

  .eyebrow {
    margin-bottom: 0.9rem;
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .hero-actions,
  .contact-actions,
  .cta-band .hero-actions {
    gap: 0.75rem;
    margin-top: 1.5rem;
  }

  .button,
  .button-cta,
  .hero-actions .button,
  .contact-actions .button,
  .cta-band .button {
    width: 100%;
    min-height: 3.5rem;
  }

  .system-flow,
  .timeline.process-flow {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 1.25rem 1rem 0 1.5rem;
  }

  .system-flow::before,
  .process-flow::before {
    display: block;
    left: 0.52rem;
    right: auto;
    top: 1.05rem;
    bottom: 1rem;
    width: 1px;
    height: auto;
  }

  .approach-card,
  .process-flow article {
    padding: 0 0 0 2.2rem;
    min-height: 0;
  }

  .approach-card::before,
  .process-flow article::before {
    top: 0.15rem;
    left: 0;
  }

  .approach-card::after,
  .process-flow article::after {
    display: none;
  }

  .approach-card p,
  .process-flow p,
  .hero .lede,
  .page-lede,
  .article-intro,
  .article-section p,
  .case-study-block p,
  .legal-page p,
  .content-card p,
  .faq-item p,
  .mini-link-card p,
  .form-note,
  .problem-band > p,
  .bilingual-band > p,
  .proof-copy p,
  .contact-actions p,
  .visual-panel-copy .page-lede,
  .contact-form-section .page-lede,
  .offer-card p,
  .timeline p {
    max-width: 100%;
  }

  .content-card,
  .faq-item,
  .mini-link-card,
  .offer-card,
  .authority-item {
    padding: 1.25rem;
  }

  .authority-list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .authority-outcome {
    font-size: 1.08rem;
  }

  .proof-block,
  .problem-band,
  .bilingual-band,
  .contact-card,
  .visual-panel,
  .cta-band {
    gap: 1.5rem;
  }

  .cta-band {
    margin-top: 3rem;
    padding: 1.5rem 1rem;
  }

  .service-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

@media (max-width: 520px) {
  .section,
  .page-hero,
  .about-band,
  .page-main > .content-grid,
  .page-main > .cards-three,
  .page-main > .faq-list,
  .page-main > .visual-gallery,
  .page-main > .section-heading,
  .page-main > .cta-band,
  .page-main > .authority-section {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-left: -0.4rem;
    margin-right: -0.4rem;
  }

  .service-cluster {
    grid-template-columns: 1fr 1fr;
  }
}
/* === REFINEMENT SYSTEM END === */

/* === RELATED CASE STUDIES START === */
.related-case-study-section,
.related-case-study-prompt {
  border-top: 1px solid rgba(19, 46, 79, 0.08);
}

.related-case-study-section .section-heading,
.related-case-study-prompt .section-heading {
  max-width: 44rem;
}

.related-case-study-section .cards-three,
.related-case-study-prompt .cards-three {
  margin-top: 0;
}

.related-case-study-prompt .hero-actions {
  margin-top: 1.5rem;
}

.related-case-study-prompt .page-lede {
  max-width: 38rem;
}

@media (max-width: 720px) {
  .related-case-study-section,
  .related-case-study-prompt {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}
/* === RELATED CASE STUDIES END === */

.problem-subtitle {
  margin: 1rem 0 0;
  max-width: 16ch;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.18;
  color: var(--muted);
}

.problem-list {
  display: grid;
  gap: 0.85rem;
  align-content: start;
  padding-top: 0.2rem;
}

.problem-list p {
  margin: 0;
  max-width: 28rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.problem-list strong {
  color: var(--ink);
}

.problem-closing {
  margin-top: 0.4rem !important;
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink) !important;
}

.nav-mobile-cta,
.mobile-menu-cta,
.topbar .mobile-menu-cta {
  display: none !important;
}

@media (max-width: 720px) {
  .nav-mobile-cta,
  .mobile-menu-cta,
  .topbar .mobile-menu-cta {
    display: inline-flex !important;
    width: 100%;
    margin-top: 0.35rem;
  }

  .hero {
    min-height: auto;
  }

  .problem-list {
    gap: 0.75rem;
  }
}

.contact-card {
  background: var(--navy-strong);
  border: 1px solid rgba(217, 174, 93, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}

.contact-card .eyebrow {
  color: var(--accent-strong);
}

.contact-card h2,
.contact-card p {
  color: #f7f3eb;
}

.contact-card .button-secondary {
  color: #f7f3eb;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card .button-secondary:hover {
  color: #fff;
  border-color: rgba(217, 174, 93, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.contact-monogram {
  display: none;
}

@media (max-width: 720px) {
  .contact-card {
    padding: 1.5rem 1rem;
  }
}

.contact-card {
  background: var(--navy-strong);
  border: 1px solid rgba(217, 174, 93, 0.22);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
}

.contact-card .eyebrow {
  color: var(--accent-strong);
}

.contact-card h2,
.contact-card p {
  color: #f7f3eb;
}

.contact-card .button-secondary {
  color: #f7f3eb;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.contact-card .button-secondary:hover {
  color: #fff;
  border-color: rgba(217, 174, 93, 0.5);
  background: rgba(255, 255, 255, 0.14);
}

.contact-monogram {
  display: none;
}

@media (max-width: 720px) {
  .contact-card {
    padding: 1.5rem 1rem;
  }
}


@media (max-width: 1024px) {
  .topbar {
    flex-wrap: wrap;
    align-items: center;
    border-radius: 8px;
    top: 0.35rem;
  }

  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
    margin-left: 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(19, 46, 79, 0.1);
    gap: 0.65rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .topbar.nav-open .nav {
    display: flex;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.4rem 0;
    font-size: 0.94rem;
  }

  .lang-switch {
    width: auto;
    align-self: center;
    justify-content: center;
    gap: 0.2rem;
    margin-left: 0;
    padding: 0.6rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(19, 46, 79, 0.08);
  }
}

@media (min-width: 1025px) {
  .nav-toggle {
    display: none !important;
  }

  .nav {
    display: flex !important;
  }

  .header-cta {
    display: inline-flex;
  }
}

/* === Unified premium refinement system: May 2026 === */
.topbar {
  gap: 0.9rem;
  padding: 0.5rem 0.95rem;
  margin-top: 0.9rem;
  border-radius: 0.85rem;
  border-color: rgba(19, 46, 79, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 14px 34px rgba(19, 46, 79, 0.06);
  backdrop-filter: blur(8px);
}

.brand-wordmark {
  width: min(8rem, 21vw);
}

.topbar.is-compact {
  padding: 0.32rem 0.82rem;
  box-shadow: 0 16px 36px rgba(19, 46, 79, 0.1);
}

.topbar.is-compact .brand-wordmark {
  width: min(8.2rem, 23vw);
  margin-top: 0;
  margin-bottom: 0;
}

.nav {
  gap: 1rem;
}

.nav a {
  font-size: 0.9rem;
}

.nav a::after {
  bottom: -0.34rem;
}

.header-cta {
  min-height: 2.8rem;
  padding-inline: 1rem;
  font-size: 0.83rem;
}

.hero {
  min-height: calc(100vh - 6.35rem);
  padding-top: 0.5rem;
  gap: clamp(2.3rem, 4vw, 3.6rem);
  align-items: start;
}

.hero .lede {
  max-width: 28rem;
  margin-top: 1.2rem;
  font-size: 0.98rem;
  line-height: 1.72;
}

.hero-actions {
  margin: 1.7rem 0 1rem;
}

.hero-panel {
  padding: 1.3rem 1.3rem 1.15rem;
  border: 1px solid rgba(217, 174, 93, 0.24);
  border-radius: 1rem;
  background: linear-gradient(180deg, rgba(11, 31, 54, 1), rgba(16, 45, 76, 1));
  box-shadow: 0 22px 50px rgba(11, 31, 54, 0.16);
}

.hero-step-title {
  margin: 0 0 0.28rem;
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-strong);
}

.hero-flow article {
  padding: 0.92rem 0;
  align-items: start;
}

.hero-flow span {
  font-size: 1rem;
  color: rgba(217, 174, 93, 0.9);
}

.hero-flow-copy p:not(.hero-step-title) {
  margin: 0;
}

.eyebrow {
  margin: 0 0 0.72rem;
  color: rgba(63, 130, 168, 0.9);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.section {
  padding-top: clamp(5rem, 7vw, 6.8rem);
  padding-bottom: clamp(5rem, 7vw, 6.8rem);
  border-top: 1px solid rgba(19, 46, 79, 0.08);
}

.page-main {
  padding: 2.05rem 0 4.75rem;
}

.page-hero {
  padding: 3rem 0 2.4rem;
  max-width: 56rem;
}

.page-hero h1,
.hero h1,
.section h2,
.section-heading h2,
.problem-band h2,
.proof-copy h2,
.contact-card h2,
.visual-panel-copy h2 {
  letter-spacing: -0.055em;
}

.section-heading {
  max-width: 56rem;
  margin-bottom: clamp(2rem, 3vw, 2.8rem);
}

.section-heading .page-lede,
.section-heading .section-guidance,
.visual-panel-copy .page-lede,
.proof-copy > p:last-child,
.bilingual-band > div:first-child > p:last-child,
.problem-subtitle {
  max-width: 38rem;
  color: rgba(83, 103, 125, 0.92);
  line-height: 1.68;
}

.section.system-step,
.authority-section,
.section.visual-gallery,
.section.bilingual-band,
.section.problem-band,
.section.proof-block,
.section.contact-card {
  position: relative;
}

.section.system-step::before,
.authority-section::before,
.section.visual-gallery::before,
.section.bilingual-band::before,
.section.problem-band::before,
.section.proof-block::before,
.section.contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(19, 46, 79, 0), rgba(19, 46, 79, 0.12) 6%, rgba(19, 46, 79, 0.12) 94%, rgba(19, 46, 79, 0));
}

.problem-band,
.bilingual-band,
.proof-block {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.8rem, 4.6vw, 5rem);
  align-items: start;
  padding-top: 0;
  border-top: 0;
}

.problem-band > div:first-child,
.bilingual-band > div:first-child,
.proof-block > div:first-child {
  position: relative;
  padding-right: clamp(1.1rem, 2vw, 1.8rem);
}

.problem-band > div:first-child::after,
.bilingual-band > div:first-child::after,
.proof-block > div:first-child::after {
  content: "";
  position: absolute;
  top: 0.32rem;
  right: 0;
  bottom: 0.32rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(19, 46, 79, 0.16), rgba(19, 46, 79, 0.03));
}

.problem-band h2,
.bilingual-band h2,
.proof-copy h2,
.contact-card h2,
.section-heading h2 {
  max-width: 11.5ch;
  line-height: 0.9;
}

.problem-subtitle {
  margin-top: 1rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.18rem, 2vw, 1.48rem);
  line-height: 1.2;
  color: var(--ink);
}

.credibility-stack,
.problem-list,
.principles {
  display: grid;
  gap: 0;
  align-content: start;
}

.credibility-stack p,
.problem-list p,
.principles p {
  position: relative;
  margin: 0;
  padding: 1.12rem 0 1.12rem 1.45rem;
  max-width: 35rem;
  color: rgba(62, 81, 103, 0.96);
  line-height: 1.6;
  border-top: 1px solid rgba(19, 46, 79, 0.11);
}

.credibility-stack p:last-child,
.problem-list p:last-child,
.principles p:last-child {
  border-bottom: 1px solid rgba(19, 46, 79, 0.11);
}

.credibility-stack p::before,
.problem-list p::before,
.principles p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.42rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(217, 174, 93, 0.95);
  box-shadow: 0 0 0 3px rgba(217, 174, 93, 0.12);
}

.problem-closing {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink) !important;
}

.problem-closing::before {
  background: var(--navy-strong) !important;
  box-shadow: 0 0 0 3px rgba(19, 46, 79, 0.08) !important;
}

.visual-panel {
  gap: clamp(2.4rem, 4vw, 3.6rem);
  padding-top: 0;
  border-top: 0;
}

.visual-panel-copy h2 {
  max-width: 10.5ch;
}

.service-cluster {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1rem;
  padding-top: 0;
}

.service-cluster::before {
  display: none;
}

.service-cluster span {
  padding: 1rem 1rem 1rem 1.1rem;
  border: 1px solid rgba(19, 46, 79, 0.1);
  border-radius: 0.9rem;
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 0 14px 32px rgba(19, 46, 79, 0.04);
  font-size: 0.98rem;
}

.service-cluster span::before {
  top: 1.18rem;
  left: 1rem;
  width: 0.55rem;
  height: 0.55rem;
  border: 0;
  box-shadow: none;
}

.service-cluster span {
  padding-left: 2rem;
}

.content-card,
.offer-card,
.faq-item,
.authority-item,
.timeline article,
.approach-card,
.linked-card.service-link-card {
  border: 1px solid rgba(19, 46, 79, 0.1);
  border-radius: 1rem;
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 14px 36px rgba(19, 46, 79, 0.045);
}

.content-card,
.offer-card,
.faq-item,
.authority-item,
.timeline article,
.approach-card {
  padding: 1.35rem 1.2rem 1.2rem;
}

.content-card h3,
.offer-card h3,
.faq-item h3,
.approach-card strong,
.timeline strong {
  margin-bottom: 0.6rem;
}

.content-card p,
.offer-card p,
.faq-item p,
.approach-card p,
.timeline p,
.authority-label,
.authority-outcome,
.service-link-card p:not(.service-link-arrow) {
  max-width: none;
  line-height: 1.62;
}

.linked-card:hover,
.mini-link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(217, 174, 93, 0.34);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 18px 42px rgba(19, 46, 79, 0.07);
}

.faq-list {
  gap: 1rem;
}

.faq-item {
  padding: 1.4rem 1.3rem;
}

.faq-item h3 {
  font-size: 1.06rem;
  line-height: 1.25;
}

.faq-item p {
  color: rgba(73, 92, 113, 0.96);
}

.service-link-card {
  min-height: 15rem;
}

.service-link-arrow {
  margin-top: auto !important;
  padding-top: 1rem;
  color: rgba(19, 46, 79, 0.88) !important;
}

.service-family-nav {
  gap: 0.7rem;
  margin-bottom: 2.1rem;
  padding-top: 0.9rem;
}

.service-family-link {
  min-height: 2.5rem;
  padding: 0 0.9rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.82);
}

.system-flow {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.05rem;
  padding: 0;
}

.system-flow::before,
.process-flow::before,
.approach-card::before,
.approach-card::after,
.process-flow article::before,
.process-flow article::after {
  display: none;
}

.approach-card,
.timeline article {
  min-height: 100%;
}

.approach-card span,
.process-flow span {
  display: block;
  margin-bottom: 0.82rem;
  color: rgba(217, 174, 93, 0.96);
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.approach-card strong,
.process-flow strong {
  display: block;
  font-size: 1.04rem;
  letter-spacing: -0.02em;
}

#process .process-flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1.1rem;
  padding: 0;
  position: static;
}

#process .process-flow article {
  min-height: 100%;
}

#process .process-flow article:nth-child(-n + 3) {
  grid-column: span 2;
}

#process .process-flow article:nth-child(4),
#process .process-flow article:nth-child(5) {
  grid-column: span 3;
}

.authority-section {
  padding-top: clamp(5rem, 7vw, 6rem);
  padding-bottom: clamp(5rem, 7vw, 6rem);
}

.authority-heading {
  max-width: 35rem;
}

.authority-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
  margin-top: 0.4rem;
}

.authority-item {
  height: 100%;
}

.authority-item blockquote {
  max-width: none;
  font-size: 1.12rem;
  line-height: 1.3;
}

.authority-item-featured {
  background: linear-gradient(180deg, rgba(12, 31, 53, 0.985), rgba(18, 47, 79, 0.96));
  border-color: rgba(217, 174, 93, 0.42);
  box-shadow: 0 22px 48px rgba(19, 46, 79, 0.14);
}

.authority-item-featured blockquote,
.authority-item-featured .authority-outcome,
.authority-item-featured .authority-label {
  color: #f5efe4;
}

.authority-item-featured .authority-label {
  color: rgba(245, 239, 228, 0.78);
}

.testimonial-reveal {
  margin-top: 1.5rem;
}

.testimonial-reveal summary {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0 1.15rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(19, 46, 79, 0.16);
  background: rgba(255, 253, 248, 0.72);
  color: var(--ink);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.testimonial-reveal summary::-webkit-details-marker {
  display: none;
}

.testimonial-reveal summary:hover {
  transform: translateY(-1px);
  border-color: rgba(217, 174, 93, 0.44);
  background: rgba(217, 174, 93, 0.08);
  box-shadow: 0 12px 28px rgba(19, 46, 79, 0.05);
}

.testimonial-reveal[open] summary {
  margin-bottom: 1.1rem;
}

.testimonial-reveal .authority-list {
  margin-top: 0;
}

@media (min-width: 1025px) {
  .testimonial-reveal[open] .authority-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.1rem;
  }

  .nav-toggle {
    display: none !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  .nav {
    display: flex !important;
  }

  .header-cta {
    display: inline-flex !important;
  }
}

.cta-band,
.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 3vw, 3rem);
  margin-top: clamp(3.6rem, 5vw, 4.9rem);
  padding: 2.6rem;
  border: 1px solid rgba(217, 174, 93, 0.2);
  border-radius: 1.2rem;
  background: linear-gradient(180deg, rgba(11, 31, 54, 1), rgba(16, 45, 76, 1));
  box-shadow: 0 24px 56px rgba(11, 31, 54, 0.16);
}

.cta-band::after {
  display: none !important;
}

.cta-band h2,
.contact-card h2 {
  color: #f7f3eb;
}

.cta-band .eyebrow,
.contact-card .eyebrow {
  color: var(--accent-strong);
}

.cta-band p,
.cta-band .page-lede,
.contact-card p {
  color: rgba(247, 243, 235, 0.78);
}

.cta-band .button-primary,
.contact-card .button-primary {
  background: var(--accent-strong);
  color: var(--ink);
}

.cta-band .button-secondary,
.contact-card .button-secondary {
  color: #f7f3eb;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.cta-band .button-secondary:hover,
.contact-card .button-secondary:hover {
  color: #fff;
  border-color: rgba(217, 174, 93, 0.52);
  background: rgba(255, 255, 255, 0.12);
}

.site-footer {
  align-items: start;
  margin-top: clamp(4.8rem, 7vw, 7rem);
  padding-top: 2.5rem;
}

.site-footer > div:first-child {
  padding-top: 0.15rem;
}

.footer-wordmark {
  margin-bottom: 1.1rem;
}

.footer-links {
  align-content: start;
  gap: 0.8rem 2rem;
}

.footer-links a {
  color: rgba(19, 46, 79, 0.9);
}

@media (max-width: 1024px) {
  .topbar {
    padding: 0.46rem 0.82rem;
    top: 0.35rem;
  }

  .brand-wordmark {
    width: min(7.3rem, 34vw);
  }

  .header-cta {
    display: none !important;
  }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    flex: 0 0 auto;
    margin-left: auto;
  }

  .nav {
    display: none;
    width: 100%;
    order: 3;
    margin-left: 0;
    padding-top: 0.9rem;
    border-top: 1px solid rgba(19, 46, 79, 0.1);
    gap: 0.65rem;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
  }

  .topbar.nav-open .nav {
    display: flex;
  }

  .nav a {
    display: block;
    width: 100%;
    padding: 0.4rem 0;
    font-size: 0.94rem;
  }

  .lang-switch {
    width: auto;
    align-self: center;
    justify-content: center;
    gap: 0.2rem;
    margin-left: 0;
    padding: 0.6rem 0 0;
    border-left: 0;
    border-top: 1px solid rgba(19, 46, 79, 0.08);
  }

  .nav-mobile-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.35rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .problem-band,
  .bilingual-band,
  .proof-block,
  .visual-panel,
  .cta-band,
  .contact-card {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .problem-band > div:first-child,
  .bilingual-band > div:first-child,
  .proof-block > div:first-child {
    padding-right: 0;
  }

  .problem-band > div:first-child::after,
  .bilingual-band > div:first-child::after,
  .proof-block > div:first-child::after {
    display: none;
  }

  .service-cluster,
  .system-flow,
  .timeline,
  .authority-list,
  .offers-grid,
  .cards-three,
  .page-grid-links,
  .content-grid {
    grid-template-columns: 1fr;
  }

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

  #process .process-flow article:nth-child(-n + 5) {
    grid-column: span 1;
  }

  .testimonial-reveal summary {
    width: 100%;
  }

  .site-footer {
    margin-top: 3.75rem;
    padding-top: 2rem;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .authority-list,
  .cards-three,
  .page-grid-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 720px) {
  .section {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .page-main {
    padding-top: 1.6rem;
  }

  .page-hero {
    padding: 2.35rem 0 1.9rem;
  }

  .hero h1,
  .page-hero h1,
  .section h2,
  .section-heading h2,
  .problem-band h2,
  .proof-copy h2,
  .contact-card h2,
  .visual-panel-copy h2 {
    max-width: 12ch;
  }

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

  #process .process-flow article:nth-child(-n + 5) {
    grid-column: auto;
  }

  .cta-band,
  .contact-card {
    padding: 1.8rem 1.2rem;
  }
}


/* === Aeolus reference implementation system: May 2026 === */
:root {
  --ae-shell: min(1216px, calc(100% - 2.5rem));
  --ae-section-space: clamp(5.75rem, 7vw, 7.75rem);
  --ae-section-space-tight: clamp(4.75rem, 6vw, 6.15rem);
  --ae-stack-lg: clamp(2.25rem, 3vw, 3.25rem);
  --ae-stack-md: clamp(1.35rem, 2vw, 1.9rem);
  --ae-stack-sm: clamp(0.8rem, 1.2vw, 1.05rem);
  --ae-copy-max: 41rem;
  --ae-heading-max: 11.8ch;
  --ae-label-size: 0.79rem;
  --ae-card-radius: 18px;
  --ae-card-border: rgba(19, 46, 79, 0.08);
  --ae-card-shadow: 0 10px 26px rgba(13, 39, 70, 0.045);
  --ae-card-shadow-strong: 0 18px 42px rgba(13, 39, 70, 0.08);
  --ae-soft-surface: rgba(255, 253, 248, 0.86);
  --ae-soft-surface-strong: rgba(255, 253, 248, 0.95);
  --ae-tint-surface: rgba(244, 241, 234, 0.92);
  --ae-tint-surface-2: rgba(239, 235, 226, 0.84);
  --ae-dark-surface: linear-gradient(180deg, rgba(13, 39, 70, 0.985) 0%, rgba(15, 45, 78, 0.97) 100%);
  --ae-rule: rgba(19, 46, 79, 0.1);
  --ae-text-strong: rgba(19, 46, 79, 0.96);
  --ae-text: rgba(38, 59, 83, 0.84);
  --ae-text-soft: rgba(38, 59, 83, 0.66);
}

.site-shell {
  width: var(--ae-shell);
  margin: 0 auto;
  padding-bottom: 4.75rem;
}

.topbar {
  top: 0.7rem;
  gap: 1rem;
  padding: 0.8rem 1.35rem;
  margin-top: 0.95rem;
  border-radius: 10px;
  border-color: rgba(19, 46, 79, 0.1);
  background: rgba(255, 252, 246, 0.96);
  box-shadow: 0 12px 24px rgba(13, 39, 70, 0.04);
}

.topbar.is-compact {
  gap: 0.82rem;
  padding: 0.46rem 1.05rem;
  border-radius: 10px;
  box-shadow: 0 12px 26px rgba(13, 39, 70, 0.08);
}

.brand-wordmark {
  width: min(9.8rem, 25vw);
}

.topbar.is-compact .brand-wordmark {
  width: min(9.45rem, 28vw);
  margin-top: -0.4rem;
  margin-bottom: -0.18rem;
}

.nav {
  gap: 1.15rem;
}

.nav a {
  font-size: 0.9rem;
  font-weight: 600;
}

.header-cta {
  min-height: 2.9rem;
  padding-inline: 1rem;
  font-size: 0.82rem;
}

.section {
  position: relative;
  padding-block: var(--ae-section-space);
  border-top: 1px solid rgba(19, 46, 79, 0.08);
}

.section-heading {
  max-width: 47rem;
  margin-bottom: var(--ae-stack-lg);
}

.eyebrow {
  margin: 0 0 1rem;
  color: rgba(19, 46, 79, 0.68);
  font-size: var(--ae-label-size);
  font-weight: 700;
  letter-spacing: 0.18em;
}

.section h2,
.section-heading h2,
.problem-band h2,
.contact-card h2,
.cta-band h2 {
  max-width: var(--ae-heading-max);
  font-size: clamp(2.85rem, 5vw, 4.75rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.section p,
.page-lede,
.lede,
.content-card p,
.offer-card p,
.faq-item p,
.timeline p,
.approach-card p {
  color: var(--ae-text);
  line-height: 1.7;
}

.section-heading .page-lede,
.section-heading .section-guidance {
  max-width: 35rem;
  margin-top: 1rem;
  font-size: 1.03rem;
  color: var(--ae-text);
}

.button {
  min-height: 3.35rem;
  padding-inline: 1.35rem;
  border-radius: 8px;
  font-size: 0.92rem;
}

.button-primary {
  box-shadow: 0 10px 18px rgba(201, 152, 63, 0.14);
}

.button-secondary {
  border-color: rgba(19, 46, 79, 0.16);
  background: rgba(255, 255, 255, 0.56);
}

.button-secondary:hover {
  background: rgba(217, 174, 93, 0.08);
}

.content-card,
.offer-card,
.faq-item,
.timeline article,
.approach-card,
.authority-item {
  border: 1px solid var(--ae-card-border);
  border-radius: var(--ae-card-radius);
  background: var(--ae-soft-surface);
  box-shadow: var(--ae-card-shadow);
}

.content-card,
.faq-item {
  padding: 1.55rem 1.55rem 1.7rem;
}

.content-card h2,
.content-card h3,
.offer-card h3,
.faq-item h3 {
  margin-bottom: 0.7rem;
}

.content-card h3,
.offer-card h3,
.faq-item h3 {
  font-size: 1.24rem;
  line-height: 1.08;
}

.faq-item {
  background: rgba(255, 253, 248, 0.8);
}

.cta-band,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: var(--ae-dark-surface);
  box-shadow: 0 22px 44px rgba(13, 39, 70, 0.12);
}

.cta-band::after,
.contact-card::after {
  content: "";
  position: absolute;
  right: -12rem;
  bottom: -11rem;
  width: 26rem;
  height: 26rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(217, 174, 93, 0.14), transparent 58%);
  pointer-events: none;
}

.cta-band .eyebrow,
.contact-card .eyebrow {
  color: rgba(217, 174, 93, 0.92);
}

.cta-band h2,
.contact-card h2 {
  color: #fff;
}

.cta-band p,
.cta-band .page-lede,
.contact-card p,
.contact-card .page-lede {
  color: rgba(255, 255, 255, 0.74);
}

.cta-band .button-secondary,
.contact-card .button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.cta-band .button-secondary:hover,
.contact-card .button-secondary:hover {
  border-color: rgba(217, 174, 93, 0.55);
  background: rgba(255, 255, 255, 0.14);
}

.site-footer {
  margin-top: clamp(4.9rem, 7vw, 6.75rem);
  padding-top: 2.25rem;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem 3rem;
  align-items: start;
  border-top: 1px solid rgba(19, 46, 79, 0.12);
}

.site-footer > div:first-child {
  max-width: 23rem;
  padding-top: 0.2rem;
}

.footer-wordmark {
  width: min(15.7rem, 56vw);
  margin-bottom: 1.15rem;
}

.site-footer p {
  margin: 0;
  color: rgba(83, 103, 125, 0.92);
  font-size: 0.98rem;
  line-height: 1.56;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(8rem, auto));
  gap: 0.8rem 2.8rem;
  align-content: start;
  padding-top: 0.35rem;
}

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

main#home {
  display: grid;
  gap: 0;
}

main#home .section {
  padding-block: var(--ae-section-space);
}

main#home .hero {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: clamp(2rem, 3vw, 3.2rem);
  align-items: center;
  min-height: auto;
  padding-top: clamp(1.85rem, 4vw, 2.85rem);
  padding-bottom: clamp(4.35rem, 6vw, 5.6rem);
  border-top: 0;
}

main#home .hero-copy {
  display: grid;
  align-content: start;
  max-width: 35rem;
  padding: 0.9rem 0;
}

main#home .hero-copy::before {
  content: "";
  display: block;
  width: 4.8rem;
  height: 1px;
  margin-bottom: 1.7rem;
  background: rgba(19, 46, 79, 0.24);
}

main#home .hero .eyebrow {
  margin-bottom: 1.12rem;
}

main#home .hero h1 {
  max-width: 8.15ch;
  font-size: clamp(4.4rem, 7.55vw, 6.72rem);
  line-height: 0.92;
  letter-spacing: -0.055em;
}

main#home .hero h1 span {
  color: #284e79;
}

main#home .hero .lede {
  max-width: 29rem;
  margin-top: 1.72rem;
  font-size: 1.06rem;
  line-height: 1.76;
}

main#home .hero-actions {
  margin: 2.3rem 0 1.35rem;
  gap: 0.95rem;
}

main#home .hero-microcopy {
  gap: 0.72rem;
}

main#home .hero-microcopy span {
  padding: 0.48rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(19, 46, 79, 0.12);
  background: rgba(255, 253, 248, 0.82);
  color: rgba(19, 46, 79, 0.72);
  font-size: 0.67rem;
  letter-spacing: 0.12em;
}

main#home .hero-panel {
  position: relative;
  align-self: center;
  padding: 1.65rem 1.7rem 0.45rem;
  border: 1px solid rgba(217, 174, 93, 0.18);
  border-radius: 18px;
  background: var(--ae-dark-surface);
  box-shadow: 0 24px 54px rgba(13, 39, 70, 0.18);
  overflow: hidden;
}

main#home .hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(217, 174, 93, 0.12), transparent 44%);
  pointer-events: none;
}

main#home .hero-system-head,
main#home .hero-flow {
  position: relative;
  z-index: 1;
}

main#home .card-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

main#home .hero-wordmark {
  width: min(9.4rem, 44%);
}

main#home .hero-flow {
  display: grid;
  grid-template-columns: 1fr;
  margin-top: 0.52rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

main#home .hero-flow article {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  column-gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: transparent;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
  border-radius: 0;
}

main#home .hero-flow article:last-child {
  border-bottom: 0;
}

main#home .hero-flow span {
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  color: rgba(217, 174, 93, 0.92);
}

main#home .hero-step-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.94);
}

main#home .hero-flow-copy p:not(.hero-step-title) {
  margin-top: 0.34rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

main#home .problem-band,
main#home .bilingual-band,
main#home .proof-block {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  gap: clamp(2.5rem, 4vw, 4.4rem);
  align-items: start;
  padding-top: 2.45rem;
  background: transparent;
  border: 0;
  box-shadow: none;
}

main#home .problem-band > div:first-child,
main#home .bilingual-band > div:first-child,
main#home .proof-block > div:first-child {
  position: relative;
  padding-top: 0.5rem;
}

main#home .problem-band > div:first-child::after,
main#home .bilingual-band > div:first-child::after,
main#home .proof-block > div:first-child::after {
  content: "";
  display: block;
  width: 4rem;
  height: 1px;
  margin-top: 1.45rem;
  background: rgba(19, 46, 79, 0.18);
}

main#home .problem-subtitle {
  max-width: 25rem;
  margin-top: 1.08rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
  line-height: 1.35;
  color: rgba(19, 46, 79, 0.7);
}

main#home .problem-list,
main#home .credibility-stack,
main#home .principles {
  display: grid;
  gap: 1.05rem;
}

main#home .problem-list p,
main#home .credibility-stack p,
main#home .principles p {
  margin: 0;
  padding: 1.18rem 1.24rem;
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px rgba(19, 46, 79, 0.08);
  background: var(--ae-soft-surface-strong);
}

main#home .problem-list strong {
  color: var(--ink);
}

main#home .problem-closing {
  background: rgba(19, 46, 79, 0.05) !important;
  color: var(--ink) !important;
  font-family: "Sora", sans-serif;
  font-weight: 600;
}

main#home .bilingual-band {
  counter-reset: credibility-step;
}

main#home .bilingual-band::before,
main#home .proof-block::before,
main#home section#offers::before {
  content: "";
  position: absolute;
  inset: 1.2rem -1rem 1.2rem -1rem;
  border-radius: 28px;
  background: var(--ae-tint-surface);
  z-index: -1;
}

main#home .credibility-stack p {
  position: relative;
  padding-left: 3.75rem;
}

main#home .credibility-stack p::before {
  content: "0" counter(credibility-step);
  counter-increment: credibility-step;
  position: absolute;
  left: 1.2rem;
  top: 1.08rem;
  font-family: "Sora", sans-serif;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent-strong);
}

main#home .section-heading {
  max-width: 47rem;
}

main#home .system-flow,
main#home .timeline.process-flow,
main#home .authority-list,
main#home .offers-grid,
main#home .cards-three,
main#home .principles {
  gap: 1.15rem;
}

main#home .system-flow {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

main#home .approach-card {
  display: grid;
  grid-template-columns: 2.8rem minmax(0, 1fr);
  gap: 0.15rem 1rem;
  padding: 1.55rem 1.55rem;
}

main#home .approach-card:nth-child(5) {
  grid-column: 1 / -1;
}

main#home .approach-card span,
main#home .timeline article span {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: start;
  margin: 0;
  font-size: 1rem;
  line-height: 1;
  color: rgba(217, 174, 93, 0.92);
}

main#home .approach-card strong,
main#home .approach-card p,
main#home .timeline article strong,
main#home .timeline article p {
  grid-column: 2;
}

main#home .approach-card strong,
main#home .timeline strong {
  display: block;
  margin-bottom: 0.3rem;
  font-size: 1rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink);
}

main#home .approach-card p,
main#home .timeline p {
  max-width: none;
  margin: 0;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

main#home .timeline.process-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

main#home .timeline article {
  padding: 1.6rem 1.55rem 1.7rem;
}

main#home .timeline.process-flow article:nth-child(5) {
  grid-column: 2 / 4;
}

main#home .authority-section .section-heading,
main#home .section-heading.authority-heading {
  max-width: 40rem;
}

main#home .authority-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main#home .authority-item {
  padding: 1.45rem 1.45rem 1.55rem;
}

main#home .authority-item-featured {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(244, 241, 234, 0.92));
  box-shadow: var(--ae-card-shadow-strong);
}

main#home .authority-item blockquote {
  margin: 0;
  max-width: none;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  line-height: 1.38;
}

main#home .authority-item-featured blockquote {
  font-size: 1.18rem;
}

main#home .authority-outcome {
  margin-top: 1.2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(19, 46, 79, 0.82);
}

main#home .authority-label {
  margin-top: 0.45rem;
  font-size: 0.84rem;
}

main#home .proof-copy p {
  max-width: 30rem;
  font-size: 1.04rem;
}

main#home .principles {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: center;
}

main#home .content-card,
main#home .offer-card {
  padding: 1.65rem 1.55rem 1.75rem;
}

main#home .content-card .eyebrow {
  margin-bottom: 0.8rem;
}

main#home .offer-card {
  background: rgba(255, 253, 248, 0.86);
}

main#home .offer-tag {
  margin: 0 0 0.75rem;
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(19, 46, 79, 0.58);
}

main#home .offer-card.featured {
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(243, 235, 218, 0.98));
  border-color: rgba(217, 174, 93, 0.32);
  box-shadow: var(--ae-card-shadow-strong);
}

main#home .offer-card.featured h3 {
  color: var(--ink);
}

main#home .offer-card.featured .offer-tag {
  color: rgba(19, 46, 79, 0.62);
}

main#home .price-tag {
  margin-top: 1.1rem !important;
  padding-top: 1rem;
  border-top: 1px solid rgba(19, 46, 79, 0.09);
}

main#home section#offers {
  padding-block: var(--ae-section-space-tight);
}

main#home .offers-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main#home .contact-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.4rem, 4vw, 4.4rem);
  align-items: center;
  padding: 2.8rem 0 0;
}

main#home .contact-actions {
  align-self: center;
}

main#home .contact-actions p {
  max-width: 24rem;
  font-size: 0.98rem;
}

main#home .contact-monogram {
  display: none;
}

@media (max-width: 1024px) {
  .site-shell {
    width: min(100%, calc(100% - 1.6rem));
  }

  .topbar {
    padding: 0.76rem 1rem;
  }

  .section,
  main#home .section {
    padding-block: clamp(4.6rem, 8vw, 6rem);
  }

  main#home .hero {
    grid-template-columns: 1fr;
    padding-bottom: 4rem;
  }

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

  main#home .hero-panel {
    max-width: 44rem;
  }

  main#home .problem-band,
  main#home .bilingual-band,
  main#home .proof-block,
  main#home .contact-card {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  main#home .system-flow,
  main#home .timeline.process-flow,
  main#home .authority-list,
  main#home .offers-grid,
  main#home .cards-three,
  main#home .principles {
    grid-template-columns: 1fr 1fr;
  }

  main#home .approach-card:nth-child(5),
  main#home .timeline.process-flow article:nth-child(5) {
    grid-column: 1 / -1;
  }

  main#home .bilingual-band::before,
  main#home .proof-block::before,
  main#home section#offers::before {
    inset: 0.85rem -0.5rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100%, calc(100% - 1.2rem));
  }

  .section,
  main#home .section {
    padding-block: 3.75rem;
  }

  main#home .hero {
    padding-top: 1rem;
    padding-bottom: 3.5rem;
  }

  main#home .hero h1 {
    max-width: 8.45ch;
    font-size: clamp(3.35rem, 14vw, 4.8rem);
  }

  main#home .hero .lede {
    font-size: 1rem;
    max-width: 100%;
  }

  main#home .hero-actions,
  .hero-actions,
  .contact-actions,
  .cta-band .hero-actions {
    gap: 0.8rem;
  }

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

  main#home .hero-panel {
    margin-top: 0.8rem;
    padding: 1.2rem 1.1rem 0.15rem;
    border-radius: 16px;
  }

  main#home .problem-band h2,
  main#home .bilingual-band h2,
  main#home .proof-copy h2,
  main#home .contact-card h2,
  main#home .section-heading h2,
  .section h2,
  .section-heading h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 3.25rem);
  }

  main#home .system-flow,
  main#home .timeline.process-flow,
  main#home .authority-list,
  main#home .offers-grid,
  main#home .cards-three,
  main#home .principles {
    grid-template-columns: 1fr;
  }

  main#home .approach-card,
  main#home .timeline article {
    grid-template-columns: 2.7rem minmax(0, 1fr);
  }

  main#home .approach-card:nth-child(5),
  main#home .timeline.process-flow article:nth-child(5) {
    grid-column: auto;
  }

  main#home .bilingual-band::before,
  main#home .proof-block::before,
  main#home section#offers::before {
    inset: 0.5rem 0;
    border-radius: 18px;
  }

  .content-card,
  .offer-card,
  .faq-item,
  .timeline article,
  .approach-card,
  .authority-item,
  main#home .content-card,
  main#home .offer-card {
    padding-inline: 1.15rem;
  }

  .site-footer {
    margin-top: 4rem;
    padding-top: 1.8rem;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem 1.4rem;
  }
}


/* === Homepage launch polish: May 2026 === */
main#home {
  --home-list-pad-y: 1.02rem;
  --home-list-pad-x: 1.25rem;
  --home-rule: rgba(19, 46, 79, 0.08);
  --home-rule-strong: rgba(19, 46, 79, 0.14);
  --home-surface: rgba(255, 253, 248, 0.78);
  --home-surface-strong: rgba(252, 249, 242, 0.96);
}

main#home .problem-band > div:first-child::after,
main#home .bilingual-band > div:first-child::after,
main#home .proof-block > div:first-child::after,
main#home .problem-band::before,
main#home .bilingual-band::before,
main#home .proof-block::before {
  display: none !important;
  content: none !important;
}

main#home .problem-band,
main#home .bilingual-band,
main#home .proof-block {
  align-items: start;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  padding-top: 2rem;
}

main#home .problem-band > div:first-child,
main#home .bilingual-band > div:first-child,
main#home .proof-block > div:first-child {
  padding-right: 0;
  border-right: 0;
}

main#home .section-heading {
  margin-bottom: 2.4rem;
}

main#home .problem-subtitle,
main#home .proof-copy p {
  max-width: 29rem;
}

main#home .problem-list,
main#home .credibility-stack {
  display: grid;
  gap: 0.85rem;
}

main#home .problem-list p,
main#home .credibility-stack p {
  position: relative;
  margin: 0;
  padding: var(--home-list-pad-y) var(--home-list-pad-x) var(--home-list-pad-y) 1.5rem;
  border: 1px solid var(--home-rule);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(252, 249, 242, 0.92));
  box-shadow: 0 6px 16px rgba(13, 39, 70, 0.03);
}

main#home .problem-list p::before,
main#home .credibility-stack p::before {
  content: '';
  position: absolute;
  left: 0.9rem;
  top: 50%;
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 999px;
  background: rgba(217, 174, 93, 0.95);
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(217, 174, 93, 0.12);
}

main#home .problem-list strong {
  color: var(--ink);
}

main#home .problem-closing {
  padding-left: 1.5rem !important;
  border-color: rgba(19, 46, 79, 0.12) !important;
  background: rgba(19, 46, 79, 0.055) !important;
  box-shadow: none !important;
  font-weight: 600;
}

main#home .problem-closing::before {
  background: var(--ink) !important;
  box-shadow: 0 0 0 4px rgba(19, 46, 79, 0.08) !important;
}

main#home .credibility-stack {
  counter-reset: authority-step;
}

main#home .credibility-stack p {
  padding-left: 4rem;
  min-height: 5.3rem;
  display: flex;
  align-items: center;
}

main#home .credibility-stack p::before {
  content: counter(authority-step, decimal-leading-zero);
  counter-increment: authority-step;
  left: 1.15rem;
  top: 50%;
  width: auto;
  height: auto;
  background: none;
  box-shadow: none;
  transform: translateY(-50%);
  color: rgba(217, 174, 93, 0.9);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

main#home .system-flow,
main#home .timeline.process-flow,
main#home .authority-list,
main#home .offers-grid,
main#home .cards-three {
  gap: 1rem;
}

main#home .approach-card,
main#home .timeline article,
main#home .authority-item,
main#home .content-card,
main#home .offer-card {
  border-radius: 22px;
  border: 1px solid rgba(19, 46, 79, 0.08);
  box-shadow: 0 10px 26px rgba(13, 39, 70, 0.035);
}

main#home .approach-card,
main#home .timeline article,
main#home .content-card,
main#home .offer-card,
main#home .authority-item {
  background: var(--home-surface);
}

main#home .system-flow {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

main#home .approach-card {
  padding: 1.35rem 1.25rem 1.42rem;
  min-height: 12.2rem;
}

main#home .approach-card:nth-child(-n + 3) {
  grid-column: span 2;
}

main#home .approach-card:nth-child(4) {
  grid-column: 2 / span 2;
}

main#home .approach-card:nth-child(5) {
  grid-column: 4 / span 2;
}

main#home .approach-card strong {
  display: block;
  margin: 0.45rem 0 0.55rem;
}

main#home #process .section-heading {
  max-width: 36rem;
}

main#home .timeline.process-flow {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: stretch;
}

main#home .timeline.process-flow article {
  padding: 1.38rem 1.28rem 1.4rem;
  min-height: 9.75rem;
}

main#home .timeline.process-flow article:nth-child(-n + 3) {
  grid-column: span 2;
}

main#home .timeline.process-flow article:nth-child(4) {
  grid-column: 2 / span 2;
}

main#home .timeline.process-flow article:nth-child(5) {
  grid-column: 4 / span 2;
}

main#home .timeline.process-flow::after,
main#home .timeline.process-flow::before,
main#home .timeline.process-flow article::before,
main#home .timeline.process-flow article::after {
  display: none !important;
  content: none !important;
}

main#home .timeline.process-flow article strong {
  display: block;
  margin: 0.25rem 0 0.45rem;
  font-size: 1.02rem;
  letter-spacing: 0.14em;
}

main#home .timeline.process-flow article p {
  max-width: 17rem;
}

main#home .authority-list {
  align-items: stretch;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

main#home .authority-item {
  padding: 1.5rem 1.4rem 1.45rem;
}

main#home .authority-item blockquote {
  color: var(--ink);
}

main#home .authority-item-featured {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.98), rgba(244, 236, 221, 0.96));
  border-color: rgba(217, 174, 93, 0.24);
  box-shadow: 0 14px 30px rgba(13, 39, 70, 0.05);
}

main#home .authority-item-featured blockquote,
main#home .authority-item-featured .authority-outcome,
main#home .authority-item-featured .authority-label {
  color: var(--ink);
}

main#home .proof-block {
  padding-top: 2.4rem;
}

main#home .principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
}

main#home .principles p {
  margin: 0;
  min-height: 6.9rem;
  padding: 1.15rem 1.15rem 1.1rem 1.5rem;
  border: 1px solid var(--home-rule);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), rgba(252, 249, 242, 0.9));
  box-shadow: 0 6px 16px rgba(13, 39, 70, 0.03);
}

main#home .principles p::before {
  left: 0.9rem;
  top: 1.55rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(217, 174, 93, 0.95);
  box-shadow: 0 0 0 4px rgba(217, 174, 93, 0.11);
}

main#home section#offers::before {
  display: none;
}

main#home section#offers {
  padding-top: 4.7rem;
}

main#home .offer-card {
  padding: 1.5rem 1.38rem 1.55rem;
  background: rgba(255, 253, 248, 0.65);
  box-shadow: none;
}

main#home .offer-card.featured {
  background: rgba(247, 240, 224, 0.9);
  box-shadow: 0 12px 28px rgba(13, 39, 70, 0.045);
}

main#home .contact-card {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2.2rem;
  padding: 2.5rem 2.35rem;
  align-items: center;
}

main#home .contact-card .eyebrow {
  margin-bottom: 0.85rem;
}

main#home .contact-card h2 {
  max-width: 9.4ch;
  font-size: clamp(2.7rem, 4.4vw, 4.5rem);
  line-height: 0.94;
}

main#home .contact-actions {
  gap: 0.9rem;
  align-self: center;
}

main#home .contact-actions p {
  max-width: 23rem;
  margin-top: 0.35rem;
}

main#home .contact-card::after {
  right: -14rem;
  bottom: -12rem;
  width: 23rem;
  height: 23rem;
  opacity: 0.72;
}

.site-footer {
  align-items: start;
  margin-top: 2.4rem;
  padding-top: 1.9rem;
  padding-bottom: 0.3rem;
  border-top-color: rgba(19, 46, 79, 0.09);
}

.site-footer > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  max-width: 23rem;
}

.footer-wordmark {
  width: min(11.1rem, 44vw);
  height: auto;
  margin-bottom: 0.72rem;
}

.site-footer p {
  max-width: 18rem;
  line-height: 1.55;
}

@media (max-width: 1180px) {
  main#home .system-flow {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  main#home .approach-card:nth-child(-n + 5),
  main#home .approach-card:nth-child(4),
  main#home .approach-card:nth-child(5) {
    grid-column: auto;
  }

  main#home .timeline.process-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main#home .timeline.process-flow article:nth-child(-n + 5),
  main#home .timeline.process-flow article:nth-child(4),
  main#home .timeline.process-flow article:nth-child(5) {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  main#home .problem-band,
  main#home .bilingual-band,
  main#home .proof-block,
  main#home .contact-card {
    gap: 1.9rem;
  }

  main#home .authority-list,
  main#home .offers-grid,
  main#home .cards-three,
  main#home .system-flow {
    grid-template-columns: 1fr 1fr;
  }

  main#home .contact-card {
    grid-template-columns: 1fr;
  }

  .site-footer {
    margin-top: 2.1rem;
  }
}

@media (max-width: 720px) {
  main#home .problem-list p,
  main#home .credibility-stack p,
  main#home .principles p {
    padding-left: 1.4rem;
  }

  main#home .problem-list p::before,
  main#home .principles p::before {
    left: 0.8rem;
  }

  main#home .credibility-stack p {
    padding-left: 1.4rem;
    min-height: auto;
  }

  main#home .credibility-stack p::before {
    content: '';
    left: 0.8rem;
    width: 0.36rem;
    height: 0.36rem;
    border-radius: 999px;
    background: rgba(217, 174, 93, 0.95);
    box-shadow: 0 0 0 4px rgba(217, 174, 93, 0.12);
    transform: translateY(-50%);
  }

  main#home .authority-list,
  main#home .offers-grid,
  main#home .cards-three,
  main#home .system-flow,
  main#home .principles,
  main#home .timeline.process-flow {
    grid-template-columns: 1fr;
  }

  main#home .timeline.process-flow article:nth-child(-n + 5),
  main#home .timeline.process-flow article:nth-child(4),
  main#home .timeline.process-flow article:nth-child(5) {
    grid-column: auto;
  }

  main#home .contact-card h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.7rem);
  }

  .site-footer {
    margin-top: 2rem;
  }

  .site-footer p {
    max-width: none;
  }
}

/* === Inner page reference system rollout: May 2026 === */
.brand-wordmark,
.footer-wordmark,
.hero-wordmark {
  display: block;
}

.brand {
  display: inline-flex;
  align-items: center;
  overflow: hidden;
}

.brand-wordmark {
  width: min(11.4rem, 26vw);
  height: clamp(2.1rem, 2.55vw, 2.55rem);
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.topbar.is-compact .brand-wordmark {
  width: min(10.9rem, 28vw);
  height: clamp(2rem, 2.35vw, 2.28rem);
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.footer-wordmark {
  width: min(11.4rem, 44vw);
  height: clamp(2.1rem, 2.6vw, 2.5rem);
  object-fit: cover;
  object-position: center;
  margin: 0;
}

.site-footer > div:first-child {
  overflow: hidden;
}

main.page-main:not(#home) {
  --inner-section-gap: clamp(4.4rem, 7vw, 6.6rem);
  --inner-block-gap: clamp(1.5rem, 2.4vw, 2.15rem);
}

main.page-main:not(#home) .page-hero {
  max-width: 62rem;
  padding: clamp(3.4rem, 6vw, 4.9rem) 0 clamp(2.4rem, 4vw, 3.2rem);
}

main.page-main:not(#home) .page-hero h1 {
  max-width: 11.5ch;
}

main.page-main:not(#home) > .section,
main.page-main:not(#home) > .about-band,
main.page-main:not(#home) > .content-grid,
main.page-main:not(#home) > .cards-three,
main.page-main:not(#home) > .faq-list,
main.page-main:not(#home) > .authority-section,
main.page-main:not(#home) > .visual-gallery,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .timeline,
main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .case-study-sections,
main.page-main:not(#home) > .legal-page,
main.page-main:not(#home) > .article-layout,
main.page-main:not(#home) > .article-sections {
  margin-bottom: var(--inner-section-gap);
}

main.page-main:not(#home) .section-heading {
  margin-bottom: 2.2rem;
}

main.page-main:not(#home) .section-heading h2,
main.page-main:not(#home) .visual-panel-copy h2,
main.page-main:not(#home) .cta-band h2 {
  max-width: 13ch;
}

main.page-main:not(#home) .page-lede,
main.page-main:not(#home) .compact-lede,
main.page-main:not(#home) .section-guidance,
main.page-main:not(#home) .legal-page p,
main.page-main:not(#home) .article-section p {
  max-width: 46rem;
}

main.page-main:not(#home) .content-grid,
main.page-main:not(#home) .cards-three,
main.page-main:not(#home) .faq-list,
main.page-main:not(#home) .authority-list {
  gap: 1.1rem;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .authority-item,
main.page-main:not(#home) .timeline article,
main.page-main:not(#home) .visual-panel,
main.page-main:not(#home) .contact-form,
main.page-main:not(#home) .service-family-link,
main.page-main:not(#home) .mini-link-card {
  border-radius: 22px;
  border: 1px solid rgba(19, 46, 79, 0.08);
  box-shadow: 0 10px 24px rgba(13, 39, 70, 0.03);
  background: rgba(255, 253, 248, 0.78);
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .authority-item,
main.page-main:not(#home) .timeline article,
main.page-main:not(#home) .contact-form {
  padding: 1.55rem 1.5rem 1.6rem;
}

main.page-main:not(#home) .visual-panel {
  padding: 1.9rem 1.65rem 1.75rem;
  border-top: 0;
}

main.page-main:not(#home) .bilingual-band {
  gap: clamp(2rem, 3.4vw, 3.1rem);
  padding-top: 0;
  border-top: 0;
  margin-bottom: 0;
}

main.page-main:not(#home) .service-family-nav {
  gap: 0.75rem;
  margin-bottom: 2.3rem;
  padding-top: 0;
  border-top: 0;
}

main.page-main:not(#home) .service-family-link {
  min-height: 2.55rem;
  padding: 0 0.95rem;
  background: rgba(255, 253, 248, 0.78);
}

main.page-main:not(#home) .service-family-link.is-active {
  border-color: rgba(217, 174, 93, 0.42);
  background: rgba(217, 174, 93, 0.12);
}

main.page-main:not(#home) .cta-band {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 2rem;
  align-items: center;
  padding: 2.35rem 2.1rem;
  border-radius: 28px;
  border: 1px solid rgba(217, 174, 93, 0.12);
  background: #1f3a5f;
  box-shadow: 0 20px 42px rgba(13, 39, 70, 0.12);
}

main.page-main:not(#home) .cta-band::after {
  display: none;
}

main.page-main:not(#home) .cta-band h2,
main.page-main:not(#home) .cta-band .eyebrow,
main.page-main:not(#home) .cta-band p,
main.page-main:not(#home) .cta-band .page-lede {
  color: #f5f1e8;
}

main.page-main:not(#home) .cta-band .eyebrow {
  color: rgba(217, 174, 93, 0.94);
}

main.page-main:not(#home) .cta-band .button-secondary {
  border-color: rgba(255, 255, 255, 0.16);
  color: #f5f1e8;
  background: rgba(255, 255, 255, 0.06);
}

main.page-main:not(#home) .cta-band .button-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
}

main.page-main:not(#home) .faq-list {
  gap: 0.95rem;
}

main.page-main:not(#home) .faq-item h3 {
  margin-bottom: 0.55rem;
}

main.page-main:not(#home) .authority-list {
  align-items: stretch;
}

main.page-main:not(#home) .authority-item-featured {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.98), rgba(244, 236, 221, 0.96));
  border-color: rgba(217, 174, 93, 0.24);
  box-shadow: 0 14px 30px rgba(13, 39, 70, 0.05);
}

main.page-main:not(#home) .timeline {
  gap: 1rem;
}

main.page-main:not(#home) .timeline article::before,
main.page-main:not(#home) .timeline article::after,
main.page-main:not(#home) .timeline::before,
main.page-main:not(#home) .timeline::after {
  display: none !important;
  content: none !important;
}

main.page-main:not(#home) .legal-page {
  max-width: 52rem;
}

main.page-main:not(#home) .article-layout,
main.page-main:not(#home) .case-study-sections {
  max-width: 56rem;
}

.site-footer {
  align-items: start;
}

.site-footer > div:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

@media (max-width: 1024px) {
  main.page-main:not(#home) .cta-band {
    grid-template-columns: 1fr;
    gap: 1.45rem;
  }
}

@media (max-width: 720px) {
  .brand-wordmark {
    width: min(9.4rem, 42vw);
  }

  main.page-main:not(#home) > .section,
  main.page-main:not(#home) > .about-band,
  main.page-main:not(#home) > .content-grid,
  main.page-main:not(#home) > .cards-three,
  main.page-main:not(#home) > .faq-list,
  main.page-main:not(#home) > .authority-section,
  main.page-main:not(#home) > .visual-gallery,
  main.page-main:not(#home) > .cta-band,
  main.page-main:not(#home) > .timeline,
  main.page-main:not(#home) > .section-heading,
  main.page-main:not(#home) > .case-study-sections,
  main.page-main:not(#home) > .legal-page,
  main.page-main:not(#home) > .article-layout,
  main.page-main:not(#home) > .article-sections {
    margin-bottom: clamp(3.1rem, 9vw, 4.2rem);
  }

  main.page-main:not(#home) .content-grid,
  main.page-main:not(#home) .cards-three,
  main.page-main:not(#home) .authority-list {
    grid-template-columns: 1fr;
  }

  main.page-main:not(#home) .visual-panel {
    padding: 1.45rem 1.2rem 1.35rem;
  }
}


/* === Services page refinement pass: May 2026 === */
.services-page > .page-hero.services-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(3.2rem, 5vw, 5.8rem);
  align-items: start;
  max-width: none;
}

.services-page .services-hero-copy {
  max-width: 41rem;
}

.services-page .services-hero .eyebrow,
.services-page > .section-heading > .eyebrow,
.services-page > .bilingual-band > div:first-child > .eyebrow,
.services-page .visual-panel-copy > .eyebrow,
.services-page > .cta-band > div:first-child > .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.services-page .services-hero h1 {
  max-width: 8.2ch;
  margin-bottom: 1.15rem;
}

.services-page .services-hero .page-lede {
  max-width: 36rem;
  font-size: 1.02rem;
  line-height: 1.8;
}

.services-page .services-hero-panel {
  display: grid;
  gap: 1.15rem;
  align-content: start;
  padding: 1.7rem 1.75rem 1.75rem;
  border-radius: 26px;
  border: 1px solid rgba(19, 46, 79, 0.1);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 231, 0.98));
  box-shadow: 0 18px 34px rgba(13, 39, 70, 0.05);
}

.services-page .services-hero-panel .eyebrow {
  color: rgba(83, 103, 125, 0.9);
}

.services-page .services-hero-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.6rem;
}

.services-page .services-hero-map span {
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  padding: 0.78rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 46, 79, 0.09);
  background: rgba(255, 255, 255, 0.62);
  font-family: "Sora", sans-serif;
  font-size: 0.89rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--ink);
  position: relative;
}

.services-page .services-hero-map span:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: -0.32rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 174, 93, 0.22), rgba(19, 46, 79, 0.08));
}

.services-page .services-hero-note {
  margin: 0;
  max-width: 33rem;
  color: rgba(83, 103, 125, 0.92);
  font-size: 0.95rem;
  line-height: 1.72;
}

.services-page .services-hero-framework {
  display: grid;
  gap: 0.65rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
}

.services-page .services-hero-framework .eyebrow {
  color: rgba(83, 103, 125, 0.88);
}

.services-page .services-hero-framework-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.7rem;
}

.services-page .services-hero-framework-track span {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 2.8rem;
  padding: 0.65rem 0.5rem;
  border-radius: 14px;
  border: 1px solid rgba(217, 174, 93, 0.16);
  background: rgba(248, 243, 234, 0.9);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(19, 46, 79, 0.9);
}

.services-page .services-logic {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.6rem, 4vw, 4.25rem);
  padding: 1.65rem 0 0.75rem;
  margin-top: 0.65rem;
}

.services-page .services-logic > div:first-child,
.services-page .services-logic > p {
  max-width: none;
}

.services-page .services-logic > div:first-child::after,
.services-page .services-logic::before {
  display: none;
  content: none;
}

.services-page .services-logic h2 {
  max-width: 11.6ch;
  font-size: clamp(2.3rem, 4.1vw, 3.85rem);
}

.services-page .services-logic > p {
  font-size: 1.03rem;
  line-height: 1.82;
  color: rgba(52, 74, 98, 0.92);
  max-width: 35rem;
  padding-top: 0.8rem;
}

.services-page > .section-heading {
  max-width: 64rem;
}

.services-page > .section-heading h2 {
  max-width: 11ch;
}

.services-page > .section-heading .section-guidance {
  max-width: 43rem;
}

.services-page .services-lines-heading {
  max-width: 68rem;
  margin-bottom: 1.75rem;
  margin-top: 0.45rem;
}

.services-page .services-lines-grid {
  gap: 1.55rem 1.35rem;
}

.services-page .linked-card.service-link-card {
  min-height: 100%;
  padding: 1.6rem 1.5rem 1.45rem;
  background: rgba(255, 253, 248, 0.94);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.services-page .linked-card.service-link-card:hover {
  transform: translateY(-3px);
  border-color: rgba(217, 174, 93, 0.26);
  box-shadow: 0 18px 30px rgba(13, 39, 70, 0.045);
  background: rgba(255, 252, 246, 0.98);
}

.services-page .service-link-card .eyebrow {
  color: rgba(83, 103, 125, 0.88);
}

.services-page .service-link-card h3 {
  margin-bottom: 0.9rem;
  font-size: 1.28rem;
  max-width: 16ch;
}

.services-page .service-link-card p:not(.service-link-arrow) {
  max-width: 21rem;
  font-size: 0.97rem;
  line-height: 1.72;
}

.services-page .service-link-arrow {
  margin-top: 1.25rem;
  color: rgba(19, 46, 79, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.services-page .services-connect-shell {
  margin-top: 1.45rem;
  padding: 0;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.services-page .visual-panel-services {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: clamp(2.2rem, 3.5vw, 3.8rem);
  padding: 2.35rem 2.35rem 2.4rem;
  background: linear-gradient(180deg, rgba(250, 246, 239, 0.98), rgba(246, 240, 230, 0.96));
  border: 1px solid rgba(217, 174, 93, 0.14);
  box-shadow: 0 18px 34px rgba(13, 39, 70, 0.04);
}

.services-page .visual-panel-services .visual-panel-copy {
  max-width: 33rem;
}

.services-page .visual-panel-services h2 {
  max-width: 10.1ch;
}

.services-page .visual-panel-services .page-lede {
  max-width: 29rem;
}

.services-page .service-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
  align-self: start;
  padding-top: 0.6rem;
}

.services-page .service-cluster::before {
  display: none;
}

.services-page .service-cluster span {
  min-height: 3.35rem;
  display: flex;
  align-items: center;
  padding: 0.82rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(217, 174, 93, 0.2);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: none;
}

.services-page .service-cluster span::before {
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.62rem;
}

.services-page .services-tiers-heading {
  margin-top: 1.55rem;
  padding-top: 2.55rem;
  border-top: 1px solid rgba(19, 46, 79, 0.07);
}

.services-page .services-tiers-grid {
  gap: 1.4rem;
}

.services-page .services-tiers-grid .content-card {
  padding: 1.75rem 1.6rem 1.75rem;
}

.services-page .services-tiers-grid h3 {
  font-size: 1.24rem;
  margin-bottom: 0.8rem;
}

.services-page .price-tag {
  margin-top: 1.2rem !important;
  font-size: 0.98rem;
}

.services-page .services-proof-heading {
  max-width: 58rem;
  margin-top: 1.7rem;
  padding-top: 2.7rem;
  border-top: 1px solid rgba(19, 46, 79, 0.07);
}

.services-page .services-proof-grid {
  gap: 1.45rem;
}

.services-page .proof-result-card {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.98), rgba(244, 236, 221, 0.98));
  border: 1px solid rgba(217, 174, 93, 0.24);
  box-shadow: 0 16px 28px rgba(13, 39, 70, 0.05);
}

.services-page .services-proof-grid .content-card {
  padding: 1.7rem 1.6rem 1.5rem;
}

.services-page .proof-result-card .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.services-page .proof-result-card h3 {
  font-size: 1.34rem;
  max-width: 14ch;
}

.services-page .proof-result-card h3,
.services-page .proof-result-card .service-link-arrow {
  color: var(--ink);
}

.services-page .services-language-band {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 3.5vw, 3rem);
  align-items: center;
  padding: 2.45rem 2.2rem 2.45rem;
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.98), rgba(240, 234, 224, 0.96));
  border: 1px solid rgba(217, 174, 93, 0.16);
  box-shadow: 0 14px 32px rgba(13, 39, 70, 0.05);
}

.services-page .services-language-band h2,
.services-page .services-language-band p,
.services-page .services-language-band .page-lede {
  color: var(--ink);
}

.services-page .services-language-band .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.services-page .services-language-band h2 {
  max-width: 10.2ch;
}

.services-page .services-language-band .button-secondary {
  color: var(--ink);
  border-color: rgba(19, 46, 79, 0.12);
  background: rgba(255, 255, 255, 0.54);
}

.services-page .services-final-band {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(2.1rem, 4vw, 3.6rem);
  align-items: center;
  margin-top: 1rem;
}

.services-page .services-final-band h2 {
  max-width: 9.2ch;
}

.services-page .services-final-band .hero-actions {
  justify-self: start;
  align-content: center;
  gap: 0.9rem;
}

@media (max-width: 1100px) {
  .services-page > .page-hero.services-hero,
  .services-page .visual-panel-services,
  .services-page .services-logic,
  .services-page .services-language-band,
  .services-page .services-final-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .services-page .service-cluster,
  .services-page .services-hero-map,
  .services-page .services-hero-framework-track {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .services-page .services-hero-panel,
  .services-page .visual-panel-services,
  .services-page .services-language-band {
    padding: 1.4rem 1.2rem 1.4rem;
  }

  .services-page .services-lines-grid,
  .services-page .services-proof-grid,
  .services-page .services-tiers-grid {
    gap: 1rem;
  }
}


/* === Service detail template refinement: May 2026 === */
.service-detail-page > .page-hero.service-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.8rem, 4.8vw, 5.2rem);
  align-items: start;
  max-width: none;
  padding-top: 3.75rem;
  padding-bottom: 3.3rem;
}

.service-detail-page .service-detail-hero-copy {
  max-width: 43rem;
}

.service-detail-page .service-detail-hero h1 {
  max-width: 10.1ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.35rem, 5vw, 5.25rem);
  line-height: 0.94;
}

.service-detail-page .service-detail-hero .page-lede {
  max-width: 37rem;
  font-size: 1.03rem;
  line-height: 1.82;
}

.service-detail-page .service-detail-hero-panel {
  display: grid;
  gap: 1rem;
  align-content: start;
  padding: 1.55rem 1.65rem 1.65rem;
  border-radius: 24px;
  border: 1px solid rgba(19, 46, 79, 0.1);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 231, 0.97));
  box-shadow: 0 16px 30px rgba(13, 39, 70, 0.05);
}

.service-detail-page .service-detail-hero-panel .eyebrow,
.service-detail-page > .section-heading > .eyebrow,
.service-detail-page > .bilingual-band > div:first-child > .eyebrow,
.service-detail-page .visual-panel-copy > .eyebrow,
.service-detail-page > .cta-band > div:first-child > .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.service-detail-page .service-detail-hero-map {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  padding: 0.25rem 0;
}

.service-detail-page .service-detail-hero-map span {
  position: relative;
  min-height: 3.45rem;
  display: flex;
  align-items: center;
  padding: 0.9rem 1rem 0.9rem 1.35rem;
  border-radius: 0;
  border: 0;
  border-bottom: 1px solid rgba(19, 46, 79, 0.08);
  background: transparent;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.28;
  color: var(--ink);
}

.service-detail-page .service-detail-hero-map span:last-child {
  border-bottom: 0;
}

.service-detail-page .service-detail-hero-map span::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 50%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(217, 174, 93, 0.92);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0.35rem rgba(217, 174, 93, 0.12);
}

.service-detail-page .service-detail-hero-note {
  margin: 0;
  max-width: 31rem;
  padding-top: 0.35rem;
  color: rgba(83,103,125,0.92);
  font-size: 0.97rem;
  line-height: 1.74;
}

.service-detail-page .detail-service-nav {
  gap: 0.66rem;
  margin-bottom: 2.8rem;
  padding-top: 1rem;
}

.service-detail-page .detail-service-nav .service-family-link {
  min-height: 2.5rem;
  padding: 0 1rem;
  border-radius: 999px;
  background: rgba(255,253,248,0.84);
}

.service-detail-page .service-role-band {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.7rem, 4vw, 4.4rem);
  padding-top: 1rem;
  padding-bottom: 0.2rem;
}

.service-detail-page .service-role-band::before,
.service-detail-page .service-role-band > div:first-child::after {
  display: none;
  content: none;
}

.service-detail-page .service-role-band h2 {
  max-width: 10.7ch;
}

.service-detail-page .service-role-band > p {
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.86;
  color: rgba(52,74,98,0.92);
}

.service-detail-page > .section-heading {
  max-width: 58rem;
  margin-top: 0.55rem;
  margin-bottom: 1.4rem;
}

.service-detail-page > .section-heading h2 {
  max-width: 10.5ch;
}

.service-detail-page .service-diagnostic-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
  margin-bottom: 0.35rem;
}

.service-detail-page .service-diagnostic-grid .content-card {
  min-height: 100%;
  display: grid;
  align-content: start;
  gap: 0.2rem;
  padding: 1.55rem 1.55rem 1.6rem;
}

.service-detail-page .service-diagnostic-grid h3 {
  font-size: 1.12rem;
  margin-bottom: 0.75rem;
}

.service-detail-page .service-diagnostic-grid p {
  line-height: 1.74;
}

.service-detail-page .service-deliverables-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.service-detail-page .service-deliverables-panel {
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(2rem, 3.1vw, 3.5rem);
  padding: 2.15rem 2rem 2.2rem;
  background: #f8f4ed;
  border: 1px solid rgba(217,174,93,0.18);
  box-shadow: 0 14px 28px rgba(13,39,70,0.04);
}

.service-detail-page .service-deliverables-panel h2 {
  max-width: 9.8ch;
}

.service-detail-page .deliverables-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 0.82rem 0.95rem;
}

.service-detail-page .deliverables-grid::before {
  display: none;
}

.service-detail-page .deliverables-grid span {
  min-height: 3.4rem;
  display: flex;
  align-items: center;
  padding: 0.88rem 1rem;
  border-radius: 15px;
  border: 1px solid rgba(19,46,79,0.1);
  background: rgba(255,255,255,0.76);
  line-height: 1.45;
}

.service-detail-page .deliverables-grid span::before {
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.6rem;
}

.service-detail-page .service-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin-bottom: 0.35rem;
}

.service-detail-page .service-process-grid article {
  min-height: 100%;
  padding: 1.45rem 1.35rem 1.55rem;
  border-radius: 20px;
  border: 1px solid rgba(19,46,79,0.08);
  box-shadow: 0 10px 24px rgba(13,39,70,0.03);
  background: rgba(255,253,248,0.84);
}

.service-detail-page .service-process-grid article span {
  margin-bottom: 0.6rem;
  color: rgba(217, 174, 93, 0.96);
}

.service-detail-page .service-process-grid article strong {
  font-size: 1.06rem;
  display: block;
  margin-bottom: 0.55rem;
}

.service-detail-page .service-process-grid article p {
  line-height: 1.68;
}

.service-detail-page .service-proof-section {
  margin-top: 0.55rem;
}

.service-detail-page .service-proof-heading {
  max-width: 58rem;
}

.service-detail-page .service-proof-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

.service-detail-page .service-proof-grid .authority-item {
  padding: 1.35rem 1.2rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(19,46,79,0.08);
  background: rgba(255,253,248,0.84);
  box-shadow: 0 10px 24px rgba(13,39,70,0.03);
}

.service-detail-page .service-proof-grid .authority-item-featured {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border-color: rgba(217,174,93,0.24);
}

.service-detail-page .service-proof-grid blockquote {
  max-width: none;
  margin-bottom: 1rem;
}

.service-detail-page .service-proof-grid .authority-outcome {
  font-size: 0.94rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.service-detail-page .service-proof-grid .authority-label {
  margin-top: 0.3rem;
  color: rgba(83,103,125,0.9);
}

.service-detail-page .service-detail-cta {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.1rem, 4vw, 3.8rem);
  margin-top: 0.8rem;
}

.service-detail-page .service-detail-cta h2 {
  max-width: 9.1ch;
}

.service-detail-page .service-detail-cta .hero-actions {
  justify-self: start;
  align-content: start;
  gap: 0.9rem;
}

.service-detail-page .service-detail-cta p:not(.eyebrow) {
  max-width: 28rem;
}

@media (max-width: 1100px) {
  .service-detail-page > .page-hero.service-detail-hero,
  .service-detail-page .service-role-band,
  .service-detail-page .service-deliverables-panel,
  .service-detail-page .service-detail-cta {
    grid-template-columns: 1fr;
  }

  .service-detail-page .service-diagnostic-grid,
  .service-detail-page .service-process-grid,
  .service-detail-page .service-proof-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .service-detail-page .service-proof-grid .authority-item-featured {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .service-detail-page .service-detail-hero-panel,
  .service-detail-page .service-deliverables-panel {
    padding: 1.35rem 1.2rem 1.4rem;
  }

  .service-detail-page .service-detail-hero-map,
  .service-detail-page .service-diagnostic-grid,
  .service-detail-page .deliverables-grid,
  .service-detail-page .service-process-grid,
  .service-detail-page .service-proof-grid {
    grid-template-columns: 1fr;
  }

  .service-detail-page > .page-hero.service-detail-hero {
    padding-top: 3rem;
    padding-bottom: 2.65rem;
    gap: 2rem;
  }

  .service-detail-page .service-detail-cta {
    margin-top: 0.35rem;
  }

  .service-detail-page .service-proof-grid .authority-item-featured {
    grid-column: auto;
  }
}


/* === About page refinement: May 2026 === */
.about-page .about-hero {
  max-width: 60rem;
  padding-top: 4rem;
  padding-bottom: 3.8rem;
}

.about-page .about-hero h1 {
  max-width: 8.8ch;
  margin-bottom: 1.2rem;
  font-size: clamp(3.45rem, 5.1vw, 5.5rem);
  line-height: 0.93;
}

.about-page .about-hero .page-lede {
  max-width: 43rem;
  font-size: 1.05rem;
  line-height: 1.86;
}

.about-page .about-hero .hero-actions {
  margin-top: 1.55rem;
}

.about-page .about-identity-band .section-frame--alt,
.about-page .about-beliefs-band .section-frame--alt,
.about-page .about-region-section .section-frame--alt {
  padding-block: clamp(2rem, 3vw, 2.75rem);
}

.about-page .about-identity-band {
  margin-top: 0.25rem;
}

.about-page .about-identity-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(1.35rem, 2.7vw, 2.4rem);
  align-items: start;
}

.about-page .about-identity-grid,
.about-page .about-work-grid {
  gap: 1.2rem;
}

.about-page .about-identity-card,
.about-page .about-work-card,
.about-page .about-founder-card {
  min-height: 100%;
}

.about-page .about-identity-card-thesis {
  padding: 1.7rem 1.7rem 1.75rem;
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border: 1px solid rgba(217,174,93,0.22);
  box-shadow: 0 16px 30px rgba(13,39,70,0.05);
}

.about-page .about-identity-card-thesis h3 {
  font-size: 1.55rem;
  line-height: 1.06;
  margin-bottom: 0.85rem;
}

.about-page .about-identity-card-thesis p:last-child {
  margin: 0;
  max-width: 27rem;
  line-height: 1.78;
  color: rgba(52,74,98,0.92);
}

.about-page .about-identity-card-featured,
.about-page .about-work-card-featured {
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border: 1px solid rgba(217,174,93,0.22);
  box-shadow: 0 16px 30px rgba(13,39,70,0.05);
}

.about-page .about-why-band,
.about-page .about-founder-band,
.about-page .about-closing-band,
.about-page .about-region-band {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.8rem, 4.2vw, 4.8rem);
}

.about-page .about-why-band::before,
.about-page .about-founder-band::before,
.about-page .about-closing-band::before,
.about-page .about-region-band::before,
.about-page .about-why-band > div:first-child::after,
.about-page .about-founder-band > div:first-child::after,
.about-page .about-closing-band > div:first-child::after,
.about-page .about-region-band > div:first-child::after {
  display: none;
  content: none;
}

.about-page .about-why-band h2,
.about-page .about-founder-band h2,
.about-page .about-closing-band h2,
.about-page .about-region-band h2 {
  max-width: 10.2ch;
}

.about-page .about-why-band > p,
.about-page .about-founder-band > p,
.about-page .about-closing-band > p,
.about-page .about-region-band > p {
  max-width: 35rem;
  font-size: 1.02rem;
  line-height: 1.88;
  color: rgba(52,74,98,0.92);
}

.about-page .about-why-band {
  padding-top: 0.6rem;
  padding-bottom: 0.5rem;
}

.about-page .about-beliefs-heading {
  max-width: 56rem;
}

.about-page .about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.35rem 1.8rem;
}

.about-page .about-principle {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.95rem;
  align-items: start;
  padding: 1.3rem 0;
  border-bottom: 1px solid rgba(19,46,79,0.08);
}

.about-page .about-principle:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.about-page .about-principle-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(217,174,93,0.14);
  color: rgba(217,174,93,0.96);
  font-family: "Sora", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.about-page .about-principle h3 {
  margin: 0 0 0.4rem;
  font-size: 1.08rem;
  line-height: 1.28;
}

.about-page .about-principle p {
  margin: 0;
  max-width: 28rem;
  color: rgba(52,74,98,0.9);
  line-height: 1.76;
}

.about-page .about-work-section .section-heading {
  max-width: 58rem;
}

.about-page .about-work-section {
  padding-top: 0.4rem;
}

.about-page .about-work-grid .content-card {
  padding: 1.6rem 1.55rem 1.65rem;
}

.about-page .about-work-grid .eyebrow {
  color: rgba(217,174,93,0.96);
}

.about-page .about-system-panel {
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  gap: clamp(2.2rem, 3.4vw, 3.9rem);
  padding: 2.2rem 2.1rem 2.25rem;
  background: #f8f4ed;
  border: 1px solid rgba(217,174,93,0.18);
  box-shadow: 0 14px 30px rgba(13,39,70,0.04);
}

.about-page .about-system-panel h2 {
  max-width: 9.1ch;
}

.about-page .about-system-panel .page-lede {
  max-width: 24rem;
}

.about-page .about-system-panel .service-cluster {
  align-self: center;
}

.about-page .about-system-panel .service-cluster span {
  min-height: 3.4rem;
}

.about-page .about-founder-grid {
  gap: 1.2rem;
  margin-top: 0.35rem;
}

.about-page .about-founder-card {
  padding: 1.6rem 1.65rem 1.65rem;
}

.about-page .about-founder-card .eyebrow {
  margin-bottom: 0.6rem;
  color: rgba(217,174,93,0.96);
}

.about-page .about-founder-card p {
  margin: 0;
  line-height: 1.86;
}

.about-page .about-final-cta {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.3rem, 4vw, 4rem);
  margin-top: 0.5rem;
}

.about-page .about-final-cta h2 {
  max-width: 9.2ch;
}

.about-page .about-final-cta .hero-actions {
  justify-self: start;
  align-content: start;
}

@media (max-width: 1100px) {
  .about-page .about-identity-shell,
  .about-page .about-why-band,
  .about-page .about-founder-band,
  .about-page .about-closing-band,
  .about-page .about-region-band,
  .about-page .about-final-cta,
  .about-page .about-system-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .about-page .about-principles {
    grid-template-columns: 1fr;
  }

  .about-page .about-principle:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(19,46,79,0.08);
  }

  .about-page .about-principle:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 720px) {
  .about-page .about-hero {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }

  .about-page .about-hero h1 {
    max-width: 9.4ch;
  }

  .about-page .about-identity-card-thesis,
  .about-page .about-system-panel,
  .about-page .about-founder-card {
    padding: 1.4rem 1.2rem 1.45rem;
  }

  .about-page .about-principle {
    gap: 0.8rem;
    padding: 1.1rem 0;
  }
}


/* === Approach page refinement: May 2026 === */
.approach-page .approach-hero {
  max-width: 58rem;
  padding-top: 3.95rem;
  padding-bottom: 3.55rem;
}

.approach-page .approach-hero h1 {
  max-width: 8.9ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.4rem, 5vw, 5.4rem);
  line-height: 0.94;
}

.approach-page .approach-hero .page-lede {
  max-width: 40rem;
  font-size: 1.04rem;
  line-height: 1.84;
}

.approach-page .approach-hero .hero-actions {
  margin-top: 1.5rem;
}

.approach-page .approach-constant-band,
.approach-page .approach-choice-band {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.8rem, 4.2vw, 4.8rem);
}

.approach-page .approach-constant-band::before,
.approach-page .approach-choice-band::before,
.approach-page .approach-constant-band > div:first-child::after,
.approach-page .approach-choice-band > div:first-child::after {
  display: none;
  content: none;
}

.approach-page .approach-constant-band h2,
.approach-page .approach-choice-band h2 {
  max-width: 10ch;
}

.approach-page .approach-constant-band > p,
.approach-page .approach-choice-band > p {
  max-width: 34rem;
  font-size: 1.02rem;
  line-height: 1.88;
  color: rgba(52,74,98,0.92);
}

.approach-page .approach-constant-band {
  padding-top: 0.65rem;
  padding-bottom: 0.65rem;
}

.approach-page .approach-outcome-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  margin-top: 0.35rem;
}

.approach-page .approach-outcome-panel {
  padding: 2.2rem 2.1rem 2.2rem;
  background: #f8f4ed;
  border: 1px solid rgba(217,174,93,0.18);
  box-shadow: 0 14px 30px rgba(13,39,70,0.04);
}

.approach-page .approach-outcome-panel h2 {
  max-width: 9.6ch;
}

.approach-page .approach-outcome-panel .page-lede {
  max-width: 24rem;
}

.approach-page .approach-outcome-cluster {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.9rem;
  align-self: center;
}

.approach-page .approach-outcome-cluster::before {
  display: none;
}

.approach-page .approach-outcome-cluster span {
  position: relative;
  min-height: 4.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(19,46,79,0.1);
  background: rgba(255,255,255,0.76);
  font-family: "Sora", sans-serif;
  font-weight: 700;
  color: var(--ink);
}

.approach-page .approach-outcome-cluster span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.55rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: rgba(217,174,93,0.92);
  transform: translateY(-50%);
  box-shadow: 0 0 0 0.3rem rgba(217,174,93,0.1);
}

.approach-page .approach-outcome-cluster span:first-child::before {
  display: none;
}

.approach-page .approach-models-grid {
  gap: 1.25rem;
  margin-top: 0.2rem;
}

.approach-page .approach-model-card {
  min-height: 100%;
  padding: 1.65rem 1.55rem 1.7rem;
}

.approach-page .approach-model-card-featured {
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border: 1px solid rgba(217,174,93,0.24);
  box-shadow: 0 16px 30px rgba(13,39,70,0.05);
}

.approach-page .approach-model-card h3 {
  font-size: 1.26rem;
  line-height: 1.1;
  margin-bottom: 0.85rem;
}

.approach-page .approach-model-card .eyebrow {
  color: rgba(217,174,93,0.96);
}

.approach-page .approach-model-card p:not(.eyebrow):not(.service-link-arrow) {
  line-height: 1.78;
}

.approach-page .approach-model-card .service-link-arrow {
  margin-top: 1.25rem !important;
}

.approach-page .approach-choice-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0;
  margin-top: 0.25rem;
}

.approach-page .approach-choice-grid article {
  min-height: 100%;
  padding: 1.45rem 1.3rem 1.55rem;
  border-radius: 20px;
  border: 1px solid rgba(19,46,79,0.08);
  box-shadow: 0 10px 24px rgba(13,39,70,0.03);
  background: rgba(255,253,248,0.84);
}

.approach-page .approach-choice-grid article span {
  margin-bottom: 0.6rem;
  color: rgba(217,174,93,0.96);
}

.approach-page .approach-choice-grid article strong {
  display: block;
  margin-bottom: 0.55rem;
}

.approach-page .approach-choice-grid article p {
  line-height: 1.7;
}

.approach-page .approach-principles-section {
  margin-top: 0.65rem;
}

.approach-page .approach-principles-heading {
  max-width: 58rem;
}

.approach-page .approach-principles-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.05rem;
  align-items: stretch;
}

.approach-page .approach-principles-grid .authority-item {
  padding: 1.35rem 1.18rem 1.4rem;
  border-radius: 20px;
  border: 1px solid rgba(19,46,79,0.08);
  background: rgba(255,253,248,0.84);
  box-shadow: 0 10px 24px rgba(13,39,70,0.03);
}

.approach-page .approach-principles-grid .authority-item-featured {
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border-color: rgba(217,174,93,0.24);
}

.approach-page .approach-principles-grid blockquote {
  margin-bottom: 0.95rem;
}

.approach-page .approach-principles-grid .authority-outcome {
  font-size: 0.93rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-page .approach-final-cta {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.2rem, 4vw, 3.9rem);
  margin-top: 0.6rem;
}

.approach-page .approach-final-cta h2 {
  max-width: 9ch;
}

.approach-page .approach-final-cta .hero-actions {
  justify-self: start;
  align-content: start;
}

@media (max-width: 1100px) {
  .approach-page .approach-constant-band,
  .approach-page .approach-choice-band,
  .approach-page .approach-final-cta {
    grid-template-columns: 1fr;
  }

  .approach-page .approach-outcome-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .approach-page .approach-choice-grid,
  .approach-page .approach-principles-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .approach-page .approach-hero {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }

  .approach-page .approach-outcome-panel {
    padding: 1.4rem 1.2rem 1.45rem;
  }

  .approach-page .approach-outcome-cluster,
  .approach-page .approach-choice-grid,
  .approach-page .approach-principles-grid {
    grid-template-columns: 1fr;
  }
}


/* === Insights page refinement: May 2026 === */
.insights-page .insights-hero {
  max-width: 60rem;
  padding-top: 4rem;
  padding-bottom: 3.6rem;
}

.insights-page .insights-hero h1 {
  max-width: 10.1ch;
  margin-bottom: 1.15rem;
  font-size: clamp(3.35rem, 4.9vw, 5.35rem);
  line-height: 0.95;
}

.insights-page .insights-hero .page-lede {
  max-width: 40rem;
  font-size: 1.03rem;
  line-height: 1.84;
}

.insights-page .insights-articles-heading,
.insights-page .insights-case-heading {
  max-width: 58rem;
}

.insights-page .insights-featured-grid {
  gap: 1.1rem;
  margin-top: 0.25rem;
}

.insights-page .insights-featured-grid .content-card {
  min-height: 100%;
  padding: 1.6rem 1.6rem 1.7rem;
}

.insights-page .insights-featured-card {
  grid-column: span 2;
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border: 1px solid rgba(217,174,93,0.24);
  box-shadow: 0 16px 28px rgba(13,39,70,0.05);
}

.insights-page .insights-featured-grid .eyebrow,
.insights-page .archive-group-heading .eyebrow,
.insights-page .insights-case-grid .eyebrow {
  color: rgba(217,174,93,0.96);
}

.insights-page .insights-featured-grid h3,
.insights-page .archive-group-grid h3,
.insights-page .insights-case-grid h3 {
  font-size: 1.28rem;
  line-height: 1.12;
}

.insights-page .insights-archive-reveal {
  margin-top: 2.1rem;
  padding-top: 1.85rem;
  border-top: 1px solid rgba(19,46,79,0.07);
}

.insights-page .insights-archive-reveal > summary {
  margin-bottom: 2.15rem;
}

.insights-page .archive-groups {
  display: grid;
  gap: 2.9rem;
}

.insights-page .archive-group {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: 1.2rem 1.8rem;
  align-items: start;
}

.insights-page .archive-group + .archive-group {
  padding-top: 2.1rem;
  border-top: 1px solid rgba(19,46,79,0.07);
}

.insights-page .archive-group-heading {
  max-width: 20rem;
  position: sticky;
  top: 7.5rem;
}

.insights-page .archive-group-note {
  margin: 0.5rem 0 0;
  color: rgba(83,103,125,0.9);
  font-size: 0.95rem;
  line-height: 1.72;
}

.insights-page .archive-group-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.insights-page .archive-group-grid .content-card {
  min-height: 100%;
  padding: 1.45rem 1.45rem 1.55rem;
}

.insights-page .archive-group-grid .content-card:first-child {
  grid-column: span 2;
  background: rgba(255,253,248,0.96);
  box-shadow: 0 14px 28px rgba(13,39,70,0.035);
}

.insights-page .insights-case-studies {
  margin-top: 1.1rem;
}

.insights-page .insights-case-grid {
  gap: 1rem;
}

.insights-page .insights-case-grid .content-card {
  min-height: 100%;
  padding: 1.55rem 1.55rem 1.65rem;
}

.insights-page .insights-case-featured {
  grid-column: span 3;
  background: linear-gradient(180deg, rgba(249,243,229,0.98), rgba(244,236,221,0.98));
  border: 1px solid rgba(217,174,93,0.24);
  box-shadow: 0 16px 28px rgba(13,39,70,0.05);
}

.insights-page .insights-case-grid .content-card p:last-child {
  line-height: 1.76;
}

.insights-page .insights-final-cta {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.2rem, 4vw, 3.9rem);
  margin-top: 0.85rem;
}

.insights-page .insights-final-cta h2 {
  max-width: 9.1ch;
}

.insights-page .insights-final-cta .hero-actions {
  justify-self: start;
  align-content: start;
}

@media (max-width: 1100px) {
  .insights-page .archive-group {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .insights-page .archive-group-heading {
    max-width: 40rem;
    position: static;
  }

  .insights-page .insights-featured-card {
    grid-column: span 3;
  }

  .insights-page .insights-case-featured {
    grid-column: span 3;
  }

  .insights-page .insights-final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .insights-page .insights-hero {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }

  .insights-page .insights-featured-card,
  .insights-page .archive-group-grid .content-card:first-child,
  .insights-page .insights-case-featured {
    grid-column: auto;
  }

  .insights-page .archive-group-grid {
    grid-template-columns: 1fr;
  }

  .insights-page .archive-groups {
    gap: 2.2rem;
  }
}

/* === FAQ page refinement: May 2026 === */
.faq-page .faq-hero {
  max-width: 60rem;
  padding-top: 3.95rem;
  padding-bottom: 3.45rem;
}

.faq-page .faq-hero h1 {
  max-width: 10.1ch;
  margin-bottom: 1.1rem;
  font-size: clamp(3.3rem, 4.8vw, 5.2rem);
  line-height: 0.95;
}

.faq-page .faq-hero .page-lede {
  max-width: 40rem;
  font-size: 1.02rem;
  line-height: 1.84;
}

.faq-page .faq-groups-heading {
  max-width: 58rem;
  margin-bottom: 0.25rem;
}

.faq-page .faq-groups-heading h2 {
  max-width: 11ch;
}

.faq-page .faq-groups-heading .section-guidance {
  max-width: 41rem;
  line-height: 1.8;
}

.faq-page .faq-groups {
  display: grid;
  gap: 2.4rem;
}

.faq-page .faq-group {
  display: grid;
  gap: 1.1rem;
}

.faq-page .faq-group + .faq-group {
  padding-top: 2.3rem;
  border-top: 1px solid rgba(19, 46, 79, 0.07);
}

.faq-page .faq-group-heading {
  display: grid;
  gap: 0.5rem;
  max-width: 40rem;
}

.faq-page .faq-group-heading .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.faq-page .faq-group-note {
  margin: 0;
  color: rgba(83, 103, 125, 0.9);
  font-size: 0.95rem;
  line-height: 1.76;
}

.faq-page .faq-list {
  gap: 0.9rem;
}

.faq-page .faq-item {
  padding: 1.5rem 1.5rem 1.45rem;
  border-radius: 20px;
  border: 1px solid rgba(19, 46, 79, 0.07);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 10px 22px rgba(13, 39, 70, 0.025);
}

.faq-page .faq-item h3 {
  margin-bottom: 0.7rem;
  font-size: 1.15rem;
  line-height: 1.34;
  letter-spacing: -0.01em;
}

.faq-page .faq-item p {
  max-width: 44rem;
  color: rgba(52, 74, 98, 0.92);
  font-size: 0.97rem;
  line-height: 1.8;
}

.faq-page .faq-group-emphasis .faq-group-heading {
  max-width: 44rem;
}

.faq-page .faq-group-emphasis .faq-group-note {
  color: rgba(52, 74, 98, 0.96);
}

.faq-page .faq-group-emphasis .faq-item {
  border-color: rgba(217, 174, 93, 0.18);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.95), rgba(249, 243, 229, 0.88));
  box-shadow: 0 14px 28px rgba(13, 39, 70, 0.035);
}

.faq-page .faq-final-cta {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2.2rem, 4vw, 3.9rem);
  align-items: center;
  margin-top: 0.7rem;
}

.faq-page .faq-final-cta h2 {
  max-width: 9.4ch;
}

.faq-page .faq-final-cta .hero-actions {
  justify-self: start;
  align-content: center;
}

@media (max-width: 1100px) {
  .faq-page .faq-final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .faq-page .faq-hero {
    padding-top: 3rem;
    padding-bottom: 2.8rem;
  }

  .faq-page .faq-item {
    padding: 1.25rem 1.12rem 1.18rem;
  }

  .faq-page .faq-group + .faq-group {
    padding-top: 1.75rem;
  }
}

/* === Contact page refinement: May 2026 === */
.contact-page .contact-hero {
  max-width: 58rem;
  padding-top: 3.45rem;
  padding-bottom: 3rem;
}

.contact-page .contact-hero h1 {
  max-width: 10.4ch;
  margin-bottom: 1rem;
}

.contact-page .contact-hero .page-lede {
  max-width: 42rem;
  font-size: 1.04rem;
  line-height: 1.78;
}

.contact-page .contact-language-band {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
  padding: 2rem 2rem 2.05rem;
}

.contact-page .contact-language-band h2 {
  max-width: 10.6ch;
}

.contact-page .contact-language-band p {
  max-width: 34rem;
}

.contact-page .contact-capture-heading {
  max-width: 61rem;
}

.contact-page .contact-capture-heading h2 {
  max-width: 11ch;
}

.contact-page .contact-capture-heading .section-guidance {
  max-width: 41rem;
}

.contact-page .contact-capture-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1.6rem, 3vw, 2.5rem);
  align-items: start;
}

.contact-page .contact-tool-frame {
  display: grid;
  gap: 1rem;
  padding: 1.5rem 1.45rem 1.5rem;
  border-radius: 24px;
  border: 1px solid rgba(217, 174, 93, 0.2);
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.98), rgba(244, 236, 221, 0.98));
  box-shadow: 0 16px 28px rgba(13, 39, 70, 0.05);
}

.contact-page .contact-tool-frame h3 {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.18;
}

.contact-page .contact-tool-frame p:not(.eyebrow) {
  margin: 0;
  color: rgba(52, 74, 98, 0.92);
  font-size: 0.98rem;
  line-height: 1.74;
}

.contact-page .contact-tool-placeholder {
  display: grid;
  place-items: center;
  min-height: 15rem;
  border-radius: 18px;
  border: 1px dashed rgba(19, 46, 79, 0.16);
  background: rgba(255, 255, 255, 0.55);
  color: rgba(83, 103, 125, 0.9);
  font-size: 0.92rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-page .contact-form {
  padding: 1.55rem 1.5rem 1.5rem;
}

.contact-page .contact-form-intro {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1rem;
}

.contact-page .contact-form-intro p:not(.eyebrow) {
  margin: 0;
  color: rgba(83, 103, 125, 0.92);
  font-size: 0.96rem;
  line-height: 1.72;
}

.contact-page .contact-form-grid {
  gap: 1rem 1rem;
}

.contact-page .form-field span {
  margin-bottom: 0.48rem;
}

.contact-page .form-field input,
.contact-page .form-field select,
.contact-page .form-field textarea {
  border-color: rgba(19, 46, 79, 0.1);
  background: rgba(255, 255, 255, 0.86);
}

.contact-page .form-field textarea {
  min-height: 9.5rem;
}

.contact-page .contact-form-actions {
  margin-top: 1.15rem;
}

.contact-page .contact-info-grid {
  gap: 1.2rem;
}

.contact-page .contact-info-grid .content-card {
  min-height: 100%;
  padding: 1.45rem 1.45rem 1.4rem;
}

.contact-page .contact-info-grid .content-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.16rem;
}

.contact-page .contact-guidance-card {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.98), rgba(244, 236, 221, 0.98));
  border: 1px solid rgba(217, 174, 93, 0.2);
}

.contact-page .contact-tiers-heading {
  max-width: 60rem;
  margin-top: 0.9rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(19, 46, 79, 0.07);
}

.contact-page .contact-tiers-heading h2 {
  max-width: 11ch;
}

.contact-page .contact-tiers-grid {
  gap: 1.25rem;
}

.contact-page .contact-tiers-grid .content-card {
  min-height: 100%;
  padding: 1.55rem 1.5rem 1.55rem;
}

.contact-page .contact-tiers-grid h3 {
  font-size: 1.22rem;
  margin-bottom: 0.75rem;
}

.contact-page .contact-final-cta {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.contact-page .contact-final-cta h2 {
  max-width: 9.3ch;
}

.contact-page .contact-final-cta .hero-actions {
  justify-self: start;
  align-content: center;
}

@media (max-width: 1100px) {
  .contact-page .contact-language-band,
  .contact-page .contact-capture-shell,
  .contact-page .contact-final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-tool-frame,
  .contact-page .contact-form {
    padding: 1.2rem 1.1rem 1.2rem;
  }

  .contact-page .contact-tool-placeholder {
    min-height: 12rem;
  }
}

/* === Diagnosis and Growth OS integration: May 2026 === */
main#home .diagnosis-band {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 4vw, 3.4rem);
  align-items: center;
  padding: 1.6rem 0 1.55rem;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
  border-bottom: 1px solid rgba(19, 46, 79, 0.08);
  background: transparent;
}

main#home .diagnosis-band h2 {
  max-width: 10.4ch;
  margin-bottom: 0.75rem;
}

main#home .diagnosis-band-copy p:not(.eyebrow) {
  margin: 0;
  max-width: 32rem;
  color: rgba(52, 74, 98, 0.92);
  line-height: 1.74;
}

main#home .diagnosis-band-actions {
  display: grid;
  gap: 1.15rem;
}

main#home .diagnosis-points {
  display: grid;
  gap: 0.75rem;
}

main#home .diagnosis-points p {
  margin: 0;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 46, 79, 0.08);
  background: rgba(255, 253, 248, 0.9);
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}

main#home .diagnosis-band .hero-actions {
  margin: 0.1rem 0 0;
}

.contact-page .contact-tool-frame .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.growth-os-page .growth-os-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(2.4rem, 4vw, 4.4rem);
  align-items: start;
  max-width: none;
}

.growth-os-page .growth-os-hero-copy {
  max-width: 41rem;
}

.growth-os-page .growth-os-hero h1 {
  max-width: 8.9ch;
  margin-bottom: 1rem;
}

.growth-os-page .growth-os-hero .page-lede {
  max-width: 39rem;
  font-size: 1.04rem;
  line-height: 1.8;
}

.growth-os-page .growth-os-hero-panel {
  display: grid;
  gap: 1rem;
  padding: 1.55rem 1.5rem 1.6rem;
  border-radius: 24px;
  border: 1px solid rgba(19, 46, 79, 0.1);
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 241, 231, 0.98));
  box-shadow: 0 18px 34px rgba(13, 39, 70, 0.05);
}

.growth-os-page .growth-os-hero-panel .eyebrow,
.growth-os-page .growth-os-heading > .eyebrow,
.growth-os-page .growth-os-insight-panel .eyebrow,
.growth-os-page .growth-os-connect-panel .eyebrow,
.growth-os-page > .cta-band > div:first-child > .eyebrow {
  color: rgba(217, 174, 93, 0.96);
}

.growth-os-page .growth-os-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem 0.9rem;
}

.growth-os-page .growth-os-metrics span {
  min-height: 3.9rem;
  display: flex;
  align-items: center;
  padding: 0.85rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(19, 46, 79, 0.08);
  background: rgba(255, 255, 255, 0.76);
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.growth-os-page .growth-os-hero-note {
  margin: 0;
  max-width: 31rem;
  color: rgba(83, 103, 125, 0.92);
  font-size: 0.96rem;
  line-height: 1.72;
}

.growth-os-page .growth-os-problem {
  padding-top: 1rem;
}

.growth-os-page .growth-os-problem h2,
.growth-os-page .growth-os-heading h2,
.growth-os-page .growth-os-insight-panel h2,
.growth-os-page .growth-os-connect-panel h2,
.growth-os-page .growth-os-final-cta h2 {
  max-width: 10.8ch;
}

.growth-os-page .growth-os-heading {
  max-width: 63rem;
}

.growth-os-page .growth-os-heading .section-guidance {
  max-width: 42rem;
}

.growth-os-page .growth-os-visibility-grid {
  gap: 1.3rem;
}

.growth-os-page .growth-os-visibility-grid .content-card {
  min-height: 100%;
  padding: 1.55rem 1.5rem 1.45rem;
}

.growth-os-page .growth-os-insight-shell,
.growth-os-page .growth-os-connect-shell {
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.growth-os-page .growth-os-insight-panel,
.growth-os-page .growth-os-connect-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(0, 1.02fr);
  gap: clamp(2rem, 3.5vw, 3.4rem);
  padding: 2rem 2.05rem 2.05rem;
  background: rgba(255, 253, 248, 0.98);
  border: 1px solid rgba(19, 46, 79, 0.08);
  box-shadow: 0 16px 30px rgba(13, 39, 70, 0.045);
}

.growth-os-page .growth-os-insight-cluster,
.growth-os-page .growth-os-connect-cluster {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem 1rem;
  align-self: start;
  padding-top: 0.35rem;
}

.growth-os-page .growth-os-insight-cluster span,
.growth-os-page .growth-os-connect-cluster span {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  padding: 0.8rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(217, 174, 93, 0.18);
  background: rgba(249, 244, 234, 0.9);
}

.growth-os-page .growth-os-why {
  padding-top: 1.1rem;
}

.growth-os-page .growth-os-final-cta {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 4vw, 3.6rem);
  align-items: center;
}

.growth-os-page .growth-os-final-cta .hero-actions {
  justify-self: start;
  align-content: center;
}

@media (max-width: 1100px) {
  main#home .diagnosis-band,
  .growth-os-page .growth-os-hero,
  .growth-os-page .growth-os-insight-panel,
  .growth-os-page .growth-os-connect-panel,
  .growth-os-page .growth-os-final-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .growth-os-page .growth-os-metrics,
  .growth-os-page .growth-os-insight-cluster,
  .growth-os-page .growth-os-connect-cluster {
    grid-template-columns: 1fr;
  }
}

/* === Ecosystem precision pass: May 2026 === */
:root {
  --line-soft: rgba(19, 46, 79, 0.08);
  --line-strong: rgba(19, 46, 79, 0.14);
  --surface-soft: rgba(255, 253, 248, 0.82);
  --surface-tint: rgba(248, 244, 236, 0.9);
  --shadow-soft: 0 10px 24px rgba(13, 39, 70, 0.035);
  --shadow-medium: 0 18px 36px rgba(13, 39, 70, 0.06);
  --ease-premium: 180ms cubic-bezier(0.22, 1, 0.36, 1);
  --section-space: clamp(5.6rem, 7.4vw, 7.8rem);
  --space-internal: clamp(1.6rem, 2.5vw, 2.35rem);
  --space-micro: clamp(0.92rem, 1.55vw, 1.24rem);
}

html {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  color: rgba(19, 46, 79, 0.98);
}

.site-shell {
  width: min(1168px, calc(100% - 2.5rem));
  padding-bottom: 5rem;
}

.topbar {
  gap: 1rem;
  padding: 0.78rem 1.18rem;
  border-radius: 12px;
  border-color: var(--line-soft);
  background: rgba(255, 253, 248, 0.95);
  box-shadow: 0 10px 22px rgba(13, 39, 70, 0.035);
  backdrop-filter: blur(10px);
}

.topbar.is-compact {
  gap: 0.8rem;
  padding: 0.58rem 1rem;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(13, 39, 70, 0.08);
}

.brand-wordmark {
  width: min(10.6rem, 25vw);
}

.topbar.is-compact .brand-wordmark {
  width: min(10.15rem, 27vw);
  margin-top: -0.12rem;
  margin-bottom: 0;
}

.nav {
  gap: 1.15rem;
}

.nav a {
  font-size: 0.91rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.nav a::after {
  bottom: -0.36rem;
  height: 1.5px;
  opacity: 0.92;
}

.header-cta {
  min-height: 3.1rem;
  padding-inline: 1.22rem;
  margin-left: 0.55rem;
  font-size: 0.85rem;
}

.page-main {
  padding: 2.6rem 0 5.2rem;
}

.page-hero {
  padding: 3.8rem 0 3rem;
}

.page-hero h1,
.section-heading h2,
.visual-panel-copy h2,
.cta-band h2 {
  letter-spacing: -0.045em;
}

.page-hero h1 {
  line-height: 0.94;
}

.page-lede,
.compact-lede,
.section-guidance,
.content-card p,
.faq-item p,
.authority-item p,
.contact-form p,
.legal-page p,
.article-section p {
  color: rgba(67, 86, 108, 0.94);
  line-height: 1.76;
}

.page-lede,
.compact-lede,
.section-guidance {
  max-width: 44rem;
}

.section-heading {
  gap: 0.78rem;
}

.section-heading h2 {
  line-height: 0.98;
}

.content-grid,
.cards-three,
.faq-list,
.authority-list,
.timeline {
  gap: 1.18rem;
}

.content-card,
.faq-item,
.authority-item,
.timeline article,
.visual-panel,
.contact-form,
.service-family-link,
.mini-link-card {
  border-radius: 20px;
  border: 1px solid var(--line-soft);
  background: var(--surface-soft);
  box-shadow: var(--shadow-soft);
  transition:
    border-color var(--ease-premium),
    box-shadow var(--ease-premium),
    background-color var(--ease-premium),
    transform var(--ease-premium);
}

.content-card,
.faq-item,
.authority-item,
.timeline article,
.contact-form {
  padding: 1.6rem 1.55rem 1.62rem;
}

.linked-card:hover,
.content-card:hover,
.faq-item:hover,
.authority-item:hover,
.mini-link-card:hover,
.service-family-link:hover {
  border-color: rgba(217, 174, 93, 0.2);
  box-shadow: 0 14px 28px rgba(13, 39, 70, 0.05);
  transform: translateY(-1px);
}

.content-card h2,
.content-card h3,
.faq-item h3,
.authority-item h3,
.timeline article h3,
.visual-panel h3 {
  line-height: 1.08;
  letter-spacing: -0.028em;
}

.button,
.button-cta {
  min-height: 3.38rem;
  padding-inline: 1.28rem;
  border-radius: 8px;
  border-width: 1px;
  font-size: 0.92rem;
  font-weight: 700;
  transition:
    transform var(--ease-premium),
    background-color var(--ease-premium),
    border-color var(--ease-premium),
    color var(--ease-premium),
    box-shadow var(--ease-premium);
}

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

.button-primary {
  box-shadow: 0 10px 20px rgba(217, 174, 93, 0.15);
}

.button-primary:hover {
  box-shadow: 0 14px 24px rgba(217, 174, 93, 0.18);
}

.button-secondary {
  border-color: rgba(19, 46, 79, 0.16);
  background: rgba(255, 253, 248, 0.5);
}

.button-secondary:hover {
  background: rgba(255, 253, 248, 0.82);
  border-color: rgba(19, 46, 79, 0.22);
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid rgba(217, 174, 93, 0.85);
  outline-offset: 3px;
}

input,
textarea,
select {
  transition:
    border-color var(--ease-premium),
    box-shadow var(--ease-premium),
    background-color var(--ease-premium);
}

input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  box-shadow: 0 0 0 4px rgba(217, 174, 93, 0.12);
}

main.page-main:not(#home) {
  --inner-section-gap: clamp(4.9rem, 7.1vw, 7rem);
  --inner-block-gap: clamp(1.65rem, 2.45vw, 2.2rem);
}

main.page-main:not(#home) .page-hero {
  max-width: 63rem;
  padding: clamp(3.7rem, 5.8vw, 5.2rem) 0 clamp(2.8rem, 4vw, 3.5rem);
}

main.page-main:not(#home) > .section,
main.page-main:not(#home) > .about-band,
main.page-main:not(#home) > .content-grid,
main.page-main:not(#home) > .cards-three,
main.page-main:not(#home) > .faq-list,
main.page-main:not(#home) > .authority-section,
main.page-main:not(#home) > .visual-gallery,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .timeline,
main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .case-study-sections,
main.page-main:not(#home) > .legal-page,
main.page-main:not(#home) > .article-layout,
main.page-main:not(#home) > .article-sections {
  margin-bottom: var(--inner-section-gap);
}

main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .faq-list,
main.page-main:not(#home) > .visual-gallery {
  margin-bottom: clamp(5.3rem, 7.4vw, 7.35rem);
}

main.page-main:not(#home) .section-heading {
  margin-bottom: 2.55rem;
}

main.page-main:not(#home) .section-heading h2,
main.page-main:not(#home) .visual-panel-copy h2,
main.page-main:not(#home) .cta-band h2 {
  max-width: 12.5ch;
}

main.page-main:not(#home) .content-grid,
main.page-main:not(#home) .cards-three,
main.page-main:not(#home) .faq-list,
main.page-main:not(#home) .authority-list {
  gap: 1.18rem;
}

main.page-main:not(#home) .service-family-nav {
  gap: 0.7rem;
  margin-bottom: 2.7rem;
}

main.page-main:not(#home) .service-family-link {
  min-height: 2.7rem;
  padding-inline: 1rem;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.72);
}

main.page-main:not(#home) .bilingual-band {
  gap: clamp(2.2rem, 3.5vw, 3.3rem);
}

main.page-main:not(#home) .faq-list {
  gap: 1rem;
}

main.page-main:not(#home) .faq-item h3 {
  margin-bottom: 0.6rem;
}

main.page-main:not(#home) .timeline {
  gap: 1.08rem;
}

main.page-main:not(#home) .cta-band {
  gap: clamp(2rem, 3.6vw, 3rem);
  padding: 2.6rem 2.3rem;
  border-radius: 30px;
  border-color: rgba(217, 174, 93, 0.14);
  box-shadow: 0 24px 44px rgba(13, 39, 70, 0.13);
}

main#home .section + .section,
main#home .section + .content-grid,
main#home .section + .cards-three,
main#home .content-grid + .section,
main#home .cards-three + .section,
main#home .visual-gallery + .section {
  margin-top: clamp(0.35rem, 1vw, 0.7rem);
}

main#home .diagnosis-band {
  gap: clamp(2.3rem, 4vw, 3.6rem);
  padding: 1.9rem 0 1.85rem;
}

main#home .diagnosis-points {
  gap: 0.82rem;
}

main#home .diagnosis-points p {
  min-height: 3.2rem;
  display: flex;
  align-items: center;
  padding: 0.92rem 1.05rem;
  border-radius: 14px;
  border-color: rgba(19, 46, 79, 0.07);
  background: rgba(255, 253, 248, 0.72);
}

.site-footer {
  gap: clamp(2rem, 3vw, 3rem);
  padding-top: 2.7rem;
  margin-top: clamp(1.6rem, 3vw, 2.6rem);
  border-top: 1px solid rgba(19, 46, 79, 0.1);
  align-items: start;
}

.site-footer > div:first-child {
  gap: 1.1rem;
}

.footer-wordmark {
  width: min(10.8rem, 42vw);
}

.site-footer p {
  max-width: 18rem;
  margin: 0;
  color: rgba(67, 86, 108, 0.92);
  line-height: 1.72;
}

.footer-links {
  gap: 0.85rem 1.9rem;
}

.footer-links a {
  color: rgba(19, 46, 79, 0.9);
  transition: color var(--ease-premium), opacity var(--ease-premium);
}

.footer-links a:hover {
  color: var(--accent-strong);
}

@media (max-width: 1024px) {
  .site-shell {
    width: min(1168px, calc(100% - 2rem));
  }

  .page-main {
    padding: 2.25rem 0 4.6rem;
  }

  main.page-main:not(#home) {
    --inner-section-gap: clamp(4.25rem, 9vw, 5.5rem);
  }

  main.page-main:not(#home) > .section-heading,
  main.page-main:not(#home) > .cta-band,
  main.page-main:not(#home) > .faq-list,
  main.page-main:not(#home) > .visual-gallery {
    margin-bottom: clamp(4.4rem, 8vw, 5.4rem);
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(1168px, calc(100% - 1.3rem));
    padding-bottom: 3.6rem;
  }

  .topbar {
    top: 0.35rem;
    padding: 0.72rem 0.88rem;
    border-radius: 10px;
  }

  .brand-wordmark {
    width: min(9.1rem, 43vw);
  }

  .nav-toggle {
    width: 2.9rem;
    height: 2.9rem;
    border-radius: 8px;
  }

  .page-main {
    padding: 1.9rem 0 3.9rem;
  }

  .page-hero {
    padding: 2.7rem 0 2.1rem;
  }

  .page-hero h1 {
    line-height: 0.96;
  }

  main.page-main:not(#home) {
    --inner-section-gap: clamp(3.6rem, 10vw, 4.5rem);
  }

  main.page-main:not(#home) > .section-heading,
  main.page-main:not(#home) > .cta-band,
  main.page-main:not(#home) > .faq-list,
  main.page-main:not(#home) > .visual-gallery {
    margin-bottom: clamp(3.85rem, 10vw, 4.6rem);
  }

  .content-card,
  .faq-item,
  .authority-item,
  .timeline article,
  .contact-form,
  .visual-panel {
    padding: 1.28rem 1.15rem 1.3rem;
  }

  .button,
  .button-cta,
  .hero-actions .button,
  .contact-actions .button,
  .cta-band .button {
    min-height: 3.2rem;
    font-size: 0.9rem;
  }

  .site-footer {
    gap: 1.65rem;
    padding-top: 2.15rem;
  }

  .footer-wordmark {
    width: min(9.9rem, 48vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* === Final visual rhythm and component sophistication pass: May 2026 === */
.content-card,
.faq-item,
.authority-item,
.timeline article,
.visual-panel,
.contact-form,
.service-family-link,
.mini-link-card {
  box-shadow: none;
}

.content-card:hover,
.faq-item:hover,
.authority-item:hover,
.timeline article:hover,
.mini-link-card:hover,
.service-family-link:hover {
  box-shadow: 0 12px 24px rgba(13, 39, 70, 0.04);
}

main.page-main:not(#home) > .section + .section-heading,
main.page-main:not(#home) > .cards-three + .section-heading,
main.page-main:not(#home) > .content-grid + .section-heading,
main.page-main:not(#home) > .visual-gallery + .section-heading,
main.page-main:not(#home) > .faq-list + .section-heading,
main.page-main:not(#home) > .authority-section + .section-heading {
  margin-top: clamp(1rem, 2vw, 1.8rem);
}

main.page-main:not(#home) > .section-heading + .cards-three,
main.page-main:not(#home) > .section-heading + .content-grid,
main.page-main:not(#home) > .section-heading + .faq-list,
main.page-main:not(#home) > .section-heading + .visual-gallery,
main.page-main:not(#home) > .section-heading + .timeline {
  margin-top: -0.6rem;
}

main.page-main:not(#home) .section-heading .section-guidance,
main.page-main:not(#home) .section-heading .page-lede.compact-lede {
  max-width: 39rem;
}

.services-page .services-hero-panel,
.service-detail-page .service-detail-hero-panel,
.growth-os-page .growth-os-hero-panel {
  box-shadow: 0 16px 30px rgba(13, 39, 70, 0.04);
}

.services-page .services-hero-map {
  gap: 0.42rem;
}

.services-page .services-hero-map span {
  min-height: 3.2rem;
  border-radius: 14px;
  border-color: rgba(19, 46, 79, 0.07);
  background: rgba(255, 255, 255, 0.46);
}

.services-page .services-hero-map span:not(:last-child)::after {
  display: none;
}

.services-page .services-logic {
  padding-top: 2rem;
  padding-bottom: 1.15rem;
}

.services-page .services-lines-grid {
  gap: 1.1rem;
}

.services-page .linked-card.service-link-card {
  padding: 1.5rem 1.45rem 1.35rem;
}

.services-page .services-lines-grid .service-link-card:nth-child(2),
.services-page .services-lines-grid .service-link-card:nth-child(5) {
  background: rgba(249, 245, 237, 0.72);
}

.services-page .services-lines-grid .service-link-card:nth-child(3n + 1) .service-link-arrow {
  opacity: 0.92;
}

.services-page .visual-panel-services {
  background: rgba(248, 244, 236, 0.82);
  box-shadow: none;
}

.services-page .service-cluster {
  gap: 0.8rem 0.9rem;
}

.services-page .service-cluster span {
  min-height: 3.1rem;
  background: rgba(255, 253, 248, 0.74);
}

.services-page .services-tiers-grid {
  gap: 1rem;
}

.services-page .services-tiers-grid .content-card {
  padding: 1.6rem 1.45rem;
}

.services-page .services-tiers-grid .content-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.82), rgba(244, 236, 221, 0.74));
  border-color: rgba(217, 174, 93, 0.18);
}

.services-page .services-proof-grid {
  gap: 1rem;
}

.services-page .services-proof-grid .content-card:not(.proof-result-card) {
  background: rgba(255, 253, 248, 0.7);
}

.services-page .services-language-band {
  padding: 2.75rem 2.3rem;
}

.service-detail-page .service-diagnostic-grid,
.service-detail-page .service-process-grid,
.service-detail-page .service-proof-grid {
  gap: 1rem;
}

.service-detail-page .service-diagnostic-grid .content-card:nth-child(1),
.service-detail-page .service-proof-grid .authority-item-featured {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.86), rgba(244, 236, 221, 0.76));
  border-color: rgba(217, 174, 93, 0.18);
}

.service-detail-page .service-process-grid article:nth-child(2),
.service-detail-page .service-process-grid article:nth-child(4) {
  background: rgba(249, 245, 237, 0.72);
}

.about-page .about-identity-shell,
.about-page .about-why-band,
.about-page .about-founder-band,
.about-page .about-closing-band,
.about-page .about-region-band,
.about-page .about-final-cta,
.about-page .about-system-panel {
  box-shadow: none;
}

.about-page .about-principles {
  gap: 1rem;
}

.about-page .about-principle {
  padding: 1.3rem 1.35rem 1.35rem;
  background: transparent;
  border-left: 2px solid rgba(217, 174, 93, 0.22);
  border-radius: 0;
}

.about-page .about-principle:nth-child(2),
.about-page .about-principle:nth-child(5) {
  padding-left: 1.7rem;
}

.about-page .about-work-grid {
  gap: 1rem;
}

.about-page .about-work-grid .content-card:not(.about-work-card-featured) {
  background: rgba(255, 253, 248, 0.68);
}

.about-page .about-founder-grid {
  gap: 1rem;
}

.approach-page .approach-outcome-panel,
.approach-page .approach-constant-band,
.approach-page .approach-choice-band,
.approach-page .approach-final-cta {
  box-shadow: none;
}

.approach-page .approach-outcome-cluster {
  gap: 0.75rem 0.85rem;
}

.approach-page .approach-outcome-cluster span {
  background: rgba(255, 253, 248, 0.72);
}

.approach-page .approach-models-grid,
.approach-page .approach-choice-grid,
.approach-page .approach-principles-grid {
  gap: 1rem;
}

.approach-page .approach-model-card:not(.approach-model-card-featured),
.approach-page .approach-choice-grid article:nth-child(even),
.approach-page .approach-principles-grid .authority-item:not(.authority-item-featured) {
  background: rgba(255, 253, 248, 0.7);
}

.insights-page .insights-featured-grid,
.insights-page .archive-group-grid,
.insights-page .insights-case-grid {
  gap: 1rem;
}

.insights-page .insights-featured-grid .content-card,
.insights-page .archive-group-grid .content-card,
.insights-page .insights-case-grid .content-card {
  box-shadow: none;
}

.insights-page .insights-featured-grid .content-card:not(.insights-featured-card),
.insights-page .archive-group-grid .content-card:not(:first-child),
.insights-page .insights-case-grid .content-card:not(.insights-case-featured) {
  background: rgba(255, 253, 248, 0.68);
}

.insights-page .archive-group {
  gap: 1rem 1.8rem;
}

.insights-page .archive-group + .archive-group {
  padding-top: 2.5rem;
}

.faq-page .faq-groups {
  gap: 2.8rem;
}

.faq-page .faq-group {
  gap: 1rem;
}

.faq-page .faq-item {
  background: rgba(255, 253, 248, 0.64);
  box-shadow: none;
}

.faq-page .faq-list .faq-item:nth-child(even) {
  background: rgba(249, 245, 237, 0.66);
}

.faq-page .faq-group-emphasis .faq-item {
  box-shadow: none;
}

.contact-page .contact-language-band,
.contact-page .contact-tool-frame,
.contact-page .contact-guidance-card,
.contact-page .contact-final-cta {
  box-shadow: none;
}

.contact-page .contact-info-grid,
.contact-page .contact-tiers-grid {
  gap: 1rem;
}

.contact-page .contact-info-grid .content-card:nth-child(2),
.contact-page .contact-tiers-grid .content-card:nth-child(2) {
  background: rgba(249, 245, 237, 0.72);
}

.growth-os-page .growth-os-visibility-grid,
.growth-os-page .growth-os-insight-cluster,
.growth-os-page .growth-os-connect-cluster {
  gap: 1rem;
}

.growth-os-page .growth-os-visibility-grid .content-card:nth-child(1),
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(4) {
  background: rgba(249, 245, 237, 0.72);
}

.growth-os-page .growth-os-insight-panel,
.growth-os-page .growth-os-connect-panel {
  box-shadow: none;
  background: rgba(255, 253, 248, 0.86);
}

.site-footer {
  padding-top: 3rem;
}

.footer-links a {
  opacity: 0.92;
}

@media (max-width: 1024px) {
  .about-page .about-principle:nth-child(2),
  .about-page .about-principle:nth-child(5) {
    padding-left: 1.35rem;
  }
}

@media (max-width: 720px) {
  .services-page .services-lines-grid,
  .services-page .services-tiers-grid,
  .services-page .services-proof-grid,
  .service-detail-page .service-diagnostic-grid,
  .service-detail-page .service-process-grid,
  .service-detail-page .service-proof-grid,
  .approach-page .approach-models-grid,
  .approach-page .approach-choice-grid,
  .approach-page .approach-principles-grid,
  .contact-page .contact-info-grid,
  .contact-page .contact-tiers-grid,
  .growth-os-page .growth-os-visibility-grid {
    gap: 0.9rem;
  }

  .about-page .about-principle {
    padding: 1.05rem 0 1.1rem 1rem;
  }

  .insights-page .archive-group + .archive-group,
  .faq-page .faq-group + .faq-group {
    padding-top: 2rem;
  }

  .contact-page .contact-language-band,
  .services-page .services-language-band,
  .growth-os-page .growth-os-insight-panel,
  .growth-os-page .growth-os-connect-panel {
    padding: 1.6rem 1.15rem;
  }
}

/* === Homepage visual rhythm refinement: May 2026 === */
main#home .hero {
  gap: clamp(2.4rem, 4vw, 4rem);
  padding-top: clamp(2.1rem, 4vw, 3.1rem);
  padding-bottom: clamp(4.8rem, 6vw, 6.1rem);
}

main#home .hero-copy {
  max-width: 36rem;
  padding: 1.15rem 0 0.45rem;
}

main#home .hero-copy::before {
  width: 5.6rem;
  margin-bottom: 1.95rem;
  background: rgba(19, 46, 79, 0.18);
}

main#home .hero .eyebrow {
  margin-bottom: 1.35rem;
}

main#home .hero h1 {
  max-width: 7.8ch;
}

main#home .hero .lede {
  margin-top: 1.95rem;
  max-width: 30rem;
}

main#home .hero-actions {
  margin: 2.55rem 0 1.55rem;
}

main#home .hero-microcopy {
  gap: 0.82rem;
}

main#home .hero-panel {
  padding: 1.85rem 1.85rem 0.6rem;
  border-radius: 20px;
}

main#home .diagnosis-band {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2.5rem, 4vw, 3.9rem);
  padding: 1.55rem 0 1.35rem;
}

main#home .diagnosis-band-copy {
  max-width: 29rem;
}

main#home .diagnosis-band h2 {
  max-width: 9.2ch;
}

main#home .diagnosis-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.72rem;
}

main#home .diagnosis-points p {
  min-height: 100%;
  padding: 0.95rem 1rem;
  border-radius: 12px;
  background: rgba(255, 253, 248, 0.54);
}

main#home .problem-band {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 4vw, 4rem);
  padding-top: 1.25rem;
  padding-bottom: 0.35rem;
}

main#home .problem-band > div:first-child {
  max-width: 25rem;
}

main#home .problem-band h2 {
  max-width: 7.2ch;
  font-size: clamp(3.1rem, 5.3vw, 5rem);
  line-height: 0.93;
}

main#home .problem-subtitle {
  margin-top: 1.3rem;
  font-size: 1rem;
  line-height: 1.58;
  color: rgba(19, 46, 79, 0.72);
}

main#home .problem-list {
  gap: 0.15rem;
  align-self: center;
}

main#home .problem-list p {
  padding: 1.05rem 0 1.05rem 1.4rem;
  border: 0;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main#home .problem-list p:last-child {
  border-bottom: 1px solid rgba(19, 46, 79, 0.08);
}

main#home .problem-list p::before {
  left: 0.35rem;
  box-shadow: 0 0 0 5px rgba(217, 174, 93, 0.08);
}

main#home .problem-closing {
  margin-top: 0.6rem;
  padding-top: 1.2rem !important;
  border-top-color: rgba(19, 46, 79, 0.14) !important;
  border-bottom: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

main#home .bilingual-band {
  padding-top: 3.1rem;
  padding-bottom: 2.1rem;
  gap: clamp(2.2rem, 4vw, 4.4rem);
}

main#home .bilingual-band > div:first-child {
  max-width: 28rem;
}

main#home .credibility-stack {
  gap: 0.9rem;
}

main#home .credibility-stack p {
  min-height: 4.8rem;
  background: rgba(249, 245, 237, 0.58);
  box-shadow: none;
}

main#home #approach {
  padding-top: 5.4rem;
}

main#home #approach .section-heading {
  max-width: 58rem;
  margin-bottom: 2.7rem;
}

main#home .system-flow {
  position: relative;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.35rem;
  padding-top: 1rem;
}

main#home .system-flow::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 2rem;
  height: 1px;
  background: linear-gradient(90deg, rgba(217, 174, 93, 0.12), rgba(19, 46, 79, 0.16), rgba(217, 174, 93, 0.12));
}

main#home .approach-card {
  grid-template-columns: 1fr;
  gap: 0.45rem;
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main#home .approach-card:nth-child(-n + 3),
main#home .approach-card:nth-child(4),
main#home .approach-card:nth-child(5) {
  grid-column: auto;
}

main#home .approach-card span {
  grid-column: auto;
  grid-row: auto;
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 174, 93, 0.24);
  background: rgba(249, 243, 229, 0.88);
  box-shadow: 0 0 0 7px rgba(217, 174, 93, 0.06);
}

main#home .approach-card strong,
main#home .approach-card p {
  grid-column: auto;
}

main#home .approach-card strong {
  margin: 0.8rem 0 0.1rem;
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

main#home .approach-card p {
  max-width: 13rem;
  color: rgba(67, 86, 108, 0.94);
}

main#home #process {
  padding-top: 5.9rem;
}

main#home #process .section-heading {
  max-width: 34rem;
  margin-bottom: 2.2rem;
}

main#home .timeline.process-flow {
  position: relative;
  grid-template-columns: 1fr;
  gap: 0.25rem;
  max-width: 44rem;
  margin-left: auto;
  padding-left: 0.2rem;
}

main#home .timeline.process-flow::before {
  content: "";
  position: absolute;
  left: 1.05rem;
  top: 0.6rem;
  bottom: 0.6rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(217, 174, 93, 0.18), rgba(19, 46, 79, 0.14));
}

main#home .timeline.process-flow article {
  position: relative;
  display: grid;
  grid-template-columns: 2.7rem minmax(0, 1fr);
  gap: 0.2rem 1.2rem;
  min-height: auto;
  padding: 0.2rem 0 1.45rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main#home .timeline.process-flow article:nth-child(-n + 5),
main#home .timeline.process-flow article:nth-child(4),
main#home .timeline.process-flow article:nth-child(5) {
  grid-column: auto;
}

main#home .timeline.process-flow article:last-child {
  padding-bottom: 0;
}

main#home .timeline.process-flow article span {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(217, 174, 93, 0.24);
  background: rgba(249, 243, 229, 0.9);
  box-shadow: 0 0 0 7px rgba(217, 174, 93, 0.06);
}

main#home .timeline.process-flow article strong {
  margin: 0.05rem 0 0.25rem;
  font-size: 0.96rem;
}

main#home .timeline.process-flow article p {
  max-width: 26rem;
  color: rgba(67, 86, 108, 0.94);
}

main#home .authority-section {
  padding-top: 5.8rem;
}

main#home .authority-section .section-heading {
  max-width: 33rem;
  margin-bottom: 2.45rem;
}

main#home .authority-list {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem 1.2rem;
  align-items: stretch;
}

main#home .authority-item-featured {
  grid-row: span 2;
  padding: 1.8rem 1.7rem 1.8rem;
}

main#home .authority-item {
  padding: 1.32rem 1.32rem 1.4rem;
  background: rgba(255, 253, 248, 0.62);
  box-shadow: none;
}

main#home .authority-item blockquote {
  font-size: 1.04rem;
  line-height: 1.46;
}

main#home .authority-item-featured blockquote {
  font-size: 1.38rem;
  line-height: 1.28;
  max-width: 15ch;
}

main#home .authority-outcome {
  margin-top: 1.3rem;
}

main#home .proof-block {
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1.16fr);
  gap: clamp(2.4rem, 4vw, 4.5rem);
  padding-top: 6rem;
}

main#home .proof-copy {
  max-width: 26rem;
}

main#home .principles {
  grid-template-columns: 1fr;
  gap: 0.1rem;
  align-self: center;
}

main#home .principles p {
  min-height: auto;
  padding: 1.08rem 0 1.08rem 1.25rem;
  border: 0;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main#home .principles p:last-child {
  border-bottom: 1px solid rgba(19, 46, 79, 0.08);
}

main#home .principles p::before {
  left: 0.3rem;
  top: 1.45rem;
  box-shadow: 0 0 0 5px rgba(217, 174, 93, 0.08);
}

main#home .section.system-step > .section-heading + .cards-three {
  margin-top: 0.35rem;
}

main#home .cards-three {
  gap: 1rem;
}

main#home .content-card {
  padding: 1.35rem 1.35rem 1.5rem;
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.56);
  box-shadow: none;
}

main#home .cards-three .content-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.78), rgba(244, 236, 221, 0.72));
  border-color: rgba(217, 174, 93, 0.18);
}

main#home section#offers {
  padding-top: 5.8rem;
  padding-bottom: 4rem;
}

main#home section#offers .section-heading {
  max-width: 32rem;
  margin-bottom: 2rem;
}

main#home .offers-grid {
  grid-template-columns: 1fr;
  gap: 0.75rem;
  max-width: 44rem;
  margin-left: auto;
}

main#home .offer-card {
  display: grid;
  grid-template-columns: minmax(0, 0.34fr) minmax(0, 0.66fr);
  align-items: start;
  gap: 0.75rem 1.2rem;
  padding: 1.15rem 0 1.2rem;
  border: 0;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

main#home .offer-card:last-child {
  border-bottom: 1px solid rgba(19, 46, 79, 0.08);
}

main#home .offer-tag {
  margin: 0.18rem 0 0;
  color: rgba(217, 174, 93, 0.92);
}

main#home .offer-card h3 {
  margin: 0;
}

main#home .offer-card p:not(.offer-tag) {
  grid-column: 2;
  margin: 0;
}

main#home .offer-card.featured {
  background: transparent;
  border-top-color: rgba(217, 174, 93, 0.2);
  box-shadow: none;
}

main#home .contact-card {
  gap: clamp(2.5rem, 4vw, 4.8rem);
  padding: 2.8rem 2.55rem;
}

main#home .contact-actions {
  max-width: 25rem;
}

main#home .contact-actions p {
  color: rgba(245, 241, 232, 0.78);
}

@media (max-width: 1180px) {
  main#home .diagnosis-points,
  main#home .system-flow {
    grid-template-columns: 1fr 1fr;
  }

  main#home .authority-list {
    grid-template-columns: 1fr 1fr;
  }

  main#home .authority-item-featured {
    grid-row: auto;
    grid-column: 1 / -1;
  }
}

@media (max-width: 1024px) {
  main#home .diagnosis-band,
  main#home .proof-block {
    grid-template-columns: 1fr;
  }

  main#home .system-flow {
    gap: 1rem 1.25rem;
  }

  main#home .system-flow::before {
    display: none;
  }

  main#home .cards-three {
    grid-template-columns: 1fr;
  }

  main#home .offer-card {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  main#home .offer-card p:not(.offer-tag) {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  main#home .hero {
    padding-bottom: 3.8rem;
  }

  main#home .hero-copy::before {
    width: 4rem;
    margin-bottom: 1.5rem;
  }

  main#home .hero-panel {
    padding: 1.25rem 1.1rem 0.25rem;
  }

  main#home .diagnosis-points,
  main#home .system-flow {
    grid-template-columns: 1fr;
  }

  main#home .problem-band,
  main#home .bilingual-band,
  main#home .proof-block,
  main#home .contact-card {
    gap: 1.6rem;
    padding-top: 0.8rem;
  }

  main#home .problem-list p,
  main#home .principles p,
  main#home .offer-card {
    padding-left: 1.15rem;
  }

  main#home .problem-list p::before,
  main#home .principles p::before {
    left: 0.2rem;
  }

  main#home .credibility-stack p {
    padding-left: 1.25rem;
  }

  main#home .credibility-stack p::before {
    left: 0.2rem;
  }

  main#home .timeline.process-flow {
    margin-left: 0;
  }

  main#home .authority-list {
    grid-template-columns: 1fr;
  }

  main#home .content-card {
    padding: 1.2rem 1.1rem 1.25rem;
  }

  main#home section#offers,
  main#home #process,
  main#home .authority-section,
  main#home .proof-block {
    padding-top: 4.25rem;
  }

  main#home .contact-card {
    padding: 2rem 1.2rem;
  }
}

/* === Homepage final polish: editorial rhythm and premium composition === */
main#home .diagnosis-band-copy .eyebrow,
main#home #approach .section-heading .eyebrow,
main#home section#offers .section-heading .eyebrow {
  margin-bottom: 0.7rem;
  color: rgba(19, 46, 79, 0.48);
}

main#home .diagnosis-band-copy .eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
}

main#home .diagnosis-band h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 0.98;
}

main#home .diagnosis-band-copy p:not(.eyebrow) {
  max-width: 27rem;
}

main#home .diagnosis-band .hero-actions {
  margin-top: 0.15rem;
}

main#home .problem-band .eyebrow {
  margin-bottom: 0.45rem;
  color: rgba(217, 174, 93, 0.96);
}

main#home .bilingual-band .eyebrow,
main#home .proof-copy .eyebrow {
  display: none;
}

main#home .bilingual-band {
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  padding-top: 4.2rem;
  padding-bottom: 2.6rem;
}

main#home .bilingual-band > div:first-child {
  max-width: 31rem;
}

main#home .bilingual-band h2 {
  max-width: 8.6ch;
  font-size: clamp(3rem, 5vw, 4.8rem);
  line-height: 0.94;
}

main#home .credibility-stack {
  max-width: 34rem;
  padding-top: 0.8rem;
}

main#home .credibility-stack p {
  min-height: auto;
  padding-top: 1.05rem;
  padding-bottom: 1.05rem;
  background: rgba(255, 253, 248, 0.4);
}

main#home #approach {
  padding-top: 6.1rem;
  padding-bottom: 5.4rem;
}

main#home #approach .section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  max-width: none;
  gap: 1.4rem 2rem;
  align-items: end;
}

main#home #approach .section-heading h2 {
  max-width: 10.5ch;
  margin: 0;
}

main#home #approach .section-heading::after {
  content: "One operating system. Five connected layers.";
  align-self: end;
  max-width: 22rem;
  color: rgba(67, 86, 108, 0.82);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
}

main#home .system-flow {
  padding-top: 1.2rem;
}

main#home .approach-card p {
  max-width: 11.5rem;
}

main#home #process {
  padding-top: 5.1rem;
  padding-bottom: 5.7rem;
}

main#home #process .section-heading {
  margin-bottom: 2.8rem;
}

main#home #process .eyebrow {
  margin-bottom: 0.55rem;
}

main#home .timeline.process-flow {
  max-width: 42rem;
}

main#home .authority-section {
  padding-top: 4.6rem;
  padding-bottom: 5.8rem;
}

main#home .authority-section .section-heading .eyebrow {
  margin-bottom: 0.6rem;
}

main#home .authority-section .section-heading h2 {
  max-width: 8.7ch;
  font-size: clamp(3rem, 5.1vw, 4.85rem);
  line-height: 0.94;
}

main#home .authority-list {
  margin-top: 0.2rem;
}

main#home .proof-block {
  align-items: start;
  padding-top: 4.6rem;
  padding-bottom: 5.2rem;
}

main#home .proof-copy {
  max-width: 24rem;
}

main#home .proof-copy h2 {
  max-width: 7.6ch;
  font-size: clamp(2.9rem, 5vw, 4.6rem);
  line-height: 0.95;
}

main#home .proof-copy p {
  margin-top: 1.45rem;
  max-width: 22rem;
}

main#home .principles {
  max-width: 34rem;
  justify-self: end;
}

main#home .principles p {
  font-size: 1.02rem;
}

main#home .section.system-step > .section-heading + .cards-three {
  margin-top: 0.6rem;
}

main#home .section.system-step > .section-heading {
  max-width: 36rem;
}

main#home .section.system-step > .section-heading h2 {
  max-width: 9.2ch;
}

main#home .cards-three {
  max-width: 51rem;
}

main#home section#offers {
  padding-top: 4.6rem;
  padding-bottom: 5.9rem;
}

main#home section#offers .section-heading {
  max-width: 28rem;
}

main#home .offers-grid {
  max-width: 48rem;
  gap: 0.55rem;
}

main#home .offer-card {
  grid-template-columns: minmax(0, 0.28fr) minmax(0, 0.72fr);
  padding-top: 1.3rem;
  padding-bottom: 1.35rem;
}

main#home .offer-card.featured {
  padding-left: 0.85rem;
}

main#home .contact-card {
  gap: clamp(2.8rem, 4vw, 5rem);
  padding-top: 3rem;
  padding-bottom: 3rem;
}

main#home .contact-card .eyebrow {
  margin-bottom: 0.7rem;
}

main#home .contact-actions {
  max-width: 24rem;
}

@media (max-width: 1024px) {
  main#home #approach .section-heading {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  main#home #approach .section-heading::after {
    max-width: 100%;
  }

  main#home .bilingual-band,
  main#home .proof-block {
    grid-template-columns: 1fr;
  }

  main#home .principles {
    max-width: 100%;
    justify-self: stretch;
  }
}

@media (max-width: 720px) {
  main#home .diagnosis-band h2,
  main#home .bilingual-band h2,
  main#home .authority-section .section-heading h2,
  main#home .proof-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.7rem);
  }

  main#home #approach,
  main#home #process,
  main#home .authority-section,
  main#home .proof-block,
  main#home section#offers {
    padding-top: 4.1rem;
    padding-bottom: 4.1rem;
  }

  main#home .offers-grid {
    max-width: 100%;
  }

  main#home .offer-card,
  main#home .offer-card.featured {
    padding-left: 0;
  }
}

/* === Homepage Webflow-template adaptation: May 2026 === */
.home-template-topbar {
  max-width: min(1180px, calc(100% - 1.5rem));
  margin-inline: auto;
  margin-top: 1rem;
  padding: 0.9rem 1.35rem;
  position: relative;
  overflow: visible;
  border-radius: 24px 24px 16px 16px;
  background: rgba(26, 60, 99, 0.96);
  border-color: rgba(217, 174, 93, 0.18);
  box-shadow: 0 18px 40px rgba(13, 39, 70, 0.14);
}

.home-template-topbar::before,
.home-template-topbar::after {
  display: none;
  content: none;
}

.home-template-topbar .brand,
.home-template-topbar .nav,
.home-template-topbar .header-cta,
.home-template-topbar .nav-toggle {
  position: relative;
  z-index: 2;
}

.home-template-topbar .nav {
  gap: 0.9rem;
}

.home-template-topbar .nav a,
.home-template-topbar .lang-switch a {
  display: inline-flex;
  align-items: center;
  min-height: 2.3rem;
  padding: 0.36rem 0;
  color: rgba(237, 241, 246, 0.78);
}

.home-template-topbar .nav a:hover,
.home-template-topbar .nav a:first-child {
  color: #fff;
}

.home-template-topbar .nav a:first-child {
  padding: 0.38rem 0.82rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.home-template-topbar .nav a:not(:first-child):hover {
  color: rgba(255, 255, 255, 0.94);
}

.home-template-topbar .nav a::after {
  background: rgba(217, 174, 93, 0.92);
}

.home-template-topbar .header-cta {
  background: linear-gradient(180deg, rgba(217, 174, 93, 0.96), rgba(201, 155, 70, 0.98));
  color: #153253;
  border: 1px solid rgba(217, 174, 93, 0.42);
  box-shadow: 0 12px 24px rgba(13, 39, 70, 0.12);
}

.home-template-topbar .header-cta:hover {
  background: linear-gradient(180deg, rgba(228, 188, 112, 0.98), rgba(208, 163, 79, 1));
  color: #102641;
}

main#home .home-template-hero {
  margin-top: calc(-1 * var(--hero-header-overlap));
  padding-top: calc(var(--hero-header-overlap) - 0.2rem);
  border-top: 0;
}

main#home .home-template-hero-shell {
  position: relative;
  display: grid;
  gap: 0;
  width: 100%;
  max-width: none;
  margin-inline: auto;
  margin-top: -0.7rem;
  border-radius: 0 0 36px 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 18%, rgba(244, 196, 175, 0.26), transparent 18%),
    radial-gradient(circle at 68% 48%, rgba(217, 174, 93, 0.12), transparent 17%),
    radial-gradient(circle at 16% 88%, rgba(54, 82, 126, 0.2), transparent 30%),
    linear-gradient(135deg, #173255 0%, #173255 38%, #23456d 57%, #2d4e70 68%, #123253 100%);
}

main#home .home-template-hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(128deg, rgba(255, 255, 255, 0.04), transparent 34%),
    linear-gradient(180deg, rgba(9, 27, 46, 0.08), rgba(9, 27, 46, 0.28));
  pointer-events: none;
}

main#home .home-template-hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 29%, rgba(255, 255, 255, 0.07) 29.2%, transparent 29.4%, transparent 58%, rgba(255, 255, 255, 0.07) 58.2%, transparent 58.4%),
    linear-gradient(180deg, transparent 23%, rgba(255, 255, 255, 0.065) 23.2%, transparent 23.4%, transparent 50%, rgba(255, 255, 255, 0.065) 50.2%, transparent 50.4%, transparent 78%, rgba(255, 255, 255, 0.065) 78.2%, transparent 78.4%);
  opacity: 0.34;
  pointer-events: none;
}

main#home .home-template-hero-surface {
  position: relative;
  display: grid;
  width: 100%;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.9fr);
  gap: clamp(2.5rem, 4vw, 4.6rem);
  align-items: center;
  min-height: clamp(43rem, 84vh, 52rem);
  padding: clamp(6.9rem, 9.8vw, 8.1rem) clamp(2.35rem, 3.8vw, 3.45rem) clamp(3rem, 4vw, 3.6rem);
  background: transparent;
}

main#home .home-template-hero .hero-copy,
main#home .home-template-hero-panel {
  position: relative;
  z-index: 1;
}

main#home .home-template-hero .hero-copy {
  max-width: 38rem;
  padding: 0;
}

main#home .home-template-hero .hero-copy::before {
  display: none;
}

main#home .home-template-hero .hero .eyebrow,
main#home .home-template-hero .eyebrow {
  color: rgba(255, 224, 177, 0.88);
}

main#home .home-template-hero .hero-copy .eyebrow {
  margin-bottom: 1.25rem;
  max-width: 18rem;
}

main#home .home-template-hero .hero-copy h1 {
  max-width: 7.9ch;
  color: #f7edd7;
  font-size: clamp(3.45rem, 5.1vw, 4.95rem);
  line-height: 0.98;
  text-wrap: pretty;
}

main#home .home-template-hero .hero-copy h1 span {
  color: #f7edd7;
}

main#home .home-template-hero .lede {
  max-width: 31rem;
  margin-top: 1.2rem;
  color: rgba(248, 244, 236, 0.86);
  font-size: 1rem;
  line-height: 1.72;
}

main#home .home-template-hero .hero-actions {
  margin-top: 2.2rem;
  gap: 0.9rem;
  align-items: center;
  flex-wrap: wrap;
}

main#home .home-template-hero .button-secondary {
  color: #f7edd7;
  border-color: rgba(247, 237, 215, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

main#home .home-template-hero-note {
  max-width: 28rem;
  margin: 1.6rem 0 0;
  color: rgba(247, 237, 215, 0.72);
  font-size: 0.92rem;
  line-height: 1.6;
}

main#home .home-template-hero-panel {
  align-self: center;
  justify-self: center;
  width: min(100%, 27rem);
  margin-right: 0;
  padding: 1.28rem 1.2rem 1.08rem;
  border-radius: 26px;
  border: 1px solid rgba(247, 237, 215, 0.14);
  background: linear-gradient(180deg, rgba(18, 43, 72, 0.78), rgba(11, 33, 58, 0.88));
  box-shadow: 0 24px 48px rgba(10, 28, 48, 0.18);
  backdrop-filter: blur(14px);
}

main#home .home-template-hero-panel .card-label {
  color: rgba(247, 237, 215, 0.62);
}

main#home .home-template-hero-panel .hero-wordmark {
  width: min(9.4rem, 40%);
}

main#home .home-template-hero-panel .hero-flow {
  margin-top: 0.82rem;
  border-top-color: rgba(255, 255, 255, 0.08);
}

main#home .home-template-hero-panel .hero-flow article {
  position: relative;
  padding: 0.82rem 0 0.82rem 0.92rem;
}

main#home .home-template-hero-panel .hero-flow-copy p:not(.hero-step-title) {
  color: rgba(247, 237, 215, 0.72);
}

main#home .home-template-hero-panel .hero-flow article::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.28rem;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 999px;
  background: rgba(217, 174, 93, 0.94);
  box-shadow: 0 0 0 6px rgba(217, 174, 93, 0.08);
}

main#home .home-template-hero-panel .hero-flow article::after {
  content: "";
  position: absolute;
  left: 0.19rem;
  top: 1.82rem;
  bottom: -0.8rem;
  width: 1px;
  background: linear-gradient(180deg, rgba(217, 174, 93, 0.36), rgba(217, 174, 93, 0.06));
}

main#home .home-template-hero-panel .hero-flow article:last-child::after {
  display: none;
}

main#home .home-template-problem {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 4.8rem;
  padding-bottom: 3.2rem;
}

main#home .home-template-problem-intro {
  max-width: 24rem;
}

main#home .home-template-problem-intro h2 {
  max-width: 9.3ch;
  font-size: clamp(2.35rem, 3.5vw, 3.35rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

main#home .home-template-problem-intro .page-lede {
  margin-top: 1.15rem;
  max-width: 24rem;
}

main#home .home-template-problem-grid {
  display: grid;
  gap: 0.2rem;
  align-content: center;
}

main#home .home-template-problem-grid p {
  margin: 0;
  padding: 1.08rem 0 1.08rem 1.55rem;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
  position: relative;
  color: rgba(67, 86, 108, 0.94);
}

main#home .home-template-problem-grid p:last-child {
  border-bottom: 0;
}

main#home .home-template-problem-grid p::before {
  content: "";
  position: absolute;
  left: 0.35rem;
  top: 1.48rem;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: rgba(217, 174, 93, 0.95);
}

main#home .home-template-pause {
  padding-top: 0.45rem;
  padding-bottom: 3.05rem;
  border-top: 0;
  margin-bottom: 1.35rem;
}

main#home .home-template-pause p {
  max-width: 26ch;
  margin: 0 auto;
  text-align: center;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.9rem, 3.1vw, 2.7rem);
  line-height: 1.08;
  letter-spacing: -0.05em;
  color: #163154;
}

main#home .home-template-system {
  display: grid;
  gap: 1.45rem;
  padding-top: 1.95rem;
  padding-bottom: 6rem;
}

main#home .home-template-system-copy {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(19rem, 32%) minmax(0, 68%);
  gap: 0.3rem 1.9rem;
  grid-auto-rows: min-content;
  align-items: start;
  justify-content: stretch;
}

main#home .home-template-system-copy h2 {
  max-width: none;
  margin: 0;
  width: 100%;
  font-size: clamp(1.98rem, 2.68vw, 2.62rem);
  line-height: 0.98;
  text-wrap: pretty;
  justify-self: stretch;
}

main#home .home-template-system-copy .page-lede {
  max-width: 24.75rem;
  margin: 0;
  align-self: start;
  line-height: 1.72;
}

main#home .home-template-system-chain {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0.85rem;
  align-items: stretch;
}

main#home .home-template-system-chain article {
  display: grid;
  gap: 0.8rem;
  position: relative;
  padding: 1.3rem 1rem 1.45rem;
  border-radius: 18px;
  border: 1px solid rgba(19, 46, 79, 0.08);
  background: linear-gradient(180deg, rgba(255, 254, 251, 0.94), rgba(248, 244, 236, 0.82));
}

main#home .home-template-system-chain article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -0.52rem;
  top: 50%;
  width: 0.22rem;
  height: 0.22rem;
  border-top: 1px solid rgba(19, 46, 79, 0.3);
  border-right: 1px solid rgba(19, 46, 79, 0.3);
  transform: translateY(-50%) rotate(45deg);
}

main#home .home-template-system-chain span {
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(19, 46, 79, 0.62);
}

main#home .home-template-system-chain p {
  margin: 0;
  color: rgba(67, 86, 108, 0.92);
  line-height: 1.64;
}

main#home .home-template-services-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(1.6rem, 3vw, 2.75rem);
  align-items: start;
  padding-top: 5.1rem;
  padding-bottom: 4.7rem;
}

main#home .home-template-services-copy {
  max-width: 27rem;
  margin: 0 auto;
  text-align: center;
}

main#home .home-template-services-copy h2 {
  max-width: 10.2ch;
  font-size: clamp(2.55rem, 4.15vw, 4rem);
  line-height: 0.97;
  margin-left: auto;
  margin-right: auto;
}

main#home .home-template-services-copy .button {
  margin-top: 1.4rem;
  margin-left: auto;
  margin-right: auto;
}

main#home .home-template-services-copy .page-lede {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main#home .home-template-service-stack {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding-top: 0.55rem;
}

main#home .home-template-service-featured {
  display: grid;
  gap: 0.95rem;
  padding: 1.75rem 1.6rem 1.7rem;
  margin-top: 0.1rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #173255, #1c3a60);
  color: #f5f1e8;
  box-shadow: 0 18px 34px rgba(13, 39, 70, 0.12);
}

main#home .home-template-service-featured .eyebrow {
  color: rgba(217, 174, 93, 0.94);
}

main#home .home-template-service-featured h3 {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.06;
}

main#home .home-template-service-featured p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 241, 232, 0.82);
  line-height: 1.68;
}

main#home .home-template-service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

main#home .home-template-service-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.4rem 0.72rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(245, 241, 232, 0.88);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main#home .home-template-service-stack > article:not(.home-template-service-featured) {
  display: grid;
  grid-template-columns: minmax(8.8rem, 0.32fr) minmax(0, 0.68fr);
  gap: 0.7rem 1rem;
  align-items: start;
  padding: 1.05rem 0;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
}

main#home .home-template-service-stack > article:last-child {
  border-bottom: 1px solid rgba(19, 46, 79, 0.08);
}

main#home .home-template-service-stack > article span {
  color: rgba(217, 174, 93, 0.94);
  font-family: "Sora", sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

main#home .home-template-service-stack > article p {
  margin: 0;
}

main#home .home-template-growth-levels {
  padding-top: 4.8rem;
  padding-bottom: 5rem;
}

main#home .home-template-growth-levels-head {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 0.7rem 2.35rem;
  align-items: center;
  justify-items: center;
  text-align: center;
}

main#home .home-template-growth-levels-head .section-heading {
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main#home .home-template-growth-levels-head .page-lede {
  max-width: 28rem;
  margin: 0 auto;
  align-self: center;
  line-height: 1.74;
  padding-top: 0.15rem;
  text-align: center;
}

main#home .home-template-growth-levels-head .section-heading h2 {
  max-width: 10.4ch;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 0.98;
  margin-left: auto;
  margin-right: auto;
}

main#home .home-template-level-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

main#home .home-template-level-grid .content-card {
  min-height: 100%;
}

main#home .home-template-level-grid .content-card:nth-child(2) {
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.78), rgba(244, 236, 221, 0.72));
  border-color: rgba(217, 174, 93, 0.18);
  transform: translateY(-0.45rem);
}

main#home .home-template-growth-os {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(2rem, 4vw, 4rem);
  padding-top: 4.8rem;
  padding-bottom: 4.9rem;
}

main#home .home-template-growth-os-copy {
  max-width: 25rem;
}

main#home .home-template-growth-os-copy h2 {
  max-width: 9.2ch;
  font-size: clamp(2.45rem, 3.8vw, 3.4rem);
  line-height: 0.98;
}

main#home .home-template-growth-os-ui {
  display: grid;
  gap: 1rem;
  padding: 1.75rem;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(22, 51, 84, 0.98), rgba(27, 65, 106, 0.96));
  box-shadow: 0 24px 48px rgba(13, 39, 70, 0.14);
}

main#home .home-template-outcome-pause {
  padding-top: 0.8rem;
  padding-bottom: 4.6rem;
  border-top: 0;
}

main#home .home-template-outcome-pause p {
  max-width: 34rem;
  margin: 0 auto;
  text-align: center;
  color: rgba(22, 49, 84, 0.8);
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.78rem);
  line-height: 1.25;
}

main#home .home-template-growth-os-topline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

main#home .home-template-growth-os-topline span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.45rem;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(245, 241, 232, 0.86);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

main#home .home-template-growth-os-panels {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 0.9rem;
}

main#home .home-template-growth-os-panels article {
  display: grid;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.25rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

main#home .home-template-growth-os-panels article:last-child {
  grid-column: 1 / -1;
}

main#home .home-template-growth-os-panels .eyebrow {
  color: rgba(217, 174, 93, 0.94);
}

main#home .home-template-growth-os-panels strong {
  color: #f5f1e8;
  font-size: 1.08rem;
  line-height: 1.18;
}

main#home .home-template-growth-os-panels p:not(.eyebrow) {
  margin: 0;
  color: rgba(245, 241, 232, 0.8);
  line-height: 1.66;
}

main#home .home-template-models {
  padding-top: 4.8rem;
  padding-bottom: 5.8rem;
}

main#home .home-template-models-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.65rem;
  border-top: 1px solid rgba(19, 46, 79, 0.08);
}

main#home .home-template-models-copy {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 0.85rem 2.6rem;
  align-items: start;
  max-width: none;
}

main#home .home-template-models-copy h2 {
  max-width: 9.2ch;
  font-size: clamp(2.35rem, 3.6vw, 3.3rem);
  line-height: 0.98;
}

main#home .home-template-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

main#home .home-template-model-grid .offer-card {
  display: grid;
  gap: 0.75rem;
  padding: 1.35rem 1.2rem 1.35rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(245, 241, 232, 0.08);
  color: #f5f1e8;
}

main#home .home-template-model-grid .offer-card.featured {
  background: linear-gradient(180deg, rgba(217, 174, 93, 0.92), rgba(199, 154, 74, 0.92));
  border-color: rgba(217, 174, 93, 0.28);
  color: #163154;
}

main#home .home-template-model-grid .offer-card h3,
main#home .home-template-model-grid .offer-card p {
  margin: 0;
}

main#home .home-template-models-shell {
  border-radius: 28px;
  background: linear-gradient(180deg, #163154, #1f3a5f);
  padding: 2rem 2rem 2.1rem;
}

main#home .home-template-model-grid .offer-card .offer-tag {
  color: inherit;
  opacity: 0.72;
}

main#home .home-template-models-copy .page-lede {
  max-width: 26rem;
  margin: 0;
  color: rgba(245, 241, 232, 0.8);
}

main#home .home-template-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
  gap: clamp(1.8rem, 3.6vw, 3.4rem);
  padding-top: 4.8rem;
  padding-bottom: 5.8rem;
}

main#home .home-template-proof-copy {
  max-width: 24rem;
}

main#home .home-template-proof-copy h2 {
  max-width: 8.6ch;
  font-size: clamp(2.45rem, 3.8vw, 3.45rem);
  line-height: 0.98;
}

main#home .home-template-proof-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 0.85rem;
  align-items: start;
}

main#home .home-template-proof-featured {
  display: grid;
  gap: 0.8rem;
  padding: 1.45rem 1.4rem 1.55rem;
  border-radius: 24px;
  background: #1f3a5f;
  color: #f5f1e8;
  grid-row: span 2;
}

main#home .home-template-proof-featured blockquote {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.55rem;
  line-height: 1.2;
}

main#home .home-template-proof-featured .authority-outcome {
  margin-top: 0.8rem;
  color: rgba(217, 174, 93, 0.96);
  letter-spacing: 0.14em;
}

main#home .home-template-proof-featured .authority-label {
  margin: 0;
  color: rgba(245, 241, 232, 0.74);
}

main#home .home-template-proof-layout .authority-item {
  display: grid;
  gap: 0.55rem;
  padding: 1.18rem 1.15rem 1.2rem;
  background: rgba(255, 253, 248, 0.64);
  border-radius: 20px;
}

main#home .home-template-proof-layout .authority-item h3,
main#home .home-template-proof-layout .authority-item p {
  margin: 0;
}

main#home .home-template-final-cta {
  gap: clamp(2.4rem, 4vw, 4.6rem);
  padding: 3.3rem 2.8rem;
  border-radius: 32px;
  background: linear-gradient(180deg, #163154, #12304f);
}

main#home .home-template-final-cta .final-cta-title {
  max-width: 9.4ch;
  font-size: clamp(2.7rem, 4.2vw, 3.95rem);
  line-height: 0.98;
}

main#home .home-template-final-cta .contact-actions {
  max-width: 28rem;
}

main#home .home-template-final-cta .contact-actions p {
  font-size: 1.02rem;
  line-height: 1.72;
}

@media (max-width: 1180px) {
  main#home .home-template-system-chain,
  main#home .home-template-level-grid,
  main#home .home-template-model-grid {
    grid-template-columns: 1fr 1fr;
  }

  main#home .home-template-growth-levels-head,
  main#home .home-template-models-copy {
    grid-template-columns: 1fr;
  }

  main#home .home-template-growth-os-panels {
    grid-template-columns: 1fr;
  }

  main#home .home-template-growth-os-panels article:last-child {
    grid-column: auto;
  }
}

@media (max-width: 1024px) {
  .home-template-topbar {
    max-width: none;
    padding: 0.82rem 1rem;
    border-radius: 18px;
  }

  .home-template-topbar .header-cta {
    display: none;
  }

  .home-template-topbar .nav-toggle {
    display: inline-flex;
    margin-left: auto;
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
  }

  .home-template-topbar .nav {
    padding-top: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-template-topbar.nav-open .nav {
    background: transparent;
  }

  .home-template-topbar .nav a {
    min-height: auto;
    padding: 0.35rem 0;
  }

  .home-template-topbar .nav a:first-child {
    padding: 0.35rem 0;
    border-radius: 0;
    background: transparent;
  }

  main#home .home-template-hero-surface,
  main#home .home-template-problem,
  main#home .home-template-system-copy,
  main#home .home-template-services-overview,
  main#home .home-template-growth-levels-head,
  main#home .home-template-growth-os,
  main#home .home-template-proof,
  main#home .home-template-proof-layout,
  main#home .home-template-models-copy {
    grid-template-columns: 1fr;
  }

  main#home .home-template-system-chain,
  main#home .home-template-level-grid,
  main#home .home-template-model-grid {
    grid-template-columns: 1fr;
  }

  main#home .home-template-hero-surface {
    min-height: auto;
    align-items: start;
    padding-top: 7rem;
    padding-bottom: 2rem;
  }

  main#home .home-template-system-chain article:not(:last-child)::after {
    display: none;
  }

  main#home .home-template-hero-panel {
    width: 100%;
    justify-self: stretch;
  }

  main#home .home-template-growth-os-ui {
    margin-top: 0.5rem;
  }

  main#home .home-template-models-shell {
    gap: 1.4rem;
  }
}

@media (max-width: 720px) {
  .home-template-topbar {
    padding: 0.7rem 0.9rem;
    border-radius: 16px;
  }

  main#home .home-template-hero-surface {
    padding: 6.25rem 1.1rem 1.6rem;
  }

  main#home .home-template-hero .hero-copy h1 {
    max-width: 8.8ch;
  }

  main#home .home-template-hero .lede {
    margin-top: 1.2rem;
  }

  main#home .home-template-hero .hero-copy h1,
  main#home .home-template-problem-intro h2,
  main#home .home-template-system-copy h2,
  main#home .home-template-services-copy h2,
  main#home .home-template-growth-os-copy h2,
  main#home .home-template-proof-copy h2,
  main#home .home-template-growth-levels-head .section-heading h2,
  main#home .home-template-models-copy h2,
  main#home .home-template-final-cta .final-cta-title {
    font-size: clamp(2.7rem, 11vw, 4.1rem);
  }

  main#home .home-template-growth-os-topline {
    grid-template-columns: 1fr;
  }

  main#home .home-template-service-featured,
  main#home .home-template-growth-os-ui,
  main#home .home-template-proof-featured,
  main#home .home-template-final-cta,
  main#home .home-template-models-shell {
    padding: 1.25rem 1.1rem 1.3rem;
  }

  main#home .home-template-hero-note {
    margin-top: 1rem;
    font-size: 0.88rem;
  }

  main#home .home-template-service-stack > article:not(.home-template-service-featured) {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  main#home .home-template-pause p {
    font-size: clamp(1.95rem, 8vw, 2.85rem);
  }

  main#home .home-template-outcome-pause p {
    font-size: clamp(1.2rem, 5.6vw, 1.55rem);
  }

  main#home .home-template-proof-featured blockquote {
    font-size: 1.28rem;
  }
}

/* === Shared component restraint pass: May 2026 === */
main.page-main:not(#home) {
  --inner-section-gap: clamp(5.2rem, 7.8vw, 7.6rem);
}

main.page-main:not(#home) .page-hero {
  max-width: 61rem;
  padding: clamp(3.6rem, 5.4vw, 5rem) 0 clamp(2.5rem, 3.8vw, 3.25rem);
}

main.page-main:not(#home) .page-hero h1 {
  max-width: 11.2ch;
  line-height: 0.95;
}

main.page-main:not(#home) .section-heading {
  margin-bottom: 2.3rem;
}

main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .faq-list,
main.page-main:not(#home) > .visual-gallery {
  margin-bottom: clamp(5.6rem, 8vw, 7.7rem);
}

main.page-main:not(#home) > .section + .section-heading,
main.page-main:not(#home) > .cards-three + .section-heading,
main.page-main:not(#home) > .content-grid + .section-heading,
main.page-main:not(#home) > .visual-gallery + .section-heading,
main.page-main:not(#home) > .faq-list + .section-heading,
main.page-main:not(#home) > .authority-section + .section-heading {
  margin-top: clamp(1.2rem, 2.2vw, 2.2rem);
}

main.page-main:not(#home) .content-grid,
main.page-main:not(#home) .cards-three,
main.page-main:not(#home) .faq-list,
main.page-main:not(#home) .authority-list {
  gap: 1rem;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .authority-item,
main.page-main:not(#home) .timeline article,
main.page-main:not(#home) .contact-form,
main.page-main:not(#home) .visual-panel {
  border-radius: 18px;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item {
  border-color: rgba(19, 46, 79, 0.07);
  background: rgba(255, 253, 248, 0.7);
  box-shadow: none;
}

main.page-main:not(#home) .content-card:hover,
main.page-main:not(#home) .faq-item:hover {
  border-color: rgba(19, 46, 79, 0.11);
  box-shadow: 0 10px 22px rgba(13, 39, 70, 0.035);
}

main.page-main:not(#home) .content-card {
  padding: 1.45rem 1.4rem 1.45rem;
}

main.page-main:not(#home) .content-card h3,
main.page-main:not(#home) .faq-item h3 {
  line-height: 1.14;
}

main.page-main:not(#home) .authority-item {
  border-color: rgba(19, 46, 79, 0.08);
  background: rgba(255, 253, 248, 0.84);
  box-shadow: 0 8px 18px rgba(13, 39, 70, 0.028);
  padding: 1.35rem 1.25rem 1.35rem;
}

main.page-main:not(#home) .authority-item:hover {
  box-shadow: 0 12px 24px rgba(13, 39, 70, 0.04);
}

main.page-main:not(#home) .authority-item-featured {
  border-color: rgba(217, 174, 93, 0.22);
  background: linear-gradient(180deg, rgba(249, 243, 229, 0.94), rgba(244, 236, 221, 0.92));
  box-shadow: 0 14px 28px rgba(13, 39, 70, 0.05);
}

main.page-main:not(#home) .offer-card {
  border-radius: 20px;
  border-color: rgba(19, 46, 79, 0.08);
  background: rgba(255, 253, 248, 0.76);
  box-shadow: none;
}

main.page-main:not(#home) .offer-card:not(.featured):hover {
  border-color: rgba(19, 46, 79, 0.12);
  box-shadow: 0 12px 24px rgba(13, 39, 70, 0.038);
}

main.page-main:not(#home) .offer-card.featured {
  box-shadow: 0 14px 28px rgba(13, 39, 70, 0.055);
}

main.page-main:not(#home) .visual-panel {
  border-color: rgba(217, 174, 93, 0.12);
  background: rgba(248, 244, 236, 0.88);
  box-shadow: none;
}

main.page-main:not(#home) .timeline article {
  border-color: rgba(19, 46, 79, 0.07);
  background: rgba(255, 253, 248, 0.64);
  box-shadow: none;
  padding: 1.3rem 1.2rem 1.35rem;
}

main.page-main:not(#home) .timeline article:nth-child(even) {
  background: rgba(249, 245, 237, 0.66);
}

main.page-main:not(#home) .service-family-nav {
  gap: 0.62rem;
  margin-bottom: 2.2rem;
}

main.page-main:not(#home) .service-family-link {
  min-height: 2.45rem;
  padding-inline: 0.92rem;
  border-radius: 999px;
  border-color: rgba(19, 46, 79, 0.08);
  background: rgba(255, 253, 248, 0.78);
  box-shadow: none;
}

main.page-main:not(#home) .service-family-link:hover {
  border-color: rgba(19, 46, 79, 0.14);
  background: rgba(255, 253, 248, 0.94);
}

main.page-main:not(#home) .service-family-link.is-active {
  border-color: rgba(217, 174, 93, 0.38);
  background: rgba(217, 174, 93, 0.1);
}

main.page-main:not(#home) .cta-band {
  padding: 2.25rem 2.05rem;
  border-radius: 26px;
  box-shadow: 0 18px 36px rgba(13, 39, 70, 0.1);
}

main.page-main:not(#home) .cta-band.cta-band-soft,
.contact-page .contact-language-band,
.services-page .services-language-band {
  border-color: rgba(217, 174, 93, 0.16);
  background: linear-gradient(180deg, rgba(246, 241, 232, 0.98), rgba(240, 234, 224, 0.96));
  box-shadow: none;
}

main.page-main:not(#home) .cta-band.cta-band-soft h2,
main.page-main:not(#home) .cta-band.cta-band-soft p,
main.page-main:not(#home) .cta-band.cta-band-soft .eyebrow,
.contact-page .contact-language-band h2,
.contact-page .contact-language-band p,
.services-page .services-language-band h2,
.services-page .services-language-band p {
  color: var(--ink);
}

.services-page .services-lines-grid,
.services-page .services-proof-grid,
.services-page .services-tiers-grid,
.service-detail-page .service-diagnostic-grid,
.service-detail-page .service-process-grid,
.service-detail-page .service-proof-grid,
.approach-page .approach-models-grid,
.approach-page .approach-choice-grid,
.approach-page .approach-principles-grid,
.growth-os-page .growth-os-visibility-grid,
.contact-page .contact-info-grid,
.contact-page .contact-tiers-grid {
  gap: 1rem;
}

.services-page .services-lines-grid .service-link-card,
.insights-page .insights-featured-grid .content-card,
.insights-page .archive-group-grid .content-card,
.insights-page .insights-case-grid .content-card {
  box-shadow: none;
}

.services-page .services-lines-grid .service-link-card:nth-child(2n),
.services-page .services-proof-grid .content-card:not(.proof-result-card),
.contact-page .contact-info-grid .content-card:nth-child(even),
.contact-page .contact-tiers-grid .content-card:nth-child(even),
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(even) {
  background: rgba(249, 245, 237, 0.66);
}

.services-page .services-lines-grid .service-link-card:nth-child(3n + 1),
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(1),
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(4) {
  background: rgba(255, 253, 248, 0.82);
}

.services-page .proof-result-card,
.service-detail-page .service-proof-grid .authority-item-featured,
.insights-page .insights-featured-card,
.insights-page .insights-case-featured,
.contact-page .contact-guidance-card {
  box-shadow: 0 14px 26px rgba(13, 39, 70, 0.045);
}

.insights-page .archive-group {
  gap: 1.15rem 1.9rem;
}

.insights-page .archive-group + .archive-group {
  padding-top: 2.35rem;
}

.insights-page .archive-group-grid .content-card {
  padding: 1.35rem 1.35rem 1.45rem;
}

.insights-page .archive-group-grid .content-card:first-child {
  background: rgba(255, 253, 248, 0.9);
}

.faq-page .faq-groups {
  gap: 2.7rem;
}

/* === Services page focused refinement: May 2026 === */
.services-page > .page-hero.services-hero {
  align-items: end;
  gap: clamp(2.4rem, 4.6vw, 5rem);
  padding-bottom: clamp(3rem, 5vw, 4.35rem);
}

.services-page .services-hero-copy {
  max-width: 34.5rem;
  padding-bottom: 0.35rem;
}

.services-page .services-hero h1 {
  max-width: 9.2ch;
  margin-bottom: 1.3rem;
}

.services-page .services-hero .page-lede {
  max-width: 33rem;
  line-height: 1.76;
}

.services-page .services-hero-panel {
  max-width: 31rem;
  padding: 1.55rem 1.55rem 1.45rem;
  background: rgba(250, 247, 240, 0.88);
}

.services-page .services-hero-note {
  max-width: 27rem;
  margin-top: 0.9rem;
}

.services-page .services-hero-framework {
  margin-top: 1.3rem;
  padding-top: 1.15rem;
}

.services-page .services-logic {
  gap: clamp(3rem, 4.6vw, 4.8rem);
  padding-top: 2.9rem;
  padding-bottom: 1.85rem;
  margin-top: 1.5rem;
}

.services-page .services-logic h2 {
  max-width: 10.8ch;
}

.services-page .services-logic > p {
  max-width: 32.5rem;
  padding-top: 1.05rem;
}

.services-page .services-lines-heading {
  margin-top: 2.25rem;
  margin-bottom: 1.2rem;
}

.services-page .services-lines-heading .section-guidance {
  max-width: 34rem;
}

.services-page .services-lines-grid {
  gap: 1.15rem;
  margin-top: 0.15rem;
}

.services-page .linked-card.service-link-card {
  padding: 1.48rem 1.38rem 1.32rem;
  border-color: rgba(19, 46, 79, 0.08);
}

.services-page .services-lines-grid .service-link-card:nth-child(2n) {
  background: rgba(249, 245, 237, 0.56);
}

.services-page .services-lines-grid .service-link-card:nth-child(3n + 1) {
  background: rgba(255, 253, 248, 0.9);
}

.services-page .service-link-card h3 {
  max-width: 15ch;
}

.services-page .service-link-card p:not(.service-link-arrow) + p:not(.service-link-arrow) {
  margin-top: 0.75rem;
}

.services-page .service-link-arrow {
  margin-top: 1.05rem;
}

.services-page .services-connect-shell {
  margin-top: 2.5rem;
}

.services-page .visual-panel-services {
  gap: clamp(2.6rem, 4vw, 4.5rem);
  padding: 2.8rem 2.55rem 2.7rem;
  background: rgba(248, 244, 236, 0.62);
}

.services-page .visual-panel-services .visual-panel-copy {
  max-width: 31rem;
}

.services-page .visual-panel-services h2 {
  max-width: 9.5ch;
}

.services-page .service-cluster {
  gap: 0.9rem;
  padding-top: 0.1rem;
}

.services-page .service-cluster span {
  min-height: 3rem;
  padding: 0.8rem 0.95rem;
  background: rgba(255, 253, 248, 0.88);
}

.services-page .services-tiers-heading {
  margin-top: 2.9rem;
  padding-top: 3rem;
}

.services-page .services-tiers-grid {
  gap: 1.05rem;
}

.services-page .services-tiers-grid .content-card {
  padding: 1.72rem 1.48rem 1.62rem;
}

.services-page .services-tiers-grid h3 {
  max-width: 13ch;
}

.services-page .price-tag {
  margin-top: 1.05rem !important;
}

.services-page .services-proof-heading {
  margin-top: 2.5rem;
  padding-top: 3rem;
}

.services-page .services-proof-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr) minmax(0, 0.95fr);
  gap: 1.05rem;
}

.services-page .services-proof-grid .content-card {
  padding: 1.6rem 1.45rem 1.42rem;
}

.services-page .proof-result-card {
  padding: 1.8rem 1.55rem 1.55rem;
}

.services-page .services-language-band {
  margin-top: 3rem;
  gap: clamp(2.3rem, 3.8vw, 3.3rem);
  padding: 3rem 2.45rem;
}

.services-page .services-language-band h2 {
  max-width: 11ch;
}

.services-page .services-final-band {
  margin-top: 1.6rem;
  padding-top: 2.65rem;
  padding-bottom: 2.65rem;
}

@media (max-width: 1100px) {
  .services-page > .page-hero.services-hero {
    padding-bottom: 2.7rem;
    gap: 2rem;
  }

  .services-page .services-logic,
  .services-page .visual-panel-services,
  .services-page .services-language-band,
  .services-page .services-final-band {
    gap: 2rem;
  }

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

  .services-page .proof-result-card {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .services-page > .page-hero.services-hero {
    padding-bottom: 2.2rem;
  }

  .services-page .services-logic {
    padding-top: 2.15rem;
    padding-bottom: 1.4rem;
    margin-top: 1rem;
  }

  .services-page .services-lines-heading,
  .services-page .services-tiers-heading,
  .services-page .services-proof-heading {
    margin-top: 1.9rem;
  }

  .services-page .services-connect-shell,
  .services-page .services-language-band {
    margin-top: 2.15rem;
  }

  .services-page .visual-panel-services,
  .services-page .services-language-band,
  .services-page .services-final-band {
    padding: 2rem 1.45rem;
  }

  .services-page .services-proof-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .services-page .proof-result-card {
    grid-column: auto;
  }
}

/* === Services page optical polish: May 2026 === */
.services-page > .page-hero.services-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
  align-items: start;
  gap: clamp(1.8rem, 3vw, 3rem);
  padding-bottom: clamp(2.4rem, 4vw, 3.35rem);
}

.services-page .services-hero-copy {
  max-width: 31.5rem;
  padding-bottom: 0;
}

.services-page .services-hero h1 {
  max-width: 8.6ch;
  font-size: clamp(3.9rem, 7vw, 6.6rem);
  line-height: 0.92;
}

.services-page .services-hero .page-lede {
  max-width: 30rem;
  font-size: 1.02rem;
  line-height: 1.72;
}

.services-page .services-hero-panel {
  justify-self: stretch;
  max-width: none;
  width: 100%;
  padding: 1.55rem 1.35rem 1.3rem;
}

.services-page .services-hero-map {
  gap: 0.55rem;
}

.services-page .services-hero-map span {
  padding-inline: 0.95rem;
}

.services-page .services-logic {
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: clamp(2rem, 3.4vw, 3rem);
  padding-top: 2rem;
  padding-bottom: 1rem;
  margin-top: 0.8rem;
}

.services-page .services-logic h2 {
  max-width: 12.4ch;
  font-size: clamp(2rem, 3.4vw, 3.15rem);
  line-height: 0.96;
}

.services-page .services-logic > p {
  max-width: 34rem;
  padding-top: 0.15rem;
  font-size: 1rem;
  line-height: 1.72;
}

.services-page .services-lines-heading,
.services-page .services-tiers-heading,
.services-page .services-proof-heading {
  max-width: 54rem;
  margin-inline: auto;
  text-align: center;
}

.services-page .services-lines-heading h2,
.services-page .services-tiers-heading h2,
.services-page .services-proof-heading h2 {
  margin-inline: auto;
  max-width: 12.5ch;
  font-size: clamp(2.45rem, 4.6vw, 4.05rem);
  line-height: 0.94;
}

.services-page .services-lines-heading .section-guidance,
.services-page .services-tiers-heading .section-guidance,
.services-page .services-proof-heading .section-guidance {
  max-width: 38rem;
  margin-inline: auto;
  font-size: 1rem;
  line-height: 1.7;
}

.services-page .services-lines-heading {
  margin-top: 1.8rem;
  margin-bottom: 1.5rem;
}

.services-page .services-lines-grid {
  gap: 1rem;
}

.services-page .service-link-card h3 {
  font-size: 1.18rem;
}

.services-page .service-link-card p:not(.service-link-arrow) {
  font-size: 0.94rem;
  line-height: 1.66;
}

.services-page .services-connect-shell,
.services-page .services-connect-shell.visual-gallery,
.services-page .services-connect-shell.visual-gallery-single {
  background: transparent;
  padding-inline: 0;
}

.services-page .visual-panel-services {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: clamp(2rem, 3vw, 3.2rem);
  padding: 2.4rem 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.services-page .visual-panel-services .visual-panel-copy {
  max-width: 32rem;
}

.services-page .visual-panel-services h2 {
  max-width: 8.6ch;
  font-size: clamp(2.5rem, 4.8vw, 4.2rem);
}

.services-page .visual-panel-services .page-lede {
  max-width: 26rem;
}

.services-page .service-cluster {
  align-self: center;
  gap: 0.85rem 0.9rem;
}

.services-page .service-cluster span {
  gap: 0.72rem;
  min-height: 3.05rem;
  padding: 0.78rem 0.95rem;
}

.services-page .service-cluster span::before {
  margin-right: 0;
  flex: 0 0 auto;
}

.services-page .services-tiers-heading {
  margin-top: 2.45rem;
  padding-top: 2.5rem;
}

.services-page .services-tiers-heading h2 {
  max-width: 11.6ch;
}

.services-page .services-tiers-grid {
  margin-top: 0.25rem;
}

.services-page .services-proof-heading {
  margin-top: 2.2rem;
  padding-top: 2.55rem;
}

.services-page .services-proof-heading h2 {
  max-width: 11.2ch;
}

.services-page .services-proof-grid {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}

.services-page .proof-result-card {
  grid-row: span 2;
  min-height: 100%;
}

.services-page .services-language-band {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: clamp(1.8rem, 3vw, 2.7rem);
  padding: 2.45rem 2.05rem;
}

.services-page .services-language-band h2 {
  max-width: 12.6ch;
  font-size: clamp(2.35rem, 4.3vw, 3.75rem);
  line-height: 0.96;
}

.services-page .services-language-band .page-lede {
  font-size: 1.02rem;
  line-height: 1.72;
}

.services-page .services-final-band {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: clamp(1.6rem, 3vw, 2.6rem);
}

.services-page .services-final-band h2 {
  max-width: 10.4ch;
  font-size: clamp(2.45rem, 4.6vw, 4.15rem);
  line-height: 0.95;
}

.services-page .services-final-band p {
  font-size: 1rem;
  line-height: 1.68;
}

@media (max-width: 1100px) {
  .services-page > .page-hero.services-hero,
  .services-page .services-logic,
  .services-page .visual-panel-services,
  .services-page .services-language-band,
  .services-page .services-final-band {
    grid-template-columns: 1fr;
  }

  .services-page .services-lines-heading,
  .services-page .services-tiers-heading,
  .services-page .services-proof-heading {
    text-align: left;
  }

  .services-page .services-lines-heading h2,
  .services-page .services-tiers-heading h2,
  .services-page .services-proof-heading h2,
  .services-page .services-lines-heading .section-guidance,
  .services-page .services-tiers-heading .section-guidance,
  .services-page .services-proof-heading .section-guidance {
    margin-inline: 0;
  }
}

@media (max-width: 820px) {
  .services-page .services-proof-grid {
    grid-template-columns: 1fr;
  }

  .services-page .proof-result-card {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .services-page .services-hero h1,
  .services-page .services-lines-heading h2,
  .services-page .services-tiers-heading h2,
  .services-page .services-proof-heading h2,
  .services-page .services-language-band h2,
  .services-page .services-final-band h2 {
    max-width: none;
    font-size: clamp(2.35rem, 12vw, 3.8rem);
  }

  .services-page .services-logic h2 {
    max-width: none;
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }
}

/* === Final ecosystem refinement pass: May 2026 === */
main.page-main:not(#home) .page-hero {
  max-width: 62rem;
  padding-top: clamp(3.8rem, 5.6vw, 5.2rem);
  padding-bottom: clamp(2.8rem, 4vw, 3.45rem);
}

main.page-main:not(#home) .page-hero .eyebrow {
  margin-bottom: 0.85rem;
}

main.page-main:not(#home) .page-hero h1 {
  max-width: 10.6ch;
  margin-bottom: 1.15rem;
  line-height: 0.94;
}

main.page-main:not(#home) .page-hero .page-lede {
  max-width: 40rem;
  font-size: 1.03rem;
  line-height: 1.82;
}

main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .faq-list,
main.page-main:not(#home) > .visual-gallery,
main.page-main:not(#home) > .bilingual-band,
main.page-main:not(#home) > .content-grid {
  margin-bottom: clamp(5.2rem, 7vw, 6.85rem);
}

main.page-main:not(#home) .section-heading {
  max-width: 52rem;
  margin-bottom: 1.9rem;
}

main.page-main:not(#home) .section-heading h2 {
  max-width: 11.3ch;
}

main.page-main:not(#home) .section-heading .page-lede,
main.page-main:not(#home) .section-heading .section-guidance {
  max-width: 38rem;
  line-height: 1.76;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .authority-item,
main.page-main:not(#home) .timeline article,
main.page-main:not(#home) .offer-card,
main.page-main:not(#home) .visual-panel,
main.page-main:not(#home) .contact-form {
  border-radius: 20px;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .timeline article {
  background: rgba(255, 253, 248, 0.74);
}

main.page-main:not(#home) .content-card:nth-child(even),
main.page-main:not(#home) .timeline article:nth-child(even) {
  background: rgba(249, 245, 237, 0.62);
}

main.page-main:not(#home) .cta-band {
  padding: 2.45rem 2.15rem;
  border-radius: 28px;
}

main.page-main:not(#home) .cta-band h2 {
  max-width: 10.1ch;
}

main.page-main:not(#home) .hero-actions {
  gap: 0.9rem;
}

main.page-main:not(#home) .service-family-nav,
main.page-main:not(#home) .detail-service-nav {
  gap: 0.65rem;
  margin-bottom: 2.45rem;
}

.services-page > .page-hero.services-hero,
.service-detail-page > .page-hero.service-detail-hero,
.growth-os-page .growth-os-hero {
  align-items: start;
  gap: clamp(2.4rem, 3.8vw, 4rem);
}

.services-page .services-hero-copy,
.service-detail-page .service-detail-hero-copy,
.growth-os-page .growth-os-hero-copy {
  max-width: 35rem;
}

.services-page .services-hero-panel,
.service-detail-page .service-detail-hero-panel,
.growth-os-page .growth-os-hero-panel {
  align-self: stretch;
}

.services-page .services-logic,
.service-detail-page .service-role-band,
.approach-page .approach-constant-band,
.approach-page .approach-choice-band,
.about-page .about-why-band,
.about-page .about-founder-band,
.about-page .about-region-band,
.growth-os-page .growth-os-problem,
.growth-os-page .growth-os-why,
.contact-page .contact-final-cta,
.faq-page .faq-final-cta {
  gap: clamp(2.4rem, 3.8vw, 4rem);
}

.services-page .services-lines-heading,
.services-page .services-tiers-heading,
.services-page .services-proof-heading,
.approach-page .approach-principles-heading,
.about-page .about-beliefs-heading,
.faq-page .faq-groups-heading,
.contact-page .contact-capture-heading,
.contact-page .contact-tiers-heading,
.growth-os-page .growth-os-heading,
.insights-page .insights-articles-heading,
.insights-page .insights-case-heading {
  max-width: 55rem;
}

.services-page .services-lines-grid,
.services-page .services-proof-grid,
.services-page .services-tiers-grid,
.service-detail-page .service-diagnostic-grid,
.service-detail-page .service-process-grid,
.service-detail-page .service-proof-grid,
.approach-page .approach-models-grid,
.approach-page .approach-choice-grid,
.approach-page .approach-principles-grid,
.about-page .about-work-grid,
.about-page .about-founder-grid,
.growth-os-page .growth-os-visibility-grid,
.contact-page .contact-info-grid,
.contact-page .contact-tiers-grid,
.insights-page .insights-featured-grid,
.insights-page .archive-group-grid,
.insights-page .insights-case-grid {
  gap: 1.05rem;
}

.services-page .services-lines-grid .service-link-card,
.service-detail-page .service-proof-grid .authority-item,
.approach-page .approach-model-card,
.approach-page .approach-choice-grid article,
.approach-page .approach-principles-grid .authority-item,
.about-page .about-work-grid .content-card,
.about-page .about-founder-card,
.growth-os-page .growth-os-visibility-grid .content-card,
.contact-page .contact-info-grid .content-card,
.contact-page .contact-tiers-grid .content-card,
.insights-page .archive-group-grid .content-card,
.insights-page .insights-case-grid .content-card {
  box-shadow: none;
}

.services-page .services-lines-grid .service-link-card:nth-child(3n + 1),
.approach-page .approach-model-card-featured,
.about-page .about-identity-card-featured,
.about-page .about-work-card-featured,
.contact-page .contact-guidance-card,
.insights-page .insights-featured-card,
.insights-page .insights-case-featured,
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(1) {
  box-shadow: 0 14px 28px rgba(13, 39, 70, 0.045);
}

.services-page .visual-panel-services,
.about-page .about-system-panel,
.approach-page .approach-outcome-panel,
.growth-os-page .growth-os-insight-panel,
.growth-os-page .growth-os-connect-panel,
.contact-page .contact-tool-frame,
.contact-page .contact-language-band,
.services-page .services-language-band {
  background: rgba(248, 244, 236, 0.68);
  box-shadow: none;
}

.about-page .about-principles {
  gap: 0.3rem 1.75rem;
}

.about-page .about-principle {
  padding: 1.2rem 0;
}

.approach-page .approach-outcome-panel {
  padding: 2.35rem 2.15rem 2.3rem;
}

.approach-page .approach-outcome-cluster {
  gap: 0.85rem;
}

.faq-page .faq-groups {
  gap: 2.5rem;
}

.faq-page .faq-group + .faq-group {
  padding-top: 2rem;
}

.faq-page .faq-item h3 {
  margin-bottom: 0.62rem;
}

.insights-page .archive-groups {
  gap: 3rem;
}

.insights-page .archive-group {
  gap: 1.15rem 1.8rem;
}

.insights-page .archive-group-heading {
  max-width: 19rem;
}

.insights-page .insights-case-studies {
  margin-top: 2rem;
  padding-top: 2.55rem;
}

.growth-os-page .growth-os-insight-shell,
.growth-os-page .growth-os-connect-shell {
  margin-top: 2.35rem;
}

.contact-page .contact-capture-shell {
  gap: clamp(1.8rem, 3vw, 2.55rem);
}

.contact-page .contact-tool-frame,
.contact-page .contact-form {
  padding: 1.6rem 1.5rem 1.55rem;
}

.contact-page .contact-info-grid {
  margin-top: 2.35rem;
}

@media (max-width: 1100px) {
  main.page-main:not(#home) > .section-heading,
  main.page-main:not(#home) > .cta-band,
  main.page-main:not(#home) > .faq-list,
  main.page-main:not(#home) > .visual-gallery,
  main.page-main:not(#home) > .bilingual-band,
  main.page-main:not(#home) > .content-grid {
    margin-bottom: clamp(4.6rem, 7vw, 5.9rem);
  }

  .services-page .services-lines-heading,
  .services-page .services-tiers-heading,
  .services-page .services-proof-heading,
  .contact-page .contact-capture-heading,
  .contact-page .contact-tiers-heading {
    text-align: left;
    margin-inline: 0;
  }

  .services-page .services-lines-heading h2,
  .services-page .services-tiers-heading h2,
  .services-page .services-proof-heading h2,
  .services-page .services-lines-heading .section-guidance,
  .services-page .services-tiers-heading .section-guidance,
  .services-page .services-proof-heading .section-guidance {
    margin-inline: 0;
  }

  .insights-page .insights-featured-grid,
  .insights-page .insights-case-grid,
  .approach-page .approach-models-grid,
  .approach-page .approach-choice-grid,
  .approach-page .approach-principles-grid,
  .growth-os-page .growth-os-visibility-grid,
  .contact-page .contact-info-grid,
  .contact-page .contact-tiers-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-page .insights-featured-card,
  .insights-page .insights-case-featured,
  .growth-os-page .growth-os-visibility-grid .content-card:nth-child(1) {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  main.page-main:not(#home) .page-hero {
    padding-top: 3.15rem;
    padding-bottom: 2.85rem;
  }

  main.page-main:not(#home) .page-hero h1 {
    max-width: none;
    font-size: clamp(2.55rem, 11vw, 4rem);
  }

  main.page-main:not(#home) > .section-heading,
  main.page-main:not(#home) > .cta-band,
  main.page-main:not(#home) > .faq-list,
  main.page-main:not(#home) > .visual-gallery,
  main.page-main:not(#home) > .bilingual-band,
  main.page-main:not(#home) > .content-grid {
    margin-bottom: clamp(3.6rem, 9vw, 4.7rem);
  }

  .insights-page .insights-featured-grid,
  .insights-page .archive-group-grid,
  .insights-page .insights-case-grid,
  .approach-page .approach-models-grid,
  .approach-page .approach-choice-grid,
  .approach-page .approach-principles-grid,
  .growth-os-page .growth-os-visibility-grid,
  .contact-page .contact-info-grid,
  .contact-page .contact-tiers-grid {
    grid-template-columns: 1fr;
  }

  .insights-page .insights-featured-card,
  .insights-page .insights-case-featured,
  .growth-os-page .growth-os-visibility-grid .content-card:nth-child(1) {
    grid-column: auto;
  }
}

/* === Homepage + Services final optical correction: May 2026 === */
.lang-switch a:nth-of-type(n + 3),
.lang-switch .lang-switch-separator:nth-of-type(n + 2) {
  display: none;
}

main#home .home-template-hero {
  display: block;
  min-height: auto;
  padding-top: calc(0.9rem + var(--hero-header-overlap) + clamp(2.4rem, 4vw, 3.4rem));
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: calc(-1 * (var(--hero-header-overlap) + clamp(2.4rem, 4vw, 3.4rem)));
  padding-inline: 0;
  border-top: 0 !important;
}

main#home .home-template-hero-shell {
  width: 100%;
  max-width: none;
  min-height: clamp(43rem, 78vh, 50rem);
  margin-inline: 0;
  border-radius: 0;
  border-top: 0 !important;
  box-shadow: none;
}

main#home .home-template-hero-surface {
  width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
  grid-template-columns: minmax(0, 1fr) minmax(25rem, 0.92fr);
  gap: clamp(2.2rem, 3.5vw, 4rem);
  min-height: clamp(43rem, 77vh, 50rem);
  padding: clamp(6.1rem, 8.5vw, 7.25rem) clamp(2.55rem, 4vw, 3.7rem) clamp(3rem, 4vw, 3.7rem);
  align-items: center;
  border-top: 0 !important;
}

main#home .home-template-hero .hero-copy {
  max-width: 37.5rem;
  align-self: center;
}

main#home .home-template-hero .hero-copy h1 {
  max-width: 7.3ch;
  font-size: clamp(3.2rem, 4.65vw, 4.9rem);
}

main#home .home-template-hero .lede {
  max-width: 33rem;
  font-size: 1.03rem;
}

main#home .home-template-hero .hero-actions {
  margin-top: 2rem;
}

main#home .home-template-hero-panel {
  justify-self: end;
  align-self: center;
  width: min(100%, 29rem);
  padding: 1.45rem 1.35rem 1.2rem;
}

main#home .home-template-problem {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(2rem, 3.4vw, 3.4rem);
  padding-top: 4.35rem;
  padding-bottom: 3rem;
}

main#home .home-template-problem-intro h2 {
  max-width: 11.2ch;
  font-size: clamp(2.1rem, 3vw, 2.95rem);
  line-height: 1.02;
  text-wrap: balance;
}

main#home .home-template-pause p {
  max-width: 25ch;
  font-size: clamp(1.75rem, 2.7vw, 2.35rem);
}

main#home .home-template-pause {
  max-width: min(1020px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 2.2rem 3.15rem;
  border-radius: 26px;
  background: linear-gradient(180deg, #173255, #1c3a60);
}

main#home .home-template-pause p {
  max-width: 24ch;
  color: #f5f1e8;
}

main#home .home-template-system-copy {
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(19rem, 32%) minmax(0, 68%);
  grid-template-areas:
    "eyebrow title"
    "lede title";
  grid-auto-rows: min-content;
  gap: 0.38rem 1.9rem;
  align-items: start;
  justify-content: stretch;
}

main#home .home-template-system-copy > .eyebrow {
  grid-area: eyebrow;
  align-self: start;
  margin: 0;
}

main#home .home-template-system-copy h2 {
  grid-area: title;
  max-width: none;
  width: 100%;
  font-size: clamp(1.96rem, 2.58vw, 2.54rem);
  line-height: 0.99;
  align-self: start;
  text-wrap: pretty;
  justify-self: stretch;
}

main#home .home-template-system-copy .page-lede {
  grid-area: lede;
  max-width: 24.75rem;
  padding-top: 0;
  align-self: start;
  margin: 0;
}

main#home .home-template-growth-levels {
  padding-top: 4.8rem;
  padding-bottom: 4.7rem;
}

main#home .home-template-growth-levels-head {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 0.85rem 2.1rem;
  align-items: center;
}

main#home .home-template-growth-levels-head .section-heading h2 {
  max-width: 10.1ch;
  font-size: clamp(2.15rem, 3.1vw, 2.95rem);
}

main#home .home-template-growth-levels-head .page-lede {
  max-width: 30rem;
  padding-top: 0;
  align-self: center;
  margin: 0;
}

main#home .home-template-models-shell,
main#home .home-template-proof-featured,
main#home .home-template-final-cta,
main#home .home-template-growth-os-ui {
  color: #f5f1e8;
}

main#home .home-template-models-shell .eyebrow,
main#home .home-template-proof-featured .eyebrow,
main#home .home-template-final-cta .eyebrow,
main#home .home-template-growth-os-ui .eyebrow {
  color: rgba(217, 174, 93, 0.94);
}

main#home .home-template-models-shell h2,
main#home .home-template-models-shell h3,
main#home .home-template-proof-featured blockquote,
main#home .home-template-final-cta .final-cta-title,
main#home .home-template-growth-os-ui strong,
main#home .home-template-growth-os-ui span {
  color: #f5f1e8;
}

main#home .home-template-models-shell p:not(.eyebrow):not(.offer-tag),
main#home .home-template-proof-featured p:not(.eyebrow):not(.authority-outcome),
main#home .home-template-final-cta .contact-actions p,
main#home .home-template-growth-os-ui p:not(.eyebrow) {
  color: rgba(245, 241, 232, 0.82);
}

main#home .home-template-models-shell {
  gap: 1.9rem;
  padding: 2.3rem 2.15rem 2.35rem;
}

main#home .home-template-models-copy {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  grid-template-areas:
    "eyebrow eyebrow"
    "title lede";
  gap: 0.55rem 2.75rem;
  align-items: start;
}

main#home .home-template-models-copy > .eyebrow {
  grid-area: eyebrow;
  margin: 0;
}

main#home .home-template-models-copy h2 {
  grid-area: title;
  max-width: 12.2ch;
  font-size: clamp(1.9rem, 2.6vw, 2.45rem);
  color: #f5f1e8;
}

main#home .home-template-models-copy .page-lede {
  grid-area: lede;
  max-width: 25rem;
  padding-top: 0.35rem;
  margin: 0;
  color: rgba(245, 241, 232, 0.82);
}

main#home .home-template-model-grid {
  align-items: stretch;
}

main#home .home-template-model-grid .offer-card {
  grid-template-columns: 1fr;
  grid-auto-rows: min-content;
  align-content: start;
  min-height: 100%;
  gap: 0.55rem;
  padding: 1.5rem 1.28rem 1.45rem;
  background: rgba(255, 255, 255, 0.1);
}

main#home .home-template-model-grid .offer-card p:not(.offer-tag) {
  grid-column: 1;
  color: rgba(245, 241, 232, 0.76);
}

main#home .home-template-model-grid .offer-card .offer-tag,
main#home .home-template-model-grid .offer-card h3 {
  grid-column: 1;
}

main#home .home-template-model-grid .offer-card .offer-tag {
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
  hyphens: none;
}

main#home .home-template-model-grid .offer-card.featured h3,
main#home .home-template-model-grid .offer-card.featured p,
main#home .home-template-model-grid .offer-card.featured .offer-tag {
  color: #163154;
}

main#home .home-template-model-grid .offer-card .offer-tag {
  color: rgba(245, 241, 232, 0.72);
  opacity: 1;
}

main#home .home-template-model-grid .offer-card h3 {
  max-width: 13ch;
  font-size: 1.16rem;
  line-height: 1.14;
}

main#home .home-template-proof {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(1.8rem, 3vw, 2.8rem);
  padding-top: 4.8rem;
  padding-bottom: 5rem;
}

main#home .home-template-proof-copy h2 {
  max-width: 8.1ch;
  font-size: clamp(2.15rem, 3.2vw, 2.95rem);
}

main#home .home-template-proof-layout {
  grid-template-columns: 1fr;
  gap: 1rem;
}

main#home .home-template-proof-featured {
  grid-row: auto;
  padding: 1.55rem 1.5rem 1.6rem;
}

main#home .home-template-final-cta .final-cta-title {
  max-width: 12.8ch;
  font-size: clamp(2.05rem, 3vw, 2.7rem);
  color: #f5f1e8;
}

main#home .home-template-final-cta {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: center;
}

main#home .home-template-final-cta .contact-actions {
  align-self: center;
}

main#home .home-template-final-cta .contact-actions p {
  font-size: 1.06rem;
  line-height: 1.74;
  color: rgba(245, 241, 232, 0.82);
}

.services-page > .page-hero.services-hero {
  max-width: none;
  grid-template-columns: minmax(0, 0.98fr) minmax(24rem, 1.02fr);
  align-items: start;
  gap: clamp(1.15rem, 2vw, 1.9rem);
  padding-top: 2.7rem;
  padding-bottom: 1.7rem;
}

.services-page .services-hero-copy {
  max-width: 35rem;
}

.services-page .services-hero h1 {
  max-width: 6.95ch;
  font-size: clamp(2.95rem, 4.45vw, 4.65rem);
}

.services-page .services-hero .page-lede {
  max-width: 31rem;
  font-size: 1rem;
  line-height: 1.72;
}

.services-page .services-hero-panel {
  align-self: stretch;
  padding: 1.35rem 1.15rem 1rem;
}

.services-page .services-hero-framework-track {
  flex-wrap: nowrap;
}

.services-page .services-logic {
  gap: clamp(1.35rem, 2.3vw, 2rem);
  padding-top: 0.65rem;
  padding-bottom: 0;
  margin-top: 0;
}

.services-page .services-logic h2 {
  max-width: 12.8ch;
  font-size: clamp(1.75rem, 2.55vw, 2.35rem);
  line-height: 1.05;
}

.services-page .services-logic > p {
  max-width: 35rem;
  padding-top: 0.1rem;
  font-size: 1rem;
  line-height: 1.75;
}

.services-page .services-lines-heading,
.services-page .services-tiers-heading {
  display: grid;
  justify-items: center;
  row-gap: 0.8rem;
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}

.services-page .services-lines-heading h2,
.services-page .services-tiers-heading h2 {
  max-width: 10.2ch;
  font-size: clamp(1.95rem, 3.45vw, 2.8rem);
  line-height: 1.04;
}

.services-page .services-lines-heading .section-guidance,
.services-page .services-tiers-heading .section-guidance {
  max-width: 36rem;
  font-size: 1rem;
  line-height: 1.72;
}

.services-page .services-lines-grid {
  gap: 1.15rem;
}

.services-page .services-connect-shell::before,
.page-main > .services-connect-shell::before {
  display: none;
}

.services-page .services-connect-shell,
.services-page .services-connect-shell.visual-gallery,
.services-page .services-connect-shell.visual-gallery-single {
  padding-top: 0.2rem;
  padding-bottom: 0.35rem;
  background: transparent;
  box-shadow: none;
  border: 0;
}

.services-page .visual-panel-services {
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.96fr);
  gap: clamp(1.5rem, 2.35vw, 2.15rem);
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.services-page .visual-panel-services h2 {
  max-width: 8.4ch;
  font-size: clamp(1.95rem, 3.4vw, 2.8rem);
}

.services-page .visual-panel-services .page-lede {
  max-width: 28rem;
  line-height: 1.72;
}

.services-page .service-cluster {
  gap: 0.8rem 0.95rem;
}

.services-page .service-cluster span {
  gap: 0.92rem;
  min-height: 3.15rem;
  padding: 0.78rem 0.98rem;
}

.services-page .service-cluster span::before {
  margin-right: 0;
  flex: 0 0 auto;
}

.services-page .services-tiers-heading {
  margin-top: 1.55rem;
  padding-top: 1.75rem;
  margin-bottom: 0.6rem;
}

.services-page .services-tiers-grid {
  margin-top: 0;
}

.services-page .services-proof-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(1.6rem, 2.6vw, 2.35rem);
  align-items: start;
  padding-top: 1.85rem;
  padding-bottom: 0.35rem;
}

.services-page .services-proof-heading {
  max-width: 24rem;
  margin: 0;
  padding-top: 0.2rem;
  text-align: left;
}

.services-page .services-proof-heading h2 {
  max-width: 8.8ch;
  margin-inline: 0;
  font-size: clamp(2.2rem, 3.9vw, 3.4rem);
}

.services-page .services-proof-heading .section-guidance {
  max-width: 18rem;
  margin-inline: 0;
}

.services-page .services-proof-grid {
  display: grid;
  grid-template-columns: 1fr !important;
  gap: 1rem;
  margin-top: 0;
}

.services-page .proof-result-card {
  grid-row: auto;
}

.services-page .services-language-band {
  gap: clamp(1.5rem, 2.3vw, 2rem);
}

.services-page .services-language-band h2 {
  max-width: 12.8ch;
  font-size: clamp(1.8rem, 3.1vw, 2.45rem);
}

.services-page .services-final-band h2 {
  max-width: 12.3ch;
  font-size: clamp(1.9rem, 3.2vw, 2.55rem);
}

@media (max-width: 1100px) {
  .services-page .services-proof-shell {
    grid-template-columns: 1fr;
    padding-top: 2rem;
  }

  .services-page .services-proof-heading,
  .services-page .services-proof-heading .section-guidance,
  .services-page .services-proof-heading h2 {
    max-width: none;
  }
}

/* === Insights page focused refinement: May 2026 === */
.insights-page .insights-hero {
  max-width: 62rem;
  padding-top: 4.35rem;
  padding-bottom: 3.9rem;
}

.insights-page .insights-hero h1 {
  max-width: 10.6ch;
  margin-bottom: 1.3rem;
}

/* === Site-wide final alignment polish: May 2026 === */
main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .visual-gallery,
main.page-main:not(#home) > .bilingual-band,
main.page-main:not(#home) > .content-grid,
main.page-main:not(#home) > .faq-list {
  max-width: none;
}

main.page-main:not(#home) .section-heading {
  max-width: 50rem;
}

main.page-main:not(#home) .section-heading .page-lede,
main.page-main:not(#home) .section-heading .section-guidance {
  max-width: 37rem;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .authority-item {
  align-content: start;
}

.about-page .about-identity-band .about-identity-layout,
.about-page .about-work-grid,
.about-page .about-founder-grid {
  align-items: start;
}

.about-page .about-identity-band .section-heading,
.about-page .about-beliefs-heading,
.about-page .about-work-section .section-heading {
  max-width: 48rem;
}

.about-page .about-system-look .visual-panel-copy,
.about-page .about-region-section > div:first-child {
  max-width: 31rem;
}

.approach-page .approach-constant-band,
.approach-page .approach-choice-band,
.approach-page .approach-final-cta {
  align-items: start;
}

.approach-page .approach-outcome-shell .visual-panel,
.approach-page .approach-principles-section {
  align-items: start;
}

.approach-page .approach-models-grid,
.approach-page .approach-principles-grid {
  align-items: stretch;
}

.approach-page .approach-principles-heading,
.approach-page .approach-models-grid + .section-heading {
  max-width: 48rem;
}

.insights-page .insights-articles-heading,
.insights-page .insights-case-heading {
  max-width: 52rem;
}

.insights-page .archive-group {
  align-items: start;
}

.insights-page .archive-group-heading {
  max-width: 18rem;
  padding-top: 0.15rem;
}

.insights-page .archive-group-grid {
  align-items: start;
}

.faq-page .faq-groups-heading {
  max-width: 48rem;
}

.faq-page .faq-group {
  gap: 1rem;
}

.faq-page .faq-group .faq-list {
  gap: 0.9rem;
}

.contact-page .contact-capture-shell,
.contact-page .contact-final-cta {
  align-items: start;
}

.contact-page .contact-capture-heading,
.contact-page .contact-tiers-heading {
  max-width: 52rem;
}

.contact-page .contact-info-grid,
.contact-page .contact-tiers-grid {
  align-items: stretch;
}

.growth-os-page .growth-os-heading,
.growth-os-page .growth-os-problem,
.growth-os-page .growth-os-why,
.growth-os-page .growth-os-final-cta {
  align-items: start;
}

.growth-os-page .growth-os-heading {
  max-width: 52rem;
}

.growth-os-page .growth-os-connect-panel,
.growth-os-page .growth-os-insight-panel {
  align-items: start;
}

.service-detail-page .service-proof-heading,
.service-detail-page .service-role-band,
.service-detail-page .service-detail-cta {
  align-items: start;
}

.service-detail-page .service-proof-grid {
  align-items: stretch;
}

main#home .home-template-system {
  position: relative;
  padding-top: 2.75rem;
  padding-bottom: 5.35rem;
  border-top: 0;
}

main#home .home-template-system::before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(19, 46, 79, 0.08);
  margin: 0 0 2.45rem;
}

main#home .home-template-system-chain {
  margin-top: 0.1rem;
}

main#home .home-template-services-copy .page-lede {
  max-width: 23rem;
}

main#home .home-template-service-featured h3 {
  max-width: 16ch;
}

main#home .home-template-service-stack > article:not(.home-template-service-featured) {
  align-items: center;
}

main#home .home-template-service-stack > article p {
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .about-page .about-identity-band .about-identity-layout,
  .about-page .about-work-grid,
  .about-page .about-founder-grid,
  .approach-page .approach-constant-band,
  .approach-page .approach-choice-band,
  .contact-page .contact-capture-shell,
  .growth-os-page .growth-os-problem,
  .growth-os-page .growth-os-why,
  .service-detail-page .service-role-band {
    grid-template-columns: 1fr;
  }

  .insights-page .archive-group {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .insights-page .archive-group-heading {
    max-width: 32rem;
    padding-top: 0;
  }
}

.insights-page .insights-hero .page-lede {
  max-width: 38rem;
}

.insights-page .insights-articles-heading,
.insights-page .insights-case-heading {
  max-width: 56rem;
}

.insights-page .insights-articles-heading {
  margin-bottom: 1.35rem;
}

.insights-page .insights-featured-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.9fr) minmax(0, 0.95fr);
  gap: 1.15rem;
  margin-top: 0.4rem;
}

.insights-page .insights-featured-grid .content-card {
  padding: 1.45rem 1.45rem 1.52rem;
}

.insights-page .insights-featured-card {
  grid-column: span 2;
  padding: 1.8rem 1.7rem 1.85rem;
}

.insights-page .insights-featured-grid .content-card:not(.insights-featured-card):nth-child(2) {
  background: rgba(249, 245, 237, 0.56);
}

.insights-page .insights-featured-grid .content-card:not(.insights-featured-card):nth-child(n + 4) {
  background: rgba(255, 253, 248, 0.58);
}

.insights-page .insights-featured-grid h3,
.insights-page .archive-group-grid h3,
.insights-page .insights-case-grid h3 {
  max-width: 18ch;
  line-height: 1.16;
}

.insights-page .insights-featured-card h3 {
  max-width: 15ch;
  font-size: 1.42rem;
}

.insights-page .insights-archive-reveal {
  margin-top: 2.8rem;
  padding-top: 2.2rem;
}

.insights-page .insights-archive-reveal > summary {
  margin-bottom: 2.45rem;
}

.insights-page .archive-groups {
  gap: 3.45rem;
}

.insights-page .archive-group {
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: 1.35rem 2rem;
}

.insights-page .archive-group:nth-child(even) {
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
}

.insights-page .archive-group + .archive-group {
  padding-top: 2.85rem;
}

.insights-page .archive-group-heading {
  max-width: 19rem;
}

.insights-page .archive-group-grid {
  gap: 1.05rem;
}

.insights-page .archive-group-grid .content-card {
  padding: 1.32rem 1.32rem 1.42rem;
}

.insights-page .archive-group-grid .content-card:first-child {
  grid-column: span 2;
  padding: 1.6rem 1.5rem 1.62rem;
}

.insights-page .archive-group:nth-child(even) .archive-group-grid .content-card:first-child {
  grid-column: auto;
  background: rgba(249, 245, 237, 0.58);
}

.insights-page .archive-group:nth-child(even) .archive-group-grid .content-card:nth-child(2) {
  grid-column: span 2;
  padding: 1.58rem 1.48rem 1.6rem;
  background: rgba(255, 253, 248, 0.92);
  border-color: rgba(19, 46, 79, 0.1);
}

.insights-page .archive-group-grid .content-card:nth-child(n + 4) {
  background: rgba(255, 253, 248, 0.56);
}

.insights-page .insights-case-studies {
  margin-top: 2.7rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(19, 46, 79, 0.07);
}

.insights-page .insights-case-heading {
  margin-bottom: 1.35rem;
}

.insights-page .insights-case-grid {
  gap: 1.08rem;
}

.insights-page .insights-case-grid .content-card {
  padding: 1.45rem 1.42rem 1.5rem;
}

.insights-page .insights-case-featured {
  grid-column: span 2;
  padding: 1.78rem 1.7rem 1.82rem;
}

.insights-page .insights-case-grid .content-card:not(.insights-case-featured):nth-child(2),
.insights-page .insights-case-grid .content-card:not(.insights-case-featured):nth-child(5),
.insights-page .insights-case-grid .content-card:not(.insights-case-featured):nth-child(8) {
  background: rgba(249, 245, 237, 0.58);
}

.insights-page .insights-final-cta {
  margin-top: 2rem;
  padding-top: 2.55rem;
  padding-bottom: 2.55rem;
}

@media (max-width: 1100px) {
  .insights-page .insights-featured-grid,
  .insights-page .insights-case-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-page .insights-featured-card,
  .insights-page .insights-case-featured {
    grid-column: span 2;
  }

  .insights-page .archive-groups {
    gap: 3rem;
  }
}

@media (max-width: 720px) {
  .insights-page .insights-hero {
    padding-top: 3.15rem;
    padding-bottom: 3rem;
  }

  .insights-page .insights-articles-heading,
  .insights-page .insights-case-heading {
    margin-bottom: 1.05rem;
  }

  .insights-page .insights-featured-grid,
  .insights-page .insights-case-grid,
  .insights-page .archive-group-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .insights-page .insights-featured-card,
  .insights-page .archive-group-grid .content-card:first-child,
  .insights-page .archive-group:nth-child(even) .archive-group-grid .content-card:nth-child(2),
  .insights-page .insights-case-featured {
    grid-column: auto;
    padding: 1.48rem 1.35rem 1.5rem;
  }

  .insights-page .archive-groups {
    gap: 2.45rem;
  }

  .insights-page .archive-group + .archive-group,
  .insights-page .insights-case-studies {
    padding-top: 2.2rem;
  }

  .insights-page .insights-archive-reveal {
    margin-top: 2.2rem;
    padding-top: 1.9rem;
  }
}

/* === Growth OS page focused refinement: May 2026 === */
.growth-os-page .growth-os-hero {
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: clamp(2.8rem, 4.8vw, 5.25rem);
  align-items: end;
  padding-bottom: clamp(3rem, 5vw, 4.2rem);
}

.growth-os-page .growth-os-hero-copy {
  max-width: 35.5rem;
  padding-bottom: 0.25rem;
}

.growth-os-page .growth-os-hero h1 {
  max-width: 8.1ch;
  margin-bottom: 1.22rem;
}

.growth-os-page .growth-os-hero .page-lede {
  max-width: 34rem;
  line-height: 1.78;
}

.growth-os-page .growth-os-hero-panel {
  max-width: 30rem;
  gap: 1.15rem;
  padding: 1.6rem 1.55rem 1.55rem;
  background: rgba(250, 247, 240, 0.86);
}

.growth-os-page .growth-os-metrics {
  gap: 0.78rem;
}

.growth-os-page .growth-os-metrics span {
  min-height: 3.45rem;
  padding: 0.78rem 0.9rem;
  background: rgba(255, 255, 255, 0.84);
}

.growth-os-page .growth-os-hero-note {
  max-width: 27rem;
}

.growth-os-page .growth-os-problem {
  gap: clamp(2.8rem, 4.5vw, 4.6rem);
  padding-top: 2.35rem;
  padding-bottom: 1.65rem;
  margin-top: 1.4rem;
}

.growth-os-page .growth-os-problem h2 {
  max-width: 10.2ch;
}

.growth-os-page .growth-os-heading {
  max-width: 60rem;
}

.growth-os-page .growth-os-heading .section-guidance {
  max-width: 35rem;
}

.growth-os-page .growth-os-visibility-grid {
  gap: 1.05rem;
}

.growth-os-page .growth-os-visibility-grid .content-card {
  padding: 1.5rem 1.4rem 1.38rem;
}

.growth-os-page .growth-os-visibility-grid .content-card:nth-child(1) {
  grid-column: span 2;
  padding: 1.72rem 1.55rem 1.5rem;
  background: rgba(255, 253, 248, 0.9);
  border-color: rgba(19, 46, 79, 0.1);
}

.growth-os-page .growth-os-visibility-grid .content-card:nth-child(4) {
  background: rgba(249, 245, 237, 0.58);
}

.growth-os-page .growth-os-visibility-grid .content-card:nth-child(5),
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(6) {
  background: rgba(255, 253, 248, 0.56);
}

.growth-os-page .growth-os-visibility-grid h3 {
  max-width: 16ch;
}

.growth-os-page .growth-os-insight-shell {
  margin-top: 2.7rem;
}

.growth-os-page .growth-os-insight-panel,
.growth-os-page .growth-os-connect-panel {
  gap: clamp(2.5rem, 4vw, 4.25rem);
  padding: 2.6rem 2.45rem;
  background: rgba(248, 244, 236, 0.62);
}

.growth-os-page .growth-os-insight-panel .visual-panel-copy,
.growth-os-page .growth-os-connect-panel .visual-panel-copy {
  max-width: 31rem;
}

.growth-os-page .growth-os-insight-panel h2,
.growth-os-page .growth-os-connect-panel h2 {
  max-width: 9.7ch;
}

.growth-os-page .growth-os-insight-cluster,
.growth-os-page .growth-os-connect-cluster {
  gap: 0.9rem;
  padding-top: 0.1rem;
}

.growth-os-page .growth-os-insight-cluster span,
.growth-os-page .growth-os-connect-cluster span {
  min-height: 3rem;
  padding: 0.78rem 0.92rem;
  background: rgba(255, 253, 248, 0.88);
}

.growth-os-page .growth-os-connect-shell {
  margin-top: 2.2rem;
}

.growth-os-page .growth-os-connect-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
}

.growth-os-page .growth-os-connect-cluster {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.growth-os-page .growth-os-why {
  gap: clamp(2.8rem, 4.4vw, 4.5rem);
  margin-top: 2.7rem;
  padding-top: 2.5rem;
  padding-bottom: 1.5rem;
  border-top: 1px solid rgba(19, 46, 79, 0.07);
}

.growth-os-page .growth-os-why h2 {
  max-width: 9.7ch;
}

.growth-os-page .growth-os-final-cta {
  margin-top: 1.85rem;
  padding-top: 2.6rem;
  padding-bottom: 2.6rem;
}

@media (max-width: 1100px) {
  .growth-os-page .growth-os-hero {
    padding-bottom: 2.7rem;
    gap: 2rem;
  }

  .growth-os-page .growth-os-problem,
  .growth-os-page .growth-os-insight-panel,
  .growth-os-page .growth-os-connect-panel,
  .growth-os-page .growth-os-why,
  .growth-os-page .growth-os-final-cta {
    gap: 2rem;
  }

  .growth-os-page .growth-os-visibility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .growth-os-page .growth-os-visibility-grid .content-card:nth-child(1) {
    grid-column: span 2;
  }

  .growth-os-page .growth-os-connect-cluster {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .growth-os-page .growth-os-hero {
    padding-bottom: 2.15rem;
  }

  .growth-os-page .growth-os-problem {
    padding-top: 1.9rem;
    padding-bottom: 1.25rem;
    margin-top: 1rem;
  }

  .growth-os-page .growth-os-visibility-grid,
  .growth-os-page .growth-os-insight-cluster,
  .growth-os-page .growth-os-connect-cluster {
    grid-template-columns: 1fr;
  }

  .growth-os-page .growth-os-visibility-grid .content-card:nth-child(1) {
    grid-column: auto;
    padding: 1.52rem 1.35rem 1.42rem;
  }

  .growth-os-page .growth-os-insight-shell,
  .growth-os-page .growth-os-connect-shell,
  .growth-os-page .growth-os-why {
    margin-top: 2.15rem;
  }

  .growth-os-page .growth-os-insight-panel,
  .growth-os-page .growth-os-connect-panel,
  .growth-os-page .growth-os-final-cta {
    padding: 2rem 1.45rem;
  }
}

/* === Contact page focused refinement: May 2026 === */
.contact-page .contact-hero {
  max-width: 60rem;
  padding-top: 3.8rem;
  padding-bottom: 3.35rem;
}

.contact-page .contact-hero h1 {
  max-width: 10ch;
  margin-bottom: 1.15rem;
}

.contact-page .contact-hero .page-lede {
  max-width: 39rem;
}

.contact-page .contact-language-band {
  gap: clamp(2.4rem, 4vw, 3.9rem);
  padding: 2.5rem 2.25rem 2.45rem;
}

.contact-page .contact-language-band h2 {
  max-width: 10ch;
}

.contact-page .contact-capture-heading {
  max-width: 58rem;
  margin-bottom: 1.3rem;
}

.contact-page .contact-capture-heading .section-guidance {
  max-width: 36rem;
}

.contact-page .contact-capture-shell {
  grid-template-columns: minmax(0, 0.97fr) minmax(0, 1.03fr);
  gap: clamp(1.9rem, 3.2vw, 2.8rem);
}

.contact-page .contact-tool-frame {
  gap: 1.05rem;
  padding: 1.7rem 1.6rem 1.65rem;
  background: rgba(248, 244, 236, 0.72);
}

.contact-page .contact-tool-frame h3 {
  max-width: 14ch;
}

.contact-page .contact-tool-frame p:not(.eyebrow) {
  max-width: 30rem;
}

.contact-page .contact-tool-placeholder {
  min-height: 13.5rem;
  border-style: solid;
  border-color: rgba(19, 46, 79, 0.1);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.11em;
}

.contact-page .contact-form {
  padding: 1.7rem 1.6rem 1.6rem;
}

.contact-page .contact-form-intro {
  gap: 0.45rem;
  margin-bottom: 1.15rem;
}

.contact-page .contact-form-grid {
  gap: 1.1rem 1rem;
}

.contact-page .form-field span {
  margin-bottom: 0.52rem;
}

.contact-page .form-field input,
.contact-page .form-field select,
.contact-page .form-field textarea {
  background: rgba(255, 255, 255, 0.92);
}

.contact-page .form-field textarea {
  min-height: 10rem;
}

.contact-page .contact-form-actions {
  margin-top: 1.3rem;
  gap: 0.95rem;
}

.contact-page .contact-info-grid {
  margin-top: 2.55rem;
  gap: 1.05rem;
}

.contact-page .contact-info-grid .content-card {
  padding: 1.35rem 1.35rem 1.28rem;
}

.contact-page .contact-info-grid .content-card:nth-child(1),
.contact-page .contact-info-grid .content-card:nth-child(3) {
  background: rgba(255, 253, 248, 0.58);
}

.contact-page .contact-guidance-card {
  padding: 1.55rem 1.45rem 1.45rem !important;
}

.contact-page .contact-tiers-heading {
  max-width: 58rem;
  margin-top: 2.6rem;
  padding-top: 2.8rem;
}

.contact-page .contact-tiers-grid {
  gap: 1.05rem;
}

.contact-page .contact-tiers-grid .content-card {
  padding: 1.48rem 1.4rem 1.45rem;
}

.contact-page .contact-tiers-grid .content-card:nth-child(1),
.contact-page .contact-tiers-grid .content-card:nth-child(3) {
  background: rgba(255, 253, 248, 0.58);
}

.contact-page .contact-tiers-grid h3 {
  max-width: 14ch;
}

.contact-page .contact-final-cta {
  margin-top: 1.9rem;
  gap: clamp(2.2rem, 4vw, 3.8rem);
  padding-top: 2.55rem;
  padding-bottom: 2.55rem;
}

@media (max-width: 1100px) {
  .contact-page .contact-language-band,
  .contact-page .contact-capture-shell,
  .contact-page .contact-final-cta {
    gap: 2rem;
  }
}

@media (max-width: 720px) {
  .contact-page .contact-hero {
    padding-top: 3.1rem;
    padding-bottom: 2.8rem;
  }

  .contact-page .contact-language-band,
  .contact-page .contact-tool-frame,
  .contact-page .contact-form,
  .contact-page .contact-final-cta {
    padding: 1.95rem 1.3rem;
  }

  .contact-page .contact-capture-heading,
  .contact-page .contact-tiers-heading {
    margin-bottom: 1.05rem;
  }

  .contact-page .contact-info-grid {
    margin-top: 2.1rem;
  }

  .contact-page .contact-tiers-heading {
    margin-top: 2.15rem;
    padding-top: 2.2rem;
  }

  .contact-page .contact-form-grid {
    gap: 0.95rem;
  }

  .contact-page .contact-tool-placeholder {
    min-height: 11rem;
  }
}

.faq-page .faq-group + .faq-group {
  padding-top: 2.15rem;
}

.faq-page .faq-item {
  padding: 1.35rem 1.35rem 1.28rem;
  background: rgba(255, 253, 248, 0.66);
  box-shadow: none;
}

.faq-page .faq-list .faq-item:nth-child(even) {
  background: rgba(249, 245, 237, 0.64);
}

.faq-page .faq-group-emphasis .faq-item {
  border-color: rgba(217, 174, 93, 0.16);
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.92), rgba(249, 243, 229, 0.82));
}

.site-footer {
  padding-top: 2.8rem;
  margin-top: clamp(2rem, 3vw, 3rem);
}

.footer-links {
  gap: 0.8rem 1.7rem;
}

.footer-links a {
  opacity: 0.9;
}

/* === Cross-page parity and responsive polish: May 2026 === */
main.page-main:not(#home) > .page-hero,
main.page-main:not(#home) > .section-heading,
main.page-main:not(#home) > .bilingual-band,
main.page-main:not(#home) > .cta-band,
main.page-main:not(#home) > .visual-gallery,
main.page-main:not(#home) > .faq-list,
main.page-main:not(#home) > .content-grid,
main.page-main:not(#home) > .section.contact-card,
main.page-main:not(#home) > .section.authority-section {
  max-width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

main.page-main:not(#home) > .page-hero:first-child {
  padding-top: clamp(3.6rem, 5vw, 4.7rem);
  padding-bottom: clamp(3rem, 4.5vw, 3.9rem);
}

main.page-main:not(#home) .page-hero,
main.page-main:not(#home) .section-heading {
  row-gap: 0.82rem;
}

main.page-main:not(#home) .page-hero .page-lede,
main.page-main:not(#home) .section-heading .page-lede,
main.page-main:not(#home) .section-heading .section-guidance {
  max-width: 39rem;
}

main.page-main:not(#home) .content-card,
main.page-main:not(#home) .faq-item,
main.page-main:not(#home) .authority-item,
main.page-main:not(#home) .timeline article {
  border-color: rgba(19, 46, 79, 0.08);
  box-shadow: none;
}

main.page-main:not(#home) .cards-three,
main.page-main:not(#home) .cards-four,
main.page-main:not(#home) .cards-six,
main.page-main:not(#home) .authority-list,
main.page-main:not(#home) .content-grid,
main.page-main:not(#home) .timeline {
  gap: 1.05rem;
}

.services-page .services-lines-grid .content-card:nth-child(even),
.services-page .services-tiers-grid .content-card:nth-child(even),
.contact-page .contact-info-grid .content-card:nth-child(even),
.contact-page .contact-tiers-grid .content-card:nth-child(even),
.growth-os-page .growth-os-visibility-grid .content-card:nth-child(even),
.faq-page .faq-list .faq-item:nth-child(even),
.about-page .about-work-grid .content-card:nth-child(even) {
  background: rgba(249, 245, 237, 0.58);
}

.services-page .services-hero,
.service-detail-page > .page-hero.service-detail-hero,
.growth-os-page .growth-os-hero,
.contact-page .contact-capture-shell,
.about-page .about-work-grid,
.about-page .about-founder-grid,
.approach-page .approach-constant-band,
.approach-page .approach-choice-band,
.approach-page .approach-models-grid,
.approach-page .approach-principles-grid {
  align-items: start;
}

.services-page .visual-panel-services,
.growth-os-page .growth-os-insight-panel,
.growth-os-page .growth-os-connect-panel,
.contact-page .contact-final-cta,
.services-page .services-final-band,
.approach-page .approach-final-cta {
  gap: clamp(1.8rem, 3vw, 3rem);
}

.about-page .about-identity-band .section-heading,
.about-page .about-beliefs-heading,
.approach-page .approach-principles-heading,
.approach-page .approach-models-grid + .section-heading,
.faq-page .faq-groups-heading,
.contact-page .contact-capture-heading,
.contact-page .contact-tiers-heading,
.growth-os-page .growth-os-heading,
.insights-page .insights-articles-heading,
.insights-page .insights-case-heading {
  max-width: 54rem;
}

.services-page .services-proof-shell,
.growth-os-page .growth-os-why,
.service-detail-page .service-role-band,
.service-detail-page .service-proof-grid {
  gap: clamp(1.8rem, 3vw, 3rem);
}

.faq-page .faq-group + .faq-group {
  padding-top: 2.4rem;
}

.site-footer {
  max-width: min(1160px, calc(100% - 2rem));
  margin-inline: auto;
}

@media (max-width: 1024px) {
  main.page-main:not(#home) {
    --inner-section-gap: clamp(4.4rem, 8.8vw, 5.8rem);
  }

  main.page-main:not(#home) > .section-heading,
  main.page-main:not(#home) > .cta-band,
  main.page-main:not(#home) > .faq-list,
  main.page-main:not(#home) > .visual-gallery {
    margin-bottom: clamp(4.6rem, 8.6vw, 5.9rem);
  }

  main.page-main:not(#home) > .page-hero:first-child {
    padding-top: 3.3rem;
    padding-bottom: 2.95rem;
  }

  .services-page .services-hero,
  .service-detail-page > .page-hero.service-detail-hero,
  .growth-os-page .growth-os-hero,
  .services-page .visual-panel-services,
  .growth-os-page .growth-os-connect-panel,
  .growth-os-page .growth-os-insight-panel,
  .contact-page .contact-capture-shell,
  .about-page .about-work-grid,
  .about-page .about-founder-grid,
  .approach-page .approach-constant-band,
  .approach-page .approach-choice-band,
  .approach-page .approach-models-grid,
  .approach-page .approach-principles-grid,
  .service-detail-page .service-role-band,
  .service-detail-page .service-proof-grid {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  .services-page .services-proof-shell,
  .contact-page .contact-final-cta,
  .growth-os-page .growth-os-why,
  .services-page .services-final-band,
  .approach-page .approach-final-cta {
    gap: 1.9rem;
  }
}

@media (max-width: 720px) {
  main.page-main:not(#home) {
    --inner-section-gap: clamp(3.5rem, 9.2vw, 4.6rem);
  }

  main.page-main:not(#home) .content-card,
  main.page-main:not(#home) .faq-item,
  main.page-main:not(#home) .authority-item,
  main.page-main:not(#home) .timeline article,
  main.page-main:not(#home) .contact-form {
    padding: 1.2rem 1.08rem 1.22rem;
  }

  main.page-main:not(#home) .cta-band {
    padding: 1.85rem 1.2rem;
    border-radius: 22px;
  }

  main.page-main:not(#home) > .page-hero:first-child {
    padding-top: 2.75rem;
    padding-bottom: 2.35rem;
  }

  main.page-main:not(#home) .page-hero,
  main.page-main:not(#home) .section-heading {
    row-gap: 0.72rem;
  }

  main.page-main:not(#home) .page-hero .page-lede,
  main.page-main:not(#home) .section-heading .page-lede,
  main.page-main:not(#home) .section-heading .section-guidance {
    max-width: 33rem;
  }

  main.page-main:not(#home) .cards-three,
  main.page-main:not(#home) .cards-four,
  main.page-main:not(#home) .cards-six,
  main.page-main:not(#home) .authority-list,
  main.page-main:not(#home) .content-grid,
  main.page-main:not(#home) .timeline {
    gap: 0.92rem;
  }

  .services-page .services-proof-shell,
  .contact-page .contact-final-cta,
  .growth-os-page .growth-os-why,
  .services-page .services-final-band,
  .approach-page .approach-final-cta,
  .services-page .visual-panel-services,
  .growth-os-page .growth-os-connect-panel,
  .growth-os-page .growth-os-insight-panel,
  .contact-page .contact-capture-shell,
  .about-page .about-work-grid,
  .about-page .about-founder-grid,
  .approach-page .approach-constant-band,
  .approach-page .approach-choice-band,
  .approach-page .approach-models-grid,
  .approach-page .approach-principles-grid,
  .service-detail-page .service-role-band,
  .service-detail-page .service-proof-grid {
    gap: 1.35rem;
  }

  .faq-page .faq-groups {
    gap: 2.25rem;
  }

  .insights-page .archive-group + .archive-group {
    padding-top: 1.85rem;
  }
}

/* === Final responsive stabilization and technical polish: May 2026 === */
@media (max-width: 1024px) {
  .topbar {
    max-width: min(1160px, calc(100% - 1rem));
    padding: 0.92rem 1.08rem;
    gap: 0.95rem;
  }

  .brand {
    min-height: 2.7rem;
  }

  .brand-wordmark,
  .footer-wordmark {
    width: auto;
    height: auto;
    max-height: 2.6rem;
  }

  .topbar .nav {
    gap: 0.7rem 1.05rem;
  }

  .topbar .nav a,
  .lang-switch a {
    font-size: 0.95rem;
  }

  .topbar.is-compact {
    padding: 0.72rem 0.96rem;
    align-items: center;
  }

  .topbar.is-compact .brand {
    min-height: 2.46rem;
    height: auto;
    display: inline-flex;
    align-items: center;
  }

  .topbar.is-compact .brand-wordmark {
    width: auto;
    max-width: min(10.4rem, 46vw);
    max-height: 2.18rem;
    margin-top: 0;
    margin-bottom: 0;
    transform: none;
  }

  main#home .home-template-hero-surface,
  main#home .home-template-services-overview,
  main#home .home-template-growth-os,
  main#home .home-template-proof,
  main#home .home-template-models-shell {
    grid-template-columns: 1fr;
    gap: 1.9rem;
  }

  main#home .home-template-system-copy {
    grid-template-columns: 1fr;
    grid-template-areas:
      "eyebrow"
      "title"
      "lede";
    gap: 0.75rem;
    align-items: start;
    justify-items: center;
    text-align: center;
  }

  main#home .home-template-system-copy > .eyebrow,
  main#home .home-template-system-copy .page-lede,
  main#home .home-template-system-copy h2 {
    min-width: 0;
  }

  main#home .home-template-system-copy .page-lede {
    max-width: 35rem;
  }

  main#home .home-template-growth-levels-head {
    grid-template-columns: 1fr;
    gap: 1rem;
    justify-items: center;
    text-align: center;
  }

  main#home .home-template-system-copy h2 {
    max-width: none;
  }

  main#home .home-template-services-copy {
    max-width: none;
    margin: 0 auto;
    text-align: center;
  }

  main#home .home-template-services-copy h2,
  main#home .home-template-growth-os-copy h2,
  main#home .home-template-proof-copy h2,
  main#home .home-template-models-copy h2 {
    max-width: 15ch;
  }

  main#home .home-template-growth-levels-head .section-heading,
  main#home .home-template-growth-os-copy,
  main#home .home-template-proof-copy,
  main#home .home-template-models-copy {
    margin: 0 auto;
    text-align: center;
  }

  main#home .home-template-growth-levels-head .section-heading > .eyebrow {
    justify-self: center;
    text-align: center;
  }

  main#home .home-template-growth-levels-head .section-heading h2,
  main#home .home-template-growth-os-copy h2,
  main#home .home-template-proof-copy h2,
  main#home .home-template-models-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  main#home .home-template-growth-levels-head .page-lede,
  main#home .home-template-growth-os-copy .page-lede,
  main#home .home-template-proof-copy .page-lede,
  main#home .home-template-models-copy .page-lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  main#home .home-template-services-copy h2 {
    margin-left: auto;
    margin-right: auto;
  }

  main#home .home-template-services-copy .page-lede {
    max-width: 35rem;
    margin-left: auto;
    margin-right: auto;
  }

  main#home .home-template-services-copy .button {
    margin-left: auto;
    margin-right: auto;
  }

  main#home .home-template-system-chain,
  main#home .home-template-level-grid,
  main#home .cards-three,
  main.page-main:not(#home) .cards-three,
  main.page-main:not(#home) .cards-four,
  main.page-main:not(#home) .cards-six,
  .services-page .services-lines-grid,
  .services-page .services-tiers-grid,
  .insights-page .insights-featured-grid,
  .insights-page .archive-group-grid,
  .insights-page .insights-case-grid,
  .growth-os-page .growth-os-visibility-grid,
  .contact-page .contact-info-grid,
  .contact-page .contact-tiers-grid,
  .service-detail-page .service-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  main#home .home-template-model-grid {
    grid-template-columns: 1fr;
  }

  main#home .home-template-service-stack {
    gap: 0.92rem;
  }

  main#home .home-template-growth-levels-head .page-lede {
    max-width: 38rem;
  }

  .contact-page .contact-form-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.92rem;
  }

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

  .contact-page .contact-form-intro,
  .contact-page .contact-tool-frame {
    max-width: none;
  }
}

@media (max-width: 720px) {
  .topbar {
    max-width: calc(100% - 0.85rem);
    padding: 0.84rem 0.94rem;
    border-radius: 19px;
  }

  .topbar.is-compact {
    padding: 0.78rem 0.92rem;
  }

  .brand-wordmark,
  .footer-wordmark {
    max-height: 2.2rem;
  }

  .topbar .nav,
  .topbar .nav-actions,
  .topbar .lang-switch {
    width: 100%;
  }

  .nav-mobile-cta,
  .hero-actions,
  .cta-band .hero-actions {
    width: 100%;
  }

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

  .hero-actions .button,
  .cta-band .hero-actions .button,
  .nav-mobile-cta .button {
    width: 100%;
    justify-content: center;
  }

  main#home .home-template-hero-surface,
  main#home .home-template-system-copy,
  main#home .home-template-services-overview,
  main#home .home-template-growth-levels-head,
  main#home .home-template-growth-os,
  main#home .home-template-proof,
  main#home .home-template-models-shell,
  main#home .home-template-system-chain,
  main#home .home-template-level-grid,
  main.page-main:not(#home) .cards-three,
  main.page-main:not(#home) .cards-four,
  main.page-main:not(#home) .cards-six,
  .services-page .services-lines-grid,
  .services-page .services-tiers-grid,
  .insights-page .insights-featured-grid,
  .insights-page .archive-group-grid,
  .insights-page .insights-case-grid,
  .growth-os-page .growth-os-visibility-grid,
  .contact-page .contact-info-grid,
  .contact-page .contact-tiers-grid,
  .service-detail-page .service-proof-grid,
  .contact-page .contact-form-grid,
  main#home .home-template-model-grid {
    grid-template-columns: 1fr;
  }

  main#home .home-template-system-copy h2,
  main#home .home-template-services-copy h2,
  main#home .home-template-growth-os-copy h2,
  main#home .home-template-proof-copy h2,
  main#home .home-template-models-copy h2,
  main#home .home-template-growth-levels-head .section-heading h2 {
    max-width: none;
  }

  main#home .home-template-system-copy,
  main#home .home-template-services-copy,
  main#home .home-template-growth-levels-head,
  main#home .home-template-growth-levels-head .section-heading,
  main#home .home-template-growth-os-copy,
  main#home .home-template-proof-copy,
  main#home .home-template-models-copy {
    text-align: center;
    justify-items: center;
  }

  main#home .home-template-system-copy > .eyebrow,
  main#home .home-template-services-copy > .eyebrow,
  main#home .home-template-growth-levels-head .section-heading > .eyebrow,
  main#home .home-template-growth-os-copy > .eyebrow,
  main#home .home-template-proof-copy > .eyebrow,
  main#home .home-template-models-copy > .eyebrow,
  main#home .home-template-system-copy .page-lede,
  main#home .home-template-services-copy .page-lede,
  main#home .home-template-growth-levels-head .page-lede,
  main#home .home-template-growth-os-copy .page-lede,
  main#home .home-template-proof-copy .page-lede,
  main#home .home-template-models-copy .page-lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  main#home .home-template-hero-note,
  main#home .home-template-growth-levels-head .page-lede,
  main#home .home-template-proof-copy .page-lede,
  main#home .home-template-growth-os-copy .page-lede,
  main#home .home-template-services-copy .page-lede {
    max-width: none;
  }

  main#home .home-template-system-chain article,
  main#home .home-template-service-stack article,
  main#home .home-template-model-grid .offer-card,
  main#home .home-template-growth-os-panels article {
    min-height: 0;
  }

  .insights-page .archive-group-heading,
  .insights-page .section-heading,
  .contact-page .section-heading,
  .growth-os-page .section-heading,
  .services-page .section-heading,
  .service-detail-page .section-heading,
  .about-page .section-heading,
  .approach-page .section-heading,
  .faq-page .section-heading {
    max-width: none;
  }

  .site-footer {
    gap: 1.35rem;
  }

  .footer-links {
    gap: 0.72rem 1.2rem;
  }
}

/* Final cross-page title parity and section rhythm pass */
main.page-main:not(#home) .section-heading,
main.page-main:not(#home) .proof-copy,
main.page-main:not(#home) .bilingual-band,
main.page-main:not(#home) .cta-band {
  align-items: start;
}

main.page-main:not(#home) .section-heading h2,
main.page-main:not(#home) .proof-copy h2,
main.page-main:not(#home) .bilingual-band h2,
main.page-main:not(#home) .cta-band h2 {
  font-size: clamp(2.05rem, 2.75vw, 2.72rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  max-width: 15ch;
}

main.page-main:not(#home) .section-heading .section-guidance,
main.page-main:not(#home) .section-heading .page-lede,
main.page-main:not(#home) .proof-copy .page-lede,
main.page-main:not(#home) .bilingual-band .page-lede,
main.page-main:not(#home) .cta-band .page-lede,
main.page-main:not(#home) .cta-band p:not(.eyebrow) {
  max-width: 39rem;
}

main.page-main:not(#home) .section-heading + .cards-three,
main.page-main:not(#home) .section-heading + .cards-four,
main.page-main:not(#home) .section-heading + .cards-six,
main.page-main:not(#home) .section-heading + .content-grid,
main.page-main:not(#home) .section-heading + .content-stack {
  margin-top: 0;
}

.contact-page .contact-final-cta .hero-actions {
  flex-wrap: wrap;
}

.contact-page .contact-final-cta .hero-actions .button {
  flex: 0 0 auto;
}

@media (max-width: 1024px) {
  main.page-main:not(#home) .section-heading h2,
  main.page-main:not(#home) .proof-copy h2,
  main.page-main:not(#home) .bilingual-band h2,
  main.page-main:not(#home) .cta-band h2 {
    max-width: 16ch;
  }
}

@media (max-width: 720px) {
  main.page-main:not(#home) .section-heading h2,
  main.page-main:not(#home) .proof-copy h2,
  main.page-main:not(#home) .bilingual-band h2,
  main.page-main:not(#home) .cta-band h2 {
    max-width: none;
  }

  .contact-page .contact-final-cta .hero-actions {
    align-items: stretch;
  }
}

.strategy-call-thankyou-page .strategy-call-thankyou-note {
  max-width: 44rem;
}

.strategy-call-thankyou-page .strategy-call-thankyou-scope-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.strategy-call-thankyou-page .strategy-call-thankyou-checklist-card {
  max-width: none;
}

.strategy-call-thankyou-page .strategy-call-thankyou-checklist {
  margin: 0;
  padding-left: 1.15rem;
  display: grid;
  gap: 0.78rem;
}

.strategy-call-thankyou-page .strategy-call-thankyou-checklist li {
  color: var(--ink-soft);
}

.strategy-call-thankyou-page .strategy-call-thankyou-model-grid .content-card,
.strategy-call-thankyou-page .strategy-call-thankyou-scope-grid .content-card {
  min-height: 100%;
}

@media (max-width: 1180px) {
  .strategy-call-thankyou-page .strategy-call-thankyou-scope-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .strategy-call-thankyou-page .strategy-call-thankyou-scope-grid {
    grid-template-columns: 1fr;
  }

  .strategy-call-thankyou-page .strategy-call-thankyou-checklist {
    gap: 0.65rem;
  }
}
