/* ================================================================
   REIKI & CRYSTAL HEALING CENTER — reiki-style.css
   Design System: 7 Chakras × Premium Healing Aesthetic
   Author: Holistic Multispeciality Clinic
   Font: Poppins (body) + Playfair Display (headings)
   Approach: CSS Custom Properties → BEM-ish naming → Mobile-first
================================================================ */

/* ── 1. CSS CUSTOM PROPERTIES (Design Tokens) ───────────────── */
:root {
  /* === Chakra Background Palette === */
  --chakra-root: #FFEAEA;
  /* S1 — Root      — Muted Red    */
  --chakra-sacral: #FFF1E6;
  /* S2 — Sacral     — Muted Orange */
  --chakra-solar: #FFF9E6;
  /* S3 — Solar      — Muted Yellow */
  --chakra-heart: #E8F5E9;
  /* S4 — Heart      — Muted Green  */
  --chakra-throat: #E3F2FD;
  /* S5 — Throat     — Muted Blue   */
  --chakra-thirdeye: #E8EAF6;
  /* S6 — Third Eye  — Muted Indigo */
  --chakra-crown: #F3E5F5;
  /* S7 — Crown      — Muted Violet */

  /* === Chakra Accent Colours === */
  --accent-root: #C62828;
  /* Deep Red      */
  --accent-root-mid: #EF5350;
  /* Medium Red     */
  --accent-root-light: #FFCDD2;
  /* Light Red      */

  --accent-sacral: #E65100;
  /* Deep Orange   */
  --accent-sacral-mid: #FF7043;
  /* Medium Orange  */
  --accent-sacral-light: #FFE0B2;
  /* Light Orange   */

  --accent-solar: #F57F17;
  /* Deep Yellow   */
  --accent-solar-mid: #FFC107;
  /* Medium Yellow  */
  --accent-solar-light: #FFF9C4;
  /* Light Yellow   */

  --accent-heart: #2E7D32;
  /* Deep Green    */
  --accent-heart-mid: #43A047;
  /* Medium Green   */
  --accent-heart-light: #C8E6C9;
  /* Light Green    */

  --accent-throat: #1565C0;
  /* Deep Blue     */
  --accent-throat-mid: #1E88E5;
  /* Medium Blue    */
  --accent-throat-light: #BBDEFB;
  /* Light Blue     */

  --accent-thirdeye: #283593;
  /* Deep Indigo   */
  --accent-thirdeye-mid: #3949AB;
  /* Medium Indigo  */
  --accent-thirdeye-light: #C5CAE9;
  /* Light Indigo   */

  --accent-crown: #6A1B9A;
  /* Deep Violet   */
  --accent-crown-mid: #8E24AA;
  /* Medium Violet  */
  --accent-crown-light: #E1BEE7;
  /* Light Violet   */

  /* === Neutral Palette === */
  --neutral-900: #1A1A2E;
  --neutral-800: #2D2D44;
  --neutral-700: #4A4A6A;
  --neutral-600: #6B6B8A;
  --neutral-400: #9E9EB8;
  --neutral-200: #E8E8F0;
  --neutral-100: #F5F5FA;
  --neutral-50: #FAFAFE;
  --white: #FFFFFF;

  /* === Gold Accent === */
  --gold: #D4AF37;
  --gold-light: #F5E6A3;
  --gold-dark: #A08020;

  /* === Typography === */
  --font-body: 'Poppins', sans-serif;
  --font-display: 'Playfair Display', serif;

  /* === Spacing Scale === */
  --space-xs: 0.25rem;
  /*  4px */
  --space-sm: 0.5rem;
  /*  8px */
  --space-md: 1rem;
  /* 16px */
  --space-lg: 1.5rem;
  /* 24px */
  --space-xl: 2rem;
  /* 32px */
  --space-2xl: 3rem;
  /* 48px */
  --space-3xl: 4rem;
  /* 64px */
  --space-4xl: 6rem;
  /* 96px */

  /* === Border Radius === */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 999px;
  --radius-full: 50%;

  /* === Shadows === */
  --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.08);
  --shadow-float: 0 16px 48px rgba(0, 0, 0, 0.12);
  --shadow-deep: 0 24px 64px rgba(0, 0, 0, 0.18);

  /* === Transitions === */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --duration-fast: 200ms;
  --duration-base: 350ms;
  --duration-slow: 600ms;

  /* === Container === */
  --container-max: 1240px;
  --container-pad: 1.5rem;

  /* === Section vertical padding === */
  --section-py: 5rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--neutral-800);
  background-color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

ul,
ol {
  list-style: none;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── 3. PAGE IDENTITY BAR (slim contextual breadcrumb) ───────── */
.page-identity-bar {
  background: linear-gradient(135deg, var(--neutral-900) 0%, #2A1F3D 100%);
  padding: 0.75rem var(--container-pad);
  border-bottom: 2px solid var(--gold);
}

.pib-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.pib-logo-mark {
  color: var(--gold);
  font-size: 1.1rem;
  flex-shrink: 0;
  animation: pib-pulse 3s ease-in-out infinite;
}

@keyframes pib-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.7;
    transform: scale(1.15);
  }
}

.pib-title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.02em;
}

.pib-breadcrumb {
  margin-left: auto;
}

.pib-breadcrumb ol {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.pib-breadcrumb li {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.6);
}

.pib-breadcrumb li+li::before {
  content: '›';
  margin-right: var(--space-sm);
  color: var(--gold);
}

.pib-breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast);
}

.pib-breadcrumb a:hover {
  color: var(--gold);
}

.pib-breadcrumb [aria-current="page"] {
  color: var(--gold);
  font-weight: 500;
}

/* ── 4. SHARED SECTION UTILITIES ─────────────────────────────── */

/* Container */
.rk-container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

/* Section base */
.rk-section {
  padding: var(--section-py) 0;
  position: relative;
  overflow: hidden;
}

/* Section ornament (chakra indicator) */
.section-ornament {
  position: absolute;
  top: 1.5rem;
  right: var(--container-pad);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  opacity: 0.6;
  pointer-events: none;
  z-index: 1;
}

.ornament-chakra {
  font-size: 1.1rem;
}

.ornament-label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--neutral-600);
}

/* Section header block */
.rk-section-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* Badge pills */
.rk-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 1.1rem;
  border-radius: var(--radius-pill);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
  border: 1px solid transparent;
}

.rk-badge-sacral {
  background: var(--accent-sacral-light);
  color: var(--accent-sacral);
  border-color: var(--accent-sacral-mid);
}

