:root {
  --ink: #090d0b;
  --ink-soft: #101712;
  --ink-lift: #182019;
  --paper: #f3f6f2;
  --paper-2: #e9eee9;
  --white: #ffffff;
  --muted: #9aa59e;
  --muted-dark: #5f6c64;
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(9, 13, 11, 0.13);
  --lime: #b8ef16;
  --lime-bright: #caff21;
  --lime-dark: #6d9410;
  --shell: min(1180px, calc(100% - 48px));
  --radius: 22px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

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

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

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

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
.eyebrow {
  font-family: "Arial Narrow", "Roboto Condensed", Inter, ui-sans-serif, sans-serif;
}

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

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

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

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

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

.site-header {
  position: fixed;
  z-index: 100;
  inset: 0 0 auto;
  border-bottom: 1px solid transparent;
  transition: background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 12, 9, 0.88);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 224px;
  max-width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.2vw, 34px);
}

.main-nav > a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 650;
  transition: color 180ms ease;
}

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

.main-nav > a:hover {
  color: var(--white);
}

.main-nav > a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  padding: 11px 17px;
  border: 1px solid rgba(184, 239, 22, 0.55);
  border-radius: 999px;
}

.nav-cta:hover {
  background: var(--lime);
  color: var(--ink) !important;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 200ms ease, opacity 200ms ease;
}

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

.menu-toggle[aria-expanded="true"] > span:nth-child(3) {
  opacity: 0;
}

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

.hero {
  position: relative;
  min-height: 760px;
  height: min(940px, 100svh);
  overflow: hidden;
  background: #07100b;
  isolation: isolate;
}

.hero-media,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
  background-image: url("assets/maison-comminges.webp");
  background-size: cover;
  background-position: 64% center;
  transform: scale(1.01);
  animation: hero-in 1.4s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(5, 10, 7, 0.98) 0%, rgba(5, 10, 7, 0.91) 36%, rgba(5, 10, 7, 0.54) 65%, rgba(5, 10, 7, 0.16) 100%),
    linear-gradient(180deg, rgba(4, 8, 5, 0.35) 0%, transparent 45%, rgba(4, 8, 5, 0.64) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.65px, transparent 0.65px);
  background-size: 6px 6px;
  opacity: 0.12;
  pointer-events: none;
}

.hero-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(350px, 0.72fr);
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
  padding-top: 86px;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 720px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow > span {
  display: inline-block;
  width: 34px;
  height: 2px;
  background: var(--lime);
  box-shadow: 0 0 14px rgba(184, 239, 22, 0.45);
}

.eyebrow.dark {
  color: var(--muted-dark);
}

.hero h1 {
  max-width: 700px;
  margin-bottom: 24px;
  font-size: clamp(3.5rem, 6.2vw, 6.5rem);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 0.92;
}

.hero h1 em {
  display: block;
  color: var(--lime);
  font-style: normal;
  font-weight: 450;
}

.hero-lead {
  max-width: 640px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.03rem, 1.6vw, 1.21rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.button-primary {
  background: var(--lime);
  color: var(--ink);
  box-shadow: 0 12px 35px rgba(184, 239, 22, 0.18);
}

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

.button-ghost {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 13px 24px;
  margin: 32px 0 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  list-style: none;
}

.trust-list li {
  position: relative;
  padding-left: 18px;
}

.trust-list li::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 12px rgba(184, 239, 22, 0.6);
}

.hero-card {
  align-self: end;
  margin-bottom: 75px;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 26px;
  background: rgba(8, 13, 9, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px) saturate(120%);
}

.hero-card-top {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 10px;
  padding: 2px 3px 19px;
}

.hero-card-top > span:not(.status-dot) {
  font-size: 0.92rem;
  font-weight: 800;
}

.hero-card-top small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.74rem;
}

