:root {
  --ink: #13231f;
  --ink-soft: #53615d;
  --forest: #153f32;
  --forest-deep: #0b2a22;
  --moss: #7f9850;
  --lime: #c5d99b;
  --sand: #f1eee6;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(19, 35, 31, 0.14);
  --shadow: 0 24px 70px rgba(21, 63, 50, 0.12);
  --radius-sm: 12px;
  --radius: 22px;
  --radius-lg: 36px;
  --container: min(1240px, calc(100vw - 48px));
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

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

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

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

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

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(11, 42, 34, 0.06);
}

.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 86px;
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.brand img {
  width: 82px;
  height: auto;
}

.brand-copy {
  display: grid;
  color: var(--forest-deep);
  line-height: 1.05;
}

.brand-copy strong {
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.brand-copy span {
  margin-top: 5px;
  color: var(--ink-soft);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

.nav-link,
.nav-trigger {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 10px 12px;
  border: 0;
  border-radius: 999px;
  color: #33443f;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-link:hover,
.nav-link[aria-current="page"],
.nav-trigger:hover,
.nav-group:focus-within .nav-trigger {
  color: var(--forest-deep);
  background: #eef2e7;
}

.nav-group {
  position: relative;
}

.nav-trigger svg {
  width: 13px;
  transition: transform 0.25s ease;
}

.nav-group:hover .nav-trigger svg,
.nav-group:focus-within .nav-trigger svg {
  transform: rotate(180deg);
}

.nav-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  width: 288px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}

.nav-group:hover .nav-menu,
.nav-group:focus-within .nav-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.nav-menu a {
  display: grid;
  padding: 10px 12px;
  border-radius: 11px;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.25;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"] {
  color: var(--forest);
  background: var(--sand);
}

.header-actions {
  display: flex;
  gap: 9px;
  align-items: center;
}

.header-login {
  padding: 8px;
  color: var(--ink-soft);
  font-size: 0.75rem;
  font-weight: 700;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-open .menu-toggle span:first-child {
  transform: translateY(3px) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

.mobile-panel {
  position: fixed;
  z-index: 90;
  inset: 86px 0 0;
  display: none;
  overflow: auto;
  padding: 20px 24px 44px;
  background: var(--paper);
}

.mobile-nav {
  display: grid;
}

.mobile-nav > a,
.mobile-nav details > summary {
  padding: 16px 2px;
  border-bottom: 1px solid var(--line);
  font-size: 1.05rem;
  font-weight: 720;
  list-style: none;
  cursor: pointer;
}

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

.mobile-subnav {
  display: grid;
  padding: 8px 0 14px 18px;
  border-bottom: 1px solid var(--line);
}

.mobile-subnav a {
  padding: 8px 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.mobile-cta {
  margin-top: 24px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
}

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

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.button-outline {
  border-color: var(--line);
  color: var(--forest);
  background: transparent;
}

.text-link {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  color: var(--forest);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.text-link::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero-slider {
  position: relative;
  min-height: min(790px, calc(100vh - 86px));
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.slides {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0.9s;
}

.hero-slide::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 27, 21, 0.89) 0%, rgba(5, 27, 21, 0.56) 52%, rgba(5, 27, 21, 0.15) 100%), var(--slide-image);
  background-position: center;
  background-size: cover;
  transform: scale(1.06);
  transition: transform 7s linear;
  content: "";
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide.is-active::before {
  transform: scale(1);
}

.slide-inner {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  min-height: min(790px, calc(100vh - 86px));
  padding-block: 90px 130px;
}

.slide-content {
  max-width: 820px;
}

.slide-kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 26px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.slide-title {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.1rem, 6.3vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.slide-title em {
  color: var(--lime);
  font-style: italic;
}

.slide-copy {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.7;
}

.slide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 36px;
}

.slider-controls {
  position: absolute;
  z-index: 4;
  bottom: 38px;
  left: 50%;
  display: flex;
  gap: 20px;
  align-items: center;
  width: var(--container);
  transform: translateX(-50%);
}

.slider-arrow,
.slider-pause {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: background 0.2s ease;
}

.slider-arrow:hover,
.slider-pause:hover {
  background: rgba(255, 255, 255, 0.18);
}

.slider-arrow svg,
.slider-pause svg {
  width: 16px;
  height: 16px;
}

.slider-dots {
  display: flex;
  flex: 1 1 auto;
  gap: 7px;
}

.slider-dot {
  position: relative;
  flex: 1 1 0;
  max-width: 72px;
  height: 2px;
  padding: 0;
  border: 0;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
}

.slider-dot::after {
  position: absolute;
  inset: -10px 0;
  content: "";
}

.slider-dot span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--white);
}

.slider-dot.is-active span {
  width: 100%;
  animation: slider-progress 7s linear;
}

.hero-slider.is-paused .slider-dot.is-active span {
  animation-play-state: paused;
}

.slider-counter {
  min-width: 62px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
}

@keyframes slider-progress {
  from { width: 0; }
  to { width: 100%; }
}

.intro-strip {
  padding: 34px 0;
  color: var(--white);
  background: var(--forest);
}

.intro-strip .container {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.75fr);
  gap: 26px;
  align-items: center;
}

.intro-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-family: var(--serif);
  font-size: 1.35rem;
  line-height: 1.35;
}

.strip-stat {
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.strip-stat strong {
  display: block;
  color: var(--lime);
  font-size: 1.15rem;
}

.strip-stat span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.74rem;
}

.section {
  padding-block: 120px;
}

.section-compact {
  padding-block: 88px;
}

.section-sand {
  background: var(--sand);
}

.section-forest {
  color: var(--white);
  background: var(--forest-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 60px;
}

.section-heading h2,
.page-hero h1,
.content-heading {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading h2 {
  font-size: clamp(2.55rem, 4.8vw, 4.8rem);
}

.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.section-forest .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.feature-card {
  display: flex;
  flex-direction: column;
  min-height: 340px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-6px);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 64px;
  border-radius: 50%;
  color: var(--forest);
  background: #e9efdf;
  font-family: var(--serif);
  font-size: 1.4rem;
}

.feature-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.1;
}

.feature-card p {
  margin: 0 0 24px;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.feature-card .text-link {
  margin-top: auto;
}

.split-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.8fr);
  gap: 80px;
  align-items: center;
}

