/* ========================================
   GrowthWays Partners — Redesign
   Palette: Forest greens + warm stone neutrals
   Typography: Inter (ultralight headings, light body)
   ======================================== */

/* --- Draft Banner --- */
.draft-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  padding: 0.5rem 1rem;
}

.draft-banner a {
  color: var(--sage-light);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.draft-banner a:hover {
  color: var(--white);
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Brand greens */
  --forest: #1B3A2D;
  --forest-light: #264D3B;
  --sage: #6B8F71;
  --sage-light: #8DB094;
  --sage-muted: #A4C2A8;

  /* Warm neutrals */
  --cream: #FDFBF7;
  --sand: #F5F1EB;
  --warm-gray: #9A8F82;
  --stone: #6B5E52;
  --charcoal: #3D3631;

  /* Functional */
  --white: #FFFFFF;
  --text-primary: #2D2A27;
  --text-secondary: #6B6560;
  --text-muted: #9A9590;
  --border-light: #E8E4DF;
  --border-subtle: #F0ECE7;

  /* Spacing */
  --section-py: clamp(5rem, 8vw, 8rem);
  --container-px: clamp(1.5rem, 4vw, 3rem);
  --container-max: 1200px;

  /* Transitions */
  --ease: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 300;
  color: var(--text-primary);
  background: var(--cream);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-px);
  padding-right: var(--container-px);
}

/* --- Typography --- */
.eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1rem;
}

h1, h2, h3, h4 {
  font-weight: 200;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.25rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

p {
  color: var(--text-secondary);
  max-width: 600px;
}

.section-intro p {
  font-size: 1.05rem;
  line-height: 1.8;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--forest);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--forest-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(27, 58, 45, 0.2);
}

.btn-outline {
  border: 1px solid var(--border-light);
  color: var(--text-primary);
  background: transparent;
}

.btn-outline:hover {
  border-color: var(--forest);
  color: var(--forest);
}

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

.btn-white:hover {
  background: var(--sand);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  background: transparent;
}

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

.btn svg {
  width: 16px;
  height: 16px;
  transition: transform 0.3s var(--ease);
}

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

/* Shine sweep on hover */
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s var(--ease);
}

.btn-shine:hover::after {
  left: 100%;
}

/* --- Divider --- */
.divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 2rem 0;
}

.divider::before,
.divider::after {
  content: '';
  height: 1px;
  width: 2.5rem;
  background: linear-gradient(to right, transparent, var(--sage-muted));
}

.divider::after {
  background: linear-gradient(to left, transparent, var(--sage-muted));
}

.divider-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
}

/* ========================================
   NAVIGATION
   ======================================== */
.nav {
  position: fixed;
  top: 1.7rem;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 var(--container-px);
  height: 5rem;
  display: flex;
  align-items: center;
  transition: all 0.4s var(--ease);
}

.nav--top {
  background: transparent;
}

.nav--scrolled {
  background: rgba(253, 251, 247, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border-subtle);
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav__logo img {
  height: 2.25rem;
  width: auto;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav__links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
  transition: color 0.3s var(--ease);
}

.nav--top .nav__links a {
  color: rgba(255, 255, 255, 0.85);
}

.nav--top .nav__links a:hover {
  color: var(--white);
}

.nav--scrolled .nav__links a {
  color: var(--text-secondary);
}

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

.nav__links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: width 0.3s var(--ease);
}

.nav--top .nav__links a::after {
  background: rgba(255, 255, 255, 0.6);
}

.nav--scrolled .nav__links a::after {
  background: var(--sage);
}

.nav__links a:hover::after {
  width: 100%;
}

.nav__cta {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  transition: all 0.3s var(--ease);
}

.nav--top .nav__cta {
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
}

.nav--top .nav__cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
}

.nav--scrolled .nav__cta {
  background: var(--forest);
  color: var(--white);
}

.nav--scrolled .nav__cta:hover {
  background: var(--forest-light);
}

/* Mobile menu toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 24px;
  padding: 0;
}

.nav__toggle span {
  display: block;
  height: 1.5px;
  width: 100%;
  transition: all 0.3s var(--ease);
}

.nav--top .nav__toggle span {
  background: var(--white);
}

.nav--scrolled .nav__toggle span {
  background: var(--text-primary);
}

/* Mobile drawer */
.nav__drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--cream);
  z-index: 200;
  padding: 6rem var(--container-px) 2rem;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.nav__drawer.open {
  transform: translateX(0);
}

.nav__drawer a {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-subtle);
  display: block;
  transition: color 0.3s var(--ease);
}

.nav__drawer a:hover {
  color: var(--sage);
}

.nav__drawer-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}

