:root {
  --ink: #252525;
  --text: #343a3a;
  --muted: #6d7675;
  --green: #00a97d;
  --green-dark: #00795f;
  --green-soft: #e5f6f1;
  --cool: #edf3f4;
  --soft: #f7f9f9;
  --line: #dce4e3;
  --line-dark: #bac7c4;
  --white: #ffffff;
  --container: 1240px;
  --header-height: 82px;
}

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

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

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
h4,
p,
blockquote,
ol,
ul,
dl,
dd {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--ink);
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  font-size: 58px;
  font-weight: 750;
  max-width: 760px;
}

h2 {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: 720;
}

h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 700;
}

h4 {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin-bottom: 20px;
}

button {
  color: inherit;
}

[hidden] {
  display: none !important;
}

.container {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.section {
  padding: 112px 0;
}

.overline {
  margin-bottom: 20px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.25;
  text-transform: uppercase;
}

.overline::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 12px;
  background: var(--green);
  vertical-align: middle;
}

.section-intro {
  max-width: 820px;
  margin-bottom: 64px;
}

.section-intro > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.lead-copy {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.55;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:focus-visible,
.nav-toggle:focus-visible,
.cycle-tab:focus-visible,
.icon-button:focus-visible,
.nav-menu a:focus-visible,
.contact-action a:focus-visible {
  outline: 3px solid rgba(0, 169, 125, 0.3);
  outline-offset: 3px;
}

.button-primary {
  color: var(--white);
  background: var(--green-dark);
}

.button-primary:hover {
  background: #006a53;
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line-dark);
}

.button-secondary:hover {
  border-color: var(--ink);
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 26px rgba(37, 37, 37, 0.06);
}

.nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--ink);
  text-decoration: none;
}

.brand-symbol {
  position: relative;
  display: block;
  width: 40px;
  height: 44px;
  flex: 0 0 40px;
}

.brand-slash {
  position: absolute;
  top: 1px;
  left: 10px;
  width: 18px;
  height: 40px;
  background: var(--ink);
  border-radius: 5px 5px 5px 5px;
  transform: skewX(-31deg);
}

.brand-dot {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  background: var(--green);
  border-radius: 50%;
}

.brand-wordmark {
  font-size: 18px;
  font-weight: 760;
  line-height: 0.96;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {
  color: #394140;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: color 150ms ease;
}

.nav-menu a:hover {
  color: var(--green-dark);
}

.nav-menu .nav-contact {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 6px;
}

.nav-menu .nav-contact:hover {
  color: var(--white);
  background: #006a53;
}

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

.nav-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

.hero {
  position: relative;
  min-height: 760px;
  padding: 148px 0 88px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 0 auto;
  width: 35%;
  background: var(--green-soft);
  border-left: 1px solid #d3ece4;
}

.hero-layout {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 65%) minmax(0, 35%);
  gap: 0;
  align-items: center;
}

.hero-layout > *,
.approach-layout > *,
.method-layout > *,
.contact-layout > * {
  min-width: 0;
}

.hero-copy {
  width: min(760px, calc(100% - 64px));
  max-width: none;
  margin-left: max(32px, calc((100vw - var(--container)) / 2));
  padding-right: 24px;
}

.hero-company {
  margin: 0 0 9px;
  color: var(--ink);
  font-size: 28px;
  font-weight: 770;
  line-height: 1.05;
}

.hero-copy .overline {
  margin-bottom: 26px;
}

.hero-lead {
  max-width: 690px;
  margin-bottom: 18px;
  color: #4c5554;
  font-size: 20px;
  line-height: 1.6;
}

