/* ==========================================================================
   HOPE FOUNDATION (HF) NEPAL — Radiant Bright Sanctuary Design System
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  /* Radiant Bright Color Palette: Dawn of Healing Sanctuary */
  --bg-page: #f8fafc;
  --bg-surface: #ffffff;
  --bg-alt: #f1f5f9;
  --bg-subtle-teal: #f0fdfa;
  --bg-subtle-amber: #fffbeb;
  --bg-card: #ffffff;
  --bg-card-hover: #ffffff;
  --bg-card-elevated: #ffffff;

  /* Healing Emerald / Teal */
  --primary-teal: #0d9488;
  --teal-dark: #0f766e;
  --teal-deep: #134e4a;
  --teal-light: #14b8a6;
  --teal-surface: #ccfbf1;
  --teal-glow: rgba(13, 148, 136, 0.18);

  /* Radiant Sunrise Amber / Gold */
  --primary-gold: #f59e0b;
  --primary-amber: #d97706;
  --amber-dark: #b45309;
  --amber-deep: #78350f;
  --amber-light: #fbbf24;
  --amber-surface: #fef3c7;
  --amber-glow: rgba(245, 158, 11, 0.22);
  --sun-light: #78350f;

  /* Crisis & Urgent Hotline Rose */
  --hope-rose: #e11d48;
  --rose-dark: #be123c;
  --rose-light: #fb7185;
  --rose-surface: #ffe4e6;
  --rose-glow: rgba(225, 29, 72, 0.25);

  /* Typography Colors (WCAG AAA High Contrast) */
  --text-main: #0f172a;
  --text-body: #334155;
  --text-muted: #64748b;
  --text-subtle: #94a3b8;
  --text-dark: #0f172a;
  --text-white: #ffffff;

  /* Borders & Dividers */
  --border-subtle: #e2e8f0;
  --border-medium: #cbd5e1;
  --border-card: #e2e8f0;
  --border-gold: #fde68a;
  --border-teal: #99f6e4;
  --border-rose: #fecdd3;

  /* Fonts */
  --font-en: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --font-ne: 'Noto Sans Devanagari', 'Plus Jakarta Sans', system-ui, sans-serif;

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  /* Multi-layered Soft Shadows */
  --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.05), 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-md: 0 4px 16px -2px rgba(15, 23, 42, 0.06), 0 2px 6px -1px rgba(15, 23, 42, 0.04);
  --shadow-lg: 0 12px 30px -4px rgba(15, 23, 42, 0.08), 0 4px 12px -2px rgba(15, 23, 42, 0.04);
  --shadow-xl: 0 20px 48px -8px rgba(15, 23, 42, 0.12), 0 8px 20px -4px rgba(15, 23, 42, 0.06);
  --shadow-glow: 0 12px 36px -4px rgba(245, 158, 11, 0.25);
  --shadow-glow-teal: 0 12px 36px -4px rgba(13, 148, 136, 0.22);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-ne);
  background-color: var(--bg-page);
  color: var(--text-body);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body[data-lang="en"] {
  font-family: var(--font-en);
}

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

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

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

/* Containers */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   STICKY HEADER & NAVIGATION
   ========================================================================== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background-color: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  transition: all var(--transition-smooth);
}

.site-header.scrolled {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 0.6rem 0;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
  border-bottom-color: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  width: 48px;
  object-fit: contain;
  border-radius: 50%;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.08));
  transition: transform var(--transition-fast);
}

.brand-logo:hover img {
  transform: rotate(6deg) scale(1.06);
}

.brand-name-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name-en {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #0f172a;
}

.brand-name-ne {
  font-family: 'Noto Sans Devanagari', system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary-teal);
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 1.8rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 600;
  color: #475569;
  position: relative;
  padding: 0.3rem 0;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary-teal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2.5px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-amber));
  border-radius: 2px;
  transition: width var(--transition-smooth);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

/* Language Toggle Switch */
.lang-toggle {
  display: inline-flex;
  align-items: center;
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 3px;
  gap: 2px;
}

.lang-btn {
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  color: #64748b;
  transition: all var(--transition-fast);
}

.lang-btn.active {
  background: #ffffff;
  color: var(--primary-teal);
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08);
}

/* Header Emergency Hotline Button */
.header-hotline-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.05rem;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: var(--hope-rose);
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  transition: all var(--transition-fast);
}

.header-hotline-btn:hover {
  background: var(--hope-rose);
  color: #ffffff;
  border-color: var(--hope-rose);
  box-shadow: 0 4px 14px rgba(225, 29, 72, 0.35);
  transform: translateY(-1px);
}

.hotline-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--hope-rose);
  animation: pulseBeacon 1.8s infinite;
}

/* Mobile Nav Toggle */
.mobile-toggle-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  padding: 9px;
}

.mobile-toggle-btn span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-main);
  border-radius: 2px;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.mobile-toggle-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-toggle-btn.open span:nth-child(2) {
  opacity: 0;
}
.mobile-toggle-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   FULL-SCREEN IMMERSIVE HERO TAKEOVER (100VH DESTINATION-STYLE OPENING)
   ========================================================================== */
.immersive-hero-takeover {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
}

.takeover-bg-layer {
  position: absolute;
  inset: -6%;
  width: 112%;
  height: 112%;
  z-index: 1;
  pointer-events: none;
}

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

.takeover-mist-layer {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 65%, rgba(254, 243, 199, 0.18) 0%, rgba(204, 251, 241, 0.1) 45%, transparent 75%);
  z-index: 2;
  pointer-events: none;
}

.takeover-vignette-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 45%, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.78) 90%);
  z-index: 3;
}

.takeover-content {
  position: relative;
  z-index: 4;
  text-align: center;
  max-width: 960px;
  padding: 2rem 1.5rem;
  color: #ffffff;
  animation: takeoverFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.takeover-seal-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}

.takeover-seal-wrap::before {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px dashed rgba(245, 158, 11, 0.6);
  animation: rotateSlow 30s linear infinite;
}

.takeover-seal-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(245, 158, 11, 0.45);
  background: #ffffff;
  padding: 3px;
  border: 3px solid #0d9488;
}

