/* ============================================================
   GROW WITH ME — Styles v2
   Modern, warm luxury coaching brand for Shivani
   ============================================================ */

/* ─── Custom Properties ─── */
:root {
  /* Palette */
  --white:        #FDFAF5;
  --oat:          #F5EDE0;
  --oat-mid:      #EDE3D4;
  --sage:         #5C8F72;
  --sage-light:   #8BB89E;
  --sage-pale:    #D4E8DB;
  --rose:         #C49090;
  --rose-light:   #EDD8D0;
  --amber:        #C4784A;
  --amber-light:  #EEDCC8;
  --brown:        #2E1810;
  --brown-mid:    #5A3820;
  --text:         #3A2010;
  --text-mid:     #6B5040;
  --text-light:   #9A8070;
  --border:       rgba(90,56,32,0.12);
  --border-mid:   rgba(90,56,32,0.2);

  /* Fonts */
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Plus Jakarta Sans', system-ui, sans-serif;

  /* Motion */
  --spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease:   cubic-bezier(0.45, 0, 0.55, 1);

  /* Radii */
  --r-sm:   10px;
  --r-md:   18px;
  --r-lg:   28px;
  --r-xl:   44px;
  --r-full: 9999px;

  /* Shadows */
  --s-sm: 0 2px 12px rgba(46,24,16,0.07);
  --s-md: 0 8px 32px rgba(46,24,16,0.11);
  --s-lg: 0 20px 60px rgba(46,24,16,0.16);
  --s-xl: 0 32px 80px rgba(46,24,16,0.2);
}

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

/* ─── Scroll animation classes ─── */
.fade-up,
.fade-left,
.fade-right {
  opacity: 0;
  transition: opacity 0.8s var(--spring), transform 0.8s var(--spring);
}
.fade-up    { transform: translateY(40px); }
.fade-left  { transform: translateX(-40px); }
.fade-right { transform: translateX(40px); }
.fade-up--delay   { transition-delay: 0.14s; }
.fade-up--delay-2 { transition-delay: 0.28s; }
.is-visible { opacity: 1 !important; transform: none !important; }

/* ─── Typography helpers ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 0.9rem;
}
.eyebrow::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--sage);
  border-radius: 2px;
}
.eyebrow--light { color: rgba(255,255,255,0.6); }
.eyebrow--light::before { background: rgba(255,255,255,0.4); }

.section-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 1rem;
}
.section-sub {
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 52ch;
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.32s var(--spring);
  white-space: nowrap;
  text-decoration: none;
}
.btn--sage {
  background: var(--sage);
  color: #fff;
  border-color: var(--sage);
  box-shadow: 0 4px 20px rgba(92,143,114,0.3);
}
.btn--sage:hover {
  background: #4A7A5E;
  border-color: #4A7A5E;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(92,143,114,0.4);
}
.btn--outline-dark {
  background: transparent;
  color: var(--brown);
  border-color: var(--border-mid);
}
.btn--outline-dark:hover {
  border-color: var(--brown);
  background: rgba(46,24,16,0.05);
  transform: translateY(-2px);
}
.btn--light {
  background: var(--white);
  color: var(--brown);
  border-color: var(--white);
  box-shadow: var(--s-md);
}
.btn--light:hover {
  transform: translateY(-3px);
  box-shadow: var(--s-lg);
}
.btn--sm {
  padding: 0.65rem 1.4rem;
  font-size: 0.82rem;
}
.btn--lg {
  padding: 1.05rem 2.6rem;
  font-size: 0.95rem;
}
.btn--full {
  width: 100%;
  justify-content: center;
}


/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: all 0.4s var(--spring);
}
.nav.is-scrolled {
  background: rgba(253,250,245,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--s-sm);
  padding: 0.75rem 0;
}
.nav__inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav__logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
}
.nav__logo-icon {
  color: var(--sage);
  font-size: 1.1rem;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__links a {
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-mid);
  transition: color 0.22s;
  letter-spacing: 0.01em;
}
.nav__links a:hover { color: var(--brown); }
.nav__book-btn {
  background: var(--sage) !important;
  color: #fff !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--r-full);
  font-weight: 600 !important;
  transition: all 0.28s var(--spring) !important;
  box-shadow: 0 2px 14px rgba(92,143,114,0.28);
}
.nav__book-btn:hover {
  background: #4A7A5E !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(92,143,114,0.38) !important;
}
.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: all 0.3s var(--spring);
}
.nav__burger.is-active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.is-active span:nth-child(2) { opacity: 0; }
.nav__burger.is-active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(145deg, #FDFAF5 0%, #F5EDE0 45%, #F0E5D5 100%);
  overflow: hidden;
  padding-top: 80px;
}

/* Animated gradient orbs */
.hero__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(70px);
}
.hero__orb--1 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(92,143,114,0.18) 0%, transparent 70%);
  top: -100px; right: 5%;
  animation: orbFloat 14s ease-in-out infinite;
}
.hero__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(196,120,74,0.14) 0%, transparent 70%);
  bottom: 5%; left: -80px;
  animation: orbFloat 18s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(196,144,144,0.16) 0%, transparent 70%);
  top: 60%; right: 15%;
  animation: orbFloat 11s ease-in-out infinite 3s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(20px, -30px) scale(1.06); }
  66%       { transform: translate(-15px, 20px) scale(0.96); }
}

