/* ==========================================================================
   ANICHA — Horizontal Scroll & Video Morphing Experience CSS
   ========================================================================== */

:root {
  --bg-color: #08080a;
  --text-main: #ffffff;
  --text-muted: rgba(245, 245, 248, 0.92);
  --accent-gold: #e5cc9f;
  --accent-gold-glow: rgba(229, 204, 159, 0.35);
  --accent-bronze: #a08462;
  --glass-bg: rgba(10, 10, 16, 0.70);
  --glass-border: rgba(255, 255, 255, 0.18);
  --glass-border-hover: rgba(229, 204, 159, 0.5);
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ==========================================================================
   ANICHA Glassmorphism Site Preloader
   ========================================================================== */
.preloader-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background: #08080a;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: auto;
}

.preloader-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.preloader-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 44px 36px;
  background: rgba(12, 12, 18, 0.85);
  border: 1px solid rgba(229, 204, 159, 0.35);
  border-radius: 28px;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.95), 0 0 50px rgba(229, 204, 159, 0.15);
  max-width: 440px;
  width: 90%;
}

.preloader-brand {
  font-family: var(--font-serif);
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 800;
  letter-spacing: 0.2em;
  background: linear-gradient(180deg, #ffffff 0%, #e5cc9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
  text-shadow: 0 0 24px rgba(229, 204, 159, 0.3);
}

.preloader-sub {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  opacity: 0.9;
  margin-bottom: 28px;
}

.preloader-bar-wrap {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
}

.preloader-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-bronze) 0%, var(--accent-gold) 100%);
  box-shadow: 0 0 14px var(--accent-gold);
  transition: width 0.3s ease;
}

.preloader-status {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

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

html {
  scroll-behavior: smooth;
  background-color: #08080a;
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background-color: #08080a;
  color: var(--text-main);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Fixed Background Video & Canvas Layer (z-index: 0 above body) */
.video-background-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background-color: #08080a;
}

.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  pointer-events: none;
  opacity: 0;
  will-change: opacity, transform;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.silk-video {
  transform: scale(1.22);
  object-fit: cover;
}

#video-1 { opacity: 1; z-index: 1; }
#video-2 { z-index: 2; }
#video-3 { z-index: 3; }
#video-4 { z-index: 4; }
#video-5 { z-index: 5; }

#morph-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3;
  pointer-events: none;
  object-fit: cover;
  opacity: 0; /* Fallback canvas remains hidden if file:// blocks canvas draw */
}

/* Vignette & Grain Overlay (z-index: 1) */
.ambient-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(4, 4, 8, 0.75) 0%, rgba(4, 4, 8, 0.50) 40%, rgba(4, 4, 8, 0.25) 70%, transparent 100%),
              radial-gradient(circle at center, transparent 30%, rgba(4, 4, 8, 0.65) 100%),
              linear-gradient(180deg, rgba(6, 6, 10, 0.70) 0%, transparent 25%, transparent 75%, rgba(6, 6, 10, 0.70) 100%);
}

/* ==========================================================================
   Header & Fixed Navigation
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 28px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 100;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.85) 0%, rgba(8, 8, 10, 0) 100%);
  backdrop-filter: blur(8px);
}

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

.brand-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.25em;
  color: var(--text-main);
  text-shadow: 0 0 20px rgba(223, 194, 149, 0.2);
}

.brand-subtitle {
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  opacity: 0.85;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  gap: 24px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 6px 12px;
  border-radius: 40px;
  backdrop-filter: blur(16px);
}

.nav-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.nav-btn:hover, .nav-btn.active {
  color: var(--text-main);
  background: rgba(255, 255, 255, 0.08);
}

.nav-btn.active {
  color: var(--accent-gold);
  border: 1px solid rgba(223, 194, 149, 0.3);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn, .primary-btn {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 10px 20px;
  border-radius: 30px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(16px);
  transition: var(--transition-smooth);
}

.icon-btn:hover, .primary-btn:hover {
  border-color: var(--glass-border-hover);
  box-shadow: 0 0 20px var(--accent-gold-glow);
  transform: translateY(-2px);
}

.primary-btn {
  background: linear-gradient(135deg, rgba(223, 194, 149, 0.2) 0%, rgba(140, 115, 85, 0.2) 100%);
  border-color: rgba(223, 194, 149, 0.4);
  color: var(--accent-gold);
}

/* ==========================================================================
   Horizontal Scroll Container & Sections
   ========================================================================== */

