:root {
  --forest: #3a2118;
  --forest-2: #48291d;
  --forest-3: #603a27;
  --ink: #241710;
  --ink-soft: #675044;
  --cream: #f3eadf;
  --paper: #fbf7f0;
  --sage: #d5b574;
  --sage-light: #efe0bf;
  --gold: #c79546;
  --clay: #a66d4c;
  --theme-rgb: 58, 33, 24;
  --theme-shadow-rgb: 31, 16, 11;
  --accent-rgb: 213, 181, 116;
  --line: rgba(36, 23, 16, 0.14);
  --line-light: rgba(250, 248, 242, 0.18);
  --sans: "Manrope", "DM Sans", Arial, sans-serif;
  --serif: "Playfair Display", Georgia, serif;
  --content: 1280px;
  --pad: clamp(22px, 5vw, 76px);
}

:root[data-theme="forest"] {
  --forest: #0d2c24;
  --forest-2: #123b31;
  --forest-3: #1a4a3e;
  --ink: #181713;
  --ink-soft: #4e4b43;
  --cream: #f1ede4;
  --paper: #faf8f2;
  --sage: #b9c5a2;
  --sage-light: #dce3ce;
  --gold: #b78a4c;
  --clay: #a9785c;
  --theme-rgb: 13, 44, 36;
  --theme-shadow-rgb: 8, 20, 17;
  --accent-rgb: 185, 197, 162;
  --line: rgba(24, 23, 19, 0.14);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

::selection {
  color: var(--paper);
  background: var(--forest-3);
}

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

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

button {
  color: inherit;
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  z-index: 150;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--sage);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  color: var(--paper);
  transition: background-color 300ms ease, box-shadow 300ms ease, opacity 650ms ease, top 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .site-header {
  opacity: 0;
  top: -22px;
}

.js.page-ready .site-header {
  opacity: 1;
  top: 0;
}

.js.page-ready .site-header.is-hidden {
  top: -110px;
}

.site-header.is-scrolled {
  background: rgba(var(--theme-rgb), 0.96);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.nav-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 230px 1fr 320px;
  align-items: center;
  width: min(100%, calc(var(--content) + (var(--pad) * 2)));
  height: 92px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 12px 0 9px;
  color: rgba(250, 248, 242, 0.78);
  border: 1px solid rgba(250, 248, 242, 0.28);
  border-radius: 999px;
  background: rgba(250, 248, 242, 0.06);
  cursor: pointer;
  transition: color 180ms ease, border-color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  color: var(--paper);
  border-color: var(--sage);
  background: rgba(250, 248, 242, 0.11);
  transform: translateY(-1px);
}

.theme-toggle-swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(250, 248, 242, 0.5);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--forest) 0 48%, var(--sage) 52% 100%);
  box-shadow: inset 0 0 0 2px rgba(250, 248, 242, 0.08);
}

.theme-toggle-copy {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  white-space: nowrap;
  text-transform: uppercase;
}

.brand {
  width: 218px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 46px);
}

.desktop-nav a {
  position: relative;
  padding: 8px 0;
  color: rgba(250, 248, 242, 0.76);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--sage);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 250ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: var(--paper);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  color: var(--paper);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-cta span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(250, 248, 242, 0.34);
  border-radius: 50%;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease;
}

.nav-cta:hover span,
.nav-cta:focus-visible span {
  color: var(--forest);
  background: var(--sage);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 23px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 250ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.8fr);
  min-height: 900px;
  padding: 148px var(--pad) 76px;
  overflow: hidden;
  color: var(--paper);
  background: var(--forest);
}

.hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43.5%;
  background: var(--forest-2);
  content: "";
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 2;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(730px, 100%);
  margin-right: clamp(34px, 6vw, 100px);
  margin-left: max(0px, calc((100vw - var(--content)) / 2 - var(--pad)));
  padding-bottom: 8px;
}

.eyebrow,
.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 28px;
  color: var(--sage);
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 1px;
  background: rgba(var(--accent-rgb), 0.55);
}

.hero h1,
.section-heading h2,
.manifesto-copy,
.about-copy h2,
.results-heading h2,
.faq-heading h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

.hero h1 {
  max-width: 790px;
  font-size: clamp(3.5rem, 6.1vw, 6.8rem);
}

.hero h1 em,
.section-heading h2 em,
.manifesto-copy em,
.about-copy h2 em,
.results-heading h2 em,
.faq-heading h2 em,
.contact h2 em {
  color: var(--sage);
  font-weight: 500;
}

.hero-lead {
  max-width: 630px;
  margin: 38px 0 0;
  color: rgba(250, 248, 242, 0.7);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 52px);
  margin-top: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 58px;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  transition: color 200ms ease, background-color 200ms ease, border-color 200ms ease, transform 200ms ease;
}

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

.button-primary {
  color: var(--forest);
  background: var(--sage);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--paper);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(250, 248, 242, 0.34);
  color: rgba(250, 248, 242, 0.82);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--paper);
  border-color: var(--sage);
}

.text-link span {
  font-size: 1rem;
}