.rk-badge-solar {
  background: var(--accent-solar-light);
  color: var(--accent-solar);
  border-color: var(--accent-solar-mid);
}

.rk-badge-heart {
  background: var(--accent-heart-light);
  color: var(--accent-heart);
  border-color: var(--accent-heart-mid);
}

.rk-badge-throat {
  background: var(--accent-throat-light);
  color: var(--accent-throat);
  border-color: var(--accent-throat-mid);
}

.rk-badge-thirdeye {
  background: var(--accent-thirdeye-light);
  color: var(--accent-thirdeye);
  border-color: var(--accent-thirdeye-mid);
}

.rk-badge-crown {
  background: var(--accent-crown-light);
  color: var(--accent-crown);
  border-color: var(--accent-crown-mid);
}

/* Section titles */
.rk-section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
  margin-bottom: var(--space-md);
}

.rk-section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-crown-mid), var(--accent-throat-mid));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.rk-section-subtitle {
  font-size: 1.05rem;
  color: var(--neutral-600);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Chakra section backgrounds */
.rk-hero {
  background-color: var(--chakra-root);
}

.rk-sacral {
  background-color: var(--chakra-sacral);
}

.rk-solar {
  background-color: var(--chakra-solar);
}

.rk-heart {
  background-color: var(--chakra-heart);
}

.rk-throat {
  background-color: var(--chakra-throat);
}

.rk-thirdeye {
  background-color: var(--chakra-thirdeye);
}

.rk-crown {
  background-color: var(--chakra-crown);
}

/* Shared button styles */
.btn-rk-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, #6A1B9A 0%, #3949AB 100%);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    filter var(--duration-fast);
  box-shadow: 0 4px 20px rgba(106, 27, 154, 0.35);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-rk-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
}

.btn-rk-primary:hover,
.btn-rk-primary:focus-visible {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 32px rgba(106, 27, 154, 0.45);
  filter: brightness(1.08);
  outline: none;
}

.btn-rk-primary:active {
  transform: translateY(0) scale(0.99);
}

.btn-rk-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--neutral-800);
  font-size: 0.9rem;
  font-weight: 600;
  border: 2px solid var(--neutral-300, #d0d0e0);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition:
    background var(--duration-fast),
    border-color var(--duration-fast),
    color var(--duration-fast),
    transform var(--duration-base) var(--ease-out);
  text-decoration: none;
}

.btn-rk-ghost:hover,
.btn-rk-ghost:focus-visible {
  background: var(--neutral-900);
  color: var(--white);
  border-color: var(--neutral-900);
  transform: translateY(-2px);
  outline: none;
}

/* Scroll reveal base state */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.65s var(--ease-out),
    transform 0.65s var(--ease-out);
}

[data-animate="fade-right"] {
  transform: translateX(-36px);
}

[data-animate="fade-left"] {
  transform: translateX(36px);
}

[data-animate="zoom-in"] {
  transform: scale(0.93);
}

[data-animate="fade-up"] {
  transform: translateY(28px);
}

[data-animate].is-visible {
  opacity: 1;
  transform: none;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 1A: NEW SPLIT HERO — Full viewport, wireframe-exact
   Left: white panel · Right: teal/purple gradient + image
══════════════════════════════════════════════════════════════ */

/* Root split layout — 100vw × 100vh */
.rk-split-hero {
  display: flex;
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

/* ── LEFT PANEL ── */
.rk-hero-left {
  flex: 0 0 55%;
  background: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

/* Decorative outline circles on white side (wireframe) */
.rk-hero-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(46, 196, 182, 0.18);
  pointer-events: none;
}

.rk-hc-1 {
  width: 260px;
  height: 260px;
  top: -60px;
  left: -80px;
  animation: rk-circle-drift 14s ease-in-out infinite alternate;
}

.rk-hc-2 {
  width: 160px;
  height: 160px;
  bottom: 80px;
  left: 40px;
  opacity: 0.7;
  animation: rk-circle-drift 18s ease-in-out infinite alternate-reverse;
}

@keyframes rk-circle-drift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(10px, 14px) scale(1.04);
  }
}

/* Inner content wrapper */
.rk-hero-left-inner {
  max-width: 500px;
  padding: 2rem 3rem 2rem 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Eyebrow label */
.rk-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2EC4B6;
}

.rk-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2EC4B6;
  animation: rk-dot-pulse 2.5s ease-in-out infinite;
}

@keyframes rk-dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.6);
    opacity: 0.6;
  }
}

/* Stacked clinic name — matches index.html sh-clinic-name style */
.rk-clinic-name {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  line-height: 0.9;
}

.rk-name-line1,
.rk-name-line3 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(3.5rem, 5.5vw, 5.5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: #0F172A;
  display: block;
}

/* Middle line: Root Chakra Red */
.rk-name-line2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3.7vw, 3.7rem);
  font-weight: 900;
  text-transform: uppercase;
  display: block;
  color: #8E24AA;
}

/* Third line — gold period suffix */
.rk-name-line3 {
  position: relative;
  display: inline-block;
  width: fit-content;
}

.rk-name-line3::after {
  content: '.';
  color: #D4AF37;
}

/* Sub-text — small, concise credential line */
.rk-hero-subtext {
  font-size: 0.85rem;
  color: #6B6B8A;
  line-height: 1.65;
  max-width: 420px;
  border-left: 3px solid #8E24AA;
  padding-left: 0.85rem;
  background: linear-gradient(90deg, rgba(142, 36, 170, 0.05) 0%, transparent 100%);
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
  border-radius: 0 6px 6px 0;
}

/* CTA button row */
.rk-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}

/* Primary CTA — Root Chakra Red */
.rk-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.82rem 1.9rem;
  background: #8E24AA;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(142, 36, 170, 0.35);
  transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.2s;
}

.rk-btn-primary:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 8px 32px rgba(142, 36, 170, 0.45);
  filter: brightness(1.06);
}

/* Ghost call CTA — wireframe: "Call us now!" */
.rk-btn-call {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1.6rem 0.6rem 0.6rem;
  background: transparent;
  color: #1A1A2E;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  border: 2px solid #E8E8F0;
  border-radius: 999px;
  transition: all 0.2s;
}

.rk-btn-call-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(142, 36, 170, 0.1);
  border: 1.5px solid rgba(142, 36, 170, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E24AA;
  flex-shrink: 0;
  transition: background 0.2s;
}

.rk-btn-call:hover {
  border-color: #8E24AA;
  color: #8E24AA;
}

.rk-btn-call:hover .rk-btn-call-icon {
  background: rgba(142, 36, 170, 0.18);
}