.takeover-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(254, 243, 199, 0.35);
  padding: 0.45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 700;
  color: #fde68a;
  letter-spacing: 0.04em;
  margin-bottom: 1.2rem;
  text-transform: uppercase;
}

.takeover-badge-dot {
  width: 8px;
  height: 8px;
  background-color: #10b981;
  border-radius: 50%;
  box-shadow: 0 0 10px #10b981;
  animation: pulseDot 2s infinite;
}

.takeover-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1.2rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  letter-spacing: -0.02em;
}

.takeover-title-ne {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #fde68a;
  margin-top: 0.4rem;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.5);
}

.takeover-slogan {
  font-size: clamp(1.1rem, 2.2vw, 1.4rem);
  font-weight: 600;
  color: #e2e8f0;
  max-width: 780px;
  margin: 0 auto 2.2rem;
  line-height: 1.6;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.takeover-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.takeover-btn-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(217, 119, 6, 0.4);
  transition: all 0.3s ease;
  border: 1px solid rgba(254, 243, 199, 0.4);
}

.takeover-btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(217, 119, 6, 0.6);
  background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
}

.takeover-btn-glass {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.95rem 2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
}

.takeover-btn-glass:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

.takeover-scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  animation: scrollIndicatorBounce 2.4s ease-in-out infinite;
}

.takeover-mouse-icon {
  width: 22px;
  height: 36px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  position: relative;
}

.takeover-mouse-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 7px;
  background: #fde68a;
  border-radius: 2px;
  animation: scrollWheel 1.8s infinite;
}

@keyframes scrollWheel {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 12px);
  }
}

/* ==========================================================================
   SCROLL-STORY HOMEPAGE ARCHITECTURE (BRIGHT THEME)
   ========================================================================== */
.story-scroll-container {
  width: 100%;
}

.story-slide {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 7rem 1.5rem 5rem;
  overflow: hidden;
}


.story-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.story-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.92) contrast(1.02);
  transition: transform 1.2s ease-out;
}

.story-slide:hover .story-slide-bg img {
  transform: scale(1.02);
}

.story-overlay-gradient {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.72) 0%, rgba(248, 250, 252, 0.95) 85%);
}

.story-content {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

/* Slogan Ticker Bar */
.slogan-ticker-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-full);
  padding: 0.45rem 1.35rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(245, 158, 11, 0.12);
  backdrop-filter: blur(10px);
}

.slogan-ticker-icon {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--primary-amber);
  box-shadow: 0 0 8px var(--primary-amber);
}

.slogan-text {
  font-size: 0.95rem;
  font-weight: 700;
  color: #92400e;
  letter-spacing: 0.3px;
}

/* Slide 1: The Hook */
.hook-slide {
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 50%, #fffbeb 100%);
}

.hook-slide .main-slogan-hero {
  font-size: clamp(2.1rem, 5.2vw, 4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #0f172a 20%, #0d9488 65%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.scroll-indicator {
  margin-top: 3.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: #64748b;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
}

.mouse-scroll-icon {
  width: 24px;
  height: 38px;
  border: 2px solid #94a3b8;
  border-radius: 14px;
  position: relative;
}

.mouse-wheel {
  width: 4px;
  height: 8px;
  background: var(--primary-teal);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scrollWheel 2s infinite;
}

/* Slide 2: The Pain (Empathetic Sanctuary) */
.pain-slide {
  background: linear-gradient(180deg, #fffbeb 0%, #f8fafc 50%, #f1f5f9 100%);
}

.pain-slide .story-overlay-gradient {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 252, 0.94) 85%);
}

.narrative-title {
  font-size: clamp(1.9rem, 4.2vw, 3.2rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.2rem;
  letter-spacing: -0.5px;
}

.narrative-sub {
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: var(--text-body);
  max-width: 720px;
  margin: 0 auto;
  font-weight: 400;
  line-height: 1.75;
}

/* Slide 3: The Turn (Dawn Light & 24/7 Hotline Callout) */
.turn-slide {
  background: linear-gradient(135deg, #f0fdfa 0%, #ffffff 50%, #fffbeb 100%);
}

.turn-slide .narrative-title {
  background: linear-gradient(135deg, #0f172a 30%, #0d9488 70%, #d97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hotline-highlight-box {
  margin-top: 2.5rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  background: #ffffff;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.4rem 3.2rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(245, 158, 11, 0.16), 0 4px 12px rgba(15, 23, 42, 0.05);
}

.hotline-display-number {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: 1px;
  color: #0f172a;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hotline-btn-big {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-amber));
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 1.05rem 2.6rem;
  border-radius: var(--radius-full);
  box-shadow: 0 10px 24px rgba(217, 119, 6, 0.32);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.hotline-btn-big:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 14px 30px rgba(217, 119, 6, 0.45);
}

/* Slide 4: Five Pillars Grid (Bright Luminous Cards) */
.pillars-slide {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f8fafc 100%);
  padding: 6.5rem 1.5rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
  margin-bottom: 0.6rem;
}

.section-heading {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 800;
  margin-bottom: 0.75rem;
  color: var(--text-main);
  letter-spacing: -0.5px;
}

.section-subheading {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 680px;
  margin: 0 auto 3.5rem;
  line-height: 1.65;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.pillar-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 1.4rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all var(--transition-smooth);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-amber));
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.pillar-card:hover {
  transform: translateY(-8px);
  border-color: var(--teal-light);
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.12), 0 4px 12px rgba(15, 23, 42, 0.05);
}

.pillar-card:hover::before,
.pillar-card.active::before {
  opacity: 1;
}

.pillar-icon-box {
  width: 64px;
  height: 64px;
  margin-bottom: 1.25rem;
  padding: 10px;
  border-radius: 14px;
  background: var(--bg-subtle-teal);
  border: 1px solid var(--border-teal);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pillar-icon-box img {
  width: 100%;
  height: 100%;
}

.pillar-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}

.pillar-short-text {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
  margin-bottom: 1rem;
}

.pillar-expanded-desc {
  font-size: 0.86rem;
  color: #334155;
  line-height: 1.6;
  border-top: 1px solid var(--border-subtle);
  padding-top: 0.85rem;
  margin-top: auto;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.pillar-card.active .pillar-expanded-desc,
.pillar-card:hover .pillar-expanded-desc {
  max-height: 160px;
  opacity: 1;
}

.pillar-tap-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-top: 0.6rem;
}

