/* =============================================
   SANKALP SRIVASTAVA | RELATIONSHIP CLARITY COACH
   Main Stylesheet
   ============================================= */

/* ---------- CSS Variables ---------- */
:root {
  --green: #2C4A3E;
  --green-light: #3d6456;
  --gold: #C4955A;
  --gold-light: #d4a96e;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-muted: #6b6b6b;
  --text-light: rgba(250,247,242,0.85);
  --border: rgba(44,74,62,0.12);
  --shadow-sm: 0 2px 12px rgba(44,74,62,0.08);
  --shadow-md: 0 8px 30px rgba(44,74,62,0.12);
  --shadow-lg: 0 16px 50px rgba(44,74,62,0.15);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::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(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}

/* Default state (transparent over dark hero) — white text */
.nav__logo {
  display: flex;
  flex-direction: column;
  gap: 0;
  text-decoration: none;
}
.nav__logo span {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #ffffff;
  transition: color var(--transition);
  line-height: 1.2;
}
.nav__tagline {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.02em;
  position: relative;
  transition: color var(--transition);
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav__links a:hover::after,
.nav__links a.active::after { width: 100%; }
.nav__cta {
  padding: 0.5rem 1.3rem;
  background: var(--gold);
  color: var(--white) !important;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav__cta:hover {
  background: var(--gold-light) !important;
  transform: translateY(-1px);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition: background var(--transition), transform 0.3s, opacity 0.3s;
}

/* Scrolled state — white bg, dark text */
.navbar.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.navbar.scrolled .nav__logo span,
.navbar.scrolled .nav__tagline,
.navbar.scrolled .nav__links a,
.navbar.scrolled .hamburger span {
  color: var(--green);
}
.navbar.scrolled .nav__tagline { color: var(--text-muted); }
.navbar.scrolled .nav__links a { color: var(--green); }
.navbar.scrolled .nav__links a::after {
  background: var(--gold);
}
.navbar.scrolled .nav__cta {
  background: var(--green);
  color: var(--white) !important;
}
.navbar.scrolled .nav__cta:hover {
  background: var(--green-light) !important;
}
.navbar.scrolled .hamburger span {
  background: var(--green);
}

/* Mobile nav */
.nav__mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--white);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow-md);
  z-index: 999;
  flex-direction: column;
  gap: 1rem;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--green);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.nav__mobile .nav__cta-mobile {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
}

/* ---------- HERO SECTION ---------- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--green) 0%, #1a2f27 60%, #0d1f1a 100%);
  display: flex;
  align-items: center;
  padding: 120px 2rem 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 70vw; height: 70vw;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,149,90,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
}
.hero__text { color: var(--white); }
.hero__eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
}
.hero__h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.22;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.hero__h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero__sub {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 2.2rem;
  max-width: 520px;
}
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.btn-primary {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.03em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(196,149,90,0.35);
}
.btn-outline {
  display: inline-block;
  padding: 0.85rem 2rem;
  border: 1.5px solid rgba(255,255,255,0.4);
  color: var(--white);
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  transition: border-color var(--transition), background var(--transition);
}
.btn-outline:hover {
  border-color: var(--gold);
  background: rgba(196,149,90,0.1);
}
.hero__image {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero__portrait {
  width: 360px;
  height: 420px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top center;
  box-shadow: var(--shadow-lg), 0 0 0 6px rgba(196,149,90,0.2);
  border: 3px solid rgba(196,149,90,0.3);
}

/* ---------- SECTIONS ---------- */
section { padding: 90px 2rem; }
.section__inner { max-width: 1100px; margin: 0 auto; }
.section__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}
.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.25;
  margin-bottom: 1rem;
}
.section__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.8;
  margin-bottom: 3rem;
}
.center { text-align: center; }
.center .section__desc { margin-left: auto; margin-right: auto; }

/* Pain Points */
.pain-section { background: var(--cream); }
.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.pain-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  border: 1px solid var(--border);
  transition: box-shadow var(--transition), transform var(--transition);
}
.pain-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.pain-card__icon { font-size: 1.8rem; margin-bottom: 0.8rem; }
.pain-card__text {
  font-size: 0.95rem;
  color: var(--text-dark);
  line-height: 1.6;
  font-style: italic;
}