.split-media {
  position: relative;
}

.split-media img {
  width: 100%;
  min-height: 620px;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: -36px;
  bottom: 40px;
  max-width: 260px;
  padding: 24px;
  border-radius: 20px;
  color: var(--white);
  background: var(--forest);
  box-shadow: var(--shadow);
}

.floating-note strong {
  display: block;
  margin-bottom: 6px;
  color: var(--lime);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.floating-note span {
  font-size: 0.8rem;
}

.split-copy h2 {
  margin: 0 0 26px;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 4.3vw, 4.35rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.split-copy > p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.principle-list {
  display: grid;
  gap: 0;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.principle {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.principle span {
  color: var(--moss);
  font-size: 0.74rem;
  font-weight: 800;
}

.principle strong {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 400;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.project-card {
  position: relative;
  grid-column: span 4;
  min-height: 500px;
  overflow: hidden;
  border-radius: var(--radius);
  color: var(--white);
}

.project-card:first-child {
  grid-column: span 7;
}

.project-card:nth-child(2) {
  grid-column: span 5;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(5, 30, 23, 0.88) 100%);
  content: "";
}

.project-card:hover img {
  transform: scale(1.04);
}

.project-card-content {
  position: absolute;
  z-index: 2;
  inset: auto 30px 28px;
}

.project-card .tag {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--lime);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.05;
}

.project-card p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.ways-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
}

.way-card {
  min-height: 320px;
  padding: 30px 24px;
  background: var(--forest-deep);
  transition: background 0.25s ease;
}

.way-card:hover {
  background: #123a2e;
}

.way-number {
  display: block;
  margin-bottom: 82px;
  color: var(--lime);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
}

.way-card h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.way-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.way-card .text-link {
  margin-top: 14px;
  color: var(--lime);
  font-size: 0.68rem;
}

.quote-section {
  position: relative;
  display: grid;
  min-height: 620px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.quote-section::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(7, 37, 29, 0.7), rgba(7, 37, 29, 0.78)), url("assets/images/matterhorn.jpg") center/cover;
  content: "";
}

.quote-inner {
  position: relative;
  z-index: 2;
  max-width: 930px;
  padding: 90px 24px;
}

.quote-mark {
  color: var(--lime);
  font-family: var(--serif);
  font-size: 5rem;
  line-height: 0.7;
}

.quote-inner blockquote {
  margin: 28px 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 5rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.quote-inner cite {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cta-band {
  padding-block: 90px;
}

.cta-card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
  overflow: hidden;
  padding: 66px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--forest);
}

.cta-card::after {
  position: absolute;
  top: -180px;
  right: -100px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03), 0 0 0 120px rgba(255, 255, 255, 0.02);
  content: "";
}