/* Slide 5: The Journey (Timeline Winding Path) */
.journey-slide {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 50%, #f0fdfa 100%);
  padding: 6.5rem 1.5rem;
}

.journey-visual-wrapper {
  margin: 2.5rem 0 3.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: #ffffff;
  position: relative;
}

.journey-visual-wrapper img {
  width: 100%;
  height: auto;
}

.journey-steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
  text-align: left;
}

.journey-step-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.6rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.journey-step-item:hover {
  transform: translateY(-6px);
  border-color: var(--primary-teal);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.12);
}

.step-num-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-surface);
  border: 1px solid var(--primary-teal);
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 0.9rem;
}

.step-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.step-desc {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
}

/* Slide 6: Real Voices & Mina G. Highlight */
.voices-slide {
  background: #f8fafc;
  padding: 6.5rem 1.5rem;
}

.mina-feature-card {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 2.5rem;
  align-items: center;
  background: linear-gradient(135deg, #ffffff 0%, #fffbeb 100%);
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  margin-bottom: 3.5rem;
  text-align: left;
  box-shadow: var(--shadow-lg);
}

.mina-art-col {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-subtle);
  background: #ffffff;
}

.mina-art-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-mark-large {
  font-size: 4.5rem;
  line-height: 1;
  color: var(--primary-amber);
  opacity: 0.45;
  margin-bottom: -1rem;
  font-family: Georgia, serif;
}

.mina-quote-text {
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1.75;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

.mina-author-name {
  font-size: 1.25rem;
  font-weight: 800;
  color: #92400e;
}

.mina-author-role {
  font-size: 0.92rem;
  color: #64748b;
  font-weight: 600;
}

/* Testimonial Cards Carousel / Grid */
.voices-subgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: left;
}

.voice-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.voice-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-light);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
}

.voice-avatar {
  width: 56px;
  height: 56px;
  margin-bottom: 1.1rem;
  padding: 6px;
  background: var(--bg-subtle-teal);
  border-radius: 50%;
  border: 1px solid var(--border-teal);
}

.voice-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.voice-quote {
  font-size: 0.95rem;
  font-style: italic;
  color: #334155;
  line-height: 1.65;
  margin-bottom: 1.2rem;
  flex-grow: 1;
}

.voice-author {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
}

.voice-role {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--teal-dark);
}

/* Slide 7: Animated Numbers & Valley Vista */
.numbers-slide {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.5rem;
  overflow: hidden;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 50%, #fffbeb 100%);
}

.numbers-bg-box {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.15;
}

.numbers-bg-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.numbers-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.metrics-counter-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}

.counter-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.8rem 2rem;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.counter-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(13, 148, 136, 0.15);
  border-color: var(--teal-light);
}

.counter-number {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--primary-teal) 50%, var(--primary-amber) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.75rem;
  font-family: var(--font-en);
}

.counter-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.5;
}

/* Slide 8: The Ask / Open Door CTA */
.ask-slide {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6.5rem 1.5rem;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdfa 100%);
}

.ask-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
}

.ask-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ask-content {
  position: relative;
  z-index: 3;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
  background: #ffffff;
  border: 2px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 3.8rem 2.8rem;
  box-shadow: 0 20px 50px rgba(245, 158, 11, 0.18), 0 4px 16px rgba(15, 23, 42, 0.06);
}

.ask-title {
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  font-weight: 800;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.ask-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  margin-bottom: 2.5rem;
  line-height: 1.65;
}

.ask-actions-cluster {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}

.btn-primary-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.4rem;
  background: linear-gradient(135deg, var(--primary-gold), var(--primary-amber));
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(217, 119, 6, 0.32);
  transition: all var(--transition-fast);
}

.btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(217, 119, 6, 0.45);
}

.btn-whatsapp-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.2rem;
  background: #25d366;
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 22px rgba(37, 211, 102, 0.3);
  transition: all var(--transition-fast);
}

.btn-whatsapp-action:hover {
  background: #20ba59;
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.btn-outline-action {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.05rem 2.2rem;
  background: #f1f5f9;
  border: 1px solid var(--border-medium);
  color: #1e293b;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

.btn-outline-action:hover {
  background: #e2e8f0;
  border-color: #94a3b8;
  transform: translateY(-3px);
}

/* ==========================================================================
   STICKY PERSISTENT ACTION DOCK (WhatsApp & Call)
   ========================================================================== */
.sticky-action-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}

.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.2);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  position: relative;
}

.dock-btn svg {
  width: 30px;
  height: 30px;
}

.dock-btn-whatsapp {
  background: #25d366;
  color: #ffffff;
}

.dock-btn-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.6);
}

.dock-btn-call {
  background: var(--hope-rose);
  color: #ffffff;
  animation: callGlow 2.5s infinite;
}

.dock-btn-call:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 28px rgba(225, 29, 72, 0.6);
}

.dock-tooltip {
  position: absolute;
  right: 70px;
  background: #0f172a;
  border: 1px solid #334155;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity var(--transition-fast), transform var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.dock-btn:hover .dock-tooltip {
  opacity: 1;
  transform: translateX(0);
}

