/* ================================================================
   OUR BIRTH TEMPLE — Complete CSS Rebuild
   Mobile-first. Clean architecture. No legacy code.
   ================================================================ */

/* ── Google Fonts ──────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

/* ── Design Tokens ─────────────────────────────────────────────── */
:root {
  /* Colors */
  --c-bg:           #fdf8f4;
  --c-pearl:        #fefaf8;
  --c-ivory:        #faf4ed;
  --c-champagne:    #f5e8d8;
  --c-blush:        #f0d8c8;
  --c-rose-gold:    #c9967a;
  --c-rose-light:   #dba88e;
  --c-burgundy:     #7d2d42;
  --c-wine:         #5c1a2a;
  --c-text:         #2d1a16;
  --c-text-mid:     #6b4840;
  --c-text-soft:    #9a7060;
  --c-text-inv:     #fdf4ee;

  /* Typography */
  --f-display:      'Cormorant Garamond', Georgia, serif;
  --f-body:         'Libre Baskerville', Georgia, serif;

  /* Spacing scale */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 24px;
  --sp-6: 32px;
  --sp-7: 48px;
  --sp-8: 64px;
  --sp-9: 80px;
  --sp-10: 96px;

  /* Borders */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   36px;
  --r-pill: 100px;

  /* Shadows */
  --sh-sm:  0 2px 12px rgba(125,45,66,0.08);
  --sh-md:  0 4px 28px rgba(125,45,66,0.12);
  --sh-lg:  0 8px 48px rgba(125,45,66,0.16);

  /* Section padding — mobile first */
  --section-y: 56px;
  --container-x: 20px;
  --container-max: 1160px;
}

/* ── Reset ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--f-body);
  background: var(--c-bg);
  color: var(--c-text);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Container ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-x);
}

/* ── Typography helpers ────────────────────────────────────────── */
.label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  margin-bottom: var(--sp-3);
}
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 300; line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 9vw, 5rem); }
h2 { font-size: clamp(1.9rem, 5vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3.5vw, 2rem); }
p  { line-height: 1.75; }

.divider {
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-rose-gold), transparent);
  margin: var(--sp-4) auto;
}
.divider--left { margin-left: 0; }

/* ── Buttons ────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 28px;
  min-height: 52px;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  transition: all 0.24s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--c-burgundy);
  color: var(--c-text-inv);
  border-color: var(--c-burgundy);
  box-shadow: var(--sh-sm);
}
.btn-primary:hover {
  background: var(--c-wine);
  border-color: var(--c-wine);
  transform: translateY(-2px);
  box-shadow: var(--sh-md);
}
.btn-outline {
  background: transparent;
  color: var(--c-burgundy);
  border-color: rgba(125,45,66,0.35);
}
.btn-outline:hover {
  background: var(--c-burgundy);
  color: var(--c-text-inv);
  border-color: var(--c-burgundy);
  transform: translateY(-2px);
}
.btn-ghost {
  background: rgba(253,248,244,0.15);
  color: var(--c-text-inv);
  border-color: rgba(253,248,244,0.40);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(253,248,244,0.25);
  transform: translateY(-2px);
}
.btn-full { width: 100%; }

/* ── Section padding ────────────────────────────────────────────── */
.section { padding: var(--section-y) 0; }
.section--light { background: var(--c-pearl); }
.section--ivory { background: var(--c-ivory); }
.section--dark {
  background: linear-gradient(158deg, var(--c-wine) 0%, var(--c-burgundy) 50%, #9a3d55 100%);
  color: var(--c-text-inv);
}
.section--blush {
  background: linear-gradient(180deg, var(--c-bg) 0%, var(--c-champagne) 100%);
}

/* ── Scroll reveal ──────────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ────────────────────────────────────────────────────────────────
   NAVIGATION
   ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(253,248,244,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201,150,122,0.12);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(125,45,66,0.08); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-x);
}
.nav__logo {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-burgundy);
}
.nav__links {
  display: none;
  list-style: none;
  gap: var(--sp-6);
}
.nav__links a {
  font-family: var(--f-body);
  font-size: 0.60rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-text-mid);
  transition: color 0.2s;
}
.nav__links a:hover { color: var(--c-burgundy); }
.nav__hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
  cursor: pointer;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--c-burgundy);
  transition: all 0.3s;
}
/* Mobile menu */
.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--c-pearl);
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-7);
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--f-display);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 300;
  color: var(--c-burgundy);
  letter-spacing: 0.04em;
}
.nav__mobile-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 1.4rem;
  color: var(--c-text-mid);
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
}

