/* ================================================================
   ROOT VARIABLES
   ================================================================ */
:root {
  /* Core palette */
  --plum-dark:      #1A1030;
  --plum:           #3D2B5E;
  --plum-mid:       #5E4490;
  --lavender:       #9B82C8;
  --lavender-pale:  #EDE6FA;
  --cream:          #FAF8F5;
  --cream-warm:     #F2EDE6;
  --sage:           #8BAF9A;
  --sage-light:     #C5DDD0;
  --rose:           #C9847A;
  --rose-light:     #EDCEC9;

  /* Text */
  --text:           #1E1528;
  --text-mid:       #4A3F5C;
  --text-light:     #7B6F8C;
  --white:          #FFFFFF;

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, -apple-system, sans-serif;

  /* Layout */
  --section-pad:    clamp(5rem, 10vw, 9rem);
  --container-max:  1200px;
  --container-pad:  clamp(1.5rem, 5vw, 3rem);
  --radius:         1rem;
  --radius-lg:      1.5rem;

  /* Effects */
  --shadow-soft:    0 4px 30px rgba(62, 43, 94, 0.07);
  --shadow-card:    0 8px 40px rgba(62, 43, 94, 0.12);
  --shadow-hover:   0 16px 60px rgba(62, 43, 94, 0.20);
  --transition:     all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ================================================================
   RESET & BASE
   ================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img            { max-width: 100%; display: block; }
a              { text-decoration: none; color: inherit; }
ul             { list-style: none; }
button         { cursor: pointer; font: inherit; border: none; background: none; }
input, select,
textarea       { font: inherit; }

/* ================================================================
   TYPOGRAPHY
   ================================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.15;
  color: var(--text);
}

h1 { font-size: clamp(3rem,   6vw, 5.5rem); font-weight: 400; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 400; }
h3 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 500; }
h4 { font-size: clamp(1.05rem, 2vw, 1.3rem); font-weight: 600; }

p { line-height: 1.8; color: var(--text-mid); margin-bottom: 1rem; }
p:last-child   { margin-bottom: 0; }
em             { font-style: italic; }
strong         { color: var(--text); }

/* ================================================================
   LAYOUT UTILITIES
   ================================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

.section       { padding: var(--section-pad) 0; }
.section--alt  { background: var(--cream-warm); }
.section--plum { background: linear-gradient(135deg, var(--plum-dark) 0%, var(--plum) 100%); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

/* Two-column split */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Reverse: second child comes first visually */
.split-grid--reverse > :first-child { order: 2; }
.split-grid--reverse > :last-child  { order: 1; }

/* ================================================================
   LABELS & HEADINGS
   ================================================================ */
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lavender);
  margin-bottom: 0.75rem;
}
.eyebrow--light { color: rgba(196, 173, 234, 0.75); }

.section-heading          { margin-bottom: 1.25rem; }
.section-heading--light   { color: var(--white); }
.section-desc             { color: var(--text-light); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }
.section-desc--light      { color: rgba(255,255,255,0.65); }
.section-lead             { font-size: 1.15rem; color: var(--text-mid); margin-bottom: 1.25rem; line-height: 1.75; }

/* ================================================================
   BUTTONS
   ================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 4rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
}
.btn--primary:hover {
  background: var(--plum-mid);
  border-color: var(--plum-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn--light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}
.btn--light:hover {
  background: var(--lavender-pale);
  border-color: var(--lavender-pale);
  transform: translateY(-2px);
}

.btn--ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn--ghost-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--full { width: 100%; }

/* ================================================================
   NAVIGATION
   ================================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(250, 248, 245, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(62, 43, 94, 0.08);
  padding: 1rem 0;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--white);
  transition: var(--transition);
}
.nav.scrolled .nav__logo { color: var(--plum); }

.nav__logo-mark { font-size: 0.9rem; color: var(--lavender); }
.nav.scrolled .nav__logo-mark { color: var(--plum-mid); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 2.25rem;
}

.nav__link {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.8);
  transition: var(--transition);
}
.nav__link:hover            { color: var(--white); }
.nav.scrolled .nav__link   { color: var(--text-mid); }
.nav.scrolled .nav__link:hover { color: var(--plum); }

.nav__link--cta {
  padding: 0.5rem 1.25rem;
  border-radius: 4rem;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.3);
  color: var(--white) !important;
}
.nav__link--cta:hover { background: rgba(255,255,255,0.22) !important; border-color: var(--white) !important; }

.nav.scrolled .nav__link--cta {
  background: var(--plum) !important;
  border-color: var(--plum) !important;
  color: var(--white) !important;
}
.nav.scrolled .nav__link--cta:hover { background: var(--plum-mid) !important; border-color: var(--plum-mid) !important; }

/* Hamburger */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 101;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav.scrolled .nav__toggle span { background: var(--plum); }

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1A1030 0%, #3D2B5E 55%, #5E4490 100%);
}

