:root {
  --cream: #fbf2e9;
  --cream-deep: #f3e2d2;
  --paper: #fffdf9;
  --wine: #6f1f39;
  --wine-dark: #4b1427;
  --teal: #0a9885;
  --teal-dark: #087568;
  --gold: #f4bd16;
  --ink: #322d2b;
  --muted: #6e6561;
  --line: rgba(75, 20, 39, .14);
  --shadow: 0 24px 70px rgba(75, 20, 39, .13);
  --radius: 28px;
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }

h1, h2, h3, blockquote {
  margin-top: 0;
  color: var(--wine);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1.08;
}
h1 { font-size: clamp(3rem, 6vw, 5.75rem); letter-spacing: -.055em; }
h2 { font-size: clamp(2.25rem, 4.3vw, 4.3rem); letter-spacing: -.04em; }
h3 { font-size: 1.65rem; letter-spacing: -.02em; }
p { margin: 0 0 1.2rem; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  transform: translateY(-160%);
  background: var(--wine);
  color: white;
  padding: 10px 16px;
  border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }
.section-pad { padding: 112px 0; }
.eyebrow {
  margin-bottom: 18px;
  color: var(--teal-dark);
  font-size: .79rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.centered { max-width: 840px; margin: 0 auto 58px; text-align: center; }
.centered > p:last-child { max-width: 690px; margin-inline: auto; color: var(--muted); font-size: 1.1rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 27px;
  border: 2px solid var(--teal);
  border-radius: 999px;
  background: var(--teal);
  color: white;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(10, 152, 133, .18);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-2px); background: var(--teal-dark); border-color: var(--teal-dark); box-shadow: 0 16px 36px rgba(10, 152, 133, .26); }
.button:focus-visible, .text-link:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(244, 189, 22, .75);
  outline-offset: 3px;
}
.button-small { min-height: 42px; padding: 10px 20px; font-size: .91rem; }
.button-outline { background: transparent; color: var(--teal-dark); box-shadow: none; }
.button-outline:hover { color: white; }
.button-light { background: white; border-color: white; color: var(--wine); box-shadow: none; }
.button-light:hover { background: var(--cream); border-color: var(--cream); color: var(--wine-dark); }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--wine);
  font-weight: 800;
  text-decoration: none;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(75, 20, 39, .08);
  background: rgba(255, 253, 249, .9);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { width: 176px; height: 67px; display: block; overflow: hidden; }
.brand img { width: 100%; height: 100%; object-fit: contain; }
.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav > a { color: var(--wine-dark); font-size: .94rem; font-weight: 750; text-decoration: none; }
.main-nav > a:hover { color: var(--teal-dark); }
.menu-toggle { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--cream); }
.menu-toggle span:not(.sr-only) { display: block; width: 21px; height: 2px; margin: 4px auto; background: var(--wine); transition: transform .2s, opacity .2s; }

.hero { position: relative; min-height: calc(100svh - 88px); display: grid; align-items: center; overflow: hidden; background: var(--cream); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.02fr .88fr; gap: clamp(54px, 7vw, 100px); align-items: center; }
.hero-copy { padding: 30px 0; }
.hero h1 { max-width: 760px; margin-bottom: 28px; }
.hero-lead { max-width: 690px; color: var(--ink); font-size: clamp(1.15rem, 2vw, 1.38rem); line-height: 1.52; }
.hero-note { color: var(--muted); font-weight: 650; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; flex-wrap: wrap; }
.micro-proof { display: flex; gap: 20px; margin-top: 36px; color: var(--wine); font-size: .88rem; font-weight: 800; }
.micro-proof span { display: inline-flex; align-items: center; gap: 8px; }
.micro-proof span::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); }
.hero-visual { position: relative; }
.portrait-frame { position: relative; max-width: 520px; margin-left: auto; padding: 12px; border-radius: 50% 50% 34px 34px; background: rgba(255,255,255,.55); box-shadow: var(--shadow); }
.portrait-frame picture img { width: 100%; aspect-ratio: 4/5; object-fit: cover; object-position: 50% 32%; border-radius: 50% 50% 27px 27px; }
.portrait-badge { position: absolute; left: -58px; bottom: 42px; min-width: 240px; padding: 18px 22px; border-radius: 18px; background: var(--wine); color: white; box-shadow: 0 18px 45px rgba(75, 20, 39, .25); }
.portrait-badge strong, .portrait-badge span { display: block; }
.portrait-badge strong { font-family: Georgia, serif; font-size: 1.25rem; }
.portrait-badge span { opacity: .82; font-size: .9rem; }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(1px); opacity: .8; }
.hero-orb-one { width: 320px; height: 320px; right: -90px; top: -120px; background: rgba(244,189,22,.32); }
.hero-orb-two { width: 210px; height: 210px; left: -85px; bottom: -50px; border: 40px solid rgba(10,152,133,.12); }