.horizontal-scroll-container {
  display: flex;
  flex-direction: row;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-behavior: auto;
  z-index: 10;
  position: relative;
  /* Hide scrollbars */
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

.scroll-section {
  min-width: 100vw;
  height: 100vh;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 120px 8vw 100px 10vw;
  position: relative;
  background: transparent;
}

.section-content {
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 20;
}

.hero-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
  text-transform: uppercase;
}

/* Statement Screens (Screens 1 to 4) */
.statement-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  max-width: 840px;
}

.statement-wide {
  max-width: 1100px;
  width: 92%;
  padding: 0 24px;
}

.statement-sub {
  font-size: clamp(16px, 2vw, 22px);
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
  margin-top: 12px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.statement-tagline {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.5vw, 28px);
  color: var(--accent-gold);
  margin-top: 24px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.statement-heading {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.25;
  color: #ffffff;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.95);
  margin-top: 16px;
  margin-bottom: 20px;
}

.statement-heading-spacious {
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: 1.28;
  max-width: 1040px;
  margin-bottom: 24px;
}

.statement-body {
  font-size: clamp(20px, 3vw, 36px);
  font-weight: 300;
  line-height: 1.45;
  color: rgba(229, 204, 159, 0.95);
  text-shadow: 0 6px 30px rgba(0, 0, 0, 0.95);
}

.statement-body-spacious {
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.5;
  max-width: 980px;
  color: rgba(245, 235, 215, 0.96);
}

.scroll-down-hint {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.scroll-down-arrow {
  font-size: 20px;
  color: var(--accent-gold);
  animation: pulseDown 1.8s infinite ease-in-out;
}

@keyframes pulseDown {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

/* Vertical Section 5 (Stillness / Clear Sky Downward Flow) */
.vertical-section-stillness {
  position: relative;
  width: 100vw;
  min-height: 100vh;
  padding: 80px 24px 140px 24px;
  z-index: 10;
}

/* Continuous Vertical Downward Scroll Container */
.continuous-vertical-scroll {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* 1. Odnowa Hero Retreat Showcase (Top of Section 5 - Distinct Forest Gradient PL Card) */
.hero-odnowa-card {
  background: linear-gradient(135deg, rgba(16, 32, 24, 0.88) 0%, rgba(10, 22, 16, 0.94) 100%);
  border: 1.5px solid rgba(100, 180, 130, 0.45);
  border-radius: 28px;
  padding: 48px 40px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8), 0 0 35px rgba(80, 160, 110, 0.25);
}

.odnowa-header-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.chip-pl {
  background: rgba(220, 50, 50, 0.2);
  border: 1px solid rgba(255, 100, 100, 0.4);
  color: #ffb3b3;
  font-weight: 700;
}

.chip-themed {
  background: rgba(229, 204, 159, 0.15);
  border: 1px solid rgba(229, 204, 159, 0.4);
  color: var(--accent-gold);
  font-weight: 600;
}

.chip-seats {
  background: rgba(255, 165, 0, 0.2);
  border: 1px solid rgba(255, 180, 50, 0.5);
  color: #ffd8a8;
  font-weight: 700;
}

.odnowa-title {
  font-family: var(--font-serif);
  font-size: clamp(34px, 4.5vw, 54px);
  color: #ffffff;
  margin-bottom: 4px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.odnowa-sub-title {
  font-size: 16px;
  letter-spacing: 0.1em;
  color: rgba(160, 220, 180, 0.95);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}

.odnowa-lead {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(235, 245, 240, 0.92);
  max-width: 850px;
  margin-bottom: 28px;
}

/* Vertical Stacked Features: Title/Icon Left, Description Right */
.odnowa-vertical-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0 36px 0;
}

.odnowa-list-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 20px 24px;
  gap: 24px;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.odnowa-list-row:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(160, 220, 180, 0.4);
}

.odnowa-row-left {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 220px;
  flex-shrink: 0;
}

.feat-icon {
  font-size: 24px;
}

.feat-name {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
}

.odnowa-row-right {
  flex-grow: 1;
  text-align: right;
}

.odnowa-row-right p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(230, 240, 235, 0.88);
}

.odnowa-cta-btn {
  margin-top: 10px;
  display: inline-flex;
}

/* 2. Full-bleed Pillar Cards with High-Visibility Glowing Logos */
.sky-intro-header {
  text-align: center;
  margin-bottom: -20px;
}

.sky-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 5vw, 60px);
  color: #fff;
  margin: 12px 0;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.9);
}