/* Floating orbs */
.hero__bg { position: absolute; inset: 0; overflow: hidden; }
.hero__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.35;
}
.hero__orb--1 {
  width: 650px; height: 650px;
  background: radial-gradient(circle, #9B82C8, transparent 70%);
  top: -220px; right: -80px;
  animation: orb-float 9s ease-in-out infinite;
}
.hero__orb--2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, #C9847A, transparent 70%);
  bottom: -120px; left: -80px;
  animation: orb-float 11s ease-in-out infinite reverse;
}
.hero__orb--3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, #8BAF9A, transparent 70%);
  top: 40%; left: 40%;
  animation: orb-float 7s ease-in-out infinite 2s;
}

@keyframes orb-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.06); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  padding-top: 5rem;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lavender);
  opacity: 0.85;
  margin-bottom: 1.5rem;
}

.hero__heading {
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.08;
}
.hero__heading em {
  background: linear-gradient(120deg, #C4ADEA 0%, #9B82C8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin: 0 auto 2.5rem;
  line-height: 1.78;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero__badges {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 1rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.13);
  border-radius: 4rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  backdrop-filter: blur(10px);
}
.badge i { color: var(--lavender); font-size: 0.72rem; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  font-size: 1rem;
  z-index: 2;
  transition: var(--transition);
  animation: scroll-bounce 2.2s ease-in-out infinite;
}
.hero__scroll:hover { color: rgba(255,255,255,0.7); }

@keyframes scroll-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Hero entrance animations */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  animation: fade-up-in 0.8s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.27s; }
.fade-up:nth-child(3) { animation-delay: 0.44s; }
.fade-up:nth-child(4) { animation-delay: 0.61s; }
.fade-up:nth-child(5) { animation-delay: 0.78s; }

@keyframes fade-up-in {
  to { opacity: 1; transform: translateY(0); }
}

/* ================================================================
   INFO BOX
   ================================================================ */
.info-box {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--lavender-pale);
  border-left: 4px solid var(--lavender);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
}
.info-box i  { color: var(--plum-mid); font-size: 1.2rem; flex-shrink: 0; margin-top: 0.2rem; }
.info-box p  { margin: 0; font-size: 0.93rem; }

/* ================================================================
   REIKI SYMBOL VISUAL
   ================================================================ */
.reiki-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}

.reiki-symbol {
  position: relative;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reiki-circle {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid;
  animation: pulse-ring 4.5s ease-in-out infinite;
}
.reiki-circle--outer { width: 200px; height: 200px; border-color: rgba(155,130,200,0.20); animation-delay: 0s; }
.reiki-circle--mid   { width: 148px; height: 148px; border-color: rgba(155,130,200,0.35); animation-delay: -1.5s; }
.reiki-circle--inner { width: 98px;  height: 98px;  border-color: rgba(155,130,200,0.55); animation-delay: -3s; }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1);    opacity: 0.6; }
  50%       { transform: scale(1.07); opacity: 1; }
}

.reiki-symbol__core {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--plum), var(--plum-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  box-shadow: 0 8px 30px rgba(94, 68, 144, 0.45);
}

.reiki-facts {
  display: flex;
  gap: 2rem;
  text-align: center;
  flex-wrap: wrap;
  justify-content: center;
}