.hero-proof {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 66px;
}

.proof-number {
  font-family: var(--serif);
  font-size: 3.9rem;
  font-style: italic;
  line-height: 1;
}

.hero-proof p {
  margin: 0;
  padding-left: 16px;
  border-left: 1px solid rgba(250, 248, 242, 0.24);
  color: rgba(250, 248, 242, 0.55);
  font-size: 0.72rem;
  line-height: 1.65;
  text-transform: uppercase;
}

.hero-proof strong {
  color: var(--paper);
  font-weight: 600;
}

.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  max-width: 640px;
  margin: 0 auto;
  padding: 20px 0 26px;
}

.portrait-frame {
  position: relative;
  width: min(100%, 560px);
  height: min(710px, calc(100vh - 190px));
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(250, 248, 242, 0.18);
}

.portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(0.88) contrast(1.03);
  transition: transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

:root[data-theme="brown"] .portrait-frame img {
  filter: sepia(0.34) saturate(0.78) hue-rotate(338deg) contrast(1.04);
}

.hero-visual:hover .portrait-frame img {
  transform: scale(1.025);
}

.portrait-shade {
  position: absolute;
  inset: 0;
  box-shadow: inset 0 -160px 130px rgba(var(--theme-shadow-rgb), 0.22);
}

.portrait-caption {
  position: absolute;
  right: -42px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
  color: var(--paper);
  transform: rotate(-90deg);
  transform-origin: bottom right;
}

.portrait-caption span {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
}

.portrait-caption p {
  margin: 0;
  color: rgba(250, 248, 242, 0.5);
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.seal {
  position: absolute;
  top: 86px;
  left: -60px;
  display: grid;
  width: 118px;
  height: 118px;
  color: var(--forest);
  background: var(--sage);
  border-radius: 50%;
  place-items: center;
}

.seal svg {
  position: absolute;
  inset: 5px;
  width: 108px;
  height: 108px;
  animation: seal-spin 24s linear infinite;
}

.seal text {
  fill: currentColor;
  font-family: var(--sans);
  font-size: 8.2px;
  font-weight: 700;
  letter-spacing: 1.5px;
}

.seal > span {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-style: italic;
}

.hero-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(var(--accent-rgb), 0.11);
  border-radius: 50%;
  pointer-events: none;
}

.hero-orbit-one {
  top: 18%;
  left: -190px;
  width: 560px;
  height: 560px;
}

.hero-orbit-two {
  top: calc(18% + 49px);
  left: -141px;
  width: 462px;
  height: 462px;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 26px;
  left: var(--pad);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(250, 248, 242, 0.45);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.scroll-cue span {
  position: relative;
  width: 1px;
  height: 34px;
  overflow: hidden;
  background: rgba(250, 248, 242, 0.22);
}

.scroll-cue span::after {
  position: absolute;
  top: -100%;
  left: 0;
  width: 1px;
  height: 100%;
  background: var(--sage);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

.ticker {
  overflow: hidden;
  color: var(--ink);
  background: var(--sage);
}

.ticker-track {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 20px 0;
  animation: ticker 28s linear infinite;
}

.ticker span {
  padding: 0 40px;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.45rem);
  font-style: italic;
  white-space: nowrap;
}

.ticker i {
  font-style: normal;
  font-size: 0.72rem;
}

.section {
  padding: clamp(100px, 11vw, 168px) var(--pad);
  overflow-x: clip;
}

.vision,
.solutions,
.about,
.testimonials,
.faq {
  width: 100%;
}

.vision {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(320px, 0.7fr);
  gap: clamp(50px, 9vw, 140px);
  max-width: calc(var(--content) + (var(--pad) * 2));
  margin: 0 auto;
  background: var(--paper);
}

.section-heading h2,
.about-copy h2,
.results-heading h2,
.faq-heading h2 {
  font-size: clamp(3.1rem, 5.4vw, 6.2rem);
}

.section-heading h2 em,
.about-copy h2 em,
.faq-heading h2 em {
  color: var(--forest-3);
}

.kicker {
  color: var(--forest-3);
}

.vision-intro {
  align-self: end;
  max-width: 520px;
  padding: 0 0 12px 36px;
  border-left: 1px solid var(--line);
}

.vision-intro .lead-quote {
  margin: 0 0 28px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-style: italic;
  line-height: 1.35;
}

.vision-intro > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.8;
}

.tension-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.tension-card {
  position: relative;
  min-height: 380px;
  padding: 38px clamp(24px, 3.2vw, 50px) 42px;
  border-right: 1px solid var(--line);
  transition: color 300ms ease, background-color 300ms ease;
}

.tension-card:last-child {
  border-right: 0;
}

.tension-card:hover {
  color: var(--paper);
  background: var(--forest);
}

