/* ============================================================
   Dr. Jeetu Pathak — drjeetupathak.com replica
   Palette drawn from the original Elementor kit:
   deep green #0B3D2C · olive #729F28 · gold #C79A42/#D4A43B
   cream #F7EBC8 · mint #E9F2EA
   ============================================================ */

:root {
  --green-deep: #0B3D2C;
  --green-deeper: #072b1f;
  --green-olive: #729F28;
  --gold: #C79A42;
  --gold-bright: #D4A43B;
  --gold-soft: #E7CE9C;
  --cream: #F7EBC8;
  --cream-soft: #FBF6E9;
  --mint: #E9F2EA;
  --mint-soft: #F3F8F4;
  --ink: #1E2B24;
  --muted: #5F6E66;
  --line: #E3E9E4;
  --white: #FFFFFF;

  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;

  --radius-lg: 34px;
  --radius-md: 22px;
  --radius-sm: 14px;

  --shadow-soft: 0 18px 45px -18px rgba(11, 61, 44, 0.22);
  --shadow-gold: 0 22px 60px -20px rgba(139, 122, 83, 0.45);

  --container: 1180px;
  --section-pad: clamp(4rem, 9vw, 7rem);
}

/* ---------- Reset / base ---------- */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--green-deep); text-decoration: none; transition: color .25s ease; }
a:hover { color: var(--green-olive); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.18;
  color: var(--green-deep);
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.4rem, 5.4vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.8rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.7rem); }
h4 { font-size: clamp(1.15rem, 1.8vw, 1.3rem); }

p { margin: 0 0 1.1em; }

ul { margin: 0 0 1.2em; padding-left: 1.2em; }

::selection { background: var(--gold-soft); color: var(--green-deeper); }

.container {
  width: min(var(--container), 100% - clamp(2rem, 6vw, 4rem));
  margin-inline: auto;
}

.section { padding-block: var(--section-pad); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }
.section--mint { background: var(--mint-soft); }
.section--cream { background: var(--cream-soft); }

.center { text-align: center; }

/* Gold small-caps label above headings */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow::before, .eyebrow.eyebrow--lined::after {
  content: "";
  width: 34px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.eyebrow.eyebrow--lined::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.eyebrow--center { justify-content: center; }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--muted);
  max-width: 46rem;
}
.center .lede, .lede--center { margin-inline: auto; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: .95rem 2.1rem;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .02em;
  line-height: 1;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all .3s ease;
  white-space: nowrap;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--green-deeper);
  box-shadow: 0 12px 30px -12px rgba(199, 154, 66, .6);
}
.btn--gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 38px -12px rgba(199, 154, 66, .75);
  color: var(--green-deeper);
}

.btn--green {
  background: var(--green-deep);
  color: var(--cream);
}
.btn--green:hover {
  background: var(--green-deeper);
  color: var(--gold-soft);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 235, 200, .55);
}
.btn--outline-light:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-deep);
}
.btn--outline:hover {
  background: var(--green-deep);
  color: var(--cream);
  transform: translateY(-2px);
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 600;
  color: var(--green-deep);
  border-bottom: 1px solid var(--gold);
  padding-bottom: .15rem;
}
.text-link::after { content: "→"; transition: transform .25s ease; color: var(--gold); }
.text-link:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, box-shadow .3s ease;
}
/* Blur lives on a pseudo-element: backdrop-filter on the header itself would
   make it the containing block for the fixed mobile drawer inside it. */
.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 10px 30px -18px rgba(11, 61, 44, .25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: .8rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
}
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-name strong {
  font-family: var(--font-serif);
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--green-deep);
  letter-spacing: .01em;
}
.brand-name span {
  font-size: .62rem;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.site-nav { display: flex; align-items: center; gap: 2rem; }

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.8rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-list a {
  font-size: .92rem;
  font-weight: 500;
  color: var(--ink);
  padding-block: .4rem;
  position: relative;
}
.nav-list a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 2px;
  background: var(--gold);
  transition: right .3s ease;
}
.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after { right: 0; }
.nav-list a[aria-current="page"] { color: var(--green-deep); font-weight: 600; }

