@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Sora:wght@500;600;700;800&display=swap");

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #fdfbf7;
  --surface-mint: #eef9f5;
  --surface-peach: #fff1e6;
  --surface-sky: #eff6ff;
  --surface-warm: #fdf4e8;
  --ink: #0d1f14;
  --ink-light: #1e3828;
  --muted: #5e6b62;
  --muted-strong: #3a4a3f;
  --line: rgba(17, 33, 23, 0.08);
  --line-strong: rgba(17, 33, 23, 0.16);
  --accent: #0c9076;
  --accent-deep: #075848;
  --accent-light: #13b090;
  --warm: #da7f39;
  --warm-deep: #b5621e;
  --berry: #c54f72;
  --sun: #dca72d;
  --shadow-xs: 0 4px 12px rgba(17, 33, 23, 0.06);
  --shadow-sm: 0 12px 32px rgba(17, 33, 23, 0.07);
  --shadow-md: 0 20px 52px rgba(17, 33, 23, 0.10);
  --shadow-lg: 0 32px 80px rgba(17, 33, 23, 0.14);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --max-width: 1320px;
  --font-body: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-heading: "Sora", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 0.97rem;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.72;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
p { margin: 0; }

.container {
  width: min(var(--max-width), calc(100% - 3rem));
  margin: 0 auto;
}

/* ─── HEADER ─────────────────────────────────────────────── */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s ease;
}

.site-header::before {
  content: "";
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--warm) 50%, var(--berry) 100%);
}

.site-header.is-scrolled {
  box-shadow: 0 8px 28px rgba(17, 33, 23, 0.07);
}

.topline {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-deep);
  border-bottom: 1px solid var(--line);
}

.topline .container {
  padding: 0.6rem 0;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  position: relative;
  display: inline-flex;
  flex-direction: column;
  gap: 0.12rem;
  padding-left: 1.15rem;
  flex-shrink: 0;
}

.brand::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.08rem;
  width: 0.42rem;
  height: calc(100% - 0.16rem);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--warm));
}

.brand-logo {
  width: auto;
  height: clamp(3.7rem, 6vw, 4.8rem);
  object-fit: contain;
}

.brand-mark {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.4vw, 1.85rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
}

.brand-line {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px 4px 14px 4px;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 0;
}

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle[aria-expanded="true"] span { opacity: 0; transform: scaleX(0); }
.nav-toggle[aria-expanded="true"]::before { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translateY(-7px) rotate(-45deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.nav-links > a,
.nav-dropdown-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 0.42rem 0.75rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--muted);
  border-radius: 0.8rem 0.2rem 0.8rem 0.2rem;
  transition: color 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.nav-links > a::after,
.nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  right: 0.75rem;
  bottom: 0.3rem;
  height: 1.5px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  opacity: 0.7;
  transition: transform 0.2s ease;
}

.nav-links > a:hover,
.nav-links > a[aria-current="page"],
.nav-dropdown-toggle:hover,
.nav-dropdown.is-current .nav-dropdown-toggle,
.nav-dropdown.is-open .nav-dropdown-toggle {
  color: var(--ink);
  border-color: rgba(12, 144, 118, 0.1);
  background: rgba(255, 255, 255, 0.7);
}

.nav-links > a:hover::after,
.nav-links > a[aria-current="page"]::after,
.nav-dropdown-toggle:hover::after,
.nav-dropdown.is-current .nav-dropdown-toggle::after,
.nav-dropdown.is-open .nav-dropdown-toggle::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  gap: 0.55rem;
}

.nav-caret {
  width: 0.55rem;
  height: 0.55rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.nav-dropdown.is-open .nav-caret,
.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret {
  transform: rotate(225deg) translateY(-1px);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  right: 0;
  min-width: 16rem;
  padding: 0.7rem;
  display: grid;
  gap: 0.35rem;
  border-radius: 1.2rem 0.3rem 1.2rem 0.3rem;
  border: 1px solid rgba(17, 33, 23, 0.08);
  background:
    radial-gradient(circle at top right, rgba(12, 144, 118, 0.12), transparent 10rem),
    rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 54px rgba(7, 29, 23, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  z-index: 40;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown-menu a {
  display: grid;
  gap: 0.18rem;
  padding: 0.85rem 0.95rem;
  border-radius: 0.9rem 0.2rem 0.9rem 0.2rem;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.65);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.nav-dropdown-menu a:hover,
.nav-dropdown-menu a[aria-current="page"] {
  transform: translateX(4px);
  border-color: rgba(12, 144, 118, 0.14);
  background: rgba(12, 144, 118, 0.06);
}

.nav-menu-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-dropdown-menu small {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.78rem;
}

.nav-cta {
  padding: 0.72rem 1.15rem !important;
  border-radius: 0.95rem 0.2rem 0.95rem 0.2rem !important;
  border: 1px solid rgba(7, 88, 72, 0.24) !important;
  background: transparent !important;
  color: var(--accent-deep) !important;
  font-weight: 700 !important;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: none;
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease, background 0.2s ease !important;
}

.nav-cta:hover {
  background: rgba(12, 144, 118, 0.08) !important;
  border-color: rgba(7, 88, 72, 0.38) !important;
  transform: translateY(-1px);
}

/* ─── HERO ────────────────────────────────────────────────── */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: hero-zoom 18s ease-in-out infinite alternate;
}

@keyframes hero-zoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.08) translateX(1%); }
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(160deg, rgba(7,40,22,0.88) 0%, rgba(7,50,30,0.72) 55%, rgba(10,60,40,0.55) 100%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 7rem 0 5rem;
  width: min(var(--max-width), calc(100% - 2.5rem));
  margin: 0 auto;
}

