@font-face {
  font-family: Montserrat;
  src: url("./fonts/montserrat-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}
@font-face {
  font-family: "Source Serif 4";
  src: url("./fonts/source-serif-4-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 900;
  font-display: swap;
}
:root {
  --green: #0f3d2e;
  --leaf: #2e7d32;
  --sage: #a7c957;
  --terracotta: #d96b45;
  --paper: #f8f4eb;
  --ink: #22302b;
  --muted: #59635c;
  --terracotta-ink: #9e492d;
  --surface: color-mix(in srgb, var(--paper) 40%, white);
  --tint: color-mix(in srgb, var(--sage) 12%, var(--paper));
  --line: rgb(15 61 46 / 17%);
  --line-inverse: rgb(248 244 235 / 24%);
  --serif: "Source Serif 4", Georgia, serif;
  --sans: Montserrat, Arial, sans-serif;
  --radius: 10px;
  --shadow: 0 4px 16px rgb(15 61 46 / 8%);
  --content-width: 1280px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 114px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 15px/1.8 var(--sans);
  -webkit-font-smoothing: antialiased;
}
::selection {
  color: var(--green);
  background: var(--sage);
}
p,
h1,
h2,
h3,
h4,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  color: var(--green);
  font-family: var(--serif);
  font-weight: 550;
  line-height: 1.12;
  letter-spacing: -0.04em;
}
h2 {
  font-size: clamp(34px, 3.6vw, 49px);
}
h3 {
  font-size: 29px;
}
em {
  font-style: normal;
  color: var(--leaf);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
a,
button {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled,
input:disabled {
  cursor: default;
}
img {
  display: block;
  max-width: 100%;
}
svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.decision-point {
  fill: var(--terracotta);
  stroke: none;
}
.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
[hidden] {
  display: none !important;
}
:focus-visible {
  outline: 3px solid var(--leaf);
  outline-offset: 5px;
}
.analysis-section :focus-visible,
.contact :focus-visible {
  outline-color: var(--sage);
}
.consultation :focus-visible {
  outline-color: var(--leaf);
}
.container {
  width: min(var(--content-width), calc(100% - 80px));
  margin-inline: auto;
}
.section-space {
  padding-block: 100px;
}
.eyebrow {
  font-size: 11px;
  line-height: 1.7;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--green);
}
.section-heading {
  display: grid;
  grid-template-columns: 1.12fr 1fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 48px;
}
.section-heading .eyebrow {
  margin-bottom: 20px;
}
.section-heading > p {
  color: var(--muted);
  max-width: 450px;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--green);
  color: var(--paper);
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.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;
}
/* Navegación y marca existente. */
.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 94px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--green);
  flex-shrink: 0;
}
.brand img {
  width: 65px;
  height: 52px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.brand-type {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 650;
  letter-spacing: -1.6px;
  line-height: 1;
}
.brand-tagline {
  display: block;
  font-family: var(--sans);
  font-size: 7px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 9px;
  text-align: center;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 27px;
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}
.main-nav > a {
  padding: 13px 0;
  position: relative;
  white-space: nowrap;
}
.main-nav > a:not(.nav-contact):not(.nav-client)::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s;
}
.main-nav > a:hover::after,
.main-nav > a[aria-current]::after {
  transform: scaleX(1);
}
.main-nav .nav-contact,
.main-nav .nav-client {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--paper);
  background: var(--green);
  transition: background 0.2s;
}
.main-nav .nav-contact:hover {
  background: var(--leaf);
}
.main-nav .nav-client {
  gap: 12px;
  color: var(--green);
  background: transparent;
  border-color: var(--green);
}
.main-nav .nav-client:hover {
  background: var(--sage);
}
.nav-contact svg,
.nav-client svg {
  width: 17px;
  height: 17px;
}
.menu-toggle {
  display: none;
}
/* Acciones comunes. */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button svg {
  width: 18px;
  height: 18px;
}
.button:hover {
  transform: translateY(-2px);
}
.button-primary {
  color: var(--paper);
  background: var(--green);
  box-shadow: var(--shadow);
}
.button-primary:hover {
  background: var(--leaf);
}
.button-lime {
  background: var(--sage);
  color: var(--green);
}
.button-lime:hover {
  background: color-mix(in srgb, var(--sage) 80%, white);
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 11px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--green);
}
.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.text-link:hover {
  border-color: currentColor;
}
.text-link:hover svg {
  transform: translate(2px, -2px);
}
/* El recorrido: pregunta, servicio, ejemplo, proyecto y equipo. */
.chapter {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.7;
  color: var(--green);
  margin-bottom: 25px;
}
.chapter > span {
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0;
  color: var(--terracotta-ink);
  padding-right: 13px;
  border-right: 1px solid var(--line);
}
.little-line {
  display: inline-block;
  width: 28px;
  height: 3px;
  background: var(--terracotta);
  flex-shrink: 0;
}
.hero {
  padding-top: 38px;
}
.hero-stage {
  display: grid;
  grid-template-columns: 1.02fr 1fr;
  gap: 58px;
  align-items: center;
}
.hero-copy {
  padding-block: 28px;
}
.hero-copy > .eyebrow {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 10px;
  letter-spacing: 0.11em;
  margin-bottom: 28px;
}
.hero h1 {
  font-size: clamp(48px, 4.75vw, 68px);
  line-height: 1.06;
  letter-spacing: -0.055em;
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  max-width: 485px;
  margin-block: 28px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 24px;
}
.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding-block: 10px;
  font-size: 12px;
  border-bottom: 1px solid var(--line);
  color: var(--green);
}
.hero-secondary svg {
  width: 16px;
  height: 16px;
}
.hero-secondary:hover {
  border-color: var(--green);
}
.hero-location {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 11px;
}
.hero-location svg {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.hero-visual {
  position: relative;
  align-self: stretch;
  min-height: 610px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--tint);
}
.hero-visual picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 67% 50%;
}
.photo-note {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 24px;
  background: var(--paper);
  border-radius: var(--radius);
}
.photo-note > svg {
  width: 35px;
  height: 35px;
  color: var(--green);
}
.photo-note .eyebrow {
  display: block;
  font-size: 10px;
  margin-bottom: 10px;
}
.photo-note p {
  font-family: var(--serif);
  font-size: 29px;
  color: var(--green);
  line-height: 1.18;
  letter-spacing: -0.03em;
}
.hero-routes {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  margin-top: 35px;
  border-block: 1px solid var(--line);
  align-items: center;
  padding-block: 18px;
  gap: 15px;
}
.hero-routes > span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 500;
}
.hero-routes a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-left: 1px solid var(--line);
  padding: 10px 17px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--green);
  transition: color 0.2s;
}
.hero-routes a:hover {
  color: var(--leaf);
}
.hero-routes svg {
  width: 17px;
  height: 17px;
  color: var(--terracotta-ink);
}
/* Catálogo: preguntas visibles y alcance desplegable con entrega concreta. */
.services {
  padding-block: 112px;
}
.services-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 85px;
  align-items: start;
}
.services-intro {
  position: sticky;
  top: 140px;
}
.services-intro h2 {
  font-size: clamp(37px, 3.4vw, 48px);
}
.services-intro > p:not(.chapter) {
  margin-top: 26px;
  max-width: 365px;
  font-size: 14px;
  color: var(--muted);
}
.services-signature {
  display: block;
  margin-top: 38px;
  padding-left: 20px;
  border-left: 3px solid var(--terracotta);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.35;
  color: var(--green);
}
.service {
  scroll-margin-top: 10px;
  border-top: 1px solid var(--line);
}
.service:last-of-type {
  border-bottom: 1px solid var(--line);
}
.service > summary {
  list-style: none;
  display: grid;
  grid-template-columns: 26px 1fr 22px;
  gap: 20px;
  padding: 27px 4px;
  cursor: pointer;
  color: var(--green);
}
.service > summary::-webkit-details-marker {
  display: none;
}
.service-number {
  font-size: 11px;
  padding-top: 2px;
  color: var(--terracotta-ink);
  font-variant-numeric: tabular-nums;
}
.service-heading {
  display: block;
}
.service-heading .eyebrow {
  display: block;
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.11em;
  color: var(--muted);
  margin-bottom: 9px;
}
.service-question {
  display: block;
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.2;
  letter-spacing: -0.025em;
}
.service-toggle {
  width: 21px;
  height: 21px;
  align-self: center;
  transition: transform 0.2s;
}
.service[open] .service-toggle {
  transform: rotate(45deg);
}
.service[open] .service-heading .eyebrow {
  color: var(--leaf);
}
.service > summary:hover .service-question {
  color: var(--leaf);
}
.service-body {
  padding: 0 45px 28px 50px;
}
.service-body > p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.85;
}
.service-delivery {
  display: grid;
  grid-template-columns: 33px 1fr;
  gap: 16px;
  padding: 22px;
  margin-block: 23px 9px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--sage);
  border-radius: 2px 10px 10px 2px;
}
.delivery-icon {
  width: 31px;
  height: 31px;
  margin-top: 3px;
  color: var(--green);
}
.service-delivery .eyebrow {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.13em;
  margin-bottom: 7px;
}
.service-delivery h3 {
  font-size: 22px;
  line-height: 1.25;
  margin-bottom: 13px;
}
.service-delivery ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.service-delivery li {
  display: flex;
  align-items: baseline;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.service-delivery li svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  color: var(--leaf);
}
.service-body > .text-link {
  font-size: 13px;
  width: 100%;
}
.service-scope {
  margin-top: 28px;
  padding: 24px 27px;
  border-radius: var(--radius);
  background: var(--tint);
}
.service-scope h3 {
  font-size: 24px;
  margin-bottom: 10px;
}
.service-scope p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}
.service-scope .text-link {
  margin-top: 8px;
}
/* Pausa de contraste: una demostración del trabajo, con supuestos visibles. */
.analysis-section {
  background: var(--green);
  color: var(--paper);
  position: relative;
}
.example {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  gap: 90px;
}
.example-copy {
  position: sticky;
  top: 145px;
  padding-top: 22px;
}
.example .chapter {
  color: var(--paper);
}
.example .chapter > span {
  color: var(--sage);
  border-color: var(--line-inverse);
}
.example-copy h2 {
  color: var(--paper);
  font-size: clamp(36px, 3.5vw, 50px);
}
.example-copy h2 em {
  color: var(--sage);
}
.example-copy > p:not(.chapter) {
  color: rgb(248 244 235 / 82%);
  margin-top: 28px;
  font-size: 14px;
}
.example-copy > .example-instruction {
  display: flex;
  gap: 13px;
  align-items: center;
  font-size: 12px;
}
.example-instruction svg {
  width: 22px;
  height: 22px;
  color: var(--sage);
  flex-shrink: 0;
}
.example-takeaway {
  border-top: 1px solid var(--line-inverse);
  margin-top: 38px;
  padding-top: 27px;
}
.example-takeaway p {
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.35;
  max-width: 350px;
}
.example-takeaway strong {
  color: var(--sage);
  font-weight: 500;
}
.example-takeaway .text-link {
  color: var(--paper);
  border-color: var(--line-inverse);
  margin-top: 17px;
  font-size: 12px;
}
.scenario-study {
  color: var(--ink);
}
.scenario-study :focus-visible {
  outline-color: var(--leaf);
}
.scenario-control label > span {
  display: block;
}
.scenario-control label small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 2px;
}
/* El encargo tiene un inicio, un alcance acordado y una entrega explicada. */
.process .section-heading {
  grid-template-columns: 1.3fr 0.7fr;
  gap: 100px;
}
.process .section-heading > p {
  font-size: 14px;
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin: 54px 0 0;
  padding: 0;
  list-style: none;
}
.process-grid li {
  position: relative;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.step-number {
  display: block;
  font-family: var(--serif);
  font-size: 45px;
  line-height: 1;
  color: var(--terracotta-ink);
  margin-bottom: 26px;
  letter-spacing: -0.06em;
}
.process-grid h3 {
  font-size: 29px;
  margin-bottom: 15px;
}
.process-grid p {
  color: var(--muted);
  max-width: 330px;
  font-size: 14px;
}
/* El respaldo humano y científico aparece después de explicar el servicio. */
.territory-section {
  background: var(--tint);
  padding-block: 85px;
}
.territory {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 85px;
  align-items: center;
}
.territory-photo picture {
  display: block;
  height: 620px;
  border-radius: 16px;
  overflow: hidden;
}
.territory-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.territory-photo figcaption {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.06em;
  padding-top: 13px;
}
.territory-copy h2 {
  font-size: clamp(37px, 3.2vw, 46px);
}
.territory-copy > p:not(.chapter) {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px;
}
.territory-copy strong {
  font-weight: 600;
  color: var(--green);
}
.uncertainty-note {
  border-top: 1px solid var(--line);
  padding-top: 25px;
  margin-top: 29px;
}
.uncertainty-note .little-line {
  display: block;
  margin-bottom: 16px;
}
.uncertainty-note h3 {
  font-size: 25px;
  margin-bottom: 12px;
}
.uncertainty-note p {
  font-size: 14px;
  color: var(--muted);
  max-width: 490px;
}
.scenario-study {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.study-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 24px;
}
.study-heading .eyebrow {
  font-size: 10px;
  letter-spacing: 0.07em;
}
.outline-tag {
  display: inline-block;
  border: 1px solid var(--terracotta);
  border-radius: 30px;
  padding: 4px 9px;
  font-size: 10px;
  color: var(--terracotta-ink);
  white-space: nowrap;
}
.scenario-study h3 {
  font-size: 29px;
}
.study-intro {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 12px;
}
.scenario-controls {
  margin-top: 20px;
  padding: 4px 18px 15px;
  border-radius: 8px;
  background: var(--tint);
}
.scenario-control {
  margin-top: 13px;
}
.scenario-control label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--green);
}
.scenario-control output {
  font-size: 15px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}