.status-dot {
  grid-row: 1 / 3;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 16px rgba(184, 239, 22, 0.9);
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.control-item {
  min-height: 126px;
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.control-item.active {
  border-color: rgba(184, 239, 22, 0.37);
  background: linear-gradient(145deg, rgba(184, 239, 22, 0.18), rgba(255, 255, 255, 0.04));
}

.control-item svg {
  width: 27px;
  height: 27px;
  margin-bottom: 17px;
  fill: none;
  stroke: var(--lime);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.control-item span,
.control-item strong {
  display: block;
}

.control-item span {
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.control-item strong {
  font-size: 0.86rem;
  line-height: 1.25;
}

.hero-card > p {
  margin: 17px 3px 1px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.78rem;
  line-height: 1.55;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  animation: bob 1.6s ease-in-out infinite;
}

.section {
  padding: clamp(86px, 10vw, 140px) 0;
}

.solutions-section,
.packs-section,
.commitments-section {
  background: var(--paper);
  color: var(--ink);
}

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

.section-heading.compact {
  margin-bottom: 48px;
}

.section-heading h2,
.scenario-copy h2,
.method-intro h2,
.commitments-heading h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(2.55rem, 5vw, 5rem);
  font-weight: 820;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.section-heading > p,
.scenario-copy > p,
.contact-copy > p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 1.05rem;
  line-height: 1.75;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.25);
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.service-card:hover {
  z-index: 1;
  background: var(--ink-soft);
  color: var(--white);
  transform: translateY(-5px);
  box-shadow: 0 24px 55px rgba(4, 8, 6, 0.16);
}

.service-number {
  position: absolute;
  top: 27px;
  right: 30px;
  color: #aeb8b1;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.service-icon,
.pack-mini-icon {
  display: grid;
  place-items: center;
  width: 53px;
  height: 53px;
  border: 1px solid rgba(109, 148, 16, 0.3);
  border-radius: 16px;
  background: rgba(184, 239, 22, 0.12);
}

.service-icon {
  margin-bottom: 56px;
}

.service-icon svg,
.pack-mini-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--lime-dark);
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:hover .service-icon {
  border-color: rgba(184, 239, 22, 0.4);
  background: rgba(184, 239, 22, 0.16);
}

.service-card:hover .service-icon svg {
  stroke: var(--lime);
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.38rem;
  line-height: 1.15;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  line-height: 1.68;
}

.service-card:hover p {
  color: rgba(255, 255, 255, 0.62);
}

.scenario-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 20%, rgba(184, 239, 22, 0.1), transparent 26%),
    var(--ink-soft);
}

.scenario-section::after {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -250px;
  bottom: -260px;
  border: 1px solid rgba(184, 239, 22, 0.16);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(184, 239, 22, 0.018), 0 0 0 160px rgba(184, 239, 22, 0.012);
}

.scenario-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(440px, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.scenario-copy {
  position: sticky;
  top: 130px;
}

.scenario-copy h2 {
  margin-bottom: 26px;
}

.scenario-copy > p {
  color: rgba(255, 255, 255, 0.62);
}

.text-link {
  display: inline-flex;
  gap: 14px;
  align-items: center;
  margin-top: 32px;
  color: var(--lime);
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.timeline {
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 66px;
  width: 1px;
  background: linear-gradient(var(--lime), rgba(255, 255, 255, 0.12));
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px 1fr;
  align-items: center;
  min-height: 124px;
  padding: 20px 26px 20px 0;
  border-bottom: 1px solid var(--line);
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 62px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--ink-soft);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.timeline-item.featured::before {
  background: var(--lime);
  box-shadow: 0 0 18px rgba(184, 239, 22, 0.75);
}

.timeline-item time {
  color: var(--lime);
  font-size: 0.73rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.timeline-item div {
  padding-left: 28px;
}

.timeline-item strong,
.timeline-item span {
  display: block;
}

.timeline-item strong {
  margin-bottom: 5px;
  font-size: 1.07rem;
}

.timeline-item span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.88rem;
}

.packs-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.77fr) minmax(0, 1.23fr);
  gap: 22px;
}

.pack-card,
.pack-list {
  border-radius: var(--radius);
}

.pack-featured {
  position: relative;
  overflow: hidden;
  padding: 42px;
  background: var(--ink-soft);
  color: var(--white);
  box-shadow: 0 28px 60px rgba(8, 14, 10, 0.15);
}

.pack-featured::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 290px;
  right: -135px;
  bottom: -145px;
  border: 58px solid rgba(184, 239, 22, 0.09);
  border-radius: 50%;
}

