/* ==========================================================================
   CONSETT REIKI - PREMIUM HOLISTIC DESIGN SYSTEM
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Design System & CSS Variables
   -------------------------------------------------------------------------- */
:root {
  /* Colors */
  --bg-base: #FAF8F5;          /* Warm, welcoming cream/parchment */
  --primary-dark: #2C1E3D;     /* Grounded, majestic spiritual dark violet */
  --primary-medium: #4B3369;   /* Royal violet */
  --accent-lavender: #9C89B8;  /* Soothing aura lavender */
  --light-lavender: #EBE7F5;   /* Calming energy mist */
  --accent-gold: #D4AF37;      /* High frequency golden divine energy light */
  --accent-gold-dark: #B59023; /* Darker gold for high-contrast text */
  --accent-gold-glow: rgba(212, 175, 55, 0.18);
  --text-main: #241B2C;        /* Rich charcoal violet for ultimate reading comfort */
  --text-muted: #5E5369;       /* Softer purple-gray for secondary text */
  --text-light: #FAF8F5;       /* Bright elements text */
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.55);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-shadow: rgba(44, 30, 61, 0.06);
  --card-shadow-hover: rgba(44, 30, 61, 0.12);
  
  /* Layout tokens */
  --max-width: 1200px;
  --font-serif: 'Cormorant Garamond', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
  
  /* Animations */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* --------------------------------------------------------------------------
   2. Base Rules & Resets
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  background-color: var(--bg-base);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
}
::-webkit-scrollbar-thumb {
  background: var(--light-lavender);
  border-radius: 10px;
  border: 2px solid var(--bg-base);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-lavender);
}

/* --------------------------------------------------------------------------
   3. Animated Background Energy Aura Blobs
   -------------------------------------------------------------------------- */
.aura-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  opacity: 0.35;
  pointer-events: none;
  animation: floatAura 20s infinite alternate ease-in-out;
}

.aura-1 {
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, var(--light-lavender) 0%, rgba(230, 226, 240, 0) 70%);
  top: -10%;
  right: -5%;
  animation-duration: 25s;
}

.aura-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(156, 137, 184, 0.45) 0%, rgba(156, 137, 184, 0) 70%);
  bottom: 20%;
  left: -10%;
  animation-duration: 30s;
  animation-delay: -5s;
}

.aura-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, rgba(212, 175, 55, 0) 70%);
  top: 40%;
  right: 15%;
  animation-duration: 22s;
  animation-delay: -10s;
}

@keyframes floatAura {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.15);
  }
  100% {
    transform: translate(-30px, 50px) scale(0.9);
  }
}

/* --------------------------------------------------------------------------
   4. Typography & Common Elements
   -------------------------------------------------------------------------- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--primary-dark);
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-subtitle {
  font-family: var(--font-sans);
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--accent-gold-dark);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-accent-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), transparent);
  margin: 0 auto;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--primary-dark);
  color: var(--bg-base);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  box-shadow: 0 4px 15px rgba(44, 30, 61, 0.15);
  border: 1px solid var(--primary-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-primary:hover {
  background-color: transparent;
  color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 30, 61, 0.1);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--primary-dark);
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 500;
  border: 1px solid var(--accent-lavender);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background-color: rgba(156, 137, 184, 0.08);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   5. Header & Navigation
   -------------------------------------------------------------------------- */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(250, 248, 245, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(156, 137, 184, 0.08);
  transition: var(--transition-smooth);
}

.main-header.scrolled {
  background-color: rgba(250, 248, 245, 0.9);
  padding: 12px 0;
  box-shadow: 0 4px 30px rgba(44, 30, 61, 0.03);
}

.header-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-smooth);
}

.main-header.scrolled .header-container {
  padding: 10px 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.logo-icon {
  color: var(--accent-gold-dark);
  transition: var(--transition-smooth);
}

.logo:hover .logo-icon {
  transform: rotate(30deg);
}

/* Desktop Navigation */
.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding: 6px 0;
}

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

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

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

.nav-btn {
  display: inline-flex;
  background-color: var(--primary-dark);
  color: var(--bg-base);
  padding: 10px 22px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 4px 10px rgba(44, 30, 61, 0.1);
}

