/* ===================================================================
   AYURVED FOUNDATION — Luxury Ayurvedic Website
   Dr. Anurag Jain (MD Ayurved) | Indore, India
   =================================================================== */

/* ---------- CSS Custom Properties (Theme) ---------- */
:root {
  /* Primary Palette — Muted Indian Ayurvedic */
  --gold:        #B8976A;
  --gold-light:  #C9AB82;
  --gold-dark:   #9A7B4F;
  --green-deep:  #3B4A3A;
  --green:       #5A6E58;
  --green-light: #728F6F;
  --cream:       #F7F3EE;
  --cream-dark:  #EDE6DB;
  --brown:       #6B4E3D;
  --brown-light: #8A6E5C;
  --charcoal:    #2D2A26;
  --white:       #FFFFFF;
  --off-white:   #FDFBF8;
  --text:        #3E3B37;
  --text-light:  #6D6760;
  --text-muted:  #9B9490;
  --saffron:     #C47D3B;
  --saffron-light: #D4944F;
  --terracotta:  #B06B4F;
  --sage:        #8FA88D;
  --overlay:     rgba(45, 42, 38, 0.65);

  /* Typography */
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body:    'Lato', 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 60px 0;
  --container-width: 1200px;

  /* Transitions */
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 16px 60px rgba(0,0,0,0.15);

  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

ul, ol { list-style: none; }

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* Accessible focus indicators */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

button:focus:not(:focus-visible),
a:focus:not(:focus-visible) {
  outline: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--charcoal);
}

/* ---------- Utility Classes ---------- */
.container {
  width: 90%;
  max-width: var(--container-width);
  margin: 0 auto;
}

.section {
  padding: var(--section-padding);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  color: var(--charcoal);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 640px;
  line-height: 1.8;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--brown));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(184, 151, 106, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(184, 151, 106, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

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

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

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
}

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

.btn-dark:hover {
  background: var(--brown);
  transform: translateY(-2px);
}

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

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saffron), var(--brown));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.2rem;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}

.nav-logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
  color: var(--gold-light);
}

.navbar.scrolled .nav-logo-text {
  color: var(--charcoal);
}

.nav-links {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--charcoal);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 100px 40px 40px;
  gap: 0;
  transition: var(--transition);
  box-shadow: -10px 0 30px rgba(0,0,0,0.2);
  z-index: 999;
}

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

.nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.8) !important;
  position: relative;
  padding: 14px 0;
  width: 100%;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.nav-links a:hover {
  color: var(--gold-light) !important;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--white);
}

.navbar.scrolled .nav-links a {
  color: var(--text);
}

.navbar.scrolled .nav-links a:hover {
  color: var(--saffron);
}

.nav-cta,
.navbar.scrolled .nav-cta {
  display: inline-block;
  width: auto;
  padding: 10px 24px !important;
  font-size: 0.8rem !important;
  background: linear-gradient(135deg, var(--gold), var(--saffron));
  color: var(--white) !important;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-top: 20px;
  text-align: center;
  border-bottom: none !important;
}

.nav-cta::after { display: none !important; }

.nav-cta:hover,
.navbar.scrolled .nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(184,151,106,0.4);
  color: var(--white) !important;
}

/* Mobile Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.nav-overlay.visible {
  opacity: 1;
  visibility: visible;
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}

.navbar.scrolled .nav-toggle span {
  background: var(--charcoal);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--charcoal);
  overflow: hidden;
}

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

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

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    radial-gradient(circle at 20% 50%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--gold) 1px, transparent 1px),
    radial-gradient(circle at 60% 80%, var(--gold) 1px, transparent 1px);
  background-size: 60px 60px, 80px 80px, 70px 70px;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(45, 42, 38, 0.55) 0%,
    rgba(45, 42, 38, 0.45) 40%,
    rgba(45, 42, 38, 0.65) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 20px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: rgba(184, 151, 106, 0.15);
  border: 1px solid rgba(184, 151, 106, 0.3);
  border-radius: 50px;
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 30px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 24px;
}

.hero-title .highlight {
  color: var(--gold-light);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255,255,255,0.75);
  max-width: 600px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  justify-content: center;
}

.hero-buttons .btn {
  width: 100%;
  max-width: 280px;
  justify-content: center;
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat {
  text-align: center;
}

.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Floating Decorative Elements */
.hero-float {
  position: absolute;
  border-radius: 50%;
  opacity: 0.06;
  animation: float 10s ease-in-out infinite;
  z-index: 1;
  --parallax-y: 0px;
  margin-top: var(--parallax-y);
}

.hero-float-1 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero-float-2 {
  width: 250px;
  height: 250px;
  background: var(--saffron);
  bottom: -50px;
  left: -50px;
  animation-delay: -4s;
}