.pack-kicker {
  margin-bottom: 52px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pack-featured h3 {
  max-width: 360px;
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 3.7vw, 3.3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.pack-featured > p {
  color: rgba(255, 255, 255, 0.6);
}

.pack-featured ul {
  display: grid;
  gap: 9px;
  margin: 28px 0 36px;
  padding: 0;
  list-style: none;
}

.pack-featured li {
  position: relative;
  padding-left: 24px;
  font-size: 0.9rem;
}

.pack-featured li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--lime);
  font-weight: 900;
}

.pack-featured > a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--lime);
  font-weight: 850;
}

.pack-featured > a span {
  transition: transform 180ms ease;
}

.pack-featured > a:hover span {
  transform: translateX(5px);
}

.pack-list {
  overflow: hidden;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.48);
}

.pack-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 22px;
  min-height: 145px;
  padding: 25px 30px;
  border-bottom: 1px solid var(--line-dark);
  transition: background 180ms ease;
}

.pack-row:last-child {
  border-bottom: 0;
}

.pack-row:hover {
  background: var(--white);
}

.pack-mini-icon {
  width: 49px;
  height: 49px;
  border-radius: 15px;
}

.pack-row h3 {
  margin-bottom: 5px;
  font-size: 1.12rem;
}

.pack-row p {
  margin-bottom: 0;
  color: var(--muted-dark);
  font-size: 0.88rem;
}

.pack-row > a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  font-size: 1.25rem;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.pack-row > a:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translateX(3px);
}

.method-section {
  position: relative;
  background: #0b100d;
}

.method-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image: linear-gradient(rgba(255, 255, 255, 0.25) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: linear-gradient(to bottom, transparent, #000 25%, #000 75%, transparent);
}

.method-intro {
  position: relative;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 70px;
}

.method-intro .eyebrow {
  margin-bottom: 8px;
}

.method-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-steps li {
  min-height: 280px;
  padding: 36px 28px 24px 0;
  border-right: 1px solid var(--line);
}

.method-steps li + li {
  padding-left: 28px;
}

.method-steps li:last-child {
  border-right: 0;
}

.method-steps li > span {
  display: block;
  margin-bottom: 72px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
}

.method-steps h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.method-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.51);
  font-size: 0.88rem;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-dark);
  border-left: 1px solid var(--line-dark);
}

.commitments-heading,
.commitment {
  min-height: 290px;
  padding: 40px;
  border-right: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.commitments-heading {
  grid-row: span 2;
  min-height: 580px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper-2);
}

.commitments-heading h2 {
  max-width: 500px;
}

.commitment {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-right: 70px;
  transition: background 180ms ease;
}

.commitment:hover {
  background: var(--white);
}

.commitment > strong {
  position: absolute;
  top: 35px;
  right: 35px;
  color: var(--lime-dark);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
}

.commitment h3 {
  margin-bottom: 10px;
  font-size: 1.28rem;
}

.commitment p {
  max-width: 480px;
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.9rem;
}

.contact-section {
  position: relative;
  overflow: hidden;
  padding: clamp(85px, 10vw, 140px) 0;
  background: var(--lime);
  color: var(--ink);
}