.hero-content {
  max-width: 700px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.42rem 1rem;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(8px);
  margin-bottom: 1.5rem;
  animation: fade-up 0.8s ease both;
}

.hero-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  flex-shrink: 0;
}

.display-title {
  margin: 0 0 1.4rem;
  font-family: var(--font-heading);
  font-size: clamp(2.85rem, 5.8vw, 5.2rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.05em;
  color: #ffffff;
  max-width: 10.5ch;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
  animation: fade-up 0.8s 0.1s ease both;
}

.display-title em {
  font-style: italic;
  color: rgba(255,255,255,0.75);
}

.hero-lead {
  font-size: 1.1rem;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin-bottom: 2.2rem;
  animation: fade-up 0.8s 0.2s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  animation: fade-up 0.8s 0.3s ease both;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  animation: fade-up 0.8s 0.45s ease both;
}

.hero-metric {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.3rem;
  backdrop-filter: blur(12px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero-metric:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-3px);
}

.hero-metric-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--warm);
  margin-bottom: 0.4rem;
}

.hero-metric h3 {
  margin: 0 0 0.3rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  letter-spacing: -0.02em;
}

.hero-metric p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.5;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── BUTTONS ─────────────────────────────────────────────── */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 50px;
  padding: 0.85rem 1.5rem;
  border-radius: 1rem 0.24rem 1rem 0.24rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: 1px solid rgba(17, 33, 23, 0.14);
  background: transparent;
  overflow: hidden;
  isolation: isolate;
  transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--btn-fill, var(--accent-deep));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
  z-index: -1;
}

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

.btn:hover::before { transform: scaleX(1); }

.btn svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.2s ease;
}

.btn:hover svg { transform: translateX(2px); }

.btn-primary {
  --btn-fill: var(--accent-deep);
  color: var(--accent-deep);
  border-color: rgba(7, 88, 72, 0.24);
  background: rgba(12, 144, 118, 0.04);
  box-shadow: none;
}

.btn-primary:hover {
  color: #ffffff;
  border-color: var(--accent-deep);
  box-shadow: 0 14px 34px rgba(7, 88, 72, 0.16);
}

.btn-secondary {
  --btn-fill: var(--ink);
  color: var(--ink);
  border-color: rgba(17, 33, 23, 0.16);
  background: rgba(255, 255, 255, 0.16);
}

.btn-secondary:hover {
  color: #ffffff;
  border-color: var(--ink);
}

.btn-ghost {
  --btn-fill: var(--accent-deep);
  color: var(--accent-deep);
  border-color: rgba(12, 144, 118, 0.2);
}

.btn-ghost:hover {
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-dark {
  --btn-fill: var(--warm);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: none;
}

.btn-dark:hover {
  border-color: var(--warm);
  box-shadow: 0 16px 40px rgba(218, 127, 57, 0.18);
}

.btn-warm {
  --btn-fill: var(--warm);
  color: var(--warm-deep);
  border-color: rgba(218, 127, 57, 0.24);
  background: rgba(218, 127, 57, 0.05);
  box-shadow: none;
}

.btn-warm:hover {
  color: #ffffff;
  border-color: var(--warm);
  box-shadow: 0 16px 40px rgba(218, 127, 57, 0.16);
}

/* ─── SECTIONS ────────────────────────────────────────────── */

main { padding-bottom: 0; }

.page-section {
  padding: 6rem 0;
  overflow: hidden;
}

.page-section.flush-top { padding-top: 0; }
.page-section.flush-bottom { padding-bottom: 0; }

.section-band {
  padding: 5.5rem 0;
}

.section-band.band-warm {
  background:
    radial-gradient(circle at 80% 20%, rgba(218,127,57,0.12), transparent 20rem),
    #fdf6ed;
}

.section-band.band-dark {
  background:
    radial-gradient(circle at 10% 90%, rgba(12,144,118,0.2), transparent 25rem),
    radial-gradient(circle at 90% 10%, rgba(218,127,57,0.15), transparent 20rem),
    linear-gradient(160deg, #0a1e13, #0f2b1c 60%, #142d20);
}

.section-band.band-mint {
  background:
    radial-gradient(circle at 20% 80%, rgba(12,144,118,0.1), transparent 20rem),
    #f0faf6;
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin-bottom: 0.75rem;
}

.section-kicker::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.75rem;
}

.eyebrow::before {
  content: "";
  width: 1.8rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  flex-shrink: 0;
}

.section-head {
  margin-bottom: 3rem;
  max-width: 52rem;
}

.section-head.centered {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section-head.centered .section-kicker,
.section-head.centered .eyebrow {
  justify-content: center;
  display: flex;
}

.section-head.centered .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 1rem;
  text-wrap: balance;
}

.section-title.light { color: #ffffff; }

.section-copy {
  color: var(--muted);
  font-size: 1.02rem;
  max-width: 54ch;
  margin: 0;
}

.section-copy.light { color: rgba(255,255,255,0.72); }

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 5.5vw, 4.4rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--ink);
  margin: 0 0 1.2rem;
  text-wrap: balance;
}

/* ─── CARDS ───────────────────────────────────────────────── */

.card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--warm), var(--berry));
}

/* ─── WHO WE ARE SPLIT ────────────────────────────────────── */

.split-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.split-text {
  background: var(--surface-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
}

.split-text .copy {
  color: var(--muted);
  line-height: 1.78;
}

.split-text .copy + .copy {
  margin-top: 1rem;
}

.split-pullquote {
  background:
    radial-gradient(circle at top right, rgba(218,127,57,0.18), transparent 12rem),
    linear-gradient(160deg, #0f2a1d, #163228);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  min-height: 280px;
}

.split-pullquote blockquote {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.03em;
  color: #fff;
}

.split-pullquote cite {
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm);
}

.what-we-do {
  background: linear-gradient(135deg, var(--surface-mint), #fff 60%);
  border: 1px solid rgba(12,144,118,0.14);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.what-we-do::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.what-we-do .feature-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.what-we-do h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

/* ─── SERVICE CARDS ───────────────────────────────────────── */

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--line);
}

.service-item {
  background: #fff;
  padding: 2rem 2.2rem;
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  transition: background 0.22s ease;
  position: relative;
}

.service-item::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), var(--warm));
  opacity: 0;
  transition: opacity 0.22s ease;
}