/* Stats strip — 3 icon pills */
.rk-hero-stats {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.rk-stat-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.rk-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(142, 36, 170, 0.1);
  border: 1.5px solid rgba(142, 36, 170, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8E24AA;
  flex-shrink: 0;
}

.rk-stat-body {
  display: flex;
  flex-direction: column;
}

.rk-stat-num {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1A1A2E;
  line-height: 1;
  font-family: 'Outfit', sans-serif;
}

.rk-stat-lbl {
  font-size: 0.7rem;
  color: #9E9EB8;
  font-weight: 500;
  margin-top: 1px;
}

.rk-stat-sep {
  width: 1px;
  height: 36px;
  background: #E8E8F0;
}

/* ── RIGHT PANEL — 7 Chakra rainbow gradient ── */
.rk-hero-right {
  flex: 1;
  /* Full 7-chakra rainbow: Root(red) → Sacral(orange) → Solar(yellow) → Heart(green)
     → Throat(blue) → Third Eye(indigo) → Crown(violet), diagonal top-right to bottom-left */
  background: linear-gradient(150deg,
      #AB47BC 0%,
      #7B1FA2 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Soft frosted overlay so the image doesn't clash with the rainbow */
.rk-hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  z-index: 1;
  pointer-events: none;
}

/* Decorative circles on teal side */
.rk-hero-tcircle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.15);
  pointer-events: none;
}

.rk-htc-1 {
  width: 300px;
  height: 300px;
  top: -60px;
  right: -60px;
  animation: rk-circle-drift 12s ease-in-out infinite alternate;
}

.rk-htc-2 {
  width: 180px;
  height: 180px;
  bottom: 80px;
  right: 20px;
  animation: rk-circle-drift 16s ease-in-out infinite alternate-reverse;
}

.rk-htc-3 {
  width: 80px;
  height: 80px;
  bottom: 30px;
  left: 30px;
  opacity: 0.6;
  animation: rk-circle-drift 10s ease-in-out infinite;
}

/* Image wrapper */
.rk-hero-img-wrap {
  position: relative;
  width: 85%;
  max-width: 420px;
  z-index: 2;
}

/* Hero image — bottom portion bleeds into left white panel via diagonal */
.rk-hero-img {
  width: 100%;
  height: 80vh;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px 20px 0 0;
  display: block;
  box-shadow: -12px 16px 48px rgba(0, 0, 0, 0.3);
}

/* Floating certification badge */
.rk-hero-badge-float {
  position: absolute;
  bottom: 2rem;
  left: -3rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.75rem 1.1rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  border-left: 4px solid #D4AF37;
  animation: rk-badge-float 4s ease-in-out infinite;
  z-index: 3;
}

@keyframes rk-badge-float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.rhbf-icon {
  color: #D4AF37;
  flex-shrink: 0;
}

.rhbf-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.rhbf-text strong {
  font-size: 0.82rem;
  color: #1A1A2E;
  font-weight: 700;
}

.rhbf-text span {
  font-size: 0.72rem;
  color: #6B6B8A;
}

/* 7 Chakra colour strip */
.rk-chakra-strip {
  position: absolute;
  top: 1.2rem;
  right: -0.5rem;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 4;
}

.rk-cs-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.7);
  display: block;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  cursor: default;
  transition: transform 0.2s;
}

.rk-cs-dot:hover {
  transform: scale(1.4);
}

/* Diagonal white wave — bottom-left of right panel */
.rk-hero-wave {
  position: absolute;
  bottom: -2px;
  left: -2px;
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  clip-path: polygon(0 100%, 100% 100%, 0 0);
  z-index: 3;
}

/* Scroll indicator */
.rk-hero-scroll {
  position: absolute;
  bottom: 1.8rem;
  left: 28%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(0, 0, 0, 0.45);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 10;
}

.rk-scroll-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(0, 0, 0, 0.3);
  border-radius: 11px;
  display: flex;
  justify-content: center;
  padding-top: 5px;
}

.rk-scroll-wheel {
  width: 3px;
  height: 7px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 2px;
  animation: rk-scroll-anim 2s ease-in-out infinite;
}

@keyframes rk-scroll-anim {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  75% {
    transform: translateY(10px);
    opacity: 0;
  }

  76% {
    transform: translateY(0);
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/* ── RESPONSIVE: stack on mobile ── */
@media (max-width: 900px) {
  .rk-split-hero {
    flex-direction: column;
    height: auto;
    min-height: 100dvh;
  }

  .rk-hero-left {
    flex: none;
    width: 100%;
    padding: 5rem 0 2rem;
  }

  .rk-hero-left-inner {
    padding: 1.5rem 1.5rem;
    gap: 1.2rem;
  }

  .rk-hero-right {
    flex: none;
    width: 100%;
    height: 55vw;
    min-height: 300px;
  }

  .rk-hero-img {
    height: 100%;
  }

  .rk-hero-badge-float {
    left: 50%;
    transform: translateX(-50%);
    bottom: 1rem;
  }

  .rk-hero-scroll {
    left: 50%;
    bottom: calc(55vw + 1rem);
  }

  .rk-hero-headline {
    font-size: clamp(1.8rem, 6vw, 2.6rem);
  }
}

@media (max-width: 480px) {
  .rk-hero-left-inner {
    padding: 1rem;
    gap: 1rem;
  }

  .rk-hero-stats {
    gap: 0.7rem;
  }

  .rk-stat-sep {
    display: none;
  }

  .rk-hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .rk-btn-primary,
  .rk-btn-call {
    width: 100%;
    justify-content: center;
  }
}

/* ══════════════════════════════════════════════════════════════
   SECTION 1B: OLD HERO (kept for reference — not rendered)
══════════════════════════════════════════════════════════════ */

.rk-hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

/* Decorative background circles (wireframe-inspired) */
.hero-deco-circle {
  position: absolute;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-root-light);
  pointer-events: none;
  z-index: 0;
}

.hero-deco-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
  opacity: 0.5;
  animation: deco-drift 12s ease-in-out infinite alternate;
}

.hero-deco-2 {
  width: 200px;
  height: 200px;
  bottom: 80px;
  left: 5%;
  opacity: 0.35;
  animation: deco-drift 16s ease-in-out infinite alternate-reverse;
}

.hero-deco-3 {
  width: 140px;
  height: 140px;
  top: 20%;
  right: 8%;
  opacity: 0.3;
  border-color: var(--accent-crown-light);
  animation: deco-drift 9s ease-in-out infinite alternate;
}

@keyframes deco-drift {
  from {
    transform: translate(0, 0) scale(1);
  }

  to {
    transform: translate(12px, 16px) scale(1.04);
  }
}