.contact-section::before {
  content: "CD";
  position: absolute;
  right: -0.08em;
  bottom: -0.43em;
  color: rgba(9, 13, 11, 0.06);
  font-family: "Arial Narrow", sans-serif;
  font-size: min(34vw, 520px);
  font-weight: 950;
  letter-spacing: -0.11em;
  line-height: 1;
}

.contact-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(430px, 1fr);
  align-items: center;
  gap: clamp(60px, 9vw, 130px);
}

.contact-copy .eyebrow {
  color: rgba(9, 13, 11, 0.62);
}

.contact-copy .eyebrow > span {
  background: var(--ink);
  box-shadow: none;
}

.contact-copy h2 {
  margin-bottom: 25px;
}

.contact-copy > p {
  color: rgba(9, 13, 11, 0.68);
}

.contact-actions {
  display: grid;
  border-top: 1px solid rgba(9, 13, 11, 0.28);
}

.contact-link {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 18px;
  min-height: 100px;
  padding: 18px 4px;
  border-bottom: 1px solid rgba(9, 13, 11, 0.28);
  transition: padding 180ms ease;
}

.contact-link:hover {
  padding-left: 12px;
}

.contact-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(9, 13, 11, 0.25);
  border-radius: 50%;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link small,
.contact-link strong {
  display: block;
}

.contact-link small {
  margin-bottom: 3px;
  color: rgba(9, 13, 11, 0.56);
  font-size: 0.76rem;
}

.contact-link strong {
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.contact-link > b {
  font-size: 1.4rem;
  transition: transform 180ms ease;
}

.contact-link:hover > b {
  transform: translateX(5px);
}

.site-footer {
  padding: 55px 0 25px;
  background: #070a08;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 46px;
  padding-bottom: 45px;
  border-bottom: 1px solid var(--line);
}

.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.82rem;
}

.footer-top nav {
  display: flex;
  gap: 24px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  font-weight: 700;
}