.hero-float-3 {
  width: 150px;
  height: 150px;
  background: var(--gold-light);
  top: 30%;
  left: 10%;
  animation-delay: -7s;
}

@keyframes float {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-20px) scale(1.05); }
}

/* ---------- About Preview (Home) ---------- */
.about-preview {
  background: var(--cream);
}

.about-preview .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  background: url('../images/doctor-anurag-jain.png') center/cover no-repeat;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.2);
  font-size: 6rem;
}

.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

.about-experience-badge {
  position: absolute;
  bottom: -10px;
  right: -10px;
  left: auto;
  background: var(--white);
  padding: 20px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  z-index: 2;
}

.about-experience-badge .number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.about-experience-badge .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.about-text h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 30px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text);
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(184, 151, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--saffron);
  font-size: 0.85rem;
  flex-shrink: 0;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--off-white);
}

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

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.04);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--saffron), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

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

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(107,78,61,0.08), rgba(184,151,106,0.1));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
  color: var(--saffron);
}

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

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.service-link:hover {
  gap: 12px;
  color: var(--gold-dark);
}

/* ---------- Why Choose Us / Features ---------- */
.why-section {
  background: linear-gradient(135deg, var(--charcoal) 0%, #3B3530 50%, #2D2A26 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.why-section .section-title {
  color: var(--white);
}

.why-section .section-subtitle {
  color: rgba(255,255,255,0.7);
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.why-card {
  text-align: center;
  padding: 40px 24px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}

.why-card:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-5px);
}

.why-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(184, 151, 106, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold-light);
}

.why-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.why-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ---------- Treatments Section (Services Page) ---------- */
.treatments-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../images/services-bg.jpg') center/cover no-repeat;
}

.treatments-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,42,38,0.75), rgba(45,42,38,0.6));
}

.treatments-hero .container {
  position: relative;
  z-index: 2;
}

.treatments-hero .hero-bg-pattern {
  opacity: 0.03;
  z-index: 1;
}

.treatments-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.treatments-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.treatment-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* On mobile: image always first (default DOM order) */

.treatment-detail-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.treatment-detail-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
}

.treatment-detail-content h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.treatment-detail-content p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.treatment-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}

.treatment-benefit-tag {
  padding: 6px 16px;
  background: rgba(184, 151, 106, 0.1);
  color: var(--brown);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
}

/* ---------- Testimonials ---------- */
.testimonials-section {
  background: var(--cream);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 60px;
}

.testimonial-card {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brown), var(--brown-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name {
  font-weight: 700;
  font-size: 0.95rem;
}

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

/* ---------- CTA Banner ---------- */
.cta-section {
  background: linear-gradient(135deg, var(--brown), var(--gold-dark), var(--gold));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(255,255,255,0.15) 0%, transparent 70%);
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 30px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- About Page ---------- */
.about-hero {
  padding: 140px 0 60px;
  position: relative;
  overflow: hidden;
  background: url('../images/about-clinic.jpg') center/cover no-repeat;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(45,42,38,0.82), rgba(45,42,38,0.55));
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  text-align: center;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-hero-image {
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  max-width: 300px;
  margin: 0 auto;
}

.about-hero-image .image-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(255,255,255,0.2);
}

.about-hero-text h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 8px;
}

.about-hero-text .degree {
  color: var(--gold-light);
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.about-hero-text p {
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 14px;
}

.about-philosophy {
  background: var(--cream);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 50px;
}

.philosophy-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.philosophy-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.philosophy-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(184, 151, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
  color: var(--saffron);
}

.philosophy-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.philosophy-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Qualifications */
.qualifications {
  background: var(--off-white);
}

.qual-timeline {
  max-width: 700px;
  margin: 50px auto 0;
  position: relative;
}

.qual-timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--saffron), var(--gold));
}

.qual-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.qual-dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
  font-size: 1.2rem;
  color: var(--saffron);
}

.qual-content h3 {
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.qual-content .qual-year {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.qual-content p {
  color: var(--text-light);
  margin-top: 8px;
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---------- Contact Page ---------- */
.contact-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../images/contact-bg.jpg') center/cover no-repeat;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,42,38,0.75), rgba(45,42,38,0.6));
}

.contact-hero .container {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
  position: relative;
}

.contact-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
}

.contact-hero .section-label {
  position: relative;
}

.contact-section {
  background: var(--cream);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(5px);
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(184, 151, 106, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--saffron);
  flex-shrink: 0;
}

.contact-info-card h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.contact-info-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.contact-info-card a {
  color: var(--gold);
  font-weight: 600;
}

.contact-info-card a:hover {
  color: var(--gold-dark);
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.contact-form-wrapper h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-form-wrapper .form-subtitle {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 0.95rem;
}

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

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

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 151, 106, 0.12);
  background: var(--white);
}

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