/* CLEAR Method */
.clear-section { background: var(--white); }
.clear-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.2rem;
  margin-top: 3rem;
}
.clear-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.2rem;
  text-align: center;
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition), transform var(--transition);
}
.clear-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.clear-card__letter {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.clear-card__word {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.clear-card__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Who I Help */
.who-section { background: var(--green); }
.who-section .section__title { color: var(--white); }
.who-section .section__desc { color: rgba(255,255,255,0.75); }
.who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.who-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 2rem;
  transition: background var(--transition);
}
.who-card:hover { background: rgba(255,255,255,0.12); }
.who-card__q {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  line-height: 1.4;
}
.who-card__p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.65;
}

/* Services Preview */
.services-section { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-card.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.service-card__badge {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}
.service-card__title {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--green);
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.65;
  flex: 1;
}
.service-card__price {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.service-card__link {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--green);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
  transition: color var(--transition);
}
.service-card__link:hover { color: var(--gold); }

/* Testimonials */
.testimonials-section { background: var(--white); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  border-left: 3px solid var(--gold);
}
.testimonial-card__text {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--text-dark);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-card__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-card__name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green);
}
.testimonial-card__role {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Lead Magnet / CTA Strip */
.lead-section {
  background: linear-gradient(135deg, var(--green) 0%, #1a2f27 100%);
  padding: 90px 2rem;
}
.lead-section .section__title { color: var(--white); }
.lead-section .section__desc { color: rgba(255,255,255,0.75); }
.lead__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.lead__signs {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.lead__sign {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255,255,255,0.1);
}
.lead__sign-num {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
  line-height: 1;
  padding-top: 0.1rem;
}
.lead__sign-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.55;
}
.lead__cta { text-align: center; }
.lead__title {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}
.lead__sub {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* About Strip */
.about-strip {
  background: var(--white);
  padding: 90px 2rem;
}
.about-strip__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
}
.about-strip__img-wrap {
  display: flex;
  justify-content: center;
}
.about-strip__portrait {
  width: 280px; height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.about-strip__content .section__title { margin-bottom: 1rem; }
.about-strip__content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* CTA Banner */
.cta-banner {
  background: var(--gold);
  padding: 70px 2rem;
  text-align: center;
}
.cta-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 1rem;
  font-weight: 700;
}
.cta-banner__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  max-width: 540px;
  margin-left: auto; margin-right: auto;
  line-height: 1.75;
}
.btn-white {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--white);
  color: var(--gold);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: box-shadow var(--transition), transform var(--transition);
}
.btn-white:hover {
  box-shadow: 0 8px 25px rgba(0,0,0,0.15);
  transform: translateY(-2px);
}
.btn-green {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  background: var(--green);
  color: var(--white);
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition);
}
.btn-green:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--green);
  color: rgba(255,255,255,0.8);
  padding: 60px 2rem 30px;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer__brand-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}
.footer__brand-tagline {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer__bio {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 1.2rem;
}
.footer__socials {
  display: flex;
  gap: 0.8rem;
}
.footer__social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: background var(--transition);
}
.footer__social-link:hover { background: var(--gold); }
.footer__col-title {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.2rem;
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--gold); }
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0.65rem;
}
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ---------- ABOUT PAGE ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--green) 0%, #1a2f27 100%);
  padding: 130px 2rem 80px;
  text-align: center;
  color: var(--white);
}
.page-hero__label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}
.page-hero__portrait {
  width: 200px; height: 200px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--gold);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  margin: 2rem auto 0;
}