.service-item:hover {
  background: var(--surface-soft);
}

.service-item:hover::after {
  opacity: 1;
}

.service-num {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 600;
  font-style: italic;
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(12,144,118,0.18);
  flex-shrink: 0;
  width: 2.8rem;
  transition: color 0.22s ease;
}

.service-item:hover .service-num {
  color: var(--accent);
}

.service-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.service-item p {
  color: var(--muted);
  font-size: 0.93rem;
  margin: 0;
}

/* ─── APPROACH TIMELINE ───────────────────────────────────── */

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 2.3rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--accent), var(--warm), var(--berry));
  border-radius: 999px;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  padding: 1.8rem 0;
  position: relative;
}

.timeline-item:first-child { padding-top: 0; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-marker {
  flex-shrink: 0;
  width: 4.6rem;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 999px;
  background: #fff;
  border: 2px solid var(--accent);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  font-style: italic;
  color: var(--accent-deep);
  box-shadow: 0 0 0 5px #fff;
  transition: background 0.2s ease, color 0.2s ease;
}

.timeline-item:hover .step-number {
  background: var(--accent);
  color: #fff;
}

.timeline-body h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin: 0 0 0.6rem;
  color: var(--ink);
  padding-top: 0.3rem;
}

.timeline-body p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ─── ICON BADGE ──────────────────────────────────────────── */

.icon-badge {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 3.15rem;
  height: 3.15rem;
  flex-shrink: 0;
  border-radius: 1.05rem;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #ffffff, var(--surface-mint));
  border: 1px solid rgba(12,144,118,0.18);
  color: var(--accent-deep);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.icon-badge::after {
  content: "";
  position: absolute;
  inset: 0.38rem;
  border-radius: 0.8rem;
  border: 1px solid rgba(12, 144, 118, 0.08);
  pointer-events: none;
}

.icon-badge svg {
  width: 1.32rem;
  height: 1.32rem;
  stroke: currentColor;
  stroke-width: 1.9;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  position: relative;
  z-index: 1;
}

.icon-badge.warm {
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 55%),
    linear-gradient(135deg, #fff, var(--surface-peach));
  border-color: rgba(218,127,57,0.2);
  color: var(--warm-deep);
}

/* ─── DETAIL LIST ─────────────────────────────────────────── */

.detail-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.detail-list li {
  position: relative;
  padding-left: 1.3rem;
  color: var(--muted-strong);
  font-size: 0.95rem;
}

.detail-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--warm));
}

/* ─── FOCUS AREA CARDS (warm band) ───────────────────────── */

.focus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.focus-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.6rem;
  border: 1px solid rgba(218,127,57,0.15);
  box-shadow: 0 4px 16px rgba(218,127,57,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.focus-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(218,127,57,0.14);
}

.focus-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0.8rem 0 0.5rem;
  color: var(--ink);
}

.focus-card p {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

/* ─── CONTACT SPLIT ───────────────────────────────────────── */

.contact-split {
  display: grid;
  grid-template-columns: 1fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.contact-left {
  background:
    radial-gradient(circle at top right, rgba(218,127,57,0.18), transparent 14rem),
    linear-gradient(160deg, #0a1e13, #0f2b1c 60%, #142d20);
  padding: 3rem;
  color: #fff;
}

.contact-left h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1.2rem;
  color: #fff;
}

.contact-left p {
  color: rgba(255,255,255,0.72);
  margin-bottom: 2rem;
  font-size: 0.97rem;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.9rem 1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s ease;
}

.contact-channel:hover {
  background: rgba(255,255,255,0.14);
}

.contact-channel svg {
  width: 1.15rem;
  height: 1.15rem;
  stroke: var(--warm);
  stroke-width: 1.8;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.contact-right {
  background: var(--surface-soft);
  padding: 3rem;
  border-top: 1px solid var(--line);
}

.contact-right h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 1.5rem;
  color: var(--ink);
}

.form-field {
  margin-bottom: 1rem;
}

.form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.42rem;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1.5px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
  outline: none;
  appearance: none;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(12,144,118,0.12);
}

.form-field textarea { resize: vertical; min-height: 110px; }

/* ─── PILLARS NOTE ────────────────────────────────────────── */

.pillars-note {
  background: linear-gradient(135deg, var(--surface-mint), #fff 60%);
  border: 1px solid rgba(12,144,118,0.14);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  margin-top: 2rem;
}

.link-stack {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.6rem;
}

.link-stack li {
  position: relative;
  padding-left: 1.2rem;
}

.link-stack li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.75rem;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: var(--accent);
}

.link-stack a {
  font-weight: 700;
  color: var(--accent-deep);
  transition: color 0.15s ease;
}

.link-stack a:hover { color: var(--accent); }

/* ─── FOOTER ──────────────────────────────────────────────── */

footer {
  background:
    radial-gradient(circle at 10% 90%, rgba(12,144,118,0.22), transparent 28rem),
    radial-gradient(circle at 90% 10%, rgba(218,127,57,0.14), transparent 22rem),
    linear-gradient(160deg, #0a1e13, #0f2b1c 60%, #142d20);
  color: rgba(255,255,255,0.8);
  padding: 5rem 0 3rem;
  position: relative;
  overflow: hidden;
}

footer::before {
  content: "Health";
  position: absolute;
  right: -2rem;
  bottom: -3rem;
  font-family: var(--font-heading);
  font-size: clamp(8rem, 18vw, 18rem);
  font-weight: 700;
  font-style: italic;
  letter-spacing: -0.06em;
  color: rgba(255,255,255,0.03);
  pointer-events: none;
  line-height: 1;
  white-space: nowrap;
}

.footer-top {
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.08;
  letter-spacing: -0.04em;
  color: #fff;
  margin: 0.6rem 0 1.2rem;
  max-width: 22ch;
}

.footer-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-group h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm);
  margin: 0 0 1rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-list li {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.65);
}

