/* ── NAVIGATION ── */
.header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: rgba(7, 17, 13, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 180, 111, 0.14);
  height: var(--nav-h);
  transition: transform 0.35s ease, background 0.3s;
}

.header-nav.hidden { transform: translateY(-100%); }

.header-nav__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-nav__logo {
  width: 180px;
  height: 42px;
  object-fit: contain;
  object-position: left center;
  cursor: pointer;
  flex-shrink: 0;
}

.header-nav__links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  position: relative;
}

.header-nav__pill {
  position: absolute;
  height: 32px;
  border-radius: 20px;
  background: rgba(159, 189, 155, 0.13);
  pointer-events: none;
  transition: left 0.35s cubic-bezier(0.23, 1, 0.32, 1), width 0.35s cubic-bezier(0.23, 1, 0.32, 1);
  z-index: 0;
}

.header-nav__link {
  position: relative;
  z-index: 1;
  padding: 0.35rem 1rem;
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(251, 245, 234, 0.68);
  transition: color 0.25s;
  white-space: nowrap;
  cursor: pointer;
}

.header-nav__link:hover { color: var(--gold); }
.header-nav__link.active { color: var(--gold); }
.header-nav__link--crm { border: 1px solid rgba(201,151,58,0.3); border-radius: var(--radius); padding: 0.35rem 0.9rem !important; font-size: 0.7rem !important; letter-spacing: 1.5px; }

.header-nav__book {
  background: var(--gold);
  padding: 0.4rem 1.4rem;
  border-radius: var(--radius);
  letter-spacing: 1px;
  font-weight: 700;
  font-size: 0.78rem;
  color: #132018 !important;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}

.header-nav__book:hover { background: var(--gold-lt); }

/* ── BUTTONS ── */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #132018;
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
}

.btn-gold:hover { background: var(--gold-lt); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--cream);
  padding: 0.85rem 2.2rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1px solid rgba(251, 245, 234, 0.34);
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem 4rem;
}

.hero__logo-spacer { height: var(--nav-h); }

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(at 18% 65%, rgba(159, 189, 155, 0.18) 0%, transparent 52%),
    radial-gradient(at 82% 28%, rgba(212, 180, 111, 0.13) 0%, transparent 52%),
    radial-gradient(at 50% 95%, rgba(183, 131, 85, 0.08) 0%, transparent 45%);
}

.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(251, 245, 234, 0.055) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-size: 0.7rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.75rem;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
  content: "";
  width: 36px;
  height: 1px;
  background: var(--sage);
  opacity: 0.45;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 8vw, 6rem);
  color: var(--cream);
  line-height: 1.04;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
}

.hero h1 em { color: var(--gold); font-style: italic; }

.hero-sub {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.82;
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(201, 151, 58, 0.5);
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: bounce 2s ease-in-out infinite;
}

.hero-scroll::after { content: "↓"; font-size: 1rem; color: var(--gold); opacity: 0.5; }

/* ── HERO SLIDER (Hijama Photos) ── */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
}

.hero-slider__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  will-change: transform, opacity;
}

.hero-slider__slide:first-child {
  opacity: 1;
}

.hero-slider__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 200px;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent 0%,
    rgba(255, 255, 255, 0.15) 25%,
    rgba(255, 255, 255, 0.45) 45%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.45) 55%,
    rgba(255, 255, 255, 0.15) 75%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  will-change: transform, opacity;
  transform: translateX(-100%);
}

.hero-slider__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    180deg,
    rgba(7, 17, 13, 0.52) 0%,
    rgba(7, 17, 13, 0.24) 40%,
    rgba(7, 17, 13, 0.38) 70%,
    rgba(7, 17, 13, 0.72) 100%
  );
  pointer-events: none;
}

/* ── TRUST STRIP ── */
.trust-strip {
  background: rgba(18, 31, 23, 0.92);
  border-bottom: 1px solid rgba(212, 180, 111, 0.14);
  padding: 1.1rem 2rem;
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.3px;
}

.trust-item .ti { font-size: 1.1rem; }

/* ── ABOUT SECTION ── */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 100%;
}

.about-text {
  padding: 6rem 4rem 6rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .eyebrow { color: var(--copper); }

.about-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.about-text h2 em { color: var(--gold); font-style: italic; }

.about-text p {
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1rem;
  font-size: 0.93rem;
}

.about-text .about-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  background: rgba(201, 151, 58, 0.06);
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.65;
}

.value-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 0.1rem; }

.value-row strong {
  color: var(--cream);
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.15rem;
}

.about-stats-panel {
  padding: 6rem 3rem 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.5rem;
}

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

