/* ============================================
   LIVELife Leadership — Main Stylesheet
   2026 Design: Organic/Natural + Editorial
   ============================================ */

/* --- Variables --- */
:root {
  --forest:       #1a3a2a;
  --forest-deep:  #0d2118;
  --forest-mid:   #2d5a3d;
  --forest-light: #4a8c5c;
  --sage:         #7aab8a;
  --sage-light:   #a8c9b3;
  --earth:        #8b6b4a;
  --earth-light:  #c4a882;
  --cream:        #f7f3ee;
  --cream-warm:   #ede6db;
  --amber:        #f4c76a;
  --amber-deep:   #d4963a;
  --charcoal:     #1c1c1c;
  --charcoal-mid: #3d3d3d;
  --text-muted:   #6b6b6b;
  --white:        #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    24px;
  --radius-xl:    48px;

  --shadow-soft:  0 4px 24px rgba(13,33,24,0.08);
  --shadow-med:   0 8px 40px rgba(13,33,24,0.14);
  --shadow-deep:  0 20px 60px rgba(13,33,24,0.2);

  --max-width:    1200px;
  --section-pad:  100px;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 500; letter-spacing: 0.05em; }
em { font-style: italic; color: var(--forest-mid); }
p { color: var(--charcoal-mid); font-size: 1.05rem; line-height: 1.75; }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest-light);
  margin-bottom: 1rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn--primary {
  background: var(--forest);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(26,58,42,0.3);
}
.btn--primary:hover {
  background: var(--forest-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,58,42,0.4);
}
.btn--ghost {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn--ghost:hover {
  background: var(--forest);
  color: var(--white);
}
.btn--outline {
  background: transparent;
  color: var(--forest);
  border: 1.5px solid var(--forest-light);
}
.btn--outline:hover {
  border-color: var(--forest);
  background: var(--cream-warm);
}
.btn--large { padding: 1rem 2.2rem; font-size: 1.05rem; }

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  transition: all 0.3s ease;
}
.nav.scrolled {
  background: rgba(247,243,238,0.96);
  backdrop-filter: blur(12px);
  padding: 0.9rem 2rem;
  box-shadow: 0 2px 20px rgba(13,33,24,0.08);
}
.nav__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--forest);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.2;
  color: var(--forest);
}
.nav__logo-text small { font-size: 0.7rem; font-weight: 400; color: var(--text-muted); font-family: var(--font-body); }
.nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}
.nav__links a {
  padding: 0.5rem 0.85rem;
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--charcoal-mid);
  border-radius: var(--radius-md);
  transition: all 0.2s;
}
.nav__links a:hover { color: var(--forest); background: rgba(26,58,42,0.06); }
.nav__cta {
  background: var(--forest) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.2rem !important;
  border-radius: var(--radius-xl) !important;
  font-weight: 500 !important;
}
.nav__cta:hover { background: var(--forest-deep) !important; }
.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; transition: all 0.3s; }

/* --- Hero --- */
.hero--fullscreen {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  max-width: 100%;
  margin: 0;
}

/* Background video layer */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  will-change: transform;
}
.hero__bg-video {
  position: absolute;
  inset: -15% 0;   /* oversized top/bottom so parallax has room to move */
  width: 100%;
  height: 130%;
  object-fit: cover;
  object-position: center center;
}
.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(8, 22, 15, 0.55) 0%,
      rgba(8, 22, 15, 0.35) 40%,
      rgba(8, 22, 15, 0.55) 100%),
    linear-gradient(to right,
      rgba(8, 22, 15, 0.3) 0%,
      transparent 60%);
}