.nav-btn:hover {
  background-color: var(--accent-gold-dark);
  color: var(--bg-base);
  transform: translateY(-1px);
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.nav-toggle .bar {
  width: 100%;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 24px 80px 24px;
}

.hero-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-tagline {
  font-size: clamp(0.9rem, 2vw, 1.1rem);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--accent-gold-dark);
  margin-bottom: 24px;
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero-description {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 680px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 70px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Hero Quick Info Bar */
.hero-info-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 900px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 32px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  padding: 24px 32px;
  text-align: left;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 38px;
  height: 38px;
  color: var(--accent-gold-dark);
  background-color: var(--light-lavender);
  padding: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.info-label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.info-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 2px;
}

/* --------------------------------------------------------------------------
   7. Reiki Explanation / About Reiki Section
   -------------------------------------------------------------------------- */
.about-reiki {
  background-color: rgba(235, 231, 245, 0.25);
  position: relative;
}

.reiki-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.reiki-text p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.reiki-text p strong {
  color: var(--primary-dark);
  font-weight: 500;
}

.highlight-quote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.45rem !important;
  color: var(--primary-medium) !important;
  border-left: 2px solid var(--accent-gold);
  padding-left: 20px;
  margin: 32px 0 0 0;
}

.reiki-pillars {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pillar-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 20px var(--glass-shadow);
  border-radius: var(--border-radius-md);
  padding: 24px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  transition: var(--transition-smooth);
}

.pillar-card:hover {
  transform: translateX(10px) translateY(-2px);
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 10px 30px var(--card-shadow-hover);
  border-color: rgba(212, 175, 55, 0.3);
}

.pillar-icon-wrapper {
  width: 48px;
  height: 48px;
  background-color: var(--light-lavender);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-dark);
  flex-shrink: 0;
}

.pillar-icon {
  width: 24px;
  height: 24px;
}

.pillar-card h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary-dark);
}

.pillar-card p {
  grid-column: 2;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   8. Meet Amanda / Healer Section
   -------------------------------------------------------------------------- */
.practitioner-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: center;
}

/* Decorative Healer Art (Lineage Field) */
.practitioner-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.energy-canvas-container {
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--light-lavender);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 40px rgba(156, 137, 184, 0.15), 0 10px 40px var(--glass-shadow);
}

.energy-circle {
  position: absolute;
  border: 1px dashed rgba(156, 137, 184, 0.4);
  border-radius: 50%;
  animation: rotateCircle 35s infinite linear;
}

.circle-large {
  width: 120%;
  height: 120%;
  animation-duration: 60s;
}

.circle-medium {
  width: 100%;
  height: 100%;
  animation-duration: 40s;
  animation-direction: reverse;
}

.circle-small {
  width: 80%;
  height: 80%;
  border: 1px solid rgba(212, 175, 55, 0.15);
  animation-duration: 25s;
}

.practitioner-portrait-frame {
  width: 85%;
  height: 85%;
  border-radius: 120px 120px 24px 24px; /* Elegant arched dome shape mirroring Stonehenge's archways! */
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(44, 30, 61, 0.15);
  border: 4px solid var(--glass-border);
  background-color: var(--light-lavender);
  z-index: 2;
  position: relative;
}

.practitioner-portrait-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%; /* Perfect vertical alignment to show Amanda and the stones */
  transition: var(--transition-smooth);
}

.practitioner-image:hover .practitioner-portrait-img {
  transform: scale(1.05);
}

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

@keyframes pulseGlow {
  0% {
    r: 6px;
    fill-opacity: 0.1;
  }
  100% {
    r: 10px;
    fill-opacity: 0.35;
  }
}

.practitioner-label {
  position: absolute;
  bottom: -20px;
  background: var(--primary-dark);
  color: var(--bg-base);
  padding: 12px 24px;
  border-radius: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 8px 25px rgba(44, 30, 61, 0.2);
  z-index: 5;
}

.label-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
}

.label-subtitle {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold);
  margin-top: 2px;
}

.practitioner-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.practitioner-lead {
  font-size: 1.2rem !important;
  color: var(--primary-dark) !important;
  font-weight: 500;
  line-height: 1.5;
}

.credentials {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.cred-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--primary-dark);
}

.cred-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* UKRF Trust Badge Elements */
.trust-badge-wrapper {
  margin-top: 24px;
  display: inline-block;
  opacity: 0.95;
  transition: var(--transition-smooth);
}

.trust-badge-wrapper:hover {
  transform: scale(1.03);
  opacity: 1;
}

.trust-badge-img {
  max-width: 120px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(44, 30, 61, 0.08);
  border: 1px solid rgba(156, 137, 184, 0.15);
  background-color: #ffffff;
  padding: 4px;
}

.footer-badge {
  margin-top: 20px;
  display: inline-block;
}

