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

:root {
  --color-primary-gold: #C89B3C;
  --color-dark: #2c2c2c;
  --color-white: #FFFFFF;
  --color-light-gold: #F5E6B5;
  --color-accent-deep-gold: #8A6A18;
  --color-cream: #f3f3e3;

  --font-heading: 'Playfair Display', serif;
  --font-body: 'Cousine', monospace;
  --font-sacred: 'Cinzel', serif;
  --font-japanese: 'Shippori Mincho', serif;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-7: 28px;
  --space-8: 32px;
  --space-9: 36px;
  --space-10: 40px;
  --space-11: 44px;
  --space-12: 48px;
  --space-14: 56px;
  --space-16: 64px;
  --space-18: 72px;
  --space-20: 80px;
  --space-22: 88px;
  --space-24: 96px;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-md: 1.125rem;
  --text-lg: 1.25rem;
  --text-xl: 1.5rem;
  --text-2xl: 1.75rem;
  --text-3xl: 3rem;
  --text-4xl: clamp(3rem, 5vw, 4.5rem);
  --text-hero: clamp(2.5rem, 5vw, 4.5rem);

  --leading-tight: 1.15;
  --leading-snug: 1.3;
  --leading-normal: 1.6;
  --leading-relaxed: 1.75;
  --leading-loose: 1.85;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;
  --radius-full: 9999px;

  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-body);
  font-size: 18px;
  letter-spacing: 0.5px;
  color: var(--color-dark);
  background: var(--color-white);
  line-height: var(--leading-normal);
}

::selection {
  background: var(--color-primary-gold);
  color: var(--color-white);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: var(--leading-tight);
  letter-spacing: 1px;
}

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

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