.cta-card h2 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.4rem, 4.7vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.cta-card .button {
  position: relative;
  z-index: 1;
}

.page-hero {
  padding: 112px 0 94px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, #f7f5ef 0%, #edf1e5 100%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.6fr);
  gap: 80px;
  align-items: end;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(3.4rem, 6.8vw, 7rem);
}

.page-hero-lead {
  margin: 26px 0 0;
  max-width: 680px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.page-hero-aside {
  padding: 28px;
  border-left: 1px solid var(--line);
}

.page-hero-aside p {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.45;
}

.page-image {
  width: var(--container);
  height: clamp(360px, 48vw, 650px);
  margin: 38px auto 0;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.32fr) minmax(0, 1fr);
  gap: 80px;
}

.content-nav {
  position: sticky;
  top: 120px;
  align-self: start;
}

.content-nav span {
  display: block;
  margin-bottom: 18px;
  color: var(--moss);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.content-nav a {
  display: block;
  padding: 9px 0;
  color: var(--ink-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.content-nav a:hover {
  color: var(--forest);
}

.page-content {
  min-width: 0;
}

.content-section {
  padding: 0 0 78px;
  scroll-margin-top: 130px;
}

.content-section + .content-section {
  padding-top: 78px;
  border-top: 1px solid var(--line);
}

.content-heading {
  margin-bottom: 26px;
  font-size: clamp(2.2rem, 4vw, 4rem);
}

.content-section > p,
.prose p,
.prose li {
  max-width: 820px;
  color: #4b5b56;
  font-size: 1.02rem;
}

.content-section .lead {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.5;
}

.content-section ul,
.content-section ol {
  max-width: 820px;
  padding-left: 1.3rem;
}

.content-section li {
  margin-block: 8px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--white);
}

.info-card .number {
  display: block;
  margin-bottom: 34px;
  color: var(--moss);
  font-size: 0.72rem;
  font-weight: 800;
}

.info-card h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.12;
}

.info-card p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.notice {
  margin: 34px 0;
  padding: 26px 28px;
  border-left: 3px solid var(--moss);
  border-radius: 0 16px 16px 0;
  background: #eef2e7;
}

.notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest);
}

.notice p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.steps {
  display: grid;
  gap: 0;
  margin-top: 34px;
  counter-reset: steps;
  border-top: 1px solid var(--line);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  counter-increment: steps;
}

.step::before {
  color: var(--moss);
  font-size: 0.76rem;
  font-weight: 800;
  content: "0" counter(steps);
}

.step h3 {
  margin: 0 0 6px;
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

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

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

.faq-list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  font-family: var(--serif);
  font-size: 1.18rem;
  list-style: none;
  cursor: pointer;
}

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

.faq-list summary::after {
  position: absolute;
  top: 21px;
  right: 4px;
  color: var(--moss);
  content: "+";
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  max-width: 800px;
  margin: 0 0 24px;
  color: var(--ink-soft);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-card {
  padding: 34px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--forest);
}

.contact-card h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 2.1rem;
  font-weight: 400;
}

.contact-card p,
.contact-card address {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  font-style: normal;
}

.contact-card a {
  color: var(--lime);
}

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

.field {
  display: grid;
  gap: 7px;
}

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

.field label {
  color: var(--ink-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #aab3ae;
  border-radius: 0;
  outline: 0;
  color: var(--ink);
  background: transparent;
}

.field input,
.field select {
  height: 52px;
}

.field textarea {
  min-height: 140px;
  padding-top: 12px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--forest);
  box-shadow: 0 1px 0 var(--forest);
}

.form-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 30px;
}

.form-note,
.form-status {
  color: var(--ink-soft);
  font-size: 0.78rem;
}

.form-status {
  display: none;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--forest);
  background: #e9efdf;
}

.form-status.is-visible {
  display: block;
}

.login-shell {
  max-width: 620px;
  margin-inline: auto;
  padding: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.login-shell h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
}

.document-list {
  display: grid;
  gap: 12px;
  margin-top: 30px;
}

.document-item {
  display: grid;
  grid-template-columns: 48px 1fr auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
}