/* Map Section */
.map-section {
  padding: 0;
  height: 400px;
  background: var(--cream-dark);
  position: relative;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand .nav-logo-text {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  font-size: 0.9rem;
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--white);
}

.footer-column h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.footer-column ul li {
  margin-bottom: 12px;
}

.footer-column ul li a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

.footer-column ul li a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-contact-item .icon {
  color: var(--gold);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.footer-powered {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.76);
  line-height: 1.5;
}

.footer-powered a {
  color: var(--gold-light);
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-powered a:hover {
  color: var(--gold);
  text-decoration: underline;
}

.footer-anuyog-logo {
  width: min(128px, 46vw);
  height: auto;
  display: block;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.footer-anuyog-logo:hover {
  opacity: 1;
}

/* ---------- Scroll-Reveal Animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

/* Staggered children */
.stagger-children .reveal {
  transition-delay: calc(var(--stagger-index, 0) * 0.1s);
}

/* ---------- Page Transition Overlay ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--charcoal);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  pointer-events: none;
}

.loader-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(184, 151, 106, 0.2);
  border-top-color: var(--saffron);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

/* ---------- Back to Top ---------- */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
  cursor: pointer;
  border: none;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold-dark);
  transform: translateY(-3px);
}

/* ---------- Responsive Design (Mobile-First) ---------- */

/* Tablet & up */
@media (min-width: 769px) {
  :root {
    --section-padding: 80px 0;
  }

  /* Desktop Navigation */
  .nav-links {
    position: static;
    width: auto;
    height: auto;
    background: none;
    flex-direction: row;
    align-items: center;
    padding: 0;
    gap: 32px;
    box-shadow: none;
    z-index: auto;
  }

  .nav-links a {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85) !important;
    padding: 0;
    width: auto;
    border-bottom: none;
  }

  .navbar.scrolled .nav-links a {
    color: var(--text) !important;
  }

  .navbar.scrolled .nav-links a:hover {
    color: var(--saffron) !important;
  }

  .nav-cta,
  .navbar.scrolled .nav-cta {
    margin-top: 0;
    margin-left: 8px;
  }

  .nav-toggle {
    display: none;
  }

  .nav-overlay {
    display: none;
  }

  /* Hero */
  .hero-buttons {
    flex-direction: row;
  }

  .hero-buttons .btn {
    width: auto;
    max-width: none;
  }

  .hero-stats {
    flex-direction: row;
    gap: 40px;
  }

  .hero-stat-number {
    font-size: 2.5rem;
  }

  /* About Preview */
  .about-preview .container {
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }

  .about-image-wrapper {
    max-width: none;
  }

  .about-experience-badge {
    bottom: 30px;
    left: -30px;
    right: auto;
  }

  .about-features {
    grid-template-columns: 1fr 1fr;
  }

  /* Services */
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Treatments */
  .treatment-detail {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .treatment-detail:nth-child(even) .treatment-detail-image {
    order: 2;
  }

  /* About Page */
  .about-hero-content {
    grid-template-columns: auto 1fr;
    text-align: left;
    gap: 50px;
  }

  .about-hero-image {
    max-width: none;
    margin: 0;
  }

  .philosophy-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Inner page heroes */
  .treatments-hero,
  .about-hero,
  .contact-hero,
  .gallery-hero,
  .testimonials-hero {
    padding: 180px 0 80px;
  }

  /* Contact */
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }

  .form-row {
    grid-template-columns: 1fr 1fr;
  }

  .contact-form-wrapper {
    padding: 40px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Testimonials Page */
  .testimonials-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-testimonial {
    grid-template-columns: auto 1fr;
    text-align: left;
    padding: 40px;
    gap: 30px;
  }

  .featured-testimonial-translation {
    border-top: none;
    padding-top: 0;
    border-left: 3px solid var(--gold-light);
    padding-left: 16px;
  }

  .featured-testimonial-author {
    justify-content: flex-start;
  }

  /* WhatsApp — show text */
  .whatsapp-float a {
    padding: 12px 20px;
    border-radius: 50px;
  }

  .whatsapp-float a i {
    font-size: 1.3rem;
  }

  .whatsapp-float .wa-text {
    display: inline;
  }
}

/* Desktop & up */
@media (min-width: 1025px) {
  :root {
    --section-padding: 100px 0;
  }

  /* Inner page heroes */
  .treatments-hero,
  .about-hero,
  .contact-hero,
  .gallery-hero,
  .testimonials-hero {
    padding: 180px 0 100px;
  }

  .about-preview .container {
    gap: 80px;
  }

  .about-hero-content {
    gap: 60px;
  }

  /* Services — 3 columns */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Why — 4 columns */
  .why-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  /* Testimonials — 3 columns */
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Treatments */
  .treatment-detail {
    gap: 60px;
  }

  /* Philosophy — 3 columns */
  .philosophy-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Hero Stats */
  .hero-stats {
    gap: 60px;
  }

  /* Gallery — 3 columns */
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Footer — 4 columns */
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
  }

  /* Testimonials Page — 3 columns */
  .testimonials-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- Ornamental Divider ---------- */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