ul, ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input, textarea, select {
  font: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

[data-reveal],
[data-reveal-stagger],
[data-reveal-left],
[data-reveal-right] {
  opacity: 1;
}

.bg-dark {
  background: var(--color-dark);
  color: var(--color-white);
}

.bg-light {
  background: var(--color-cream);
}

.bg-cream {
  background: var(--color-cream);
}

/* ========== LAYOUT ========== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  min-height: 72px;
  transition: all 0.3s ease;
  opacity: 0;
  pointer-events: none;
}

.navbar--solid {
  opacity: 1;
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.navbar-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: #394534;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.navbar-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.navbar-link {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
  position: relative;
  padding: 4px 0;
}

.navbar-link--active {
  color: var(--color-cream);
  font-weight: 500;
}

.navbar-link--active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-primary-gold);
  border-radius: 1px;
}

.navbar--solid .navbar-link {
  color: rgba(0, 0, 0, 0.7);
}

.navbar--solid .navbar-link:hover {
  color: var(--color-primary-gold);
}

.navbar-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 101;
}

.navbar-hamburger span,
.navbar-hamburger-line {
  width: 24px;
  height: 2px;
  background: currentColor;
  transition: all 0.3s ease;
  border-radius: 1px;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(22, 22, 22, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  visibility: hidden;
  will-change: transform;
}

.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-overlay {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mobile-menu-overlay::before,
.mobile-menu-overlay::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  border-radius: 40%;
  opacity: 0;
  will-change: transform, opacity;
}

.mobile-menu.is-open .mobile-menu-overlay::before {
  background: radial-gradient(ellipse at 30% 40%, rgba(200, 155, 60, 0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(138, 106, 24, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
  animation: smoke-fade-in 1s 0.4s ease forwards, smoke-drift-1 12s 0.4s ease-in-out infinite;
  filter: blur(40px);
}

.mobile-menu.is-open .mobile-menu-overlay::after {
  background: radial-gradient(ellipse at 60% 30%, rgba(200, 155, 60, 0.08) 0%, transparent 55%),
              radial-gradient(ellipse at 30% 70%, rgba(255, 255, 255, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 80% 50%, rgba(138, 106, 24, 0.06) 0%, transparent 60%);
  animation: smoke-fade-in 1.2s 0.5s ease forwards, smoke-drift-2 16s 0.5s ease-in-out infinite;
  filter: blur(50px);
}

@keyframes smoke-fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes smoke-drift-1 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(4%, 3%) rotate(8deg); }
  66%  { transform: translate(-3%, 5%) rotate(-5deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

@keyframes smoke-drift-2 {
  0%   { transform: translate(0, 0) rotate(0deg); }
  33%  { transform: translate(-5%, -3%) rotate(-7deg); }
  66%  { transform: translate(3%, -4%) rotate(6deg); }
  100% { transform: translate(0, 0) rotate(0deg); }
}

.mobile-menu-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--color-white);
  padding: 8px;
  z-index: 201;
}

.mobile-menu-links {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.mobile-menu-link {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  padding: 16px;
  transition: color 0.3s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link--active {
  color: var(--color-primary-gold);
}

.footer {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0 40px;
  border-top: 1px solid rgba(200, 155, 60, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

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

.footer-logo {
  display: inline-block;
}

.footer-logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary-gold);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.footer-blurb {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 12px;
}

.footer-heading {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
}

.footer-link {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  padding: 6px 0;
  transition: color 0.3s ease;
}

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

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-icon {
  flex-shrink: 0;
  font-size: 14px;
  line-height: 1;
  filter: grayscale(1) brightness(2) contrast(0.9);
  margin-top: 1px;
}

.footer-contact-content {
  flex: 1;
  min-width: 0;
}

.footer-contact-link,
.footer-contact-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9rem;
  line-height: 1.5;
  display: block;
  word-break: break-word;
  overflow-wrap: anywhere;
  transition: color 0.3s ease;
}

.footer-contact-link:hover {
  color: var(--color-primary-gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 40px;
  padding: 24px 0;
  text-align: center;
}

.footer-copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-disclaimer {
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  font-style: italic;
  max-width: 1200px;
  margin: 16px auto 0;
  padding: 0 24px;
  line-height: 1.6;
}

.footer a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer a:hover {
  color: var(--color-primary-gold);
}

.footer-copyright a {
  color: var(--color-primary-gold);
}

.footer-copyright a:hover {
  color: var(--color-light-gold);
}

.sticky-book-btn {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}

.sticky-book-btn.is-visible {
  opacity: 1;
  visibility: visible;
}

.sticky-book-btn-inner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-primary-gold);
  color: var(--color-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 14px 28px;
  font-size: 0.8rem;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
  box-shadow: 0 4px 20px rgba(200, 155, 60, 0.3);
}

.sticky-book-btn-inner:hover {
  background: var(--color-accent-deep-gold);
  color: var(--color-white);
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.degrees-stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  justify-items: center;
}

.degrees-stack .session-card {
  width: 100%;
  max-width: 640px;
  border: 2px solid var(--color-dark);
  border-radius: 16px;
}

.degrees-stack .session-card:hover {
  border-color: var(--color-dark);
}

.degrees-stack .session-card-header {
  justify-content: center;
  text-align: center;
}

.degrees-stack .session-card-list {
  text-align: center;
}

.degrees-stack .session-card-list p {
  text-align: center;
}

.degrees-stack .btn {
  width: 100%;
}

.chakras {
  padding: 96px 0;
}

.meditation {
  padding: 96px 0;
}

.session-videos {
  padding: 96px 0;
}

.session-videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
}

.session-video-player {
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed rgba(200, 155, 60, 0.4);
  border-radius: 8px;
  background: var(--color-dark);
  overflow: hidden;
  padding: 0;
}

.session-video-player video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.session-video-player p {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.5);
}

.meditation-placeholder {
  max-width: 640px;
  margin: 0 auto;
  padding: 80px 24px;
  border: 2px dashed rgba(200, 155, 60, 0.4);
  border-radius: 8px;
  text-align: center;
}

.meditation-placeholder p {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.5);
}

.chakra-column {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 0;
}

.chakra-column::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, var(--color-primary-gold) 8%, var(--color-primary-gold) 92%, transparent);
  opacity: 0.5;
}

.chakra-item {
  position: relative;
  width: 50%;
  padding: 20px 56px 20px 0;
}

.chakra-item:nth-child(even) {
  margin-left: 50%;
  padding: 20px 0 20px 56px;
}

.chakra-node {
  position: absolute;
  top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #d4af5f, var(--color-primary-gold));
  color: var(--color-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.85), 0 0 24px rgba(200, 155, 60, 0.45);
  z-index: 2;
}

.chakra-item:nth-child(odd) .chakra-node {
  left: 100%;
  transform: translate(-50%, 0);
}

.chakra-item:nth-child(even) .chakra-node {
  right: 100%;
  transform: translate(50%, 0);
}

.chakra-body {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 4px;
  padding: 26px 28px;
  transition: all 0.3s ease;
}

.chakra-item:hover .chakra-body {
  border-color: rgba(200, 155, 60, 0.4);
  box-shadow: 0 8px 32px rgba(200, 155, 60, 0.12);
  transform: translateY(-3px);
}

.chakra-item:nth-child(odd) .chakra-body {
  text-align: right;
}

.chakra-item:nth-child(even) .chakra-body {
  text-align: left;
}

.chakra-name {
  font-size: 20px;
  margin-bottom: 4px;
}

.chakra-sanskrit {
  display: inline-block;
  font-family: var(--font-sacred);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  margin-bottom: 12px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(200, 155, 60, 0.25);
}

.chakra-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 12px;
}

.chakra-crystals {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.55);
}

.chakra-crystals strong {
  color: var(--color-dark);
}

/* ========== COMPONENTS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  border-radius: 2px;
  font-size: 0.8rem;
  min-height: 48px;
}

.btn--primary {
  background: var(--color-primary-gold);
  color: var(--color-dark);
  border: 1px solid var(--color-primary-gold);
  padding: 14px 36px;
}

.btn--primary:hover {
  background: var(--color-accent-deep-gold);
  border-color: var(--color-accent-deep-gold);
  color: var(--color-white);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary-gold);
  border: 1px solid var(--color-primary-gold);
  padding: 14px 36px;
}

.btn--ghost:hover {
  background: var(--color-primary-gold);
  color: var(--color-dark);
}

.btn--success {
  background: #22c55e;
  border-color: #22c55e;
  color: var(--color-white);
  pointer-events: none;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-heading-eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  margin-bottom: 12px;
  display: block;
  font-weight: 600;
}

.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 48px);
  margin-bottom: 16px;
  font-weight: 600;
}

.section-heading p {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}

.section-heading--light h2 {
  color: var(--color-white);
}

.section-heading--light p {
  color: rgba(255, 255, 255, 0.7);
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  flex-shrink: 0;
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  color: var(--color-primary-gold);
  stroke-width: 1.5;
}

.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.8rem;
  border: 1px solid rgba(200, 155, 60, 0.3);
  color: var(--color-primary-gold);
  background: rgba(200, 155, 60, 0.05);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-dark);
  background: var(--color-white);
  outline: none;
  transition: all 0.3s ease;
  min-height: 48px;
}

.form-control:focus {
  border-color: var(--color-primary-gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.1);
}

.form-control--error {
  border-color: #e53e3e;
  animation: shake 0.4s ease;
}

.form-error {
  color: #e53e3e;
  font-size: 0.8rem;
  margin-top: 4px;
  display: none;
}

.form-error.is-visible {
  display: block;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-4px); }
  40%, 80% { transform: translateX(4px); }
}

.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 2rem;
  gap: 1rem;
  animation: fadeInUp 0.5s ease;
}

.contact-form-success h3 {
  font-family: 'Cinzel', serif;
  font-size: 1.5rem;
  color: var(--color-gold);
  margin: 0;
}

.contact-form-success p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  line-height: 1.6;
}

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

/* ========== SECTIONS ========== */
.hero {
  min-height: 100vh;
  background: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
  opacity: 1;
  z-index: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

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

.hero-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 4s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.hero h1 {
  font-family: var(--font-japanese);
  font-size: clamp(2.5rem, 5vw, 72px);
  color: var(--color-white);
  line-height: 1.15;
  margin-bottom: 24px;
  font-weight: 500;
  letter-spacing: 0.06em;
  padding-bottom: 0.15em;
  text-shadow: 0 0 40px rgba(200, 155, 60, 0.3), 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-line {
  display: block;
}

.hero-char {
  display: inline-block;
  overflow: hidden;
  padding-bottom: 0.15em;
}

.hero-char-inner {
  display: inline-block;
  will-change: transform, opacity, filter;
}

.hero-char--space {
  width: 0.3em;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.75;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

.welcome {
  background: var(--color-cream);
  padding: 96px 0;
}

.welcome-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
}

.welcome-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 20px;
}

.welcome-content p:last-child {
  margin-bottom: 0;
}

.welcome-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.reiki {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
}

.reiki-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 500px;
  width: 100%;
}

.reiki-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

.reiki-image-container {
  width: 100%;
  max-width: 100%;
  height: 40rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 20px;
  background: var(--color-dark); 
}

.reiki-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  mix-blend-mode: screen; 
}