.hero__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: var(--p-hero, 5rem) 2rem 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(92,143,114,0.1);
  border: 1px solid rgba(92,143,114,0.25);
  border-radius: var(--r-full);
  padding: 0.45rem 1.1rem;
  margin-bottom: 1.5rem;
}
.hero__pill::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--sage);
  animation: pillPulse 2s ease-in-out infinite;
}
@keyframes pillPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.75); }
}

.hero__h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--brown);
  margin-bottom: 1.5rem;
}
.hero__h1 em {
  font-style: italic;
  color: var(--sage);
  position: relative;
  display: inline-block;
}
.hero__h1 em::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  border-radius: 2px;
  opacity: 0.4;
}

.hero__sub {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.82;
  max-width: 44ch;
  margin-bottom: 2.4rem;
}

.hero__btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero__chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-mid);
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.4rem 0.9rem;
  backdrop-filter: blur(8px);
}
.chip__dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--sage);
  flex-shrink: 0;
}
.chip__dot--rose  { background: var(--rose); }
.chip__dot--amber { background: var(--amber); }

/* Hero visual */
.hero__visual {
  display: flex;
  justify-content: center;
}
.hero__illo-wrap {
  position: relative;
  width: 420px;
  max-width: 100%;
}

/* Decorative rings */
.hero__ring {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero__ring--outer {
  inset: -30px;
  border: 1.5px dashed rgba(92,143,114,0.25);
}
.hero__ring--inner {
  inset: -8px;
  border: 1px solid rgba(196,144,144,0.2);
}

.hero__illo {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(46,24,16,0.16));
  animation: illoFloat 7s ease-in-out infinite;
}
@keyframes illoFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

/* Floating badge */
.hero__badge {
  position: absolute;
  bottom: 14%;
  left: -6%;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(253,250,245,0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 0.85rem 1.2rem;
  box-shadow: var(--s-md);
  animation: badgeFloat 6s ease-in-out infinite 2s;
}
.hero__badge-icon { font-size: 1.6rem; }
.hero__badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--brown);
  margin-bottom: 0.1rem;
}
.hero__badge span {
  display: block;
  font-size: 0.72rem;
  color: var(--text-light);
}
@keyframes badgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.hero__scroll {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  z-index: 1;
}
.hero__scroll-bar {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--text-light), transparent);
  animation: scrollAnim 2.2s ease-in-out infinite;
}
@keyframes scrollAnim {
  0%, 100% { transform: scaleY(1); opacity: 0.7; }
  50%       { transform: scaleY(0.6); opacity: 0.3; }
}


/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about {
  padding: 7rem 2rem;
  background: var(--white);
  position: relative;
}
.about::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.about__container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 5rem;
  align-items: start;
}