.footer-badge-img {
  max-width: 70px;
  height: auto;
  opacity: 0.75;
  border-radius: 4px;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 3px;
  transition: var(--transition-fast);
}

.footer-badge-img:hover {
  opacity: 1;
  transform: translateY(-1px);
}

/* --------------------------------------------------------------------------
   9. Offerings & Services
   -------------------------------------------------------------------------- */
.offerings {
  background-color: rgba(212, 175, 55, 0.03);
}

.offerings-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.offering-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  padding: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.offering-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 45px var(--card-shadow-hover);
}

.offering-card.highlight {
  border: 1px solid rgba(212, 175, 55, 0.35);
  background: linear-gradient(180deg, rgba(255,255,255,0.7) 0%, rgba(251,249,246,0.65) 100%);
}

.card-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background-color: var(--accent-gold-dark);
  color: var(--bg-base);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 20px;
}

.offering-header {
  margin-bottom: 24px;
}

.offering-icon {
  width: 44px;
  height: 44px;
  color: var(--primary-medium);
  margin-bottom: 16px;
}

.offering-header h3 {
  font-size: 1.75rem;
  margin-bottom: 4px;
}

.session-duration {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.offering-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
}

.offering-price .currency {
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--primary-dark);
  margin-right: 4px;
}

.offering-price .amount {
  font-size: 3.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--primary-dark);
  line-height: 1;
}

.offering-price .per {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-left: 8px;
}

.offering-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.offering-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.check-icon {
  width: 18px;
  height: 18px;
  color: var(--accent-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

.card-btn {
  width: 100%;
  padding: 16px;
}

.offering-detail h3 {
  font-size: 1.85rem;
  margin-bottom: 16px;
}

.offering-detail p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Timeline steps */
.steps-timeline {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
}

.steps-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 20px;
  width: 1px;
  height: calc(100% - 30px);
  background-color: var(--accent-lavender);
  opacity: 0.3;
}

.timeline-step {
  display: flex;
  gap: 24px;
  position: relative;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--bg-base);
  border: 1px solid var(--accent-lavender);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary-dark);
  flex-shrink: 0;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(44, 30, 61, 0.02);
  transition: var(--transition-fast);
}

.timeline-step:hover .step-num {
  border-color: var(--accent-gold);
  background-color: var(--primary-dark);
  color: var(--bg-base);
}

.step-info h4 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.step-info p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.session-guide-subtitle {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-gold-dark);
  margin-bottom: 8px;
  font-weight: 600;
}

.session-guide-lead {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--primary-medium);
  margin-bottom: 30px;
  line-height: 1.4;
}

.timeline-list {
  list-style-type: none;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-list li {
  font-size: 0.95rem;
  color: var(--text-muted);
  position: relative;
  padding-left: 18px;
  line-height: 1.5;
}

.timeline-list li::before {
  content: "•";
  color: var(--accent-gold);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
  line-height: 1.1;
}

.remember-box {
  margin-top: 40px;
  background-color: var(--light-lavender);
  border-left: 3px solid var(--accent-gold);
  padding: 24px;
  border-radius: 0 var(--border-radius-md) var(--border-radius-md) 0;
  text-align: center;
}

.remember-title {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary-dark);
  display: block;
  margin-bottom: 8px;
}

.remember-box p {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--primary-dark);
  margin-bottom: 0 !important;
}

.remember-badge {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold-dark);
  margin-top: 10px;
}

/* --------------------------------------------------------------------------
   10. Studios & Hours Section
   -------------------------------------------------------------------------- */
.studios-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.studio-card {
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  transition: var(--transition-smooth);
}

.studio-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px var(--card-shadow-hover);
}

.studio-image-frame {
  width: 100%;
  height: 160px;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(44, 30, 61, 0.06);
  border: 1px solid rgba(156, 137, 184, 0.12);
  margin-top: 20px;
  margin-bottom: 20px;
}

.studio-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.studio-card:hover .studio-image-frame img {
  transform: scale(1.04);
}

.studio-card.active {
  border: 1px solid rgba(156, 137, 184, 0.2);
}

.studio-card.incoming {
  border: 1px dashed var(--accent-lavender);
  background: rgba(255, 255, 255, 0.3);
}

.studio-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 0.7rem;
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 15px;
  background-color: rgba(44, 30, 61, 0.05);
  color: var(--primary-dark);
}

.studio-badge.label-incoming {
  background-color: var(--accent-gold-glow);
  color: var(--accent-gold-dark);
}