.reiki-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.85;
  text-align: left;
}

.reiki-text p {
  margin-bottom: 16px;
}

.reiki-text strong {
  color: var(--color-primary-gold);
}

.reiki-text ul {
  margin: 16px 0;
  padding-left: 0;
}

.reiki-definitions {
  margin: 16px 0;
  padding-left: 0;
}

.reiki-definitions li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.reiki-definitions li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--color-primary-gold);
}

.reiki-text li {
  padding: 6px 0 6px 24px;
  position: relative;
}

.reiki-text li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--color-primary-gold);
}

.why-learn {
  padding: 96px 0;
  background: var(--color-cream);
}

.master {
  padding: 96px 0;
}

.master-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 45px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.master-portrait {
  position: relative;
  width: 350px;
  height: 485px;
  max-width: 100%;
  margin-top: 32px;
  border-radius: 8px;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e0d0, #d4c8b0);
}

.master-portrait-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.master-portrait-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.master-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 0%;
  background: var(--color-primary-gold);
  border-radius: 2px;
  transition: none;
  display: none;
}

.master-info {
  display: flex;
  flex-direction: column;
}

.master-name {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.master-subtitle {
  color: var(--color-primary-gold);
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.master-info p {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.master-text {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.85;
}

.master-text h3 {
  font-size: 24px;
  margin-bottom: 8px;
}

.master-text .subtitle {
  color: var(--color-primary-gold);
  font-size: 0.9rem;
  margin-bottom: 24px;
  font-weight: 500;
}

.master-text p {
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.8;
  margin-bottom: 16px;
}

.benefit-tags {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 80px 0;  
  overflow: hidden;
}

.benefit-tags-intro {
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 16px;
  width: max-content;
}

.marquee-track.is-animated {
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-tag {
  padding: 14px 28px;
  border-radius: 9999px;
  border: 1px solid rgba(200, 155, 60, 0.4);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  white-space: nowrap;
  flex-shrink: 0;
}

.testimonials {
  padding: 96px 0;
  background: var(--color-cream);
  overflow: hidden;
  position: relative;
}

.carousel {
  max-width: 640px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.carousel-track {
  position: relative;
  height: 260px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  padding: 0;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  visibility: visible;
}

.carousel-quote-mark {
  font-family: var(--font-heading);
  font-size: 6rem;
  color: var(--color-primary-gold);
  opacity: 0.15;
  line-height: 1;
  margin-bottom: -20px;
}

.carousel-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  font-style: italic;
  margin-bottom: 24px;
}

.carousel-author {
  font-size: 0.85rem;
  color: var(--color-primary-gold);
  font-weight: 500;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1.5px solid var(--color-primary-gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--color-primary-gold);
}

.home-cta {
  background: var(--color-dark);
  padding: 128px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 40px auto 40px;
  max-width: 1100px;
  border-radius: 16px;
}

.home-cta-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 4s ease-in-out infinite;
}

.home-cta h2 {
  font-size: clamp(1.8rem, 3vw, 48px);
  color: var(--color-white);
  margin-bottom: 16px;
  font-weight: 600;
}

.home-cta p {
  color: rgba(255, 255, 255, 0.65);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.sessions-hero .hero-title {
  font-size: clamp(2rem, 3vw, 48px);
  margin-bottom: 20px;
  font-weight: 600;
}

.sessions-hero .hero-subtitle {
  max-width: 640px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

.sessions-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 40%, rgba(200, 155, 60, 0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 60%, rgba(200, 155, 60, 0.08) 0%, transparent 50%),
              linear-gradient(160deg, #0a0a0a 0%, #141210 30%, #1a1614 60%, #0a0a0a 100%);
}

/* Sessions Hero — Enhanced */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  margin-bottom: 20px;
}

.hero-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-primary-gold), transparent);
  margin: 0 auto 28px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 36px;
}

.btn--hero {
  border-radius: 9999px;
  padding: 16px 40px;
  font-size: 0.82rem;
}

.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.hero-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.35);
  animation: particleFloat ease-in-out infinite;
}