/* ==========================================================================
   CONFIDENTIAL INTAKE MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-smooth);
}

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

.modal-card {
  width: 100%;
  max-width: 620px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  box-shadow: 0 25px 60px rgba(15, 23, 42, 0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition-smooth);
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

.modal-overlay.active .modal-card {
  transform: translateY(0) scale(1);
}

.modal-close-btn {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #f1f5f9;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  transition: all var(--transition-fast);
}

.modal-close-btn:hover {
  background: #e2e8f0;
  color: var(--text-main);
}

.modal-header {
  margin-bottom: 1.6rem;
  text-align: left;
}

.modal-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.modal-header p {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.intake-form-grid {
  display: grid;
  gap: 1.2rem;
  text-align: left;
}

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

.form-label {
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: #f8fafc;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--text-main);
  font-family: inherit;
  font-size: 0.95rem;
  transition: border-color var(--transition-fast), background-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--primary-teal);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(13, 148, 136, 0.15);
}

.form-select option {
  background: #ffffff;
  color: var(--text-main);
}

.form-radio-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.radio-pill-label {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.95rem;
  border-radius: var(--radius-full);
  background: #f1f5f9;
  border: 1px solid var(--border-subtle);
  font-size: 0.84rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.radio-pill-label input[type="radio"] {
  display: none;
}

.radio-pill-label:has(input[type="radio"]:checked) {
  background: var(--teal-surface);
  border-color: var(--primary-teal);
  color: var(--teal-dark);
  font-weight: 700;
}

.form-disclaimer {
  font-size: 0.84rem;
  color: #0f766e;
  background: var(--bg-subtle-teal);
  border: 1px solid var(--border-teal);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  line-height: 1.5;
}

.btn-form-submit {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--primary-teal), var(--teal-dark));
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.btn-form-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.4);
}

.intake-success-box {
  display: none;
  text-align: center;
  padding: 2rem 1rem;
}

.intake-success-box.active {
  display: block;
}

.intake-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #d1fae5;
  border: 2px solid #10b981;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.2rem;
}

/* ==========================================================================
   SUPPORTING INNER PAGES LAYOUTS (BRIGHT THEME)
   ========================================================================== */
.page-hero-banner {
  padding: 9.5rem 1.5rem 4.5rem;
  background: linear-gradient(180deg, #f0fdfa 0%, #ffffff 75%, #f8fafc 100%);
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--border-subtle);
}

.page-title {
  font-size: clamp(2.3rem, 4.5vw, 3.6rem);
  font-weight: 800;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, #0f172a 20%, #0f766e 65%, #b45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.5px;
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--text-body);
  max-width: 740px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Inner Page Sections */
.inner-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.inner-section-alt {
  padding: 5.5rem 0;
  background: #f8fafc;
}

/* Leadership Directory Cards */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
  margin-top: 3.5rem;
}

.leader-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.leader-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-light);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
}

.leader-avatar-box {
  width: 104px;
  height: 104px;
  margin: 0 auto 1.35rem;
  border-radius: 50%;
  background: #f0fdfa;
  border: 3px solid var(--primary-teal, #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.18);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.leader-card:hover .leader-avatar-box {
  transform: scale(1.08);
  box-shadow: 0 12px 28px rgba(13, 148, 136, 0.3);
}

.leader-avatar-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

.leader-avatar-box .avatar-initials {
  color: var(--primary-amber);
  font-size: 2.2rem;
  font-weight: 800;
}


.leader-name {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.leader-role {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 1rem;
}

.leader-bio {
  font-size: 0.86rem;
  color: #475569;
  line-height: 1.6;
}

/* Services Detailed Pillar Cards */
.services-pillar-detail-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  overflow: hidden;
  padding: 0;
  margin-bottom: 2.4rem;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-smooth);
}

.services-pillar-detail-card > div:last-child {
  padding: 2rem 2.4rem 2.4rem;
}

.services-pillar-detail-card:hover {
  border-color: var(--teal-light);
  box-shadow: 0 20px 48px rgba(13, 148, 136, 0.12);
  transform: translateY(-4px);
}

.services-pillar-detail-icon {
  width: 100%;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  flex-shrink: 0;
}

.services-pillar-detail-icon img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.services-pillar-detail-icon img:hover {
  transform: scale(1.03);
}

.services-pillar-detail-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.services-pillar-detail-lead {
  font-size: 1.05rem;
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 0.9rem;
  line-height: 1.5;
}

.services-pillar-detail-body {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* Admission Timeline Expanded */
.admission-timeline-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.4rem;
  margin-bottom: 1.8rem;
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.admission-timeline-card:hover {
  border-color: var(--primary-teal);
  transform: translateX(6px);
  box-shadow: 0 12px 30px rgba(13, 148, 136, 0.1);
}

.timeline-step-badge-large {
  flex-shrink: 0;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--teal-surface);
  border: 2px solid var(--primary-teal);
  color: var(--teal-dark);
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.timeline-step-heading {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.timeline-step-text {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.75;
}

/* Checklist Cards */
.checklist-card {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 2.8rem;
  margin-top: 3.5rem;
  box-shadow: var(--shadow-md);
}

.checklist-title {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1.5rem;
  text-align: center;
}

.checklist-items-grid {
  display: grid;
  gap: 1.1rem;
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  font-size: 0.98rem;
  color: #1e293b;
}

.checklist-check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #d1fae5;
  border: 1px solid #10b981;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  margin-top: 2px;
}

/* Contact Page Grid */
.contact-layout-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-highlight-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.contact-highlight-card:hover {
  border-color: var(--primary-teal);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.contact-icon-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.contact-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-sm);
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: var(--primary-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.contact-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
}

.contact-detail-val {
  font-size: 1.05rem;
  color: var(--text-body);
  line-height: 1.65;
}

.contact-detail-val a:hover {
  color: var(--primary-teal);
}

.map-embed-wrapper {
  margin-top: 1.5rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 280px;
  border: none;
}

.coordinates-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: var(--bg-subtle-teal);
  border: 1px solid var(--border-teal);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-sm);
  margin-top: 0.5rem;
}

/* ==========================================================================
   DEDICATED SERVICE PILLAR PAGES (BRIGHT THEME)
   ========================================================================== */
.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.breadcrumb-nav a {
  color: var(--teal-dark);
}

.breadcrumb-nav a:hover {
  color: var(--primary-teal);
  text-decoration: underline;
}

.breadcrumb-nav span {
  color: var(--border-medium);
}

.pillar-hero-split {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3.5rem;
  align-items: center;
  padding: 8.5rem 0 4.5rem;
}

.pillar-hero-illustration {
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.pillar-hero-illustration img {
  width: 100%;
  height: auto;
  display: block;
}

.pillar-intro-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.pillar-modules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.8rem;
  margin-top: 3rem;
}

.pillar-module-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 2.2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.pillar-module-card:hover {
  transform: translateY(-6px);
  border-color: var(--teal-light);
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.1);
}

.pillar-module-icon-badge {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--bg-subtle-teal);
  border: 1px solid var(--border-teal);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.2rem;
}

.pillar-module-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.pillar-module-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.65;
}

.schedule-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.schedule-item-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition-smooth);
}