/* ────────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────────── */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(158deg,
    #4a1525 0%, var(--c-burgundy) 40%,
    #9a3d55 70%, #c07080 100%);
  padding-top: 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 20%, rgba(255,220,200,0.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(237,217,184,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  position: relative;
  z-index: 1;
  padding: var(--sp-9) var(--container-x);
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
}
.hero__text { order: 2; }
.hero__image { order: 1; display: flex; justify-content: center; }
.hero__eyebrow {
  display: block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: rgba(237,217,184,0.75);
  margin-bottom: var(--sp-3);
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 10vw, 5.5rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.02;
  margin-bottom: var(--sp-4);
}
.hero__title em {
  font-style: italic;
  color: rgba(237,217,184,0.90);
}
.hero__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.95rem, 2.5vw, 1.1rem);
  color: rgba(255,248,242,0.78);
  line-height: 1.72;
  max-width: 44ch;
  margin-bottom: var(--sp-5);
}
.hero__body {
  font-size: 0.92rem;
  color: rgba(255,248,242,0.68);
  line-height: 1.80;
  max-width: 44ch;
  margin-bottom: var(--sp-6);
}
.hero__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.hero__img-frame {
  width: min(280px, 75vw);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 1px solid rgba(237,217,184,0.25);
  box-shadow:
    0 0 0 8px rgba(255,248,242,0.06),
    0 0 0 9px rgba(237,217,184,0.12),
    0 20px 60px rgba(0,0,0,0.30);
  position: relative;
}
.hero__img-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
}
.hero__scroll {
  position: absolute;
  bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(255,248,242,0.45);
  font-family: var(--f-body);
  font-size: 0.55rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.hero__scroll::after {
  content: '';
  display: block;
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, rgba(255,248,242,0.35), transparent);
}

/* ────────────────────────────────────────────────────────────────
   WOMB BLESSING — Email opt-in
   ──────────────────────────────────────────────────────────────── */
.womb {
  background: linear-gradient(158deg,
    var(--c-burgundy) 0%, #9a3d55 50%, #b06070 100%);
  padding: var(--section-y) 0;
}
.womb__card {
  background: rgba(253,248,244,0.08);
  border: 1px solid rgba(237,217,184,0.18);
  border-radius: var(--r-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.womb__glyph {
  font-family: var(--f-display);
  font-size: 1.8rem;
  color: rgba(237,217,184,0.60);
  display: block;
  margin-bottom: var(--sp-4);
}
.womb__badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-text);
  background: rgba(237,217,184,0.80);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-5);
}
.womb__title {
  font-family: var(--f-display);
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 300;
  color: #fff;
  line-height: 1.12;
  margin-bottom: var(--sp-3);
}
.womb__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: rgba(255,248,242,0.72);
  line-height: 1.68;
  margin-bottom: var(--sp-3);
}
.womb__divider {
  width: 36px; height: 1px;
  background: rgba(237,217,184,0.35);
  margin: var(--sp-4) auto;
}
.womb__body {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.88rem;
  color: rgba(255,248,242,0.60);
  line-height: 1.72;
  max-width: 38ch;
  margin: 0 auto var(--sp-6);
}
.womb__form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 400px;
  margin: 0 auto;
}
.womb__input {
  width: 100%;
  height: 52px;
  padding: 0 var(--sp-5);
  font-family: var(--f-body);
  font-size: 0.85rem;
  color: var(--c-text);
  background: rgba(253,248,244,0.90);
  border: 1px solid rgba(237,217,184,0.30);
  border-radius: var(--r-pill);
  outline: none;
  transition: border-color 0.2s;
}
.womb__input::placeholder { color: var(--c-text-soft); }
.womb__input:focus { border-color: rgba(237,217,184,0.60); }
.womb__submit {
  width: 100%;
  height: 52px;
  font-family: var(--f-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: var(--c-text);
  background: rgba(237,217,184,0.88);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.22s, transform 0.18s;
}
.womb__submit:hover { background: #edd9b8; transform: translateY(-2px); }
.womb__note {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.76rem;
  color: rgba(255,248,242,0.45);
}

/* ────────────────────────────────────────────────────────────────
   OFFERINGS — Where Do You Feel Called
   Mobile-first, no absolute positioning, no fixed heights
   ──────────────────────────────────────────────────────────────── */
.offerings {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--c-pearl) 0%, #f8ede2 50%, var(--c-champagne) 100%);
}
.offerings__header {
  text-align: center;
  margin-bottom: var(--sp-7);
}
.offerings__heading { color: var(--c-burgundy); margin-bottom: var(--sp-3); }
.offerings__sub {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.92rem, 2.5vw, 1rem);
  color: var(--c-text-mid);
  line-height: 1.68;
  max-width: 42ch;
  margin: 0 auto;
}
.offerings__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* Single card */
.ocard {
  background: #fff;
  border: 1px solid rgba(201,150,122,0.18);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  transition: box-shadow 0.26s ease;
}
.ocard:hover { box-shadow: var(--sh-md); }
.ocard__symbol {
  width: 44px; height: 44px;
  flex-shrink: 0;
}
.ocard__symbol svg { width: 100%; height: 100%; display: block; }
.ocard__calling {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.80rem;
  color: var(--c-rose-gold);
  line-height: 1.45;
}
.ocard__meta {
  display: flex;
  align-items: baseline;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.ocard__title {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 5vw, 1.9rem);
  font-weight: 300;
  color: var(--c-burgundy);
  line-height: 1.10;
}
.ocard__price {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
  white-space: nowrap;
}
.ocard__desc {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.90rem;
  color: var(--c-text-mid);
  line-height: 1.70;
}
.ocard__btn {
  margin-top: var(--sp-2);
}
.offerings__footer {
  text-align: center;
  margin-top: var(--sp-7);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-4);
}
.offerings__footer p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--c-text-soft);
}