/* Centered text content */
.hero__content--centered {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  padding: 10rem 2rem 6rem;
  margin: 0 auto;
}
.hero--fullscreen .hero__eyebrow {
  color: rgba(244, 199, 106, 0.9);
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  margin-bottom: 1.5rem;
}
.hero--fullscreen .hero__headline {
  color: #ffffff;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.08;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero--fullscreen .hero__headline em {
  color: rgba(196, 231, 196, 0.92);
  font-style: italic;
}
.hero--fullscreen .hero__sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.15rem;
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.2);
}
.hero--fullscreen .hero__actions {
  justify-content: center;
}

/* Ghost button light variant for dark backgrounds */
.btn--ghost-light {
  border-color: rgba(255, 255, 255, 0.5) !important;
  color: rgba(255, 255, 255, 0.9) !important;
}
.btn--ghost-light:hover {
  border-color: rgba(255, 255, 255, 0.9) !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #ffffff !important;
}

/* Badge — bottom left over video */
.hero--fullscreen .hero__badge {
  position: absolute;
  bottom: 6rem;
  left: 2.5rem;
  z-index: 3;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-md);
  padding: 0.85rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hero--fullscreen .hero__badge-num {
  color: var(--amber);
  font-size: 1.8rem;
}
.hero--fullscreen .hero__badge-label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.75rem;
}

/* Scroll hint indicator */
.hero__scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: fadeUp 1s ease 1.5s both;
}
.hero__scroll-dot {
  animation: scroll-bounce 2s ease-in-out infinite;
}
@keyframes scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Terrain wave — cream color bleeds into next section */
.hero__terrain {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.hero__terrain svg {
  width: 100%;
  height: 80px;
  display: block;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.25rem;
  display: block;
}
.hero__headline {
  margin-bottom: 1.5rem;
  color: var(--forest-deep);
}
.hero__headline em {
  font-style: italic;
  color: var(--forest-mid);
}
.hero__sub {
  font-size: 1.15rem;
  color: var(--charcoal-mid);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.7;
}
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-med);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__badge-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--forest);
  line-height: 1;
}
.hero__badge-label { font-size: 0.78rem; color: var(--text-muted); line-height: 1.4; }

/* --- Stats --- */
.stats {
  background: var(--forest);
  padding: 5rem 2rem;
  position: relative;
}
.stats::before {
  content: '';
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--forest);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.stats__inner { max-width: var(--max-width); margin: 0 auto; }
.stats__context {
  color: var(--sage-light);
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 3rem;
  opacity: 0.85;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.stats__item { text-align: center; }
.stats__num {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--amber);
  line-height: 1;
  margin-bottom: 0.75rem;
}
.stats__label { font-size: 0.88rem; color: var(--sage-light); line-height: 1.5; opacity: 0.8; }

/* --- Continuum --- */
.continuum {
  padding: var(--section-pad) 2rem;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.continuum__inner { max-width: var(--max-width); margin: 0 auto; }
.continuum__header {
  max-width: 600px;
  margin-bottom: 4rem;
}
.continuum__header p { margin-top: 1.25rem; font-size: 1.1rem; }
.continuum__steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.continuum__step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(26,58,42,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}
.continuum__step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
}
.continuum__step--1::before { background: var(--forest); }
.continuum__step--2::before { background: var(--forest-light); }
.continuum__step--3::before { background: var(--amber-deep); }
.continuum__step--4::before { background: var(--sage); }
.continuum__step:hover { transform: translateY(-4px); box-shadow: var(--shadow-med); }
.continuum__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cream-warm);
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  line-height: 1;
}
.continuum__step h3 { margin-bottom: 1rem; color: var(--forest-deep); }
.continuum__step p { font-size: 0.95rem; margin-bottom: 1.5rem; }
.continuum__tags { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.continuum__tags span {
  font-size: 0.75rem;
  padding: 0.3rem 0.8rem;
  background: var(--cream);
  border: 1px solid rgba(26,58,42,0.15);
  border-radius: var(--radius-xl);
  color: var(--forest);
  font-weight: 500;
}
.continuum__terrain {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--forest-deep);
  clip-path: polygon(0 100%, 100% 100%, 100% 40%, 75% 20%, 50% 60%, 25% 30%, 0 50%);
}