.schedule-item-card:hover {
  border-color: var(--primary-amber);
  transform: translateY(-4px);
}

.schedule-time-badge {
  display: inline-block;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 0.85rem;
}

.faq-accordion-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 860px;
  margin: 3rem auto 0;
}

.faq-accordion-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.8rem 2rem;
  box-shadow: var(--shadow-sm);
}

.faq-accordion-q {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.6rem;
}

.faq-accordion-a {
  font-size: 0.96rem;
  color: var(--text-body);
  line-height: 1.7;
}

/* ==========================================================================
   IMMERSIVE STORYTELLING COMPONENTS (BRIGHT DAWN THEME)
   ========================================================================== */
.story-comparison-section {
  padding: 5rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.story-comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}

.story-compare-card {
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.story-compare-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.story-compare-card.pain-state {
  background: #ffffff;
  border: 1.5px solid #fecdd3;
}

.story-compare-card.pain-state::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f43f5e, #fb7185);
}

.story-compare-card.sanctuary-state {
  background: #ffffff;
  border: 1.5px solid #99f6e4;
}

.story-compare-card.sanctuary-state::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-amber));
}

.compare-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-full);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.pain-state .compare-badge {
  background: #ffe4e6;
  color: #be123c;
}

.sanctuary-state .compare-badge {
  background: #ccfbf1;
  color: #0f766e;
}

.compare-card-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 1rem;
  line-height: 1.35;
}

.compare-card-text {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.compare-points-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.compare-points-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.compare-bullet-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: bold;
  margin-top: 2px;
}

.pain-state .compare-bullet-icon {
  background: #fee2e2;
  color: #dc2626;
}

.sanctuary-state .compare-bullet-icon {
  background: #d1fae5;
  color: #059669;
}

/* Transformation Timeline 4-Stage Pathway */
.transformation-section {
  padding: 5.5rem 0;
  background: #ffffff;
}

.timeline-cards-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
}

.timeline-step-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.timeline-step-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary-teal);
  box-shadow: 0 16px 32px rgba(13, 148, 136, 0.12);
}

.step-number-tag {
  position: absolute;
  top: -14px;
  left: 20px;
  background: linear-gradient(135deg, var(--primary-teal), #0f766e);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.25rem 0.8rem;
  border-radius: var(--radius-full);
  box-shadow: 0 4px 10px rgba(13, 148, 136, 0.3);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
  margin-top: 0.5rem;
}

.step-card-days {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--primary-amber);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.step-card-title {
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.step-card-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex-grow: 1;
}

.step-card-milestone {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal-dark);
  background: #f0fdf4;
  border: 1px solid #dcfce7;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

/* Daily Sanctuary Rhythm Schedule */
.daily-rhythm-section {
  padding: 5.5rem 0;
  background: linear-gradient(180deg, #f8fafc 0%, #f0fdfa 100%);
}

.daily-schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.schedule-slot-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all var(--transition-fast);
}

.schedule-slot-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.slot-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}

.slot-time-badge {
  font-size: 0.82rem;
  font-weight: 800;
  background: #f1f5f9;
  color: #334155;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.slot-icon {
  font-size: 1.5rem;
}

.slot-title {
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.slot-desc {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.6;
}

/* Story Testimonials Card Enhancement */
.story-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.story-quote-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
}

.story-quote-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #ccfbf1;
}

.quote-symbol {
  font-size: 3rem;
  line-height: 1;
  font-family: Georgia, serif;
  color: #cbd5e1;
  margin-bottom: -0.5rem;
}

.story-quote-text {
  font-size: 1.05rem;
  font-style: italic;
  color: #1e293b;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.story-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1.25rem;
}

.story-author-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #f0fdfa;
  border: 2px solid #99f6e4;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.story-author-name {
  font-size: 1.02rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.2rem;
}

.story-author-role {
  font-size: 0.85rem;
  color: #64748b;
  font-weight: 500;
}

.story-author-tag {
  margin-left: auto;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

@media (max-width: 991px) {
  .story-comparison-grid,
  .story-testimonials-grid {
    grid-template-columns: 1fr;
  }
  .timeline-cards-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .daily-schedule-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .timeline-cards-wrapper,
  .daily-schedule-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   FOOTER (BRIGHT SANCTUARY CLEAN FOOTER)
   ========================================================================== */
.site-footer {
  background: #f1f5f9;
  border-top: 1px solid var(--border-subtle);
  padding: 5.5rem 0 2.5rem;
  color: #475569;
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.3fr;
  gap: 3.5rem;
  margin-bottom: 3.5rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  margin-bottom: 1.25rem;
}

.footer-brand-desc {
  font-size: 0.94rem;
  line-height: 1.7;
  color: #475569;
  max-width: 440px;
  margin-bottom: 1.2rem;
}

.footer-column h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1.35rem;
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-links-list a {
  font-size: 0.94rem;
  color: #475569;
  transition: color var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--primary-teal);
}

.footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  font-size: 0.94rem;
  color: #334155;
}

.footer-contact-items a:hover {
  color: var(--primary-teal);
}

.footer-bottom-bar {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.25rem;
  font-size: 0.88rem;
  color: #64748b;
}

.footer-credit {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.95rem;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.2);
  border-radius: var(--radius-full);
  font-size: 0.86rem;
  color: var(--text-main);
  transition: all 0.3s ease;
}

.footer-credit:hover {
  background: rgba(13, 148, 136, 0.15);
  border-color: var(--teal-main);
  transform: translateY(-2px);
}

.footer-credit strong {
  color: var(--teal-dark, #0f766e);
  font-weight: 800;
  letter-spacing: 0.04em;
}


/* ==========================================================================
   CINEMATIC SCENE PINNING & HORIZONTAL GALLERY TRACKS
   ========================================================================== */

/* Pinned Horizontal Pillars Experience */
.horizontal-scroll-section {
  position: relative;
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 50%, #f0fdfa 100%);
}

.horizontal-pin-viewport {
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  height: calc(100svh - 70px);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.5rem 0;
}

.gallery-progress-bar-wrap {
  width: 100%;
  max-width: 500px;
  height: 4px;
  background: rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-full);
  margin: 0 auto 1.5rem;
  overflow: hidden;
  position: relative;
}