.footer-list a {
  color: rgba(255,255,255,0.65);
  transition: color 0.18s ease;
}

.footer-list a:hover { color: rgba(255,255,255,0.95); }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.5rem;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.38rem 0.85rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
}

.footer-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--warm);
  flex-shrink: 0;
}

.disclaimer {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.6;
}

/* ─── REVEAL ANIMATIONS ───────────────────────────────────── */

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

.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease var(--reveal-delay, 0ms), transform 0.7s ease var(--reveal-delay, 0ms);
}

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

[data-lift] {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

[data-lift]:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

/* ─── FOCUS / A11Y ────────────────────────────────────────── */

:focus-visible {
  outline: 3px solid rgba(12,144,118,0.28);
  outline-offset: 3px;
}

/* ─── HERO PAGE (inner pages) ─────────────────────────────── */

.page-hero {
  padding: 5rem 0 3.5rem;
  background:
    radial-gradient(circle at 80% 20%, rgba(12,144,118,0.07), transparent 22rem),
    radial-gradient(circle at 10% 80%, rgba(218,127,57,0.07), transparent 18rem),
    #fff;
}

.page-hero-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.page-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

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

/* ─── STACK LIST / FEATURE CARD ───────────────────────────── */

.stack-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--surface-mint), #fff 60%);
  border: 1px solid rgba(12,144,118,0.14);
  border-radius: var(--radius-xl);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.feature-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.feature-head h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}

/* ─── CONTACT CARD (fallback / other pages) ───────────────── */

.contact-card {
  background:
    radial-gradient(circle at top right, rgba(218,127,57,0.16), transparent 14rem),
    linear-gradient(160deg, #0f2a1d, #163228);
  border-radius: var(--radius-xl);
  padding: 3rem;
  border: none;
  box-shadow: var(--shadow-lg);
}

.contact-card .eyebrow { color: var(--warm); }
.contact-card .eyebrow::before { background: var(--warm); }

.contact-card h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 0 0 1rem;
  color: #fff;
}

.contact-card p { color: rgba(255,255,255,0.72); }
.contact-card .detail-list li { color: rgba(255,255,255,0.72); }
.contact-card .detail-list li::before { background: rgba(255,255,255,0.5); }

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

/* ─── VALUE / APPROACH CARDS ──────────────────────────────── */

.value-stack,
.pillar-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.approach-card,
.value-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
}

.approach-card::before,
.value-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--warm), var(--berry));
}

.approach-card h3,
.value-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.6rem;
  color: var(--ink);
}

.approach-card p,
.value-card p { color: var(--muted); font-size: 0.93rem; }

/* ─── QUOTE CARD ──────────────────────────────────────────── */

.quote-card {
  background:
    radial-gradient(circle at top right, rgba(220,167,45,0.16), transparent 12rem),
    linear-gradient(160deg, #10271e, #163228 62%, #1c3d33);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  border: none;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.quote-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, rgba(255,255,255,0.7), var(--warm), var(--berry));
}

.quote-card h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin: 0;
}

.quote-card p {
  margin-top: 0.6rem;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  line-height: 1.4;
  color: rgba(255,255,255,0.8);
  font-style: italic;
}

/* ─── SERVICE CARDS (fallback) ────────────────────────────── */

.service-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.service-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 1.8rem;
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--warm), var(--berry));
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(12,144,118,0.2);
}

.service-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.5rem;
  color: var(--ink);
}

.service-card p { color: var(--muted); font-size: 0.93rem; }

/* metric label */
.metric-label {
  margin: 0 0 0.2rem;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent-deep);
  font-weight: 700;
}

/* Shared layer for the newer page modules */

.hero,
.page-section,
footer {
  position: relative;
  isolation: isolate;
}

.hero {
  min-height: auto;
  padding: 2.6rem 0 1rem;
  background:
    radial-gradient(circle at 85% 18%, rgba(12, 144, 118, 0.08), transparent 24rem),
    radial-gradient(circle at 12% 86%, rgba(218, 127, 57, 0.08), transparent 20rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbf9 100%);
}

.hero-home {
  min-height: calc(100vh - 5rem);
  padding: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(12, 144, 118, 0.14), transparent 28rem),
    radial-gradient(circle at 86% 14%, rgba(218, 127, 57, 0.15), transparent 24rem),
    radial-gradient(circle at 50% 100%, rgba(37, 99, 235, 0.08), transparent 28rem),
    linear-gradient(160deg, #f3fbf7 0%, #ffffff 50%, #f8fbff 100%);
}

.hero-home::before,
.hero-home::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-home::before {
  width: 24rem;
  height: 24rem;
  top: -8rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(12, 144, 118, 0.16), transparent 68%);
  animation: ambient-float 14s ease-in-out infinite;
}

.hero-home::after {
  width: 18rem;
  height: 18rem;
  left: -5rem;
  bottom: 3rem;
  background: radial-gradient(circle, rgba(218, 127, 57, 0.16), transparent 70%);
  animation: ambient-float 18s ease-in-out infinite reverse;
}

.hero-home .hero-shell {
  align-items: stretch;
}