.header-cta { flex-shrink: 0; }
.header-cta .btn { padding: .75rem 1.6rem; font-size: .88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Home hero ---------- */

.hero {
  position: relative;
  padding: clamp(1.2rem, 3.5vw, 3rem) 0 clamp(4.5rem, 8vw, 7rem);
  background:
    radial-gradient(60% 90% at 85% -10%, rgba(199, 154, 66, .12), transparent 60%),
    radial-gradient(50% 80% at 8% 10%, rgba(114, 159, 40, .10), transparent 55%),
    var(--white);
}

.hero-card {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(120% 140% at 50% -30%, rgba(199, 154, 66, .28), transparent 55%),
    linear-gradient(160deg, #0E4735 0%, var(--green-deep) 55%, var(--green-deeper) 100%);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1.5rem, 6vw, 6rem);
  text-align: center;
  color: var(--cream);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(212, 164, 59, .28);
  border-radius: calc(var(--radius-lg) - 12px);
  pointer-events: none;
}

.hero-tagline {
  font-size: clamp(.8rem, 1.4vw, .95rem);
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
  margin-bottom: 1.4rem;
}

.hero-card h1 {
  color: var(--white);
  max-width: 21ch;
  margin-inline: auto;
}
.hero-card .hero-sub {
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  color: rgba(247, 235, 200, .85);
  max-width: 44ch;
  margin: 0 auto 2.2rem;
}
.hero-card .btn-row { justify-content: center; }

.hero-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .5;
}

/* ---------- Pillars strip ---------- */

.pillars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.2rem;
  margin-top: calc(clamp(2.4rem, 5vw, 3.4rem) * -1);
  position: relative;
  z-index: 2;
}
.pillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.4rem 1.3rem;
  box-shadow: var(--shadow-soft);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.pillar:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold);
}
.pillar-icon {
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  margin-bottom: .9rem;
}
.pillar-icon svg { width: 22px; height: 22px; }
.pillar h3 { font-size: 1.18rem; margin-bottom: .25rem; }
.pillar p { font-size: .88rem; color: var(--muted); margin: 0; }

/* ---------- Quote band ---------- */

.quote-band { text-align: center; }
.quote-band blockquote {
  margin: 0 auto;
  max-width: 52rem;
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.45;
  color: var(--green-deep);
}
.quote-band blockquote::before {
  content: "❝";
  display: block;
  font-size: 2.6rem;
  color: var(--gold);
  font-style: normal;
  margin-bottom: .6rem;
}
.quote-band cite {
  display: inline-block;
  margin-top: 1.4rem;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- About split ---------- */

.split {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse { grid-template-columns: minmax(0, 7fr) minmax(0, 5fr); }

.portrait-frame {
  position: relative;
  border-radius: 42% 42% var(--radius-lg) var(--radius-lg) / 34% 34% var(--radius-lg) var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(180deg, var(--mint), var(--cream-soft));
  box-shadow: var(--shadow-gold);
}
.portrait-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 154, 66, .4);
  border-radius: inherit;
  pointer-events: none;
}
.portrait-frame img { width: 100%; object-fit: cover; }

.seeker-list {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 1.6rem;
  display: grid;
  gap: .8rem;
}
.seeker-list li {
  position: relative;
  padding-left: 2rem;
  color: var(--ink);
}
.seeker-list li::before {
  content: "✦";
  position: absolute;
  left: .3rem;
  top: .05rem;
  color: var(--gold);
  font-size: .95rem;
}
.seeker-list strong { color: var(--green-deep); }

/* ---------- Deep green note card ---------- */

