:root {
  --ink: #27362f;
  --ink-soft: #536159;
  --forest: #2b473c;
  --forest-deep: #1b2d26;
  --accent: #a65339;
  --accent-soft: #e6a087;
  --paper: #f2ece2;
  --paper-light: #fffcf7;
  --white: #ffffff;
  --line: rgba(39, 54, 47, 0.16);
  --line-light: rgba(255, 255, 255, 0.2);
  --shadow: 0 18px 70px rgba(39, 54, 47, 0.15);
  --shell: 1280px;
  --header-height: 88px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper-light);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.02;
}

h2 {
  margin-bottom: 26px;
  font-size: clamp(2.5rem, 4.4vw, 5rem);
  font-weight: 720;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
}

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  height: var(--header-height);
  color: var(--white);
  transition: background 220ms ease, box-shadow 220ms ease, height 220ms ease;
}

.site-header:not(.is-scrolled):not(.is-menu-open) {
  color: var(--ink);
  background: rgba(249, 246, 240, 0.92);
  backdrop-filter: blur(18px);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .brand-name,
.site-header:not(.is-scrolled):not(.is-menu-open) .main-nav > a:not(.nav-cta) {
  color: rgba(39, 54, 47, 0.72);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .language-switch,
.site-header:not(.is-scrolled):not(.is-menu-open) .nav-toggle {
  border-color: rgba(39, 54, 47, 0.18);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .language-switch button {
  color: rgba(39, 54, 47, 0.62);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .language-switch button[aria-pressed="true"] {
  color: var(--white);
  background: var(--ink);
}

.site-header:not(.is-scrolled):not(.is-menu-open) .nav-cta {
  color: var(--white);
  background: var(--ink);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 76px;
  background: rgba(43, 71, 60, 0.96);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 64px), 1380px);
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: max-content;
  line-height: 1;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.brand-mark {
  font-size: 1.2rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}

.brand-mark b {
  color: var(--accent-soft);
}

.brand-name {
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.67rem;
  font-weight: 650;
  letter-spacing: 0.025em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.87rem;
  font-weight: 650;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  transition: color 180ms ease;
}

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--accent-soft);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav > a:not(.nav-cta):hover,
.main-nav > a.is-active {
  color: var(--white);
}

.main-nav > a:not(.nav-cta):hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 3px;
  padding: 3px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
}

.language-switch button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.62);
  background: transparent;
  cursor: pointer;
  place-items: center;
  font-size: 0.69rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease;
}

.language-switch button[aria-pressed="true"] {
  color: var(--ink);
  background: var(--white);
}

.nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.12);
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.nav-cta:hover {
  color: var(--white);
  background: var(--accent);
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  position: relative;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle > span:not(.sr-only) {
  position: absolute;
  left: 13px;
  width: 18px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease, top 180ms ease;
}

.nav-toggle > span:first-child {
  top: 18px;
}

.nav-toggle > span:nth-child(2) {
  top: 26px;
}

.site-header.is-menu-open .nav-toggle > span:first-child {
  top: 22px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .nav-toggle > span:nth-child(2) {
  top: 22px;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  display: block;
  min-height: 100svh;
  overflow: hidden;
  color: var(--ink);
  background: var(--paper-light);
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 52%, rgba(255, 229, 202, 0.42), transparent 36%),
    linear-gradient(90deg, #fff8ef 0%, var(--paper-light) 55%, #eef2ec 100%);
  content: "";
}

.hero-media {
  position: absolute;
  z-index: 1;
  top: calc(var(--header-height) + 34px);
  right: max(32px, calc((100vw - 1380px) / 2));
  bottom: 34px;
  width: min(45vw, 640px);
  overflow: hidden;
  border-radius: 34px;
  background: #f0eee8;
  box-shadow: 0 28px 80px rgba(39, 54, 47, 0.14);
}

.hero-media picture,
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 50% 50%;
  transform: scale(1.015) translate3d(0, var(--hero-shift, 0), 0);
  transition: transform 80ms linear;
}

.hero-shade {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(52vw, 710px);
  padding: calc(var(--header-height) + 104px) 0 80px max(5vw, calc((100vw - 1380px) / 2));
}

.hero-eyebrow,
.kicker {
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-transform: uppercase;
}

.hero-eyebrow {
  color: var(--accent);
}

.hero h1 {
  max-width: 10.8ch;
  margin-bottom: 30px;
  font-size: clamp(4rem, 5.7vw, 5.8rem);
  font-weight: 720;
  line-height: 0.96;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 1.35vw, 1.3rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  padding: 0 22px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  font-size: 0.91rem;
  font-weight: 760;
  transition: color 180ms ease, background 180ms ease, border 180ms ease, transform 180ms ease;
}

.button span:last-child {
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button:hover span:last-child {
  transform: translate(3px, -3px);
}

.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 42px rgba(39, 54, 47, 0.2);
}

.button-primary:hover {
  background: var(--accent);
}

.button-quiet {
  border-color: rgba(39, 54, 47, 0.28);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
}

.button-quiet:hover {
  border-color: var(--ink);
  background: var(--white);
}

.hero-note {
  margin-bottom: 0;
  color: rgba(39, 54, 47, 0.62);
  font-size: 0.79rem;
  font-weight: 650;
  letter-spacing: 0.035em;
}

.hero-caption {
  position: absolute;
  z-index: 2;
  right: max(70px, calc((100vw - 1380px) / 2 + 38px));
  bottom: 70px;
  display: flex;
  max-width: 300px;
  padding-left: 18px;
  border-left: 2px solid var(--accent-soft);
  color: var(--white);
  flex-direction: column;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.55);
}