.nav__overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* ========================================
   HERO
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--forest);
}

.hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--forest) 0%, #0F2218 50%, var(--forest) 100%);
}

.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(107, 143, 113, 0.12) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 80%, rgba(107, 143, 113, 0.08) 0%, transparent 60%);
}

/* Floating gradient orbs */
.hero__gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero__gradient-orb--1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(107, 143, 113, 0.18) 0%, transparent 70%);
  top: -10%;
  right: -5%;
  animation: orbFloat1 12s ease-in-out infinite;
}

.hero__gradient-orb--2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(141, 176, 148, 0.12) 0%, transparent 70%);
  bottom: 10%;
  left: -5%;
  animation: orbFloat2 15s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(-30px, 20px) scale(1.05); }
  66% { transform: translate(15px, -15px) scale(0.95); }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -20px) scale(1.08); }
}

/* Subtle particle dots in hero */
.hero__particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: rgba(164, 194, 168, 0.3);
  border-radius: 50%;
  animation: particleDrift linear infinite;
}

@keyframes particleDrift {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(30px); opacity: 0; }
}

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding-top: 6rem;
}

.hero .eyebrow {
  color: var(--sage-muted);
  margin-bottom: 1.5rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.hero h1 span {
  color: var(--sage-light);
}

.hero__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 2.5rem;
  max-width: 520px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.2); }
}

/* ========================================
   STATS
   ======================================== */
.stats {
  background: var(--white);
  padding: 4.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__grid > div {
  position: relative;
  padding: 1rem 0;
}

.stats__grid > div:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1rem;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--border-light);
}

.stat__number {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 200;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.stat__label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ========================================
   SERVICES
   ======================================== */
.services {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}

.service-card {
  padding: 2.5rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  border-color: var(--sage);
  box-shadow: 0 12px 40px rgba(27, 58, 45, 0.08);
  transform: translateY(-4px);
}

.service-card__icon-wrap {
  width: 3.25rem;
  height: 3.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.08), rgba(107, 143, 113, 0.03));
  border: 1px solid rgba(107, 143, 113, 0.12);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  transition: all 0.4s var(--ease);
}

.service-card:hover .service-card__icon-wrap {
  background: linear-gradient(135deg, rgba(107, 143, 113, 0.15), rgba(107, 143, 113, 0.05));
  border-color: var(--sage);
  transform: scale(1.05);
}

.service-card__icon {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--sage);
  stroke-width: 1.5;
}

.service-card h3 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-secondary);
}

/* ========================================
   ABOUT
   ======================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--sand);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.about__image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: linear-gradient(160deg, var(--forest) 0%, var(--forest-light) 60%, var(--sage) 100%);
  border-radius: 2px;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
}

.about__image::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30%;
  background: linear-gradient(to top, rgba(27, 58, 45, 0.4), transparent);
  z-index: 1;
}

.about__image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(107, 143, 113, 0.2);
  border-radius: 2px;
}

.about__text {
  max-width: 500px;
}

.about__text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.85;
}

.about__text p:last-of-type {
  margin-bottom: 2rem;
}

.about__links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ========================================
   PHILOSOPHY (GuardRailing Pillars)
   ======================================== */
.philosophy {
  padding: var(--section-py) 0;
  background: var(--white);
}

.philosophy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  margin-top: 3rem;
}

.philosophy__intro p {
  font-size: 1.05rem;
  line-height: 1.85;
}

.philosophy__pillars {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  padding: 1.25rem;
  border-radius: 4px;
  transition: all 0.4s var(--ease);
}

.pillar:hover {
  background: var(--sand);
}

.pillar__marker {
  width: 2px;
  min-height: 3rem;
  background: var(--sage);
  flex-shrink: 0;
  margin-top: 0.25rem;
  transition: min-height 0.3s var(--ease), background 0.3s var(--ease);
}

.pillar:hover .pillar__marker {
  background: var(--forest);
}

.pillar__title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 0.35rem;
}

.pillar__text {
  font-size: 1.1rem;
  font-weight: 200;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ========================================
   BOOK
   ======================================== */
.book {
  padding: var(--section-py) 0;
  background: var(--charcoal);
  color: var(--white);
  overflow: hidden;
}

.book__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(3rem, 6vw, 5rem);
  align-items: center;
}

.book__cover {
  width: 380px;
  flex-shrink: 0;
  position: relative;
}

.book__cover img {
  width: 100%;
}

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

.book__text h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.book__text p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.85;
}

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

.book__store-link {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  transition: all 0.3s var(--ease);
}

.book__store-link:hover {
  color: var(--white);
  border-color: var(--white);
}

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial {
  padding: 2.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  position: relative;
  transition: all 0.5s var(--ease);
}