.hero-particle:nth-child(1) {
  left: 15%;
  bottom: -10%;
  width: 2px;
  height: 2px;
  animation-duration: 14s;
  animation-delay: 0s;
}

.hero-particle:nth-child(2) {
  left: 35%;
  bottom: -10%;
  width: 3px;
  height: 3px;
  animation-duration: 18s;
  animation-delay: 3s;
}

.hero-particle:nth-child(3) {
  left: 55%;
  bottom: -10%;
  width: 2px;
  height: 2px;
  animation-duration: 16s;
  animation-delay: 1.5s;
}

.hero-particle:nth-child(4) {
  left: 75%;
  bottom: -10%;
  width: 4px;
  height: 4px;
  animation-duration: 20s;
  animation-delay: 5s;
}

.hero-particle:nth-child(5) {
  left: 90%;
  bottom: -10%;
  width: 2px;
  height: 2px;
  animation-duration: 15s;
  animation-delay: 7s;
}

.contact-hero-gradient {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 30%, rgba(200, 155, 60, 0.12) 0%, transparent 55%),
              radial-gradient(ellipse at 30% 70%, rgba(200, 155, 60, 0.06) 0%, transparent 50%),
              linear-gradient(200deg, #0a0a0a 0%, #10100e 35%, #161412 65%, #0a0a0a 100%);
}

.sessions-grid {
  padding: 96px 0;
  background: var(--color-white);
}

.sessions-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.session-card {
  background: var(--color-white);
  border-radius: 4px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  padding: 32px;
  transition: all 0.3s ease;
}

.session-card:hover {
  border-color: rgba(200, 155, 60, 0.4);
  box-shadow: 0 8px 32px rgba(200, 155, 60, 0.1);
  transform: translateY(-4px);
}

.session-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.session-card h3 {
  font-size: 24px;
  margin-bottom: 0;
}

.session-card p {
  font-size: 18px;
  color: rgba(0, 0, 0, 0.6);
  line-height: 1.7;
  margin-bottom: 16px;
}

.session-card-price {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--color-primary-gold);
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  padding: 5px 14px;
  border-radius: 9999px;
}

.session-card-includes-title {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
}

.session-card-list {
  list-style: none;
  margin-bottom: 24px;
}

.session-card-list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
}

.session-card-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary-gold);
}

.session-card--detailed .btn {
  width: 100%;
  text-align: center;
}

.timeline {
  padding: 96px 0;
  background: var(--color-white);
  overflow: hidden;
}

.timeline-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.timeline-track {
  position: relative;
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}

.timeline-line-bg {
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  height: 2px;
  background: rgba(0, 0, 0, 0.08);
}

.timeline-line-progress {
  position: absolute;
  top: 55px;
  left: 0;
  height: 2px;
  background: var(--color-primary-gold);
  width: 0%;
}

.timeline-step {
  flex: 1;
  text-align: center;
  position: relative;
  padding: 0 12px;
}

.timeline-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  margin: 0 auto 16px;
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
  color: rgba(0, 0, 0, 0.35);
}

.timeline-number.is-active {
  background: var(--color-primary-gold);
  color: var(--color-white);
  box-shadow: 0 0 20px rgba(200, 155, 60, 0.3);
}

.timeline-step h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.6;
  max-width: 200px;
  margin: 0 auto;
}

.faq {
  padding: 96px 0;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.faq-item {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 4px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item.is-open {
  border-color: rgba(200, 155, 60, 0.3);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-dark);
  text-align: left;
  background: transparent;
  cursor: pointer;
}

.faq-question:hover {
  color: var(--color-primary-gold);
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  margin-left: 16px;
  color: rgba(0, 0, 0, 0.3);
}

.faq-item.is-open .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary-gold);
}

.faq-answer {
  height: 0;
  overflow: hidden;
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.6);
}

.contact-section {
  padding: 96px 0;
  background: var(--color-cream);
}

.contact-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 48px;
}

/* ========== CONTACT FORM — REIKI THEME ========== */
.contact-form-wrapper {
  position: relative;
  background: var(--color-white);
  border: 1px solid rgba(200, 155, 60, 0.15);
  border-radius: 8px;
  padding: 40px;
  overflow: hidden;
}

.contact-form-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
  top: -80px;
  right: -80px;
  pointer-events: none;
  animation: breathe 6s ease-in-out infinite;
}

.contact-form .form-label {
  color: var(--color-primary-gold);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.contact-form .form-control {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 6px;
  transition: all 0.3s ease;
}

.contact-form .form-control:hover {
  border-color: rgba(200, 155, 60, 0.4);
}

.contact-form .form-control:focus {
  border-color: var(--color-primary-gold);
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.12);
  background: var(--color-white);
}

.contact-form .form-control::placeholder {
  color: rgba(0, 0, 0, 0.25);
  font-style: italic;
}

.contact-form select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23C89B3C' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.contact-form .form-row {
  gap: 20px;
}

.contact-form .form-group {
  margin-bottom: 22px;
}

