/* ===== Custom Properties ===== */
:root {
  /* Exact client palette (from the live site) */
  --color-bg-dark: #0d0d2b;     /* midnight navy */
  --color-bg: #141430;          /* dark navy surface */
  --color-bg-light: #1a1a3c;
  --color-bg-card: #1c1c40;
  --color-accent: #d4af37;      /* gold */
  --color-accent-light: #f0d68a;
  --color-purple: #310055;      /* deep purple accent */
  --color-purple-light: #a78bca;
  --color-blue: #4a6fa5;
  --color-text: #f5f0e8;        /* cream */
  --color-text-muted: #ffffff;  /* per client: former muted grey now white */
  --color-text-heading: #ffffff;
  --color-border: rgba(212, 175, 55, 0.15);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
  --max-width: 1200px;
  --section-padding: 100px 0;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--color-text);
  background-color: var(--color-bg-dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Typography ===== */
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--color-text-heading);
  text-align: center;
  margin-bottom: 12px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  font-weight: 300;
}

/* Per-client: certain section subtitles in white (larger / all-caps where noted) */
.testimonials-section .section-subtitle {
  color: var(--color-text-heading);
  font-size: 1.35rem;
}

.media-section .section-subtitle {
  color: var(--color-text-heading);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact .section-subtitle {
  color: var(--color-text-heading);
}

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-accent), #c4943f);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-accent-light), var(--color-accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--color-accent);
  border: 1.5px solid var(--color-accent);
}

.btn-outline:hover {
  background: rgba(212, 168, 83, 0.1);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(123, 94, 167, 0.2);
  color: var(--color-purple-light);
  border: 1px solid rgba(123, 94, 167, 0.3);
}

.btn-secondary:hover {
  background: rgba(123, 94, 167, 0.35);
  transform: translateY(-2px);
}

.btn-full {
  width: 100%;
  text-align: center;
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 10, 26, 0.95);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.4);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 0.02em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text);
  transition: color var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--color-accent);
  transition: width var(--transition);
}

.nav-link:hover {
  color: var(--color-accent);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link--cta {
  background: linear-gradient(135deg, var(--color-accent), #c4943f);
  color: var(--color-bg-dark) !important;
  padding: 10px 24px;
  border-radius: 4px;
  font-weight: 500;
}

.nav-link--cta::after {
  display: none;
}

.nav-link--cta:hover {
  box-shadow: 0 4px 16px rgba(212, 168, 83, 0.3);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 10, 26, 0.4) 0%,
    rgba(13, 10, 26, 0.5) 50%,
    rgba(13, 10, 26, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  text-align: center;
  padding: 0 24px;
  max-width: 800px;
}

.hero-subtitle {
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  color: var(--color-text-heading);
  line-height: 1;
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

/* "T.O.U.C.H." rendered in white, per client */
.hero-title .touch-gold {
  color: var(--color-text-heading);
}

/* Bold standout line sitting above the T.O.U.C.H. title */
.hero-acronym {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.hero-tagline {
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--color-text);
  max-width: 540px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

/* CTA pinned flush to the bottom of the hero, title stays centered above it */
.hero-buttons {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== About ===== */
.about {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.about-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-intro {
  font-family: var(--font-body);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 20px;
  font-style: normal;
}

/* "How I Became Aware of My Power" heading within My Story */
.about-subhead {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin: 36px 0 16px;
}

.about-text p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.9;
  margin-bottom: 20px;
}

.about-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.about-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--color-border);
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.stat-label {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ===== Testimonial cards ===== */
.testimonial-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 36px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-card blockquote p {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--color-text);
  line-height: 1.8;
  margin-bottom: 16px;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.85rem;
  color: var(--color-accent);
  font-weight: 500;
}

/* ===== Contact ===== */
.contact {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 16px;
}

.contact-info > p {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-text);
}

.contact-item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
}

.contact-offerings {
  margin-top: 32px;
}

.contact-offerings h4 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-heading);
  margin-bottom: 12px;
}

.contact-offerings li {
  color: var(--color-text-muted);
  font-size: 0.9rem;
  padding: 6px 0 6px 20px;
  position: relative;
}

.contact-offerings li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

/* Form */
.contact-form {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 48px;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 6px;
  transition: border-color var(--transition);
  outline: none;
}

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

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%239b95ad' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-bg-dark);
  border-top: 1px solid var(--color-border);
  padding: 60px 0 32px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-text-heading);
}

.footer-brand p {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  margin-top: 8px;
}

.footer-tagline {
  font-style: italic;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-disclaimer {
  max-width: 860px;
  margin: 0 auto 36px;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
}

.footer-disclaimer__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-heading);
  text-align: center;
  margin-bottom: 14px;
}

.footer-disclaimer p {
  font-size: 0.72rem;
  line-height: 1.7;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}