/* ────────────────────────────────────────────────────────────────
   MISSION — Why Our Birth Temple Exists
   ──────────────────────────────────────────────────────────────── */
.mission { background: var(--c-ivory); }
.mission__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  align-items: center;
}
.mission__img-wrap {
  width: min(220px, 60vw);
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(201,150,122,0.22);
  box-shadow:
    0 0 0 8px rgba(253,244,236,0.70),
    0 0 0 9px rgba(201,150,122,0.16),
    var(--sh-md);
  flex-shrink: 0;
}
.mission__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.mission__text h2 { color: var(--c-burgundy); margin-bottom: var(--sp-4); }
.mission__text p {
  color: var(--c-text-mid);
  line-height: 1.82;
  margin-bottom: var(--sp-4);
  font-size: 0.96rem;
}
.mission__quote {
  border-left: 3px solid var(--c-rose-gold);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(201,150,122,0.06);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-top: var(--sp-5);
}
.mission__quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--c-burgundy);
  margin: 0 0 var(--sp-2);
}
.mission__quote cite {
  font-family: var(--f-body);
  font-size: 0.60rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
}

/* ────────────────────────────────────────────────────────────────
   TESTIMONIALS
   ──────────────────────────────────────────────────────────────── */
.testimonials { background: var(--c-pearl); }
.testimonials__heading { color: var(--c-burgundy); text-align: center; margin-bottom: var(--sp-7); }
.testimonials__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
}
.tcard {
  background: var(--c-ivory);
  border: 1px solid rgba(201,150,122,0.14);
  border-radius: var(--r-lg);
  padding: var(--sp-6) var(--sp-5);
}
.tcard__stars {
  color: var(--c-rose-gold);
  font-size: 0.80rem;
  letter-spacing: 3px;
  margin-bottom: var(--sp-3);
}
.tcard__quote {
  font-family: var(--f-display);
  font-size: 2.2rem;
  color: rgba(201,150,122,0.25);
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.tcard__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.92rem;
  color: var(--c-text-mid);
  line-height: 1.78;
  margin-bottom: var(--sp-4);
}
.tcard__author { display: flex; align-items: center; gap: var(--sp-3); }
.tcard__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--c-champagne), var(--c-blush));
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.tcard__name {
  font-family: var(--f-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--c-burgundy);
  display: block;
}
.tcard__role {
  font-family: var(--f-body);
  font-size: 0.68rem;
  color: var(--c-text-soft);
}

