@font-face {
  font-family: "TAN Pearl";
  src: url("assets/fonts/TAN-PEARL.woff2") format("woff2"),
       url("assets/fonts/TAN-PEARL.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

/* ============================================================
   Maura Grace Wisdom — design system rebuilt from the
   Esclatech Revision 6 mockup (crimson damask, petals, mandalas)
   Display font: Fraunces (stand-in for brand font "TAN")
   ============================================================ */

:root {
  /* Palette taken from the mockup */
  --red-950: #3f0a10;
  --red-900: #5c1119;
  --red-800: #7a1a26;
  --red-700: #8e2130;   /* primary crimson (courses bg, footer) */
  --red-600: #a02737;   /* buttons, rings */
  --red-500: #b03040;   /* eyebrows, accents */
  --rose-300: #e8a396;  /* petal mid tone */
  --blush-100: #fbe3dc; /* petal section base */
  --blush-50: #fdf0ea;
  --cream: #faf3ec;     /* soft section bg */
  --ivory: #fffdfa;
  --ink: #1c1a1a;
  --ink-soft: #4a4442;
  --white: #ffffff;
  --black: #0e0c0c;

  --font-display: "TAN Pearl", "Yeseva One", "Cormorant Garamond", serif;
  --font-body: "PT Serif", Georgia, serif;

  --wrap: 1180px;
  --wrap-narrow: 780px;
  --radius-card: 30px;
  --radius-pill: 999px;

  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.75rem;
  --space-4: 3rem;
  --space-5: 5rem;

  --shadow-card: 0 10px 34px rgba(92, 17, 25, .12);
}

/* ---------- Reset-ish ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: var(--red-600); text-decoration: none; }
ul { list-style: none; }

.skip-link {
  position: absolute; left: -9999px; top: auto;
  background: var(--red-800); color: #fff; padding: .5rem 1rem; z-index: 100;
}
.skip-link:focus { left: 1rem; top: 1rem; }

/* ---------- Type ---------- */
h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.24;
  letter-spacing: .012em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 6vw, 4.3rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); line-height: 1.25; }
h4 { font-family: var(--font-body); font-size: 1.05rem; }
p { margin: 0; }
.lede { font-size: 1.06rem; color: var(--ink-soft); }
.small { font-size: .85rem; }
.center { text-align: center; }
.accent { color: var(--red-600); font-style: normal; }

.mt-2 { margin-top: var(--space-2); }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }

/* Eyebrow: bold red label, as in mockup ("About Me", "Services Offered") */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .92rem;
  color: var(--red-500);
  margin-bottom: .9rem;
  letter-spacing: .01em;
}

hr.flourish {
  border: none; width: 64px; height: 2px;
  background: var(--red-500); margin: 1.1rem auto;
}

/* ---------- Layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.4rem; }
.wrap-narrow { max-width: var(--wrap-narrow); margin: 0 auto; padding: 0 1.4rem; }
section { padding: var(--space-5) 0; position: relative; }

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 3.5rem; align-items: center; }
.split-media-right .split-media { order: 2; }
.split-media-right .split-body { order: 1; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.8rem; margin-top: var(--space-4); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.6rem; margin-top: var(--space-4); }
.section-head { max-width: 850px; margin: 0 auto; }

/* ---------- Section backgrounds ---------- */
.bg-ivory { background: var(--ivory); }
.bg-cream { background: var(--cream); }
.bg-sand  { background: var(--cream); }
.bg-rose  { background: var(--blush-50); }