/* Credential accent cards */
.about__left {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  padding-top: 3.5rem;
}
.about__accent-card {
  background: var(--oat);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.6rem;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  transition: transform 0.32s var(--spring), box-shadow 0.32s var(--spring);
}
.about__accent-card:hover {
  transform: translateX(6px);
  box-shadow: var(--s-md);
}
.about__accent-card--2 {
  background: var(--sage-pale);
  border-color: rgba(92,143,114,0.2);
  margin-left: 1.5rem;
}
.about__accent-card--3 {
  background: var(--rose-light);
  border-color: rgba(196,144,144,0.2);
  margin-left: 1.5rem;
}
.about__accent-card--4 {
  background: var(--amber-light);
  border-color: rgba(196,120,74,0.22);
}
.about__accent-card--5 {
  background: var(--oat-mid);
  border-color: rgba(90,56,32,0.15);
  margin-left: 1.5rem;
}
.about__accent-card--4 .about__accent-num { color: var(--amber); }
.about__accent-card--5 .about__accent-num { color: var(--brown-mid); }

.about__photo-wrap { text-align: center; margin-bottom: 28px; }
.about__photo { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 3px solid #6A9E85; display: block; margin: 0 auto; box-shadow: 0 4px 20px rgba(0,0,0,0.10); }

/* Testimonials */
.testimonials { padding: 80px 24px; background: #FAF8F5; }
.testimonials__container { max-width: 1100px; margin: 0 auto; }
.testimonials__head { text-align: center; margin-bottom: 48px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
@media (max-width: 768px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testi-card { background: #fff; border-radius: 16px; padding: 32px; box-shadow: 0 2px 16px rgba(0,0,0,0.07); }
.testi-card__quote { font-size: 1rem; line-height: 1.75; color: #3A3A3A; font-style: italic; margin-bottom: 20px; }
.testi-card__person strong { display: block; font-size: 0.95rem; color: #1A1A1A; margin-bottom: 2px; }
.testi-card__person span { font-size: 0.85rem; color: #888; }
.testimonials__note { font-size: 0.85rem; color: var(--text-light); letter-spacing: 0.04em; margin-top: 0.5rem; font-style: italic; }

/* Optional field marker */
.cf__opt { font-weight: 400; font-size: 0.78rem; color: var(--text-light); font-style: italic; }

/* Footer disclaimer */
.footer__disclaimer {
  border-top: 1px solid var(--border);
  padding: 1.2rem 2rem;
  max-width: 1160px;
  margin: 0 auto;
}
.footer__disclaimer p {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.65;
  max-width: 78ch;
}
.footer__disclaimer a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: rgba(92,143,114,0.4);
}
.footer__disclaimer a:hover { text-decoration-color: var(--sage); }
.about__accent-num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
  color: var(--sage);
  flex-shrink: 0;
  line-height: 1;
}
.about__accent-card--3 .about__accent-num { color: var(--rose); }
.about__accent-card p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.55;
}
.about__accent-card p span { font-weight: 600; color: var(--text); }
.about__accent-card p em { font-style: italic; color: var(--sage); }

/* Story text */
.about__right { display: flex; flex-direction: column; }
.about__story { margin-bottom: 2rem; }
.about__story p {
  font-size: 1.01rem;
  color: var(--text-mid);
  line-height: 1.88;
  margin-bottom: 1.15rem;
}
.about__story p:last-child { margin-bottom: 0; }


/* ════════════════════════════════════════
   SERVICES
════════════════════════════════════════ */
.services {
  position: relative;
  padding: 7rem 2rem;
  background: var(--oat);
  overflow: hidden;
}
.services::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-mid), transparent);
}
.services__blob {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(ellipse, rgba(196,144,144,0.14) 0%, transparent 65%);
  top: -150px; right: -100px;
  pointer-events: none;
}
.services__container { max-width: 1160px; margin: 0 auto; position: relative; z-index: 1; }
.services__head { text-align: center; margin-bottom: 3.5rem; }
.services__head .section-sub { margin: 0 auto; }

.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

/* Service card */
.svc-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.38s var(--spring), box-shadow 0.38s var(--spring);
}
.svc-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--s-xl);
}
.svc-card--featured {
  background: linear-gradient(155deg, #2E1810, #1A0C06);
  border-color: transparent;
}
.svc-card--soon { opacity: 0.82; }
.svc-card--soon:hover { opacity: 1; }

.svc-card__coming-label {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--sage-pale);
  color: var(--sage);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: var(--r-full);
  z-index: 2;
}