.intro-strip { padding: 46px 0; background: var(--wine); color: white; }
.intro-strip-grid { display: grid; grid-template-columns: .55fr 1.45fr; gap: 80px; align-items: center; }
.intro-strip p { margin: 0; }
.intro-kicker { color: var(--gold); font-family: Georgia, serif; font-size: 1.55rem; }
.intro-strip-grid p:last-child { font-size: 1.14rem; }

.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(60px, 9vw, 130px); align-items: center; }
.about-art { position: relative; }
.about-art img { position: relative; z-index: 2; width: 100%; max-width: 560px; margin: auto; }
.sun-line { position: absolute; inset: 8% -4% -4% 10%; z-index: 1; border: 2px solid var(--gold); border-radius: 50%; }
.about-copy h2 { margin-bottom: 30px; }
.about-copy p { color: var(--muted); }
.about-copy blockquote { margin: 34px 0 0; padding-left: 25px; border-left: 4px solid var(--gold); font-size: 1.55rem; line-height: 1.3; }

.path { background: linear-gradient(180deg, var(--paper), var(--cream)); }
.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card { min-height: 310px; padding: 36px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.78); box-shadow: 0 14px 50px rgba(75,20,39,.07); }
.card-number { display: inline-grid; place-items: center; width: 48px; height: 48px; margin-bottom: 42px; border-radius: 50%; background: var(--cream); color: var(--teal-dark); font-weight: 900; }
.benefit-card h3 { margin-bottom: 18px; }
.benefit-card p { color: var(--muted); }

.process { background: var(--wine); color: white; }
.process h2, .process h3 { color: white; }
.process .eyebrow { color: var(--gold); }
.process-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(55px, 9vw, 120px); align-items: start; }
.process-copy { position: sticky; top: 140px; }
.process-copy p:not(.eyebrow) { max-width: 520px; color: rgba(255,255,255,.74); }
.process .button-outline { margin-top: 20px; border-color: white; color: white; }
.process .button-outline:hover { background: white; color: var(--wine); }
.steps-list { margin: 0; padding: 0; list-style: none; }
.steps-list li { display: grid; grid-template-columns: 62px 1fr; gap: 22px; padding: 34px 0; border-top: 1px solid rgba(255,255,255,.17); }
.steps-list li:last-child { border-bottom: 1px solid rgba(255,255,255,.17); }
.steps-list > li > span { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 50%; background: var(--gold); color: var(--wine); font-weight: 900; }
.steps-list h3 { margin-bottom: 10px; }
.steps-list p { margin: 0; color: rgba(255,255,255,.72); }

.mindfulness-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.mindfulness-visual { position: relative; min-height: 470px; display: grid; place-items: center; border-radius: 48% 48% 32% 32%; background: var(--cream); overflow: hidden; }
.mindfulness-visual::before { content: ""; position: absolute; width: 280px; height: 280px; border-radius: 50%; background: var(--gold); opacity: .85; }
.heart-shape { position: relative; z-index: 2; color: var(--wine); font-family: Georgia, serif; font-size: 12rem; line-height: 1; transform: translateY(-16px); }
.mindfulness-word { position: absolute; z-index: 3; bottom: 55px; color: var(--wine); font-family: Georgia, serif; font-size: 2rem; }
.mindfulness-copy p:not(.eyebrow) { color: var(--muted); }
.check-list { margin: 30px 0 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding: 13px 0 13px 38px; border-top: 1px solid var(--line); font-weight: 650; }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--teal); font-weight: 900; }