.hero-support {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.hero-experience {
  margin-top: 10px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-brand-stage {
  min-height: 470px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-scale-mark {
  position: relative;
  width: 370px;
  height: 470px;
}

.hero-scale-slash {
  position: absolute;
  top: 28px;
  left: 104px;
  width: 132px;
  height: 390px;
  background: var(--ink);
  border-radius: 14px;
  transform: skew(-31deg);
  animation: hero-scale-slash-enter 760ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-scale-dot {
  position: absolute;
  right: 36px;
  bottom: 30px;
  width: 106px;
  height: 106px;
  background: var(--green);
  border-radius: 50%;
  animation: hero-scale-dot-enter 620ms 180ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes hero-scale-slash-enter {
  from {
    opacity: 0;
    transform: translateY(46px) skew(-31deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skew(-31deg);
  }
}

@keyframes hero-scale-dot-enter {
  from {
    opacity: 0;
    transform: translate(-34px, 20px) scale(0.45);
  }
  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

.situations {
  padding-top: 90px;
  background: var(--white);
}

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

.situation-item {
  min-height: 270px;
  padding: 34px 34px 34px 0;
}

.situation-item + .situation-item {
  padding-left: 34px;
  border-left: 1px solid var(--line);
}

.situation-item > span,
.dimension-item > span,
.workshop-card > span {
  display: block;
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
}

.situation-item p,
.dimension-item p,
.workshop-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.approach {
  background: var(--soft);
}

.approach-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: 88px;
  align-items: center;
}

.approach-copy {
  max-width: 650px;
}

.approach-copy > p:last-child {
  margin-bottom: 0;
}

.approach-visual {
  position: relative;
  min-height: 440px;
  background-color: #edf5f2;
  background-image: url("assets/sa-board-positioning.png");
  background-repeat: no-repeat;
  background-size: 1600px 900px;
  background-position: 84% 87%;
  border: 1px solid var(--line);
  overflow: hidden;
}

.approach-visual::after {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(0, 121, 95, 0.22);
  pointer-events: none;
}

.approach-visual blockquote {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 200px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 32px 38px;
  color: var(--white);
  background: var(--ink);
  font-size: 20px;
  font-weight: 650;
  line-height: 1.45;
}

.lifecycle {
  background: var(--cool);
}

.lifecycle-intro {
  margin-bottom: 54px;
}

.cycle-shell {
  --cycle-progress: 0%;
}

.cycle-map-scroll {
  overflow: visible;
}

.cycle-map-inner {
  min-width: 0;
}

.cycle-phases {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 4px;
  margin-bottom: 14px;
}

.cycle-phases span {
  position: relative;
  min-height: 70px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 10px;
  padding: 18px 16px 14px;
  border-top: 3px solid transparent;
}

.cycle-phases span::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 1px;
  height: 14px;
  background: currentColor;
  opacity: 0.35;
}

.cycle-phases strong {
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.cycle-phases small {
  flex: 0 0 auto;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.cycle-phases .phase-before {
  grid-column: span 4;
  color: #075b49;
  background: #d9f1e8;
  border-top-color: var(--green);
}

.cycle-phases .phase-during {
  grid-column: span 2;
  color: #364440;
  background: #dfe7e5;
  border-top-color: #758b86;
}

.cycle-phases .phase-after {
  grid-column: span 1;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  color: var(--white);
  background: var(--ink);
  border-top-color: var(--ink);
}

.cycle-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  margin-bottom: 32px;
}

.cycle-tabs::before,
.cycle-tabs::after {
  content: "";
  position: absolute;
  top: 29px;
  left: calc(100% / 14);
  height: 2px;
  pointer-events: none;
}

.cycle-tabs::before {
  right: calc(100% / 14);
  background: var(--line-dark);
}

.cycle-tabs::after {
  width: var(--cycle-progress);
  max-width: calc(100% - (100% / 7));
  background: var(--green);
  transition: width 220ms ease;
}

.cycle-tab {
  position: relative;
  z-index: 1;
  min-width: 0;
  height: 108px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 10px 8px;
  color: #66706e;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.cycle-tab span {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #63706d;
  background: var(--cool);
  border: 2px solid var(--line-dark);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 750;
  transition: color 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.cycle-tab strong {
  max-width: 130px;
  font-size: 12px;
  font-weight: 680;
  line-height: 1.25;
  text-align: center;
}

.cycle-tab:hover,
.cycle-tab.is-active {
  color: var(--ink);
}

.cycle-tab.is-past span {
  color: var(--green-dark);
  border-color: var(--green);
}

.cycle-tab.is-active span {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.cycle-panel-wrap {
  min-height: 405px;
  background: var(--white);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.cycle-panel {
  min-height: 405px;
  display: grid;
  grid-template-columns: minmax(290px, 0.75fr) minmax(0, 1.5fr);
  gap: 70px;
  align-items: start;
  padding: 58px 60px;
}

.panel-heading p {
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.panel-heading h3 {
  margin-bottom: 0;
  font-size: 30px;
}

.panel-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 44px;
}

.panel-columns > div {
  padding-top: 7px;
}

.panel-columns h4 {
  color: var(--green-dark);
}

.panel-columns p {
  margin-bottom: 0;
  color: #586260;
}

.cycle-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  padding-top: 20px;
}

.cycle-controls > span {
  min-width: 44px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition: border-color 150ms ease, color 150ms ease, background-color 150ms ease;
}

.icon-button:hover {
  color: var(--white);
  background: var(--green-dark);
  border-color: var(--green-dark);
}

.dimensions {
  background: var(--white);
}

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

.dimension-item {
  min-height: 280px;
  padding: 32px 30px 28px 0;
}

.dimension-item + .dimension-item {
  padding-left: 30px;
  border-left: 1px solid var(--line);
}

.dimension-item h3 {
  font-size: 20px;
}

.method {
  background: var(--soft);
}

.method-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  gap: 100px;
  align-items: start;
}

.method-layout .section-intro {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  margin-bottom: 0;
}

.method-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line-dark);
}

.method-steps li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line-dark);
}

.method-steps li > span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 750;
}

.method-steps h3 {
  margin-bottom: 8px;
}

.method-steps p {
  margin-bottom: 0;
  color: var(--muted);
}

.workshop {
  background: var(--white);
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.workshop-card {
  min-height: 250px;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.workshop-card:hover {
  border-color: #a9c9c0;
  box-shadow: 0 14px 32px rgba(37, 37, 37, 0.07);
  transform: translateY(-3px);
}

.workshop-card-wide {
  grid-column: 1 / -1;
  min-height: 190px;
  display: grid;
  grid-template-columns: 54px minmax(260px, 0.75fr) minmax(0, 1.25fr);
  gap: 24px;
  align-items: start;
}

.workshop-card-wide > span {
  margin-bottom: 0;
}

.experience {
  color: #dce3e1;
  background: var(--ink);
}

.experience .overline {
  color: #7ae0c0;
}

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

.experience-intro {
  max-width: 900px;
  margin-bottom: 64px;
}

.experience-intro > p:not(.overline) {
  max-width: 780px;
  color: #c8d0ce;
  font-size: 18px;
}

.experience-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #505756;
  border-bottom: 1px solid #505756;
}

.experience-grid article {
  min-height: 230px;
  padding: 32px 28px 28px 0;
}

.experience-grid article + article {
  padding-left: 28px;
  border-left: 1px solid #505756;
}

.experience-grid h3 {
  font-size: 19px;
}

.experience-grid p {
  margin-bottom: 0;
  color: #afb9b7;
  font-size: 15px;
}

.certifications {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  align-items: center;
  padding-top: 34px;
}

.certifications p {
  margin-bottom: 0;
  color: #c8d0ce;
  font-size: 14px;
}

.certifications ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin: 0;
  padding: 0;
}

.certifications li {
  margin: 5px 0;
  padding: 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  border-left: 1px solid #59625f;
}

.certifications li:first-child {
  padding-left: 0;
  border-left: 0;
}

.cases {
  background: var(--soft);
}

.case-carousel {
  position: relative;
}

.case-viewport {
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.case-viewport::-webkit-scrollbar {
  display: none;
}

.case-viewport:focus-visible {
  outline: 3px solid rgba(0, 169, 125, 0.3);
  outline-offset: 5px;
}

.case-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 24px) / 2);
  gap: 24px;
  align-items: stretch;
}