.sky-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
}

.pillars-vertical-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.pillar-full-screen-card {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: rgba(10, 10, 16, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  padding: 60px 36px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
  transition: transform 0.4s ease, border-color 0.4s ease;
}

.pillar-full-screen-card:hover {
  border-color: rgba(229, 204, 159, 0.45);
  transform: translateY(-4px);
}

.pillar-logo-wrap {
  width: 170px;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  background: #ffffff;
  border: 3px solid var(--accent-gold);
  border-radius: 50%;
  padding: 24px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.7), 0 0 35px var(--accent-gold-glow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.pillar-logo-wrap:hover {
  transform: scale(1.06);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.85), 0 0 45px var(--accent-gold-glow);
}

.pillar-logo-img, .gaut-logo-img, .siddha-logo-img {
  max-width: 120px;
  max-height: 120px;
  object-fit: contain;
  filter: none;
}

/* Site Footer & Side-by-Side Social Media Placeholders */
.site-footer {
  margin-top: 40px;
  background: rgba(10, 10, 16, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 32px;
  padding: 56px 44px 32px 44px;
  backdrop-filter: blur(20px);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 36px;
  margin-bottom: 48px;
}

.footer-brand {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  margin-bottom: 12px;
}

.footer-quote {
  font-size: 13px;
  line-height: 1.6;
  color: var(--accent-gold);
  font-style: italic;
}

.footer-col h4 {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 18px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--accent-gold);
}

.social-tags-wrap {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.social-chip {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 8px 14px;
  border-radius: 12px;
  width: fit-content;
  transition: all 0.3s ease;
}

.social-chip:hover {
  background: rgba(229, 204, 159, 0.15);
  border-color: var(--accent-gold);
  color: var(--accent-gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.pali-sig {
  color: var(--accent-gold);
}

.pillar-card-content {
  max-width: 720px;
}

.pillar-num {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--accent-gold);
}

.pillar-name {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 50px);
  color: #ffffff;
  margin: 10px 0 6px 0;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.9);
}

.pillar-role-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.pillar-desc {
  font-size: 18px;
  line-height: 1.7;
  color: rgba(245, 245, 248, 0.9);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9);
}

/* 3. Founder's Journey, Qualifications & Contact Card */
.founder-full-card {
  background: rgba(12, 12, 18, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 32px;
  padding: 56px 44px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.clean-heading {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 48px);
  color: #ffffff;
  margin: 8px 0 16px 0;
}

.clean-text {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(245, 245, 248, 0.9);
  margin-bottom: 40px;
}

.qualification-box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(229, 204, 159, 0.25);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 40px;
}

.qual-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--accent-gold);
  margin-bottom: 20px;
}

.qual-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qual-list li {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
  padding-left: 20px;
  position: relative;
}

.qual-list li::before {
  content: '•';
  color: var(--accent-gold);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

.contact-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 32px;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 10px;
}

.contact-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.contact-btn {
  background: linear-gradient(135deg, rgba(229, 204, 159, 0.25) 0%, rgba(160, 132, 98, 0.25) 100%);
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--accent-gold);
  color: #08080a;
  box-shadow: 0 0 24px var(--accent-gold-glow);
}

.contact-location {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.odnowa-cta-btn {
  text-decoration: none;
  display: inline-flex;
}

.hero-title, .section-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95), 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-description, .section-description {
  font-size: 16px;
  line-height: 1.75;
  color: rgba(245, 245, 248, 0.95);
  font-weight: 400;
  max-width: 540px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.9);
}

/* ==========================================================================
   Glassmorphism Cards & Interactive Elements
   ========================================================================== */

.glass-card {
  background: rgba(10, 10, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  padding: 26px 30px;
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.65), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: var(--transition-smooth);
}

.scroll-hint-card {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
}

.scroll-arrow-wrap {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(223, 194, 149, 0.15);
  border: 1px solid rgba(223, 194, 149, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
}

.scroll-arrow {
  font-size: 18px;
  animation: pulseArrow 1.8s infinite ease-in-out;
}

@keyframes pulseArrow {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(6px); }
}

.scroll-text {
  font-size: 13px;
  color: var(--text-muted);
}

/* Pillar & Main Cards */
.main-card, .pillar-card {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pillar-card h3 {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--accent-gold);
  letter-spacing: 0.05em;
  font-weight: 600;
}

.pillar-card p, .main-card p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
}