/* Story Section */
.story-section {
  background: var(--white);
  padding: 90px 2rem;
}
.story-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.8fr;
  gap: 5rem;
  align-items: start;
}
.story__portrait-wrap {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.story__portrait {
  width: 260px; height: 260px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid var(--gold);
  box-shadow: var(--shadow-lg);
}
.story__creds {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}
.story__cred-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  background: var(--cream);
  border-radius: 8px;
  padding: 0.5rem 0.8rem;
}
.story__cred-item .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.story__content { }
.story__content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.story__content p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 1.4rem;
}
.story__quote {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.8rem;
  margin: 2rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.story__quote p {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-style: italic;
  color: var(--green);
  margin: 0;
}

/* Philosophy Section */
.philosophy-section { background: var(--cream); padding: 90px 2rem; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}
.philosophy-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  border-top: 3px solid var(--gold);
  transition: box-shadow var(--transition);
}
.philosophy-card:hover { box-shadow: var(--shadow-md); }
.philosophy-card__num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: rgba(196,149,90,0.2);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.philosophy-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.7rem;
}
.philosophy-card__text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Ethics Note */
.ethics-section {
  background: var(--white);
  padding: 60px 2rem;
}
.ethics-note {
  max-width: 720px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  border: 1px solid var(--border);
}
.ethics-note h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.ethics-note p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ---------- SERVICES PAGE ---------- */
.services-hero { background: linear-gradient(135deg, var(--green) 0%, #1a2f27 100%); }
.services-list { background: var(--cream); padding: 90px 2rem; }
.services-list__inner { max-width: 1000px; margin: 0 auto; }
.service-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  margin-bottom: 2rem;
  border: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  transition: box-shadow var(--transition);
}
.service-item:hover { box-shadow: var(--shadow-md); }
.service-item.featured {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}
.service-item__badge {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 50px;
  margin-bottom: 0.8rem;
}
.service-item__title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.service-item__sub {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}
.service-item__desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.service-item__details { }
.service-detail-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 1.5rem;
}
.service-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.service-detail-list li::before {
  content: '✓';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.service-item__price {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.3rem;
}
.service-item__price-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1.2rem;
}

/* Comparison Table */
.comparison-section { background: var(--white); padding: 90px 2rem; }
.comparison-table-wrap { overflow-x: auto; margin-top: 3rem; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.comparison-table th {
  background: var(--green);
  color: var(--white);
  padding: 1rem 1.2rem;
  text-align: left;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.comparison-table td {
  padding: 0.9rem 1.2rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
}
.comparison-table tr:nth-child(even) td { background: var(--cream); }
.comparison-table .gold { color: var(--gold); font-weight: 600; }

/* FAQ */
.faq-section { background: var(--cream); padding: 90px 2rem; }
.faq-list { max-width: 750px; margin: 3rem auto 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.3rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--green);
  text-align: left;
  background: none;
  cursor: pointer;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.3rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}
.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  padding-bottom: 1.2rem;
}
.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ---------- CONTACT PAGE ---------- */
.contact-section { background: var(--cream); padding: 90px 2rem; }
.contact-section__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--green);
  margin-bottom: 1rem;
}
.contact-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.contact-info__steps {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}
.contact-info__step {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.step-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  padding-top: 0.3rem;
}
.contact-info__links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.contact-info__link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}
.contact-info__link i { color: var(--gold); width: 16px; }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}
.contact-form-wrap .form-sub {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 1.8rem;
}
.form-group {
  margin-bottom: 1.2rem;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 0.4rem;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  background: var(--cream);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-submit {
  width: 100%;
  padding: 0.9rem;
  background: var(--green);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
  margin-top: 0.5rem;
}
.form-submit:hover {
  background: var(--green-light);
  transform: translateY(-1px);
}
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success.show { display: block; }
.form-success__icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green);
  margin-bottom: 0.8rem;
}
.form-success p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .clear-grid { grid-template-columns: repeat(3, 1fr); }
  .hero__inner { gap: 2.5rem; }
  .story-section__inner { gap: 3rem; }
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__ctas { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__portrait { width: 280px; height: 330px; }
  .hero__image { order: -1; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .clear-grid { grid-template-columns: repeat(3, 1fr); }
  .who-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .lead__grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-strip__inner { grid-template-columns: 1fr; text-align: center; }
  .about-strip__img-wrap { justify-content: center; }
  .story-section__inner { grid-template-columns: 1fr; }
  .story__portrait-wrap { position: static; }
  .philosophy-grid { grid-template-columns: 1fr 1fr; }
  .service-item { grid-template-columns: 1fr; }
  .contact-section__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  section { padding: 60px 1.5rem; }
  .navbar { padding: 0 1.5rem; }
  .pain-grid { grid-template-columns: 1fr; }
  .clear-grid { grid-template-columns: repeat(2, 1fr); }
  .who-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .comparison-table { font-size: 0.8rem; }
  .hero__portrait { width: 240px; height: 280px; }
}