/* Card top colored section with illustration */
.svc-card__top {
  padding: 2.2rem 2rem 1.5rem;
  display: flex;
  justify-content: center;
}
.svc-card__top--sage    { background: var(--sage-pale); }
.svc-card__top--dark    { background: rgba(255,255,255,0.06); }
.svc-card__top--rose    { background: var(--rose-light); }
.svc-card__top--amber   { background: var(--amber-light); }
.svc-card__top--cream   { background: #EFE4D2; }

.svc-card__illo {
  width: 80px; height: 80px;
  filter: drop-shadow(0 6px 16px rgba(46,24,16,0.15));
  transition: transform 0.4s var(--spring);
}
.svc-card:hover .svc-card__illo { transform: translateY(-4px) scale(1.06); }

/* Card body */
.svc-card__body {
  padding: 1.6rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.svc-card__label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.6rem;
}
.svc-card__body h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.7rem;
  line-height: 1.22;
}
.svc-card--featured .svc-card__body h3 { color: #fff; }
.svc-card__body p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}
.svc-card--featured .svc-card__body p { color: rgba(255,255,255,0.65); }

.svc-card__list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.6rem;
}
.svc-card__list li {
  font-size: 0.85rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 0.55rem;
}
.svc-card__list li::before {
  content: '✦';
  font-size: 0.6rem;
  color: var(--sage);
  flex-shrink: 0;
}
.svc-card--featured .svc-card__list li { color: rgba(255,255,255,0.7); }
.svc-card--featured .svc-card__list li::before { color: var(--sage-light); }

.svc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.svc-card--featured .svc-card__footer { border-top-color: rgba(255,255,255,0.1); }

.svc-card__price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--brown);
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  line-height: 1;
}
.svc-card__price span {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-light);
}
.svc-card--featured .svc-card__price { color: #fff; }
.svc-card--featured .svc-card__price span { color: rgba(255,255,255,0.5); }

/* Services note */
.services__note {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.6);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.4rem 1.8rem;
  backdrop-filter: blur(8px);
}
.services__note-icon { color: var(--sage); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
.services__note p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.7; }


/* ════════════════════════════════════════
   WHO I HELP
════════════════════════════════════════ */
.who {
  padding: 7rem 2rem;
  background: var(--white);
}
.who__container { max-width: 1160px; margin: 0 auto; }
.who__head { text-align: center; margin-bottom: 3.5rem; }
.who__head .section-sub { margin: 0 auto; }

.who__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.3rem;
  margin-bottom: 3rem;
}
.who-card {
  background: var(--oat);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 1.8rem;
  position: relative;
  overflow: hidden;
  transition: all 0.38s var(--spring);
}
.who-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--sage), var(--sage-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--spring);
  border-radius: 0 0 2px 2px;
}
.who-card:hover {
  background: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--s-md);
}
.who-card:hover::before { transform: scaleX(1); }
.who-card__num {
  display: block;
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--sage-light);
  line-height: 1;
  margin-bottom: 0.7rem;
}
.who-card h4 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--brown);
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.who-card p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; }

.who__cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--oat);
  border-radius: var(--r-xl);
  border: 1px solid var(--border);
}
.who__cta p {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 1.6rem;
}
.who__cta p em { font-style: italic; color: var(--sage); }


/* ════════════════════════════════════════
   PROCESS
════════════════════════════════════════ */
.process {
  padding: 7rem 2rem;
  background: linear-gradient(160deg, #F0E8DC 0%, var(--oat) 100%);
  position: relative;
}
.process__container { max-width: 1160px; margin: 0 auto; }
.process__head { text-align: center; margin-bottom: 3.5rem; }

.process__steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}
.process-step {
  flex: 1;
  text-align: center;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.process-step__circle {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(92,143,114,0.35);
  margin-bottom: 1.2rem;
  position: relative;
  z-index: 1;
  transition: transform 0.32s var(--spring), box-shadow 0.32s;
}
.process-step:hover .process-step__circle {
  transform: scale(1.12);
  box-shadow: 0 12px 30px rgba(92,143,114,0.45);
}
.process-step h4 {
  font-family: var(--serif);
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--brown);
  margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.88rem; color: var(--text-mid); line-height: 1.72; }

