:root {
  --alpine: #1f3d36;
  --alpine-deep: #123128;
  --alpine-soft: #34574d;
  --sable: #c9b59a;
  --sable-deep: #a98355;
  --ivory: #f7f4ef;
  --paper: #fffdf8;
  --sage: #a6b29e;
  --sage-light: #dfe5da;
  --blue: #b9c7d6;
  --terracotta: #c47a5a;
  --ink: #182822;
  --muted: #65736e;
  --line: rgba(31, 61, 54, 0.16);
  --line-warm: rgba(201, 181, 154, 0.42);
  --shadow: 0 26px 70px rgba(22, 36, 31, 0.12);
  --radius: 8px;
  --max: 1220px;
  --font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Montserrat", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 116px;
}

#chiffres-manoahome {
  scroll-margin-top: 220px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(247, 244, 239, 0.82), rgba(255, 253, 248, 0.94) 520px),
    var(--paper);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: auto 0 0;
  z-index: -1;
  height: 200px;
  pointer-events: none;
  content: "";
  opacity: 0.34;
  background:
    linear-gradient(135deg, transparent 0 26%, rgba(201, 181, 154, 0.32) 26% 27%, transparent 27%),
    linear-gradient(45deg, transparent 0 28%, rgba(166, 178, 158, 0.26) 28% 29%, transparent 29%);
  background-size: 240px 100px, 310px 140px;
}

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

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

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

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

h1,
h2 {
  color: var(--alpine);
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(3rem, 7vw, 5.75rem);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.25rem, 4.5vw, 4.15rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--alpine);
  font-family: var(--font-serif);
  font-size: 1.48rem;
  font-weight: 700;
  line-height: 1.18;
}

p {
  text-wrap: pretty;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  min-height: 92px;
  padding: 18px 5vw;
  color: var(--alpine);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: min-height 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 74px;
  border-color: rgba(31, 61, 54, 0.1);
  background: rgba(255, 253, 248, 0.96);
  box-shadow: 0 12px 44px rgba(18, 49, 40, 0.08);
}

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

.brand-mark {
  width: 74px;
  height: 40px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
}

.brand-copy strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 0.95;
}

.brand-copy strong span {
  color: var(--sable-deep);
}

.brand-copy small {
  display: block;
  margin-top: 6px;
  color: var(--alpine);
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.site-nav a,
.text-link {
  position: relative;
}

.site-nav a::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-nav a[aria-current="page"] {
  color: var(--sable-deep);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 220ms ease, box-shadow 220ms ease, background 220ms ease, border-color 220ms ease;
}

.header-cta,
.button-primary {
  color: white;
  background: var(--alpine);
  box-shadow: 0 18px 38px rgba(31, 61, 54, 0.2);
}

.button-secondary {
  color: var(--sable-deep);
  background: rgba(255, 253, 248, 0.88);
  border-color: var(--line-warm);
}

.button-gold {
  color: #1f251f;
  background: linear-gradient(135deg, #dec191, #c9a46d);
  box-shadow: 0 18px 38px rgba(169, 131, 85, 0.18);
}

.header-cta:hover,
.button:hover,
.motion-card:hover,
.audience-panel:hover,
.cta-card:hover {
  transform: translateY(-3px);
}

.button:active,
.motion-card:active,
.audience-panel:active {
  transform: translateY(-1px) scale(0.99);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--alpine);
  background: rgba(255, 253, 248, 0.92);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-open .nav-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.section-inner {
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
}

.section {
  padding: 112px 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--sable-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  display: inline-block;
  width: 18px;
  margin-right: 12px;
  content: "✦";
}

.home-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(520px, 1fr);
  align-items: stretch;
  min-height: 820px;
  padding-top: 92px;
  overflow: hidden;
}

.home-hero::before {
  position: absolute;
  top: 92px;
  bottom: 132px;
  left: 0;
  z-index: 1;
  width: 58%;
  content: "";
  pointer-events: none;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.9) 64%, rgba(255, 253, 248, 0));
}

.hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(690px, calc(100% - 72px));
  margin-left: 5vw;
  padding: 92px 0 148px;
}