.studio-header {
  margin-bottom: 28px;
}

.studio-icon {
  width: 36px;
  height: 36px;
  color: var(--accent-gold-dark);
  margin-bottom: 16px;
}

.studio-header h3 {
  font-size: 1.55rem;
  margin-bottom: 6px;
}

.studio-address {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.studio-schedule {
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(156, 137, 184, 0.15);
}

.studio-schedule h4 {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 14px;
}

.studio-schedule ul li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed rgba(156, 137, 184, 0.08);
}

.studio-schedule ul li:last-child {
  border-bottom: none;
}

.studio-schedule .day {
  font-weight: 500;
  color: var(--primary-medium);
}

.studio-schedule .hours {
  color: var(--text-muted);
}

.studio-footer .studio-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.font-gold {
  color: var(--accent-gold-dark) !important;
  font-weight: 500;
}

.expansion-teaser {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* --------------------------------------------------------------------------
   11. Reviews & Testimonials Section
   -------------------------------------------------------------------------- */
.testimonials {
  background-color: rgba(235, 231, 245, 0.2);
}

.testimonial-slider-container {
  max-width: 780px;
  margin: 0 auto;
  position: relative;
}

.testimonial-slider {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 32px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  padding: 50px 60px;
  min-height: 250px;
  position: relative;
  overflow: hidden;
}

.testimonial-slide {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transform: translateY(15px);
  transition: opacity 0.5s ease, transform 0.5s ease, position 0s 0.5s;
  pointer-events: none;
}

.testimonial-slide.active {
  opacity: 1;
  position: relative;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--accent-lavender);
  opacity: 0.25;
  height: 30px;
  margin-bottom: -10px;
}

.testimonial-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--primary-dark);
  margin-bottom: 24px;
}

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

.author-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-medium);
}