/* Connector line between steps */
.process-step__connector {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--sage-light), var(--sage-pale));
  margin-top: 27px;
  border-radius: 2px;
  opacity: 0.6;
}


/* ════════════════════════════════════════
   NEWSLETTER
════════════════════════════════════════ */
.newsletter {
  position: relative;
  padding: 7rem 2rem;
  background: var(--white);
  overflow: hidden;
}
.newsletter__blob {
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(ellipse, rgba(92,143,114,0.1) 0%, transparent 65%);
  top: -100px; left: -100px;
  pointer-events: none;
}
.newsletter__container {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}
.newsletter__copy { display: flex; flex-direction: column; }
.newsletter__copy .section-h2 { margin-bottom: 0.8rem; }
.newsletter__copy p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.82;
  margin-bottom: 2rem;
}

.nl-form { display: flex; flex-direction: column; gap: 0.75rem; }
.nl-form__row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.nl-form__input {
  flex: 1;
  min-width: 220px;
  padding: 0.88rem 1.2rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-full);
  background: var(--oat);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.nl-form__input:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(92,143,114,0.12);
  background: var(--white);
}
.nl-form__input::placeholder { color: var(--text-light); }
.nl-form__note { font-size: 0.76rem; color: var(--text-light); }
.nl-form__success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  background: var(--sage-pale);
  border: 1px solid rgba(92,143,114,0.3);
  border-radius: var(--r-md);
  padding: 0.85rem 1.2rem;
}

/* Email mockup */
.nl-mockup {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--s-lg);
}
.nl-mockup__header {
  background: var(--oat);
  padding: 0.9rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.nl-mockup__dots {
  display: flex;
  gap: 0.35rem;
}
.nl-mockup__dots span {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--oat-mid);
}
.nl-mockup__from {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-mid);
  margin-left: auto;
}
.nl-mockup__body { padding: 1.8rem; display: flex; flex-direction: column; gap: 0.65rem; }
.nl-mockup__subject {
  height: 14px;
  width: 65%;
  background: var(--oat-mid);
  border-radius: var(--r-full);
}
.nl-mockup__line {
  height: 9px;
  background: var(--oat);
  border-radius: var(--r-full);
}
.nl-mockup__line--short { width: 72%; }
.nl-mockup__line--sm { height: 7px; }
.nl-mockup__gap { height: 6px; }
.nl-mockup__sig {
  height: 22px;
  width: 90px;
  background: linear-gradient(90deg, var(--sage-pale), var(--rose-light));
  border-radius: var(--r-full);
  margin-top: 0.3rem;
}


/* ════════════════════════════════════════
   CTA BAND
════════════════════════════════════════ */
.cta-band {
  position: relative;
  padding: 8rem 2rem;
  background: linear-gradient(140deg, #1A0C06, #2E1810, #201408);
  text-align: center;
  overflow: hidden;
}
.cta-band__orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.cta-band__orb--1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(92,143,114,0.2) 0%, transparent 70%);
  top: -150px; left: -100px;
}
.cta-band__orb--2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,144,144,0.18) 0%, transparent 70%);
  bottom: -100px; right: -50px;
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.cta-band__h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  line-height: 1.12;
  color: #fff;
  margin-bottom: 1.4rem;
}
.cta-band__sub {
  font-size: 1.04rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.82;
  max-width: 50ch;
  margin: 0 auto 2.2rem;
}
.cta-band__fine {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin-top: 1.2rem;
  letter-spacing: 0.04em;
}


/* ════════════════════════════════════════
   FOOTER / CONTACT
════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--border);
}
.footer__container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 6rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 6rem;
  align-items: start;
}

/* Contact form */
.footer__sub {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.footer__sub a {
  color: var(--sage);
  text-decoration: underline;
  text-decoration-color: rgba(92,143,114,0.35);
}
.footer__sub a:hover { text-decoration-color: var(--sage); }

.cf { display: flex; flex-direction: column; gap: 1.1rem; }
.cf__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.cf__field { display: flex; flex-direction: column; gap: 0.35rem; }
.cf__field label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-mid);
}
.cf__field input,
.cf__field select,
.cf__field textarea {
  padding: 0.85rem 1.1rem;
  border: 1.5px solid var(--border-mid);
  border-radius: var(--r-md);
  background: var(--oat);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
  resize: vertical;
}
.cf__field input:focus,
.cf__field select:focus,
.cf__field textarea:focus {
  border-color: var(--sage);
  box-shadow: 0 0 0 3px rgba(92,143,114,0.1);
  background: var(--white);
}
.cf__field input::placeholder,
.cf__field textarea::placeholder { color: var(--text-light); }
.cf__success {
  display: none;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--sage);
  background: var(--sage-pale);
  border: 1px solid rgba(92,143,114,0.3);
  border-radius: var(--r-md);
  padding: 0.9rem 1.2rem;
}