.footer-disclaimer__caps {
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid var(--color-border);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* ===== Testimonials Page ===== */
.page-header {
  position: relative;
  padding: 180px 0 80px;
  background:
    radial-gradient(ellipse at top, rgba(123, 94, 167, 0.25), transparent 60%),
    linear-gradient(180deg, var(--color-bg-dark) 0%, var(--color-bg) 100%);
  text-align: center;
}

.page-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--color-text-heading);
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.page-tagline {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.testimonial-story {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
}

.testimonial-story--alt {
  background: var(--color-bg);
}

.story-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.story-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: rgba(212, 168, 83, 0.1);
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.story-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 600;
  color: var(--color-text-heading);
  margin-bottom: 16px;
}

.story-header p {
  color: var(--color-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

.story-grid {
  display: grid;
  gap: 32px;
  align-items: start;
}

.story-grid--split {
  grid-template-columns: 1.2fr 1fr;
}

.story-grid--single {
  grid-template-columns: 1fr;
  max-width: 900px;
  margin: 0 auto;
}

.story-video,
.story-chat {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.story-video video {
  width: 100%;
  display: block;
  background: #000;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.story-video--vertical {
  max-width: 420px;
  margin: 0 auto;
}

.story-video--vertical video {
  aspect-ratio: 9 / 16;
  object-fit: contain;
}

.story-chat img {
  width: 100%;
  display: block;
  background: var(--color-bg);
}

.story-caption {
  padding: 14px 20px;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.05em;
  border-top: 1px solid var(--color-border);
  font-style: italic;
}

/* Bilingual video language toggle */
.lang-toggle {
  position: relative;
  display: flex;
  gap: 0;
  margin: 14px auto 0;
  padding: 4px;
  width: max-content;
  background: var(--color-bg-dark);
  border: 1px solid var(--color-border);
  border-radius: 999px;
}

.lang-toggle__slider {
  position: absolute;
  top: 4px;
  left: 4px;
  width: calc(50% - 4px);
  height: calc(100% - 8px);
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-accent), #c4943f);
  transition: transform 0.25s ease;
}

/* Move the slider under the second button when Español is active */
.lang-toggle:has(.lang-toggle__btn[data-lang="es"].is-active) .lang-toggle__slider {
  transform: translateX(100%);
}

.lang-toggle__btn {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 92px;
  padding: 7px 18px;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-text-muted);
  border-radius: 999px;
  transition: color 0.25s ease;
}

.lang-toggle__btn.is-active {
  color: var(--color-bg-dark);
}

.testimonial-cta {
  padding: var(--section-padding);
  background:
    radial-gradient(ellipse at bottom, rgba(212, 168, 83, 0.12), transparent 60%),
    var(--color-bg-dark);
  text-align: center;
}

.testimonial-cta .section-subtitle {
  margin-bottom: 40px;
}

.nav-link--active {
  color: var(--color-accent);
}

.nav-link--active::after {
  width: 100%;
}

@media (max-width: 900px) {
  .story-grid--split {
    grid-template-columns: 1fr;
  }
}

/* ===== Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 72px 0;
  }

  .nav-toggle {
    display: flex;
    margin-left: auto;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-dark);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 32px;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  }

  .nav-menu.open {
    right: 0;
  }

  .nav-link {
    font-size: 1.25rem;
  }

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

  .contact-form {
    padding: 32px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 28px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  .about-stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ===== New sections (scaffold) ===== */
.energy-healing {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.testimonials-section {
  padding: var(--section-padding);
  background: var(--color-bg-dark);
}

/* Testimonial video grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  max-width: 960px;
  margin: 40px auto 0;
}

.video-card {
  margin: 0;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.video-card video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: #000;
}

.video-card iframe {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  border: 0;
  background: #000;
}

.video-card figcaption {
  padding: 18px 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--color-text-heading);
}

/* Media section */
.media-section {
  padding: var(--section-padding);
  background: var(--color-bg);
}

.media-feature {
  max-width: 820px;
  margin: 40px auto 0;
}

.media-feature + .media-feature {
  margin-top: 48px;
}

.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border: 1px solid var(--color-border);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.video-embed iframe,
.video-embed video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
}

.media-feature__title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 600;
  text-align: center;
  color: var(--color-text-heading);
  margin-bottom: 4px;
}

.media-feature__role {
  text-align: center;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text-heading);
  margin-bottom: 20px;
}

/* "Read the messages" link on a video card */
.chat-link {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 12px 16px;
  border: 0;
  border-top: 1px solid var(--color-border);
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--color-purple-light);
  transition: background 0.2s ease, color 0.2s ease;
}

.chat-link:hover {
  background: rgba(167, 139, 202, 0.1);
  color: var(--color-accent);
}

/* Letters sub-section — a stacked deck of cards */
.letters-block {
  margin: 72px auto 0;
  text-align: center;
}

.letters-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 600;
  color: var(--color-text-heading);
}

.letters-subtitle {
  margin: 6px 0 40px;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

.letters-deck {
  position: relative;
  width: 300px;
  height: 230px;
  margin: 0 auto;
  cursor: pointer;
  outline-offset: 6px;
}

.letter-card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
  transform-origin: 50% 90%;
  /* each card sits 5deg clockwise from the one below it */
  transform: rotate(calc(var(--i) * 5deg));
  transition: transform 0.3s ease;
}