/* ────────────────────────────────────────────────────────────────
   ABOUT
   ──────────────────────────────────────────────────────────────── */
.about { background: var(--c-bg); }
.about__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  align-items: center;
}
.about__img-wrap {
  width: min(300px, 85vw);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 1px solid rgba(201,150,122,0.20);
  box-shadow:
    0 0 0 8px rgba(253,244,236,0.70),
    0 0 0 9px rgba(201,150,122,0.12),
    var(--sh-lg);
  position: relative;
}
.about__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about__badge {
  position: absolute;
  bottom: 20px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-burgundy);
  color: #fff;
  border-radius: var(--r-md);
  padding: var(--sp-3) var(--sp-5);
  text-align: center;
  white-space: nowrap;
}
.about__badge-year {
  display: block;
  font-family: var(--f-display);
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1;
}
.about__badge-label {
  display: block;
  font-family: var(--f-body);
  font-size: 0.55rem;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(255,248,242,0.70);
  margin-top: 2px;
}
.about__text h2 { color: var(--c-burgundy); margin-bottom: var(--sp-4); }
.about__text p {
  color: var(--c-text-mid);
  line-height: 1.82;
  margin-bottom: var(--sp-4);
  font-size: 0.94rem;
}
.about__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
}
.tag {
  font-family: var(--f-body);
  font-size: 0.60rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  background: rgba(125,45,66,0.07);
  border: 1px solid rgba(125,45,66,0.15);
  padding: 5px 12px;
  border-radius: var(--r-pill);
}

/* ────────────────────────────────────────────────────────────────
   PHILOSOPHY — Birth as a Sacred Portal
   ──────────────────────────────────────────────────────────────── */
.philosophy {
  background: linear-gradient(158deg,
    var(--c-ivory) 0%, var(--c-blush) 45%,
    rgba(237,217,184,0.40) 75%, var(--c-ivory) 100%);
}
.philosophy__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
}
.philosophy__text h2 { color: var(--c-burgundy); margin-bottom: var(--sp-5); }
.philosophy__text p {
  color: var(--c-text-mid);
  line-height: 1.82;
  margin-bottom: var(--sp-4);
  font-size: 0.94rem;
}
.philosophy__pullquote {
  border-left: 3px solid var(--c-rose-gold);
  padding: var(--sp-4) var(--sp-5);
  background: rgba(253,248,244,0.65);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin-top: var(--sp-5);
}
.philosophy__pullquote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.96rem;
  color: var(--c-burgundy);
  line-height: 1.65;
  margin: 0 0 var(--sp-2);
}
.philosophy__pullquote cite {
  font-family: var(--f-body);
  font-size: 0.60rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
}
.philosophy__img-wrap {
  width: min(300px, 85vw);
  aspect-ratio: 3/4;
  border-radius: 50% 50% 50% 50% / 40% 40% 60% 60%;
  overflow: hidden;
  border: 1px solid rgba(201,150,122,0.22);
  box-shadow:
    0 0 0 8px rgba(253,244,236,0.70),
    0 0 0 9px rgba(201,150,122,0.14),
    var(--sh-md);
  margin: 0 auto;
  position: relative;
}
.philosophy__img-wrap::before {
  content: '';
  position: absolute; inset: -20px;
  background: radial-gradient(ellipse, rgba(201,150,122,0.18) 0%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}
.philosophy__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  position: relative;
}

/* ────────────────────────────────────────────────────────────────
   COMMUNITY
   ──────────────────────────────────────────────────────────────── */