.scroll-hint-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Morph Control Card */
.morph-control-card {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
}

.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card-header h3 {
  font-size: 13px;
  letter-spacing: 0.15em;
  font-weight: 700;
  color: var(--accent-gold);
}

.badge {
  background: rgba(223, 194, 149, 0.15);
  border: 1px solid rgba(223, 194, 149, 0.3);
  color: var(--accent-gold);
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 12px;
  font-weight: 600;
}

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

.slider-group label {
  font-size: 12px;
  color: var(--text-muted);
}

.custom-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
}

.custom-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 15px var(--accent-gold);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.custom-range::-webkit-slider-thumb:hover {
  transform: scale(1.2);
}

.blend-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.blend-options label {
  font-size: 12px;
  color: var(--text-muted);
}

.button-group {
  display: flex;
  gap: 10px;
}

.blend-btn {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-muted);
  font-size: 11px;
  padding: 8px;
  border-radius: 10px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.blend-btn:hover, .blend-btn.active {
  background: rgba(223, 194, 149, 0.2);
  border-color: var(--accent-gold);
  color: var(--text-main);
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
  width: 100%;
}

.mini-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
}

.card-num {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--accent-gold);
  opacity: 0.7;
}

.mini-card h4 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.mini-card p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Showcase Card */
.showcase-preview-card {
  margin-top: 16px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.preview-thumbnail {
  width: 200px;
  height: 120px;
  border-radius: 12px;
  background: linear-gradient(135deg, #1c1c24 0%, #0d0d12 100%);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.preview-thumbnail::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle, var(--accent-gold-glow) 0%, transparent 70%);
}

.play-overlay {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  z-index: 2;
  color: var(--accent-gold);
}

.play-icon {
  font-size: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(8, 8, 10, 0.7);
  border: 1px solid var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 3px;
  transition: var(--transition-smooth);
}

.preview-thumbnail:hover .play-icon {
  transform: scale(1.15);
  box-shadow: 0 0 20px var(--accent-gold);
}

.preview-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.preview-info h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
}

.preview-info p {
  font-size: 13px;
  color: var(--text-muted);
}

/* ==========================================================================
   Bottom Navigation Bar
   ========================================================================== */

.bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
  background: linear-gradient(0deg, rgba(8, 8, 10, 0.9) 0%, rgba(8, 8, 10, 0) 100%);
  pointer-events: none;
}

.bottom-bar > * {
  pointer-events: auto;
}

.progress-info {
  font-family: var(--font-serif);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 6px;
}

.progress-info .divider {
  color: var(--accent-gold);
  opacity: 0.5;
}

.progress-track-wrapper {
  flex: 1;
  max-width: 400px;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  margin: 0 40px;
  position: relative;
  cursor: pointer;
}

.progress-bar-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent-bronze) 0%, var(--accent-gold) 100%);
  border-radius: 2px;
  box-shadow: 0 0 10px var(--accent-gold);
  transition: width 0.1s linear;
}

.progress-thumb {
  position: absolute;
  top: 50%;
  left: 0%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-gold);
  box-shadow: 0 0 12px var(--accent-gold);
  transition: left 0.1s linear;
}

.scroll-indicator-text {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--text-muted);
}

/* ==========================================================================
   UI Showcase Modal
   ========================================================================== */

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-content {
  width: 100%;
  max-width: 960px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--text-main);
  font-size: 28px;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  color: var(--accent-gold);
  transform: scale(1.2);
}

.modal-header h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
}

.modal-header p {
  font-size: 12px;
  color: var(--accent-gold);
}