.note-card {
  background:
    radial-gradient(110% 160% at 90% -40%, rgba(199, 154, 66, .25), transparent 55%),
    linear-gradient(155deg, #0E4735, var(--green-deeper));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  color: rgba(247, 235, 200, .9);
  padding: clamp(2.6rem, 6vw, 4.5rem) clamp(1.6rem, 6vw, 5rem);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.note-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(212, 164, 59, .25);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}
.note-card .eyebrow { color: var(--gold-bright); }
.note-card h2 { color: var(--white); max-width: 26ch; margin-inline: auto; }
.note-card p { max-width: 62ch; margin-inline: auto; }
.note-card p:last-child { margin-bottom: 0; }

/* ---------- Offerings grid ---------- */

.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.7rem;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  display: flex;
  flex-direction: column;
}
.offer-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold);
}
.offer-card .pillar-icon { background: var(--cream); color: var(--gold); }
.offer-card h3 { font-size: 1.3rem; }
.offer-card p { font-size: .93rem; color: var(--muted); margin-bottom: 1.2rem; }
.offer-card .text-link { margin-top: auto; font-size: .88rem; }

/* ---------- Books ---------- */

.book-feature {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 5rem);
  align-items: center;
}
.book-feature + .book-feature { margin-top: clamp(4rem, 8vw, 6.5rem); }
.book-feature--flip .book-cover { order: 2; }

.book-cover {
  position: relative;
  padding: clamp(1.4rem, 3vw, 2.2rem);
  background: linear-gradient(165deg, var(--mint), var(--cream-soft));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}
.book-cover::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(199, 154, 66, .35);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}
.book-cover img {
  border-radius: var(--radius-sm);
  box-shadow: 0 24px 50px -20px rgba(11, 61, 44, .45);
  margin-inline: auto;
}

.badge {
  display: inline-block;
  padding: .35rem 1rem;
  border-radius: 999px;
  background: var(--cream);
  border: 1px solid var(--gold-soft);
  color: var(--gold);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.book-subtitle {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold);
  margin-bottom: 1.2rem;
}

.book-quotes {
  list-style: none;
  padding: 1.4rem 0 0;
  margin: 1.6rem 0 1.8rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .75rem;
}
.book-quotes li {
  position: relative;
  padding-left: 1.7rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.06rem;
  color: var(--green-deep);
}
.book-quotes li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--gold);
}

/* ---------- Testimonials ---------- */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 2.6rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold);
}
.testimonial-card .quote-mark {
  font-family: var(--font-serif);
  font-size: 3rem;
  line-height: 1;
  color: var(--gold);
}
.testimonial-card .stars {
  color: var(--gold-bright);
  letter-spacing: .2em;
  font-size: .9rem;
  margin-bottom: .8rem;
}
.testimonial-card p {
  font-size: .93rem;
  color: var(--muted);
}
.testimonial-card footer {
  margin-top: auto;
  padding-top: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.testimonial-card footer strong {
  font-family: var(--font-serif);
  font-size: 1.08rem;
  color: var(--green-deep);
}
.testimonial-card footer span {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Long-form testimonials page */
.testimonial-full {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-soft);
}
.testimonial-full + .testimonial-full { margin-top: 2rem; }
.testimonial-full .quote-mark {
  font-family: var(--font-serif);
  font-size: 3.4rem;
  line-height: .8;
  color: var(--gold);
  display: block;
  margin-bottom: 1rem;
}
.testimonial-full cite {
  display: block;
  margin-top: 1.4rem;
  font-style: normal;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--green-deep);
}
.testimonial-full cite::before { content: "— "; color: var(--gold); }