.document-type {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  color: var(--forest);
  background: #e9efdf;
  font-size: 0.66rem;
  font-weight: 850;
}

.document-item strong {
  display: block;
}

.document-item small {
  color: var(--ink-soft);
}

.legal-prose h2 {
  margin: 48px 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.legal-prose h3 {
  margin: 30px 0 10px;
  font-size: 1rem;
}

.legal-prose p,
.legal-prose li {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.site-footer {
  color: var(--white);
  background: #091e19;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, 0.7fr);
  gap: 60px;
  padding-block: 78px 64px;
}

.footer-brand img {
  width: 104px;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  max-width: 310px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.57);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.footer-column h3 {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.66rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  display: block;
  padding: 5px 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.78rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding-block: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
}

[data-reveal="left"] {
  transform: translateX(-32px);
}

[data-reveal="right"] {
  transform: translateX(32px);
}

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

.reveal-stagger > * {
  transition-delay: calc(var(--i, 0) * 90ms);
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .desktop-nav,
  .header-login,
  .header-actions > .button {
    display: none;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .mobile-panel.is-open {
    display: block;
  }

  .intro-strip .container {
    grid-template-columns: 1fr repeat(3, 0.6fr);
  }

  .ways-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .way-card:nth-child(n+4) {
    min-height: 260px;
  }

  .footer-main {
    grid-template-columns: 1.2fr repeat(2, 0.7fr);
  }
}

@media (max-width: 880px) {
  :root {
    --container: min(100% - 32px, 720px);
  }

  .section {
    padding-block: 86px;
  }

  .hero-slider,
  .slide-inner {
    min-height: 720px;
  }

  .slide-title {
    font-size: clamp(3rem, 12vw, 5rem);
  }

  .hero-slide::before {
    background-image: linear-gradient(90deg, rgba(5, 27, 21, 0.9), rgba(5, 27, 21, 0.46)), var(--slide-image);
  }

  .intro-strip .container {
    grid-template-columns: 1fr;
  }

  .strip-stat {
    padding: 12px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .section-heading,
  .split-layout,
  .page-hero-grid,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .feature-card {
    min-height: 280px;
  }

  .feature-icon {
    margin-bottom: 44px;
  }

  .split-media img {
    min-height: 480px;
  }

  .floating-note {
    right: 20px;
  }

  .project-card,
  .project-card:first-child,
  .project-card:nth-child(2) {
    grid-column: 1 / -1;
  }

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

  .cta-card {
    grid-template-columns: 1fr;
    padding: 48px 32px;
  }

  .page-hero {
    padding: 82px 0 72px;
  }

  .page-hero-aside {
    padding: 24px 0 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

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

  .content-nav {
    position: static;
    display: flex;
    overflow-x: auto;
    gap: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .content-nav span {
    display: none;
  }

  .content-nav a {
    flex: 0 0 auto;
  }

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

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

@media (max-width: 560px) {
  :root {
    --container: calc(100% - 28px);
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 70px;
  }

  .brand-copy span {
    display: none;
  }

  .mobile-panel {
    inset-block-start: 76px;
  }

  .hero-slider,
  .slide-inner {
    min-height: 690px;
  }

  .slide-inner {
    padding-block: 74px 130px;
  }

  .slide-copy {
    font-size: 0.94rem;
  }

  .slider-controls {
    gap: 10px;
  }

  .slider-arrow {
    display: none;
  }

  .slider-counter {
    min-width: 50px;
  }

  .section {
    padding-block: 72px;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .feature-card {
    padding: 28px;
  }

  .split-media img {
    min-height: 380px;
  }

  .floating-note {
    position: static;
    max-width: none;
    margin: -28px 14px 0;
  }

  .project-card {
    min-height: 430px;
  }

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

  .way-card,
  .way-card:nth-child(n+4) {
    min-height: auto;
  }

  .way-number {
    margin-bottom: 52px;
  }

  .quote-section {
    min-height: 520px;
  }

  .page-hero h1 {
    font-size: clamp(3.05rem, 15vw, 5rem);
  }

  .page-image {
    height: 320px;
    border-radius: 20px;
  }

  .info-cards,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .field-full {
    grid-column: auto;
  }

  .login-shell {
    padding: 30px 22px;
  }

  .document-item {
    grid-template-columns: 48px 1fr;
  }

  .document-item .button {
    grid-column: 1 / -1;
  }

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

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

  .footer-bottom {
    flex-direction: column;
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