.hero-lead,
.page-hero p,
.split-heading p,
.story-copy p,
.cta-copy p {
  max-width: 66ch;
  color: #344740;
  font-size: 1.05rem;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.hero-media {
  position: relative;
  min-height: 700px;
  overflow: hidden;
}

.hero-media img,
.page-image img,
.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note {
  position: absolute;
  right: 34px;
  bottom: 34px;
  display: grid;
  gap: 4px;
  min-width: 260px;
  padding: 22px 24px;
  color: white;
  background: rgba(31, 61, 54, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(18, 49, 40, 0.18);
}

.floating-note span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.hero-trust {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  min-height: 132px;
  color: rgba(255, 255, 255, 0.82);
  background:
    radial-gradient(circle at 20% 0%, rgba(201, 181, 154, 0.18), transparent 34%),
    linear-gradient(135deg, var(--alpine), var(--alpine-deep));
}

.hero-trust div {
  display: grid;
  grid-template-columns: 54px 1fr;
  align-content: center;
  gap: 2px 20px;
  padding: 30px 5vw;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-trust div:first-child {
  border-left: 0;
}

.trust-icon {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(201, 181, 154, 0.76);
  border-radius: 999px;
  color: var(--sable);
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.hero-trust strong {
  color: white;
  font-size: 0.92rem;
  text-transform: uppercase;
}

.hero-trust span:last-child {
  font-size: 0.9rem;
}

.intro-strip {
  padding: 26px 0;
  background: var(--ivory);
  border-bottom: 1px solid rgba(31, 61, 54, 0.08);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  color: var(--alpine);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.strip-grid span:not(:last-child) {
  border-right: 1px solid var(--line-warm);
}

.split-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(280px, 0.58fr);
  gap: 74px;
  align-items: end;
  margin-bottom: 48px;
}

.centered {
  max-width: 780px;
  margin: 0 auto 48px;
  text-align: center;
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  overflow: hidden;
  background: rgba(255, 253, 248, 0.76);
}

.motion-card {
  display: flex;
  flex-direction: column;
  min-height: 458px;
  padding: 34px 28px;
  border-left: 1px solid var(--line-warm);
  transition: transform 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.motion-card:first-child {
  border-left: 0;
}

.motion-card:hover {
  z-index: 1;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.motion-card > span,
.service-detail > span,
.step-card > span,
.owner-card > span {
  color: var(--sable-deep);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.motion-card p,
.service-detail p,
.step-card p,
.owner-card p,
.benefit span {
  color: var(--muted);
}

.card-visual,
.detail-visual {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0 0 24px;
  background: var(--sage-light);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  isolation: isolate;
}

.card-visual {
  aspect-ratio: 4 / 3;
}

.detail-visual {
  aspect-ratio: 16 / 10;
}

.card-visual img,
.detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  transition: transform 1200ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.card-visual::after,
.detail-visual::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(18, 49, 40, 0.02), rgba(18, 49, 40, 0.3)),
    linear-gradient(135deg, rgba(255, 253, 248, 0.22), transparent 45%);
}

.visual-chip,
.visual-check,
.visual-bar,
.visual-stat,
.visual-pulse {
  position: absolute;
  z-index: 2;
  transition: opacity 520ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.js .visual-chip,
.js .visual-check,
.js .visual-bar,
.js .visual-stat,
.js .visual-pulse {
  opacity: 0;
  transform: translateY(12px);
}

.visual-chip {
  right: 14px;
  bottom: 14px;
  max-width: calc(100% - 28px);
  padding: 9px 11px;
  color: var(--alpine);
  background: rgba(255, 253, 248, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(18, 49, 40, 0.14);
  font-size: 0.68rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
}

.visual-check,
.visual-pulse {
  top: 14px;
  left: 14px;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: var(--alpine);
  background: var(--sable);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(201, 181, 154, 0.2);
  font-size: 0.86rem;
  font-weight: 800;
}

.visual-pulse {
  width: 18px;
  height: 18px;
  color: transparent;
}

.visual-bar {
  top: 16px;
  left: 16px;
  width: min(160px, 58%);
  height: 10px;
  background: rgba(255, 253, 248, 0.86);
  border-radius: 999px;
  box-shadow: 0 16px 26px rgba(18, 49, 40, 0.16);
}

.visual-check + .visual-chip + .visual-bar,
.visual-bar.short {
  top: 38px;
  width: min(110px, 42%);
}

.visual-stat {
  bottom: 14px;
  left: 16px;
  color: var(--sable);
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600;
  line-height: 1;
  text-shadow: 0 18px 30px rgba(0, 0, 0, 0.28);
}

.js .reveal.is-visible .card-visual img,
.js .reveal.is-visible .detail-visual img,
.card-visual:hover img,
.detail-visual:hover img {
  transform: scale(1);
}

.js .reveal.is-visible .card-visual span,
.js .reveal.is-visible .detail-visual span {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(220ms + (var(--i, 1) * 115ms));
}

.js .reveal.is-visible .visual-pulse {
  animation: pulse-ring 1700ms ease-out 520ms 2;
}

@keyframes pulse-ring {
  0% {
    box-shadow: 0 0 0 0 rgba(201, 181, 154, 0.44);
  }

  100% {
    box-shadow: 0 0 0 18px rgba(201, 181, 154, 0);
  }
}

.story-section,
.audience-section,
.steps-section {
  background: var(--ivory);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: 70px;
  align-items: center;
}

.story-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.story-copy {
  max-width: 620px;
}

.check-list {
  display: grid;
  gap: 15px;
  padding: 10px 0 22px;
  margin: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
  color: #384a44;
}

.check-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border: 1px solid var(--sable);
  border-radius: 999px;
  color: var(--sable-deep);
  content: "✓";
  font-size: 0.74rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--alpine);
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
}

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

.step-card {
  position: relative;
  min-height: 268px;
  padding: 30px 28px;
  background: rgba(255, 253, 248, 0.7);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
}

.step-card::after {
  position: absolute;
  top: 45px;
  right: -28px;
  width: 56px;
  height: 1px;
  content: "";
  background: var(--line-warm);
}

.step-card:last-child::after {
  display: none;
}

.metrics-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  color: white;
  background:
    linear-gradient(90deg, rgba(18, 49, 40, 0.95), rgba(18, 49, 40, 0.78) 58%, rgba(18, 49, 40, 0.7)),
    url("assets/stats-alpine-contour-dashboard.jpg") center / cover,
    linear-gradient(135deg, var(--alpine), var(--alpine-deep));
}

.proof-heading {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(280px, 0.55fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 42px;
}

.proof-heading h2,
.proof-heading .eyebrow {
  color: white;
}

.proof-heading p {
  max-width: 64ch;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.14);
}

.metric {
  display: grid;
  gap: 8px;
  min-height: 196px;
  padding: 26px;
  background: rgba(18, 49, 40, 0.36);
}

.metric strong {
  display: flex;
  align-items: baseline;
  gap: 4px;
  color: var(--sable);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
}

.metric strong small {
  font-family: var(--font-serif);
  font-size: 0.42em;
  line-height: 1;
}

.metric > span {
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.metric em {
  max-width: 30ch;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.55;
}

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

.audience-panel {
  display: grid;
  align-content: end;
  min-height: 410px;
  padding: 38px;
  color: var(--alpine);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.96)),
    url("assets/hero-chalet.png") center / cover;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.audience-panel.dark {
  color: white;
  background:
    linear-gradient(180deg, rgba(18, 49, 40, 0.18), rgba(18, 49, 40, 0.96)),
    url("assets/cta-mountains.png") center / cover;
}

.audience-panel span {
  color: var(--sable);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.audience-panel.dark h2,
.audience-panel.dark p {
  color: white;
}

.audience-panel p {
  max-width: 520px;
  margin-bottom: 0;
}

.page-hero {
  padding: 172px 0 96px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 0.72fr);
  gap: 74px;
  align-items: center;
}

.page-hero h1 {
  max-width: 820px;
}

.page-hero-card {
  display: grid;
  gap: 26px;
  padding: 38px;
  color: white;
  background:
    radial-gradient(circle at 10% 0%, rgba(201, 181, 154, 0.18), transparent 35%),
    linear-gradient(135deg, var(--alpine), var(--alpine-deep));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.page-hero-card span {
  font-family: var(--font-serif);
  font-size: 1.65rem;
  line-height: 1.2;
}

.page-hero-card strong {
  color: var(--sable);
}

.page-image {
  min-height: 440px;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  overflow: hidden;
}

.service-detail {
  min-height: 330px;
  padding: 34px;
  background: rgba(255, 253, 248, 0.72);
  border-right: 1px solid var(--line-warm);
  border-bottom: 1px solid var(--line-warm);
}

.service-detail h2 {
  font-size: clamp(2.1rem, 3vw, 3.15rem);
}

.service-detail:nth-child(3n) {
  border-right: 0;
}

.service-detail:nth-last-child(-n + 3) {
  border-bottom: 0;
}

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

.benefit,
.owner-card {
  min-height: 250px;
  padding: 32px;
  background: rgba(255, 253, 248, 0.78);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
}

.benefit strong {
  display: block;
  margin-bottom: 14px;
  color: var(--alpine);
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

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

.station-card {
  min-height: 230px;
  padding: 30px;
  color: var(--alpine);
  background: rgba(255, 253, 248, 0.76);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
}

.station-card.wide {
  grid-column: span 4;
  min-height: auto;
  background: var(--sage-light);
}

.station-card strong {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
}

.quote-section {
  background: var(--paper);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(280px, 0.52fr);
  gap: 60px;
  align-items: center;
}

blockquote {
  margin: 0;
}

blockquote p {
  margin-bottom: 18px;
  color: var(--alpine);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 4.6rem);
  line-height: 1.05;
}

cite {
  color: var(--sable-deep);
  font-style: normal;
  font-weight: 800;
  text-transform: uppercase;
}

.quote-notes,
.contact-points {
  display: grid;
  gap: 10px;
}

.quote-notes span,
.contact-points span {
  padding: 16px 18px;
  color: var(--alpine);
  background: rgba(255, 253, 248, 0.74);
  border: 1px solid var(--line-warm);
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-section {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(320px, 1fr);
  gap: 72px;
  align-items: start;
}

.contact-intro {
  position: sticky;
  top: 110px;
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: 30px;
  color: white;
  background:
    radial-gradient(circle at 92% 0%, rgba(201, 181, 154, 0.14), transparent 30%),
    linear-gradient(135deg, var(--alpine), var(--alpine-deep));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

label span {
  display: block;
  margin-bottom: 7px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 253, 248, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sable);
  box-shadow: 0 0 0 4px rgba(201, 181, 154, 0.22);
}

.form-button {
  width: 100%;
  margin-top: 4px;
}

.form-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  text-align: center;
}

.faq-section {
  background: var(--paper);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.65fr) minmax(340px, 1fr);
  gap: 94px;
  align-items: start;
}

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

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

summary {
  position: relative;
  min-height: 74px;
  padding: 24px 64px 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

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

summary::after {
  position: absolute;
  top: 20px;
  right: 0;
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  color: white;
  content: "+";
  background: var(--alpine);
}

details[open] summary::after {
  content: "−";
}

details p {
  max-width: 720px;
  margin: 0;
  padding: 0 64px 24px 0;
  color: var(--muted);
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(320px, 0.58fr) minmax(0, 1fr);
  color: white;
  background:
    radial-gradient(circle at 72% 10%, rgba(201, 181, 154, 0.12), transparent 32%),
    linear-gradient(135deg, var(--alpine), var(--alpine-deep));
}

.compact-cta {
  display: block;
}

.cta-image {
  min-height: 620px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(300px, 0.48fr);
  gap: 52px;
  align-items: center;
  padding: 92px 0;
}

.cta-grid.single {
  grid-template-columns: minmax(300px, 0.9fr) auto;
}

.cta-copy h2,
.cta-copy .eyebrow,
.cta-copy p {
  color: white;
}

.cta-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.cta-card {
  display: grid;
  gap: 8px;
  padding: 30px;
  color: var(--ink);
  background: var(--paper);
  border-radius: var(--radius);
  transition: transform 260ms ease, box-shadow 260ms ease;
}

.cta-card span {
  color: var(--sable-deep);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.cta-card strong {
  color: var(--alpine);
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 1;
}

.cta-card small {
  color: var(--muted);
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: var(--alpine-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.12fr 1fr 0.72fr 1fr;
  gap: 42px;
  padding: 54px 0;
}

.footer-brand,
.footer-brand small,
.footer-brand strong,
.footer-brand strong span,
.site-footer strong {
  color: white;
}

.site-footer p {
  margin: 0;
}

.site-footer nav,
.site-footer div:last-child {
  display: grid;
  gap: 8px;
}

.site-footer a:hover {
  color: white;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--max), calc(100% - 44px));
  margin: 0 auto;
  padding: 18px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.84rem;
}

.not-found {
  display: grid;
  align-items: center;
  min-height: 100dvh;
  padding: 120px 0;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 700ms cubic-bezier(0.22, 1, 0.36, 1), transform 700ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0ms);
}

.js .story-media.reveal,
.js .page-image.reveal {
  transform: translateY(30px) scale(0.98);
}

.js .story-media.reveal.is-visible,
.js .page-image.reveal.is-visible {
  transform: translateY(0) scale(1);
}

.js .home-hero .reveal,
.js .page-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1160px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .site-nav,
  .header-cta {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-header.is-open .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 22px;
    left: 22px;
    display: grid;
    gap: 0;
    padding: 12px;
    background: rgba(255, 253, 248, 0.98);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .site-header.is-open .site-nav a {
    padding: 14px 10px;
    border-bottom: 1px solid rgba(31, 61, 54, 0.08);
  }

  .home-hero,
  .page-hero-grid,
  .split-heading,
  .proof-heading,
  .story-grid,
  .quote-grid,
  .contact-grid,
  .faq-grid,
  .cta-grid,
  .cta-grid.single {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .home-hero {
    padding-top: 92px;
  }

  .home-hero::before {
    width: 100%;
    background: linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(255, 253, 248, 0.72) 70%, rgba(255, 253, 248, 0));
  }

  .hero-copy {
    width: min(720px, calc(100% - 44px));
    padding: 82px 0 40px;
    margin: 0 auto;
  }

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

  .hero-trust {
    position: relative;
  }

  .service-rail,
  .step-grid,
  .metrics-grid,
  .station-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-detail-grid,
  .benefit-grid,
  .owner-grid {
    grid-template-columns: 1fr 1fr;
  }

  .service-detail,
  .service-detail:nth-child(3n),
  .service-detail:nth-last-child(-n + 3) {
    border-right: 1px solid var(--line-warm);
    border-bottom: 1px solid var(--line-warm);
  }

  .service-detail:nth-child(2n) {
    border-right: 0;
  }

  .service-detail:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .station-card.wide {
    grid-column: span 2;
  }

  .final-cta {
    grid-template-columns: 1fr;
  }

  .cta-image {
    min-height: 360px;
  }

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

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site-header {
    min-height: 76px;
    padding: 14px 22px;
  }

  .brand-mark {
    width: 54px;
  }

  .brand-copy strong {
    font-size: 1.28rem;
  }

  .brand-copy small {
    display: none;
  }

  .home-hero {
    min-height: auto;
    padding-top: 76px;
  }

  .home-hero::before {
    top: 76px;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero-actions,
  .form-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-media {
    min-height: 340px;
  }

  .floating-note {
    right: 18px;
    bottom: 18px;
    left: 18px;
    min-width: 0;
  }

  .hero-trust,
  .strip-grid,
  .service-rail,
  .step-grid,
  .metrics-grid,
  .audience-grid,
  .service-detail-grid,
  .benefit-grid,
  .owner-grid,
  .station-map,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-trust div,
  .hero-trust div:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }

  .strip-grid {
    text-align: left;
  }

  .strip-grid span:not(:last-child) {
    padding-bottom: 12px;
    border-right: 0;
    border-bottom: 1px solid var(--line-warm);
  }

  .section {
    padding: 76px 0;
  }

  .section-inner {
    width: min(var(--max), calc(100% - 36px));
  }

  .motion-card,
  .motion-card:first-child {
    min-height: 0;
    border-top: 1px solid var(--line-warm);
    border-left: 0;
  }

  .motion-card:first-child {
    border-top: 0;
  }

  .story-media,
  .page-image {
    min-height: 280px;
  }

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

  .step-card::after {
    display: none;
  }

  .service-detail,
  .service-detail:nth-child(2n),
  .service-detail:nth-child(3n),
  .service-detail:nth-last-child(-n + 2),
  .service-detail:nth-last-child(-n + 3) {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-warm);
  }

  .service-detail:last-child {
    border-bottom: 0;
  }

  .station-card.wide {
    grid-column: auto;
  }

  .contact-intro {
    position: static;
  }

  .lead-form {
    padding: 24px 18px;
  }

  summary {
    padding-right: 48px;
  }

  details p {
    padding-right: 0;
  }

  .cta-grid,
  .cta-grid.single {
    padding: 72px 0;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }

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

  .js .card-visual span,
  .js .detail-visual span,
  .card-visual img,
  .detail-visual img {
    opacity: 1;
    transform: none;
  }
}