.case-card {
  min-height: 560px;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}

.case-sector {
  margin-bottom: 28px;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.case-card > p:not(.case-sector) {
  color: var(--muted);
}

.case-card dl {
  margin: 32px 0 0;
  border-top: 1px solid var(--line);
}

.case-card dl > div {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.case-card dt {
  color: var(--ink);
  font-size: 12px;
  font-weight: 750;
  text-transform: uppercase;
}

.case-card dd {
  margin: 0;
  color: #596260;
}

.case-controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-height: 44px;
  margin-top: 22px;
}

.case-controls > span {
  min-width: 76px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.case-carousel.is-static .case-controls {
  display: none;
}

.icon-button:disabled,
.icon-button:disabled:hover {
  color: #8c9693;
  background: var(--soft);
  border-color: var(--line);
  cursor: default;
  opacity: 0.6;
}

.contact {
  padding: 88px 0;
  color: var(--white);
  background: var(--green-dark);
}

.contact .overline {
  color: #b5f2df;
}

.contact .overline::before {
  background: #b5f2df;
}

.contact h2 {
  color: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(340px, 0.7fr);
  gap: 90px;
  align-items: end;
}

.contact-layout > div:first-child p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #d8eee7;
  font-size: 18px;
}

.contact-action {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.36);
}