/* Footer info */
.footer__info-side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding-top: 4rem;
}
.footer__brand { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__logo {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--brown);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer__logo span { color: var(--sage); }
.footer__brand p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 28ch;
}

.footer__social {
  display: flex;
  gap: 0.75rem;
}
.footer__soc-link {
  width: 38px; height: 38px;
  border: 1.5px solid var(--border-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.28s var(--spring);
}
.footer__soc-link:hover {
  background: var(--sage);
  border-color: var(--sage);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(92,143,114,0.32);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: color 0.22s;
}
.footer__links a:hover { color: var(--sage); }

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer__bottom p { font-size: 0.8rem; color: var(--text-light); }
.footer__bottom-links { display: flex; gap: 1.5rem; }
.footer__bottom-links a { font-size: 0.8rem; color: var(--text-light); transition: color 0.2s; }
.footer__bottom-links a:hover { color: var(--brown); }

/* ─── Back to top ─── */
.btt {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(92,143,114,0.4);
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.38s var(--spring);
  z-index: 999;
}
.btt.is-visible { opacity: 1; transform: translateY(0); }
.btt:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(92,143,114,0.5); }


/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 3rem;
    --p-hero: 3.5rem;
  }
  .hero__sub { margin: 0 auto 2rem; }
  .hero__btns { justify-content: center; }
  .hero__chips { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__illo-wrap { width: 340px; margin: 0 auto; }
  .hero__badge { left: -2%; }

  .about__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__left {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 0;
  }
  .about__accent-card { flex: 1; min-width: 200px; }
  .about__accent-card--2 { margin-left: 0; }

  .services__grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto 2.5rem; }

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

  .process__steps { flex-wrap: wrap; justify-content: center; gap: 2rem; }
  .process-step { flex: 1; min-width: 180px; }
  .process-step__connector { display: none; }

  .newsletter__container { grid-template-columns: 1fr; gap: 2.5rem; }
  .newsletter__visual { display: none; }

  .footer__container { grid-template-columns: 1fr; gap: 3rem; }
  .footer__info-side { padding-top: 0; flex-direction: row; flex-wrap: wrap; gap: 2rem; }
}

@media (max-width: 640px) {
  .hero { padding-top: 70px; }
  .hero__h1 { font-size: clamp(2.2rem, 10vw, 3rem); }
  .hero__illo-wrap { width: 290px; }
  .hero__badge { display: none; }
  .hero__scroll { display: none; }
  .hero__ring { display: none; }

  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    bottom: 0;
    width: min(300px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    padding: 6rem 2rem 3rem;
    background: var(--white);
    border-left: 1px solid var(--border);
    gap: 1.6rem;
    transition: right 0.4s var(--spring);
    box-shadow: var(--s-xl);
    z-index: 1000;
  }
  .nav__links.is-open { right: 0; }
  .nav__links a { font-size: 1rem; color: var(--brown); }
  .nav__burger { display: flex; }

  .about, .services, .who, .process, .newsletter { padding: 5rem 1.5rem; }
  .cta-band { padding: 6rem 1.5rem; }

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

  .nl-form__row { flex-direction: column; }
  .nl-form__row .btn { width: 100%; }

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

  .footer__container { padding: 4rem 1.5rem 3rem; }
  .footer__info-side { flex-direction: column; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }

  .section-h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
}

/* ─── Cursor glow ─── */
@media (hover: hover) and (pointer: fine) {
  .cursor-glow {
    pointer-events: none;
    position: fixed;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(92,143,114,0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 0;
    will-change: left, top;
    transition: left 0.06s linear, top 0.06s linear;
  }
}