/* --- Feature CTA (Lecture Series) --- */
.feature-cta {
  background: var(--forest-deep);
  padding: 7rem 2rem;
  position: relative;
}
.feature-cta__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.feature-cta__eyebrow { color: var(--amber); }
.feature-cta__inner h2 { color: var(--white); margin-bottom: 1.25rem; }
.feature-cta__inner h2 em { color: var(--sage-light); }
.feature-cta__inner p { color: var(--sage-light); margin-bottom: 2rem; opacity: 0.85; font-size: 1.05rem; }
.feature-cta__details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2.5rem; }
.feature-cta__detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--sage-light);
  font-size: 0.9rem;
  opacity: 0.8;
}
.feature-cta__detail svg { flex-shrink: 0; stroke: var(--amber); }
.feature-cta__visual { border-radius: var(--radius-lg); overflow: hidden; }
.feature-cta__forest { aspect-ratio: 4/5; }
.feature-cta__forest svg { width: 100%; height: 100%; }
.feature-cta .btn--primary {
  background: var(--amber);
  color: var(--forest-deep);
  box-shadow: 0 4px 20px rgba(244,199,106,0.3);
}
.feature-cta .btn--primary:hover {
  background: var(--amber-deep);
  color: var(--white);
}

/* --- About Strip --- */
.about-strip {
  padding: var(--section-pad) 2rem;
  background: var(--cream-warm);
}
.about-strip__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: center;
}
.about-strip__img-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-med);
  aspect-ratio: 4/5;
}
.about-strip__img-placeholder svg { width: 100%; height: 100%; }
.about-strip__content h2 { margin-bottom: 1.5rem; color: var(--forest-deep); }
.about-strip__content p { margin-bottom: 1.25rem; }
.about-strip__creds {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 2rem 0;
}
.about-strip__creds span {
  font-size: 0.85rem;
  color: var(--forest);
  padding-left: 1rem;
  position: relative;
}
.about-strip__creds span::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--forest-light);
}

/* --- Services Preview --- */
.services-preview {
  padding: var(--section-pad) 2rem;
  background: var(--cream);
}
.services-preview__inner { max-width: var(--max-width); margin: 0 auto; }
.services-preview__header { margin-bottom: 3rem; }
.services-preview__header p { margin-top: 1rem; }
.services-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid rgba(26,58,42,0.08);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-med);
  border-color: rgba(26,58,42,0.2);
}
.service-card--featured {
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  border-color: transparent;
}
.service-card--featured h3 { color: var(--white); }
.service-card--featured p { color: var(--sage-light); opacity: 0.9; }
.service-card--featured .service-card__icon svg { stroke: var(--amber); }
.service-card--featured .service-card__link { color: var(--amber); }
.service-card__badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--amber);
  color: var(--forest-deep);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-xl);
  letter-spacing: 0.05em;
}
.service-card__icon {
  width: 52px;
  height: 52px;
  background: var(--cream);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-card--featured .service-card__icon { background: rgba(255,255,255,0.1); }
.service-card__icon svg { stroke: var(--forest); }
.service-card h3 { margin-bottom: 0.75rem; color: var(--forest-deep); font-size: 1.15rem; }
.service-card p { font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.service-card__link { font-size: 0.85rem; font-weight: 500; color: var(--forest-light); }

/* --- Partners --- */
.partners {
  padding: 3rem 2rem;
  background: var(--cream-warm);
  border-top: 1px solid rgba(26,58,42,0.08);
  border-bottom: 1px solid rgba(26,58,42,0.08);
}
.partners__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.partners__label { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--text-muted); white-space: nowrap; }
.partners__logos { display: flex; gap: 2.5rem; flex-wrap: wrap; align-items: center; }
.partners__logo { font-family: var(--font-display); font-size: 0.95rem; color: var(--charcoal-mid); font-style: italic; opacity: 0.7; }

/* --- Final CTA --- */
.final-cta {
  background: var(--forest);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta__inner { max-width: 700px; margin: 0 auto; position: relative; z-index: 2; }
.final-cta h2 { color: var(--white); margin-bottom: 1.5rem; }
.final-cta h2 em { color: var(--amber); }
.final-cta p { color: var(--sage-light); margin-bottom: 2.5rem; font-size: 1.05rem; opacity: 0.85; }
.final-cta__actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }
.final-cta .btn--primary { background: var(--amber); color: var(--forest-deep); }
.final-cta .btn--primary:hover { background: var(--white); }
.final-cta .btn--ghost { border-color: rgba(255,255,255,0.4); color: var(--white); }
.final-cta .btn--ghost:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.final-cta__note { font-size: 0.85rem; color: var(--sage-light); opacity: 0.6; line-height: 1.6; }
.final-cta__note a { color: var(--amber); text-decoration: underline; }
.final-cta__terrain {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 80%, var(--sage) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, var(--forest-light) 0%, transparent 50%);
}