.testimonial:hover {
  border-color: var(--sage-muted);
  box-shadow: 0 12px 40px rgba(27, 58, 45, 0.06);
  transform: translateY(-3px);
}

.testimonial__quote {
  font-size: 1.05rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.testimonial__quote::before {
  content: '\201C';
  font-size: 3rem;
  font-weight: 200;
  color: var(--sage-muted);
  line-height: 0;
  position: relative;
  top: 0.25rem;
  margin-right: 0.25rem;
}

.testimonial__author {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-primary);
}

.testimonial__role {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ========================================
   LOGOS (Trusted By)
   ======================================== */
.logos {
  padding: 5rem 0;
  background: var(--sand);
}

.logos .eyebrow {
  text-align: center;
  margin: 0 auto 3rem;
  color: var(--stone);
}

.logos__track {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.logos__item {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0.6rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  transition: all 0.35s var(--ease);
}

.logos__item:hover {
  border-color: var(--sage);
  color: var(--forest);
  box-shadow: 0 2px 12px rgba(27, 58, 45, 0.06);
  transform: translateY(-1px);
}

/* ========================================
   NEWSLETTER
   ======================================== */
.newsletter {
  padding: var(--section-py) 0;
  background: var(--white);
}

.newsletter__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.newsletter__text p:not(.eyebrow) {
  font-size: 1.05rem;
  line-height: 1.85;
}

.newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.newsletter__fields {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.newsletter__fields input {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--border-light);
  background: var(--cream);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.3s var(--ease);
}

.newsletter__fields input::placeholder {
  color: var(--text-muted);
}

.newsletter__fields input:focus {
  border-color: var(--sage);
}

.newsletter__consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
}

.newsletter__consent input[type="checkbox"] {
  margin-top: 0.2rem;
  accent-color: var(--forest);
  flex-shrink: 0;
}

.newsletter__consent span {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.5;
}

@media (max-width: 768px) {
  .newsletter__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ========================================
   CTA
   ======================================== */
.cta {
  padding: var(--section-py) 0;
  background: var(--forest);
  text-align: center;
}

.cta__inner {
  max-width: 600px;
  margin: 0 auto;
}

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

.cta h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.55);
  margin: 0 auto 2.5rem;
  font-size: 1.05rem;
  text-align: center;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--cream);
  border-top: 1px solid var(--border-subtle);
  padding: 4rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
  margin-top: 1rem;
  line-height: 1.7;
}

.footer__heading {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  list-style: none;
}

.footer__links a {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}

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

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-subtle);
}

.footer__copy {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
  transition: color 0.3s var(--ease);
}

.footer__legal a:hover {
  color: var(--text-secondary);
}

/* ========================================
   SCROLL ANIMATIONS
   ======================================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* Directional variants */
.reveal-left {
  transform: translateX(-40px) translateY(0);
}

.reveal-right {
  transform: translateX(40px) translateY(0);
}

.reveal-scale {
  transform: scale(0.95);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Parallax helper (JS-driven) */
[data-parallax] {
  transition: transform 0.1s linear;
  will-change: transform;
}

/* Horizontal line grow (for dividers) */
.line-grow {
  width: 0;
  transition: width 1.2s var(--ease);
}

.line-grow.visible {
  width: 100%;
}

/* ========================================
   BACK TO TOP
   ======================================== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--forest);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(27, 58, 45, 0.25);
  opacity: 0;
  pointer-events: none;
  transition: all 0.4s var(--ease);
  z-index: 50;
}

.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--forest-light);
  transform: translateY(-2px);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  .nav__links {
    display: none;
  }

  .nav__cta.desktop-only {
    display: none;
  }

  .nav__toggle {
    display: flex;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.5rem;
  }

  .stats__grid > div:nth-child(2)::after {
    display: none;
  }

  .hero__gradient-orb { display: none; }
}

@media (max-width: 768px) {
  .services__grid {
    grid-template-columns: 1fr;
  }

  .about__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about__image {
    max-width: 400px;
    aspect-ratio: 3 / 2;
  }

  .philosophy__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .book__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .book__cover {
    width: 300px;
    margin: 0 auto;
  }

  .book__text p {
    margin-left: auto;
    margin-right: auto;
  }

  .book__links {
    justify-content: center;
  }

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

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 1rem;
  }

  .stats__grid > div::after {
    display: none;
  }

  .stat__number {
    font-size: 2rem;
  }

  .service-card {
    padding: 2rem;
  }

  .testimonial {
    padding: 2rem;
  }

  .hero__content {
    padding-top: 5rem;
  }

  .logos__row {
    gap: 0.75rem;
  }

  .logos__item {
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }
}