/* Hero container: two-column split layout */
.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: var(--space-3xl);
  min-height: 80vh;
  padding-top: 5rem;
  padding-bottom: 3rem;
  position: relative;
  z-index: 1;
}

/* === Hero Left === */
.hero-left {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

/* Eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(198, 40, 40, 0.08);
  border: 1px solid rgba(198, 40, 40, 0.2);
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent-root);
  letter-spacing: 0.04em;
  width: fit-content;
  animation: badge-pop 0.6s var(--ease-out) both;
}

@keyframes badge-pop {
  from {
    opacity: 0;
    transform: translateY(-12px) scale(0.95);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-root-mid);
  border-radius: var(--radius-full);
  animation: dot-pulse 2.5s ease-in-out infinite;
}

@keyframes dot-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.5);
    opacity: 0.6;
  }
}

/* Main headline */
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--neutral-900);
  animation: headline-slide 0.8s 0.1s var(--ease-out) both;
}

@keyframes headline-slide {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.hero-headline-em {
  display: block;
  font-style: italic;
  background: linear-gradient(135deg, var(--accent-root) 0%, #FF6B35 50%, var(--accent-crown-mid) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 5s ease-in-out infinite;
}

@keyframes gradient-shift {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

/* Sub-headline */
.hero-subheadline {
  font-size: 1.05rem;
  color: var(--neutral-600);
  line-height: 1.8;
  max-width: 520px;
  animation: headline-slide 0.8s 0.2s var(--ease-out) both;
}

/* CTA row */
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  animation: headline-slide 0.8s 0.3s var(--ease-out) both;
}

/* Stats strip (3 pills — mirrors wireframe) */
.hero-stats-strip {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding: 1.2rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  width: fit-content;
  animation: headline-slide 0.8s 0.4s var(--ease-out) both;
}

.hero-stat {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--chakra-root), var(--accent-root-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-root);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-stat-text {
  display: flex;
  flex-direction: column;
}

.hero-stat-num {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1;
}

.hero-stat-lbl {
  font-size: 0.72rem;
  color: var(--neutral-500, #8888a8);
  font-weight: 500;
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--neutral-200);
}

/* === Hero Right === */
.hero-right {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-visual-wrap {
  position: relative;
  width: 100%;
  max-width: 500px;
  animation: hero-float-in 1s 0.15s var(--ease-out) both;
}

@keyframes hero-float-in {
  from {
    opacity: 0;
    transform: translateX(32px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

/* Decorative arc behind image */
.hero-arc {
  position: absolute;
  inset: -24px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg,
      rgba(198, 40, 40, 0.08) 0%,
      rgba(106, 27, 154, 0.12) 50%,
      rgba(57, 73, 171, 0.08) 100%);
  transform: rotate(-3deg);
  z-index: 0;
}

/* Hero main image */
.hero-main-img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  transition: transform var(--duration-slow) var(--ease-out);
}

.hero-visual-wrap:hover .hero-main-img {
  transform: scale(1.02);
}

/* Floating trust card */
.hero-float-card {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.85rem 1.2rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-float);
  border-left: 4px solid var(--gold);
  animation: float-card-bounce 4s ease-in-out infinite;
}

@keyframes float-card-bounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

.hfc-icon {
  font-size: 1.4rem;
  color: var(--gold);
  line-height: 1;
}

.hfc-text {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.hfc-text strong {
  font-size: 0.85rem;
  color: var(--neutral-900);
  font-weight: 700;
}

.hfc-text span {
  font-size: 0.75rem;
  color: var(--neutral-600);
}

/* 7 Chakra dot indicators on the image */
.hero-chakra-dots {
  position: absolute;
  right: -1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 3;
}

.chakra-dot {
  width: 14px;
  height: 14px;
  border-radius: var(--radius-full);
  border: 2px solid var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: transform var(--duration-fast), box-shadow var(--duration-fast);
  display: block;
}

.chakra-dot:hover {
  transform: scale(1.4);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.cd-root {
  background: #EF5350;
}

.cd-sacral {
  background: #FF7043;
}

.cd-solar {
  background: #FFC107;
}

.cd-heart {
  background: #43A047;
}

.cd-throat {
  background: #1E88E5;
}

.cd-third {
  background: #3949AB;
}

.cd-crown {
  background: #8E24AA;
}

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--neutral-500, #888);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  animation: scroll-hint-fade 2s 1.5s ease-in-out both,
    scroll-hint-bob 2s 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes scroll-hint-fade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

@keyframes scroll-hint-bob {

  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

.scroll-mouse {
  width: 22px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 11px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 5px;
}

.scroll-wheel {
  width: 3px;
  height: 8px;
  background: currentColor;
  border-radius: var(--radius-pill);
  animation: wheel-scroll 1.8s ease-in-out infinite;
}

@keyframes wheel-scroll {
  0% {
    transform: translateY(0);
    opacity: 1;
  }

  80% {
    transform: translateY(10px);
    opacity: 0;
  }

  100% {
    transform: translateY(0);
    opacity: 1;
  }
}


/* ══════════════════════════════════════════════════════════════
   SECTION 2: WHAT IS REIKI (Sacral Chakra — #FFF1E6)
══════════════════════════════════════════════════════════════ */

/* Two-column grid */
.about-reiki-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

/* Intro paragraphs */
.ar-intro-para {
  font-size: 1.08rem;
  color: var(--neutral-800);
  line-height: 1.85;
  margin-bottom: var(--space-lg);
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--accent-sacral-mid);
  box-shadow: var(--shadow-soft);
}

.ar-para {
  font-size: 0.97rem;
  color: var(--neutral-600);
  line-height: 1.85;
  margin-bottom: var(--space-xl);
}

/* Principles mini grid */
.ar-principles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.ar-principle-card {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(230, 81, 0, 0.08);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.ar-principle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
  border-color: rgba(230, 81, 0, 0.2);
}

.ar-principle-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-sacral-light), #FFD0A0);
  color: var(--accent-sacral);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  margin-bottom: var(--space-sm);
}

.ar-principle-card h3 {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.3rem;
}

.ar-principle-card p {
  font-size: 0.82rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

/* Image column */
.ar-image-stack {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.ar-img-primary,
.ar-img-secondary {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ar-img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s var(--ease-out);
}

.ar-img-secondary .ar-img {
  height: 200px;
}

.ar-img-primary:hover .ar-img,
.ar-img-secondary:hover .ar-img {
  transform: scale(1.04);
}

.ar-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.ar-img-caption i {
  color: #A5D6A7;
}

/* Class schedule card */
.ar-class-card {
  margin-block: 15px;
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: linear-gradient(135deg, var(--accent-sacral), #FF8A50);
  border-radius: var(--radius-lg);
  color: var(--white);
  box-shadow: 0 8px 28px rgba(230, 81, 0, 0.3);
  transition: transform var(--duration-base) var(--ease-out);
}

.ar-class-card:hover {
  transform: translateY(-4px);
}

.ar-class-icon {
  font-size: 1.8rem;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.9;
}

.ar-class-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.ar-class-text strong {
  font-size: 0.95rem;
  font-weight: 700;
}

.ar-class-text p {
  font-size: 0.85rem;
  opacity: 0.9;
}

.ar-class-link {
  display: inline-block;
  margin-top: 0.4rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--white);
  background: rgba(255, 255, 255, 0.2);
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-pill);
  transition: background var(--duration-fast);
}

.ar-class-link:hover {
  background: rgba(255, 255, 255, 0.35);
}


/* ══════════════════════════════════════════════════════════════
   SECTION 3: BENEFITS (Solar Plexus — #FFF9E6)
══════════════════════════════════════════════════════════════ */

/* 3-column grid, wraps on mobile */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.benefit-card {
  padding: var(--space-xl);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(245, 127, 23, 0.08);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base);
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-solar-mid), var(--accent-sacral-mid));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration-base) var(--ease-out);
}