/* --- Footer --- */
.footer { background: var(--forest-deep); padding: 5rem 2rem 2rem; }
.footer__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { }
.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
}
.footer__logo .nav__logo-mark { background: rgba(255,255,255,0.1); }
.footer__brand p { font-size: 0.9rem; color: var(--sage-light); opacity: 0.7; margin-bottom: 0.75rem; }
.footer__tagline { font-family: var(--font-display); font-style: italic; color: var(--amber) !important; opacity: 1 !important; font-size: 1.1rem !important; }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__nav-col h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer__nav-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__nav-col a, .footer__nav-col li { font-size: 0.88rem; color: var(--sage-light); opacity: 0.7; transition: opacity 0.2s; line-height: 1.5; }
.footer__nav-col a:hover { opacity: 1; }
.footer__bottom {
  max-width: var(--max-width);
  margin: 2rem auto 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer__bottom p { font-size: 0.78rem; color: var(--sage-light); opacity: 0.45; }

/* --- Animations --- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero__content > * {
  animation: fadeUp 0.7s ease both;
}
.hero__eyebrow { animation-delay: 0.1s; }
.hero__headline { animation-delay: 0.2s; }
.hero__sub { animation-delay: 0.35s; }
.hero__actions { animation-delay: 0.5s; }
.hero__visual { animation: fadeUp 0.9s ease 0.3s both; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .continuum__steps { grid-template-columns: 1fr; }
  .feature-cta__inner { grid-template-columns: 1fr; gap: 3rem; }
  .feature-cta__visual { max-height: 300px; overflow: hidden; }
  .services-preview__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .hero--fullscreen .hero__content--centered {
    padding: 8rem 1.5rem 5rem;
  }
  .hero--fullscreen .hero__badge {
    bottom: 5rem;
    left: 1.5rem;
  }    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    text-align: center;
    gap: 3rem;
  }
  .hero__actions { justify-content: center; }
  .hero__sub { margin: 0 auto 2.5rem; }
  .hero__visual { max-width: 340px; margin: 0 auto; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .about-strip__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-strip__image { max-width: 260px; margin: 0 auto; }
  .services-preview__grid { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer__nav { grid-template-columns: repeat(2, 1fr); }
  .footer__bottom { flex-direction: column; }
  .partners__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .continuum__step-num { font-size: 2rem; }
  .feature-cta__inner { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .footer__nav { grid-template-columns: 1fr; }
}

/* --- Mobile Nav Open State --- */
.nav.open .nav__links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cream);
  padding: 5rem 2rem 2rem;
  gap: 0.5rem;
  z-index: 99;
}
.nav.open .nav__links a { font-size: 1.2rem; padding: 0.75rem 1rem; }

/* end of styles */