.fact__num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--plum);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.fact__label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* ================================================================
   HOW IT WORKS
   ================================================================ */
.how-grid {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}

.how-card {
  flex: 1;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: var(--transition);
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.how-card__arrow {
  flex-shrink: 0;
  color: var(--lavender);
  font-size: 1.1rem;
  margin-top: 5.25rem;
  opacity: 0.65;
}

.how-card__num {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--lavender-pale);
  line-height: 1;
  margin-bottom: 1rem;
}

.how-card__icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--lavender-pale), #DDD0F5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--plum-mid);
  margin: 0 auto 1.25rem;
}

.how-card h3 { font-size: 1.55rem; color: var(--plum); margin-bottom: 0.75rem; }
.how-card p  { font-size: 0.93rem; color: var(--text-light); margin: 0; }

/* ================================================================
   BENEFITS
   ================================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}
.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-bottom-color: var(--lavender);
}

.benefit-card__icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--lavender-pale), #E8E0F5);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  color: var(--plum-mid);
  margin-bottom: 1rem;
}

.benefit-card h4    { font-family: var(--font-heading); font-size: 1.2rem; color: var(--plum); margin-bottom: 0.5rem; }
.benefit-card p     { font-size: 0.88rem; color: var(--text-light); margin: 0; }

.benefits-disclaimer {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  text-align: left;
  font-size: 0.78rem;
  color: var(--text-light);
  max-width: 680px;
  margin: 0 auto;
  padding-top: 1rem;
  border-top: 1px solid var(--cream-warm);
}
.benefits-disclaimer i { color: var(--sage); flex-shrink: 0; margin-top: 0.1rem; }

/* ================================================================
   QUIZ
   ================================================================ */
.quiz {
  max-width: 800px;
  margin: 0 auto;
}

.quiz__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
  margin-bottom: 2rem;
}

.quiz__item {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  cursor: pointer;
  padding: 0.95rem 1.2rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  color: rgba(255,255,255,0.7);
  font-size: 0.885rem;
  transition: var(--transition);
  user-select: none;
  line-height: 1.5;
}
.quiz__item:hover {
  background: rgba(255,255,255,0.11);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.9);
}
.quiz__item input { display: none; }

.quiz__box {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: transparent;
  transition: var(--transition);
}
.quiz__item input:checked ~ .quiz__box {
  background: var(--lavender);
  border-color: var(--lavender);
  color: var(--plum-dark);
}
.quiz__item:has(input:checked) {
  background: rgba(155, 130, 200, 0.15);
  border-color: rgba(155, 130, 200, 0.4);
  color: var(--white);
}

.quiz__result {
  text-align: center;
  padding: 2rem 1.5rem;
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  border: 1.5px solid rgba(255,255,255,0.12);
  min-height: 90px;
  transition: var(--transition);
}
.quiz__result-text {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}
.quiz__cta { margin-top: 1.25rem; }

/* ================================================================
   SERVICES
   ================================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-soft);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }

.service-card--featured {
  border: 2px solid var(--plum-mid);
  box-shadow: 0 0 0 1px var(--lavender), var(--shadow-card);
}

.service-card__badge {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--plum);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 4rem;
}

.service-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lavender);
}

.service-card__icon-wrap {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
}
.service-card__icon-wrap--lavender { background: var(--lavender-pale); color: var(--plum-mid); }
.service-card__icon-wrap--sage     { background: var(--sage-light);    color: #3D6B55; }
.service-card__icon-wrap--rose     { background: var(--rose-light);    color: #8B3A31; }

.service-card__title { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 500; color: var(--plum); }
.service-card__desc  { color: var(--text-light); font-size: 0.9rem; line-height: 1.75; margin: 0; }

.service-card__details {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  padding: 1rem;
  background: var(--cream-warm);
  border-radius: 0.75rem;
}
.detail {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-mid);
}
.detail i { color: var(--plum-mid); font-size: 0.78rem; width: 14px; flex-shrink: 0; }

.service-card__includes { display: flex; flex-direction: column; gap: 0.45rem; }
.service-card__includes li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.86rem;
  color: var(--text-mid);
}
.service-card__includes li i { color: var(--sage); font-size: 0.72rem; flex-shrink: 0; }

.service-card__price { display: flex; align-items: baseline; gap: 0.5rem; }
.price      { font-family: var(--font-heading); font-size: 2.25rem; font-weight: 600; color: var(--plum); line-height: 1; }
.price-note { font-size: 0.82rem; color: var(--text-light); }

/* Training level rows */
.service-card__levels { display: flex; flex-direction: column; gap: 0.65rem; }