.community {
  background: linear-gradient(158deg, var(--c-wine) 0%, var(--c-burgundy) 50%, #9a4864 100%);
  color: var(--c-text-inv);
}
.community__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-8);
}
.community__text h2 { color: #fff; margin-bottom: var(--sp-5); }
.community__text p {
  color: rgba(255,248,242,0.78);
  line-height: 1.80;
  font-size: 0.94rem;
  margin-bottom: var(--sp-5);
}
.community__values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-3);
  margin-bottom: var(--sp-6);
}
.cvalue {
  background: rgba(253,248,244,0.07);
  border: 1px solid rgba(237,217,184,0.14);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-3);
}
.cvalue__glyph { font-size: 1.2rem; margin-bottom: var(--sp-2); display: block; }
.cvalue__title {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(237,217,184,0.85);
  margin-bottom: var(--sp-2);
  display: block;
}
.cvalue__text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,248,242,0.60);
  line-height: 1.60;
}
.community__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.community__stats {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}
.cstat {
  background: rgba(253,248,244,0.07);
  border: 1px solid rgba(237,217,184,0.12);
  border-radius: var(--r-lg);
  padding: var(--sp-5) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.cstat__icon { font-size: 1.6rem; flex-shrink: 0; }
.cstat__num {
  font-family: var(--f-display);
  font-size: 2rem;
  font-weight: 300;
  color: rgba(237,217,184,0.90);
  display: block;
  line-height: 1;
}
.cstat__label {
  font-family: var(--f-body);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,248,242,0.55);
}

/* ────────────────────────────────────────────────────────────────
   MUSIC / HATHORA
   ──────────────────────────────────────────────────────────────── */