.footer-top nav a:hover {
  color: var(--lime);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px 30px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.68rem;
  line-height: 1.5;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms cubic-bezier(0.2, 0.75, 0.2, 1), transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

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

.services-grid .reveal:nth-child(2),
.method-steps .reveal:nth-child(2) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(3),
.method-steps .reveal:nth-child(3) {
  transition-delay: 140ms;
}

.services-grid .reveal:nth-child(5),
.method-steps .reveal:nth-child(4) {
  transition-delay: 70ms;
}

.services-grid .reveal:nth-child(6) {
  transition-delay: 140ms;
}

@keyframes hero-in {
  from { opacity: 0; transform: scale(1.05); }
  to { opacity: 1; transform: scale(1.01); }
}

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(4px); }
}

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

  .main-nav > a {
    font-size: 0.82rem;
  }

  .hero-grid {
    grid-template-columns: 1fr minmax(310px, 0.6fr);
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 6.6vw, 5rem);
  }

  .section-heading,
  .scenario-grid,
  .contact-grid {
    gap: 55px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-intro {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 860px) {
  :root {
    --shell: min(100% - 36px, 720px);
  }

  .menu-toggle {
    display: block;
    position: relative;
    z-index: 2;
  }

  .main-nav {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 10px;
    padding: 100px max(24px, calc((100vw - 720px) / 2));
    background: rgba(7, 11, 8, 0.97);
    backdrop-filter: blur(18px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, visibility 180ms ease, transform 180ms ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a {
    font-size: clamp(1.8rem, 7vw, 2.8rem);
    font-weight: 750;
    letter-spacing: -0.035em;
  }

  .main-nav > a:not(.nav-cta)::after {
    bottom: 2px;
  }

  .nav-cta {
    margin-top: 18px;
    padding: 12px 20px;
    border-color: var(--lime);
    font-size: 1rem !important;
    letter-spacing: 0 !important;
  }

  .hero {
    min-height: auto;
    height: auto;
  }

  .hero-grid {
    min-height: 100svh;
    grid-template-columns: 1fr;
    align-content: center;
    gap: 36px;
    padding-top: 134px;
    padding-bottom: 84px;
  }

  .hero-media {
    background-position: 67% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(5, 10, 7, 0.94) 0%, rgba(5, 10, 7, 0.72) 65%, rgba(5, 10, 7, 0.45) 100%),
      linear-gradient(180deg, rgba(4, 8, 5, 0.45), rgba(4, 8, 5, 0.82));
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero-card {
    align-self: auto;
    width: min(100%, 510px);
    margin: 0;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading,
  .scenario-grid,
  .packs-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: start;
    gap: 28px;
  }

  .section-heading > p {
    max-width: 620px;
  }

  .scenario-copy {
    position: relative;
    top: auto;
  }

  .timeline {
    max-width: 650px;
  }

  .packs-grid {
    gap: 18px;
  }

  .method-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .method-steps li:nth-child(2) {
    border-right: 0;
  }

  .method-steps li:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .method-steps li:nth-child(3) {
    padding-left: 0;
  }

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

  .commitments-heading {
    grid-row: auto;
    min-height: 400px;
  }

  .contact-grid {
    gap: 50px;
  }

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

  .footer-top > p {
    display: none;
  }
}

@media (max-width: 600px) {
  :root {
    --shell: calc(100% - 28px);
    --radius: 18px;
  }

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

  .brand-logo {
    width: 190px;
  }

  .hero-grid {
    align-content: start;
    min-height: auto;
    padding-top: 130px;
    padding-bottom: 68px;
  }

  .hero h1 {
    font-size: clamp(3rem, 14vw, 4.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hero-card {
    padding: 16px;
    border-radius: 20px;
  }

  .control-item {
    min-height: 112px;
    padding: 14px;
  }

  .control-item svg {
    margin-bottom: 12px;
  }

  .section {
    padding: 82px 0;
  }

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

  .section-heading h2,
  .scenario-copy h2,
  .method-intro h2,
  .commitments-heading h2,
  .contact-copy h2 {
    font-size: clamp(2.45rem, 12vw, 3.6rem);
  }

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

  .service-card {
    min-height: 290px;
    padding: 28px;
  }

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

  .scenario-grid {
    gap: 46px;
  }

  .timeline::before {
    left: 51px;
  }

  .timeline-item {
    grid-template-columns: 56px 1fr;
    min-height: 128px;
    padding-right: 0;
  }

  .timeline-item::before {
    left: 47px;
  }

  .timeline-item div {
    padding-left: 22px;
  }

  .pack-featured {
    padding: 30px;
  }

  .pack-kicker {
    margin-bottom: 36px;
  }

  .pack-row {
    grid-template-columns: 47px 1fr;
    gap: 15px;
    min-height: 136px;
    padding: 22px 19px;
  }

  .pack-row > a {
    display: none;
  }

  .pack-mini-icon {
    width: 45px;
    height: 45px;
  }

  .method-intro {
    margin-bottom: 45px;
  }

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

  .method-steps li,
  .method-steps li + li,
  .method-steps li:nth-child(3) {
    min-height: 240px;
    padding: 30px 8px 26px 0;
    border-top: 1px solid var(--line);
    border-right: 0;
  }

  .method-steps li:first-child {
    border-top: 0;
  }

  .method-steps li > span {
    margin-bottom: 50px;
  }

  .commitments-heading,
  .commitment {
    min-height: 270px;
    padding: 30px;
  }

  .commitments-heading {
    min-height: 360px;
  }

  .commitment {
    padding-right: 48px;
  }

  .commitment > strong {
    top: 27px;
    right: 25px;
  }

  .contact-link {
    grid-template-columns: 47px 1fr auto;
    gap: 13px;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
  }

  .contact-link strong {
    font-size: 0.96rem;
  }

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

  .footer-top nav {
    flex-wrap: wrap;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  .reveal-ready .reveal {
    opacity: 1;
    transform: none;
  }
}