.level {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 1rem;
  background: var(--cream-warm);
  border-radius: 0.75rem;
  gap: 1rem;
  transition: var(--transition);
}
.level:hover { background: var(--lavender-pale); }

.level__name  { font-size: 0.88rem; font-weight: 700; color: var(--plum); }
.level__desc  { font-size: 0.78rem; color: var(--text-light); margin-top: 0.15rem; }
.level__price { font-family: var(--font-heading); font-size: 1.25rem; font-weight: 600; color: var(--plum-mid); white-space: nowrap; flex-shrink: 0; }

/* ================================================================
   WHAT TO EXPECT — TABS
   ================================================================ */
.tabs { max-width: 860px; margin: 0 auto; }

.tabs__nav {
  display: flex;
  gap: 0.4rem;
  margin-bottom: 2.25rem;
  background: var(--white);
  border-radius: 4rem;
  padding: 0.4rem;
  box-shadow: var(--shadow-soft);
}

.tab-btn {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 4rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
}
.tab-btn:hover       { color: var(--plum); }
.tab-btn--active     { background: var(--plum); color: var(--white); box-shadow: 0 2px 14px rgba(62,43,94,0.28); }

.tab-panel           { display: none; }
.tab-panel--active   { display: block; }

.expect-steps { display: flex; flex-direction: column; }

.expect-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(62,43,94,0.07);
}
.expect-step:last-child { border-bottom: none; }

.expect-step__num {
  flex-shrink: 0;
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--plum), var(--plum-mid));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 0.1rem;
}

.expect-step__body h4 { font-size: 1.1rem; color: var(--plum); margin-bottom: 0.4rem; }
.expect-step__body p  { font-size: 0.925rem; color: var(--text-light); margin: 0; }

/* ================================================================
   ABOUT
   ================================================================ */
.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.about-photo {
  width: 320px; height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--lavender-pale);
  box-shadow: var(--shadow-card);
  flex-shrink: 0;
}

.about-photo__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-cert {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.5rem;
  background: var(--plum);
  color: var(--white);
  border-radius: 0.875rem;
  width: 100%;
  max-width: 320px;
}
.about-cert i      { font-size: 1.5rem; color: var(--lavender); flex-shrink: 0; }
.about-cert strong { display: block; font-size: 0.95rem; font-weight: 700; color: #ffffff; }
.about-cert span   { font-size: 0.78rem; opacity: 0.68; }

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1.25rem 0;
}

.value {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 1rem;
  background: var(--lavender-pale);
  border-radius: 4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--plum);
}
.value i { color: var(--plum-mid); font-size: 0.8rem; }

/* ================================================================
   TESTIMONIALS
   ================================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: var(--transition);
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }

.testimonial__stars { color: #F5B946; font-size: 0.82rem; letter-spacing: 0.12em; }

.testimonial blockquote {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-mid);
  line-height: 1.65;
  flex: 1;
  margin: 0;
  padding: 0;
  border: none;
}

.testimonial__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--plum), var(--plum-mid));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.testimonial__author strong { display: block; font-size: 0.875rem; color: var(--text); }
.testimonial__author span   { font-size: 0.78rem; color: var(--text-light); }

/* ================================================================
   BOOKING FORM
   ================================================================ */
.booking { max-width: 680px; margin: 0 auto; }

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.82);
}

