/* ═══════════════════════════════════════════════════════════════════════════
   HEALING PAGE
   ═══════════════════════════════════════════════════════════════════════════ */


/* ─── Keyframes ──────────────────────────────────────────────────────────── */
@keyframes hlBlurIn {
  0%   { opacity: 0; filter: blur(12px); transform: translateY(28px) scale(0.99); }
  100% { opacity: 1; filter: blur(0px);  transform: translateY(0)    scale(1);    }
}

@keyframes hlRuleDraw {
  0%   { opacity: 0; transform: scaleX(0); }
  100% { opacity: 1; transform: scaleX(1); }
}


/* ─── Hero ───────────────────────────────────────────────────────────────── */
.hl-hero {
  width: 100%;
  padding: 90px 20px 60px;
  text-align: center;
  box-sizing: border-box;
  will-change: transform; /* parallax target */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100svh;
}

.hl-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

/* Eyebrow — flanked by hairline rules */
.hl-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: #aaa;
  margin-bottom: 44px;
  opacity: 0;
}

.hl-hero-eyebrow::before,
.hl-hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 1px;
  background: #D4C5A9;
  flex-shrink: 0;
}

/* Main title */
.hl-hero-heading {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-size: 58px;
  line-height: 1.28;
  color: #0d0d0d;
  margin: 0 0 44px;
  letter-spacing: -0.025em;
}

.hl-h-line {
  display: block;
  opacity: 0;
  will-change: transform, opacity, filter;
  font-style: normal;
}

.hl-h-line:nth-child(3) { font-style: italic; color: #666; }

/* Subtext */
.hl-hero-sub {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 1.75;
  color: #666;
  max-width: 600px;
  margin: 0 auto 44px;
  opacity: 0;
  will-change: transform, opacity, filter;
}

/* Center-out rule */
.hl-hero-rule {
  width: 64px;
  height: 1px;
  background: #D4C5A9;
  margin: 0 auto 28px;
  transform-origin: center center;
  opacity: 0;
}

/* Metadata strip */
.hl-hero-meta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #bbb;
  opacity: 0;
}

/* ─── Play-cinema trigger (added by JS IntersectionObserver) ─────────────── */
.hl-hero.play-cinema .hl-hero-eyebrow        { animation: hlBlurIn 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.1s  forwards; }
.hl-hero.play-cinema .hl-h-line:nth-child(1) { animation: hlBlurIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards; }
.hl-hero.play-cinema .hl-h-line:nth-child(2) { animation: hlBlurIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.45s forwards; }
.hl-hero.play-cinema .hl-h-line:nth-child(3) { animation: hlBlurIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.65s forwards; }
.hl-hero.play-cinema .hl-hero-sub            { animation: hlBlurIn 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.85s forwards; }
.hl-hero.play-cinema .hl-hero-rule           { animation: hlRuleDraw 1.2s cubic-bezier(0.2, 1, 0.3, 1) 1.0s  forwards; }
.hl-hero.play-cinema .hl-hero-meta           { animation: hlBlurIn 1.0s cubic-bezier(0.22, 1, 0.36, 1) 1.1s  forwards; }