/* Deep burgundy CTA band (subpage closers) */
.bg-burgundy {
  background-color: var(--red-800);
  background-image: linear-gradient(rgba(104,22,34,.76), rgba(104,22,34,.76)), url("assets/img/damask.jpg");
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #fff;
}
.bg-burgundy h2, .bg-burgundy h3 { color: #fff; }
.bg-burgundy .eyebrow { color: #f4d9d3; }
.bg-burgundy .lede, .bg-burgundy p { color: #f7e9e5; }

/* Blush petal field (About section of mockup) */
.bg-petals {
  background-color: var(--blush-100);
  background-image:
    radial-gradient(ellipse 90px 55px at 12% 20%, rgba(224,122,105,.35), transparent 60%),
    radial-gradient(ellipse 70px 42px at 85% 12%, rgba(224,122,105,.3), transparent 60%),
    radial-gradient(ellipse 110px 60px at 70% 78%, rgba(224,122,105,.28), transparent 60%),
    radial-gradient(ellipse 60px 38px at 30% 88%, rgba(224,122,105,.32), transparent 60%),
    radial-gradient(ellipse 50px 30px at 55% 35%, rgba(232,163,150,.4), transparent 60%),
    radial-gradient(ellipse 80px 46px at 5% 65%, rgba(232,163,150,.35), transparent 60%),
    linear-gradient(160deg, #fdece5 0%, #fbdfd6 55%, #f8d4c9 100%);
}

/* Cream with petal-confetti dots (Couples Immersion section) */
.bg-confetti {
  background-color: var(--cream);
  background-image:
    radial-gradient(circle 4px at 15% 25%, rgba(176,48,64,.25) 45%, transparent 50%),
    radial-gradient(circle 3px at 40% 60%, rgba(176,48,64,.18) 45%, transparent 50%),
    radial-gradient(circle 5px at 70% 30%, rgba(232,163,150,.5) 45%, transparent 50%),
    radial-gradient(circle 3px at 85% 70%, rgba(176,48,64,.2) 45%, transparent 50%),
    radial-gradient(circle 4px at 55% 85%, rgba(232,163,150,.45) 45%, transparent 50%),
    radial-gradient(circle 3px at 28% 78%, rgba(232,163,150,.4) 45%, transparent 50%);
}

/* Deep crimson damask (courses band, footer) */
.bg-damask {
  background-color: var(--red-700);
  background-image: linear-gradient(rgba(120,26,40,.72), rgba(120,26,40,.72)), url("assets/img/damask.jpg");
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #fff;
}
.bg-damask h2, .bg-damask h3, .bg-damask .display { color: #fff; }
.bg-damask .eyebrow { color: #f4d9d3; }
.bg-damask .lede, .bg-damask p { color: #f7e9e5; }

/* Black band (newsletter strip, hero base) */
.bg-black { background: var(--black); color: #fff; }
.bg-black h2, .bg-black h3 { color: #fff; }

/* Mandala corner ornament */
.has-mandala::before {
  content: "";
  position: absolute; top: -52px; left: -52px;
  width: 170px; height: 170px; pointer-events: none;
  background-image: url("assets/img/mandala.png");
  background-size: contain; background-repeat: no-repeat;
  transform: rotate(-14deg);
}
.has-mandala--right::before { left: auto; right: -46px; transform: scaleX(-1); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(14,12,12,.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: .8rem 1.4rem; max-width: var(--wrap); margin: 0 auto; }
.logo {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.12;
  color: #fff;
  letter-spacing: .01em;
}
.logo span { display: block; font-size: 1.45rem; }
.site-footer .logo { color: #fff; }

.site-nav ul { display: flex; gap: 1.5rem; align-items: center; }
.site-nav a {
  color: #f2e8e6; font-size: .95rem; font-weight: 400;
  padding-bottom: 2px; border-bottom: 1px solid transparent;
}
.site-nav a:hover { color: #fff; border-bottom-color: var(--red-500); }
.site-nav a[aria-current="page"] { color: #fff; border-bottom-color: #fff; font-weight: 700; }

.header-phone {
  display: flex; align-items: center; gap: .5rem;
  color: #fff; font-size: .8rem; line-height: 1.2;
}
.header-phone .phone-ic {
  width: 34px; height: 34px; border-radius: 50%;
  background: #fff; color: var(--red-800);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.header-phone b { display: block; font-size: .85rem; }

.header-book { padding: .55rem 1.3rem; font-size: .82rem; }

.nav-toggle {
  display: none; background: none; border: 0; cursor: pointer; padding: .4rem;
}
.nav-toggle .bar { display: block; width: 24px; height: 2px; background: #fff; margin: 5px 0; transition: .2s; }

/* ---------- Buttons (pills, as in mockup) ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--font-body); font-weight: 700; font-size: .9rem;
  background: var(--red-600); color: #fff;
  padding: .78rem 1.7rem; border: 1px solid var(--red-600);
  border-radius: var(--radius-pill);
  cursor: pointer; transition: transform .15s ease, background .2s, box-shadow .2s;
  box-shadow: 0 6px 18px rgba(122,26,38,.28);
}
.btn:hover { background: var(--red-700); transform: translateY(-1px); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 1px solid rgba(28,26,26,.55); box-shadow: none;
}
.btn-outline:hover { background: rgba(28,26,26,.05); color: var(--ink); }
.btn-light {
  background: transparent; color: #fff; border: 1px solid rgba(255,255,255,.8); box-shadow: none;
}
.btn-light:hover { background: rgba(255,255,255,.12); }
.btn-black { background: var(--black); border-color: var(--black); box-shadow: 0 6px 18px rgba(0,0,0,.25); }
.btn-black:hover { background: #241f1f; }
.btn-row { display: flex; gap: .9rem; margin-top: var(--space-3); flex-wrap: wrap; }

/* ---------- Hero (dark crimson → black, mandala halo) ---------- */
.hero {
  padding: 0;
  background:
    linear-gradient(180deg, rgba(20,4,8,.16) 0%, rgba(18,4,7,.50) 40%, rgba(12,3,5,.93) 70%, var(--black) 100%),
    url("assets/img/damask.jpg") center center / cover no-repeat;
  background-color: var(--red-900);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.hero::after {
  /* depth wash so type stays readable over the painting */
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 95% 65% at 50% -10%, rgba(255,214,170,.10), transparent 62%),
    linear-gradient(180deg, rgba(63,10,16,.30) 0%, rgba(26,5,8,.55) 58%, rgba(14,12,12,.92) 100%);
}
.hero-inner { position: relative; padding: 1.5rem 1.4rem 4.5rem; max-width: 980px; margin: 0 auto; }
.hero-watermark {
  position: absolute; top: 40px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(5rem, 16vw, 11rem); line-height: .9;
  color: rgba(255,255,255,.07); white-space: nowrap; pointer-events: none;
  user-select: none;
}
.hero-portrait {
  position: relative; width: min(440px, 74vw); margin: .5rem auto 0; z-index: 1;
}
.hero-portrait .hero-me {
  width: 100%;
  position: relative;
  z-index: 2;
  border-radius: 0;
  -webkit-mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 86%, transparent 100%);
  filter: drop-shadow(0 18px 40px rgba(0,0,0,.5));
}
/* The real Esclatech mandala, rebuilt from their artwork - turns slowly behind her */
.hero-portrait .hero-mandala {
  position: absolute;
  left: 50%; top: 36%;
  width: 158%;
  max-width: none;
  transform: translate(-50%, -50%);
  transform-origin: 50% 50%;
  z-index: 0;
  pointer-events: none;
  opacity: .86;
  animation: mandala-turn 150s linear infinite;
}
@keyframes mandala-turn {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-portrait .hero-mandala { animation: none; }
}
/* The commissioned couple emblem — presented whole, as a crest */
.panel-crest {
  height: 130px;
  width: auto;
  margin: 0 auto 1.2rem;
  display: block;
  filter: drop-shadow(0 6px 22px rgba(0, 0, 0, .45));
}
.hero .eyebrow { color: #fff; font-size: 1rem; margin-top: -1.2rem; position: relative; z-index: 2; }
.hero h1 { color: #fff; position: relative; z-index: 2; margin-top: .4rem; }
.hero .lede { color: #efdcd7; position: relative; z-index: 2; margin: 1.1rem auto 0; max-width: 620px; }
.hero .btn-row { justify-content: center; position: relative; z-index: 2; }

/* ---------- Photo shapes ---------- */
.photo-circle {
  border-radius: 50%; overflow: hidden; aspect-ratio: 1;
  border: 4px solid var(--red-700);
  box-shadow: 0 18px 44px rgba(92,17,25,.25);
}
.photo-circle img, .photo-arch img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; }
.photo-arch {
  border-radius: 999px 999px 18px 18px; overflow: hidden; aspect-ratio: 3/4;
  border: 4px solid var(--red-700);
  box-shadow: 0 18px 44px rgba(92,17,25,.25);
}
.photo-plain { border-radius: var(--radius-card); overflow: hidden; }
.photo-plain img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 12%; }

/* Elegant placeholder blocks (until a photo is chosen) */
.img-ph {
  border-radius: var(--radius-card);
  aspect-ratio: 4/5;
  background: linear-gradient(150deg, var(--blush-50), var(--blush-100) 55%, var(--rose-300));
  display: flex; align-items: flex-end; justify-content: flex-start;
  position: relative; overflow: hidden;
}
.img-ph .caption {
  font-size: .78rem; color: var(--red-800); padding: .8rem 1rem; font-style: italic;
}
.ph-burgundy { background: linear-gradient(150deg, #8e2130, #5c1119); }
.ph-burgundy .caption { color: #f4d9d3; }
.ph-rose { background: linear-gradient(150deg, #fdece5, #e8a396); }

/* ---------- Cards ---------- */
.card {
  background: #fff; border-radius: var(--radius-card);
  padding: 1.9rem 1.7rem; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: .75rem; align-items: flex-start;
}
.card .kicker { font-weight: 700; font-size: .88rem; color: var(--red-500); }
.card p { font-size: .95rem; color: var(--ink-soft); }
.card-link { font-weight: 700; font-size: .9rem; border-bottom: 1px solid var(--red-500); padding-bottom: 2px; }
.card-link:hover { color: var(--red-800); }

/* Featured (center) card in crimson damask, as in mockup */
.card-featured {
  background-color: var(--red-700);
  background-image: linear-gradient(rgba(120,26,40,.80), rgba(120,26,40,.80)), url("assets/img/damask.jpg");
  background-size: auto, cover;
  transform: scale(1.03);
}
.card-featured .kicker { color: #f4d9d3; }
.card-featured h3 { color: #fff; }
.card-featured p { color: #f7e9e5; }
.card-featured .card-link { color: #fff; border-bottom-color: #fff; }

/* Offerings rows */
.offering {
  display: grid; grid-template-columns: 280px 1fr; gap: 2rem;
  padding: 1.6rem 0; border-bottom: 1px solid rgba(142,33,48,.15);
  align-items: start;
}
.offering:last-of-type { border-bottom: none; }
.offering .kicker { font-weight: 700; font-size: .85rem; color: var(--red-500); }
.offering p { color: var(--ink-soft); font-size: .97rem; }

/* Red-dot bulleted list (mockup "Key Benefits") */
ul.styled { margin-top: var(--space-2); }
ul.styled li {
  position: relative; padding-left: 1.4rem; margin-bottom: .65rem;
  color: var(--ink-soft); font-size: .97rem;
}
ul.styled li::before {
  content: ""; position: absolute; left: 0; top: .52em;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--red-600);
}
ul.styled strong { color: var(--ink); }
.key-benefits {
  font-family: var(--font-display); font-weight: 560;
  font-size: 1.35rem; margin-top: var(--space-3);
}

/* ---------- Testimonials (white cards, red bar, over damask) ---------- */
.testimonial-band { position: relative; }
.testimonial-band::before {
  content: ""; position: absolute; left: 50%; top: 0; bottom: 0;
  transform: translateX(-50%);
  width: min(340px, 30vw);
  background-color: var(--red-700);
  background-image:
    radial-gradient(ellipse 95% 65% at 50% -15%, rgba(255,255,255,.045), transparent 65%),
    radial-gradient(ellipse 85% 60% at 50% 115%, rgba(63,10,16,.45), transparent 72%);
  border-radius: 8px;
}
.testimonial {
  position: relative;
  background: #fff; border-radius: 28px; padding: 1.8rem 1.9rem;
  box-shadow: var(--shadow-card);
}
.testimonial .kicker { font-weight: 700; margin-bottom: .6rem; }
.testimonial blockquote {
  font-style: italic; color: var(--ink-soft); font-size: .95rem;
  border-left: 3px solid var(--red-600); padding-left: 1rem;
}
.testimonial cite {
  display: block; margin-top: 1rem; font-style: normal; font-weight: 700;
}

/* ---------- Petal CTA banner (Connect with Maura) ---------- */
.petal-banner {
  background: url("assets/img/petal-rain.jpg") center center / cover no-repeat;
}
.petal-panel {
  background-color: var(--red-800);
  background-image:
    radial-gradient(ellipse 95% 65% at 50% -15%, rgba(255,255,255,.045), transparent 65%),
    radial-gradient(ellipse 85% 60% at 50% 115%, rgba(63,10,16,.45), transparent 72%);
  border-radius: 26px;
  color: #fff;
  padding: 3rem 2.5rem;
  max-width: 820px; margin: 0 auto; text-align: center;
  box-shadow: 0 24px 60px rgba(92,17,25,.35);
}
.petal-panel h2, .petal-panel h3 { color: #fff; }
.petal-panel .eyebrow { color: #f4d9d3; }
.petal-panel p { color: #f7e9e5; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; margin-top: var(--space-3); }
.form-grid .full { grid-column: 1 / -1; }
.field label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .35rem; }
.field input, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: .95rem;
  padding: .85rem 1.2rem; border: 1px solid rgba(28,26,26,.2);
  border-radius: 999px; background: #fff; color: var(--ink);
}
.field textarea { border-radius: 20px; resize: vertical; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--red-500); border-color: transparent; }
.form-note { font-size: .8rem; color: var(--ink-soft); }

/* Newsletter black band */
.newsletter-band { padding: 2.2rem 0; }
.newsletter-band .wrap { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.newsletter-band h3 { font-size: clamp(1.3rem, 2.6vw, 1.8rem); max-width: 30ch; }
.newsletter-form { display: flex; gap: 0; }
.newsletter-form input {
  font-family: var(--font-body); font-size: .9rem;
  padding: .8rem 1.2rem; border: none; min-width: min(300px, 60vw);
  border-radius: 999px 0 0 999px;
}
.newsletter-form .btn { border-radius: 0 999px 999px 0; box-shadow: none; padding: .8rem 1.4rem; }

/* ---------- Photo strip ---------- */
.photo-strip { display: grid; grid-template-columns: repeat(6, 1fr); gap: .6rem; padding: .6rem; }
.photo-strip .shot { aspect-ratio: 1; overflow: hidden; border-radius: 999px 999px 26px 26px; }
.photo-strip img { width: 100%; height: 100%; object-fit: cover; }
.photo-strip .ph {
  width: 100%; height: 100%;
  background: linear-gradient(150deg, var(--blush-100), var(--rose-300));
}

/* ---------- Footer (crimson damask) ---------- */
.site-footer {
  background-color: var(--red-800);
  background-image: linear-gradient(rgba(104,22,34,.76), rgba(104,22,34,.76)), url("assets/img/damask.jpg");
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  color: #f7e9e5; padding: var(--space-5) 0 var(--space-2);
}
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2.5rem; }
.footer-tagline {
  font-family: var(--font-display); font-weight: 560;
  font-size: 1.35rem; line-height: 1.25; color: #fff; margin-top: 1.2rem;
}
.site-footer h4 {
  font-family: var(--font-display); font-size: 1.2rem; color: #fff; margin-bottom: 1rem;
}
.footer-links ul li { margin-bottom: .5rem; }
.site-footer a { color: #f0d9d4; font-size: .92rem; }
.site-footer a:hover { color: #fff; }
.footer-contact p { font-size: .9rem; margin-bottom: .5rem; }
.footer-contact b { color: #fff; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--black); color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.18);
  margin-top: var(--space-4); padding-top: var(--space-2);
  display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap;
  font-size: .82rem; color: #ecd3cd;
}

/* ---------- Page intro (subpages): crimson header band ---------- */
.page-intro {
  background:
    radial-gradient(ellipse 700px 300px at 50% -80px, rgba(176,48,64,.5), transparent 70%),
    linear-gradient(180deg, #6e1220 0%, #4a0d17 55%, #2a070c 100%);
  color: #fff;
  padding: var(--space-4) 0 var(--space-5);
}
.page-intro h1, .page-intro h2 { color: #fff; }
.page-intro .eyebrow { color: #f4d9d3; }
.page-intro .lede { color: #efdcd7; }
.page-intro .btn-outline { color: #fff; border-color: rgba(255,255,255,.8); }
.page-intro .btn-outline:hover { background: rgba(255,255,255,.12); }

/* Quote band */
.quote-band { background: var(--cream); text-align: center; }
.quote-band blockquote {
  font-family: var(--font-display); font-weight: 560;
  font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.3;
  max-width: 850px; margin: 0 auto; color: var(--red-800);
}
.quote-band cite { display: block; margin-top: 1.2rem; font-style: normal; font-weight: 700; color: var(--ink-soft); }

/* ---------- Scroll reveal (subtle, JS-optional) ----------
   Content is visible by default; the .js class (set inline in <head>)
   opts in to the animation, so no-script visitors never see blank pages. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s ease, transform .7s ease;
}
html.js .reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .split, .hero-grid, .footer-grid { grid-template-columns: 1fr; }
  .split-media-right .split-media { order: 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .offering { grid-template-columns: 1fr; gap: .6rem; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }
  .testimonial-band::before { display: none; }
  .card-featured { transform: none; }

  .header-book { padding: .55rem 1.3rem; font-size: .82rem; }

.nav-toggle { display: block; }
  .header-phone { display: none; }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(14,12,12,.98);
    display: none; padding: 1rem 1.4rem 1.4rem;
  }
  .site-nav.open { display: block; }
  .site-nav ul { flex-direction: column; gap: .9rem; align-items: flex-start; }
}
@media (max-width: 560px) {
  section { padding: var(--space-4) 0; }
  .form-grid { grid-template-columns: 1fr; }
  .photo-strip { grid-template-columns: repeat(2, 1fr); }
  .newsletter-band .wrap { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   Launch layer — hero questions, drifting rose petals,
   radial mandala watermarks, doors, placeholders, policy notes
   ============================================================ */

/* Hero: two big stacked questions */
.hero h1 { font-size: clamp(2rem, 4.6vw, 3.4rem); }
.hero-q { display: block; }
.hero-q + .hero-q {
  margin-top: .34em;
  font-size: .82em;
  color: #f4d9d3;
}

/* True rose petals drifting across the full hero — falling, swaying, tumbling */
.petal-drift {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.petal-drift .petal {
  position: absolute;
  top: -8%;
  width: 30px; height: 26px;
  background-image: url("assets/img/petal1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.28));
  opacity: 0;
  animation: petal-fall 16s linear infinite, petal-sway 5.5s ease-in-out infinite alternate, petal-tumble 7s linear infinite;
}
/* three real petals from her own design, cycled for variety */
.petal-drift .petal:nth-child(3n+2) { background-image: url("assets/img/petal2.png"); }
.petal-drift .petal:nth-child(3n+3) { background-image: url("assets/img/petal3.png"); }
/* Negative delays: petals are already mid-air the moment the page opens */
.petal-drift .petal:nth-child(1)  { left: 4%;  animation-delay: -2s, -1s, -.5s;     width: 24px; height: 20px; }
.petal-drift .petal:nth-child(2)  { left: 12%; animation-delay: -5s, -.8s, -1.2s;   width: 18px; height: 15px; animation-duration: 21s, 4.8s, 8s; }
.petal-drift .petal:nth-child(3)  { left: 20%; animation-delay: -9s, -1.6s, -.4s;   width: 28px; height: 23px; animation-duration: 18s, 6.2s, 9s; }
.petal-drift .petal:nth-child(4)  { left: 30%; animation-delay: -13s, -.4s, -2s;    width: 16px; height: 13px; animation-duration: 23s, 5s, 6.5s; }
.petal-drift .petal:nth-child(5)  { left: 38%; animation-delay: -3.5s, -2.2s, -1s;  width: 22px; height: 18px; animation-duration: 19s, 5.8s, 7.5s; }
.petal-drift .petal:nth-child(6)  { left: 47%; animation-delay: -7s, -1.1s, -.7s;   width: 26px; height: 22px; animation-duration: 17s, 5.2s, 8.5s; }
.petal-drift .petal:nth-child(7)  { left: 55%; animation-delay: -11s, -.6s, -1.8s;  width: 15px; height: 12px; animation-duration: 22s, 4.6s, 7s; }
.petal-drift .petal:nth-child(8)  { left: 63%; animation-delay: -15s, -1.4s, -.2s;  width: 21px; height: 17px; animation-duration: 20s, 6s, 9.5s; }
.petal-drift .petal:nth-child(9)  { left: 72%; animation-delay: -6s, -2.6s, -1.4s;  width: 24px; height: 20px; animation-duration: 16s, 5.4s, 6.8s; }
.petal-drift .petal:nth-child(10) { left: 80%; animation-delay: -10s, -.2s, -2.4s;  width: 17px; height: 14px; animation-duration: 24s, 5.6s, 8.2s; }
.petal-drift .petal:nth-child(11) { left: 88%; animation-delay: -14s, -1.9s, -.9s;  width: 25px; height: 21px; animation-duration: 18.5s, 4.9s, 7.8s; }
.petal-drift .petal:nth-child(12) { left: 95%; animation-delay: -1.5s, -1.2s, -1.6s; width: 19px; height: 16px; animation-duration: 21.5s, 5.1s, 8.8s; }
.petal-drift .petal:nth-child(13) { left: 8%;  animation-delay: -4.2s, -1.3s, -.8s;  width: 20px; height: 17px; animation-duration: 19.5s, 5.3s, 7.2s; }
.petal-drift .petal:nth-child(14) { left: 16%; animation-delay: -8.4s, -2s, -1.5s;   width: 27px; height: 22px; animation-duration: 17.5s, 6.1s, 8.4s; }
.petal-drift .petal:nth-child(15) { left: 25%; animation-delay: -12.6s, -.9s, -2.1s; width: 16px; height: 13px; animation-duration: 22.5s, 4.7s, 6.9s; }
.petal-drift .petal:nth-child(16) { left: 43%; animation-delay: -2.8s, -1.7s, -.3s;  width: 23px; height: 19px; animation-duration: 20.5s, 5.9s, 9.1s; }
.petal-drift .petal:nth-child(17) { left: 51%; animation-delay: -6.8s, -.5s, -1.9s;  width: 18px; height: 15px; animation-duration: 16.5s, 5s, 7.4s; }
.petal-drift .petal:nth-child(18) { left: 68%; animation-delay: -10.9s, -2.4s, -1.1s; width: 25px; height: 21px; animation-duration: 23.5s, 5.5s, 8.6s; }
.petal-drift .petal:nth-child(19) { left: 77%; animation-delay: -14.7s, -1s, -.6s;   width: 19px; height: 16px; animation-duration: 18s, 4.5s, 6.6s; }
.petal-drift .petal:nth-child(20) { left: 92%; animation-delay: -5.5s, -1.8s, -2.3s; width: 22px; height: 18px; animation-duration: 21s, 6.3s, 9.3s; }

@keyframes petal-fall {
  0%   { top: -8%; opacity: 0; }
  6%   { opacity: .9; }
  85%  { opacity: .75; }
  100% { top: 104%; opacity: 0; }
}
@keyframes petal-sway {
  from { margin-left: -2.6rem; }
  to   { margin-left: 2.6rem; }
}
@keyframes petal-tumble {
  0%   { transform: rotate(0deg)   rotate3d(1, .6, .2, 0deg); }
  50%  { transform: rotate(180deg) rotate3d(1, .6, .2, 200deg); }
  100% { transform: rotate(360deg) rotate3d(1, .6, .2, 360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .petal-drift { display: none; }
}

/* Faint radial mandala watermark (hero + About portrait) */
.mandala-wm {
  position: absolute;
  width: min(54rem, 130vw);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  background:
    repeating-conic-gradient(from 0deg, currentColor 0deg 1deg, transparent 1deg 12deg),
    repeating-radial-gradient(circle at center, currentColor 0 1px, transparent 1px 46px);
  opacity: .05;
  -webkit-mask-image: radial-gradient(circle, #000 0% 52%, transparent 70%);
          mask-image: radial-gradient(circle, #000 0% 52%, transparent 70%);
}
.hero .mandala-wm {
  color: #ffffff;
  left: 50%; top: 44%;
  transform: translate(-50%, -50%);
}
.portrait-wrap { position: relative; }
.portrait-wrap .mandala-wm {
  color: var(--red-700);
  width: 135%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  opacity: .07;
}
.portrait-wrap > .photo-plain,
.portrait-wrap > .photo-arch,
.portrait-wrap > .photo-circle,
.portrait-wrap > .img-ph { position: relative; z-index: 1; }

/* Animated mandala — Maura's decree: motion, dimension, energy */
@keyframes mandala-spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}
.hero .mandala-wm { animation: mandala-spin 140s linear infinite; }
.portrait-wrap .mandala-wm { animation: mandala-spin 180s linear infinite; }
@keyframes halo-spin {
  from { rotate: 0deg; }
  to   { rotate: 360deg; }
}
@media (prefers-reduced-motion: reduce) {
  .mandala-wm { animation: none; }
}

/* Door cards — "Is THIS your struggle?" entrances */
.card.door { border-top: 4px solid var(--red-600); }
.card.door .door-q {
  font-family: var(--font-display);
  font-weight: 560;
  font-size: clamp(1.25rem, 2.2vw, 1.55rem);
  line-height: 1.3;
  color: var(--ink);
}
.card-featured.door { border-top-color: #f3e2c9; }
.card-featured.door .door-q { color: #fff; }

/* Photo placeholders until real photos are dropped in */
.ph {
  width: 100%; height: 100%;
  min-height: 100%;
  background: linear-gradient(150deg, var(--blush-50), var(--blush-100) 55%, var(--rose-300));
  display: flex; align-items: flex-end;
}
.photo-circle .ph, .photo-arch .ph, .photo-plain .ph { aspect-ratio: auto; }
.photo-plain .ph { aspect-ratio: 4 / 5; }
.ph .caption { font-size: .78rem; color: var(--red-800); padding: .8rem 1rem; font-style: italic; width: 100%; text-align: center; }
.hero-portrait .ph {
  aspect-ratio: 3 / 4;
  background: linear-gradient(165deg, #8e2130 0%, #4a0d17 70%, transparent 100%);
  border-radius: 999px 999px 0 0;
  -webkit-mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 72%, transparent 100%);
}
.hero-portrait .ph .caption { color: #e8a396; text-align: center; width: 100%; padding-bottom: 2.2rem; }

.img-ph.wide { aspect-ratio: 16 / 9; }

/* Sales-policy note */
.policy-note {
  border-left: 3px solid var(--red-600);
  background: var(--blush-50);
  border-radius: 0 12px 12px 0;
  padding: 1.1rem 1.4rem;
  font-size: .93rem;
  color: var(--ink-soft);
  max-width: 62ch;
}
.bg-damask .policy-note, .petal-panel .policy-note {
  background: rgba(0, 0, 0, .18);
  border-left-color: #f3e2c9;
  color: #f7e9e5;
  margin-inline: auto;
}

/* The true mandala — fine lotus linework, turning like a prayer wheel */
.mandala-true {
  position: absolute;
  left: 50%; top: 46%;
  width: 150%;
  aspect-ratio: 1 / 1;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 400 400'%3E%3Cdefs%3E%3Cpath id='p1' d='M200 85 C214 105 214 140 200 152 C186 140 186 105 200 85 Z'/%3E%3Cpath id='p2' d='M200 32 C209 50 209 76 200 84 C191 76 191 50 200 32 Z'/%3E%3Cpath id='p3' d='M200 158 C206 166 206 178 200 184 C194 178 194 166 200 158 Z'/%3E%3C/defs%3E%3Cg fill='none' stroke='%23f3e2c9' stroke-width='1.6'%3E%3Ccircle cx='200' cy='200' r='14'/%3E%3Ccircle cx='200' cy='200' r='22'/%3E%3Ccircle cx='200' cy='200' r='46'/%3E%3Ccircle cx='200' cy='200' r='118'/%3E%3Ccircle cx='200' cy='200' r='156'/%3E%3Ccircle cx='200' cy='200' r='172' stroke-dasharray='2 9'/%3E%3Ccircle cx='200' cy='200' r='186' stroke-width='.8'/%3E%3C/g%3E%3Cg fill='none' stroke='%23f3e2c9' stroke-width='1.4'%3E%3Cuse href='%23p1'/%3E%3Cuse href='%23p1' transform='rotate(30 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(60 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(90 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(120 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(150 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(180 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(210 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(240 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(270 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(300 200 200)'/%3E%3Cuse href='%23p1' transform='rotate(330 200 200)'/%3E%3C/g%3E%3Cg fill='none' stroke='%23f3e2c9' stroke-width='1.1'%3E%3Cuse href='%23p2'/%3E%3Cuse href='%23p2' transform='rotate(15 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(30 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(45 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(60 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(75 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(90 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(105 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(120 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(135 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(150 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(165 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(180 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(195 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(210 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(225 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(240 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(255 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(270 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(285 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(300 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(315 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(330 200 200)'/%3E%3Cuse href='%23p2' transform='rotate(345 200 200)'/%3E%3C/g%3E%3Cg fill='%23f3e2c9' opacity='.7'%3E%3Cuse href='%23p3'/%3E%3Cuse href='%23p3' transform='rotate(45 200 200)'/%3E%3Cuse href='%23p3' transform='rotate(90 200 200)'/%3E%3Cuse href='%23p3' transform='rotate(135 200 200)'/%3E%3Cuse href='%23p3' transform='rotate(180 200 200)'/%3E%3Cuse href='%23p3' transform='rotate(225 200 200)'/%3E%3Cuse href='%23p3' transform='rotate(270 200 200)'/%3E%3Cuse href='%23p3' transform='rotate(315 200 200)'/%3E%3C/g%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: .3;
  z-index: 0;
  pointer-events: none;
  animation: mandala-spin 120s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .mandala-true { animation: none; } }


/* ---------- Mockup-scale imagery ---------- */
.split-media .photo-circle,
.split-media .photo-arch {
  width: 118%;
  max-width: none;
  margin-inline: -9%;
}
.split-media-right .split-media .photo-circle,
.split-media-right .split-media .photo-arch { margin-inline: -9% -9%; }
.split-media .photo-plain { width: 112%; margin-inline: -6%; }
@media (max-width: 960px) {
  .split-media .photo-circle,
  .split-media .photo-arch,
  .split-media .photo-plain { width: 100%; margin-inline: 0; }
}
/* petal banner panel sits on their real petal photograph */
.petal-banner { padding: var(--space-5) 0; }
.petal-panel { box-shadow: 0 28px 70px rgba(60,8,16,.42); }


/* ---------- Petals fall over the lower page, never across the mandala ---------- */
.petal-field {
  position: absolute; inset: 0;
  overflow: hidden; pointer-events: none; z-index: 1;
}
.petal-field .petal {
  position: absolute; top: -10%;
  width: 30px; height: 26px;
  background-image: url("assets/img/petal1.png");
  background-size: contain; background-repeat: no-repeat; background-position: center;
  filter: drop-shadow(0 4px 6px rgba(0,0,0,.22));
  opacity: 0;
  animation: petal-fall 17s linear infinite, petal-sway 5.6s ease-in-out infinite alternate, petal-tumble 7.4s linear infinite;
}
.petal-field .petal:nth-child(3n+2) { background-image: url("assets/img/petal2.png"); }
.petal-field .petal:nth-child(3n+3) { background-image: url("assets/img/petal3.png"); }
.petal-field .petal:nth-child(1) { left: 6%;  animation-delay: -2s,  -1s,   -.5s;  width: 26px; height: 22px; }
.petal-field .petal:nth-child(2) { left: 19%; animation-delay: -7s,  -.8s,  -1.2s; width: 19px; height: 16px; animation-duration: 21s, 4.8s, 8s; }
.petal-field .petal:nth-child(3) { left: 33%; animation-delay: -12s, -1.6s, -.4s;  width: 31px; height: 26px; animation-duration: 18s, 6.2s, 9s; }
.petal-field .petal:nth-child(4) { left: 47%; animation-delay: -4s,  -.4s,  -2s;   width: 17px; height: 14px; animation-duration: 23s, 5s, 6.5s; }
.petal-field .petal:nth-child(5) { left: 61%; animation-delay: -9s,  -2.2s, -1s;   width: 24px; height: 20px; animation-duration: 19s, 5.8s, 7.5s; }
.petal-field .petal:nth-child(6) { left: 74%; animation-delay: -15s, -1.1s, -.7s;  width: 28px; height: 23px; animation-duration: 17s, 5.2s, 8.5s; }
.petal-field .petal:nth-child(7) { left: 86%; animation-delay: -5.5s,-.6s,  -1.8s; width: 20px; height: 17px; animation-duration: 22s, 4.6s, 7s; }
.petal-field .petal:nth-child(8) { left: 95%; animation-delay: -11s, -1.9s, -.2s;  width: 25px; height: 21px; animation-duration: 20s, 6s, 9.5s; }
@media (prefers-reduced-motion: reduce) { .petal-field { display: none; } }