.gallery-progress-bar {
  height: 100%;
  width: 20%;
  background: linear-gradient(90deg, var(--primary-teal), var(--primary-amber));
  border-radius: var(--radius-full);
  transition: width 0.15s ease-out;
}

.pillars-horizontal-track {
  display: flex;
  gap: 2rem;
  padding: 0 4vw;
  will-change: transform;
  transition: transform 0.12s ease-out;
}

.pillar-card-horizontal {
  flex: 0 0 380px;
  background: #ffffff;
  border: 1.5px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all var(--transition-smooth);
  text-decoration: none;
  color: inherit;
}

.pillar-card-horizontal:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-teal);
  box-shadow: 0 20px 45px rgba(13, 148, 136, 0.15);
}

.pillar-index-badge {
  position: absolute;
  top: 18px;
  right: 20px;
  font-size: 0.82rem;
  font-weight: 800;
  color: #94a3b8;
  background: #f1f5f9;
  padding: 0.2rem 0.65rem;
  border-radius: var(--radius-full);
}

.pillar-card-horizontal:hover .pillar-index-badge {
  background: #ccfbf1;
  color: #0f766e;
}

.pillar-card-horizontal .pillar-icon-box {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: #f0fdfa;
  border: 1.5px solid #ccfbf1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  transition: transform var(--transition-fast);
}

.pillar-card-horizontal:hover .pillar-icon-box {
  transform: scale(1.1) rotate(4deg);
}

.pillar-card-horizontal .pillar-title {
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.pillar-card-horizontal .pillar-short-text {
  font-size: 0.94rem;
  color: var(--primary-teal);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

.pillar-card-horizontal .pillar-desc {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.pillar-action-link {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--primary-teal);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: auto;
}

.pillar-card-horizontal:hover .pillar-action-link {
  color: var(--primary-amber);
  transform: translateX(4px);
}

/* ==========================================================================
   RECOVERY SLOGAN SECTION DIVIDERS (CINEMATIC TICKER BARS)
   ========================================================================== */
.cinematic-slogan-divider {
  padding: 1.75rem 0;
  background: #ffffff;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
  position: relative;
}

.slogan-divider-track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}

.slogan-divider-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, #f0fdfa, #fffbeb);
  border: 1px solid #ccfbf1;
  padding: 0.65rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.slogan-divider-pill:hover {
  transform: scale(1.03);
  border-color: var(--primary-teal);
}

.slogan-pill-icon {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary-gold);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.6);
}

/* Winding Road Journey Step Glowing Markers */
.journey-step-item {
  transition: transform var(--transition-smooth), border-color var(--transition-smooth), box-shadow var(--transition-smooth);
}

.journey-step-item.is-active-step {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--primary-teal) !important;
  box-shadow: 0 16px 36px rgba(13, 148, 136, 0.16) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%) !important;
}

.journey-step-item.is-active-step .step-num-badge {
  background: linear-gradient(135deg, var(--primary-teal), var(--primary-amber));
  color: #ffffff;
  box-shadow: 0 0 16px rgba(13, 148, 136, 0.5);
  transform: scale(1.15);
}

@media (max-width: 991px) {
  .horizontal-pin-viewport {
    position: static;
    height: auto;
    overflow: visible;
  }
  .pillars-horizontal-track {
    flex-wrap: wrap;
    padding: 0;
    transform: none !important;
  }
  .pillar-card-horizontal {
    flex: 1 1 calc(50% - 1rem);
  }
  .gallery-progress-bar-wrap {
    display: none;
  }
}

@media (max-width: 640px) {
  .pillar-card-horizontal {
    flex: 1 1 100%;
  }
}

/* ==========================================================================
   5-STEP VISUAL JOURNEY PHOTO GRID
   ========================================================================== */
.journey-steps-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
  width: 100%;
}

.journey-photo-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  display: flex;
  flex-direction: column;
}

.journey-photo-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
  border-color: var(--teal-main, #0d9488);
}

.journey-photo-img-wrap {
  position: relative;
  width: 100%;
  height: 160px;
  overflow: hidden;
  background: #0f172a;
}

.journey-photo-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.journey-photo-card:hover .journey-photo-img-wrap img {
  transform: scale(1.08);
}

.journey-photo-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary-teal, #0d9488);
  color: #ffffff;
  font-weight: 800;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.35);
  border: 2px solid #ffffff;
}

.journey-photo-content {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.journey-photo-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.4rem;
}

.journey-photo-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   MULTI-IMAGE STORY SHOWCASES & NA/AA RECOVERY MANTRAS
   ========================================================================== */
.recovery-mantra-ribbon {
  display: flex;
  gap: 0.85rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.mantra-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1.1rem;
  background: rgba(13, 148, 136, 0.08);
  border: 1px solid rgba(13, 148, 136, 0.25);
  border-radius: var(--radius-full);
  color: var(--teal-dark);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.dual-image-showcase {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Showcase auto-fit grid — replaces inline style for responsive control */
.showcase-auto-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  width: 100%;
}

.showcase-card {

  background: #0f172a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.showcase-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.5);
}

.showcase-card img {
  transition: transform 0.5s ease;
}

.showcase-card:hover img {
  transform: scale(1.05);
}

.showcase-caption {
  padding: 1rem 1.2rem;
  background: #0f172a;
  font-size: 0.88rem;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.showcase-caption strong {
  display: block;
  color: #f1f5f9;
  font-size: 0.95rem;
  margin-bottom: 0.2rem;
}

.story-pain-feature-grid,
.story-turn-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}

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

.story-pain-img-card,
.story-turn-img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-subtle);
  background: #0f172a;
  display: flex;
}

.pain-img-overlay-caption,
.turn-img-overlay-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.85rem 1.25rem;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0) 100%);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
}

/* ==========================================================================
   FULL-BLEED CINEMATIC IMAGE-FIRST STORY SCENES (12 SCENE IMMERSIVE JOURNEY)
   ========================================================================== */
.story-scroll-container {
  width: 100%;
  overflow-x: hidden;
  background: #090d16;
}

.fullbleed-story-scene {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #090d16;
  padding: 6rem 1.5rem;
}

.fullbleed-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  transform: translateZ(0);
}