.stat-box {
  background: rgba(201, 151, 58, 0.07);
  border: 1px solid rgba(201, 151, 58, 0.2);
  border-radius: var(--radius);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.25s;
}

.stat-box:hover { background: rgba(201, 151, 58, 0.13); }

.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold);
  letter-spacing: 2px;
  line-height: 1;
}

.stat-lbl {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-top: 0.25rem;
}

/* ── PROCESS STRIP ── */
.process-strip { padding: 5rem 2rem; }

.process-inner { max-width: 1140px; margin: 0 auto; }

.process-header { margin-bottom: 3rem; }

.process-header .eyebrow { color: var(--sage); }

.process-header h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--cream);
  line-height: 1.2;
}

.process-header h2 em { color: var(--gold); font-style: italic; }

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.process-step { position: relative; }

.step-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  color: rgba(201, 151, 58, 0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.process-step h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.83rem;
  color: var(--muted);
  line-height: 1.75;
}

/* ── SERVICES HERO (fixed) ── */
.healing-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healing-hero__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.healing-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201, 151, 58, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.4) 100%);
  z-index: 1;
}

.healing-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 25% 35%, rgba(201, 151, 58, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 75% 65%, rgba(201, 151, 58, 0.03) 0%, transparent 50%);
}

.healing-hero__text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.92;
  text-align: center;
  letter-spacing: 4px;
  z-index: 2;
  pointer-events: none;
}

.healing-hero__text--back {
  color: transparent;
  -webkit-text-stroke: 2px rgba(201, 151, 58, 0.3);
  text-stroke: 2px rgba(201, 151, 58, 0.3);
  transform: translateY(-8px);
}

.healing-hero__text--front {
  color: var(--cream);
  text-shadow: 0 0 80px rgba(201, 151, 58, 0.2);
}

/* ── QUESTION HERO (fixed) ── */
.question-hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-hero__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.question-hero__gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(111, 154, 116, 0.08) 0%, transparent 60%),
              linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.4) 100%);
  z-index: 1;
}

.question-hero__pattern {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image:
    radial-gradient(circle at 30% 70%, rgba(111, 154, 116, 0.04) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(111, 154, 116, 0.03) 0%, transparent 50%);
}

.question-hero__text {
  position: absolute;
  font-family: var(--font-display);
  font-size: clamp(4rem, 15vw, 12rem);
  line-height: 0.92;
  text-align: center;
  letter-spacing: 4px;
  z-index: 2;
  pointer-events: none;
}

.question-hero__text--back {
  color: transparent;
  -webkit-text-stroke: 2px rgba(111, 154, 116, 0.3);
  text-stroke: 2px rgba(111, 154, 116, 0.3);
  transform: translateY(-8px);
}

.question-hero__text--front {
  color: var(--cream);
  text-shadow: 0 0 80px rgba(111, 154, 116, 0.2);
}

.healing-spacer,
.question-spacer {
  height: 100vh;
  pointer-events: none;
}

/* ── TESTIMONIALS ── */
.testimonials-section {
  padding: 6rem 2rem;
  position: relative;
}

.testimonials__inner { max-width: 860px; margin: 0 auto; }

.testimonials__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.testimonials__header .eyebrow { color: var(--sage); }

.testimonials__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
}

.testimonials__header h2 em { color: var(--gold); font-style: italic; }

.testimonials__track-wrapper {
  overflow: hidden;
  position: relative;
}

.testimonials__track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  will-change: transform;
}

.testimonial-card {
  min-width: calc(50% - 0.75rem);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-shrink: 0;
}

.testimonial-stars { color: var(--gold); letter-spacing: 2px; font-size: 0.9rem; }

.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}

.testimonials__nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(201, 151, 58, 0.2);
  border: none;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.testi-dot:hover { background: rgba(201, 151, 58, 0.4); }
.testi-dot.active { background: var(--gold); transform: scale(1.3); }

/* ── SITE FOOTER ── */
.site-footer {
  border-top: 1px solid rgba(201, 151, 58, 0.12);
  padding: 4rem 3rem 2.5rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.9;
}

.footer-brand .footer-logo {
  width: min(100%, 220px);
  height: auto;
  margin-bottom: 0.6rem;
}

.footer-brand p { font-size: 0.82rem; max-width: 240px; }

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer-col a { display: block; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── FAQ ── */
.faq-section {
  padding: 6rem 2rem;
  max-width: 860px;
  margin: 0 auto;
}

.faq__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  letter-spacing: 3px;
  margin-bottom: 3rem;
  text-align: center;
}

.faq__container { display: flex; flex-direction: column; }

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  text-align: left;
  gap: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  color: var(--cream);
  font-family: var(--font-body);
}