.ornament-line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.ornament-icon {
  color: var(--gold);
  font-size: 1rem;
  opacity: 0.6;
}

/* ---------- Scrollbar Styling ---------- */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ---------- Gallery Page ---------- */
.gallery-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../images/hero-ayurveda.jpg') center/cover no-repeat;
}

.gallery-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,42,38,0.75), rgba(45,42,38,0.6));
}

.gallery-hero .container {
  position: relative;
  z-index: 2;
}

.gallery-hero .hero-bg-pattern {
  opacity: 0.03;
  z-index: 1;
}

.gallery-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.gallery-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.gallery-section {
  background: var(--cream);
}

.gallery-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 50px;
}

.gallery-filter {
  padding: 10px 24px;
  border: 1px solid rgba(0,0,0,0.12);
  background: var(--white);
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.gallery-filter:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.gallery-filter.active {
  background: var(--brown);
  color: var(--white);
  border-color: var(--brown);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(45,42,38,0.85) 0%, rgba(45,42,38,0.2) 50%, transparent 100%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content h4 {
  color: var(--white);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.gallery-overlay-content p {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

.gallery-item.hidden {
  display: none;
}

/* ---------- Testimonials Page ---------- */
.testimonials-hero {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../images/about-clinic.jpg') center/cover no-repeat;
}

.testimonials-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(45,42,38,0.75), rgba(45,42,38,0.6));
}

.testimonials-hero .container {
  position: relative;
  z-index: 2;
}

.testimonials-hero .hero-bg-pattern {
  opacity: 0.03;
  z-index: 1;
}

.testimonials-hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 16px;
}

.testimonials-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.featured-testimonial {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: center;
  align-items: start;
  max-width: 900px;
  margin: 0 auto;
}

.featured-testimonial-quote {
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}

.featured-testimonial-text {
  font-size: 1.1rem;
  line-height: 1.9;
  color: var(--text);
  margin-bottom: 16px;
}

.featured-testimonial-translation {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 24px;
  padding-top: 16px;
  border-top: 2px solid var(--gold-light);
}

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

.testimonials-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

/* Gallery & Testimonials responsive rules are in the main min-width blocks above */

/* ---------- Floating WhatsApp Button ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  left: 30px;
  z-index: 100;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.whatsapp-float a:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-float a i {
  font-size: 1.5rem;
}

.whatsapp-float .wa-text {
  display: none;
}

/* WhatsApp responsive rules are in the main min-width blocks above */

/* ---------- Splash Screen ---------- */
.splash-screen {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.splash-screen.splash-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.splash-mandala {
  width: 120px;
  height: 120px;
  color: var(--gold);
  animation: splashMandalaFadeIn 1.2s ease forwards;
  opacity: 0;
}

.splash-mandala svg {
  width: 100%;
  height: 100%;
}

.splash-petals-outer {
  animation: splashRotateSlow 8s linear infinite;
  transform-origin: 100px 100px;
}

.splash-petals-inner {
  animation: splashRotateSlow 6s linear infinite reverse;
  transform-origin: 100px 100px;
}

.splash-center {
  animation: splashPulse 2s ease-in-out infinite;
}

.splash-text {
  opacity: 0;
  animation: splashTextFadeIn 1s ease 0.6s forwards;
}

.splash-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 5vw, 2.4rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
}

.splash-divider {
  width: 50px;
  height: 1px;
  background: var(--gold);
  margin: 12px auto;
  opacity: 0;
  animation: splashDividerGrow 0.8s ease 1s forwards;
}

.splash-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.75rem, 2vw, 0.9rem);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0;
  animation: splashTextFadeIn 0.8s ease 1.2s forwards;
}

@keyframes splashMandalaFadeIn {
  0% { opacity: 0; transform: scale(0.5) rotate(-30deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

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

@keyframes splashPulse {
  0%, 100% { opacity: 0.6; r: 10; }
  50% { opacity: 1; r: 12; }
}

@keyframes splashTextFadeIn {
  0% { opacity: 0; transform: translateY(10px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes splashDividerGrow {
  0% { width: 0; opacity: 0; }
  100% { width: 50px; opacity: 0.6; }
}

/* ---------- Selection Styling ---------- */
::selection {
  background: rgba(184, 151, 106, 0.25);
  color: var(--charcoal);
}