/* On hover/focus the deck fans out a little to invite a click */
.letters-deck:hover .letter-card,
.letters-deck:focus-visible .letter-card {
  transform: rotate(calc(var(--i) * 9deg - 4deg));
}

.letters-deck__hint {
  position: absolute;
  left: 50%;
  bottom: -34px;
  transform: translateX(-50%);
  white-space: nowrap;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-text-heading);
}

/* Lightbox overlay for chat screenshots & letters carousel */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  overflow-y: auto;
  padding: 48px 16px;
  background: rgba(0, 0, 0, 0.88);
  -webkit-overflow-scrolling: touch;
}

.lightbox.is-open {
  display: flex;
}

.lightbox__img {
  max-width: min(94vw, 920px);
  max-height: 86vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Tall images (e.g. phone-screenshot chats): cap width and scroll vertically */
.lightbox--tall {
  align-items: flex-start;
}

.lightbox--tall .lightbox__img {
  width: min(92vw, 440px);
  max-width: none;
  max-height: none;
}

.lightbox__nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox__nav:hover {
  background: rgba(255, 255, 255, 0.22);
}

.lightbox__nav--prev { left: 16px; }
.lightbox__nav--next { right: 16px; }

.lightbox__close {
  position: fixed;
  top: 16px;
  right: 20px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* Energy Healing — intro copy */
.energy-healing-text {
  max-width: 720px;
  margin: 32px auto 0;
  text-align: center;
}

.energy-healing-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  margin-bottom: 32px;
}

.energy-healing-text .btn {
  margin: 0 auto;
}

/* Earth-energy video within the Energy Healing section */
.energy-healing-video {
  max-width: 820px;
  margin: 8px auto 40px;
}

.energy-healing-cta {
  text-align: center;
}

/* Placeholder note — remove each as its section is filled in */
.placeholder-note {
  max-width: 640px;
  margin: 32px auto 0;
  padding: 40px 32px;
  text-align: center;
  border: 1px dashed var(--color-border);
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.04);
}

.placeholder-note p {
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 24px;
}

.placeholder-note .btn {
  margin: 0 auto;
}

/* ===== Scheduling page ===== */
.scheduler {
  padding: 140px 0 100px;        /* top padding clears the fixed navbar */
  background: var(--color-bg-dark);
  min-height: 80vh;
}

.slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 48px auto 0;
}

.slot-day {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 24px;
}

.slot-day-label {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-text-heading);
  margin-bottom: 16px;
}

.slot-times {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.slot-btn {
  flex: 1 1 auto;
  min-width: 110px;
  padding: 12px 18px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  background: rgba(212, 175, 55, 0.06);
  border: 1.5px solid var(--color-accent);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.slot-btn:hover {
  background: rgba(212, 175, 55, 0.18);
  transform: translateY(-2px);
}

.slot-btn.selected {
  background: linear-gradient(135deg, var(--color-accent), #c4943f);
  color: var(--color-bg-dark);
  border-color: var(--color-accent);
}

.slot-empty {
  text-align: center;
  color: var(--color-text-muted);
  margin-top: 32px;
}

/* Request form is gated until a slot is chosen */
.booking-form {
  max-width: 560px;
  margin: 48px auto 0;
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.booking-form.active {
  opacity: 1;
  pointer-events: auto;
}

.booking-summary {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text);
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}

.booking-confirm {
  max-width: 560px;
  margin: 48px auto 0;
  text-align: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 48px 32px;
}

.booking-confirm h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.booking-confirm p {
  color: var(--color-text);
  margin-bottom: 12px;
}

.booking-confirm-note {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  font-style: italic;
}

.booking-confirm .btn {
  margin: 20px auto 0;
}

/* ===== Payment step ===== */
.payment-heading {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-heading);
  text-align: center;
  margin-bottom: 24px;
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}

.payment-method {
  padding: 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--color-text);
  background: var(--color-bg-card);
  border: 1.5px solid var(--color-border);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.payment-method:hover {
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.payment-method.selected {
  color: var(--color-bg-dark);
  background: linear-gradient(135deg, var(--color-accent), #c4943f);
  border-color: var(--color-accent);
}

.payment-panel {
  margin-bottom: 24px;
}

.payment-note {
  color: var(--color-text);
  line-height: 1.7;
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 20px 24px;
}

.payment-note strong {
  color: var(--color-accent);
}

.qr-pay {
  text-align: center;
}

.qr-holder {
  display: inline-block;
  padding: 14px;
  background: #f5f0e8;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.qr-holder .qr-code {
  display: block;
}

.form-row {
  display: flex;
  gap: 16px;
}

.form-row .form-group {
  flex: 1;
}

.btn-back {
  display: block;
  margin: 16px auto 0;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.btn-back:hover {
  color: var(--color-accent);
}

@media (max-width: 480px) {
  .payment-methods {
    grid-template-columns: 1fr;
  }
}