.hero-shell {
  gap: 1.75rem;
  align-items: stretch;
  padding: 2rem 0 1rem;
}

.hero-shell-home {
  gap: 1.35rem;
  padding: 1rem 0 1.85rem;
  grid-template-columns: 1fr;
}

.hero-card,
.hero-visual {
  position: relative;
}

.hero-card {
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(17, 33, 23, 0.08);
  border-radius: var(--radius-xl);
  padding: clamp(1.75rem, 4vw, 3rem);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.hero-card-strong {
  background:
    radial-gradient(circle at top right, rgba(218, 127, 57, 0.2), transparent 14rem),
    radial-gradient(circle at 18% 18%, rgba(19, 176, 144, 0.18), transparent 20rem),
    linear-gradient(160deg, #0d281d, #133427 58%, #174337);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 64px rgba(9, 36, 28, 0.22);
  text-align: center;
}

.hero-card-strong .eyebrow,
.hero-card-strong .display-title,
.hero-card-strong .lead,
.hero-card-strong .copy {
  color: #ffffff;
}

.hero-card-strong .eyebrow::before {
  background: rgba(255, 255, 255, 0.75);
}

.hero-card-strong .lead {
  color: rgba(255, 255, 255, 0.82);
}

.hero-card-strong .copy {
  color: rgba(255, 255, 255, 0.72);
}

.hero-card-strong .lead,
.hero-card-strong .copy {
  margin-left: auto;
  margin-right: auto;
}

.hero-card-strong .eyebrow,
.hero-card-strong .hero-actions {
  justify-content: center;
}

.hero-card-strong .eyebrow {
  display: inline-flex;
}

.hero-card-strong .btn-primary,
.hero-card-strong .btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.hero-card-strong .btn-primary {
  --btn-fill: rgba(255, 255, 255, 0.96);
}

.hero-card-strong .btn-secondary {
  --btn-fill: rgba(255, 255, 255, 0.15);
}

.hero-card-strong .btn-primary:hover {
  color: var(--accent-deep);
  border-color: rgba(255, 255, 255, 0.92);
}

.hero-card-strong .btn-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.42);
}

.hero-card .page-title {
  margin-bottom: 1rem;
}

.lead {
  color: var(--muted-strong);
  font-size: clamp(1rem, 1.8vw, 1.08rem);
  line-height: 1.72;
  max-width: 60ch;
  margin: 0 0 1rem;
}

.copy {
  color: var(--muted);
  line-height: 1.78;
}

.copy + .copy {
  margin-top: 1rem;
}

.hero-visual {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.hero:not(.hero-home) .hero-visual {
  width: min(100%, 980px);
  margin: 0 auto;
}

.hero-visual-home {
  width: min(1680px, calc(100vw - 2rem));
  max-width: none;
  margin-left: calc(50% - 50vw + 1rem);
  margin-right: calc(50% - 50vw + 1rem);
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  min-height: 320px;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, #dcefe9, #f5fbf8);
}

.hero:not(.hero-home) .hero-image-frame {
  min-height: 230px;
  aspect-ratio: 16 / 7;
}

.hero-image-frame::before {
  content: "";
  position: absolute;
  inset: auto auto 1rem 1rem;
  width: 7rem;
  height: 7rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
  z-index: 1;
  animation: ambient-float 16s ease-in-out infinite;
}

.hero-image-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(9, 44, 35, 0.02), rgba(9, 44, 35, 0.22)),
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.12), transparent 18rem);
  pointer-events: none;
}

.hero-brand-stage {
  min-height: 240px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(7, 38, 31, 0.14), rgba(7, 38, 31, 0.42)),
    linear-gradient(135deg, #dbeee7, #f3fbf8);
}

.hero-brand-stage::before {
  inset: auto auto 1.25rem 1.25rem;
  width: 8rem;
  height: 8rem;
  border-radius: 1.6rem;
}

.hero-brand-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
  transform: scale(1.03);
  transition: transform 0.8s ease;
}

.hero-brand-panel {
  position: relative;
  z-index: 2;
  width: min(52%, 560px);
  padding: clamp(0.9rem, 2vw, 1.35rem);
  border-radius: clamp(1.6rem, 4vw, 2.4rem);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 24px 60px rgba(5, 35, 29, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-brand-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  transform: none;
  transition: transform 0.25s ease;
}

.hero-brand-frost {
  position: absolute;
  z-index: 1;
  width: clamp(5.5rem, 10vw, 8rem);
  height: clamp(5.5rem, 10vw, 8rem);
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-brand-frost-left {
  left: 2rem;
  bottom: 1.6rem;
}

.hero-brand-frost-right {
  right: 3rem;
  top: 2.5rem;
  width: clamp(4.5rem, 8vw, 6.5rem);
  height: clamp(4.5rem, 8vw, 6.5rem);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.hero-visual:hover .hero-image-frame img {
  transform: scale(1.06);
}

.hero-visual:hover .hero-brand-stage .hero-brand-backdrop {
  transform: scale(1.08);
}

.hero-visual:hover .hero-brand-panel {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px rgba(5, 35, 29, 0.32);
}

.hero-visual:hover .hero-brand-logo {
  transform: none;
}

.hero-brand-stage .hero-brand-logo {
  width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  transform: none;
}

.hero-visual-home .hero-image-frame {
  min-height: 240px;
}

.hero-intro-card {
  width: min(100%, 1180px);
  margin: -2.1rem auto 0;
  position: relative;
  z-index: 3;
}

.hero-home .metric-stack {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  gap: 0.85rem;
}

.hero-intro-card {
  padding: clamp(1.15rem, 2.3vw, 1.7rem);
}

.hero-intro-card .display-title {
  font-size: clamp(2.45rem, 4.2vw, 4.4rem);
  max-width: 15ch;
  margin-bottom: 1rem;
}

.hero-intro-card .lead {
  font-size: 0.98rem;
  margin-bottom: 0.8rem;
  max-width: 56ch;
}

.hero-intro-card .copy {
  font-size: 0.92rem;
  line-height: 1.65;
  max-width: 68ch;
}

.hero-intro-card .copy + .copy {
  margin-top: 0.7rem;
}

.hero-intro-card .hero-actions {
  margin-top: 1.15rem;
}

.metric-stack,
.proof-stack,
.pathway-band,
.signal-band {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.metric-stack {
  align-content: start;
}

.metric-card,
.signal-pill,
.proof-card,
.pathway-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.15rem 0.3rem 1.15rem 0.3rem;
}

.metric-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(17, 33, 23, 0.08);
  box-shadow: var(--shadow-sm);
}

.metric-card h3,
.story-highlight h3,
.proof-card h3,
.pathway-step h3 {
  font-family: var(--font-heading);
  font-size: 1.26rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin: 0 0 0.45rem;
}

.metric-card p,
.signal-pill p,
.proof-card p,
.pathway-step p,
.story-highlight p,
.subtle-note {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.68;
}

.signal-band {
  grid-column: 1 / -1;
}

.signal-pill {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(248, 252, 250, 0.8));
  border: 1px solid rgba(17, 33, 23, 0.1);
  box-shadow: var(--shadow-xs);
}

.signal-pill strong {
  display: block;
  font-size: 0.98rem;
  color: var(--ink);
  margin-bottom: 0.25rem;
}

.story-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  padding: clamp(1.8rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 100% 0%, rgba(12, 144, 118, 0.08), transparent 18rem),
    #ffffff;
  box-shadow: var(--shadow-sm);
}