.contact-action span {
  display: block;
  margin-bottom: 16px;
  color: #d8eee7;
  font-size: 13px;
}

.contact-action a {
  display: block;
  width: fit-content;
  color: var(--white);
  font-size: 26px;
  font-weight: 720;
  line-height: 1.25;
  text-decoration: none;
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
}

.contact-action a + a {
  margin-top: 12px;
}

.site-footer {
  color: #b9c1bf;
  background: #202424;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(300px, 1.5fr) minmax(140px, 0.5fr) minmax(230px, 0.7fr);
  gap: 80px;
  padding-top: 70px;
  padding-bottom: 58px;
}

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

.brand-footer .brand-slash {
  background: var(--white);
}

.footer-brand-column p {
  max-width: 520px;
  margin-bottom: 0;
  color: #9da7a4;
  font-size: 14px;
}

.footer-main h2 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-links,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links a,
.footer-contact a {
  margin-bottom: 10px;
  color: #b9c1bf;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #7ae0c0;
}

.footer-legal {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) auto;
  gap: 30px;
  align-items: start;
  padding-top: 24px;
  padding-bottom: 28px;
  border-top: 1px solid #424948;
}

.footer-legal p {
  margin-bottom: 0;
  color: #8d9794;
  font-size: 11px;
  line-height: 1.6;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

/* Privacy page */
.legal-page {
  padding: 150px 0 100px;
  background: var(--soft);
}

.legal-layout {
  display: grid;
  grid-template-columns: 250px minmax(0, 800px);
  gap: 80px;
  justify-content: center;
}

.legal-aside {
  position: sticky;
  top: calc(var(--header-height) + 38px);
  align-self: start;
}

.legal-aside p {
  color: var(--muted);
  font-size: 13px;
}

.legal-aside a {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 700;
}

.legal-content {
  padding: 54px 60px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.legal-content .overline {
  margin-bottom: 14px;
}

.legal-content h1 {
  margin-bottom: 18px;
  font-size: 46px;
}

.legal-meta {
  margin-bottom: 48px;
  color: var(--muted);
  font-size: 13px;
}

.legal-content section {
  padding: 30px 0;
  border-top: 1px solid var(--line);
}

.legal-content section h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content section h3 {
  margin-top: 24px;
  font-size: 18px;
}

.legal-content section p,
.legal-content section li {
  color: #56605e;
}

.legal-content ul,
.legal-content ol {
  padding-left: 22px;
}

.legal-content li {
  margin-bottom: 9px;
}

@media (max-width: 1120px) {
  .nav-menu {
    gap: 22px;
  }

  .hero-scale-mark {
    transform: scale(0.88);
  }

  h1 {
    font-size: 50px;
  }

  .approach-layout,
  .method-layout {
    gap: 60px;
  }

  .cycle-panel {
    gap: 44px;
    padding: 50px 42px;
  }

  .footer-main {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding: 88px 0;
  }

  .situations {
    padding-top: 48px;
  }

  .nav-toggle {
    display: block;
  }

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

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

  .nav-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 14px 20px 24px;
    background: var(--white);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 28px rgba(37, 37, 37, 0.1);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px 4px;
    border-bottom: 1px solid var(--line);
  }

  .nav-menu .nav-contact {
    justify-content: center;
    margin-top: 14px;
    border-bottom: 0;
  }

  .hero {
    min-height: 0;
    padding: 122px 0 68px;
  }

  .hero::after {
    inset: auto 0 0;
    width: 100%;
    height: 260px;
    border-top: 1px solid #d3ece4;
    border-left: 0;
  }

  .hero-layout {
    width: min(calc(100% - 40px), var(--container));
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-copy {
    width: 100%;
    max-width: 760px;
    margin-left: 0;
    padding-right: 0;
  }

  .hero-brand-stage {
    height: 220px;
    min-height: 220px;
    justify-content: center;
    padding: 0;
  }

  .hero-scale-mark {
    transform: scale(0.5);
  }

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

  .situation-item,
  .situation-item + .situation-item {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
  }

  .situation-item + .situation-item {
    border-top: 1px solid var(--line);
  }

  .approach-layout,
  .method-layout {
    grid-template-columns: 1fr;
  }

  .approach-visual {
    min-height: 360px;
  }

  .cycle-map-scroll {
    margin-right: -20px;
    margin-left: -20px;
    padding: 0 20px 10px;
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .cycle-map-inner {
    min-width: 910px;
  }

  .cycle-tabs {
    margin-bottom: 22px;
  }

  .cycle-tab {
    height: 100px;
  }

  .cycle-panel-wrap,
  .cycle-panel {
    min-height: 0;
  }

  .cycle-panel {
    grid-template-columns: 1fr;
    gap: 36px;
  }

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

  .dimension-item:nth-child(3),
  .experience-grid article:nth-child(3) {
    border-left: 0;
  }

  .dimension-item:nth-child(n + 3),
  .experience-grid article:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .experience-grid article:nth-child(n + 3) {
    border-top-color: #505756;
  }

  .method-layout .section-intro {
    position: static;
  }

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

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

  .case-track {
    grid-auto-columns: 100%;
  }

  .case-card {
    min-height: 0;
  }

  .contact-action {
    padding: 28px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.36);
    border-left: 0;
  }

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

  .footer-brand-column {
    grid-column: 1 / -1;
  }

  .footer-legal {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .legal-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .legal-aside {
    position: static;
  }
}

@media (min-width: 901px) and (max-height: 760px) {
  .hero {
    min-height: 640px;
    padding-top: 112px;
    padding-bottom: 40px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 48px;
  }

  .hero-lead {
    font-size: 18px;
  }

  .hero-support {
    font-size: 15px;
  }

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

  .hero-brand-stage {
    min-height: 470px;
  }

  .situations {
    padding-top: 46px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .section {
    padding: 72px 0;
  }

  .situations {
    padding-top: 42px;
  }

  h1 {
    margin-bottom: 22px;
    font-size: 36px;
  }

  h2 {
    font-size: 31px;
  }

  .brand-symbol {
    width: 34px;
    height: 38px;
    flex-basis: 34px;
  }

  .brand-slash {
    left: 8px;
    width: 16px;
    height: 35px;
  }

  .brand-dot {
    width: 12px;
    height: 12px;
  }

  .brand-wordmark {
    font-size: 16px;
  }

  .hero {
    padding-top: 98px;
    padding-bottom: 42px;
  }

  .hero-layout {
    gap: 20px;
  }

  .hero-lead {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 1.55;
  }

  .hero-support {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.5;
  }

  .hero-experience {
    margin-top: 8px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 22px;
  }

  .button {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    font-size: 14px;
  }

  .hero-copy .overline {
    margin-bottom: 14px;
  }

  .hero-company {
    font-size: 23px;
  }

  .hero-brand-stage,
  .hero::after {
    display: none;
  }

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

  .section-intro > p:last-child {
    font-size: 16px;
  }

  .approach-visual {
    min-height: 320px;
    background-position: 86% 70%;
  }

  .cycle-map-scroll {
    margin-right: -16px;
    margin-left: -16px;
    padding-right: 16px;
    padding-left: 16px;
  }

  .approach-visual blockquote {
    min-height: 160px;
    padding: 24px;
    font-size: 17px;
  }

  .cycle-panel {
    padding: 34px 24px;
  }

  .panel-heading h3 {
    font-size: 25px;
  }

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

  .cycle-controls {
    justify-content: space-between;
  }

  .dimension-grid,
  .experience-grid,
  .workshop-grid {
    grid-template-columns: 1fr;
  }

  .dimension-item,
  .dimension-item + .dimension-item,
  .experience-grid article,
  .experience-grid article + article {
    min-height: 0;
    padding: 28px 0;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .dimension-item:first-child,
  .experience-grid article:first-child {
    border-top: 0;
  }

  .experience-grid article,
  .experience-grid article + article {
    border-top-color: #505756;
  }

  .method-steps li {
    grid-template-columns: 42px 1fr;
  }

  .workshop-card,
  .workshop-card-wide {
    min-height: 0;
    display: block;
    padding: 28px;
  }

  .workshop-card-wide > span {
    margin-bottom: 28px;
  }

  .certifications li {
    padding: 0 10px;
  }

  .case-card {
    padding: 28px;
  }

  .case-card dl > div {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .contact {
    padding: 72px 0;
  }

  .contact-action a {
    font-size: 21px;
    overflow-wrap: anywhere;
  }

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

  .footer-brand-column {
    grid-column: auto;
  }

  .legal-page {
    padding: 116px 0 72px;
  }

  .legal-content {
    padding: 34px 24px;
  }

  .legal-content h1 {
    font-size: 35px;
  }
}

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

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

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