.contact-form .contact-form-submit {
  width: 100%;
  margin-top: 8px;
  position: relative;
  overflow: hidden;
  background: var(--color-primary-gold);
  color: var(--color-dark);
  border: 1px solid var(--color-primary-gold);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  padding: 16px 36px;
  transition: all 0.3s ease;
}

.contact-form .contact-form-submit::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s ease;
}

.contact-form .contact-form-submit:hover::before {
  left: 100%;
}

.contact-form .contact-form-submit:hover {
  background: var(--color-accent-deep-gold);
  border-color: var(--color-accent-deep-gold);
  color: var(--color-white);
  box-shadow: 0 8px 30px rgba(200, 155, 60, 0.35);
  transform: translateY(-2px);
}

.contact-info-card {
  background: var(--color-white);
  border-radius: 4px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.contact-info-name {
  font-size: 1.3rem;
  margin-bottom: 4px;
}

.contact-info-subtitle {
  color: var(--color-primary-gold);
  font-size: 0.9rem;
  margin-bottom: 32px;
}

.contact-info-items {
  display: flex;
  flex-direction: column;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-info-label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(0, 0, 0, 0.35);
}

.contact-info-value {
  font-size: 0.9rem;
}

.contact-info-status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}

.contact-info-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #48bb78;
  animation: pulse 2s infinite;
}

.hours {
  padding: 96px 0;
  background: var(--color-white);
}

.hours-table {
  max-width: 480px;
  margin: 0 auto;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hours-day {
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hours-time {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.6);
}

.hours-row--active {
  color: var(--color-primary-gold);
  font-weight: 500;
}

.hours-row--active .hours-time {
  color: var(--color-primary-gold);
  font-weight: 500;
}

.hours-row--active .hours-day svg {
  color: var(--color-primary-gold);
}

/* ========== ABOUT HARISH ========== */
.about-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-hero-image {
  display: none;
}

.about-page .hero-content {
  text-align: left;
  max-width: 800px;
  padding: 0 24px;
  margin: 0;
}

.about-page .hero-line:last-child {
  color: #FFD700;
}

.about-page .about-hero {
  justify-content: flex-start;
  padding-left: 8%;
}

/* ========== STORY FLOW ========== */
.story-flow {
  position: relative;
  background: var(--color-cream);
  padding: 80px 0 100px;
  overflow: hidden;
}

.story-flow-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.story-flow-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.2);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

.story-flow-opening {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
  padding: 0 24px;
}

.story-flow-mandala {
  color: var(--color-primary-gold);
  margin-bottom: 32px;
  animation: slowSpin 60s linear infinite;
}

@keyframes slowSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.story-flow-greeting,
.story-flow-location {
  overflow: hidden;
}

.story-flow-greeting {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  color: var(--color-dark);
  margin-bottom: 8px;
  font-weight: 500;
}

.story-flow-location {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.4);
  margin-bottom: 28px;
  letter-spacing: 0.04em;
}

.typewriter-cursor {
  display: inline-block;
  width: 2px;
  margin-left: 2px;
  background: var(--color-primary-gold);
  animation: cursorBlink 0.8s step-end infinite;
  vertical-align: text-bottom;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.story-flow-divider {
  width: 100px;
  margin: 0 auto 28px;
  color: var(--color-primary-gold);
}

.story-flow-intro-text {
  font-size: 1.05rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.55);
  margin-bottom: 40px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.story-flow-question {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  color: var(--color-primary-gold);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.story-wave {
  position: relative;
  z-index: 1;
  width: 100%;
  color: var(--color-primary-gold);
  margin: 8px 0;
  line-height: 0;
  opacity: 0.4;
}

.story-wave svg {
  display: block;
  width: 100%;
  height: 40px;
}

.story-chapter {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 40px 50px;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--color-white);
  opacity: 0;
  transform: translateY(30px);
  overflow: hidden;
}

.story-chapter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0%, var(--color-primary-gold) 10%, transparent 20%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.story-chapter::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-white);
  border-radius: 18px;
  z-index: -1;
}

.story-chapter:hover::before {
  opacity: 1;
  animation: border-rotate 3s linear infinite;
}

.story-chapter:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.story-chapter-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 155, 60, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.story-chapter-glow--warm {
  background: radial-gradient(circle, rgba(200, 155, 60, 0.12) 0%, transparent 70%);
}

.story-chapter-glow--gold {
  background: radial-gradient(circle, rgba(200, 155, 60, 0.15) 0%, transparent 70%);
  width: 400px;
  height: 400px;
}

.story-chapter-symbol {
  color: #3d3218;
  opacity: 0.08;
  transition: opacity 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  border-radius: 0;
  background: none;
  border: none;
}

.story-chapter-symbol svg {
  width: 120px;
  height: 120px;
}

.story-chapter:hover .story-chapter-symbol {
  opacity: 0.14;
}

.story-chapter-symbol--lotus {
  margin-bottom: 0;
}

.story-chapter-symbol--lotus svg {
  width: 160px;
  height: 160px;
}

.story-chapter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  color: var(--color-dark);
  margin-bottom: 20px;
  font-weight: 500;
  letter-spacing: 0.01em;
  position: relative;
  z-index: 1;
}

.story-chapter-body {
  position: relative;
  z-index: 1;
}

.story-chapter-body p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.story-chapter-body p:last-child {
  margin-bottom: 0;
}

.story-chapter-emphasis {
  color: var(--color-primary-gold) !important;
  font-style: italic;
  font-weight: 500;
  margin-top: 6px;
}

.story-chapter-energy-line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(200, 155, 60, 0.3), transparent);
  margin-top: 28px;
}