.hl-meta-dot { color: #D4C5A9; font-size: 14px; line-height: 1; }

@media (max-width: 768px) {
  .hl-hero           { padding: 85px 20px 50px; }
  .hl-hero-heading   { font-size: 34px; line-height: 1.3; margin-bottom: 28px; letter-spacing: -0.01em; }
  .hl-hero-sub       { font-size: 16px; line-height: 1.65; margin-bottom: 32px; }
  .hl-hero-eyebrow   { margin-bottom: 32px; }
}


/* ─── Services outer (white background section) ──────────────────────────── */
.hl-services-outer {
  background-color: #ffffff;
  width: 100%;
}

.hl-services-section {
  max-width: 980px;
  margin: 0 auto;
  padding: 90px 24px 110px;
  box-sizing: border-box;
}


/* ─── Section header ─────────────────────────────────────────────────────── */
.hl-sec-header {
  text-align: center;
  margin-bottom: 72px;
}

.hl-sec-title {
  font-family: "Libre Baskerville", serif;
  font-size: 38px;
  font-weight: 400;
  color: #0d0d0d;
  margin: 0 0 18px;
  letter-spacing: -0.02em;
}

.hl-sec-sub {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: #777;
  max-width: 540px;
  margin: 0 auto;
}

.hl-text-link {
  color: #555;
  border-bottom: 1px solid #ccc;
  text-decoration: none;
  padding-bottom: 1px;
  transition: color 0.3s ease, border-color 0.3s ease;
}

.hl-text-link:hover { color: #111; border-bottom-color: #555; }


/* ─── Service rows ───────────────────────────────────────────────────────── */
.hl-rows { display: flex; flex-direction: column; }

.hl-row {
  display: grid;
  grid-template-columns: 1fr 180px;
  align-items: start;
  gap: 40px;
  padding: 38px 0;
  position: relative;
  transition: padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Separator line — draws in after scroll trigger */
.hl-row::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #EDEBE6;
  width: 0;
  transition: width 1.0s cubic-bezier(0.22, 1, 0.36, 1) 0.25s;
}

.hl-row.line-ready::after { width: 100%; }

/* Hover: subtle warm indent */
.hl-row:hover { padding-left: 6px; }

/* Left side */
.hl-row-left {
  display: flex;
  gap: 26px;
  align-items: flex-start;
}

.hl-row-num {
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: #D4C5A9;
  padding-top: 6px;
  min-width: 22px;
  flex-shrink: 0;
}

.hl-row-content { flex: 1; }

.hl-row-name {
  font-family: "Libre Baskerville", serif;
  font-size: 26px;
  font-weight: 400;
  color: #1a1a1a;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.hl-row:hover .hl-row-name { color: #000; }

.hl-row-desc {
  font-family: "Inter", sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: #666;
  margin: 0 0 14px;
  max-width: 540px;
}

/* Duration tiers (Tarot only) */
.hl-row-tiers {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.hl-tier {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #555;
  background: #F8F4EE;
  padding: 5px 13px;
  border-radius: 20px;
}

.hl-tier-sep { color: #ccc; font-size: 13px; line-height: 1; }

.hl-row-note {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #aaa;
  margin-top: 6px;
}

/* Right side — price + CTA */
.hl-row-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
  padding-top: 4px;
}

.hl-price {
  font-family: "Libre Baskerville", serif;
  font-size: 22px;
  font-weight: 400;
  color: #1a1a1a;
  white-space: nowrap;
  letter-spacing: -0.01em;
  text-align: right;
}

.hl-price-sep { color: #bbb; }

.hl-book-btn {
  display: inline-block;
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #3F3F3C;
  background-color: #EFE4D2;
  padding: 10px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.hl-book-btn:hover {
  background-color: #E2D2BC;
  transform: translateY(-2px);
  box-shadow: none;
  color: #3F3F3C;
}


/* ─── Services CTA ───────────────────────────────────────────────────────── */
.hl-services-cta {
  text-align: center;
  padding-top: 70px;
}

.hl-cta-text {
  font-family: "Libre Baskerville", serif;
  font-style: italic;
  font-size: 24px;
  color: #555;
  margin: 0 0 28px;
}

.hl-cta-btn {
  display: inline-block;
  text-decoration: none;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  background-color: #EFE4D2;
  color: #3F3F3C;
  padding: 18px 44px;
  border-radius: 50px;
  transition: all 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.hl-cta-btn:hover {
  background-color: #E2D2BC;
  color: #3F3F3C;
  transform: translateY(-2px);
  box-shadow: none;
}


/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  .hl-services-section { padding: 70px 20px 90px; }
  .hl-sec-title        { font-size: 30px; }
  .hl-row              { grid-template-columns: 1fr 160px; gap: 24px; }
  .hl-row-name         { font-size: 23px; }
  .hl-price            { font-size: 19px; }
}

@media (max-width: 640px) {
  .hl-sec-header  { margin-bottom: 50px; }
  .hl-sec-title   { font-size: 26px; }

  /* Stack the row into single column */
  .hl-row {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 30px 0;
  }

  .hl-row:hover { padding-left: 0; }

  /* Price + book button sits below content, indented to align with text */
  .hl-row-right {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0 0 48px; /* 22px num + 26px gap = 48px */
  }

  .hl-price    { font-size: 18px; text-align: left; white-space: normal; }
  .hl-row-name { font-size: 21px; }
  .hl-row-desc { font-size: 14px; max-width: 100%; }

  .hl-services-cta { padding-top: 50px; }
  .hl-cta-text     { font-size: 20px; }
  .hl-cta-btn      { width: 100%; box-sizing: border-box; text-align: center; padding: 16px 24px; }
}


/* ─── Newsletter (scoped — home.css not loaded on this page) ─────────────── */
.newsletter-section-bg {
  background-color: #ffffff;
  width: 100%;
}

.newsletter-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
  font-family: "Libre Baskerville", serif;
}

.news-text-group { margin-bottom: 50px; }

.news-line-1,
.news-line-2 {
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity, filter;
  color: #0d0d0d;
  line-height: 1.2;
}

.news-line-1 { font-size: 32px; margin-bottom: 15px; }
.news-line-2 { font-size: 42px; margin: 0; }

.form-pill-wrapper {
  display: flex;
  align-items: center;
  background-color: #FAFAFA;
  border-radius: 100px;
  padding: 5px;
  max-width: 520px;
  margin: 0 auto;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  border: none;
  outline: none;
  box-shadow: none;
  opacity: 0;
  transform: translateY(30px);
  will-change: transform, opacity;
}

.form-pill-wrapper:focus-within {
  background-color: #FFFFFF;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transform: scale(1.02);
}

.newsletter-section.start-anim .news-line-1 {
  animation: cinematicUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.newsletter-section.start-anim .news-line-2 {
  animation: cinematicUp 1.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.2s;
}

.newsletter-section.start-anim .form-pill-wrapper {
  animation: cinematicUp 1.5s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: 0.4s;
}

.news-input {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  color: #555;
  background: transparent;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 15px 10px 15px 30px;
  flex-grow: 1;
}

.news-input::placeholder { color: #999; }

.news-btn {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #3F3F3C;
  background-color: #EFE4D2;
  border: none;
  border-radius: 50px;
  padding: 16px 32px;
  cursor: pointer;
  transition: all 0.4s ease;
  white-space: nowrap;
}

.news-btn:hover { background-color: #E2D2BC; color: #222; transform: translateY(-1px); }

#newsletter-message {
  margin-top: 15px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
}

@media (max-width: 768px) {
  .newsletter-section { padding: 40px 20px; }
  .news-line-1        { font-size: 24px; }
  .news-line-2        { font-size: 30px; }
  .form-pill-wrapper  {
    flex-direction: column;
    background: transparent;
    padding: 0;
    gap: 15px;
    box-shadow: none;
    transform: none;
  }
  .news-input {
    width: 100%;
    background-color: #FAFAFA;
    border-radius: 50px;
    padding: 18px 20px;
    text-align: center;
  }
  .news-btn { width: 100%; padding: 18px 0; }
}