.animate-kenburns {
  animation: kenburnsSlow 25s ease-in-out infinite alternate;
}

@keyframes kenburnsSlow {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.08) translate(-1%, -1%);
  }
}

.fullbleed-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(15, 23, 42, 0.45) 0%, rgba(10, 14, 26, 0.85) 90%);
}

.fullbleed-caption {
  position: relative;
  z-index: 5;
  text-align: center;
  max-width: 920px;
  margin: 0 auto;
  color: #ffffff;
  padding: 2rem 1rem;
}

.scene-slogan-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.45rem 1.3rem;
  border-radius: var(--radius-full);
  background: rgba(217, 119, 6, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.45);
  color: #fde68a;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.scene-slogan-badge.red-accent {
  background: rgba(225, 29, 72, 0.2);
  border-color: rgba(244, 63, 94, 0.5);
  color: #fecdd3;
}

.scene-slogan-badge.teal-accent {
  background: rgba(13, 148, 136, 0.2);
  border-color: rgba(20, 184, 166, 0.5);
  color: #99f6e4;
}

.scene-slogan-badge.gold-badge {
  background: rgba(217, 119, 6, 0.25);
  border-color: rgba(245, 158, 11, 0.6);
  color: #fef08a;
}

.scene-title-hero {
  font-family: var(--font-heading);
  font-size: clamp(2.3rem, 5.5vw, 4.4rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1.2rem;
}

.scene-title-large {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.2vw, 3.4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #ffffff;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.8), 0 2px 8px rgba(0, 0, 0, 0.6);
  margin-bottom: 1rem;
}

.scene-subtitle-ne {
  display: block;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  color: var(--primary-amber, #f59e0b);
  margin-top: 0.5rem;
  font-weight: 700;
}

.scene-subtitle-nepali {
  font-size: clamp(1.15rem, 2.2vw, 1.6rem);
  color: #e2e8f0;
  font-weight: 500;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8);
  margin-bottom: 1.5rem;
}

.scene-one-liner {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.scene-one-liner.gold-highlight {
  color: #fef08a;
  font-weight: 600;
}

.scene-call-box {
  background: rgba(15, 23, 42, 0.75);
  border: 1.5px solid rgba(245, 158, 11, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2.2rem;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  margin-top: 1rem;
}

.scene-huge-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: clamp(1.3rem, 2.8vw, 1.85rem);
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, #d97706 0%, #b45309 100%);
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(217, 119, 6, 0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.scene-huge-phone-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow: 0 12px 35px rgba(217, 119, 6, 0.7);
  color: #ffffff;
}

.scene-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #ffffff;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
}

.scene-link-btn:hover {
  background: #ffffff;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 255, 255, 0.25);
}

/* 5-Stage Sequential Journey Beats */
.journey-sequential-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #090d16;
}

.journey-intro-banner {
  background: linear-gradient(180deg, #090d16 0%, #0d1527 100%);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.journey-fullbleed-step {
  position: relative;
  min-height: 85vh;
  min-height: 85dvh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #090d16;
  padding: 4rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.step-giant-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: clamp(4rem, 9vw, 7.5rem);
  font-weight: 900;
  line-height: 1;
  color: var(--primary-amber, #f59e0b);
  opacity: 0.95;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.9), 0 0 25px rgba(245, 158, 11, 0.4);
  margin-bottom: 0.5rem;
  letter-spacing: -0.03em;
}

.step-huge-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.8vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.85);
  margin-bottom: 0.85rem;
}

.step-one-liner {
  font-size: clamp(1.05rem, 2vw, 1.4rem);
  color: #e2e8f0;
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.85);
  line-height: 1.6;
}

/* Impact Numbers Bar */
.impact-numbers-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  width: 100%;
}

@media (max-width: 900px) {
  .impact-numbers-bar {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 540px) {
  .impact-numbers-bar {
    grid-template-columns: 1fr;
  }
}

.impact-stat-col {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-md);
  padding: 2.2rem 1.5rem;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.impact-stat-col:hover {
  transform: translateY(-4px);
  border-color: rgba(245, 158, 11, 0.5);
}

.impact-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--primary-amber, #f59e0b);
  line-height: 1;
}

.impact-stat-plus {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary-amber, #f59e0b);
}

.impact-stat-label {
  font-size: 0.95rem;
  color: #cbd5e1;
  margin-top: 0.75rem;
  font-weight: 600;
  line-height: 1.4;
}

/* Final Ask Scene */
.scene-final-ask {
  padding: 8rem 1.5rem;
}

/* ==========================================================================
   CINEMATIC OPENING ANIMATION: "THE DESCENT INTO LIGHT"
   ========================================================================== */
.cinematic-intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.85s ease;
}

.cinematic-intro-overlay.dismissed {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.intro-bg-dark {
  position: absolute;
  inset: 0;
  background: #000000;
  z-index: 1;
}

.intro-light-wrap {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-origin: center center;
  will-change: transform, opacity;
  animation: introZoomPoint 3.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.intro-light-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.intro-porch-reveal {
  position: absolute;
  inset: 0;
  z-index: 3;
  opacity: 0;
  will-change: opacity, transform;
  animation: introFadeInPorch 3.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.intro-porch-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
}

.intro-light-bloom {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
  background: radial-gradient(circle at 50% 50%, rgba(254, 240, 138, 0.6) 0%, rgba(245, 158, 11, 0.35) 40%, rgba(0, 0, 0, 0) 75%);
  opacity: 0;
  will-change: opacity, transform;
  animation: introBloomPulse 3.8s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}

.intro-skip-btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 10;
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fde68a;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.55rem 1.2rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  opacity: 0;
  animation: introSkipFade 0.6s ease 1s forwards;
}

.intro-skip-btn:hover {
  background: rgba(245, 158, 11, 0.25);
  border-color: #f59e0b;
  color: #ffffff;
  transform: scale(1.04);
}

@keyframes introZoomPoint {
  0% {
    transform: scale(0.65);
    opacity: 0.1;
  }
  20% {
    transform: scale(1);
    opacity: 1;
  }
  60% {
    transform: scale(2.6);
    opacity: 0.95;
  }
  88% {
    transform: scale(5.2);
    opacity: 0.3;
  }
  100% {
    transform: scale(6.5);
    opacity: 0;
  }
}

@keyframes introFadeInPorch {
  0%, 45% {
    opacity: 0;
    transform: scale(1.15);
  }
  75% {
    opacity: 0.85;
    transform: scale(1.04);
  }
  100% {
    opacity: 1;
    transform: scale(1.0);
  }
}

@keyframes introBloomPulse {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  30% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  70% {
    opacity: 0.85;
    transform: scale(1.6);
  }
  100% {
    opacity: 0;
    transform: scale(2.4);
  }
}

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

/* ==========================================================================
   FULLSCREEN IMAGE LIGHTBOX MODAL
   ========================================================================== */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(10, 15, 26, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 999999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 2rem;
  box-sizing: border-box;
}

.lightbox-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-content-wrap {
  max-width: 92vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  transform: scale(0.92);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-modal.is-open .lightbox-content-wrap {
  transform: scale(1);
}

.lightbox-img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8), 0 0 0 1px rgba(245, 158, 11, 0.3);
}