.story-copy {
  display: grid;
  gap: 1rem;
}

.story-highlight {
  background: linear-gradient(135deg, var(--surface-mint), #ffffff 70%);
  border: 1px solid rgba(12, 144, 118, 0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.page-section-mint {
  background:
    radial-gradient(circle at 90% 15%, rgba(12, 144, 118, 0.08), transparent 18rem),
    #f2fbf7;
}

.page-section-pearl {
  background:
    radial-gradient(circle at 12% 18%, rgba(218, 127, 57, 0.07), transparent 18rem),
    linear-gradient(180deg, #fffdf9 0%, #f8fbf9 100%);
}

.page-section-blue {
  background:
    radial-gradient(circle at 12% 12%, rgba(37, 99, 235, 0.08), transparent 20rem),
    linear-gradient(180deg, #eff7ff 0%, #f8fbff 100%);
}

.page-section-dark {
  background:
    radial-gradient(circle at 12% 88%, rgba(12, 144, 118, 0.24), transparent 24rem),
    radial-gradient(circle at 88% 14%, rgba(218, 127, 57, 0.18), transparent 18rem),
    linear-gradient(160deg, #0a1f14, #10291d 58%, #153326);
}

.page-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(12, 144, 118, 0.09) 1px, transparent 0);
  background-size: 22px 22px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  opacity: 0.28;
  pointer-events: none;
  z-index: -1;
}

.page-section::after {
  content: "";
  position: absolute;
  width: 26rem;
  height: 26rem;
  right: -10rem;
  top: -10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(12, 144, 118, 0.12), transparent 68%);
  pointer-events: none;
  z-index: -1;
}

.page-section-blue::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(37, 99, 235, 0.1) 1px, transparent 0);
}

.page-section-pearl::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(218, 127, 57, 0.08) 1px, transparent 0);
}

.page-section-dark::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.11) 1px, transparent 0);
  opacity: 0.18;
}

.page-section-dark::after {
  right: auto;
  left: -8rem;
  top: auto;
  bottom: -8rem;
  background: radial-gradient(circle, rgba(218, 127, 57, 0.16), transparent 68%);
}

.on-dark .section-title,
.on-dark .section-copy {
  color: #ffffff;
}

.on-dark .section-copy {
  color: rgba(255, 255, 255, 0.72);
}

.proof-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.proof-card h3 {
  color: #ffffff;
}

.proof-card p {
  color: rgba(255, 255, 255, 0.72);
}

.proof-card .icon-badge {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  box-shadow: none;
}

.credibility-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}

.founder-spotlight {
  position: relative;
  overflow: hidden;
  padding: clamp(1.7rem, 3vw, 2.4rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(218, 127, 57, 0.2), transparent 12rem),
    linear-gradient(155deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 42px rgba(5, 24, 19, 0.22);
}

.founder-spotlight::after {
  content: "Mawonga";
  position: absolute;
  right: -0.6rem;
  bottom: -1.2rem;
  font-family: var(--font-heading);
  font-size: clamp(3.4rem, 10vw, 6.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.05);
  pointer-events: none;
}

.founder-spotlight .section-kicker {
  color: var(--warm);
}

.founder-spotlight .section-kicker::before {
  background: currentColor;
}

.founder-spotlight h3 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 0.8rem;
}

.founder-spotlight p {
  color: rgba(255, 255, 255, 0.74);
  max-width: 60ch;
}

.detail-list-light li {
  color: rgba(255, 255, 255, 0.76);
}

.detail-list-light li::before {
  background: rgba(255, 255, 255, 0.55);
}