.story-chapter--highlight {
  border-color: rgba(200, 155, 60, 0.2);
}

.story-chapter--final {
  border-color: rgba(200, 155, 60, 0.25);
  background: rgba(200, 155, 60, 0.04);
  text-align: center;
}

.story-flow-cta {
  display: inline-block;
  margin-top: 28px;
  padding: 16px 40px;
  background: var(--color-primary-gold);
  color: #fff;
  border: 1px solid var(--color-primary-gold);
  border-radius: 9999px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: all 0.4s ease;
}

.story-flow-cta:hover {
  background: #b8953a;
  border-color: #b8953a;
  box-shadow: 0 8px 30px rgba(200, 155, 60, 0.3);
  transform: translateY(-2px);
}

.story-chapter.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== ANIMATIONS ========== */
@keyframes breathe {
  0%, 100% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes border-rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes drawLine {
  from {
    stroke-dashoffset: var(--dash-length, 1);
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes iconPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}

/* ========== PROGRAMS ========== */
.programs {
  padding: var(--space-20) 0;
}

.programs .section-heading {
  margin-bottom: 24px;
}

.programs-content {
  max-width: 720px;
  margin: 0 auto;
}

.programs-card {
  padding: var(--space-6);
}

.programs-card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  color: var(--color-dark);
  margin-bottom: var(--space-6);
}

.programs-list {
  list-style: none;
  margin-bottom: var(--space-8);
}

.programs-list li {
  position: relative;
  padding-left: var(--space-6);
  margin-bottom: var(--space-3);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: rgba(0, 0, 0, 0.7);
}

.programs-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-primary-gold);
}

.programs-focus {
  margin-bottom: var(--space-8);
}

.programs-focus p {
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  color: rgba(0, 0, 0, 0.7);
}

.programs-card .btn {
  display: inline-block;
}

/* ========== SESSION PROCESS ========== */
.session-process {
  padding: 120px 0;
  background: var(--color-dark);
  color: var(--color-white);
  position: relative;
}

.session-process .section-heading--light {
  margin-bottom: 80px;
}

.session-process .section-heading-eyebrow {
  color: var(--color-primary-gold);
}

.session-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.scroll-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 12px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
}

.scroll-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 155, 60, 0.4);
  transform: translateY(-4px);
}

.scroll-card-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.15);
  border: 2px solid var(--color-primary-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--color-primary-gold);
  margin: 0 auto 24px;
}

.scroll-card-title {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 16px;
  margin-top: 0;
  font-weight: 600;
}

.scroll-card-text {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 1024px) {
  .session-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .session-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .scroll-card {
    padding: 32px 24px;
  }

  .scroll-card-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
  }

  .scroll-card-title {
    font-size: 1.1rem;
  }

  .scroll-card-text {
    font-size: 0.9rem;
  }
}
.hero-description {
  font-family: var(--font-body);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.6);
}

/* ========== ATTUNEMENT ========== */
.attunement {
  padding: 96px 0;
  background: var(--color-cream);
}

.attunement-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.attunement-text {
  color: rgba(0, 0, 0, 0.7);
  line-height: 1.85;
}

.attunement-text p {
  margin-bottom: 16px;
}

.attunement-text strong {
  color: var(--color-primary-gold);
}

.attunement-icons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.attunement-icon-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
  z-index: 0;
  transition: box-shadow 0.3s ease;
}

.attunement-icon-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0%, var(--color-primary-gold) 10%, transparent 20%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.attunement-icon-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-white);
  border-radius: 3px;
  z-index: -1;
}

.attunement-icon-card:hover::before {
  opacity: 1;
  animation: border-rotate 3s linear infinite;
}

.attunement-icon-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.attunement-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  margin: 0 auto 16px;
  transition: box-shadow 0.4s ease;
}

.attunement-icon-card:hover .attunement-icon {
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.25), 0 0 20px rgba(200, 155, 60, 0.3);
}

.attunement-icon svg {
  color: var(--color-primary-gold);
  width: 28px;
  height: 28px;
}

.attunement-icon-card h4 {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.attunement-icon-card p {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.55);
  line-height: 1.5;
}

/* ========== WHY LEARN REIKI ========== */
.why-learn {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
}

.why-learn-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.why-learn-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.why-learn-benefit {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.why-learn-offer-label {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--color-primary-gold);
  margin-top: 20px;
  margin-bottom: 0;
  padding-left: 16px;
}

.why-learn-check {
  color: var(--color-primary-gold);
  font-size: 0.85rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-learn-sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-learn-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 28px 24px;
}

.why-learn-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-primary-gold);
  margin-bottom: 16px;
}

.why-learn-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.why-learn-tags .tag {
  border-color: rgba(200, 155, 60, 0.4);
  color: rgba(255, 255, 255, 0.8);
  background: rgba(200, 155, 60, 0.1);
  font-size: 0.82rem;
}

.why-learn-req-list {
  list-style: none;
  padding: 0;
}

.why-learn-req-list li {
  position: relative;
  padding: 6px 0 6px 20px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
}

.why-learn-req-list li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--color-primary-gold);
}

/* ========== SACRED ENERGY ========== */
.sacred-energy {
  padding: 96px 0;
  background: var(--color-cream);
}

.sacred-energy-content {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: left;
}

.sacred-energy-content p {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 16px;
}

.sacred-energy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.sacred-energy-card {
  position: relative;
  overflow: hidden;
  background: var(--color-white);
  border-radius: 4px;
  padding: 40px 28px;
  text-align: center;
  z-index: 0;
  transition: box-shadow 0.3s ease;
}