.hero-caption span {
  margin-bottom: 3px;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-caption strong {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  font-weight: 560;
  line-height: 1.4;
}

.hero-scroll {
  display: none;
}

.hero-scroll span {
  width: 1px;
  height: 30px;
  overflow: hidden;
  background: rgba(39, 54, 47, 0.18);
}

.hero-scroll span::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--ink);
  content: "";
  animation: scroll-line 1.8s ease-in-out infinite;
}

.hero-enter {
  opacity: 0;
  animation: hero-in 800ms cubic-bezier(0.2, 0.75, 0.2, 1) forwards;
  transform: translateY(24px);
}

.hero-content h1 {
  animation-delay: 90ms;
}

.hero-lead {
  animation-delay: 180ms;
}

.hero-actions {
  animation-delay: 270ms;
}

.hero-note,
.hero-caption {
  animation-delay: 360ms;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.section {
  position: relative;
}

.section-shell,
.method-shell {
  width: min(calc(100% - 80px), var(--shell));
  margin: 0 auto;
}

.outcome {
  padding: 150px 0 130px;
  background: var(--paper);
}

.section-intro {
  display: grid;
  margin-bottom: 86px;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 10vw;
  align-items: end;
}

.section-intro h2 {
  max-width: 900px;
  margin-bottom: 0;
}

.section-intro > p:last-child {
  max-width: 480px;
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.outcome-list {
  display: grid;
  margin-bottom: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.outcome-list article {
  min-height: 290px;
  padding: 38px 42px 42px 0;
}

.outcome-list article + article {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.outcome-list article > span,
.step-number {
  display: inline-block;
  margin-bottom: 68px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.outcome-list h3 {
  margin-bottom: 14px;
}

.outcome-list p {
  max-width: 300px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.session-result {
  display: grid;
  padding-top: 38px;
  border-top: 4px solid var(--accent);
  grid-template-columns: 0.7fr 1.55fr 0.75fr;
  gap: 48px;
  align-items: start;
}

.session-result .kicker {
  margin-bottom: 0;
}

.session-result h3 {
  margin-bottom: 0;
  font-size: clamp(1.65rem, 2.5vw, 2.65rem);
  line-height: 1.08;
}

.session-result > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.services {
  padding: 150px 0 130px;
  color: var(--white);
  background: var(--forest-deep);
}

.services-shell {
  width: min(calc(100% - 80px), var(--shell));
  margin: 0 auto;
}

.services-intro {
  display: grid;
  margin-bottom: 82px;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 8vw;
  align-items: end;
}

.services-intro .kicker {
  margin-bottom: 20px;
  grid-column: 1 / -1;
}

.services .kicker,
.service-number,
.service-italian {
  color: var(--accent-soft);
}

.services-intro h2 {
  max-width: 900px;
  margin-bottom: 0;
  color: var(--white);
  grid-column: 1;
  grid-row: 2;
}

.services-intro > p:last-child {
  max-width: 420px;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 1.06rem;
  grid-column: 2;
  grid-row: 2;
}

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

.service-list article {
  display: grid;
  padding: 48px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 58px minmax(260px, 0.95fr) minmax(300px, 1.15fr) minmax(150px, 0.55fr);
  gap: 34px;
  align-items: center;
}

.service-number {
  align-self: start;
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.service-for {
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.service-name h3 {
  max-width: 430px;
  margin-bottom: 6px;
  color: var(--white);
  font-size: clamp(1.75rem, 2.8vw, 3rem);
}

.service-italian {
  margin-bottom: 0;
  font-size: 0.88rem;
  font-weight: 720;
}

.service-copy {
  max-width: 520px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.service-link {
  justify-self: end;
  border-color: rgba(255, 255, 255, 0.56);
  color: var(--white);
}

.service-link:hover {
  border-color: var(--accent-soft);
  color: var(--accent-soft);
}

.method {
  padding: 150px 0 0;
  background: var(--paper-light);
}

.method-shell {
  display: grid;
  padding-bottom: 140px;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 9vw;
  align-items: start;
}

.method-intro {
  position: sticky;
  top: 130px;
}

.method-intro h2 {
  max-width: 620px;
}

.method-intro > p:not(.kicker) {
  max-width: 430px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.text-link {
  display: inline-flex;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--ink);
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 760;
  transition: color 180ms ease, border 180ms ease;
}

.text-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.method-steps article {
  display: grid;
  min-height: 280px;
  padding: 44px 0;
  border-top: 1px solid var(--line);
  grid-template-columns: 90px 1fr;
  gap: 16px;
}

.method-steps article:last-child {
  border-bottom: 1px solid var(--line);
}

.method-steps .step-number {
  margin-bottom: 0;
}

.step-label {
  margin-bottom: 20px;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.method-steps h3 {
  max-width: 550px;
  margin-bottom: 16px;
  font-size: clamp(1.75rem, 2.7vw, 3rem);
}

.method-steps article p:last-child {
  max-width: 540px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.workflow-strip {
  display: grid;
  padding: 62px max(5vw, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--ink);
  gap: 48px;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 2fr);
}

.workflow-strip-intro .kicker {
  color: var(--sand);
}

.workflow-strip-intro h3 {
  max-width: 460px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.25vw, 2.35rem);
  font-weight: 500;
  line-height: 1.14;
}

.workflow-outcomes {
  display: grid;
  border-top: 1px solid var(--line-light);
  grid-template-columns: repeat(3, 1fr);
}

.workflow-outcomes article {
  min-height: 190px;
  padding: 28px 30px 18px;
  border-left: 1px solid var(--line-light);
}

.workflow-outcomes article:last-child {
  border-right: 1px solid var(--line-light);
}

.workflow-outcomes p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.94rem;
  line-height: 1.55;
}

.workflow-outcomes .workflow-outcome-label {
  margin-bottom: 22px;
  color: var(--sand);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.about {
  display: grid;
  min-height: 780px;
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 1fr 1fr;
}

.about-media {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  margin: 0;
}

.about-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 68%, var(--forest) 100%);
  content: "";
}

.about-media picture,
.about-media img {
  width: 100%;
  height: 100%;
}

.about-media img {
  object-fit: cover;
  object-position: 50% center;
}

.ai-image-disclosure {
  position: absolute;
  z-index: 2;
  bottom: 24px;
  left: 24px;
  display: inline-flex;
  max-width: calc(100% - 48px);
  padding: 7px 12px 7px 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(43, 71, 60, 0.88);
  backdrop-filter: blur(10px);
  font-size: 0.7rem;
  font-weight: 720;
  letter-spacing: 0.045em;
  border-radius: 999px;
  gap: 8px;
  align-items: center;
}

.ai-image-disclosure .eu-ai-label {
  width: 96px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.about-copy {
  display: flex;
  max-width: 720px;
  padding: 110px max(5vw, 80px) 100px 7vw;
  flex-direction: column;
  justify-content: center;
}

.about-copy .kicker {
  color: var(--accent-soft);
}

.about-copy h2 {
  font-size: clamp(2.6rem, 4vw, 4.8rem);
}

.about-lead {
  margin-bottom: 22px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 620;
}

.about-copy > p:not(.kicker):not(.about-lead):not(.independence-note) {
  color: rgba(255, 255, 255, 0.68);
}

.about-facts {
  margin: 42px 0 30px;
  border-top: 1px solid var(--line-light);
}

.about-facts div {
  display: grid;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
  grid-template-columns: 130px 1fr;
  gap: 26px;
  align-items: baseline;
}

.about-facts dt {
  color: var(--accent-soft);
  font-size: 1rem;
  font-weight: 850;
}

.about-facts dd {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.independence-note {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.75rem;
}

.final-cta {
  display: grid;
  padding: 120px max(5vw, calc((100vw - 1280px) / 2));
  color: var(--white);
  background: var(--forest);
  grid-template-columns: 1.3fr 0.7fr;
  gap: 10vw;
  align-items: end;
}

.final-cta .kicker {
  color: var(--white);
  opacity: 0.72;
}

.final-copy h2 {
  max-width: 850px;
  margin-bottom: 24px;
}

.final-copy > p:last-child {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.05rem;
}

.final-action {
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
}

.final-action p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.83rem;
}

.final-action p:first-child {
  display: flex;
  margin-bottom: 4px;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}

.final-action strong {
  color: var(--white);
  font-size: 2.2rem;
  letter-spacing: -0.04em;
}

.button-light {
  width: 100%;
  margin-top: 18px;
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.button-light:hover {
  color: var(--white);
  background: var(--ink);
}

.site-footer {
  display: flex;
  padding: 62px max(5vw, calc((100vw - 1280px) / 2));
  color: rgba(255, 255, 255, 0.64);
  background: var(--forest-deep);
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.footer-brand {
  margin-bottom: 20px;
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  font-size: 0.77rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  font-size: 0.75rem;
  font-weight: 650;
}

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

html.js [data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

html.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 18px;
  }

  .main-nav > a:not(.nav-cta) {
    display: none;
  }

  .language-switch button {
    width: 42px;
    height: 42px;
  }

  .hero-content {
    width: 54vw;
  }

  .hero h1 {
    font-size: clamp(3.7rem, 8vw, 6.4rem);
  }

  .session-result {
    grid-template-columns: 0.6fr 1.4fr;
  }

  .session-result > p:last-child {
    grid-column: 2;
  }

  .about-copy {
    padding-right: 48px;
    padding-left: 56px;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 76px;
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: var(--header-height);
  }

  .nav-shell {
    width: calc(100% - 36px);
  }

  .nav-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    z-index: -1;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    min-height: calc(100svh - var(--header-height));
    padding: 44px 22px;
    color: var(--white);
    background: rgba(43, 71, 60, 0.985);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-16px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.is-menu-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav > a:not(.nav-cta) {
    display: block;
    padding: 18px 0;
    border-bottom: 1px solid var(--line-light);
    color: var(--white);
    font-size: 1.35rem;
  }

  .main-nav > a:not(.nav-cta)::after {
    display: none;
  }

  .language-switch {
    width: max-content;
    margin: 30px 0;
  }

  .nav-cta {
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-bottom: 44px;
    align-items: flex-start;
  }

  .site-header {
    color: var(--ink);
    background: rgba(249, 246, 240, 0.97);
    backdrop-filter: blur(16px);
  }

  .hero-media {
    position: relative;
    inset: auto;
    width: calc(100% - 32px);
    height: 300px;
    margin: calc(var(--header-height) + 16px) 16px 0;
    border-radius: 24px;
    box-shadow: 0 20px 54px rgba(39, 54, 47, 0.13);
  }

  .hero-media img {
    object-position: 57% 20%;
    transform: scale(1.08);
    transform-origin: 57% 20%;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, transparent 76px, rgba(249, 246, 240, 0.02) 76px, rgba(249, 246, 240, 0.08) 250px, var(--paper-light) 341px, var(--paper-light) 100%);
  }

  .hero-content {
    width: 100%;
    padding: 28px 22px 0;
  }

  .hero h1 {
    max-width: 11ch;
    margin-bottom: 20px;
    font-size: clamp(2.75rem, 11.4vw, 4.2rem);
    line-height: 0.98;
  }

  .hero-lead {
    max-width: 540px;
    margin-bottom: 22px;
    font-size: 1rem;
  }

  .hero-caption {
    display: none;
  }

  .hero .button-quiet,
  .hero-note {
    display: none;
  }

  .hero-actions {
    margin-bottom: 0;
  }

  .hero-scroll {
    display: none;
  }

  .section-shell,
  .method-shell,
  .services-shell {
    width: calc(100% - 44px);
  }

  .outcome,
  .method,
  .services {
    padding-top: 100px;
  }

  .services {
    padding-bottom: 90px;
  }

  .services-intro {
    margin-bottom: 56px;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-intro .kicker,
  .services-intro h2,
  .services-intro > p:last-child {
    grid-column: 1;
    grid-row: auto;
  }

  .service-list article {
    padding: 38px 0;
    grid-template-columns: 48px 1fr;
    gap: 20px;
    align-items: start;
  }

  .service-copy,
  .service-link {
    grid-column: 2;
  }

  .service-link {
    justify-self: start;
  }

  .section-intro,
  .method-shell,
  .about,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .section-intro {
    gap: 28px;
  }

  .section-intro h2 {
    margin-bottom: 0;
  }

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

  .outcome-list article,
  .outcome-list article + article {
    display: grid;
    min-height: auto;
    padding: 34px 0;
    border-left: 0;
    grid-template-columns: 64px 0.7fr 1.3fr;
    gap: 16px;
    align-items: start;
  }

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

  .outcome-list article > span {
    margin-bottom: 0;
  }

  .outcome-list h3,
  .outcome-list p {
    margin-bottom: 0;
  }

  .session-result {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .session-result > p:last-child {
    grid-column: auto;
  }

  .method-shell {
    padding-bottom: 100px;
    gap: 65px;
  }

  .method-intro {
    position: static;
  }

  .method-steps article {
    min-height: auto;
  }

  .workflow-strip {
    padding: 46px 22px;
    gap: 34px;
    grid-template-columns: 1fr;
  }

  .workflow-outcomes {
    grid-template-columns: 1fr;
  }

  .workflow-outcomes article,
  .workflow-outcomes article:last-child {
    min-height: auto;
    padding: 24px 0;
    border-right: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .workflow-outcomes .workflow-outcome-label {
    margin-bottom: 8px;
  }

  .about-media {
    min-height: 520px;
  }

  .about-media::after {
    background: linear-gradient(180deg, transparent 72%, var(--forest) 100%);
  }

  .about-copy {
    max-width: none;
    padding: 80px 22px 90px;
  }

  .final-cta {
    padding: 90px 22px;
    gap: 60px;
  }

  .final-action {
    max-width: 520px;
  }

  .site-footer {
    padding: 56px 22px;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .brand {
    gap: 0;
  }

  .brand-mark {
    font-size: 0.92rem;
  }

  .brand-name {
    font-size: 0.58rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding-right: 20px;
    padding-left: 20px;
  }

  .hero-caption {
    display: none;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: clamp(2.65rem, 11vw, 3.35rem);
  }

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

  .hero-actions .button-quiet {
    display: none;
  }

  .button {
    width: 100%;
  }

  h2 {
    font-size: clamp(2.35rem, 12vw, 3.5rem);
  }

  .outcome {
    padding-bottom: 90px;
  }

  .section-intro {
    margin-bottom: 62px;
  }

  .outcome-list {
    margin-bottom: 76px;
  }

  .outcome-list article,
  .outcome-list article + article {
    grid-template-columns: 48px 1fr;
  }

  .outcome-list p {
    padding-top: 8px;
    grid-column: 2;
  }

  .method-steps article {
    grid-template-columns: 48px 1fr;
  }

  .method-steps h3 {
    font-size: 1.85rem;
  }

  .about-media {
    min-height: 420px;
  }

  .about-facts div {
    grid-template-columns: 100px 1fr;
  }

  .final-action p:first-child {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .site-footer nav {
    flex-direction: column;
    gap: 12px;
  }
}

@media (max-width: 520px) and (max-height: 720px) {
  .hero {
    padding-bottom: 28px;
  }

  .hero-media {
    height: 244px;
  }

  .hero-content {
    padding-top: 22px;
  }

  .hero-eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: clamp(2.4rem, 10.5vw, 2.75rem);
  }

  .hero-lead {
    margin-bottom: 18px;
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .hero-note {
    display: none;
  }
}

@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;
  }
}