.quiz-banner { padding-top: 0; }
.quiz-banner-inner { display: flex; align-items: center; justify-content: space-between; gap: 50px; padding: 64px 72px; border-radius: 38px; background: var(--teal); color: white; box-shadow: 0 24px 70px rgba(10,152,133,.18); }
.quiz-banner h2 { max-width: 700px; margin-bottom: 14px; color: white; }
.quiz-banner p:not(.eyebrow) { max-width: 720px; margin-bottom: 0; color: rgba(255,255,255,.8); }
.quiz-banner .eyebrow { color: var(--gold); }
.quiz-banner .button { flex: 0 0 auto; }

.contact { background: var(--cream); }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(60px, 9vw, 120px); align-items: start; }
.contact-copy { position: sticky; top: 140px; }
.contact-copy > p:not(.eyebrow) { color: var(--muted); }
.contact-note { display: flex; flex-direction: column; margin-top: 36px; padding: 22px 24px; border-left: 4px solid var(--gold); background: rgba(255,255,255,.55); }
.contact-note strong { color: var(--wine); }
.contact-note span { color: var(--muted); }
.contact-form { padding: 42px; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label:not(.privacy-check) { display: block; margin-bottom: 20px; color: var(--wine-dark); font-size: .91rem; font-weight: 800; }
input, select, textarea { width: 100%; margin-top: 8px; border: 1px solid rgba(75,20,39,.2); border-radius: 14px; background: #fffdfa; color: var(--ink); }
input, select { min-height: 52px; padding: 0 15px; }
textarea { padding: 14px 15px; resize: vertical; }
.privacy-check { display: grid; grid-template-columns: 20px 1fr; gap: 10px; margin: 4px 0 25px; color: var(--muted); font-size: .82rem; line-height: 1.4; }
.privacy-check input { width: 18px; min-height: auto; margin: 2px 0 0; }
.form-status { margin: 14px 0 0; color: var(--teal-dark); font-weight: 700; }

.site-footer { padding: 75px 0 24px; background: #251219; color: rgba(255,255,255,.75); }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; }
.footer-brand img { width: 210px; height: 120px; object-fit: contain; object-position: left center; }
.footer-brand p { max-width: 280px; color: rgba(255,255,255,.64); }
.site-footer h2 { margin-bottom: 18px; color: white; font-family: inherit; font-size: .83rem; font-weight: 850; letter-spacing: .14em; text-transform: uppercase; }
.site-footer a { display: block; margin: 7px 0; color: rgba(255,255,255,.68); font-size: .92rem; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 50%; color: white; font-weight: 900; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 60px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: .78rem; }
.footer-bottom p { margin: 0; }

.quiz-modal { width: min(720px, calc(100% - 28px)); max-height: min(88vh, 850px); padding: 0; border: 0; border-radius: 30px; background: var(--paper); box-shadow: 0 30px 100px rgba(31,12,20,.4); overflow: auto; }
.quiz-modal::backdrop { background: rgba(35,17,24,.72); backdrop-filter: blur(8px); }
.quiz-modal form { padding: 58px 56px 52px; }
.modal-close { position: absolute; top: 15px; right: 17px; z-index: 2; width: 42px; height: 42px; border: 0; border-radius: 50%; background: var(--cream); color: var(--wine); font-size: 1.8rem; line-height: 1; }
.quiz-progress { position: sticky; top: 0; z-index: 1; height: 7px; background: var(--cream-deep); }
.quiz-progress span { display: block; width: 33.333%; height: 100%; background: var(--teal); transition: width .25s ease; }
.quiz-step { display: none; }
.quiz-step.is-active { display: block; animation: fadeUp .3s ease both; }
.quiz-step h2 { margin-bottom: 28px; font-size: clamp(2rem, 5vw, 3.1rem); }
.quiz-options { display: grid; gap: 12px; margin-bottom: 30px; }
.quiz-options label { display: block; }
.quiz-options input { position: absolute; opacity: 0; pointer-events: none; }
.quiz-options span { display: block; padding: 17px 20px; border: 1px solid var(--line); border-radius: 15px; background: white; font-weight: 700; transition: border-color .2s, background .2s, transform .2s; }
.quiz-options span:hover { transform: translateY(-1px); border-color: rgba(10,152,133,.5); }
.quiz-options input:checked + span { border-color: var(--teal); background: rgba(10,152,133,.08); color: var(--teal-dark); }
.quiz-options input:focus-visible + span { outline: 3px solid rgba(244,189,22,.7); outline-offset: 2px; }
.quiz-nav { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.quiz-result { text-align: center; }
.quiz-result .button { margin: 8px 8px 18px; }
.quiz-restart { margin: auto; display: flex; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  .section-pad { padding: 88px 0; }
  .menu-toggle { display: block; }
  .main-nav { position: fixed; inset: 88px 20px auto; display: grid; gap: 0; padding: 18px; border: 1px solid var(--line); border-radius: 22px; background: var(--paper); box-shadow: var(--shadow); opacity: 0; transform: translateY(-12px); pointer-events: none; transition: .2s ease; }
  .main-nav.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav > a { padding: 13px 10px; border-bottom: 1px solid var(--line); }
  .main-nav .button { margin-top: 14px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-6px) rotate(-45deg); }
  .hero { min-height: auto; }
  .hero-grid, .about-grid, .process-grid, .mindfulness-grid, .contact-grid { grid-template-columns: 1fr; }
  .hero-copy { padding-bottom: 0; }
  .hero-visual { max-width: 620px; margin: 0 auto; }
  .portrait-badge { left: 8px; }
  .intro-strip-grid { grid-template-columns: 1fr; gap: 14px; }
  .about-grid { gap: 65px; }
  .about-art { max-width: 600px; margin: auto; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; }
  .card-number { margin-bottom: 25px; }
  .process-copy, .contact-copy { position: static; }
  .mindfulness-visual { min-height: 390px; }
  .quiz-banner-inner { align-items: flex-start; flex-direction: column; padding: 54px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--container)); }
  .section-pad { padding: 72px 0; }
  .nav-wrap { min-height: 76px; }
  .brand { width: 148px; height: 58px; }
  .main-nav { inset: 76px 14px auto; }
  .hero { padding-top: 50px; }
  .hero-grid { gap: 50px; }
  h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
  h2 { font-size: clamp(2.15rem, 11vw, 3.25rem); }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 18px; }
  .micro-proof { gap: 10px 16px; flex-wrap: wrap; }
  .portrait-frame { border-radius: 46% 46% 28px 28px; }
  .portrait-frame picture img { border-radius: 46% 46% 22px 22px; }
  .portrait-badge { position: relative; left: auto; bottom: auto; width: calc(100% - 20px); margin: -26px auto 0; }
  .intro-strip { padding: 36px 0; }
  .about-copy blockquote { font-size: 1.3rem; }
  .benefit-card { padding: 28px; }
  .steps-list li { grid-template-columns: 50px 1fr; gap: 14px; }
  .steps-list > li > span { width: 44px; height: 44px; }
  .mindfulness-visual { min-height: 330px; }
  .heart-shape { font-size: 9rem; }
  .quiz-banner-inner { padding: 40px 28px; border-radius: 26px; }
  .contact-form { padding: 27px 22px; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 35px; }
  .footer-bottom { flex-direction: column; margin-top: 40px; }
  .quiz-modal form { padding: 55px 22px 35px; }
  .quiz-nav { align-items: stretch; flex-direction: column-reverse; }
  .quiz-nav .button { width: 100%; }
}