.benefit-card:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-float);
  border-color: rgba(245, 127, 23, 0.2);
}

.benefit-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.solar-icon {
  background: linear-gradient(135deg, var(--accent-solar-light), #FFE082);
  color: var(--accent-solar);
}

.benefit-card-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--neutral-900);
  line-height: 1.3;
}

.benefit-card-desc {
  font-size: 0.87rem;
  color: var(--neutral-600);
  line-height: 1.75;
  flex: 1;
}

.benefit-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: var(--accent-solar-light);
  color: var(--accent-solar);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin-top: auto;
}

/* Treatment Timeline */
.treatment-timeline {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.timeline-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: var(--space-xl);
}

.timeline-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.ts-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  flex: 1;
  min-width: 130px;
  max-width: 200px;
}

.ts-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent-solar-light), #FFE082);
  color: var(--accent-solar);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(245, 127, 23, 0.2);
  transition: transform var(--duration-base) var(--ease-out);
}

.ts-step:hover .ts-icon {
  transform: scale(1.12) rotate(-5deg);
}

.ts-content {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  text-align: center;
}

.ts-content strong {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--neutral-900);
}

.ts-content span {
  font-size: 0.76rem;
  color: var(--neutral-600);
  line-height: 1.5;
}

.ts-arrow {
  color: var(--accent-solar-mid);
  font-size: 1.1rem;
  flex-shrink: 0;
}


/* ══════════════════════════════════════════════════════════════
   SECTION 4: REIKI DEGREES — Ascending Diamond Pathway
══════════════════════════════════════════════════════════════ */

/* ── Light Section Background ── */
.cert-diamond-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 4rem;
  background: var(--surface-100);
}

/* ── Floating Particles (Light Theme) ── */
.cert-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.cert-particle-light {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(142, 36, 170, 0.25);
  animation: cert-float-light 8s ease-in-out infinite;
}

.cp1 { top: 15%; left: 10%; animation-delay: 0s; animation-duration: 9s; }
.cp2 { top: 25%; left: 85%; animation-delay: 1.2s; animation-duration: 7s; width: 3px; height: 3px; }
.cp3 { top: 60%; left: 20%; animation-delay: 2.5s; animation-duration: 11s; width: 5px; height: 5px; background: rgba(142,36,170,0.3); }
.cp4 { top: 70%; left: 75%; animation-delay: 3.8s; animation-duration: 8s; }
.cp5 { top: 40%; left: 50%; animation-delay: 0.7s; animation-duration: 10s; width: 3px; height: 3px; background: rgba(212,175,55,0.4); }
.cp6 { top: 80%; left: 30%; animation-delay: 4.2s; animation-duration: 12s; width: 2px; height: 2px; }
.cp7 { top: 10%; left: 65%; animation-delay: 5.5s; animation-duration: 9s; background: rgba(142,36,170,0.2); }
.cp8 { top: 50%; left: 90%; animation-delay: 2s; animation-duration: 7.5s; width: 3px; height: 3px; }

@keyframes cert-float-light {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.2; }
  25% { transform: translateY(-30px) translateX(15px); opacity: 0.6; }
  50% { transform: translateY(-10px) translateX(-10px); opacity: 0.4; }
  75% { transform: translateY(-40px) translateX(20px); opacity: 0.7; }
}

/* ── Header ── */
.cert-light-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.cert-light-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #8E24AA;
  background: rgba(142,36,170,0.1);
  border: 1px solid rgba(142,36,170,0.25);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.2rem;
}

.cert-light-title {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--neutral-900);
  line-height: 1.2;
}

.cert-light-title em {
  font-style: italic;
  color: #8E24AA;
}

/* ── Diamond Pathway Grid ── */
.diamond-pathway {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6rem 0;
  position: relative;
  gap: 20px;
  margin-bottom: 1rem;
}

/* Diagonal connecting line behind nodes */
.diamond-line {
  position: absolute;
  top: 50%;
  left: 10%;
  right: 10%;
  height: 6px;
  background: linear-gradient(90deg, rgba(142,36,170,0.05) 0%, rgba(142,36,170,0.4) 50%, rgba(212,175,55,0.6) 100%);
  transform: translateY(-50%) rotate(-8deg); /* Aligns perfectly with the steps */
  z-index: 0;
  border-radius: 10px;
  overflow: hidden;
}

/* Glowing ball traveling along the line */
.energy-pulse {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.8), transparent);
  box-shadow: 0 0 20px rgba(255,255,255,0.8);
  animation: energy-travel 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes energy-travel {
  0% { left: -100px; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { left: 100%; opacity: 0; }
}

/* ── Diamond Node Base ── */
.diamond-node {
  position: relative;
  z-index: 1;
  width: 130px;
  height: 130px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: default;
  margin-left: -10px;
  margin-right: -10px;
}

/* Staggered Heights to form a staircase */
.dn-1 { transform: translateY(60px); }
.dn-2 { transform: translateY(30px); }
.dn-3 { transform: translateY(0px); }
.dn-4 { transform: translateY(-30px); }
.dn-5 { transform: translateY(-60px); width: 160px; height: 160px; z-index: 2; margin-left: 0; }

/* The actual glass shape */
.diamond-shape {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(142, 36, 170, 0.2);
  border-radius: 20px; /* Rounded corners make it elegant */
  transform: rotate(45deg);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 10px 25px rgba(142,36,170,0.08);
}

/* Subtle continuous pulse inside */
.diamond-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle, rgba(142,36,170,0.4) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  animation: diamond-breathe 4s infinite;
  z-index: 1;
  pointer-events: none;
}