/* ---------- Posts ---------- */

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 1.5rem;
  margin-top: 2.6rem;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.post-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold);
}
.post-card .post-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
}
.post-card .post-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.post-card:hover .post-thumb img { transform: scale(1.06); }
.post-body {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post-cat {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.post-body h3 { font-size: 1.25rem; margin-bottom: .4rem; }
.post-body h3 a { color: inherit; }
.post-body h3 a:hover { color: var(--green-olive); }
.post-body p { font-size: .9rem; color: var(--muted); margin-bottom: 1.1rem; }
.post-body .text-link { margin-top: auto; font-size: .85rem; }

/* Filter tabs */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  margin-top: 2rem;
}
.filter-tab {
  padding: .55rem 1.4rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all .25s ease;
}
.filter-tab:hover { border-color: var(--gold); color: var(--green-deep); }
.filter-tab.is-active {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: var(--cream);
}
.post-card.is-hidden { display: none; }

/* ---------- Newsletter ---------- */

.newsletter-card {
  background:
    radial-gradient(120% 150% at 15% -30%, rgba(199, 154, 66, .22), transparent 55%),
    linear-gradient(150deg, #0E4735, var(--green-deeper));
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-gold);
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.6rem, 6vw, 5rem);
  text-align: center;
  color: rgba(247, 235, 200, .88);
}
.newsletter-card .eyebrow { color: var(--gold-bright); }
.newsletter-card h2 { color: var(--white); }
.newsletter-card p { max-width: 52ch; margin-inline: auto; }

.newsletter-form {
  display: flex;
  gap: .7rem;
  max-width: 30rem;
  margin: 1.8rem auto 0;
}
.newsletter-form input {
  flex: 1;
  min-width: 0;
  padding: .95rem 1.4rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 235, 200, .35);
  background: rgba(255, 255, 255, .08);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: .95rem;
  outline: none;
  transition: border-color .25s ease, background .25s ease;
}
.newsletter-form input::placeholder { color: rgba(247, 235, 200, .55); }
.newsletter-form input:focus { border-color: var(--gold-bright); background: rgba(255, 255, 255, .14); }

.form-note {
  margin-top: 1rem;
  font-size: .9rem;
  color: var(--gold-bright);
  min-height: 1.4em;
}

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  position: relative;
  background:
    radial-gradient(110% 170% at 80% -50%, rgba(199, 154, 66, .25), transparent 55%),
    linear-gradient(160deg, #0E4735 0%, var(--green-deep) 60%, var(--green-deeper) 100%);
  color: var(--cream);
  text-align: center;
  padding: clamp(3.6rem, 8vw, 6rem) 0 clamp(4.4rem, 9vw, 7rem);
  overflow: hidden;
}
.page-hero h1 { color: var(--white); }
.page-hero .lede { color: rgba(247, 235, 200, .82); margin-inline: auto; }
.page-hero .eyebrow { color: var(--gold-bright); }

.breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .08em;
  color: rgba(247, 235, 200, .6);
  margin-bottom: 1rem;
}
.breadcrumb a { color: rgba(247, 235, 200, .85); }
.breadcrumb a:hover { color: var(--gold-bright); }
.breadcrumb .sep { color: var(--gold); }

/* Curved divider below dark bands */
.curve {
  display: block;
  width: 100%;
  height: clamp(34px, 6vw, 70px);
  position: absolute;
  bottom: -1px;
  left: 0;
}
.curve path { fill: var(--white); }
.curve--mint path { fill: var(--mint-soft); }

/* ---------- Journey narrative ---------- */

.journey-flow { max-width: 46rem; margin-inline: auto; }
.journey-step { padding-left: 2.2rem; position: relative; margin-bottom: 2.4rem; }
.journey-step::before {
  content: "";
  position: absolute;
  left: .45rem;
  top: .85rem;
  bottom: -2.4rem;
  width: 1px;
  background: linear-gradient(180deg, var(--gold), rgba(199, 154, 66, .15));
}
.journey-step:last-child::before { display: none; }
.journey-step::after {
  content: "✦";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: .95rem;
}
.journey-step h3 {
  font-size: 1.45rem;
  margin-bottom: .5rem;
}
.journey-step p { color: var(--muted); }
.journey-step p:last-child { margin-bottom: 0; }