input[type="range"] {
  display: block;
  width: 100%;
  height: 38px;
  min-height: 0;
  padding: 0;
  margin: 6px 0 1px;
  border: 0;
  accent-color: var(--green);
  background: transparent;
  cursor: pointer;
}
input[type="range"]:disabled {
  cursor: default;
}
#scenario-hint {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}
.scenario-reset {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding-block: 10px 3px;
  margin-top: 4px;
  border: 0;
  background: transparent;
  font-size: 11px;
  cursor: pointer;
}
.scenario-reset:disabled {
  cursor: default;
}
.scenario-comparison {
  margin-top: 23px;
}
.scenario-bar-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  color: var(--muted);
}
.scenario-bar-label strong {
  font-weight: 550;
  color: var(--green);
  font-variant-numeric: tabular-nums;
}
.scenario-comparison > svg {
  display: block;
  width: 100%;
  height: 8px;
  margin-top: 6px;
  stroke: none;
}
.bar-track {
  fill: var(--tint);
}
.bar-income {
  fill: var(--green);
}
.bar-cost {
  fill: var(--terracotta);
}
.study-result.is-negative strong {
  color: var(--terracotta-ink);
}
.study-result {
  padding-block: 24px 20px;
  color: var(--green);
}
.study-result .eyebrow {
  font-size: 9px;
  letter-spacing: 0.1em;
}
.study-result > p:not(.sr-only) {
  display: flex;
  align-items: baseline;
  gap: 13px;
}
.study-result strong {
  font-family: var(--serif);
  font-weight: 550;
  font-size: 58px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  font-variant-numeric: lining-nums tabular-nums;
}
.study-result p > span {
  font-size: 11px;
  color: var(--muted);
}
.result-reading {
  display: block;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.7;
}
.study-values {
  margin: 0;
  border-top: 1px solid var(--line);
}
.study-values > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 14px;
  border-bottom: 1px solid var(--line);
}
.study-values dt {
  font-size: 12px;
  line-height: 1.6;
  max-width: 285px;
}
.study-values dt > span {
  display: block;
  font-size: 11px;
  margin-top: 3px;
  color: var(--muted);
}
.study-values dd {
  margin: 0;
  font-size: 19px;
  color: var(--green);
  font-weight: 550;
  text-align: right;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.study-values dd > small {
  display: block;
  font-size: 11px;
  font-weight: 400;
}
.study-details {
  margin-top: 10px;
}
.study-details summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-block: 13px;
  cursor: pointer;
  font-size: 12px;
  color: var(--green);
  font-weight: 500;
}
.study-details summary::-webkit-details-marker {
  display: none;
}
.study-details summary svg {
  width: 17px;
  height: 17px;
  transition: transform 0.2s;
}
.study-details[open] summary svg {
  transform: rotate(45deg);
}
.study-details > div {
  font-size: 11px;
  color: var(--muted);
  padding: 15px;
  background: var(--tint);
  border-radius: 8px;
}
.study-details p + p {
  margin-top: 12px;
}
.example-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
  margin-top: 12px;
}
/* Contacto: se conserva la preparación local del mensaje y su configuración. */
.contact {
  background: var(--green);
  color: var(--paper);
  padding-block: 95px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 90px;
}
.contact-copy > .chapter {
  color: var(--paper);
  margin-bottom: 26px;
}
.contact h2 {
  color: var(--paper);
}
.contact h2 em {
  color: var(--sage);
}
.contact-copy > p:not(.chapter) {
  margin-top: 25px;
  max-width: 450px;
  color: rgb(248 244 235 / 84%);
}
.contact-copy > .button {
  margin-top: 29px;
}
.contact-copy > p.contact-hint {
  font-size: 11px;
  max-width: 370px;
  margin-top: 15px;
}
.contact-copy > p.review-note {
  display: inline-block;
  font-size: 10px;
  padding: 5px 9px;
  border: 1px solid var(--line-inverse);
  margin-top: 14px;
}
.contact-location {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 36px;
  font-size: 12px;
}
.contact-location svg {
  width: 20px;
  height: 20px;
  color: var(--sage);
}
.contact-location small {
  font-size: 11px;
  color: rgb(248 244 235 / 80%);
}
.consultation {
  padding: 34px;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--green);
  box-shadow: var(--shadow);
  scroll-margin-top: 10px;
}
.consultation > .eyebrow {
  font-size: 10px;
  margin-bottom: 10px;
}
.consultation h3 {
  font-size: 29px;
}
.form-intro {
  font-size: 13px;
  color: var(--muted);
  margin-block: 11px 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
  min-width: 0;
}
.form-field label {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}
.form-field .optional {
  color: var(--muted);
  font-size: 12px;
  font-weight: 400;
}
input,
textarea,
select {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: var(--radius);
  color: var(--green);
  padding: 11px 12px;
  font-size: 13px;
  line-height: 1.6;
  transition: border-color 0.2s;
}
input,
select {
  min-height: 45px;
}
textarea {
  resize: vertical;
  min-height: 80px;
  max-height: 360px;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted);
  opacity: 1;
  font-size: 11px;
}
select:invalid {
  color: var(--muted);
  font-size: 12px;
}
select option {
  background: var(--paper);
  color: var(--green);
  font-size: 14px;
}
input:hover,
select:hover,
textarea:hover {
  border-color: var(--leaf);
}
.form-submit {
  width: 100%;
  justify-content: space-between;
  font-size: 12px;
  margin-top: 2px;
}
.form-submit:disabled {
  cursor: default;
  opacity: 0.65;
  transform: none;
}
.form-privacy {
  font-size: 12px;
  line-height: 1.8;
  margin-top: 15px;
  color: var(--muted);
}
.form-privacy > span {
  display: block;
  margin-top: 3px;
}
.form-noscript {
  font-size: 12px;
  margin-top: 15px;
}
.message-result h4 {
  font-family: var(--serif);
  font-size: 29px;
  line-height: 1.2;
  margin-top: 20px;
  font-weight: 550;
}
.message-result > p {
  font-size: 12px;
  color: var(--muted);
  margin-block: 12px;
}
#message-preview {
  min-height: 240px;
  max-height: 400px;
  margin-top: 5px;
  font-size: 13px;
}
.message-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.message-actions .button {
  font-size: 11px;
  gap: 10px;
  padding-inline: 16px;
}
.message-result #copy-status {
  color: var(--green);
  font-size: 11px;
  min-height: 22px;
}
.edit-message {
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--green);
}
.method-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding-block: 32px;
  color: var(--muted);
}
.method-note svg {
  width: 27px;
  height: 27px;
  color: var(--green);
}
.method-note p {
  max-width: 1000px;
  font-size: 11px;
}
.site-footer {
  border-top: 1px solid var(--line);
}
.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding-block: 42px;
}
.footer-main > p {
  font-family: var(--serif);
  font-size: 25px;
  color: var(--green);
  line-height: 1.3;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 18px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom a {
  padding-block: 6px;
}

.contact .chapter > span {
  color: var(--sage);
  border-color: var(--line-inverse);
}
.contact-copy h2 {
  font-size: clamp(40px, 4.1vw, 59px);
}
.contact-copy > p:not(.chapter) {
  font-size: 14px;
}
.contact .chapter {
  color: var(--paper);
}
.contact-copy > .contact-hint {
  font-size: 11px;
}
@media (max-width: 1150px) {
  .main-nav {
    gap: 20px;
    font-size: 11px;
  }
  .hero-stage {
    gap: 34px;
  }
  .hero-visual {
    min-height: 580px;
  }
  .hero-actions {
    gap: 12px;
  }
  .hero-routes {
    grid-template-columns: 1fr repeat(4, 1fr);
    gap: 0;
  }
  .hero-routes a {
    padding-inline: 14px;
    font-size: 20px;
  }
  .photo-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
    gap: 13px;
  }
  .photo-note p {
    font-size: 25px;
  }
  .photo-note .eyebrow {
    font-size: 10px;
  }
  .services-layout {
    gap: 48px;
    grid-template-columns: 0.75fr 1.25fr;
  }
  .service-question {
    font-size: 26px;
  }
  .service-body {
    padding-left: 45px;
    padding-right: 12px;
  }
  .service-delivery {
    padding: 19px;
  }
  .example {
    gap: 45px;
  }
  .scenario-study {
    padding: 26px;
  }
  .study-heading {
    flex-wrap: wrap;
  }
  .territory,
  .contact-grid {
    gap: 48px;
  }
  .territory-photo picture {
    height: 610px;
  }
  .process-grid {
    gap: 36px;
  }
  .process .section-heading {
    gap: 55px;
  }
  .consultation {
    padding: 27px;
  }
}
@media (max-width: 1100px) {
  html {
    scroll-padding-top: 100px;
  }
  .header-inner {
    min-height: 82px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand img {
    width: 58px;
    height: 47px;
  }
  .brand-type {
    font-size: 29px;
  }
  .brand-tagline {
    font-size: 6px;
    letter-spacing: 1.7px;
  }
  .menu-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    color: var(--green);
  }
  .js .menu-toggle {
    display: flex;
  }
  .menu-toggle > span {
    width: 19px;
    height: 1px;
    background: currentColor;
    transition: transform 0.2s;
  }
  .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);
  }
  .main-nav {
    width: 100%;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 16px;
  }
  .main-nav > a {
    font-size: 12px;
  }
  .js .main-nav {
    display: none;
  }
  .js .main-nav.is-open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding-block: 8px 20px;
  }
  .main-nav .nav-contact,
  .main-nav .nav-client {
    margin-top: 8px;
    justify-content: space-between;
  }
  .main-nav > a:not(.nav-contact):not(.nav-client)::after {
    display: none;
  }
}
@media (max-width: 960px) {
  .container {
    width: calc(100% - 48px);
  }
  .hero {
    padding-top: 28px;
  }
  .hero-stage {
    gap: 30px;
    grid-template-columns: 1.03fr 0.97fr;
  }
  .hero h1 {
    font-size: clamp(42px, 5.3vw, 51px);
  }
  .hero-copy > .eyebrow {
    font-size: 10px;
    gap: 9px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-visual {
    min-height: 550px;
  }
  .photo-note > svg {
    display: none;
  }
  .photo-note p {
    font-size: 24px;
  }
  .photo-note .eyebrow {
    font-size: 10px;
  }
  .hero-routes > span {
    display: none;
  }
  .hero-routes {
    grid-template-columns: repeat(4, 1fr);
  }
  .hero-routes a:first-of-type {
    border-left: 0;
    padding-left: 0;
  }
  .hero-routes a {
    font-size: 19px;
  }
  .hero-location {
    font-size: 11px;
    align-items: start;
  }
  .section-space {
    padding-block: 80px;
  }
  .services-layout {
    gap: 35px;
    grid-template-columns: 0.7fr 1.3fr;
  }
  .services-intro h2 {
    font-size: 37px;
  }
  .services-intro .chapter {
    font-size: 10px;
    gap: 9px;
  }
  .services-intro > p:not(.chapter) {
    font-size: 13px;
  }
  .services-signature {
    font-size: 21px;
  }
  .service > summary {
    gap: 13px;
    grid-template-columns: 22px 1fr 18px;
    padding-block: 24px;
  }
  .service-question {
    font-size: 24px;
  }
  .service-heading .eyebrow {
    font-size: 10px;
  }
  .service-body {
    padding-left: 4px;
    padding-right: 4px;
  }
  .service-body > p {
    font-size: 13px;
  }
  .service-delivery h3 {
    font-size: 21px;
  }
  .service-scope {
    padding: 22px;
  }
  .example {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .example-copy {
    position: static;
    padding-top: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 35px;
  }
  .example-copy .chapter,
  .example-copy h2 {
    grid-column: 1;
  }
  .example-copy h2 {
    font-size: 42px;
  }
  .example-copy > p:not(.chapter) {
    grid-column: 2;
    margin-top: 0;
  }
  .example-copy > p:not(.chapter):not(.example-instruction) {
    grid-row: 1 / span 2;
    align-self: center;
  }
  .example-copy > .example-instruction {
    grid-column: 1;
    margin-top: 22px;
  }
  .example-takeaway {
    grid-column: 2;
    grid-row: 3;
    margin-top: 20px;
    padding-top: 20px;
  }
  .example-takeaway p {
    font-size: 21px;
  }
  .example-takeaway .text-link {
    font-size: 12px;
  }
  .scenario-study {
    width: 100%;
    max-width: 700px;
    margin-inline: auto;
  }
  .process .section-heading {
    gap: 30px;
    grid-template-columns: 1.15fr 0.85fr;
  }
  .process .section-heading h2 {
    font-size: 38px;
  }
  .process-grid {
    gap: 27px;
  }
  .process-grid h3 {
    font-size: 25px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .territory {
    gap: 35px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .territory-copy h2 {
    font-size: 37px;
  }
  .territory-copy .chapter {
    font-size: 10px;
  }
  .territory-copy > p:not(.chapter) {
    font-size: 13px;
  }
  .territory-photo picture {
    height: 640px;
  }
  .uncertainty-note h3 {
    font-size: 23px;
  }
  .contact {
    padding-block: 80px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .contact-copy {
    max-width: 610px;
  }
  .contact-copy h2 {
    font-size: 46px;
  }
  .consultation {
    width: 100%;
    max-width: 700px;
  }
  .footer-main {
    gap: 30px;
  }
  .footer-main > p {
    font-size: 23px;
  }
  .footer-main .text-link {
    font-size: 11px;
  }
}
@media (max-width: 700px) {
  .container {
    width: calc(100% - 40px);
  }
  .hero-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .hero-copy {
    padding: 0;
  }
  .hero-copy > .eyebrow {
    margin-bottom: 22px;
    font-size: 10px;
  }
  .hero h1 {
    font-size: clamp(40px, 11.5vw, 60px);
    line-height: 1.04;
  }
  .hero-description {
    font-size: 14px;
    max-width: 510px;
    margin-block: 23px;
  }
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .hero .button {
    font-size: 13px;
  }
  .hero-secondary {
    font-size: 12px;
  }
  .hero-location {
    margin-top: 22px;
    font-size: 11px;
  }
  .hero-visual {
    min-height: 380px;
  }
  .hero-photo {
    object-position: 70% 50%;
  }
  .photo-note {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 20px;
  }
  .photo-note > svg {
    display: block;
    width: 29px;
    height: 29px;
  }
  .photo-note p {
    font-size: 25px;
  }
  .photo-note .eyebrow {
    font-size: 10px;
  }
  .hero-routes {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
    margin-top: 25px;
    padding: 0;
  }
  .hero-routes a {
    padding: 18px 13px;
    font-size: 20px;
  }
  .hero-routes a:nth-of-type(3) {
    border-left: 0;
    padding-left: 0;
  }
  .hero-routes a:nth-of-type(n + 3) {
    border-top: 1px solid var(--line);
  }
  .section-space {
    padding-block: 64px;
  }
  h2 {
    font-size: clamp(33px, 8.5vw, 43px);
  }
  .chapter {
    font-size: 10px;
    margin-bottom: 22px;
    gap: 11px;
  }
  .chapter > span {
    font-size: 16px;
    padding-right: 11px;
  }
  .services-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .services-intro {
    position: static;
  }
  .services-intro h2 {
    font-size: clamp(34px, 8.7vw, 43px);
  }
  .services-intro > p:not(.chapter) {
    font-size: 14px;
    margin-top: 19px;
    max-width: 500px;
  }
  .services-signature {
    display: none;
  }
  .service > summary {
    grid-template-columns: 22px 1fr 20px;
    gap: 12px;
    padding: 25px 0;
  }
  .service-question {
    font-size: 26px;
  }
  .service-heading .eyebrow {
    font-size: 10px;
  }
  .service-body {
    padding: 0 0 26px;
  }
  .service-body > p {
    font-size: 14px;
  }
  .service-delivery {
    padding: 20px 17px;
    gap: 12px;
    grid-template-columns: 27px 1fr;
  }
  .delivery-icon {
    width: 27px;
    height: 27px;
  }
  .service-delivery h3 {
    font-size: 23px;
  }
  .service-delivery li {
    font-size: 13px;
  }
  .service-body .text-link {
    font-size: 13px;
  }
  .service-scope {
    margin-top: 23px;
    padding: 23px;
  }
  .service-scope h3 {
    font-size: 25px;
  }
  .service-scope p {
    font-size: 14px;
  }
  .example {
    gap: 32px;
  }
  .example-copy {
    display: block;
  }
  .example-copy h2 {
    font-size: clamp(34px, 8.7vw, 43px);
  }
  .example-copy > p:not(.chapter) {
    margin-top: 22px;
    font-size: 14px;
  }
  .example-copy > .example-instruction {
    font-size: 12px;
  }
  .example-takeaway {
    margin-top: 25px;
    padding-top: 22px;
  }
  .example-takeaway p {
    font-size: 23px;
  }
  .example-takeaway .text-link {
    font-size: 12px;
  }
  .scenario-study {
    padding: 22px;
  }
  .study-heading {
    gap: 10px;
    margin-bottom: 19px;
  }
  .study-heading .eyebrow {
    font-size: 9px;
  }
  .outline-tag {
    font-size: 9px;
  }
  .scenario-study h3 {
    font-size: 29px;
  }
  .study-intro {
    font-size: 12px;
  }
  .scenario-controls {
    padding-inline: 14px;
  }
  .scenario-control label {
    font-size: 13px;
  }
  .scenario-control label small {
    font-size: 12px;
  }
  .scenario-control output {
    font-size: 14px;
  }
  input[type="range"] {
    height: 44px;
  }
  #scenario-hint {
    font-size: 12px;
  }
  .study-result strong {
    font-size: 49px;
  }
  .study-result > p:not(.sr-only) {
    gap: 9px;
  }
  .study-values dt {
    font-size: 12px;
  }
  .study-values > div {
    gap: 13px;
  }
  .study-values dd {
    font-size: 20px;
  }
  .study-details > div {
    font-size: 12px;
  }
  .example-note {
    font-size: 12px;
  }
  .section-heading,
  .process .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .process .section-heading h2 {
    font-size: clamp(33px, 8.5vw, 43px);
  }
  .process .section-heading > p {
    font-size: 14px;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 32px;
  }
  .process-grid li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 0 20px;
    padding-top: 24px;
  }
  .step-number {
    grid-row: span 2;
    font-size: 36px;
    margin-bottom: 0;
  }
  .process-grid h3 {
    font-size: 27px;
    margin-bottom: 12px;
  }
  .process-grid h3 br {
    display: none;
  }
  .process-grid p {
    font-size: 14px;
    max-width: none;
  }
  .territory-section {
    padding-block: 64px;
  }
  .territory {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .territory-photo picture {
    height: 390px;
  }
  .territory-copy h2 {
    font-size: clamp(33px, 8.5vw, 43px);
  }
  .territory-copy .chapter {
    font-size: 10px;
  }
  .territory-copy > p:not(.chapter) {
    font-size: 14px;
    margin-top: 20px;
  }
  .uncertainty-note h3 {
    font-size: 25px;
  }
  .uncertainty-note p {
    font-size: 14px;
  }
  .contact {
    padding-block: 64px;
  }
  .contact-grid {
    gap: 34px;
  }
  .contact-copy h2 {
    font-size: clamp(38px, 10vw, 50px);
  }
  .contact-copy > p:not(.chapter) {
    font-size: 14px;
  }
  .contact .chapter {
    font-size: 10px;
  }
  .contact-copy > p.contact-hint {
    font-size: 11px;
  }
  .contact-copy > .button {
    font-size: 12px;
  }
  .contact-location {
    margin-top: 27px;
    font-size: 11px;
  }
  .consultation {
    padding: 25px;
  }
  .consultation h3 {
    font-size: 28px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .form-field label {
    font-size: 13px;
  }
  input,
  textarea,
  select,
  select:invalid {
    font-size: 16px;
  }
  .form-privacy {
    font-size: 12px;
  }
  .form-submit {
    font-size: 12px;
    gap: 10px;
  }
  .message-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .message-actions .button {
    justify-content: space-between;
    font-size: 12px;
  }
  .method-note {
    align-items: flex-start;
    gap: 14px;
    padding-block: 27px;
  }
  .method-note svg {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
  }
  .method-note p {
    font-size: 10px;
  }
  .footer-main {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    padding-block: 35px;
  }
  .footer-main > p {
    font-size: 25px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .brand-type {
    font-size: 26px;
  }
  .brand img {
    width: 49px;
    height: 40px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .hero-copy > .eyebrow {
    font-size: 10px;
  }
  .photo-note {
    padding: 17px;
  }
  .photo-note > svg {
    display: none;
  }
  .photo-note p {
    font-size: 24px;
  }
  .service-question {
    font-size: 24px;
  }
  .service-delivery {
    grid-template-columns: 1fr;
  }
  .delivery-icon {
    display: none;
  }
  .scenario-study {
    padding: 18px;
  }
  .study-result strong {
    font-size: 43px;
  }
  .study-result p > span {
    font-size: 10px;
  }
  .consultation {
    padding: 20px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .reveal-ready {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 0.6s ease,
      transform 0.6s ease;
  }
  .reveal-ready.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .site-header,
  .skip-link,
  .hero-actions,
  .hero-routes,
  .menu-toggle,
  .consultation {
    display: none !important;
  }
  body {
    font-size: 11pt;
  }
  .container {
    width: 100%;
  }
  .section-space {
    padding-block: 25px;
  }
  .services-intro,
  .example-copy {
    position: static;
  }
  .analysis-section,
  .contact {
    background: #fff;
    color: var(--ink);
  }
  .analysis-section h2,
  .analysis-section .chapter,
  .example-copy > p,
  .example-takeaway p,
  .example-takeaway strong,
  .contact h2 {
    color: var(--green) !important;
  }
  .reveal-ready {
    opacity: 1;
    transform: none;
  }
  .hero-visual,
  .territory-photo {
    max-height: 400px;
  }
}