.gold-glow { background: radial-gradient(circle, rgba(212,175,55,0.4) 0%, transparent 70%); }
.grand-glow { background: radial-gradient(circle, rgba(212,175,55,0.6) 0%, transparent 70%); width: 70%; height: 70%; }

@keyframes diamond-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50% { transform: translate(-50%, -50%) scale(1.6); opacity: 0.1; }
}

/* ── Content inside the diamond ── */
.diamond-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.d-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: #8E24AA;
  line-height: 1;
  background: linear-gradient(135deg, #7B1FA2, #AB47BC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.d-text {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--neutral-600);
  line-height: 1.2;
}

.d-icon {
  width: 32px;
  height: 32px;
  color: #D4AF37;
  margin-bottom: 2px;
}

/* Master node overrides */
.master-node .diamond-shape {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 10px 25px rgba(212,175,55,0.1);
}
.master-node .d-text { color: #B8860B; }

/* Grand Master node overrides */
.grand-master-node .diamond-shape {
  border: 2px solid rgba(212,175,55,0.6);
  background: linear-gradient(135deg, #ffffff 40%, #FFFDF5 100%);
  box-shadow: 0 15px 40px rgba(212,175,55,0.2);
}
.grand-master-node .d-text { color: #B8860B; font-size: 0.9rem; }
.grand-master-node .d-icon { width: 44px; height: 44px; color: #D4AF37; }

/* ── Hover Effects ── */
.diamond-node:hover { z-index: 10; }

/* Lift on hover based on initial Y position */
.dn-1:hover { transform: translateY(45px) scale(1.1); }
.dn-2:hover { transform: translateY(15px) scale(1.1); }
.dn-3:hover { transform: translateY(-15px) scale(1.1); }
.dn-4:hover { transform: translateY(-45px) scale(1.1); }
.dn-5:hover { transform: translateY(-75px) scale(1.1); }

.diamond-node:hover .diamond-shape {
  border-color: rgba(142, 36, 170, 0.6);
  box-shadow: 0 20px 40px rgba(142,36,170,0.2);
  transform: rotate(45deg) scale(1.05);
}

.master-node:hover .diamond-shape { border-color: rgba(212,175,55,0.8); box-shadow: 0 20px 40px rgba(212,175,55,0.25); }
.grand-master-node:hover .diamond-shape { border-color: #D4AF37; box-shadow: 0 25px 50px rgba(212,175,55,0.3); }

/* ── CTA Bar (Light) ── */
.cert-cta-bar-light {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.cert-cta-inner-light {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  border: 1px solid rgba(142,36,170,0.15);
  border-radius: 16px;
  padding: 18px 32px;
  max-width: 700px;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(142,36,170,0.05);
}

.cert-cta-inner-light:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(142,36,170,0.12);
}

.cert-cta-icon-light {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #8E24AA, #AB47BC);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(142,36,170,0.2);
}

.cert-cta-text-light {
  flex: 1;
  font-size: 0.88rem;
  color: var(--neutral-600);
  line-height: 1.4;
  margin: 0;
}

.cert-cta-text-light strong { color: var(--neutral-900); }

.cert-cta-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: linear-gradient(135deg, #8E24AA, #AB47BC);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 16px rgba(142,36,170,0.3);
}

.cert-cta-btn-light:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(142,36,170,0.4); }

/* ── Mobile Responsiveness ── */
@media (max-width: 900px) {
  .diamond-pathway { gap: 0; padding: 4rem 0; }
  .diamond-node { width: 110px; height: 110px; margin-left: -5px; margin-right: -5px; }
  .dn-5 { width: 130px; height: 130px; }
}

@media (max-width: 600px) {
  .cert-diamond-section { padding: 3.5rem 0 3rem; }
  .cert-light-title { font-size: 1.8rem; }
  
  /* Switch to vertical alignment pillar for small screens */
  .diamond-pathway {
    flex-direction: column;
    padding: 2rem 0;
    gap: 40px;
  }
  
  .diamond-line {
    width: 6px;
    height: 90%;
    top: 5%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    background: linear-gradient(180deg, rgba(142,36,170,0.1) 0%, rgba(142,36,170,0.4) 50%, rgba(212,175,55,0.6) 100%);
  }

  .energy-pulse {
    width: 100%;
    height: 100px;
    background: linear-gradient(180deg, transparent, rgba(255,255,255,0.8), transparent);
    animation: energy-travel-y 6s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  }

  @keyframes energy-travel-y {
    0% { top: -100px; opacity: 0; left: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: 100%; opacity: 0; left: 0; }
  }

  .dn-1, .dn-2, .dn-3, .dn-4, .dn-5 { transform: translateY(0); margin: 0; width: 120px; height: 120px; }
  .dn-5 { width: 140px; height: 140px; }

  .dn-1:hover, .dn-2:hover, .dn-3:hover, .dn-4:hover, .dn-5:hover { transform: scale(1.1); }
  
  .cert-cta-inner-light {
    flex-direction: column;
    text-align: center;
    padding: 18px 20px;
    gap: 14px;
  }
}


/* ══════════════════════════════════════════════════════════════
   SECTION 5: CRYSTALS (Throat — #E3F2FD)
══════════════════════════════════════════════════════════════ */

/* Intro layout: text + image side by side */
.crystals-intro-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
  margin-bottom: var(--space-3xl);
}

.crystals-intro-text p {
  font-size: 0.97rem;
  color: var(--neutral-700);
  line-height: 1.85;
  margin-bottom: var(--space-md);
}

.crystals-intro-text p:last-child {
  margin-bottom: 0;
}

.crystals-intro-image {
  position: relative;
}

.crystals-main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-deep);
  transition: transform 0.6s var(--ease-out);
}

.crystals-intro-image:hover .crystals-main-img {
  transform: scale(1.02);
}

.crystals-img-overlay {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  background: rgba(21, 101, 192, 0.85);
  color: var(--white);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.8rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

/* Crystal types title */
.crystals-type-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: var(--space-xl);
  text-align: center;
}

/* Crystal type interactive grid — 3 columns */
.crystals-type-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

.crystal-type-card {
  padding: var(--space-lg);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(21, 101, 192, 0.08);
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  cursor: pointer;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    border-color var(--duration-base);
  position: relative;
}

.crystal-type-card:hover,
.crystal-type-card:focus-visible {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-card);
  border-color: rgba(21, 101, 192, 0.25);
  outline: 2px solid var(--accent-throat-mid);
  outline-offset: 2px;
}