.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Responsive adjustments for Tablets & Mobile Devices */
@media (max-width: 900px) {
  .site-header {
    padding: 16px 24px;
  }
  .brand-title {
    font-size: 20px;
  }
  .nav-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  .horizontal-scroll-container {
    touch-action: pan-y;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 10px;
    background: rgba(8, 8, 10, 0.95);
  }
  .brand {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }
  .brand-title {
    font-size: 18px;
    letter-spacing: 0.18em;
  }
  .brand-subtitle {
    font-size: 9px;
    margin-top: 0;
  }
  /* Mobile Navigation Pill Bar */
  .nav-links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: flex-start;
    padding: 4px 8px;
    gap: 8px;
    border-radius: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .nav-links::-webkit-scrollbar {
    display: none;
  }
  .nav-btn {
    padding: 6px 12px;
    font-size: 11px;
    flex-shrink: 0;
  }
  .header-actions {
    gap: 8px;
  }
  .icon-btn {
    padding: 6px 12px;
    font-size: 11px;
  }
  .sound-label {
    display: none;
  }

  /* Scroll Sections on Mobile */
  .scroll-section {
    padding: 90px 16px 80px 16px;
    min-width: 100vw;
    width: 100vw;
    justify-content: center;
  }
  .statement-content {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .centered-brand-title {
    font-size: clamp(40px, 14vw, 76px);
    letter-spacing: 0.1em;
    margin-bottom: 8px;
  }
  .statement-heading {
    font-size: clamp(24px, 6.5vw, 42px);
    line-height: 1.3;
    margin-top: 10px;
    margin-bottom: 14px;
  }
  .statement-body {
    font-size: clamp(16px, 4.5vw, 24px);
    line-height: 1.5;
  }
  .statement-sub {
    font-size: clamp(13px, 3.5vw, 17px);
  }
  .statement-tagline {
    font-size: clamp(15px, 4vw, 22px);
    margin-top: 16px;
  }

  /* Odnowa Section Responsive Stack */
  .vertical-section-stillness {
    padding: 60px 12px 120px 12px;
  }
  .continuous-vertical-scroll {
    gap: 60px;
  }
  .hero-odnowa-card {
    padding: 24px 16px;
    border-radius: 20px;
  }
  .odnowa-title {
    font-size: clamp(26px, 7vw, 40px);
  }
  .odnowa-sub-title {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .odnowa-lead {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .odnowa-header-row {
    gap: 8px;
    margin-bottom: 14px;
  }
  .chip {
    font-size: 10px;
    padding: 4px 10px;
  }
  /* Odnowa Vertical List Stacked on Mobile */
  .odnowa-vertical-list {
    gap: 12px;
    margin: 20px 0 24px 0;
  }
  .odnowa-list-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 14px 16px;
    border-radius: 14px;
  }
  .odnowa-row-left {
    min-width: 0;
    width: 100%;
  }
  .odnowa-row-right {
    text-align: left;
    width: 100%;
  }
  .odnowa-row-right p {
    font-size: 13px;
  }
  .odnowa-cta-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    padding: 14px 18px;
    font-size: 13px;
  }

  /* 4 Pillars Responsive Display */
  .sky-title {
    font-size: clamp(28px, 7vw, 42px);
  }
  .sky-subtitle {
    font-size: 14px;
  }
  .pillars-vertical-container {
    gap: 32px;
  }
  .pillar-full-screen-card {
    min-height: auto;
    padding: 36px 18px;
    border-radius: 24px;
  }
  .pillar-logo-wrap {
    width: 110px;
    height: 110px;
    padding: 14px;
    margin-bottom: 18px;
  }
  .pillar-logo-img, .gaut-logo-img, .siddha-logo-img {
    max-width: 75px;
    max-height: 75px;
  }
  .pillar-name {
    font-size: clamp(26px, 7vw, 38px);
    margin: 6px 0 4px 0;
  }
  .pillar-role-title {
    font-size: 11px;
    margin-bottom: 12px;
  }
  .pillar-desc {
    font-size: 14px;
    line-height: 1.6;
  }

  /* Founder Section & Contact Card */
  .founder-full-card {
    padding: 28px 18px;
    border-radius: 24px;
  }
  .clean-heading {
    font-size: clamp(24px, 6vw, 36px);
  }
  .clean-text {
    font-size: 14px;
    line-height: 1.65;
    margin-bottom: 24px;
  }
  .qualification-box, .contact-box {
    padding: 20px 16px;
    border-radius: 16px;
    margin-bottom: 24px;
  }
  .qual-title, .contact-title {
    font-size: 18px;
  }
  .qual-list {
    gap: 12px;
  }
  .qual-list li {
    font-size: 13px;
    line-height: 1.5;
  }
  .contact-links {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  .contact-btn {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  /* Footer on Mobile */
  .site-footer {
    padding: 36px 20px 24px 20px;
    border-radius: 24px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  /* Bottom Bar */
  .bottom-bar {
    padding: 14px 16px;
  }
  .progress-track-wrapper {
    margin: 0 14px;
  }
  .scroll-indicator-text {
    display: none;
  }
  .cards-grid {
    grid-template-columns: 1fr;
  }
  .showcase-preview-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .preview-thumbnail {
    width: 100%;
  }
  .inquiry-form {
    flex-direction: column;
  }
}

/* Cards Grid for Multiple Cards per Section */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  width: 100%;
}

/* Odnowa Flagship Retreat Card */
.odnowa-card {
  position: relative;
  background: rgba(229, 204, 159, 0.08);
  border: 1.5px solid rgba(229, 204, 159, 0.4);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.7), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.odnowa-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--accent-gold);
  background: rgba(229, 204, 159, 0.15);
  border: 1px solid rgba(229, 204, 159, 0.4);
  padding: 4px 12px;
  border-radius: 12px;
  margin-bottom: 10px;
}

.odnowa-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 8px;
}