.logo-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.logo-chip {
  display: inline-flex;
  align-items: center;
  min-height: 3rem;
  padding: 0.7rem 1rem;
  border-radius: 0.95rem 0.2rem 0.95rem 0.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-stack-wide {
  grid-template-columns: 1fr;
}

.pathway-step {
  display: block;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
}

.pathway-step .step-number {
  margin-bottom: 1rem;
}

.pathway-step p {
  margin: 0;
}

.cta-banner {
  margin-top: 2rem;
  padding: clamp(1.85rem, 4vw, 2.8rem);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(218, 127, 57, 0.22), transparent 14rem),
    linear-gradient(160deg, #0d281d, #153428 58%, #184338);
  box-shadow: var(--shadow-lg);
}

.cta-banner .section-title,
.cta-banner .lead,
.cta-banner .eyebrow {
  color: #ffffff;
}

.cta-banner .eyebrow::before {
  background: rgba(255, 255, 255, 0.75);
}

.cta-banner .lead {
  color: rgba(255, 255, 255, 0.76);
}

.cta-banner {
  text-align: center;
}

.cta-banner .eyebrow,
.cta-banner .contact-actions {
  justify-content: center;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  justify-content: center;
}

.page-link-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.page-link {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1.2rem 1.2rem 1.15rem;
  overflow: hidden;
  border-radius: 1.1rem 0.25rem 1.1rem 0.25rem;
  border: 1px solid rgba(17, 33, 23, 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-xs);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, color 0.22s ease;
}

.page-link:nth-child(1) {
  background: linear-gradient(145deg, #ffffff 0%, #eef8f2 100%);
  border-color: rgba(7, 88, 72, 0.12);
}

.page-link:nth-child(2) {
  background: linear-gradient(145deg, #ffffff 0%, #e4f2ea 100%);
  border-color: rgba(7, 88, 72, 0.14);
}

.page-link:nth-child(3) {
  background: linear-gradient(145deg, #ffffff 0%, #d9ece3 100%);
  border-color: rgba(7, 88, 72, 0.16);
}

.page-link::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(7, 88, 72, 0.94), rgba(12, 144, 118, 0.88));
  transform: translateY(102%);
  transition: transform 0.24s ease;
  z-index: 0;
}

.page-link:nth-child(1)::before {
  background: linear-gradient(120deg, rgba(7, 88, 72, 0.96), rgba(12, 144, 118, 0.82));
}

.page-link:nth-child(2)::before {
  background: linear-gradient(120deg, rgba(11, 101, 74, 0.96), rgba(44, 138, 103, 0.82));
}

.page-link:nth-child(3)::before {
  background: linear-gradient(120deg, rgba(18, 112, 82, 0.96), rgba(64, 155, 116, 0.82));
}

.page-link::after {
  content: "→";
  position: absolute;
  right: 1rem;
  top: 1rem;
  font-size: 1rem;
  color: currentColor;
  opacity: 0.6;
  z-index: 1;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.page-link > * {
  position: relative;
  z-index: 1;
}

.page-link-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}

.page-link strong {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.page-link small {
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.88rem;
}

.page-link:hover,
.page-link[aria-current="page"] {
  transform: translateY(-3px);
  border-color: rgba(7, 88, 72, 0.22);
  box-shadow: var(--shadow-sm);
}

.page-link:hover::before,
.page-link[aria-current="page"]::before {
  transform: translateY(0);
}

.page-link:hover::after,
.page-link[aria-current="page"]::after {
  transform: translateX(4px);
  opacity: 0.9;
}

.page-link::after {
  content: "->";
}

.page-link:hover .page-link-label,
.page-link:hover strong,
.page-link:hover small,
.page-link[aria-current="page"] .page-link-label,
.page-link[aria-current="page"] strong,
.page-link[aria-current="page"] small {
  color: #ffffff;
}

.section-actions-left,
.section-head.is-left {
  justify-content: flex-start;
  text-align: left;
}

.is-left .section-kicker,
.is-left .eyebrow {
  justify-content: flex-start;
}

.service-stack-featured {
  gap: 1.4rem;
}

.service-tone {
  background: linear-gradient(135deg, #ffffff 0%, var(--surface-soft) 100%);
}

.service-tone-teal {
  background: linear-gradient(135deg, #ffffff 0%, var(--surface-mint) 100%);
}

.service-tone-teal::before {
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
}

.service-tone-blue {
  background: linear-gradient(135deg, #ffffff 0%, var(--surface-sky) 100%);
}

.service-tone-blue::before {
  background: linear-gradient(90deg, #2563eb, #60a5fa);
}

.service-tone-light {
  background: linear-gradient(135deg, #ffffff 0%, var(--surface-warm) 100%);
}

.service-tone-light::before {
  background: linear-gradient(90deg, var(--warm), #f0b76b);
}

.dark-card {
  box-shadow: var(--shadow-lg);
}

.conversion-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 1.4rem;
}

.conversion-card {
  position: relative;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.82));
  box-shadow: var(--shadow-xs);
}

.conversion-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--accent), var(--warm));
}

.conversion-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0.9rem 0 0.55rem;
  color: var(--ink);
}

.conversion-card p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 0;
}

.conversion-card-teal {
  background: linear-gradient(140deg, #ffffff, var(--surface-mint));
}

.conversion-card-blue {
  background: linear-gradient(140deg, #ffffff, var(--surface-sky));
}

.conversion-card-light {
  background: linear-gradient(140deg, #ffffff, var(--surface-warm));
}

.conversion-shell {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}

.conversion-aside {
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 3vw, 2rem);
}

.conversion-aside h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.04em;
  color: var(--ink);
  margin: 0 0 0.7rem;
}

.conversion-aside {
  background:
    radial-gradient(circle at top right, rgba(12, 144, 118, 0.1), transparent 14rem),
    linear-gradient(145deg, #ffffff, #f6fbfa);
  border: 1px solid rgba(12, 144, 118, 0.14);
  box-shadow: var(--shadow-xs);
}

.conversion-links {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.2rem;
}

.conversion-link {
  display: flex;
  align-items: flex-start;
  gap: 0.95rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem 0.24rem 1rem 0.24rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(12, 144, 118, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.conversion-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(12, 144, 118, 0.22);
}

.conversion-link strong,
.text-link {
  font-weight: 800;
}

.conversion-link strong {
  display: block;
  color: var(--ink);
  margin-bottom: 0.2rem;
}

.conversion-link small {
  display: block;
  color: var(--muted);
  line-height: 1.5;
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--accent-deep);
  font-size: 0.9rem;
}

.text-link::after {
  content: "→";
  line-height: 1;
}

.value-head,
.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.compact {
  gap: 1rem;
}

.contact-line {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.contact-line:first-child {
  padding-top: 0;
  border-top: none;
}

.contact-line strong {
  display: block;
  margin-bottom: 0.3rem;
  color: var(--ink);
}

.subtle-note,
.subtle-note a {
  color: var(--muted);
}

.subtle-note a {
  font-weight: 700;
  color: var(--accent-deep);
}

.subtle-note a:hover {
  color: var(--accent);
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-title {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #ffffff;
  margin: 0 0 1rem;
  max-width: 18ch;
}

.footer-subtitle {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
  line-height: 1.72;
  max-width: 56ch;
  margin: 0 0 2rem;
}

@keyframes ambient-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -12px, 0); }
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */

@media (min-width: 600px) {
  .hero-metrics { grid-template-columns: repeat(3, 1fr); }
  .focus-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-stack { grid-template-columns: repeat(2, 1fr); }
  .signal-band { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .hero-home .metric-stack { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 800px) {
  .hero-shell { grid-template-columns: 1fr; }
  .hero-shell-home { grid-template-columns: 1fr; }
  .split-layout { grid-template-columns: 1.1fr 0.9fr; }
  .service-grid { grid-template-columns: 1fr 1fr; }
  .contact-split { grid-template-columns: 1fr 1fr; }
  .contact-right { border-top: none; border-left: 1px solid var(--line); }
  .timeline::before { left: 2.3rem; }
  .page-hero-shell { grid-template-columns: 1fr; align-items: stretch; }
  .focus-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-stack { grid-template-columns: repeat(3, 1fr); }
  .pillar-stack { grid-template-columns: repeat(3, 1fr); }
  .value-stack { grid-template-columns: 1fr; }
  .story-panel { grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr); }
  .proof-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .pathway-band { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .service-stack-featured { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-home .metric-stack { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .credibility-shell { grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr); }
  .proof-stack-wide { grid-template-columns: 1fr; }
  .conversion-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .conversion-shell { grid-template-columns: 1fr; }
  .page-link-rail { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1000px) {
  .service-grid { grid-template-columns: 1fr 1fr; }
  .signal-band { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* ─── MOBILE NAV ──────────────────────────────────────────── */

@media (max-width: 760px) {
  .nav-toggle { display: inline-flex; }

  .nav-links {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 1.25rem;
    right: 1.25rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.8rem;
    border-radius: 18px;
    background: #fff;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    z-index: 90;
  }

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

  .nav-links > a,
  .nav-dropdown-toggle { padding: 0.5rem 0.75rem; }
  .nav-dropdown { width: 100%; }
  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }
  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    margin-top: 0.45rem;
    padding: 0.5rem 0 0 0.6rem;
    border: none;
    border-left: 1px solid rgba(17, 33, 23, 0.08);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    visibility: visible;
    transform: none;
    pointer-events: none;
    display: none;
  }
  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    pointer-events: auto;
  }
  .nav-dropdown-menu a {
    padding: 0.75rem 0.85rem;
    background: rgba(255, 255, 255, 0.7);
  }
  .nav-cta { text-align: center; margin-top: 0.3rem; }
  .brand-logo { height: 3.6rem; }

  .hero { min-height: auto; }
  .hero-shell { padding: 4.5rem 0 3.5rem; }
  .hero-shell-home { padding: 1rem 0 2.25rem; }
  .hero-metrics { grid-template-columns: 1fr; gap: 0.7rem; }
  .hero-visual-home {
    width: calc(100vw - 1rem);
    margin-left: calc(50% - 50vw + 0.5rem);
    margin-right: calc(50% - 50vw + 0.5rem);
  }
  .hero-card,
  .contact-card,
  .cta-banner { padding: 1.6rem; }
  .hero-image-frame { min-height: 260px; }
  .hero:not(.hero-home) .hero-image-frame {
    min-height: 185px;
    aspect-ratio: 16 / 8;
  }
  .hero-brand-stage,
  .hero-visual-home .hero-image-frame { min-height: 175px; }
  .hero-intro-card {
    margin-top: -0.45rem;
    width: min(100%, 100%);
    padding: 1.25rem;
  }
  .hero-brand-panel {
    width: min(74%, 280px);
    padding: 0.7rem 0.8rem;
  }
  .hero-brand-frost-left {
    left: 0.9rem;
    bottom: 0.9rem;
  }
  .hero-brand-frost-right {
    right: 0.9rem;
    top: 0.9rem;
  }
  .hero-brand-logo,
  .hero-brand-stage .hero-brand-logo { width: min(100%, 185px); }
  .hero-intro-card .display-title {
    font-size: clamp(2rem, 9vw, 3rem);
    max-width: 10.5ch;
  }
  .hero-intro-card .lead,
  .hero-intro-card .copy {
    font-size: 0.9rem;
  }
  .proof-card,
  .metric-card,
  .signal-pill,
  .pathway-step { padding: 1.2rem; }

  .timeline::before { display: none; }
  .timeline-item { padding: 0; margin-bottom: 1.4rem; }
  .timeline-marker { width: 3rem; }

  .contact-left, .contact-right { padding: 2rem; }

  .display-title { font-size: clamp(2.6rem, 10vw, 4rem); }
}

/* ─── REDUCED MOTION ──────────────────────────────────────── */

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