.sacred-energy-card::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200%;
  height: 200%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, transparent 0%, var(--color-primary-gold) 10%, transparent 20%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -2;
}

.sacred-energy-card::after {
  content: '';
  position: absolute;
  inset: 2px;
  background: var(--color-white);
  border-radius: 3px;
  z-index: -1;
}

.sacred-energy-card:hover::before {
  opacity: 1;
  animation: border-rotate 3s linear infinite;
}

.sacred-energy-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.sacred-energy-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 60, 0.1);
  border: 1px solid rgba(200, 155, 60, 0.2);
  margin: 0 auto 20px;
  transition: box-shadow 0.4s ease;
}

.sacred-energy-card:hover .sacred-energy-icon {
  box-shadow: 0 0 0 3px rgba(200, 155, 60, 0.25), 0 0 20px rgba(200, 155, 60, 0.3);
}

.sacred-energy-icon svg {
  color: var(--color-primary-gold);
  width: 32px;
  height: 32px;
}

.sacred-energy-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  color: var(--color-primary-gold);
  margin-bottom: 12px;
}

.sacred-energy-card p {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.65);
  line-height: 1.6;
  text-align: left;
}

/* ========== LIFE ASPECTS ========== */
.life-aspects {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
}

.life-aspects-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  max-width: 1600px;
  margin: 0 auto 48px;
  padding: 0 24px;
}

.life-aspects-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.life-aspects-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 155, 60, 0.3);
}

.life-aspects-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 60, 0.15);
  margin: 0 auto 16px;
}

.life-aspects-icon svg {
  color: var(--color-primary-gold);
}

.life-aspects-card h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  margin-bottom: 10px;
}

.life-aspects-card p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  text-align: left;
}

.life-aspects-highlight {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 24px;
  background: rgba(200, 155, 60, 0.08);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 4px;
}

.life-aspects-highlight p {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
}

.life-aspects-highlight strong {
  color: var(--color-primary-gold);
  animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { text-shadow: 0 0 4px rgba(200, 155, 60, 0.3); }
  50% { text-shadow: 0 0 16px rgba(200, 155, 60, 0.7), 0 0 32px rgba(200, 155, 60, 0.3); }
}

/* ========== INSPIRATIONAL QUOTE ========== */
.inspiration {
  padding: 96px 0;
  background: var(--color-cream);
  text-align: center;
}

.inspiration-quote {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

.inspiration-mark {
  font-family: var(--font-heading);
  font-size: 8rem;
  color: var(--color-primary-gold);
  opacity: 0.12;
  line-height: 1;
  display: block;
  margin-bottom: -40px;
}

.inspiration-quote p {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.2rem);
  color: var(--color-dark);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ========== CTA BENEFITS TAGS ========== */
.home-cta-benefits {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.home-cta-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  border: 1px solid rgba(200, 155, 60, 0.4);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.88rem;
  background: rgba(200, 155, 60, 0.08);
}

.home-cta .btn {
  border-radius: 9999px;
}

/* ========== HERO — NEW BRANDING ========== */
.hero-brand {
  font-family: var(--font-sacred);
  font-size: clamp(0.85rem, 1.5vw, 1.1rem);
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  margin-bottom: 24px;
  font-weight: 400;
}

.hero-eyebrow-tag {
  font-family: var(--font-body);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.btn--hero {
  border-radius: 9999px;
  padding: 16px 40px;
  font-size: 0.82rem;
}

.btn--ghost-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 16px 40px;
}

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

/* ========== CREDIBILITY BAR ========== */
.credibility {
  background: var(--color-white);
  padding: 48px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.credibility-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.credibility-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 56px;
}

.credibility-number {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--color-primary-gold);
  margin-bottom: 6px;
  line-height: 1.2;
}

.credibility-label {
  font-size: 0.8rem;
  color: rgba(0, 0, 0, 0.5);
  letter-spacing: 0.04em;
  max-width: 200px;
}

.credibility-divider {
  width: 1px;
  height: 48px;
  background: rgba(0, 0, 0, 0.1);
  flex-shrink: 0;
}

/* ========== PHILOSOPHY ========== */
.philosophy {
  padding: 96px 0;
}

.philosophy-content {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.philosophy-lead {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: var(--color-dark);
  line-height: 1.5;
  margin-bottom: 8px;
  font-weight: 500;
}

.philosophy-lead--em {
  color: var(--color-primary-gold);
  font-style: italic;
  margin-bottom: 32px;
}

.philosophy-body {
  font-size: 1rem;
  line-height: 1.85;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.philosophy-divider {
  width: 80px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--color-primary-gold), transparent);
  margin: 40px auto;
}

.philosophy-tagline {
  font-family: var(--font-sacred);
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
}

/* ========== SECTION CTA ========== */
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* ========== SERVICES ========== */
.services {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.15);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 155, 60, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.service-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 155, 60, 0.12);
  border: 1px solid rgba(200, 155, 60, 0.25);
  margin-bottom: 20px;
}

.service-card-icon svg {
  color: var(--color-primary-gold);
}

.service-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 20px;
}

.service-card-link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  transition: color 0.3s ease;
}

.service-card-link:hover {
  color: var(--color-light-gold);
}

.service-card--soon {
  opacity: 0.7;
  border-style: dashed;
}

.service-card-soon {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  padding: 6px 16px;
  border-radius: 9999px;
}

/* ========== TRAINING ========== */
.training {
  padding: 96px 0;
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto 48px;
  padding: 0 24px;
  align-items: stretch;
}