.ctc-crystal-icon {
  font-size: 2rem;
  line-height: 1;
  flex-shrink: 0;
  transition: transform var(--duration-base) var(--ease-out);
}

.crystal-type-card:hover .ctc-crystal-icon {
  transform: rotate(-8deg) scale(1.15);
}

.ctc-content h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--neutral-900);
  margin-bottom: 0.25rem;
}

.ctc-content p {
  font-size: 0.8rem;
  color: var(--neutral-600);
  line-height: 1.65;
}

.ctc-chakra-dot {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
}


/* ══════════════════════════════════════════════════════════════
   SECTION 6: SPECIALIZED OBJECTS (Third Eye — #E8EAF6)
══════════════════════════════════════════════════════════════ */

.objects-intro {
  max-width: 760px;
  margin: 0 auto var(--space-3xl);
  text-align: center;
}

.objects-intro p {
  font-size: 1rem;
  color: var(--neutral-700);
  line-height: 1.85;
}

/* Objects grid — 3 columns, featured card spans 2 rows */
.objects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  margin-bottom: var(--space-3xl);
}

.object-showcase-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(57, 73, 171, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out);
}

.object-showcase-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

/* Featured card — row 1, spans col 1 + 2 */
.osc-featured {
  grid-column: span 2;
  flex-direction: row;
  align-items: center;
  background: linear-gradient(135deg, #F0F3FF, var(--chakra-thirdeye));
  border-color: rgba(57, 73, 171, 0.2);
}

/* Crystal object visual / emoji display */
.osc-visual {
  min-width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  flex-shrink: 0;
}

.osc-featured .osc-visual {
  min-width: 160px;
  height: 160px;
  margin: var(--space-xl);
}

.osc-emoji {
  font-size: 3.5rem;
  line-height: 1;
  position: relative;
  z-index: 1;
  transition: transform var(--duration-base) var(--ease-out);
}

.osc-featured .osc-emoji {
  font-size: 5rem;
}

.object-showcase-card:hover .osc-emoji {
  transform: scale(1.15) rotate(-5deg);
}

.osc-glow {
  position: absolute;
  width: 80%;
  height: 80%;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(57, 73, 171, 0.15) 0%, transparent 70%);
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }

  50% {
    transform: scale(1.3);
    opacity: 0.4;
  }
}

.osc-content {
  padding: var(--space-xl);
  flex: 1;
}

.osc-tag {
  display: inline-block;
  padding: 0.2rem 0.7rem;
  background: linear-gradient(135deg, var(--gold-light), #FFE082);
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
}

.osc-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-sm);
}

.osc-desc {
  font-size: 0.85rem;
  color: var(--neutral-600);
  line-height: 1.75;
  margin-bottom: var(--space-md);
}

.osc-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.osc-benefits-list li {
  font-size: 0.8rem;
  color: var(--neutral-700);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.osc-benefits-list li i {
  color: var(--accent-thirdeye-mid);
  font-size: 0.65rem;
  flex-shrink: 0;
}

/* Objects CTA banner */
.objects-cta-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-xl);
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--accent-thirdeye), var(--accent-thirdeye-mid));
  border-radius: var(--radius-xl);
  color: var(--white);
  box-shadow: 0 12px 36px rgba(57, 73, 171, 0.3);
  flex-wrap: wrap;
}

.ocb-text h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

.ocb-text p {
  font-size: 0.9rem;
  opacity: 0.85;
  line-height: 1.65;
  max-width: 520px;
}

.ocb-btn {
  background: var(--white);
  color: var(--accent-thirdeye);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.ocb-btn:hover {
  background: var(--gold-light);
  color: var(--gold-dark);
  transform: translateY(-2px) scale(1.02);
}


/* ══════════════════════════════════════════════════════════════
   SECTION 7: CONTACT (Crown — #F3E5F5)
══════════════════════════════════════════════════════════════ */

/* Contact 2-column layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--space-3xl);
  align-items: start;
}

/* === Contact Form === */
.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-float);
  padding: var(--space-2xl);
  border: 1px solid var(--accent-crown-light);
}

.reiki-contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

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

.form-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--neutral-700);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.form-label i {
  color: var(--accent-crown-mid);
  font-size: 0.8rem;
}

.form-input {
  padding: 0.8rem 1rem;
  border: 1.5px solid var(--neutral-200);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--neutral-900);
  background: var(--neutral-50);
  transition:
    border-color var(--duration-fast),
    box-shadow var(--duration-fast),
    background var(--duration-fast);
  outline: none;
}

.form-input::placeholder {
  color: var(--neutral-400);
}

.form-input:focus {
  border-color: var(--accent-crown-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(142, 36, 170, 0.12);
}

.form-input.is-invalid {
  border-color: var(--accent-root-mid);
  box-shadow: 0 0 0 3px rgba(239, 83, 80, 0.12);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6B8A' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}

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

.form-checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
  padding: var(--space-md);
  background: var(--chakra-crown);
  border-radius: var(--radius-md);
}

.form-checkbox {
  width: 18px;
  height: 18px;
  border: 2px solid var(--accent-crown-mid);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--accent-crown-mid);
}

.form-checkbox-label {
  font-size: 0.82rem;
  color: var(--neutral-700);
  line-height: 1.5;
  cursor: pointer;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  border-radius: var(--radius-md);
}

/* Success / Error messages */
.form-success-msg,
.form-error-msg {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
}

.form-success-msg {
  background: #E8F5E9;
  color: var(--accent-heart);
  border: 1px solid var(--accent-heart-light);
}

.form-success-msg i {
  color: var(--accent-heart-mid);
}

.form-error-msg {
  background: #FFEBEE;
  color: var(--accent-root);
  border: 1px solid var(--accent-root-light);
}

.form-error-msg i {
  color: var(--accent-root-mid);
}

/* === Contact Details Card === */
.contact-details-wrap {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  padding: var(--space-xl);
  border: 1px solid var(--accent-crown-light);
}

.cic-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--neutral-900);
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-md);
  border-bottom: 2px solid var(--accent-crown-light);
}

.cic-info-item {
  display: flex;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid var(--neutral-200);
}

.cic-info-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cic-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--accent-crown-light), var(--chakra-crown));
  color: var(--accent-crown-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.cic-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.cic-text strong {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--neutral-900);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cic-text address {
  font-style: normal;
  font-size: 0.87rem;
  color: var(--neutral-600);
  line-height: 1.7;
}

.cic-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-crown-mid);
  transition: color var(--duration-fast);
}