.hathora {
  background: linear-gradient(158deg, #3d0f1c 0%, var(--c-wine) 45%, var(--c-burgundy) 100%);
  color: var(--c-text-inv);
  position: relative;
  overflow: hidden;
}
.hathora::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(255,210,190,0.10) 0%, transparent 55%);
  pointer-events: none;
}
.hathora__inner { position: relative; z-index: 1; }
.hathora__header { text-align: center; margin-bottom: var(--sp-7); }
.hathora__name {
  font-family: var(--f-display);
  font-size: clamp(3rem, 12vw, 6rem);
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.14em;
  line-height: 0.95;
  margin-bottom: var(--sp-3);
  text-shadow: 0 4px 40px rgba(201,150,122,0.25);
}
.hathora__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(0.88rem, 2vw, 1rem);
  color: rgba(255,248,242,0.65);
  line-height: 1.72;
  max-width: 52ch;
  margin: 0 auto var(--sp-5);
}
.hathora__hathor {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  background: rgba(253,248,244,0.06);
  border: 1px solid rgba(237,217,184,0.14);
  border-radius: var(--r-md);
  padding: var(--sp-4) var(--sp-5);
  max-width: 560px;
  margin: 0 auto var(--sp-7);
}
.hathora__hathor-glyph { color: rgba(237,217,184,0.70); font-size: 0.9rem; flex-shrink: 0; margin-top: 3px; }
.hathora__hathor p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.86rem;
  color: rgba(255,248,242,0.65);
  line-height: 1.70;
  margin: 0;
}
.hathora__songs {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  max-width: 700px;
  margin: 0 auto;
}
.song {
  background: rgba(253,248,244,0.06);
  border: 1px solid rgba(237,217,184,0.12);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.song__art {
  height: 140px;
  background: linear-gradient(145deg, #1a0810, var(--c-wine) 60%, var(--c-burgundy));
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; opacity: 0.45;
}
.song__body { padding: var(--sp-4) var(--sp-5) var(--sp-5); }
.song__num {
  font-family: var(--f-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-rose-light);
  display: block;
  margin-bottom: var(--sp-2);
}
.song__title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: var(--sp-2);
}
.song__desc {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.82rem;
  color: rgba(255,248,242,0.55);
  line-height: 1.55;
  margin-bottom: var(--sp-4);
}
.song__embed { border-radius: var(--r-sm); overflow: hidden; }
.hathora__cta { text-align: center; margin-top: var(--sp-7); }

/* ────────────────────────────────────────────────────────────────
   BOOK
   ──────────────────────────────────────────────────────────────── */
.book { background: linear-gradient(158deg, #f5e8e0 0%, var(--c-champagne) 45%, var(--c-ivory) 100%); }
.book__grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-7);
  align-items: center;
}
.book__cover-wrap {
  width: min(240px, 70vw);
  flex-shrink: 0;
  position: relative;
}
.book__cover {
  width: 100%;
  aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--c-wine) 0%, var(--c-burgundy) 50%, #8a3050 100%);
  border-radius: var(--r-sm) var(--r-lg) var(--r-lg) var(--r-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--sp-6);
  text-align: center;
  gap: var(--sp-3);
  box-shadow:
    12px 16px 48px rgba(0,0,0,0.30),
    0 0 60px rgba(201,150,122,0.18),
    -3px -3px 16px rgba(255,210,185,0.10);
  position: relative;
  overflow: hidden;
}
.book__cover::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(237,217,184,0.18);
  border-radius: inherit;
  pointer-events: none;
}
.book__cover::after {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 12px;
  background: linear-gradient(90deg, rgba(0,0,0,0.30), transparent);
}
.book__cover-ornament { font-size: 1.8rem; color: rgba(237,217,184,0.75); }
.book__cover-title {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: #fff;
  line-height: 1.25;
}
.book__cover-author {
  font-family: var(--f-body);
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,217,184,0.60);
}
.book__text { max-width: 100%; }
.book__text h2 { color: var(--c-burgundy); margin-bottom: var(--sp-4); }
.book__coming-soon {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-burgundy);
  background: rgba(125,45,66,0.08);
  border: 1px solid rgba(125,45,66,0.18);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: var(--sp-4);
}
.book__subtitle {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 1rem;
  color: var(--c-text-mid);
  margin-bottom: var(--sp-4);
}
.book__text p {
  color: var(--c-text-mid);
  font-size: 0.92rem;
  line-height: 1.82;
  margin-bottom: var(--sp-4);
}
.book__price-strip {
  display: flex;
  align-items: baseline;
  gap: var(--sp-3);
  padding: var(--sp-4) 0;
  border-top: 1px solid rgba(201,150,122,0.20);
  border-bottom: 1px solid rgba(201,150,122,0.20);
  margin-bottom: var(--sp-5);
}
.book__price {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--c-burgundy);
  line-height: 1;
}
.book__price-label {
  font-family: var(--f-body);
  font-size: 0.60rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose-gold);
}
.book__btns {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

/* ────────────────────────────────────────────────────────────────
   FINAL MESSAGE
   ──────────────────────────────────────────────────────────────── */
.message {
  background: linear-gradient(158deg, var(--c-wine) 0%, var(--c-burgundy) 50%, #9a3d55 100%);
  color: var(--c-text-inv);
  text-align: center;
}
.message__inner { max-width: 640px; margin: 0 auto; }
.message__lines { margin-bottom: var(--sp-7); }
.mline {
  font-family: var(--f-display);
  font-size: clamp(1rem, 3.5vw, 1.3rem);
  line-height: 1.85;
  color: rgba(255,248,242,0.88);
  margin-bottom: var(--sp-4);
}
.mline strong { color: #fff; }
.message__finale {
  font-family: var(--f-display);
  font-size: clamp(1.3rem, 5vw, 1.8rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(237,217,184,0.85);
  margin-bottom: var(--sp-7);
}
.message__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
}

/* ────────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────────── */
footer {
  background: #2d1a16;
  color: rgba(255,248,242,0.65);
  padding: var(--sp-9) 0 var(--sp-6);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-7) var(--sp-5);
  margin-bottom: var(--sp-8);
}
.footer__brand-name {
  font-family: var(--f-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(237,217,184,0.75);
  display: block;
  margin-bottom: var(--sp-3);
}
.footer__brand-text {
  font-family: var(--f-display);
  font-style: italic;
  font-size: 0.82rem;
  line-height: 1.65;
  max-width: 28ch;
}
.footer__col-title {
  font-family: var(--f-body);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.20em;
  text-transform: uppercase;
  color: rgba(237,217,184,0.55);
  display: block;
  margin-bottom: var(--sp-4);
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a {
  font-family: var(--f-body);
  font-size: 0.78rem;
  color: rgba(255,248,242,0.55);
  transition: color 0.2s;
}
.footer__links a:hover { color: rgba(237,217,184,0.90); }
.footer__newsletter { grid-column: 1/-1; }
.footer__nl-form {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  max-width: 100%;
}
.footer__nl-input {
  height: 48px;
  padding: 0 var(--sp-4);
  font-family: var(--f-body);
  font-size: 0.82rem;
  background: rgba(255,248,242,0.06);
  border: 1px solid rgba(237,217,184,0.14);
  border-radius: var(--r-pill);
  color: rgba(255,248,242,0.80);
  outline: none;
}
.footer__nl-input::placeholder { color: rgba(255,248,242,0.30); }
.footer__nl-btn {
  height: 48px;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #2d1a16;
  background: rgba(237,217,184,0.80);
  border: none;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: background 0.22s;
}
.footer__nl-btn:hover { background: #edd9b8; }
.footer__bottom {
  border-top: 1px solid rgba(237,217,184,0.08);
  padding-top: var(--sp-5);
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  text-align: center;
  font-family: var(--f-body);
  font-size: 0.68rem;
  color: rgba(255,248,242,0.30);
}

/* ────────────────────────────────────────────────────────────────
   TABLET  ≥ 640px
   ──────────────────────────────────────────────────────────────── */
@media (min-width: 640px) {
  :root {
    --section-y: 80px;
    --container-x: 32px;
  }
  .hero__btns { flex-direction: row; flex-wrap: wrap; }
  .offerings__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .testimonials__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .book__btns { flex-direction: row; flex-wrap: wrap; }
  .message__btns { flex-direction: row; justify-content: center; }
  .footer__nl-form { flex-direction: row; }
  .hathora__songs { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .song { flex-direction: column; }
}

/* ────────────────────────────────────────────────────────────────
   DESKTOP  ≥ 960px
   ──────────────────────────────────────────────────────────────── */
@media (min-width: 960px) {
  :root {
    --section-y: 108px;
    --container-x: 48px;
  }

  /* Nav */
  .nav__links { display: flex; }
  .nav__hamburger { display: none; }

  /* Hero */
  .hero__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--sp-9);
    padding: var(--sp-10) var(--container-x);
  }
  .hero__text { order: 1; flex: 1; }
  .hero__image { order: 2; flex-shrink: 0; }
  .hero__img-frame { width: 420px; }
  .hero__btns { flex-direction: row; }

  /* Offerings — switch to elegant row list */
  .offerings__grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 800px;
    margin: 0 auto;
  }
  .ocard {
    flex-direction: row;
    align-items: center;
    gap: var(--sp-6);
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(201,150,122,0.16);
    border-radius: 0;
    padding: var(--sp-7) var(--sp-4);
  }
  .ocard:first-child { border-top: 1px solid rgba(201,150,122,0.16); }
  .ocard:hover {
    background: rgba(201,150,122,0.04);
    border-radius: var(--r-md);
    box-shadow: none;
  }
  .ocard__symbol { width: 56px; height: 56px; flex-shrink: 0; }
  .ocard__body { flex: 1; flex-direction: row; flex-wrap: wrap; align-items: center; column-gap: var(--sp-5); }
  .ocard__calling { width: 100%; font-size: 0.82rem; }
  .ocard__meta { order: 1; flex: 1; align-items: baseline; gap: var(--sp-3); }
  .ocard__title { font-size: clamp(1.6rem, 2.2vw, 2.1rem); }
  .ocard__desc { width: 100%; order: 2; font-size: 0.91rem; max-width: 50ch; margin-bottom: var(--sp-4); }
  .ocard__btn { order: 3; align-self: flex-start; width: auto; min-width: 180px; }

  /* Mission */
  .mission__grid { flex-direction: row; gap: var(--sp-9); align-items: center; }
  .mission__img-wrap { width: 240px; }

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

  /* About */
  .about__grid { flex-direction: row; gap: var(--sp-9); align-items: center; }
  .about__img-wrap { width: 380px; flex-shrink: 0; }

  /* Philosophy */
  .philosophy__grid { flex-direction: row; gap: var(--sp-9); align-items: center; }
  .philosophy__img-wrap { width: 360px; flex-shrink: 0; }

  /* Community */
  .community__grid { flex-direction: row; gap: var(--sp-9); align-items: center; }
  .community__text { flex: 1; }
  .community__stats { flex: 1; }
  .community__btns { flex-direction: row; }

  /* Book */
  .book__grid { flex-direction: row; gap: var(--sp-9); align-items: center; }
  .book__cover-wrap { width: 280px; }
  .book__btns { flex-direction: row; }

  /* Message */
  .message__btns { flex-direction: row; }

  /* Footer */
  .footer__grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: var(--sp-6) var(--sp-7);
  }
  .footer__newsletter { grid-column: 4; }
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}

/* ── Utility ─────────────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-sm { margin-top: var(--sp-4); }
.mt-md { margin-top: var(--sp-6); }