.card-index,
.method-number {
  color: var(--clay);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.tension-card svg {
  width: 44px;
  height: 44px;
  margin: 78px 0 34px;
  fill: none;
  stroke: var(--forest-3);
  stroke-width: 1.2;
  transition: stroke 300ms ease;
}

.tension-card:hover svg {
  stroke: var(--sage);
}

.tension-card h3 {
  margin: 0 0 15px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  font-weight: 500;
  line-height: 1.2;
}

.tension-card p {
  max-width: 340px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.72;
  transition: color 300ms ease;
}

.tension-card:hover p {
  color: rgba(250, 248, 242, 0.66);
}

.manifesto {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  padding: 100px var(--pad);
  overflow: hidden;
  color: var(--paper);
  text-align: center;
  background: var(--ink);
}

.manifesto::before,
.manifesto::after {
  position: absolute;
  width: 480px;
  height: 480px;
  border: 1px solid rgba(var(--accent-rgb), 0.13);
  border-radius: 50%;
  content: "";
}

.manifesto::before {
  top: -300px;
  left: -150px;
}

.manifesto::after {
  right: -200px;
  bottom: -320px;
}

.manifesto-label {
  position: absolute;
  top: 52px;
  left: var(--pad);
  margin: 0;
  color: var(--sage);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.manifesto-copy {
  position: relative;
  z-index: 1;
  max-width: 1180px;
  font-size: clamp(2.8rem, 5.5vw, 6rem);
  line-height: 1.12;
}

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

.method-top,
.method-list {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.method-top {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: clamp(50px, 10vw, 150px);
  align-items: end;
}

.kicker-light {
  color: var(--sage);
}

.method .section-heading h2 {
  color: var(--paper);
}

.method .section-heading h2 em {
  color: var(--sage);
}

.method-intro {
  max-width: 490px;
  margin: 0;
  padding-left: 32px;
  border-left: 1px solid var(--line-light);
  color: rgba(250, 248, 242, 0.62);
  font-size: 0.98rem;
  line-height: 1.82;
}

.method-list {
  margin-top: clamp(70px, 9vw, 120px);
  border-top: 1px solid var(--line-light);
}

.method-item {
  display: grid;
  grid-template-columns: 80px 150px 1fr;
  align-items: center;
  min-height: 200px;
  padding: 25px 0;
  border-bottom: 1px solid var(--line-light);
  transition: padding 300ms ease, background-color 300ms ease;
}

.method-item:hover {
  padding-right: 24px;
  padding-left: 24px;
  background: rgba(250, 248, 242, 0.045);
}

.method-icon {
  display: grid;
  width: 78px;
  height: 78px;
  border: 1px solid rgba(var(--accent-rgb), 0.38);
  border-radius: 50%;
  place-items: center;
}

.method-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: var(--sage);
  stroke-width: 1.3;
}

.method-content {
  display: grid;
  grid-template-columns: minmax(180px, 0.46fr) 1fr;
  gap: 38px;
  align-items: center;
}

.method-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  font-weight: 500;
}

.method-content p {
  max-width: 560px;
  margin: 0;
  color: rgba(250, 248, 242, 0.58);
  font-size: 0.92rem;
  line-height: 1.75;
}

.audience {
  display: grid;
  grid-template-columns: minmax(360px, 0.74fr) minmax(560px, 1.26fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: start;
  max-width: calc(var(--content) + (var(--pad) * 2));
  margin: 0 auto;
}

.audience-heading {
  position: sticky;
  top: 140px;
}

.audience-heading h2,
.process-heading h2,
.diagnostic-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 4.7vw, 5.3rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.audience-heading h2 em,
.diagnostic-heading h2 em {
  color: var(--forest-3);
  font-weight: 500;
}

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

.audience-card {
  min-height: 290px;
  padding: clamp(26px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: color 260ms ease, background-color 260ms ease;
}

.audience-card:hover {
  color: var(--paper);
  background: var(--forest);
}

.audience-card > span {
  color: var(--clay);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.audience-card h3 {
  margin: 58px 0 16px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.6vw, 2.65rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.08;
}

.audience-card p {
  max-width: 310px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.72;
  transition: color 260ms ease;
}

.audience-card:hover p {
  color: rgba(250, 248, 242, 0.62);
}

.solutions {
  max-width: calc(var(--content) + (var(--pad) * 2));
  margin: 0 auto;
}

.solutions-heading {
  display: grid;
  grid-template-columns: 1fr 0.6fr;
  gap: clamp(40px, 8vw, 130px);
  align-items: end;
}

.solutions-note {
  max-width: 460px;
  margin: 0 0 8px;
  color: var(--ink-soft);
  line-height: 1.8;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: clamp(60px, 8vw, 100px);
}

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 620px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--cream);
  transition: transform 280ms ease, border-color 280ms ease;
}

.solution-card:hover {
  border-color: rgba(var(--theme-rgb), 0.45);
  transform: translateY(-6px);
}

.solution-featured {
  color: var(--paper);
  background: var(--forest);
}

.solution-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.solution-featured .solution-topline {
  color: rgba(250, 248, 242, 0.52);
  border-color: var(--line-light);
}

.solution-body {
  flex: 1;
  padding: 54px 0 40px;
}

.solution-body h3 {
  margin: 0 0 32px;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 3.2vw, 3.7rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.solution-body h3 em {
  color: var(--forest-3);
  font-weight: 500;
}

.solution-featured .solution-body h3 em {
  color: var(--sage);
}

.solution-body > p {
  margin: 0 0 30px;
  color: var(--ink-soft);
  font-size: 0.89rem;
  line-height: 1.7;
}

.solution-featured .solution-body > p {
  color: rgba(250, 248, 242, 0.62);
}

.solution-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-body li {
  position: relative;
  margin: 9px 0;
  padding-left: 18px;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.solution-body li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--clay);
  border-radius: 50%;
  content: "";
}

.solution-featured .solution-body li::before {
  background: var(--sage);
}

.solution-card > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.solution-featured > a {
  border-color: var(--line-light);
}

.solution-card > a span {
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  place-items: center;
  transition: color 180ms ease, background-color 180ms ease;
}

.solution-card > a:hover span,
.solution-card > a:focus-visible span {
  color: var(--paper);
  background: var(--forest);
}

.solution-featured > a:hover span,
.solution-featured > a:focus-visible span {
  color: var(--forest);
  background: var(--sage);
}

.process {
  color: var(--forest);
  background: var(--sage);
}

.process-heading,
.process-grid {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.process-heading h2 {
  max-width: 980px;
}

.process-heading h2 em {
  color: var(--forest-3);
  font-weight: 500;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(64px, 8vw, 100px);
  border-top: 1px solid rgba(var(--theme-rgb), 0.28);
  border-left: 1px solid rgba(var(--theme-rgb), 0.28);
}

.process-step {
  min-height: 310px;
  padding: clamp(28px, 3.4vw, 48px);
  border-right: 1px solid rgba(var(--theme-rgb), 0.28);
  border-bottom: 1px solid rgba(var(--theme-rgb), 0.28);
}

.process-step > span {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(var(--theme-rgb), 0.42);
  border-radius: 50%;
  font-size: 0.6rem;
  font-weight: 700;
  place-items: center;
}

.process-step > div {
  margin-top: 78px;
}

.process-step h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.13;
}

.process-step p {
  max-width: 330px;
  margin: 0;
  color: rgba(var(--theme-rgb), 0.7);
  font-size: 0.88rem;
  line-height: 1.75;
}

.about {
  display: grid;
  grid-template-columns: minmax(390px, 0.86fr) minmax(420px, 1fr);
  gap: clamp(55px, 9vw, 145px);
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  background: var(--cream);
}

.about-visual {
  position: relative;
  justify-self: end;
  width: min(100%, 580px);
}

.about-image-wrap {
  position: relative;
  height: min(760px, 75vw);
  min-height: 610px;
  overflow: hidden;
}

.about-image-wrap::after {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(250, 248, 242, 0.42);
  content: "";
  pointer-events: none;
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
}

.about-visual > p {
  position: absolute;
  right: -53px;
  bottom: 56px;
  margin: 0;
  color: var(--forest);
  font-size: 0.59rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  transform: rotate(-90deg);
}

.about-copy {
  max-width: 680px;
}

.about-lead {
  margin: 48px 0 24px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  line-height: 1.55;
}

.about-copy > p:not(.kicker):not(.about-lead) {
  max-width: 600px;
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.96rem;
  line-height: 1.85;
}

.about-credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 48px 0 40px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-credentials > div {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 22px 15px;
  border-right: 1px solid var(--line);
}

.about-credentials > div:first-child {
  padding-left: 0;
}

.about-credentials > div:last-child {
  border-right: 0;
}

.about-credentials strong {
  color: var(--forest);
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 500;
}

.about-credentials span {
  color: var(--ink-soft);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
  text-transform: uppercase;
}

.text-link-dark {
  color: var(--forest);
  border-color: rgba(var(--theme-rgb), 0.32);
}

.text-link-dark:hover,
.text-link-dark:focus-visible {
  color: var(--forest-3);
  border-color: var(--forest-3);
}

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

.results-heading,
.results-grid {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.results-heading h2 em {
  color: var(--sage);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(70px, 9vw, 115px);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.result-item {
  position: relative;
  min-height: 190px;
  padding: 32px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: color 260ms ease, background-color 260ms ease;
}

.result-item:hover {
  color: var(--forest);
  background: var(--sage);
}

.result-item span {
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  transition: color 260ms ease;
}

.result-item:hover span {
  color: var(--forest-3);
}

.result-item p {
  position: absolute;
  right: 32px;
  bottom: 28px;
  left: 32px;
  max-width: 280px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1.25;
}

.testimonials {
  display: grid;
  grid-template-columns: 0.55fr 1.35fr;
  gap: clamp(55px, 10vw, 150px);
  max-width: calc(var(--content) + (var(--pad) * 2));
  margin: 0 auto;
}

.testimonials-label {
  position: relative;
}

.quote-mark {
  margin-top: 50px;
  color: var(--sage);
  font-family: var(--serif);
  font-size: 12rem;
  line-height: 0.55;
}

.testimonial-slider {
  position: relative;
  min-height: 430px;
  padding-bottom: 70px;
}

.testimonial {
  position: absolute;
  inset: 0 0 70px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  visibility: hidden;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 350ms ease, transform 350ms ease, visibility 350ms ease;
}

.testimonial.is-active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.testimonial blockquote {
  margin: 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(2.1rem, 4vw, 4.4rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.testimonial footer {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 42px;
}

.testimonial footer > span {
  display: grid;
  width: 48px;
  height: 48px;
  color: var(--paper);
  background: var(--forest);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 700;
  place-items: center;
}

.testimonial footer p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.7rem;
  letter-spacing: 0.07em;
  line-height: 1.6;
  text-transform: uppercase;
}

.testimonial footer strong {
  display: block;
  color: var(--ink);
  font-size: 0.78rem;
}

.slider-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.slider-controls button {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease;
}

.slider-controls button:hover,
.slider-controls button:focus-visible {
  color: var(--paper);
  background: var(--forest);
}

.slider-controls p {
  margin: 0 8px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.diagnostic {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) minmax(540px, 1.22fr);
  gap: clamp(55px, 9vw, 140px);
  max-width: calc(var(--content) + (var(--pad) * 2));
  margin: 0 auto;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.diagnostic-heading > p:last-child {
  max-width: 560px;
  margin: 36px 0 0;
  color: var(--ink-soft);
  font-size: 0.94rem;
  line-height: 1.8;
}

.diagnostic-panel {
  padding: clamp(28px, 4vw, 52px);
  color: var(--paper);
  background: var(--forest);
}

.diagnostic-panel > p:first-child {
  margin: 0 0 25px;
  color: var(--sage);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.diagnostic-options {
  border-top: 1px solid var(--line-light);
}

.diagnostic-option {
  display: grid;
  grid-template-columns: 40px 1fr 32px;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 78px;
  padding: 0 4px;
  border: 0;
  border-bottom: 1px solid var(--line-light);
  color: var(--paper);
  text-align: left;
  background: transparent;
  cursor: pointer;
  transition: color 220ms ease, padding 220ms ease, background-color 220ms ease;
}

.diagnostic-option:hover,
.diagnostic-option:focus-visible,
.diagnostic-option.is-selected {
  padding-right: 16px;
  padding-left: 16px;
  color: var(--forest);
  background: var(--sage);
  outline: none;
}

.diagnostic-option > span {
  color: var(--clay);
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.diagnostic-option strong {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 500;
}

.diagnostic-option i {
  font-style: normal;
  text-align: right;
  transition: transform 220ms ease;
}

.diagnostic-option:hover i,
.diagnostic-option:focus-visible i,
.diagnostic-option.is-selected i {
  transform: translateX(4px);
}

.diagnostic-action {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 32px;
}

.diagnostic-action > p {
  max-width: 290px;
  margin: 0;
  color: rgba(250, 248, 242, 0.52);
  font-size: 0.72rem;
  line-height: 1.6;
}

.diagnostic-action .button {
  flex: 0 0 auto;
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(55px, 9vw, 140px);
  max-width: calc(var(--content) + (var(--pad) * 2));
  margin: 0 auto;
  padding-top: 90px;
  border-top: 1px solid var(--line);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  display: grid;
  grid-template-columns: 42px 1fr 32px;
  gap: 12px;
  align-items: center;
  padding: 27px 0;
  color: var(--forest);
  font-family: var(--serif);
  font-size: clamp(1.08rem, 1.65vw, 1.42rem);
  line-height: 1.35;
  list-style: none;
  cursor: pointer;
}

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

.faq summary > span {
  color: var(--clay);
  font-family: var(--sans);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.faq summary i {
  position: relative;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.faq summary i::before,
.faq summary i::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 1px;
  background: var(--forest);
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 220ms ease;
}

.faq summary i::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq details[open] summary i::after {
  transform: translate(-50%, -50%) rotate(0);
}

.faq details > p {
  max-width: 680px;
  margin: -4px 42px 28px 54px;
  color: var(--ink-soft);
  font-size: 0.91rem;
  line-height: 1.8;
}

.contact {
  position: relative;
  display: flex;
  align-items: center;
  flex-direction: column;
  padding: clamp(110px, 13vw, 190px) var(--pad);
  overflow: hidden;
  color: var(--paper);
  text-align: center;
  background: var(--forest-2);
}

.contact-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(78vw, 1100px);
  aspect-ratio: 1;
  border: 1px solid rgba(var(--accent-rgb), 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.contact-lines::before,
.contact-lines::after {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(var(--accent-rgb), 0.1);
  border-radius: 50%;
  content: "";
}

.contact-lines::after {
  inset: 18%;
}

.contact > *:not(.contact-lines) {
  position: relative;
  z-index: 1;
}

.contact .kicker {
  margin-bottom: 34px;
}

.contact h2 {
  max-width: 1100px;
  font-size: clamp(3.1rem, 6.2vw, 7rem);
  line-height: 1.03;
}

.contact > p:not(.kicker) {
  max-width: 600px;
  margin: 40px 0;
  color: rgba(250, 248, 242, 0.62);
  font-size: 1rem;
}

.button-light {
  color: var(--forest);
  background: var(--paper);
}

.button-light:hover,
.button-light:focus-visible {
  background: var(--sage);
}

.site-footer {
  padding: 72px var(--pad) 28px;
  color: var(--paper);
  background: var(--ink);
}

.footer-main,
.footer-bottom {
  max-width: var(--content);
  margin-right: auto;
  margin-left: auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 280px 1fr 0.8fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: start;
  padding-bottom: 70px;
}

.footer-logo {
  width: 250px;
}

.footer-main > p {
  max-width: 410px;
  margin: 0;
  color: rgba(250, 248, 242, 0.54);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-style: italic;
  line-height: 1.5;
}

.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  color: rgba(250, 248, 242, 0.68);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--paper);
  border-color: var(--sage);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line-light);
  color: rgba(250, 248, 242, 0.36);
  font-size: 0.59rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-bottom a {
  color: rgba(250, 248, 242, 0.68);
}

.developer-credit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}

.developer-credit > span:first-child {
  color: rgba(250, 248, 242, 0.42);
}

.engsites-badge {
  display: inline-flex;
  align-items: center;
  transition: transform 180ms ease;
}

.engsites-badge img {
  width: 98px;
  height: auto;
}

.developer-credit:hover .engsites-badge,
.developer-credit:focus-visible .engsites-badge {
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  height: 48px;
  padding: 0 18px;
  color: var(--paper);
  background: #1d6b52;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 100px;
  box-shadow: 0 14px 35px rgba(var(--theme-shadow-rgb), 0.2);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 180ms ease, transform 180ms ease, opacity 600ms ease;
}

.js .whatsapp-float {
  opacity: 0;
  transform: translateY(16px);
}

.js.page-ready .whatsapp-float {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 600ms;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: var(--forest);
  transform: translateY(-3px);
}

.whatsapp-float svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
}

.js .reveal {
  opacity: 0;
  filter: blur(3px);
  transform: translateY(38px);
  transition: opacity 820ms cubic-bezier(0.22, 1, 0.36, 1), filter 820ms cubic-bezier(0.22, 1, 0.36, 1), transform 820ms cubic-bezier(0.22, 1, 0.36, 1), clip-path 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }
.reveal-delay-4 { transition-delay: 360ms; }

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

.js .hero h1.reveal {
  clip-path: inset(0 0 58% 0);
  transform: translateY(48px);
}

.js .hero h1.reveal.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.js .hero-visual.reveal {
  transform: translateX(52px) scale(0.97);
}

.js .hero-visual.reveal.is-visible {
  transform: translateX(0) scale(1);
}

.js .hero-visual.reveal .portrait-frame {
  clip-path: inset(0 0 16% 0);
  transition: clip-path 950ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .hero-visual.reveal.is-visible .portrait-frame {
  clip-path: inset(0 0 0 0);
}

.js .section-heading.reveal,
.js .audience-heading.reveal,
.js .process-heading.reveal,
.js .diagnostic-heading.reveal,
.js .results-heading.reveal,
.js .faq-heading.reveal {
  transform: translateY(58px);
}

.js .section-heading.reveal.is-visible,
.js .audience-heading.reveal.is-visible,
.js .process-heading.reveal.is-visible,
.js .diagnostic-heading.reveal.is-visible,
.js .results-heading.reveal.is-visible,
.js .faq-heading.reveal.is-visible {
  transform: translateY(0);
}

.js .method-item.reveal {
  transform: translateX(-42px);
}

.js .method-item:nth-child(even).reveal {
  transform: translateX(42px);
}

.js .method-item.reveal.is-visible,
.js .method-item:nth-child(even).reveal.is-visible {
  transform: translateX(0);
}

.js .solution-card.reveal,
.js .audience-card.reveal,
.js .process-step.reveal,
.js .result-item.reveal {
  transform: translateY(42px) scale(0.975);
}

.js .solution-card.reveal.is-visible,
.js .audience-card.reveal.is-visible,
.js .process-step.reveal.is-visible,
.js .result-item.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js .about-visual.reveal {
  clip-path: inset(0 0 62% 0);
  transform: translateY(20px);
}

.js .about-visual.reveal.is-visible {
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.js .diagnostic-panel.reveal {
  transform: translateX(48px);
}

.js .diagnostic-panel.reveal.is-visible {
  transform: translateX(0);
}

.faq details[open] > p {
  animation: faq-answer-in 320ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes seal-spin {
  to { transform: rotate(360deg); }
}

@keyframes scroll-line {
  0% { transform: translateY(0); }
  55%, 100% { transform: translateY(200%); }
}

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

@keyframes faq-answer-in {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .nav-shell {
    grid-template-columns: 205px 1fr 245px;
  }

  .theme-toggle-copy { display: none; }

  .theme-toggle {
    width: 40px;
    padding: 0;
    justify-content: center;
  }

  .brand { width: 190px; }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.76fr);
  }

  .hero h1 {
    font-size: clamp(3.2rem, 6.5vw, 5.4rem);
  }

  .seal {
    left: -44px;
    width: 100px;
    height: 100px;
  }

  .seal svg {
    width: 90px;
    height: 90px;
  }

  .solution-card {
    min-height: 650px;
    padding: 24px;
  }

  .solution-body h3 {
    font-size: clamp(2.15rem, 3.3vw, 3rem);
  }
}

@media (max-width: 980px) {
  .nav-shell {
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    height: 78px;
  }

  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .nav-actions { gap: 0; }

  .brand { width: 180px; }
  .menu-toggle { display: block; }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1;
    display: flex;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    padding: calc(112px + env(safe-area-inset-top)) var(--pad) calc(38px + env(safe-area-inset-bottom));
    overflow-y: auto;
    overscroll-behavior: contain;
    visibility: hidden;
    opacity: 0;
    background: var(--forest);
    transition: visibility 300ms ease, opacity 300ms ease;
  }

  .mobile-menu.is-open {
    visibility: visible;
    opacity: 1;
  }

  .mobile-menu nav {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .mobile-menu nav a {
    display: flex;
    align-items: baseline;
    gap: 20px;
    padding: 11px 0;
    font-family: var(--serif);
    font-size: clamp(2.2rem, 8vw, 4.2rem);
    line-height: 1.08;
    opacity: 0;
    transform: translateX(-18px);
    transition: opacity 420ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-menu.is-open nav a {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-menu.is-open nav a:nth-child(1) { transition-delay: 70ms; }
  .mobile-menu.is-open nav a:nth-child(2) { transition-delay: 120ms; }
  .mobile-menu.is-open nav a:nth-child(3) { transition-delay: 170ms; }
  .mobile-menu.is-open nav a:nth-child(4) { transition-delay: 220ms; }
  .mobile-menu.is-open nav a:nth-child(5) { transition-delay: 270ms; }

  .mobile-menu nav a span {
    color: var(--sage);
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 700;
  }

  .mobile-menu > p {
    margin: 0;
    color: rgba(250, 248, 242, 0.48);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.13em;
    line-height: 1.7;
    text-transform: uppercase;
  }

  .hero {
    grid-template-columns: 1fr 0.8fr;
    min-height: 800px;
    padding-top: 120px;
  }

  .hero::before { width: 42%; }
  .hero-copy { margin-right: 40px; }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .portrait-frame {
    min-height: 540px;
  }

  .seal {
    top: 58px;
    left: -35px;
  }

  .vision,
  .method-top,
  .solutions-heading,
  .diagnostic,
  .testimonials,
  .faq {
    grid-template-columns: 1fr;
  }

  .audience {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .audience-heading {
    position: static;
    max-width: 760px;
  }

  .vision-intro {
    max-width: 680px;
  }

  .tension-card {
    min-height: 360px;
    padding-right: 26px;
    padding-left: 26px;
  }

  .method-top { gap: 44px; }
  .method-intro { max-width: 650px; }

  .method-item {
    grid-template-columns: 60px 105px 1fr;
  }

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

  .solution-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 32px;
    min-height: 0;
  }

  .solution-topline {
    grid-column: 1 / -1;
  }

  .solution-body {
    padding: 30px 0 10px;
  }

  .solution-card > a {
    align-self: end;
    margin-bottom: 10px;
  }

  .diagnostic {
    gap: 48px;
  }

  .about {
    grid-template-columns: 0.85fr 1fr;
    gap: 48px;
  }

  .about-copy h2 {
    font-size: clamp(2.7rem, 5vw, 4.6rem);
  }

  .about-credentials {
    grid-template-columns: 1fr;
  }

  .about-credentials > div,
  .about-credentials > div:first-child {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-credentials > div:last-child { border-bottom: 0; }

  .testimonials { gap: 20px; }
  .quote-mark { display: none; }
  .testimonial-slider { min-height: 470px; }

  .faq { gap: 55px; }

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

  .footer-main > p { order: 3; }
}

@media (max-width: 720px) {
  :root {
    --pad: 22px;
  }

  html { scroll-padding-top: 76px; }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 120px var(--pad) 48px;
  }

  .hero::before {
    top: auto;
    width: 100%;
    height: 43%;
  }

  .hero-copy {
    width: 100%;
    margin: 0;
  }

  .eyebrow {
    margin-bottom: 20px;
    font-size: 0.59rem;
  }

  .eyebrow span { width: 24px; }

  .hero h1 {
    font-size: clamp(3.25rem, 14.5vw, 5rem);
    line-height: 0.96;
  }

  .hero-lead {
    margin-top: 26px;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .hero-actions {
    gap: 19px;
    margin-top: 30px;
  }

  .button {
    width: 100%;
    min-height: 56px;
    padding: 0 18px;
  }

  .hero-proof {
    margin-top: 42px;
  }

  .proof-number { font-size: 3.2rem; }

  .hero-visual {
    align-self: center;
    width: calc(100% - 22px);
    margin-top: 48px;
    padding: 0;
  }

  .portrait-frame {
    width: 100%;
    height: 124vw;
    min-height: 0;
    max-height: 620px;
  }

  .seal {
    top: -35px;
    left: -18px;
    width: 88px;
    height: 88px;
  }

  .seal svg {
    inset: 4px;
    width: 80px;
    height: 80px;
  }

  .portrait-caption,
  .scroll-cue {
    display: none;
  }

  .ticker-track { padding: 15px 0; }
  .ticker span { padding: 0 26px; }

  .section {
    padding-top: 88px;
    padding-bottom: 88px;
  }

  .section-heading h2,
  .about-copy h2,
  .results-heading h2,
  .faq-heading h2 {
    font-size: clamp(2.8rem, 13vw, 4.3rem);
    line-height: 1.01;
  }

  .kicker {
    margin-bottom: 20px;
    font-size: 0.6rem;
  }

  .vision {
    gap: 42px;
  }

  .audience-heading h2,
  .process-heading h2,
  .diagnostic-heading h2 {
    font-size: clamp(2.8rem, 12vw, 4.2rem);
  }

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

  .audience-card {
    min-height: 260px;
  }

  .audience-card h3 {
    margin-top: 45px;
  }

  .vision-intro {
    padding-left: 20px;
  }

  .tension-grid {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .tension-card,
  .tension-card:last-child {
    min-height: 320px;
    padding: 28px 18px 34px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .tension-card:last-child { border-bottom: 0; }
  .tension-card svg { margin: 48px 0 28px; }

  .manifesto {
    min-height: 540px;
    padding: 100px var(--pad) 70px;
  }

  .manifesto-label {
    top: 34px;
    left: var(--pad);
  }

  .manifesto-copy {
    font-size: clamp(2.6rem, 11.6vw, 4rem);
  }

  .method-intro {
    padding-left: 20px;
  }

  .method-list {
    margin-top: 60px;
  }

  .method-item {
    grid-template-columns: 42px 65px 1fr;
    min-height: 170px;
  }

  .method-icon {
    width: 54px;
    height: 54px;
  }

  .method-icon svg {
    width: 28px;
    height: 28px;
  }

  .method-content {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .method-content h3 {
    font-size: 2.35rem;
  }

  .method-content p {
    font-size: 0.82rem;
  }

  .solution-grid { margin-top: 50px; }

  .solution-card {
    display: flex;
    min-height: 600px;
    padding: 24px;
  }

  .solution-body {
    flex: 1;
    padding: 48px 0 34px;
  }

  .solution-body h3 {
    font-size: 2.75rem;
  }

  .process-grid {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .process-step {
    min-height: 260px;
  }

  .process-step > div {
    margin-top: 54px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-top: var(--pad);
  }

  .about-visual {
    justify-self: center;
    width: calc(100% - 18px);
  }

  .about-image-wrap {
    height: 126vw;
    min-height: 0;
    max-height: 680px;
  }

  .about-visual > p {
    right: -46px;
  }

  .about-lead {
    margin-top: 34px;
  }

  .results-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .result-item { min-height: 150px; }

  .testimonial-slider {
    min-height: 520px;
  }

  .testimonial blockquote {
    font-size: clamp(2rem, 9vw, 3.1rem);
  }

  .diagnostic {
    padding-top: 58px;
  }

  .diagnostic-heading > p:last-child {
    margin-top: 28px;
  }

  .diagnostic-panel {
    padding: 28px 20px;
  }

  .diagnostic-option {
    grid-template-columns: 32px 1fr 24px;
    min-height: 72px;
  }

  .diagnostic-action {
    align-items: stretch;
    flex-direction: column;
  }

  .diagnostic-action .button {
    width: 100%;
  }

  .faq { padding-top: 70px; }

  .faq summary {
    grid-template-columns: 30px 1fr 28px;
    gap: 8px;
  }

  .faq details > p {
    margin-right: 8px;
    margin-left: 38px;
  }

  .contact {
    padding-top: 110px;
    padding-bottom: 110px;
  }

  .contact h2 {
    font-size: clamp(3rem, 13.5vw, 5rem);
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-bottom: 50px;
  }

  .footer-logo { width: 230px; }
  .footer-main > p { order: initial; }

  .footer-links {
    align-items: flex-start;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span { display: none; }
}

@media (max-width: 390px) {
  .brand { width: 162px; }
  .hero h1 { font-size: 3rem; }
  .method-item { grid-template-columns: 34px 56px 1fr; }
  .method-icon { width: 46px; height: 46px; }
  .testimonial-slider { min-height: 560px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .js .reveal {
    opacity: 1;
    filter: none;
    clip-path: none;
    transform: none;
  }

  .js .site-header,
  .js.page-ready .site-header,
  .js.page-ready .site-header.is-hidden,
  .js .whatsapp-float,
  .js.page-ready .whatsapp-float {
    opacity: 1;
    transform: none;
  }

  .js .site-header,
  .js.page-ready .site-header,
  .js.page-ready .site-header.is-hidden {
    top: 0;
  }
}