.author-location {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.slider-controls {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background-color: var(--accent-lavender);
  opacity: 0.4;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-dot:hover {
  opacity: 0.8;
}

.slider-dot.active {
  opacity: 1;
  background-color: var(--accent-gold-dark);
  transform: scale(1.2);
}

/* --------------------------------------------------------------------------
   12. Booking Inquiry & Contact Form
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 60px;
  align-items: start;
}

.contact-info p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  border-radius: var(--border-radius-md);
  transition: var(--transition-smooth);
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px var(--glass-shadow);
  border-color: rgba(156, 137, 184, 0.3);
}

.item-icon-wrapper {
  width: 44px;
  height: 44px;
  background-color: var(--light-lavender);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-medium);
  flex-shrink: 0;
}

.contact-icon {
  width: 22px;
  height: 22px;
}

.contact-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.contact-value {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-top: 2px;
}

.contact-reassurance {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.check-circle {
  width: 18px;
  height: 18px;
  color: var(--accent-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Booking Form */
.booking-form-wrapper {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 40px var(--glass-shadow);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.form-title {
  font-size: 1.65rem;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.form-group input, 
.form-group select, 
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid rgba(156, 137, 184, 0.25);
  background-color: rgba(255, 255, 255, 0.7);
  color: var(--text-main);
  transition: var(--transition-fast);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  background-color: #ffffff;
  box-shadow: 0 0 0 3px var(--accent-gold-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(94, 83, 105, 0.5);
  font-size: 0.9rem;
}

.btn-submit {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
  border: none;
  font-size: 1rem;
  gap: 8px;
}

.btn-arrow {
  width: 18px;
  height: 18px;
  transition: var(--transition-fast);
}

.btn-submit:hover .btn-arrow {
  transform: translateX(4px);
}

/* Success Overlay State */
.form-success-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-base);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

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

.success-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 420px;
  transform: translateY(20px);
  transition: var(--transition-smooth);
  transition-delay: 0.15s;
}

.form-success-overlay.active .success-content {
  transform: translateY(0);
}

.success-icon-wrapper {
  width: 64px;
  height: 64px;
  background-color: var(--accent-gold-glow);
  color: var(--accent-gold-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.success-check-icon {
  width: 32px;
  height: 32px;
}

.success-content h3 {
  font-size: 1.85rem;
  margin-bottom: 12px;
}

.success-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.success-alternative {
  background-color: var(--light-lavender);
  padding: 12px 24px;
  border-radius: 12px;
  font-size: 0.9rem !important;
  color: var(--primary-dark) !important;
  margin-top: 10px;
  margin-bottom: 28px !important;
}

.success-alternative strong {
  font-size: 1.15rem;
  letter-spacing: 0.05em;
  display: inline-block;
  margin-top: 4px;
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.main-footer {
  background-color: var(--primary-dark);
  color: var(--bg-base);
  padding: 80px 0 0 0;
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 60px 24px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 60px;
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 600;
  color: var(--bg-base);
  margin-bottom: 12px;
}

.footer-brand .footer-logo svg {
  color: var(--accent-gold);
}

.footer-tagline {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.footer-credentials {
  font-size: 0.9rem;
  color: var(--accent-lavender);
  line-height: 1.5;
}

.footer-links h4,
.footer-meta h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links ul a {
  font-size: 0.95rem;
  color: var(--accent-lavender);
}

.footer-links ul a:hover {
  color: var(--bg-base);
  padding-left: 4px;
}

.footer-meta p {
  font-size: 0.95rem;
  color: var(--accent-lavender);
  margin-bottom: 12px;
}

.footer-meta p a {
  color: var(--bg-base);
  font-weight: 500;
}

.footer-meta p a:hover {
  color: var(--accent-gold);
}

.local-text {
  margin-top: 20px;
  font-size: 0.85rem !important;
  opacity: 0.7;
  font-style: italic;
}

.footer-bottom {
  border-top: 1px solid rgba(156, 137, 184, 0.1);
  padding: 30px 24px;
}

.footer-bottom-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--accent-lavender);
  flex-wrap: wrap;
  gap: 16px;
}

.creator-stamp {
  font-weight: 500;
  color: var(--accent-gold);
  opacity: 0.8;
}

/* --------------------------------------------------------------------------
   14. Scroll Reveal Animations & State Modifiers
   -------------------------------------------------------------------------- */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.reveal-active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUpIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero .fade-in:nth-child(1) { animation-delay: 0.1s; }
.hero .fade-in:nth-child(2) { animation-delay: 0.25s; }
.hero .fade-in:nth-child(3) { animation-delay: 0.4s; }
.hero .fade-in:nth-child(4) { animation-delay: 0.55s; }
.hero .fade-in:nth-child(5) { animation-delay: 0.7s; }

@keyframes fadeUpIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --------------------------------------------------------------------------
   10b. Sanctuary & Qualifications Gallery Section
   -------------------------------------------------------------------------- */
.gallery {
  background-color: rgba(235, 231, 245, 0.15);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
}

.gallery-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 8px 30px var(--glass-shadow);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
}

.gallery-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px var(--card-shadow-hover);
  border-color: rgba(212, 175, 55, 0.25);
}

.gallery-image-wrapper {
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background-color: var(--light-lavender);
  position: relative;
}

.gallery-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: var(--transition-smooth);
}

.gallery-card:hover .gallery-image-wrapper img {
  transform: scale(1.05);
}

.gallery-caption {
  padding: 16px 20px;
  background-color: rgba(255, 255, 255, 0.8);
  border-top: 1px solid rgba(156, 137, 184, 0.08);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gallery-caption h3 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 1024px) {
  .gallery-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 20px;
    padding-bottom: 20px;
    scrollbar-width: thin;
  }
  
  .gallery-grid::-webkit-scrollbar {
    height: 6px;
  }
  
  .gallery-card {
    flex: 0 0 280px;
    scroll-snap-align: start;
  }
  
  .gallery-image-wrapper {
    aspect-ratio: 3/4;
  }
}

/* --------------------------------------------------------------------------
   15. Responsive Styling (Media Queries)
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .section-container {
    padding: 80px 24px;
  }
  
  .reiki-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .practitioner-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .practitioner-image {
    order: -1;
  }
  
  .offerings-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .studios-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  /* Mobile Menu Toggle States */
  .nav-toggle {
    display: flex;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-base);
    box-shadow: -10px 0 40px rgba(44, 30, 61, 0.15);
    padding: 100px 30px 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  
  /* Hero */
  .hero {
    padding-top: 120px;
    padding-bottom: 60px;
  }
  
  .hero-info-bar {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px;
  }
  
  /* Timeline */
  .steps-timeline::before {
    left: 15px;
  }
  
  .step-num {
    width: 30px;
    height: 30px;
    font-size: 0.85rem;
  }
  
  .testimonial-slider {
    padding: 30px 24px 40px 24px;
    min-height: 320px;
  }
  
  .testimonial-slide {
    padding: 30px 24px 40px 24px;
  }
  
  .testimonial-text {
    font-size: 1.2rem;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .booking-form-wrapper {
    padding: 24px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
}