.odnowa-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px 0;
}

.highlight-chip {
  font-size: 11px;
  padding: 5px 12px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(229, 204, 159, 0.95), rgba(195, 160, 105, 0.95));
  color: #0c0c12;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  border: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(229, 204, 159, 0.3);
  transition: var(--transition-smooth);
}

.cta-btn:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 12px 32px rgba(229, 204, 159, 0.5);
}

/* Modal Overlay & Dialog */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 8, 12, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.modal-card {
  position: relative;
  width: 100%;
  max-width: 820px;
  max-height: 90vh;
  overflow-y: auto;
  background: rgba(20, 20, 28, 0.92);
  border: 1px solid rgba(229, 204, 159, 0.4);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.9);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-smooth);
}

.modal-close:hover {
  background: rgba(229, 204, 159, 0.3);
  color: var(--accent-gold);
  transform: rotate(90deg);
}

.modal-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
}

.modal-title {
  font-family: var(--font-serif);
  font-size: 32px;
  color: #fff;
  margin: 6px 0;
}

.modal-subtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.modal-feature {
  padding: 16px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-icon {
  font-size: 24px;
  margin-bottom: 8px;
}

.modal-feature h4 {
  font-size: 15px;
  color: #fff;
  margin-bottom: 4px;
}

.modal-feature p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.modal-inquiry-box {
  padding: 24px;
  border-radius: 20px;
  background: rgba(229, 204, 159, 0.06);
  border: 1px solid rgba(229, 204, 159, 0.3);
  text-align: center;
}

.modal-inquiry-box h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  color: #fff;
  margin-bottom: 6px;
}

.modal-inquiry-box p {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 16px;
}

.inquiry-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}

.inquiry-input {
  flex: 1;
  padding: 12px 18px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  font-size: 13px;
  outline: none;
}

.inquiry-input:focus {
  border-color: var(--accent-gold);
}

/* Centered Silk Hero Content (Screen 01) */
.silk-hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
}

.centered-brand-title {
  font-family: var(--font-serif);
  font-size: clamp(64px, 12vw, 130px);
  font-weight: 800;
  letter-spacing: 0.15em;
  background: linear-gradient(180deg, #ffffff 0%, #e5cc9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.9);
  margin-bottom: 12px;
}

.centered-pali-sub {
  font-size: 16px;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
}

/* Vertical Scroll Flow on Stillness (Screen 05) */
.vertical-flow-wrapper {
  width: 100%;
  max-width: 1060px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  overflow-y: auto;
  max-height: 82vh;
  padding-right: 12px;
}

.vertical-flow-wrapper::-webkit-scrollbar {
  width: 6px;
}

.vertical-flow-wrapper::-webkit-scrollbar-thumb {
  background: rgba(229, 204, 159, 0.4);
  border-radius: 4px;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  width: 100%;
}

.pillar-role {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  margin: 6px 0 10px 0;
}

/* Founder Section Card */
.founder-card {
  background: rgba(20, 20, 28, 0.88);
  border: 1.5px solid rgba(229, 204, 159, 0.4);
  padding: 36px;
  border-radius: 28px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.85);
}

.founder-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--accent-gold);
  background: rgba(229, 204, 159, 0.14);
  border: 1px solid rgba(229, 204, 159, 0.35);
  padding: 4px 14px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.founder-title {
  font-family: var(--font-serif);
  font-size: 28px;
  color: #fff;
  margin-bottom: 14px;
}

.founder-bio {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
}

/* Odnowa Intro Card & CTA Button */
.odnowa-intro-card {
  background: rgba(229, 204, 159, 0.08);
  border: 1.5px solid rgba(229, 204, 159, 0.5);
  padding: 38px;
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.9);
}

.odnowa-intro-text {
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 24px;
}

.odnowa-main-btn {
  text-decoration: none;
  display: inline-flex;
  margin-top: 10px;
}