.faq__question-num {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--gold);
  min-width: 2.5rem;
  opacity: 0.6;
}

.faq__question-text {
  flex: 1;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.4;
}

.faq__icon {
  font-size: 1.4rem;
  color: var(--gold);
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.faq__item.open .faq__icon { transform: rotate(45deg); }

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23, 1, 0.32, 1), padding 0.3s;
}

.faq__item.open .faq__answer { max-height: 600px; padding-top: 1rem; }

.faq__answer-content {
  padding-left: 3.5rem;
}

.faq__answer-content p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ── CONTACT SECTION ── */
/* Booking */
.booking-section {
  padding: 6rem 2rem;
  background: linear-gradient(180deg, rgba(16, 26, 20, 0.96), rgba(7, 17, 13, 1));
}

.booking__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.booking__header {
  max-width: 720px;
  margin-bottom: 2rem;
}

.booking__header h2 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.booking__header em {
  font-family: var(--font-serif);
  color: var(--gold);
  font-style: italic;
  letter-spacing: 0;
}

.booking__header p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.8;
}

.booking__frame-wrap {
  background: var(--card);
  color: var(--cream);
  border: 1px solid rgba(212,180,111,0.22);
  border-radius: var(--radius);
  overflow: hidden;
  min-height: clamp(620px, 78vh, 900px);
}

.booking__frame,
.booking__frame-wrap > iframe {
  display: block;
  width: 100% !important;
  min-height: clamp(620px, 78vh, 900px);
  border: 0;
  background: var(--card);
  color: var(--cream);
}

.booking__fallback {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(201,151,58,0.45);
}

.checkout-panel {
  background: linear-gradient(180deg, rgba(251,245,234,0.055), rgba(251,245,234,0.025));
  border: 1px solid rgba(212,180,111,0.22);
  border-radius: var(--radius);
  padding: clamp(1.25rem, 3vw, 2rem);
}

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

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.checkout-payment-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.checkout-payment-options__header {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.checkout-payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  min-height: 6.4rem;
  border: 1px solid rgba(212,180,111,0.22);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
}

.checkout-payment-option--recommended {
  border-color: rgba(201,151,58,0.5);
}

.checkout-payment-option input {
  margin-top: 0.2rem;
  accent-color: var(--gold);
}

.checkout-payment-option strong,
.checkout-payment-option small {
  display: block;
}

.checkout-payment-option strong {
  color: var(--cream);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.checkout-payment-option small {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.checkout-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: max-content;
  background: var(--gold);
  color: #132018;
  border-radius: 999px;
  padding: 0.95rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease;
}

.checkout-submit:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
}

.checkout-submit:disabled {
  opacity: 0.65;
  cursor: wait;
}

.checkout-message {
  min-height: 1.4rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.checkout-message.success,
.checkout-message a {
  color: var(--gold);
}

.checkout-message.error {
  color: #ff8d7a;
}

.checkout-aftercare {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(212,180,111,0.16);
}

.checkout-aftercare span {
  display: block;
  color: var(--sage);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.checkout-aftercare p {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

.contact-section {
  padding: 6rem 2rem;
  position: relative;
}

.contact__content { max-width: 1140px; margin: 0 auto; }

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact__left {
  position: sticky;
  top: 120px;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5.5rem);
  color: var(--cream);
  line-height: 0.92;
  letter-spacing: 3px;
  margin-bottom: 2rem;
}

.contact__info { display: flex; flex-direction: column; gap: 1.5rem; }

.contact__label {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.5rem;
}

.contact__text-link {
  display: block;
  color: var(--cream);
  font-size: 0.95rem;
  line-height: 1.65;
  transition: color 0.2s ease;
}

.contact__text-link:hover {
  color: var(--gold);
}

.social-links { display: flex; gap: 0.75rem; }

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 1rem;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 151, 58, 0.06);
}

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

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

.form-group label {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(199, 174, 151, 0.35);
}

.select-wrapper { position: relative; }

.select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}

.select-wrapper select option {
  background: var(--deep);
  color: var(--cream);
}

.select-arrow {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 0.75rem;
}

.form-error {
  font-size: 0.72rem;
  color: #e74c3c;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.2s;
}

.form-error.show { opacity: 1; }

.contact__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: var(--gold);
  color: var(--deep);
  padding: 1rem 2.5rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.15s;
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
}

.contact__submit:hover { background: var(--gold-lt); transform: translateY(-2px); }