.cic-link:hover {
  color: var(--accent-crown);
  text-decoration: underline;
}

.cic-subtext {
  font-size: 0.75rem;
  color: var(--neutral-400);
}

.cic-text span {
  font-size: 0.87rem;
  color: var(--neutral-700);
}

/* WhatsApp CTA button */
.whatsapp-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  padding: 1rem var(--space-xl);
  background: #25D366;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.35);
  transition:
    transform var(--duration-base) var(--ease-out),
    box-shadow var(--duration-base) var(--ease-out),
    filter var(--duration-fast);
}

.whatsapp-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.45);
  filter: brightness(1.05);
}

.wa-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* Chakra Affirmation Card */
.chakra-affirmation {
  background: linear-gradient(135deg, var(--neutral-900) 0%, #2A1F3D 100%);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.chakra-affirmation::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(142, 36, 170, 0.3) 0%, transparent 70%);
  border-radius: var(--radius-full);
}

.ca-quote-mark {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--gold);
  line-height: 0.7;
  margin-bottom: var(--space-sm);
  opacity: 0.8;
}

.ca-quote {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
  line-height: 2;
  margin-bottom: var(--space-md);
}

.ca-attribution {
  font-size: 0.77rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.04em;
}


/* ══════════════════════════════════════════════════════════════
   MAIN HEADER & FOOTER PLACEHOLDERS
   (Hidden visually but present in DOM for injection)
══════════════════════════════════════════════════════════════ */
#main-header:empty,
#main-footer:empty {
  display: none;
}


/* ══════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
══════════════════════════════════════════════════════════════ */

/* ── Tablet (≤ 1024px) ────────────────────────────────────── */
@media (max-width: 1024px) {

  :root {
    --section-py: 4rem;
  }

  /* Hero: stack on tablet */
  .hero-container {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
    min-height: auto;
    padding-top: 4rem;
  }

  .hero-right {
    order: -1;
  }

  .hero-visual-wrap {
    max-width: 420px;
    margin: 0 auto;
  }

  .hero-main-img {
    height: 380px;
  }

  .hero-float-card {
    left: 0;
    bottom: 1rem;
  }

  .hero-chakra-dots {
    right: -0.5rem;
  }

  /* Section 2: stack */
  .about-reiki-grid {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Section 3: 2 col */
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Section 4: stack */
  .cert-showcase-layout {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .ascension-cta {
    margin-left: 0;
  }

  /* Section 5: 2 col */
  .crystals-type-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .crystals-intro-layout {
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
  }

  /* Section 6 */
  .objects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .osc-featured {
    grid-column: span 2;
    flex-direction: row;
  }

  /* Section 7 */
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ── Mobile (≤ 768px) ─────────────────────────────────────── */
@media (max-width: 768px) {

  :root {
    --section-py: 3rem;
    --container-pad: 1rem;
  }

  /* Section ornament — hide on mobile to save space */
  .section-ornament {
    display: none;
  }

  /* Hero */
  .rk-hero {
    min-height: auto;
    padding-top: 3rem;
  }

  .hero-stats-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-md);
    width: 100%;
  }

  .hero-stat-divider {
    display: none;
  }

  .hero-stat {
    width: 100%;
  }

  .hero-main-img {
    height: 300px;
  }

  .hero-float-card {
    left: 50%;
    transform: translateX(-50%);
    bottom: 0.5rem;
    white-space: nowrap;
    animation: none;
  }

  .hero-chakra-dots {
    display: none;
  }

  .hero-scroll-hint {
    display: none;
  }

  /* Principles: stack */
  .ar-principles-grid {
    grid-template-columns: 1fr;
  }

  /* Benefits: 1 col */
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  /* Timeline: stack */
  .timeline-steps {
    flex-direction: column;
    align-items: flex-start;
  }

  .ts-step {
    flex-direction: row;
    align-items: center;
    text-align: left;
    max-width: 100%;
    min-width: 100%;
  }

  .ts-content {
    text-align: left;
  }

  .ts-arrow {
    transform: rotate(90deg);
    align-self: flex-start;
    margin-left: 27px;
  }

  /* Crystals: 1 col */
  .crystals-type-grid {
    grid-template-columns: 1fr;
  }

  /* Objects: 1 col */
  .objects-grid {
    grid-template-columns: 1fr;
  }

  .osc-featured {
    grid-column: span 1;
    flex-direction: column;
  }

  .osc-featured .osc-visual {
    width: 100%;
    height: 100px;
    margin: var(--space-md) 0 0;
  }

  /* Contact form */
  .contact-form-wrap {
    padding: var(--space-lg);
  }

  /* Cert levels */
  .cert-level-card {
    flex-direction: column;
  }

  .clc-includes {
    grid-template-columns: 1fr;
  }

  .objects-cta-banner {
    flex-direction: column;
    text-align: center;
  }

  /* Page identity bar breadcrumb: hide on mobile */
  .pib-breadcrumb {
    display: none;
  }

  /* Section headers */
  .rk-section-header {
    margin-bottom: var(--space-2xl);
  }

  /* Profile card stats */
  .mpc-stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-lg);
  }
}

/* ── Small Mobile (≤ 480px) ───────────────────────────────── */
@media (max-width: 480px) {

  .hero-cta-row {
    flex-direction: column;
  }

  .btn-rk-primary,
  .btn-rk-ghost {
    width: 100%;
    justify-content: center;
  }

  .rk-section-title {
    font-size: 1.8rem;
  }

  .hero-headline {
    font-size: 2.2rem;
  }

  .cert-schedule-banner {
    flex-direction: column;
    text-align: center;
  }
}


/* ══════════════════════════════════════════════════════════════
   ACCESSIBILITY & FOCUS STYLES
══════════════════════════════════════════════════════════════ */

/* Global focus-visible ring */
:focus-visible {
  outline: 2px solid var(--accent-crown-mid);
  outline-offset: 3px;
}

/* Reduce motion for vestibular disorders */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  [data-animate] {
    opacity: 1;
    transform: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   PRINT STYLES
══════════════════════════════════════════════════════════════ */
@media print {

  .hero-deco-circle,
  .section-ornament,
  .hero-scroll-hint,
  .hero-chakra-dots,
  .osc-glow,
  .whatsapp-cta-btn,
  .chakra-affirmation::before {
    display: none !important;
  }

  .rk-section {
    padding: 2rem 0;
    break-inside: avoid;
  }

  .btn-rk-primary,
  .btn-rk-ghost {
    border: 1px solid #000;
  }
}