.required { color: var(--lavender); }
.optional  { color: rgba(255,255,255,0.38); font-weight: 400; }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.875rem 1.1rem;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 0.75rem;
  color: var(--white);
  font-size: 0.95rem;
  transition: var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.28); }

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.45)' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 10px;
  padding-right: 2.5rem;
}
.form-group select option { background: var(--plum-dark); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--lavender);
  background: rgba(255,255,255,0.11);
}

.form-group input.error,
.form-group select.error { border-color: #E88080; }

.form-group textarea { resize: vertical; }

.form-note {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.38);
  margin: 0;
}

/* Success state */
.booking-success {
  text-align: center;
  padding: 3rem 2rem;
  color: var(--white);
}
.success-icon { font-size: 4rem; color: var(--sage); margin-bottom: 1.25rem; }
.booking-success h3 { font-family: var(--font-heading); font-size: 2rem; color: var(--white); margin-bottom: 1rem; }
.booking-success p  { color: rgba(255,255,255,0.72); max-width: 440px; margin: 0 auto 0.75rem; }
.success-sig { font-style: italic; color: var(--lavender) !important; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  background: var(--plum-dark);
  color: rgba(255,255,255,0.55);
  padding: 4.5rem 0 2.5rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 2rem;
}

.footer__logo {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 0.875rem;
}
.footer__brand p { font-size: 0.875rem; line-height: 1.75; }

.footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer__social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: var(--transition);
}
.footer__social a:hover { border-color: var(--lavender); color: var(--lavender); }

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer__links ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  transition: var(--transition);
}
.footer__links li a:hover { color: var(--lavender); }

.footer__contact p {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.48);
  margin-bottom: 0.6rem;
}
.footer__contact i { color: var(--lavender); font-size: 0.78rem; width: 14px; flex-shrink: 0; }
.footer__contact a { transition: var(--transition); }
.footer__contact a:hover { color: var(--lavender); }

.footer__bottom { text-align: center; font-size: 0.8rem; }
.footer__bottom p { margin-bottom: 0.4rem; }
.footer__disclaimer { color: rgba(255,255,255,0.28); font-size: 0.74rem; max-width: 680px; margin: 0 auto; }

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ================================================================
   RESPONSIVE — Tablet
   ================================================================ */
@media (max-width: 1024px) {
  .split-grid,
  .split-grid--reverse {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .split-grid--reverse > :first-child { order: 0; }
  .split-grid--reverse > :last-child  { order: 0; }

  .benefits-grid      { grid-template-columns: repeat(2, 1fr); }
  .services-grid      { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
  .testimonials-grid  { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }

  .how-grid           { flex-direction: column; gap: 1rem; }
  .how-card__arrow    { transform: rotate(90deg); align-self: center; margin: 0; }

  .footer__grid       { grid-template-columns: 1fr 1fr; }
  .footer__brand      { grid-column: 1 / -1; }

  .about-photo        { width: 100%; height: 280px; max-width: 400px; }

  .reiki-visual { flex-direction: row; gap: 3rem; }
}

/* ================================================================
   RESPONSIVE — Mobile
   ================================================================ */
@media (max-width: 768px) {
  /* Nav */
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    width: min(80vw, 300px);
    height: 100vh;
    background: var(--plum-dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    z-index: 99;
    transition: right 0.35s ease;
    box-shadow: none;
  }
  .nav__links.open {
    right: 0;
    box-shadow: -20px 0 60px rgba(0,0,0,0.35);
  }
  .nav__link                { font-size: 1.1rem !important; color: rgba(255,255,255,0.82) !important; }
  .nav__link--cta           { text-align: center; }
  .nav__toggle              { display: flex; }

  .quiz__grid               { grid-template-columns: 1fr; }
  .form-row                 { grid-template-columns: 1fr; }
  .footer__grid             { grid-template-columns: 1fr; }
  .benefits-grid            { grid-template-columns: 1fr; }

  .tabs__nav                { flex-direction: column; border-radius: var(--radius); }
  .tab-btn                  { border-radius: 0.75rem; text-align: left; }

  .hero__actions            { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero__badges             { flex-direction: column; align-items: center; }
  .reiki-visual             { flex-direction: column; }
  .about-photo              { width: 100%; height: 240px; }
}