.mantra {
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  font-weight: 600;
  color: var(--green-deep);
  line-height: 1.5;
}
.mantra em {
  font-style: italic;
  color: var(--gold);
}

/* ---------- Pricing / offerings detail ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.6rem;
  margin-top: 2.6rem;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 4vw, 2.8rem);
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.price-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-gold);
}
.price-card--featured {
  background:
    radial-gradient(120% 150% at 85% -30%, rgba(199, 154, 66, .22), transparent 55%),
    linear-gradient(155deg, #0E4735, var(--green-deeper));
  border: none;
  color: rgba(247, 235, 200, .88);
}
.price-card--featured h3, .price-card--featured .price-value { color: var(--white); }
.price-card--featured .price-tag { color: var(--gold-bright); }
.price-card--featured li { color: rgba(247, 235, 200, .85); }
.price-card--featured .price-meta { border-color: rgba(247, 235, 200, .2); }
.price-card--featured .price-meta dt { color: var(--gold-bright); }
.price-card--featured .price-meta dd { color: var(--cream); }

.price-tag {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .6rem;
}
.price-card h3 { font-size: 1.6rem; margin-bottom: .4rem; }
.price-card > p { font-size: .95rem; }

.price-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 1.6rem;
  display: grid;
  gap: .6rem;
}
.price-list li {
  position: relative;
  padding-left: 1.7rem;
  font-size: .93rem;
  color: var(--muted);
}
.price-list li::before {
  content: "✦";
  position: absolute;
  left: .2rem;
  color: var(--gold);
  font-size: .8rem;
  top: .25rem;
}

.price-meta {
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  gap: 1rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  margin: auto 0 1.6rem;
}
.price-meta div { min-width: 0; }
.price-meta dt {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .2rem;
}
.price-meta dd {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--green-deep);
}
.price-value { font-family: var(--font-serif); }

.wisdom-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.wisdom-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.6rem 1.5rem;
}
.wisdom-item h4 { margin-bottom: .3rem; font-size: 1.15rem; }
.wisdom-item p { font-size: .9rem; color: var(--muted); margin: 0; }

.guide-block {
  background: var(--cream-soft);
  border: 1px solid var(--gold-soft);
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3rem);
  margin-top: 3rem;
}
.guide-block h3 { margin-bottom: 1.2rem; }
.guide-block ul { list-style: none; padding: 0; margin: 0 0 1.2rem; display: grid; gap: .8rem; }
.guide-block li { position: relative; padding-left: 1.8rem; color: var(--ink); }
.guide-block li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold);
}
.guide-block li strong { color: var(--green-deep); }

/* ---------- FAQ / accordion ---------- */

.faq-group { max-width: 50rem; margin-inline: auto; }
.faq-group + .faq-group { margin-top: 3.2rem; }
.faq-group > h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--gold-soft);
  margin-bottom: 1.2rem;
}

.accordion {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  margin-bottom: .8rem;
  overflow: hidden;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.accordion[open] {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
}
.accordion summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  font-family: var(--font-serif);
  font-size: 1.12rem;
  font-weight: 600;
  color: var(--green-deep);
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after {
  content: "+";
  flex-shrink: 0;
  width: 28px; height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green-deep);
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 500;
  transition: transform .3s ease, background .3s ease, color .3s ease;
}
.accordion[open] summary::after {
  content: "−";
  background: var(--green-deep);
  color: var(--cream);
}
.accordion .accordion-body {
  padding: 0 1.4rem 1.3rem;
  color: var(--muted);
  font-size: .95rem;
}
.accordion .accordion-body p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: clamp(2.5rem, 6vw, 4.5rem);
  align-items: start;
}

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  margin-bottom: 1.1rem;
  transition: border-color .3s ease, box-shadow .3s ease, transform .3s ease;
}
.contact-card:hover {
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-soft);
  transform: translateY(-3px);
}
.contact-card .pillar-icon { margin: 0; flex-shrink: 0; }
.contact-card h3 { font-size: 1.05rem; margin-bottom: .15rem; }
.contact-card a, .contact-card p { font-size: .95rem; margin: 0; color: var(--muted); word-break: break-word; }
.contact-card a:hover { color: var(--green-olive); }

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.8rem, 4vw, 2.8rem);
}
.form-field { margin-bottom: 1.2rem; }
.form-field label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--green-deep);
  margin-bottom: .45rem;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: .9rem 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--mint-soft);
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .25s ease, background .25s ease;
  resize: vertical;
}
.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: var(--white);
}
.form-card .form-note { color: var(--green-olive); }