.training-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 40px 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.training-card:hover {
  border-color: rgba(200, 155, 60, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.training-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.training-card-level {
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-primary-gold);
  font-weight: 600;
  display: block;
  margin-bottom: 2px;
}

.training-card-title {
  font-size: 1.5rem;
  color: var(--color-dark);
}

.training-card-price {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-primary-gold);
  white-space: nowrap;
  background: rgba(200, 155, 60, 0.08);
  padding: 6px 16px;
  border-radius: 9999px;
}

.training-card-subtitle {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--color-dark);
  margin-bottom: 12px;
  font-weight: 500;
}

.training-card-desc {
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 12px;
}

.training-curriculum {
  margin: 16px 0;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.015);
}

.training-curriculum-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-dark);
  text-align: left;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.training-curriculum-toggle:hover {
  color: var(--color-primary-gold);
}

.training-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
  color: rgba(0, 0, 0, 0.3);
}

.training-curriculum-toggle[aria-expanded="true"] .training-chevron {
  transform: rotate(180deg);
  color: var(--color-primary-gold);
}

.training-curriculum-list {
  height: 0;
  overflow: hidden;
}

.training-curriculum-list ul {
  list-style: none;
  padding: 0 18px 18px;
}

.training-curriculum-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.65);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.training-curriculum-list li:last-child {
  border-bottom: none;
}

.curriculum-check {
  color: var(--color-primary-gold);
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.training-card-outcome {
  font-size: 0.88rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.5);
  font-style: italic;
  margin-top: auto;
  padding-top: 8px;
}

.training-card-btn {
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

.training-coming-soon {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 24px;
}

.training-coming-soon-inner {
  text-align: center;
  padding: 40px 32px;
  border: 2px dashed rgba(200, 155, 60, 0.3);
  border-radius: 8px;
  background: rgba(200, 155, 60, 0.04);
}

.training-coming-soon h3 {
  font-size: 1.2rem;
  color: var(--color-primary-gold);
  margin-bottom: 16px;
}

.training-coming-soon-list {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.training-coming-soon-item {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid rgba(200, 155, 60, 0.3);
  border-radius: 9999px;
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.5);
}

.training-coming-soon p {
  font-size: 0.88rem;
  color: rgba(0, 0, 0, 0.45);
}

/* ========== DIFFERENCE ========== */
.difference {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
  text-align: center;
}

.difference-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}

.difference-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--color-white);
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.3;
}

.difference-lead {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
  line-height: 1.7;
}

.difference-lead--em {
  color: var(--color-primary-gold);
  font-style: italic;
  margin-bottom: 40px;
  font-size: 1.2rem;
}

.difference-journey {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.difference-step {
  display: inline-block;
  padding: 12px 24px;
  border: 1px solid rgba(200, 155, 60, 0.4);
  border-radius: 9999px;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  color: var(--color-primary-gold);
  background: rgba(200, 155, 60, 0.08);
}

.difference-arrow {
  color: rgba(200, 155, 60, 0.4);
  font-size: 1.2rem;
}

.difference-closing {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin: 0 auto;
}

/* ========== LINEAGE ========== */
.lineage {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
}

.lineage-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.lineage-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(200, 155, 60, 0.2);
  border-radius: 8px;
  min-width: 140px;
  transition: all 0.3s ease;
}

.lineage-item:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 155, 60, 0.4);
}

.lineage-item--current {
  border-color: var(--color-primary-gold);
  background: rgba(200, 155, 60, 0.12);
}

.lineage-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-white);
  margin-bottom: 4px;
}

.lineage-item--current .lineage-name {
  color: var(--color-primary-gold);
}

.lineage-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.04em;
}

.lineage-connector {
  width: 32px;
  height: 2px;
  background: linear-gradient(to right, rgba(200, 155, 60, 0.3), rgba(200, 155, 60, 0.6), rgba(200, 155, 60, 0.3));
  flex-shrink: 0;
}

/* ========== SUPPORT ========== */
.support {
  background: var(--color-dark);
  color: var(--color-white);
  padding: 96px 0;
}

.support.bg-light {
  background: var(--color-light);
  color: var(--color-dark);
}

.support.bg-light .support-tag {
  border-color: rgba(200, 155, 60, 0.35);
  color: rgba(0, 0, 0, 0.7);
  background: rgba(200, 155, 60, 0.06);
}

.support.bg-light .support-tag:hover {
  background: rgba(200, 155, 60, 0.15);
  border-color: rgba(200, 155, 60, 0.5);
  color: var(--color-dark);
}

.support-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto 40px;
  padding: 0 24px;
}

.support-tag {
  display: inline-block;
  padding: 12px 28px;
  border: 1px solid rgba(200, 155, 60, 0.35);
  border-radius: 9999px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(200, 155, 60, 0.06);
  transition: all 0.3s ease;
}

.support-tag:hover {
  background: rgba(200, 155, 60, 0.15);
  border-color: rgba(200, 155, 60, 0.5);
  color: var(--color-white);
}

.support-disclaimer {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.support-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  font-style: italic;
}

/* ========== HOME CTA BUTTONS ========== */
/* ========== TESTIMONIALS (SESSIONS) ========== */
.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-slide {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 40px 32px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-slide:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 1rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.7);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(200, 155, 60, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-avatar span {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary-gold);
  font-weight: 600;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--color-dark);
}

.testimonial-location {
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.45);
}

.testimonial-program {
  font-size: 0.78rem;
  color: var(--color-primary-gold);
  font-weight: 500;
}

.home-cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