.lightbox-caption {
  margin-top: 1.25rem;
  color: #f1f5f9;
  font-size: 1.05rem;
  font-weight: 500;
  text-align: center;
  max-width: 700px;
  line-height: 1.5;
  background: rgba(15, 23, 42, 0.7);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.lightbox-close-btn {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 1000000;
}

.lightbox-close-btn:hover {
  background: #f59e0b;
  color: #0f172a;
  transform: scale(1.1);
  border-color: #f59e0b;
}

.showcase-card, .leader-avatar-box, .fullbleed-story-scene img, .voice-card img, .about-history-grid img, .showcase-card img {
  cursor: pointer;
}

.showcase-card img {
  transition: transform 0.4s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
}

/* ============================================================
   RESTORATION SHOWCASE — Cinematic Mosaic Gallery
   ============================================================ */

.restoration-showcase-section {
  background: #080f1e;
  padding: 5.5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.restoration-showcase-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 20% 0%, rgba(13,148,136,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(245,158,11,0.09) 0%, transparent 60%);
  pointer-events: none;
}

.restoration-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
}

.restoration-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-gold);
  background: rgba(245,158,11,0.12);
  border: 1px solid rgba(245,158,11,0.25);
  padding: 0.35rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}

.restoration-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.restoration-subtitle {
  color: #94a3b8;
  font-size: 1.05rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- Mosaic Grid Layout ---- */
.restoration-mosaic {
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 1fr;
  grid-template-rows: 480px 240px;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
}

.mosaic-hero  { grid-column: 1 / 3; grid-row: 1; }
.mosaic-stack { grid-column: 3 / 5; grid-row: 1; display: flex; flex-direction: column; gap: 0.85rem; }
.mosaic-half  { flex: 1; min-height: 0; }
.mosaic-third { grid-row: 2; height: 240px; }
.mosaic-third:nth-of-type(3) { grid-column: 1 / 2; }
.mosaic-third:nth-of-type(4) { grid-column: 2 / 3; }
.mosaic-third:nth-of-type(5) { grid-column: 3 / 5; }

/* ---- Shared Cell Styles ---- */
.mosaic-cell {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  cursor: pointer;
  background: #1e293b;
}

.mosaic-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.16,1,0.3,1), filter 0.45s ease;
  filter: brightness(0.88) saturate(0.9);
}

.mosaic-cell:hover img {
  transform: scale(1.07);
  filter: brightness(0.7) saturate(1.1);
}

/* ---- Overlay ---- */
.mosaic-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem 1.5rem;
  background: linear-gradient(
    to top,
    rgba(8, 15, 30, 0.9) 0%,
    rgba(8, 15, 30, 0.4) 45%,
    transparent 75%
  );
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}

.mosaic-cell:hover .mosaic-overlay,
.mosaic-overlay.mosaic-overlay--peek {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mosaic-badge {
  display: inline-block;
  background: rgba(245, 158, 11, 0.18);
  border: 1px solid rgba(245, 158, 11, 0.4);
  color: #fbbf24;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.28rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.65rem;
  backdrop-filter: blur(8px);
  align-self: flex-start;
}

.mosaic-text {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mosaic-text strong {
  color: #ffffff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}

.mosaic-text span {
  color: #cbd5e1;
  font-size: 0.82rem;
  line-height: 1.5;
}

/* Touch devices: always show overlay */
@media (hover: none) {
  .mosaic-overlay {
    opacity: 1;
    transform: translateY(0);
    background: linear-gradient(
      to top,
      rgba(8,15,30,0.82) 0%,
      rgba(8,15,30,0.2) 50%,
      transparent 80%
    );
  }
}

/* ---- Caption Strip ---- */
.restoration-caption-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.restoration-caption-strip p {
  color: #64748b;
  font-size: 0.88rem;
  text-align: center;
  max-width: 600px;
  line-height: 1.6;
  margin: 0;
}

.caption-dot {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-gold);
  opacity: 0.5;
  flex-shrink: 0;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .restoration-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 300px 200px 200px 200px;
  }
  .mosaic-hero  { grid-column: 1 / 3; grid-row: 1; }
  .mosaic-stack { grid-column: 1 / 3; grid-row: 2; flex-direction: row; }
  .mosaic-half  { flex: 1; min-height: 200px; }
  .mosaic-third:nth-of-type(3) { grid-column: 1 / 2; grid-row: 3; height: 200px; }
  .mosaic-third:nth-of-type(4) { grid-column: 2 / 3; grid-row: 3; height: 200px; }
  .mosaic-third:nth-of-type(5) { grid-column: 1 / 3; grid-row: 4; height: 200px; }
}

@media (max-width: 600px) {
  .restoration-mosaic {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .mosaic-hero  { grid-column: 1 / 2 !important; grid-row: unset; height: 260px; }
  .mosaic-stack { grid-column: 1 / 2 !important; flex-direction: column; height: auto; grid-row: unset; }
  .mosaic-half  { height: 180px; min-height: 180px; }
  .mosaic-third { grid-column: 1 / 2 !important; grid-row: unset !important; height: 180px; }
  .restoration-caption-strip { flex-direction: column; gap: 0.5rem; }
  .caption-dot { display: none; }
}