/* ---------- Article / prose ---------- */

.article-hero-img {
  margin-top: -3.2rem;
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-gold);
}
.article-hero-img img { width: 100%; max-height: 460px; object-fit: cover; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.6rem;
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(247, 235, 200, .7);
  margin-top: 1.2rem;
}
.article-meta strong { color: var(--gold-bright); font-weight: 600; }

.prose { max-width: 44rem; margin-inline: auto; font-size: 1.05rem; }
.prose p { margin-bottom: 1.35em; color: #37453E; }
.prose h2 { font-size: 1.7rem; margin-top: 2em; }
.prose .drop p:first-of-type::first-letter {
  font-family: var(--font-serif);
  font-size: 3.4em;
  line-height: .82;
  float: left;
  padding: .08em .12em 0 0;
  color: var(--gold);
  font-weight: 600;
}
.prose blockquote {
  margin: 2em 0;
  padding: 1.6em 2em;
  background: var(--cream-soft);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-family: var(--font-serif);
  font-size: 1.2em;
  font-style: italic;
  color: var(--green-deep);
}
.prose blockquote p { margin-bottom: .4em; color: inherit; }
.prose blockquote cite {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: .75em;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
}
.prose .sanskrit {
  text-align: center;
  font-size: 1.15em;
  color: var(--green-deep);
}

.post-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  max-width: 44rem;
  margin: 3rem auto 0;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.post-nav a {
  display: flex;
  flex-direction: column;
  gap: .2rem;
  max-width: 48%;
}
.post-nav a span {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}
.post-nav a strong {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--green-deep);
  font-weight: 600;
}
.post-nav a:hover strong { color: var(--green-olive); }
.post-nav .next { text-align: right; margin-left: auto; }

/* ---------- Legal pages ---------- */

.legal { max-width: 46rem; margin-inline: auto; }
.legal h2 {
  font-size: 1.45rem;
  margin-top: 2.4em;
  padding-bottom: .4rem;
  border-bottom: 1px solid var(--gold-soft);
}
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: var(--muted); font-size: .98rem; }
.legal .effective {
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

/* ---------- Pre-footer CTA ---------- */

.prefooter {
  background:
    radial-gradient(110% 160% at 12% -40%, rgba(199, 154, 66, .2), transparent 55%),
    linear-gradient(150deg, #0E4735, var(--green-deep));
  color: rgba(247, 235, 200, .88);
  padding-block: clamp(3.5rem, 7vw, 5.5rem);
}
.prefooter-inner {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}
.prefooter h2 { color: var(--white); }
.prefooter p { max-width: 52ch; }
.prefooter .contact-lines { display: grid; gap: 1.2rem; }
.prefooter .contact-line {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.prefooter .contact-line .pillar-icon {
  background: rgba(247, 235, 200, .12);
  color: var(--gold-bright);
  margin: 0;
}
.prefooter .contact-line span {
  display: block;
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
}
.prefooter .contact-line a {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--white);
}
.prefooter .contact-line a:hover { color: var(--gold-bright); }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--green-deeper);
  color: rgba(247, 235, 200, .7);
  padding: clamp(3rem, 6vw, 4.5rem) 0 0;
  border-top: 1px solid rgba(212, 164, 59, .18);
}
.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 3fr) minmax(0, 4fr);
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3rem;
}
.footer-brand img { width: 74px; margin-bottom: 1.1rem; }
.footer-brand p { font-size: .92rem; max-width: 34ch; }