.form-message {
  font-size: 0.85rem;
  color: var(--sage);
  min-height: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .header-nav__links { gap: 0; }
  .header-nav__link { font-size: 0.65rem; padding: 0.35rem 0.6rem; letter-spacing: 1px; }
  .header-nav__book { font-size: 0.68rem; padding: 0.35rem 1rem; }

  .about-section { grid-template-columns: 1fr; }
  .about-text { padding: 4rem 2rem; }
  .about-stats-panel { padding: 4rem 2rem; }

  .contact__grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact__left { position: static; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-payment-options { grid-template-columns: 1fr; }

  .testimonial-card { min-width: calc(100% - 0.75rem); }

  .site-footer { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 540px) {
  .site-footer { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .hero h1 { font-size: clamp(2.2rem, 10vw, 3.5rem); }
  .header-nav__container { padding: 0 1rem; }
  .header-nav__logo { width: 140px; }

  .healing-hero__text,
  .question-hero__text {
    font-size: clamp(3rem, 18vw, 8rem) !important;
    letter-spacing: 2px !important;
  }

  .healing-hero__text span,
  .question-hero__text span {
    display: inline !important;
  }

  .service-card { min-width: 290px; }

  .testimonial-card { min-width: calc(100% - 0.5rem); }
  
  .contact__title { font-size: clamp(2rem, 12vw, 3.5rem); }
}

/* ── TRAINING SECTION ── */
.training-section {
  padding: 6rem 2rem;
  position: relative;
  background: linear-gradient(180deg, rgba(5,5,5,0.95), rgba(10,8,5,0.98));
  border-top: 1px solid rgba(201,151,58,0.08);
  border-bottom: 1px solid rgba(201,151,58,0.08);
}

.training__inner { max-width: 980px; margin: 0 auto; }

.training__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.training__header .eyebrow { color: var(--sage); }

.training__header h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
}

.training__header h2 em { color: var(--gold); font-style: italic; }

.training__overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (max-width: 640px) {
  .training__overview { grid-template-columns: repeat(2, 1fr); }
}

.training__info-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem 1rem;
  min-height: 155px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
}

.training__info-card i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.training__info-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.training__info-value {
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.35;
}

.training__desc {
  text-align: center;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 1.7rem;
}

.training__story {
  max-width: 760px;
  margin: 0 auto 3rem;
  display: grid;
  gap: 1rem;
  text-align: center;
}

.training__story p {
  color: rgba(244,237,226,0.78);
  font-size: 0.95rem;
  line-height: 1.85;
  margin: 0;
}

.training__modules {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.training__module {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s;
}

.training__module:hover { border-color: rgba(201,151,58,0.3); }

.training__module-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--cream);
  font-family: var(--font-body);
}

.training__module-num {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  opacity: 0.5;
  min-width: 2.2rem;
}

.training__module-head h3 {
  font-size: 1rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.3;
}

.training__module-hours {
  font-size: 0.72rem;
  color: var(--sage);
  letter-spacing: 1px;
}

.training__module-arrow {
  margin-left: auto;
  color: var(--gold);
  font-size: 0.85rem;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}

.training__module.open .training__module-arrow { transform: rotate(180deg); }

.training__module-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.23,1,0.32,1), padding 0.3s;
}

.training__module.open .training__module-body {
  max-height: 800px;
  padding: 0 1.5rem 1.25rem;
}

.training__module-body ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.training__module-body li {
  font-size: 0.85rem;
  color: var(--muted);
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.6;
}

.training__module-body li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.55rem;
  top: 0.35rem;
}

.training__cta {
  text-align: center;
  padding: 2.5rem;
  background: var(--card);
  border: 1px solid rgba(201,151,58,0.2);
  border-radius: var(--radius);
}

.training__prompt {
  margin-bottom: 1.5rem;
}

.training__prompt-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--gold);
  display: block;
  line-height: 1.2;
}

.training__prompt-note {
  font-size: 0.9rem;
  color: var(--muted);
  display: block;
  margin-top: 0.4rem;
}

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

.training__note {
  font-size: 0.75rem;
  color: rgba(199,174,151,0.5);
  letter-spacing: 0.5px;
}

/* ── CALENDLY BADGE ── */
.booking-badge-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
}

.booking-badge-btn {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--gold);
  color: var(--deep);
  padding: 0.75rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(201,151,58,0.35);
  transition: transform 0.2s, box-shadow 0.2s;
  font-family: var(--font-body);
}

.booking-badge-btn:hover {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 8px 32px rgba(201,151,58,0.45);
}

.booking-badge-btn i {
  font-size: 1.1rem;
}

@media (max-width: 540px) {
  .booking-badge-btn span { display: none; }
  .booking-badge-btn { padding: 0.75rem; border-radius: 50%; }
  .booking-badge-btn i { margin: 0; }
}