.footer-head {
  font-family: var(--font-sans);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 1.2rem;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .55rem;
}
.footer-links a {
  color: rgba(247, 235, 200, .75);
  font-size: .92rem;
}
.footer-links a:hover { color: var(--gold-bright); }

.social-row {
  display: flex;
  gap: .7rem;
  margin-top: .4rem;
}
.social-row a {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 235, 200, .25);
  color: rgba(247, 235, 200, .8);
  transition: all .3s ease;
}
.social-row a:hover {
  border-color: var(--gold-bright);
  color: var(--gold-bright);
  transform: translateY(-3px);
}
.social-row svg { width: 17px; height: 17px; fill: currentColor; }

.footer-bottom {
  border-top: 1px solid rgba(247, 235, 200, .14);
  padding-block: 1.3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .6rem 1.5rem;
  font-size: .82rem;
}
.footer-bottom a { color: rgba(247, 235, 200, .75); }
.footer-bottom a:hover { color: var(--gold-bright); }

/* Back-to-top */
.to-top {
  position: fixed;
  right: 1.4rem;
  bottom: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green-deep);
  color: var(--cream);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .35s ease;
  z-index: 50;
}
.to-top.is-visible { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--gold); color: var(--green-deeper); }

/* WhatsApp floating button */
.wa-float {
  position: fixed;
  left: 1.4rem;
  bottom: 1.4rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 14px 32px -10px rgba(37, 211, 102, .6);
  z-index: 50;
  transition: transform .3s ease;
}
.wa-float:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.wa-float svg { width: 26px; height: 26px; fill: currentColor; }

/* ---------- Reveal animations ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.22,.61,.36,1), transform .8s cubic-bezier(.22,.61,.36,1);
}
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .12s; }
.reveal-d2 { transition-delay: .24s; }
.reveal-d3 { transition-delay: .36s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .header-cta { display: none; }
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 7rem;
    gap: 0;
    transform: translateX(100%);
    transition: transform .4s cubic-bezier(.22,.61,.36,1);
    z-index: 55;
    overflow-y: auto;
  }
  .nav-open .site-nav { transform: none; }
  .nav-list { flex-direction: column; gap: .4rem; width: 100%; padding: 0 2rem; }
  .nav-list li { width: 100%; text-align: center; }
  .nav-list a {
    display: block;
    font-size: 1.15rem;
    font-family: var(--font-serif);
    padding: .8rem 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-list a::after { display: none; }
  .nav-mobile-cta { margin: 1.6rem 0 2.5rem; }
  .nav-open { overflow: hidden; }

  .split, .split--reverse, .book-feature, .contact-grid, .prefooter-inner {
    grid-template-columns: 1fr;
  }
  .book-feature--flip .book-cover { order: 0; }
  .book-cover { max-width: 420px; margin-inline: auto; }
  .portrait-frame { max-width: 420px; margin-inline: auto; }
  .split .portrait-frame { order: -1; }
}

@media (min-width: 861px) {
  .nav-mobile-cta { display: none; }
}

@media (max-width: 640px) {
  body { font-size: .96rem; }
  .pillars { grid-template-columns: 1fr; margin-top: 2rem; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn { width: 100%; }
  .price-meta { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .post-nav { flex-direction: column; }
  .post-nav a { max-width: 100%; }
  .post-nav .next { text-align: left; margin-left: 0; }
  .hero-card { padding-inline: 1.4rem; }
  .brand img { width: 46px; height: 46px; }
  .brand-name strong { font-size: 1.1rem; }
}
