@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700;800&family=Outfit:wght@300;400;500;600;700&family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  /* Color Palette - La Dorada Forest Luxury */
  --color-bg: #f9f8f6;
  --color-text: #22201e; /* Dark Charcoal */
  --color-primary: #45471d; /* Deep Forest Olive */
  --color-primary-dark: #2a2b10;
  --color-secondary: #b88a5b; /* Rich Warm Gold/Tan */
  --color-gold-accent: #d7b27d;
  --color-accent: #556770; /* Muted Slate */
  --color-surface: #ffffff;
  --color-surface-hover: #f3f0e8;
  --color-taupe: #787063; /* Earthy Taupe */
  
  --font-sans: 'Outfit', 'Montserrat', sans-serif;
  --font-serif: 'Cinzel', serif;
  
  --transition-fast: 0.2s ease;
  --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* NO overflow-x here — iOS Safari WebKit kills ALL touch scroll when overflow is restricted on html */
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -webkit-overflow-scrolling: touch; /* Hardware-accelerated scroll on iOS */
  /* NO overflow-x:hidden here — iOS Safari blocks touch scroll with it */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

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

button {
  font-family: var(--font-sans);
  border: none;
  cursor: pointer;
  background: none;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.98rem;
  letter-spacing: 0.5px;
  transition: all var(--transition-smooth);
  gap: 0.6rem;
  cursor: pointer;
}

.btn svg {
  transition: transform var(--transition-smooth);
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: linear-gradient(135deg, #3E4A2B 0%, #2A331D 100%);
  color: #FFFFFF;
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 6px 22px rgba(42, 51, 29, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #4B5A34 0%, #354224 100%);
  border-color: #D4AF37;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(75, 90, 52, 0.55);
}

.btn-outline, .btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #FFFFFF;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.btn-outline:hover, .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: #FFFFFF;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.section-padding {
  padding: 8rem 0;
}

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

.section-title {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  color: var(--color-primary-dark);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto 4rem;
}

/* Utilities */

.glass-panel {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .section-padding {
    padding: 4rem 0;
  }
  .section-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
  }
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
  .container {
    padding: 0 1.25rem;
  }
}
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.1rem 0;
  background: rgba(18, 22, 16, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--transition-smooth);
}

.navbar.scrolled {
  padding: 0.75rem 0;
  background: rgba(14, 18, 12, 0.96);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  margin-right: 1.5rem;
}

.brand-logo {
  height: 58px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
  transition: height var(--transition-smooth);
}

.navbar.scrolled .brand-logo {
  height: 48px;
}

.brand-text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.25;
  white-space: nowrap;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.brand-subtext {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.8px;
  color: #D4AF37;
  margin-top: 2px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

.desktop-nav {
  display: none;
  gap: 1.35rem;
  align-items: center;
  flex-wrap: nowrap;
}

@media (min-width: 1120px) {
  .desktop-nav {
    display: flex;
    align-items: center;
  }
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  transition: color var(--transition-fast);
  text-align: center;
  letter-spacing: 0.4px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  line-height: 1;
  padding: 0.4rem 0;
}

.nav-aura-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #E5C158;
  margin-right: 6px;
  display: inline-block;
  vertical-align: middle;
  box-shadow: 0 0 10px rgba(229, 193, 88, 0.5);
}

.nav-link:hover, .nav-link.active {
  color: #E5C158;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E5C158;
  transition: width var(--transition-smooth);
}

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

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #E5C158;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 10px;
  padding: 0.55rem;
  cursor: pointer;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.15);
  transition: all 0.25s ease;
  flex-shrink: 0;
}

.mobile-menu-btn:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #D4AF37;
  color: #FFFFFF;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.35);
  transform: translateY(-1px);
}

@media (min-width: 1120px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Responsive Mobile Scaling for Brand & Navbar Container */
@media (max-width: 768px) {
  .navbar-container {
    gap: 0.5rem;
  }

  .brand {
    margin-right: 0;
    gap: 0.4rem;
    min-width: 0;
  }

  .brand-logo {
    height: 44px;
  }

  .navbar.scrolled .brand-logo {
    height: 38px;
  }

  .brand-text {
    font-size: 0.98rem;
    letter-spacing: 0.4px;
  }

  .brand-subtext {
    font-size: 0.64rem;
    letter-spacing: 1px;
  }
}

@media (max-width: 480px) {
  .navbar {
    padding: 0.85rem 0;
  }

  .navbar.scrolled {
    padding: 0.65rem 0;
  }

  .brand-logo {
    height: 38px;
  }

  .navbar.scrolled .brand-logo {
    height: 34px;
  }

  .brand-text {
    font-size: 0.88rem;
    letter-spacing: 0.2px;
  }

  .brand-subtext {
    font-size: 0.58rem;
    letter-spacing: 0.8px;
  }

  .mobile-menu-btn {
    padding: 0.45rem;
  }
}

@media (max-width: 360px) {
  .brand-subtext {
    display: none;
  }
  
  .brand-text {
    font-size: 0.84rem;
  }
}

.mobile-menu-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 190;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 88%;
  max-width: 380px;
  background: #121610;
  border-left: 1px solid rgba(212, 175, 55, 0.3);
  z-index: 200;
  padding: 2rem 1.75rem;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  gap: 0.75rem;
}

.mobile-menu-header .brand {
  gap: 0.5rem;
  margin-right: 0;
  min-width: 0;
  flex: 1;
}

.mobile-menu-header .brand-logo {
  height: 40px;
}

.mobile-menu-header .brand-text {
  font-size: 0.95rem;
  white-space: normal;
  line-height: 1.2;
}

.mobile-menu-header .brand-subtext {
  font-size: 0.6rem;
}

.mobile-menu-close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.mobile-menu-close:hover {
  background: rgba(212, 175, 55, 0.25);
  border-color: #D4AF37;
  color: #D4AF37;
  transform: rotate(90deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.mobile-nav-link {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  color: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding-bottom: 0.85rem;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: #E5C158;
  padding-left: 0.5rem;
}
/* ==========================================
   Footer Component Styles
   ========================================== */

.site-footer {
  background: linear-gradient(180deg, #1a1a17 0%, #0f0f0d 100%);
  color: rgba(255, 255, 255, 0.75);
  padding: 5rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
}

/* Treeline silhouette decoration */
.footer-treeline {
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 80px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 80' preserveAspectRatio='none'%3E%3Cpath fill='%231a1a17' d='M0,80 L0,60 L30,60 L45,25 L60,60 L80,60 L100,35 L120,60 L150,60 L170,20 L190,60 L220,60 L235,30 L250,60 L280,60 L295,40 L310,60 L340,60 L360,15 L380,60 L410,60 L425,35 L440,60 L470,60 L490,22 L510,60 L540,60 L555,28 L570,60 L600,60 L620,38 L640,60 L670,60 L685,18 L700,60 L730,60 L750,32 L770,60 L800,60 L815,25 L830,60 L860,60 L880,40 L900,60 L930,60 L945,20 L960,60 L990,60 L1010,35 L1030,60 L1060,60 L1075,28 L1090,60 L1120,60 L1140,15 L1160,60 L1190,60 L1205,38 L1220,60 L1250,60 L1270,22 L1290,60 L1320,60 L1335,30 L1350,60 L1380,60 L1400,42 L1420,60 L1440,60 L1440,80 Z'/%3E%3C/svg%3E") repeat-x;
  background-size: 100% 100%;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding-bottom: 4rem;
}

/* Brand Column */
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: white;
  line-height: 1.2;
}

.footer-brand-sub {
  font-size: 0.8rem;
  color: var(--color-secondary);
  font-style: italic;
}

.footer-tagline {
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 320px;
  opacity: 0.7;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  color: rgba(255, 255, 255, 0.6);
}

.social-link:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-3px);
}

/* Link Columns */
.footer-column h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--color-secondary);
}

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

.footer-links a {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  transition: all var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-links a:hover {
  color: var(--color-secondary);
  transform: translateX(5px);
}

/* Contact Column */
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-secondary);
}

.footer-contact-item a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-contact-item a:hover {
  color: var(--color-secondary);
}

/* Bottom Bar */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 3rem 0 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}
.page-wrapper {
  min-height: 100vh;
}

/* ==========================================
   Hero Section — Rotating Video Carousel
   ========================================== */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 750px;
  display: flex;
  align-items: center;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-bg-active {
  opacity: 1;
  z-index: 1;
}

.hero-bg-hidden {
  opacity: 0;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(14, 18, 13, 0.82) 0%, rgba(14, 18, 13, 0.55) 50%, rgba(14, 18, 13, 0.9) 100%);
}

.hero-content {
  color: white;
  z-index: 10;
  padding-top: 95px;
  padding-bottom: 80px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}

.hero-category-badge {
  display: inline-block;
  padding: 0.35rem 1.1rem;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #D4AF37;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 100px;
  margin-bottom: 0.85rem;
  backdrop-filter: blur(12px);
  background: rgba(14, 18, 13, 0.6);
}

.hero-title {
  font-size: clamp(1.85rem, 3.8vw, 3.4rem);
  line-height: 1.16;
  margin-bottom: 0.85rem;
  color: white;
  max-width: 800px;
  width: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
  box-sizing: border-box;
  text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.hero-subtitle {
  font-size: clamp(0.95rem, 1.6vw, 1.18rem);
  max-width: 580px;
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1.25rem;
  color: #F4F7F2;
  font-weight: 400;
  line-height: 1.65;
  padding: 0.75rem 1.1rem;
  background: rgba(14, 18, 13, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-left: 3px solid #D4AF37;
  border-radius: 4px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
}

.hero-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  font-size: 1.05rem;
  box-shadow: 0 8px 32px rgba(88, 86, 37, 0.35);
}

.hero-cta-btn:hover {
  box-shadow: 0 12px 40px rgba(88, 86, 37, 0.55);
}

/* ==========================================
   Hero Navigation Arrows
   ========================================== */
.hero-nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
}

.hero-section:hover .hero-nav-arrow {
  opacity: 1;
}

.hero-nav-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
  transform: translateY(-50%) scale(1.08);
}

.hero-nav-prev {
  left: 2rem;
}

.hero-nav-next {
  right: 2rem;
}

/* ==========================================
   Hero Category Filter Tab Bar + Progress Indicators
   ========================================== */
.hero-nav-dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.6rem;
  align-items: center;
  justify-content: center;
  background: rgba(14, 18, 13, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 0.6rem 1rem;
  border-radius: 9999px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.45);
}

.hero-dot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  border: 1px solid transparent;
  cursor: pointer;
  padding: 0.65rem 1.4rem;
  border-radius: 9999px;
  min-width: 110px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-dot:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}

.hero-dot-active {
  background: rgba(212, 175, 55, 0.18) !important;
  border-color: rgba(212, 175, 55, 0.65) !important;
  box-shadow: 0 4px 18px rgba(212, 175, 55, 0.2);
}

.hero-dot-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.3s ease;
  white-space: nowrap;
}

.hero-dot-active .hero-dot-label {
  color: #FFFFFF;
  font-weight: 700;
}

.hero-dot:hover .hero-dot-label {
  color: rgba(255, 255, 255, 0.9);
}

.hero-dot-track {
  display: block;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 3px;
  position: relative;
  overflow: hidden;
}

.hero-dot-progress {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #D4AF37;
  border-radius: 3px;
  transform-origin: left center;
}

/* ==========================================
   Golden Trails Overview Section & Trail Cards
   ========================================== */
.golden-trails-overview {
  background: var(--color-bg);
  position: relative;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.overview-badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #3E4A2B;
  border: 1px solid rgba(62, 74, 43, 0.3);
  border-radius: 9999px;
  margin-bottom: 1.25rem;
  background: rgba(62, 74, 43, 0.06);
}

.trail-modes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.trail-mode-card {
  background: #FFFFFF;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 20px;
  padding: 2.5rem 1.8rem;
  text-align: left;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.trail-mode-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.5);
  box-shadow: 0 16px 40px rgba(62, 74, 43, 0.12);
}

.trail-mode-icon {
  font-size: 2.2rem;
  margin-bottom: 1.25rem;
}

.trail-mode-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #2A331D;
  margin-bottom: 0.75rem;
}

.trail-mode-card p {
  font-size: 0.95rem;
  color: #555555;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex: 1;
}

.trail-mode-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: #3E4A2B;
  transition: color 0.2s ease;
}

.trail-mode-card:hover .trail-mode-link {
  color: #D4AF37;
}

.trail-mode-link svg {
  transition: transform 0.3s ease;
}

.trail-mode-card:hover .trail-mode-link svg {
  transform: translateX(4px);
}


.trail-preview-container {
  padding: 2rem;
  border-radius: var(--radius-lg);
  max-width: 500px;
}

.trail-preview-heading {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.trail-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trail-btn {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255,255,255,0.5);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  color: var(--color-text);
  font-weight: 500;
}

.trail-btn:hover, .trail-btn.active {
  background: white;
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
  color: var(--color-primary);
}

.trail-description {
  margin-top: 1.5rem;
  color: var(--color-text);
  font-size: 0.95rem;
  line-height: 1.6;
  overflow: hidden;
}

/* ==========================================
   Section Label (reusable)
   ========================================== */
.section-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

/* ==========================================
   Seasonal Sanctuary Section
   ========================================== */
.seasons-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.seasons-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.season-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 1.5s ease-in-out;
}

.season-slide img {
  transition: transform 8s ease-out;
}

.season-active {
  opacity: 1;
  z-index: 1;
}

.season-active img {
  transform: scale(1.06);
}

.season-hidden {
  opacity: 0;
  z-index: 0;
}

.season-hidden img {
  transform: scale(1);
}

.seasons-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: linear-gradient(
    to right,
    rgba(10, 10, 8, 0.88) 0%,
    rgba(10, 10, 8, 0.65) 45%,
    rgba(10, 10, 8, 0.75) 100%
  );
}

.seasons-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
  padding: 8rem 2rem;
}

.seasons-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.season-info {
  margin-bottom: 3rem;
}

.season-tagline {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 0.75rem;
}

.season-name {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: white;
  line-height: 1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.season-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 420px;
}

/* Season progress indicators */
.season-indicators {
  display: flex;
  gap: 1.5rem;
}

.season-ind {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  min-width: 60px;
}

.season-ind-name {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.3s ease;
}

.season-ind-active .season-ind-name {
  color: rgba(255, 255, 255, 0.9);
}

.season-ind:hover .season-ind-name {
  color: rgba(255, 255, 255, 0.65);
}

.season-ind-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 2px;
  position: relative;
  overflow: hidden;
}

.season-ind-fill {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-secondary);
  border-radius: 2px;
  transform-origin: left center;
}

/* Right column — text content */
.seasons-right {
  max-width: 520px;
}

.seasons-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
}

.seasons-text {
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 1.25rem;
  color: rgba(255, 255, 255, 0.75);
}

.seasons-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.seasons-stat {
  display: flex;
  flex-direction: column;
}


/* ==========================================
   Shared Stat Styles
   ========================================== */
.stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-taupe);
  margin-top: 0.25rem;
  font-weight: 500;
}

/* ==========================================
   Luna Camp Teaser Section
   ========================================== */
.luna-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.luna-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.luna-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 13, 0.92) 0%, rgba(15, 15, 13, 0.7) 60%, rgba(15, 15, 13, 0.4) 100%);
}

.luna-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: 6rem 2rem;
}

.luna-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.luna-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
  max-width: 480px;
}

.luna-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.luna-thumb {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  transition: transform var(--transition-smooth);
}

.luna-thumb:hover {
  transform: scale(1.03);
}

.luna-thumb img {
  transition: transform var(--transition-slow);
}

.luna-thumb:hover img {
  transform: scale(1.08);
}

/* ==========================================
   Map Section
   ========================================== */
.interactive-map-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid white;
}

.map-image {
  width: 100%;
  height: auto;
  display: block;
}

.hotspot {
  position: absolute;
  width: 24px;
  height: 24px;
  transform: translate(-50%, -50%);
  cursor: pointer;
}

.hotspot-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.hotspot::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  background-color: white;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.hotspot-tooltip {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  color: var(--color-primary-dark);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-md);
}

.hotspot:hover .hotspot-tooltip {
  opacity: 1;
  visibility: visible;
  top: -50px;
}

.hotspot-tooltip:hover {
  color: var(--color-secondary);
  transform: translateX(-50%) scale(1.05);
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  70% { transform: scale(2.5); opacity: 0; }
  100% { transform: scale(3); opacity: 0; }
}

/* ==========================================
   Testimonials Section
   ========================================== */
.testimonials-section {
  position: relative;
}

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

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
  border: 1px solid rgba(0,0,0,0.04);
}

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

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1.25rem;
}

.testimonial-quote-icon {
  color: var(--color-secondary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.testimonial-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.85;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}

.testimonial-detail {
  font-size: 0.8rem;
  color: var(--color-taupe);
  margin-top: 2px;
}

/* ==========================================
   CTA Banner Section
   ========================================== */
.cta-section {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 18, 0.65);
  backdrop-filter: blur(2px);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
}

.cta-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.cta-btn {
  padding: 1.2rem 3rem;
  font-size: 1.1rem;
  box-shadow: 0 8px 32px rgba(88, 86, 37, 0.4);
}

.cta-btn:hover {
  box-shadow: 0 12px 40px rgba(88, 86, 37, 0.6);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images {
    height: 400px;
  }

  .luna-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding: 4rem 2rem;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 1rem auto 0;
  }

  .hero-nav-dots {
    gap: 1rem;
  }

  .hero-dot {
    min-width: 60px;
  }

  .hero-dot-label {
    font-size: 0.6rem;
    letter-spacing: 1px;
  }

  .seasons-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 6rem 2rem;
  }

  .season-name {
    font-size: clamp(3rem, 6vw, 4.5rem);
  }
}

@media (max-width: 600px) {
  .hero-section {
    min-height: 600px;
  }

  .hero-nav-arrow {
    display: none;
  }

  .hero-nav-dots {
    bottom: 1.5rem;
    gap: 0.75rem;
  }

  .hero-dot {
    min-width: 50px;
  }

  .hero-dot-label {
    font-size: 0.55rem;
  }

  .hero-category-badge {
    font-size: 0.65rem;
    padding: 0.35rem 0.9rem;
  }

  .seasons-content {
    padding: 4rem 1.5rem;
    gap: 2rem;
  }

  .season-name {
    font-size: clamp(2.5rem, 5vw, 3rem);
  }

  .season-indicators {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .seasons-stats {
    gap: 1.5rem;
  }

  .about-stats {
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .luna-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* ============================================================= */
/* EXECUTIVE MANIFESTO & INTELLIGENT OS SHOWCASE STYLES          */
/* ============================================================= */
.golden-trails-manifesto {
  background: linear-gradient(180deg, rgba(20, 26, 16, 0.98) 0%, rgba(28, 36, 22, 1) 100%);
  color: #F5F7F2;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.manifesto-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #E6C665;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 0.5rem 1.25rem;
  border-radius: 30px;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.manifesto-title {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 2.5rem;
}

.manifesto-executive-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 3rem;
  max-width: 980px;
  margin: 0 auto 4rem auto;
  position: relative;
  text-align: left;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.manifesto-quote-icon {
  color: #D4AF37;
  opacity: 0.6;
  margin-bottom: 1rem;
}

.manifesto-lead-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
  color: #F8F4EE;
  line-height: 1.5;
  margin-bottom: 2rem;
  font-style: italic;
}

.gold-highlight {
  color: #E6C665;
  font-style: normal;
  font-weight: 600;
}

.manifesto-body-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.manifesto-body-col p {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: #D8DEC8;
  line-height: 1.7;
}

.trails-platform-header {
  margin-bottom: 3rem;
}

.platform-subtitle-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #D4AF37;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.platform-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
}

.platform-section-sub {
  font-size: 1.05rem;
  color: #C2CBB2;
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.6;
}

.trails-features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 1.75rem;
  transition: all 0.3s ease;
  text-align: left;
}

.feature-card:hover {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: rgba(212, 175, 55, 0.15);
  color: #E6C665;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.feature-card p {
  font-size: 0.88rem;
  color: #B8C2A4;
  line-height: 1.55;
}

.trails-showcase-box {
  background: rgba(14, 20, 11, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 2.5rem;
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  text-align: left;
}

.showcase-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #D4AF37;
}

.showcase-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #FFFFFF;
  margin-top: 0.25rem;
}

.showcase-cta-btn {
  color: #E6C665;
  border-color: rgba(230, 198, 101, 0.4);
}

.showcase-cta-btn:hover {
  background: #E6C665;
  color: #141A10;
}

.trails-chip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.trail-chip-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: left;
  cursor: pointer;
  transition: all 0.25s ease;
}

.trail-chip-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: #D4AF37;
  transform: translateY(-3px);
}

.trail-chip-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.trail-chip-code {
  font-family: var(--font-mono, monospace);
  font-size: 0.7rem;
  color: #D4AF37;
  font-weight: 600;
}

.trail-chip-diff {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
}

.diff-gentle, .diff-easy {
  background: rgba(46, 204, 113, 0.2);
  color: #2ecc71;
}

.diff-moderate {
  background: rgba(241, 196, 15, 0.2);
  color: #f1c40f;
}

.diff-challenging {
  background: rgba(230, 126, 34, 0.2);
  color: #e67e22;
}

.trail-chip-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: #FFFFFF;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

.trail-chip-metrics {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.75rem;
  color: #C0C8AE;
  margin-bottom: 0.85rem;
}

.trail-chip-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.chip-tag {
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.65rem;
  color: #D8DEC8;
  padding: 0.2rem 0.45rem;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .trails-features-grid, .trails-chip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .manifesto-body-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .trails-features-grid, .trails-chip-grid {
    grid-template-columns: 1fr;
  }
  .manifesto-executive-card {
    padding: 1.75rem;
  }
  .showcase-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

/* ============================================================= */
/* 3D FLIP CARD STYLES FOR INTELLECTUAL OS TELEMETRY CARDS       */
/* ============================================================= */
.feature-card-container {
  perspective: 1000px;
  min-height: 270px;
  cursor: pointer;
}

.feature-card-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 270px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
}

.feature-card-container.is-flipped .feature-card-flipper {
  transform: rotateY(180deg);
}

.feature-card-front,
.feature-card-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 14px;
  padding: 1.6rem;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: left;
}

.feature-card-front {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
  transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-container:hover .feature-card-front {
  background: rgba(212, 175, 55, 0.08);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.4);
}

.feature-card-back {
  background: linear-gradient(135deg, rgba(28, 36, 22, 0.98) 0%, rgba(14, 20, 11, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.55);
  transform: rotateY(180deg);
  z-index: 1;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.6), inset 0 0 25px rgba(212, 175, 55, 0.12);
}

.feature-card-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.85rem;
}

.flip-hint-badge {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #E6C665;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
}

.card-front-footer {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.click-to-explore {
  font-size: 0.75rem;
  color: #D4AF37;
  font-weight: 500;
}

/* Card Back Styles */
.card-back-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.card-back-tag {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E6C665;
  text-transform: uppercase;
}

.close-flip-btn {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  cursor: pointer;
}

.close-flip-btn:hover {
  color: #ffffff;
}

.card-back-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.card-back-desc {
  font-size: 0.82rem;
  color: #D8DEC8;
  line-height: 1.5;
  margin-bottom: 0.65rem;
}

.card-back-metric-box {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  margin-bottom: 0.75rem;
}

.metric-label {
  font-family: var(--font-mono, monospace);
  font-size: 0.68rem;
  color: #E6C665;
}

.card-back-btn {
  width: 100%;
  background: #E6C665;
  color: #141A10;
  border: none;
  font-weight: 600;
  font-size: 0.78rem;
  padding: 0.55rem;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.card-back-btn:hover {
  background: #FFFFFF;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* AURA AI App Showcase Card on Landing Page */
.aura-invite-showcase {
  margin-top: 3rem;
}

.aura-invite-card {
  background: linear-gradient(135deg, rgba(28, 36, 22, 0.95) 0%, rgba(14, 20, 11, 0.95) 100%);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: var(--radius-lg);
  padding: 3.5rem 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(212, 175, 55, 0.08);
  position: relative;
  overflow: hidden;
}

.aura-invite-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #D4AF37 50%, transparent 100%);
}

.aura-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #E6C665;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.aura-invite-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.75rem);
  color: #FFFFFF;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.aura-invite-sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 720px;
  margin: 0 auto 2.25rem auto;
}

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


.catalog-hero {
  position: relative;
  background-image: url('/trail_one.jpeg');
  background-size: cover;
  background-position: center 30%;
  background-attachment: fixed;
  padding-top: 200px;
  padding-bottom: 120px;
}

.catalog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(44, 62, 53, 0.7), rgba(26, 26, 26, 0.6));
  z-index: 1;
}

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

.catalog-hero .section-title {
  color: #ffffff;
  text-shadow: 0 4px 12px rgba(0,0,0,0.3);
  font-size: 4rem;
}

.catalog-hero .section-subtitle {
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.25rem;
  line-height: 1.8;
}

.catalog-hero .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: white;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
}

.catalog-hero .btn-outline:hover {
  background: white;
  color: var(--color-forest, #2C3E35);
  border-color: white;
}

.category-header {
  text-align: center;
  margin-bottom: 3rem;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 2rem;
}

.catalog-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.catalog-image {
  height: 250px;
  position: relative;
}

.catalog-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.catalog-icon {
  background: var(--color-surface);
  color: var(--color-primary-dark);
  padding: 0.6rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.catalog-difficulty {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
  font-weight: 500;
}

.catalog-content h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.catalog-tagline {
  color: var(--color-text);
  opacity: 0.8;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  flex: 1;
}

/* Peace Pack Carousel Styles */
.peace-pack-section {
  padding: 6rem 0;
  background-color: var(--color-bg);
  border-top: 1px solid rgba(0,0,0,0.05);
}

.carousel-wrapper {
  position: relative;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.carousel-nav-btn {
  background: white;
  color: var(--color-primary-dark);
  border: 1px solid rgba(0,0,0,0.05);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}

.carousel-nav-btn:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav-btn.prev {
  left: 2rem;
}

.carousel-nav-btn.next {
  right: 2rem;
}

.carousel-track {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  gap: 3rem;
  padding: 3rem 8rem; /* Enough padding to clear nav buttons */
  -webkit-overflow-scrolling: touch;
  width: 100%;
  flex: 1 0 auto;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

.carousel-card {
  scroll-snap-align: center;
  flex: 0 0 450px;
  background: white;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 15px 45px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition-smooth);
}

.carousel-card:hover {
  transform: translateY(-5px);
}

.carousel-img-wrapper {
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.carousel-item-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 15px 25px rgba(0,0,0,0.1));
}

.carousel-item-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.carousel-item-body {
  color: var(--color-text);
  opacity: 0.85;
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Golden OS Section */
.golden-os-section {
  padding: 8rem 0;
  background-color: #121513; /* Very dark forest green/black */
  position: relative;
  overflow: hidden;
  color: white;
}

.golden-os-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
  pointer-events: none;
}

.os-header {
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
}

.os-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--color-brass);
  margin-bottom: 1rem;
}

.os-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 600px;
  margin: 0 auto;
}

.os-carousel-wrapper {
  margin-top: 4rem;
}

.os-carousel-track {
  gap: 4rem;
}

.os-carousel-card {
  flex: 0 0 600px; /* Wider cards for the OS images */
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.os-carousel-card:hover {
  transform: none;
}

.os-story-image {
  width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.05);
}

.carousel-item-body p {
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .golden-os-section {
    padding: 5rem 1rem;
  }
  .os-title {
    font-size: 2.5rem;
  }
  .os-carousel-card {
    flex: 0 0 85vw;
    padding: 0 !important; /* Prevent carousel-card from overriding this on mobile */
  }
  
  .catalog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem;
  }
  .carousel-nav-btn {
    display: flex; /* Bring back buttons on mobile */
    width: 40px;
    height: 40px;
  }
  .carousel-nav-btn.prev {
    left: 0.5rem;
  }
  .carousel-nav-btn.next {
    right: 0.5rem;
  }
  .carousel-wrapper {
    display: block; /* Prevent flex squishing of the track */
  }
  .carousel-track {
    padding: 2rem 1rem;
    gap: 1rem;
  }
  .carousel-card {
    flex: 0 0 85vw;
    padding: 2rem;
  }
  .carousel-item-title {
    font-size: 1.75rem;
  }
}
.experience-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.hero-overlay-dark {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.4) 50%, rgba(20, 20, 20, 0.1) 100%);
}

.hero-background .image-cover {
  object-position: center 60%;
}

.experience-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  transition: color var(--transition-fast);
}

.back-btn:hover {
  color: white;
}

.experience-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.experience-tagline {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  opacity: 0.9;
  max-width: 600px;
}

.experience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .experience-grid {
    grid-template-columns: 2fr 1fr;
  }
}

.experience-main h2 {
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.experience-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.9;
  margin-bottom: 3rem;
}

.experience-highlights-box {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-primary);
}

.experience-highlights-box h3 {
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.experience-highlights-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.experience-highlights-box li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 1.05rem;
  line-height: 1.5;
}

.highlight-icon {
  color: var(--color-secondary);
  flex-shrink: 0;
  margin-top: 2px;
}

.meta-card {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  position: sticky;
  top: 120px;
}

.meta-card h3 {
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.meta-icon {
  color: var(--color-primary);
}

.meta-label {
  display: block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text);
  opacity: 0.6;
  margin-bottom: 0.25rem;
}

.meta-value {
  display: block;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
}

.meta-divider {
  border: 0;
  height: 1px;
  background: rgba(0,0,0,0.1);
  margin: 2rem 0;
}

.booking-cta p {
  text-align: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.flex-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  gap: 1.5rem;
}

/* ==========================================
   Masonry Gallery
   ========================================== */
.experience-gallery-section {
  background: white;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.masonry-grid {
  column-count: 1;
  column-gap: 1rem;
  padding: 1rem 0;
}

@media (min-width: 600px) {
  .masonry-grid {
    column-count: 2;
  }
}

@media (min-width: 1024px) {
  .masonry-grid {
    column-count: 3;
    column-gap: 1.5rem;
  }
}

.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  background-color: var(--color-bg);
}

@media (min-width: 1024px) {
  .masonry-item {
    margin-bottom: 1.5rem;
  }
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(88, 86, 37, 0);
  transition: background 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.masonry-item:hover img {
  transform: scale(1.05);
}

.masonry-item:hover .masonry-overlay {
  background: rgba(88, 86, 37, 0.15);
}
.accommodations-list {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}

.accommodation-card {
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

@media (min-width: 992px) {
  .accommodation-card {
    flex-direction: row;
    height: auto;
  }
}

.accommodation-image {
  position: relative;
  height: 300px;
  min-height: 300px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .accommodation-image {
    width: 45%;
    height: auto;
    min-height: 400px;
  }
}

.accommodation-details {
  padding: 3rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.accommodation-details h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.lodge-tagline {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  color: var(--color-taupe);
  margin-bottom: 1.5rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lodge-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.9;
  margin-bottom: 2rem;
}

.lodge-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.amenity-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--color-surface-hover);
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-primary-dark);
  border: 1px solid rgba(88, 86, 37, 0.1);
}

.amenity-tag svg {
  color: var(--color-primary);
}

.lodge-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
}

.lodge-price {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-primary-dark);
}

/* Marquee Carousel Styles */
.marquee-container {
  display: flex;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.marquee-content {
  display: flex;
  width: max-content;
  animation: marquee 30s linear infinite;
}

.marquee-content:hover {
  animation-play-state: paused;
}

.marquee-image {
  height: 100%;
  width: 400px;
  object-fit: cover;
  flex-shrink: 0;
}

@media (min-width: 992px) {
  .marquee-image {
    width: 600px;
  }
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.location-page {
  background-color: var(--color-bg);
}

.location-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding-bottom: 4rem;
}

.location-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(20, 20, 20, 0.9) 0%, rgba(20, 20, 20, 0.3) 60%, rgba(20, 20, 20, 0) 100%);
}

.location-hero-content {
  position: relative;
  z-index: 2;
  color: white;
}

.back-to-map-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
  transition: color var(--transition-fast);
}

.back-to-map-btn:hover {
  color: white;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.location-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.location-tagline {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  opacity: 0.9;
  max-width: 600px;
  font-weight: 300;
}

.location-info-block {
  max-width: 800px;
  margin: 0 auto 5rem;
  text-align: center;
}

.location-info-block h2 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.location-description {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--color-text);
  opacity: 0.9;
}

.gallery-title {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 2.5rem;
}

.location-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: 250px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(44, 42, 41, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.gallery-item-overlay span {
  color: white;
  font-weight: 500;
  font-family: var(--font-sans);
  border: 1px solid white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius-full);
}

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

/* Lightbox */
.lightbox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: white;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  padding: 0.5rem;
  transition: background var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
}

.lightbox-image {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .booking-grid {
    grid-template-columns: 1fr 2fr;
  }
}

.trainer-profile {
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.trainer-image {
  position: relative;
  height: 300px;
  min-height: 300px;
  overflow: hidden;
}

.trainer-layout {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0 !important;
}

@media (min-width: 768px) {
  .trainer-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .trainer-layout .trainer-image {
    height: auto;
    min-height: 400px;
  }
}

.trainer-info {
  padding: 2rem;
  background: white;
}

.trainer-info h3 {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.25rem;
}

.trainer-title {
  color: var(--color-secondary);
  font-weight: 500;
  margin-bottom: 1rem;
}

.trainer-bio {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  opacity: 0.9;
}

.trainer-stats {
  display: flex;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-primary);
}

.trainer-stats span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-portal {
  background: white;
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-md);
}

.calendar-section {
  margin-bottom: 3rem;
}

.calendar-section h3 {
  font-family: var(--font-sans);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  color: var(--color-text);
}

.calendar-scroll {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--color-primary) transparent;
}

.calendar-scroll::-webkit-scrollbar {
  height: 6px;
}

.calendar-scroll::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
}

.calendar-day {
  min-width: 70px;
  height: 80px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 1px solid rgba(0,0,0,0.1);
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.calendar-day.unavailable {
  opacity: 0.4;
  cursor: not-allowed;
  background-color: #f5f5f5;
}

.calendar-day.available:hover {
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.calendar-day.selected {
  background-color: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.day-name {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.day-num {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  font-weight: 600;
}

.booking-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

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

.form-group label {
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary-dark);
}

.form-group select,
.form-group input[type="date"] {
  padding: 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-fast);
}

.form-group select:focus,
.form-group input[type="date"]:focus {
  border-color: var(--color-primary);
}

.radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.radio-btn {
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  font-size: 0.95rem;
  user-select: none;
}

.radio-btn input {
  display: none;
}

.radio-btn:hover {
  background-color: var(--color-surface-hover);
}

.radio-btn.active {
  background-color: var(--color-secondary);
  color: white;
  border-color: var(--color-secondary);
}

.w-100 {
  width: 100%;
}

/* Trainer Page Experience Grid & Cards Styling */
.trainer-experience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.trainer-experience-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.trainer-experience-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.exp-card-image {
  height: 180px;
  overflow: hidden;
}

.exp-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.exp-difficulty {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--color-secondary);
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.exp-card-content h3 {
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
  font-family: var(--font-serif);
}

.exp-tagline {
  font-size: 0.95rem;
  color: var(--color-text);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  flex: 1;
  line-height: 1.5;
}
.booking-layout {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

@media (min-width: 992px) {
  .booking-layout {
    grid-template-columns: 3fr 2fr;
    align-items: flex-start;
  }
}

/* Tabs */
.portal-tabs {
  display: flex;
  margin-bottom: 1.5rem;
  background: white;
  border-radius: var(--radius-full);
  padding: 0.5rem;
  box-shadow: var(--shadow-sm);
}

.portal-tab {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem;
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-full);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.portal-tab.active {
  background: var(--color-primary-dark);
  color: white;
}

/* Form Styles */
.portal-form-box {
  padding: 2.5rem;
  background: white;
}

.portal-form h3 {
  font-family: var(--font-serif);
  color: var(--color-primary-dark);
  margin-bottom: 2rem;
  font-size: 1.5rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--color-primary-dark);
}

.form-group select,
.form-group input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: 1rem;
  background: #fafafa;
}

.form-group select:focus,
.form-group input:focus {
  outline: none;
  border-color: var(--color-primary);
  background: white;
}

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

@media (min-width: 576px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

/* Sidebar Itinerary */
.itinerary-sidebar {
  padding: 2rem;
  background: white;
  position: sticky;
  top: 100px;
}

.itinerary-sidebar h3 {
  font-family: var(--font-serif);
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.1);
}

.empty-itinerary {
  text-align: center;
  color: var(--color-text);
  padding: 2rem 0;
}

.empty-itinerary .hint {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-top: 0.5rem;
}

.itinerary-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.itinerary-item {
  padding: 1rem;
  background: var(--color-surface);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.item-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary-dark);
}

.remove-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.2rem;
  opacity: 0.6;
  transition: opacity 0.2s;
}

.remove-btn:hover {
  opacity: 1;
}

.item-details {
  font-size: 0.85rem;
  color: var(--color-text);
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.item-price {
  font-weight: 600;
  color: var(--color-primary-dark);
  text-align: right;
}

.itinerary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary-dark);
}

.success-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 1.5rem;
  background: #ecfdf5;
  color: #065f46;
  border-radius: var(--radius-md);
}
/* ==========================================
   Gallery Page Styles
   ========================================== */

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.photo-gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.photo-gallery-item:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
  aspect-ratio: auto;
}

.photo-gallery-item:nth-child(6) {
  grid-column: span 2;
  aspect-ratio: 16 / 9;
}

.photo-gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.photo-gallery-item img {
  transition: transform var(--transition-slow);
}

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

.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1.5rem 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: white;
  font-size: 0.9rem;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform var(--transition-smooth);
}

.photo-gallery-item:hover .photo-caption {
  transform: translateY(0);
}

/* Hover overlay with "View" hint */
.photo-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  transition: background var(--transition-fast);
  pointer-events: none;
}

.photo-gallery-item:hover .photo-overlay {
  background: rgba(0, 0, 0, 0.15);
}

.photo-zoom-hint {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary-dark);
  font-weight: 600;
  font-size: 0.85rem;
  opacity: 0;
  transform: scale(0.7);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-md);
}

.photo-gallery-item:hover .photo-zoom-hint {
  opacity: 1;
  transform: scale(1);
}

/* ==========================================
   Lightbox
   ========================================== */
.lightbox-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  touch-action: none; /* Prevent elastic scroll and pull-to-refresh when in fullscreen lightbox */
}

.lightbox-content {
  position: relative;
  width: 90vw;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
  border: none;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: rotate(90deg);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 10;
  border: none;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.25);
}

.lightbox-prev {
  left: 0;
}

.lightbox-next {
  right: 0;
}

.lightbox-image-wrapper {
  width: calc(100% - 140px);
  height: calc(100% - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--radius-sm);
}

.lightbox-caption {
  position: absolute;
  bottom: 0;
  left: 70px;
  right: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  padding: 1rem 0;
}

.lightbox-counter {
  font-size: 0.8rem;
  opacity: 0.5;
  font-weight: 500;
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 900px) {
  .photo-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .photo-gallery-item:nth-child(1) {
    grid-column: span 2;
    grid-row: span 1;
    aspect-ratio: 16 / 9;
  }

  .photo-gallery-item:nth-child(6) {
    grid-column: span 1;
    aspect-ratio: 4 / 3;
  }

  .lightbox-image-wrapper {
    width: calc(100% - 100px);
  }
}

@media (max-width: 600px) {
  .photo-gallery-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .photo-gallery-item:nth-child(1) {
    grid-column: span 1;
  }

  .photo-gallery-item:nth-child(6) {
    grid-column: span 1;
  }

  .photo-caption {
    transform: translateY(0);
  }

  .lightbox-image-wrapper {
    width: calc(100% - 60px);
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-caption {
    left: 30px;
    right: 30px;
    flex-direction: column;
    gap: 0.25rem;
  }
}

/* ==========================================
   AutoPlay Carousel Styles
   ========================================== */
.carousel-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 10px;
  touch-action: manipulation; /* Let iOS handle pan/pinch natively — no 300ms delay */
}

.carousel-viewport {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: 10px 0;
}

.carousel-track {
  display: flex;
}

.carousel-item-wrapper {
  box-sizing: border-box;
  aspect-ratio: 4 / 3;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: white;
  color: var(--color-primary-dark);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all var(--transition-fast);
  border: 1px solid rgba(0,0,0,0.05);
}

.carousel-arrow:hover {
  background: var(--color-primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-arrow-left {
  left: -15px;
}

.carousel-arrow-right {
  right: -15px;
}

@media (max-width: 600px) {
  /* On mobile: use a 2-column Grid instead of a carousel to completely avoid iOS scroll bugs */
  .carousel-viewport {
    overflow: visible;
  }

  .carousel-track {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    transform: none !important;
    transition: none !important;
    width: 100% !important;
  }

  .carousel-item-wrapper {
    flex: unset !important;
    width: 100% !important;
  }

  /* Make photos square in the grid */
  .photo-gallery-item {
    aspect-ratio: 1 / 1;
    height: auto !important;
    margin: 0 !important;
  }

  /* Hide arrows and dots on mobile */
  .carousel-arrow, .carousel-dots {
    display: none !important;
  }

  .lightbox-nav {
    display: none; /* Hide manual arrows on mobile since swipe is supported */
  }
  .lightbox-image-wrapper {
    width: 100%;
    height: calc(100% - 100px);
  }
  .lightbox-close {
    top: 10px;
    right: 10px;
  }
}

/* Section Titles Responsive Styling */
.gallery-section-title {
  margin-top: 4rem;
  margin-bottom: 2rem;
  font-family: var(--font-serif);
  font-size: 2.2rem;
  color: var(--color-primary-dark);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding-bottom: 0.5rem;
}

.gallery-section-title.first-title {
  margin-top: 2rem;
}

@media (max-width: 600px) {
  .gallery-section-title {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.6rem;
  }
  .gallery-section-title.first-title {
    margin-top: 1.5rem;
  }
}

/* Dots Pagination for Carousel */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-primary-dark);
  transform: scale(1.2);
}

/* Mux Video Player Container Styling */
.gallery-video-container {
  position: relative; /* Establish stacking context to contain MuxPlayer */
  max-width: 900px;
  margin: 0 auto 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: black;
  contain: content; /* Isolate MuxPlayer shadow DOM from affecting page scroll on iOS */
}

@media (max-width: 768px) {
  .gallery-video-container {
    margin-bottom: 2.5rem;
    border-radius: var(--radius-md);
  }
}
/* ==========================================
   Investors Portal Styles
   ========================================== */

.investors-hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.investors-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.investors-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 15, 13, 0.9) 0%, rgba(15, 15, 13, 0.7) 100%);
}

.investors-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 120px;
  padding-bottom: 4rem;
}

.investors-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.investors-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: white;
  margin-bottom: 1rem;
  line-height: 1.1;
}

.investors-subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 550px;
  line-height: 1.7;
}

/* Document Card */
.investors-doc-card {
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 2rem;
}

.investors-doc-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.investors-doc-icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.investors-doc-header h2 {
  font-size: 1.4rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.2rem;
}

.investors-doc-meta {
  font-size: 0.85rem;
  color: var(--color-taupe);
}

.investors-download-btn {
  margin-left: auto;
  padding: 0.65rem 1.5rem;
  font-size: 0.9rem;
}

/* PDF Viewer */
.investors-pdf-viewer {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #525659;
}

.investors-pdf-frame {
  width: 100%;
  height: 85vh;
  min-height: 600px;
  border: none;
  display: block;
}

/* Responsive */
@media (max-width: 768px) {
  .investors-hero {
    min-height: 300px;
  }

  .investors-doc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .investors-download-btn {
    margin-left: 0;
    width: 100%;
    justify-content: center;
  }

  .investors-pdf-frame {
    height: 60vh;
    min-height: 400px;
  }
}

/* ==========================================
   PASSCODE GATE LOCK SCREEN STYLES
   ========================================== */
.passcode-gate-section {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(20, 26, 16, 0.98) 0%, rgba(14, 20, 11, 1) 100%);
  padding: 5rem 1.5rem;
  margin: 0 auto;
  box-sizing: border-box;
}

.passcode-gate-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 20px;
  padding: 3.5rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(212, 175, 55, 0.12);
  box-sizing: border-box;
}

.passcode-icon-badge {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #E6C665;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
}

.passcode-gate-title {
  font-family: var(--font-serif);
  font-size: 1.85rem;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.passcode-gate-sub {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #C2CBB2;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.passcode-input-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1rem;
}

.passcode-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  padding: 0.9rem 1.25rem;
  font-family: var(--font-mono, monospace);
  font-size: 1rem;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0.2em;
  outline: none;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

.passcode-input:focus {
  border-color: #D4AF37;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.passcode-input.error {
  border-color: #e74c3c;
  box-shadow: 0 0 15px rgba(231, 76, 60, 0.4);
  animation: shake 0.4s ease-in-out;
}

.passcode-submit-btn {
  width: 100%;
  background: #E6C665;
  color: #141A10;
  border: none;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.9rem;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.25s ease;
}

.passcode-submit-btn:hover {
  background: #FFFFFF;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
  transform: translateY(-2px);
}

.passcode-error-msg {
  font-size: 0.8rem;
  color: #e74c3c;
  margin-top: 0.5rem;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-8px); }
  40%, 80% { transform: translateX(8px); }
}/* Conservation Page Styles */

.conservation-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.conservation-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.conservation-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 23, 0.4), rgba(26, 26, 23, 0.8));
}

.conservation-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--color-surface);
  padding: 0 1.5rem;
}

.conservation-label {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.conservation-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--color-surface);
}

.conservation-subtitle {
  font-family: var(--font-sans);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
  font-weight: 300;
}

/* Main Content Section */
.conservation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

@media (min-width: 992px) {
  .conservation-grid {
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
  }
}

.conservation-text-column p {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.conservation-text-column .conservation-lead {
  font-size: 1.25rem;
  color: var(--color-text);
  font-weight: 500;
}

.conservation-text-column h2 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--color-primary-dark);
  margin-bottom: 1.5rem;
}

.conservation-section-divider {
  width: 50px;
  height: 2px;
  background-color: var(--color-secondary);
  margin: 3rem 0;
}

/* Sidebar Styles */
.conservation-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.conservation-stat-card {
  background-color: var(--color-surface);
  border: 1px solid rgba(139, 154, 118, 0.2);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.conservation-stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.stat-icon {
  color: var(--color-secondary);
  width: 32px;
  height: 32px;
  margin-bottom: 1rem;
}

.stat-value {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--color-primary-dark);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.conservation-doc-card {
  margin-top: 1.5rem;
  padding: 2rem;
}

.conservation-doc-card h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.conservation-doc-card p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.doc-meta-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding: 1rem;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 8px;
}

.doc-icon {
  color: var(--color-secondary);
}

.doc-meta-container h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.doc-meta {
  font-size: 0.8rem;
  color: var(--color-text-light);
}

.download-btn-full {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
/* ==========================================
   Golden Wellness Landing Page
   ========================================== */

.gw-hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.gw-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.gw-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 8, 0.4) 0%,
    rgba(10, 10, 8, 0.7) 100%
  );
  z-index: 1;
}

.gw-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 4rem;
}

.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  padding: 0.75rem 1.25rem;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 3rem;
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-5px);
}

.gw-hero-text {
  max-width: 800px;
}

.gw-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 8vw, 6rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.gw-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
}

/* Intro Grid */
.gw-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.gw-intro-text {
  max-width: 540px;
}

.gw-features {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.gw-feature-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: white;
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  border-left: 4px solid var(--color-secondary);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
}

.gw-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(194, 155, 118, 0.3);
}

.gw-icon-container {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-bg);
  border-radius: 50%;
  min-width: 56px;
  height: 56px;
  color: var(--color-primary);
  transition: background var(--transition-fast), color var(--transition-fast);
}

.gw-feature-card:hover .gw-icon-container {
  background: var(--color-primary);
  color: white;
}

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

.gw-feature-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}

.gw-feature-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text-light);
  opacity: 0.85;
}

/* ==========================================
   Geodesic Domes Showcase
   ========================================== */
.gw-showcase-section {
  background-color: var(--color-bg);
  border-top: 1px solid rgba(88, 86, 37, 0.05);
}

.gw-showcase-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
  margin-top: 2rem;
}

.gw-showcase-left {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.gw-showcase-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.gw-showcase-tab {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: left;
  transition: all var(--transition-smooth);
}

.gw-showcase-tab:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(5px);
}

.gw-showcase-tab.active {
  background: var(--color-surface);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-sm);
  transform: translateX(10px);
}

.gw-showcase-tab .tab-number {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--color-secondary);
}

.gw-showcase-tab .tab-name {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--color-text);
}

.gw-showcase-tab.active .tab-name {
  color: var(--color-primary-dark);
  font-weight: 600;
}

.gw-showcase-info-card {
  padding: 2.5rem;
  border-radius: var(--radius-md);
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.gw-info-tagline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-secondary);
  font-weight: 600;
  display: block;
  margin-bottom: 0.5rem;
}

.gw-info-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  margin-bottom: 1rem;
}

.gw-info-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

.gw-info-cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}

.gw-info-cta:hover {
  gap: 0.75rem;
  color: var(--color-primary-dark);
}

.gw-showcase-right {
  position: relative;
}

.gw-showcase-image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.gw-showcase-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gw-showcase-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 8, 0.4) 0%, rgba(10, 10, 8, 0) 40%);
  pointer-events: none;
}

.gw-showcase-image-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(10, 10, 8, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ==========================================
   Daily Rhythm Timeline
   ========================================== */
.gw-rhythm-container {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
  margin-top: 2rem;
}

.gw-rhythm-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  width: 100%;
  padding: 0 1rem;
}

.timeline-track-line {
  position: absolute;
  top: 28px;
  left: 5%;
  right: 5%;
  height: 3px;
  background: rgba(88, 86, 37, 0.08);
  z-index: 1;
}

.timeline-track-fill {
  height: 100%;
  background: var(--color-primary);
  transition: width var(--transition-smooth);
  width: 0%;
}

.timeline-step-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  cursor: pointer;
  background: none;
  border: none;
  flex: 1;
  transition: transform var(--transition-fast);
}

.timeline-step-node:hover {
  transform: translateY(-5px);
}

.node-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: white;
  border: 3px solid rgba(88, 86, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-taupe);
  transition: all var(--transition-smooth);
  box-shadow: var(--shadow-sm);
}

.timeline-step-node.active .node-circle {
  border-color: var(--node-accent, var(--color-primary));
  background: var(--node-accent, var(--color-primary));
  color: white;
  box-shadow: 0 0 0 6px rgba(88, 86, 37, 0.08);
}

.timeline-step-node.passed .node-circle {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.node-time {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-taupe);
  margin-top: 1rem;
  margin-bottom: 0.25rem;
  transition: color var(--transition-fast);
}

.timeline-step-node.active .node-time {
  color: var(--node-accent, var(--color-primary));
}

.node-title {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text);
  max-width: 140px;
  line-height: 1.3;
  transition: color var(--transition-fast);
}

.timeline-step-node.active .node-title {
  color: var(--color-primary-dark);
}

.gw-rhythm-details-card {
  padding: 3rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.7);
  max-width: 800px;
  margin: 0 auto;
  min-height: 180px;
  display: flex;
  align-items: center;
}

.rhythm-details-content {
  width: 100%;
}

.rhythm-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rhythm-time-badge {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.rhythm-details-title {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--color-primary-dark);
  padding-left: 1rem;
  line-height: 1.2;
}

.rhythm-details-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.85;
}

/* Banner Section */
.gw-banner {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.gw-banner-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  z-index: 0;
}

.gw-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(27, 43, 34, 0.75); /* var(--color-primary-dark) with opacity */
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .gw-showcase-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .gw-showcase-tabs {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .gw-showcase-tab {
    flex: 1 1 calc(50% - 1rem);
    justify-content: center;
  }
  
  .gw-showcase-tab.active {
    transform: none;
    border-left: 1px solid rgba(0,0,0,0.04);
    border-bottom: 4px solid var(--color-primary);
  }
  
  .gw-rhythm-timeline {
    overflow-x: auto;
    padding-bottom: 1.5rem;
    gap: 2rem;
    justify-content: flex-start;
  }
  
  .timeline-track-line {
    display: none;
  }
  
  .timeline-step-node {
    flex: 0 0 160px;
  }
}

@media (max-width: 900px) {
  .gw-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 600px) {
  .gw-showcase-tab {
    flex: 1 1 100%;
  }
  
  .gw-showcase-info-card {
    padding: 1.5rem;
    min-height: auto;
  }
  
  .gw-info-title {
    font-size: 1.5rem;
  }
  
  .gw-rhythm-details-card {
    padding: 1.75rem;
    min-height: auto;
  }
  
  .rhythm-details-title {
    font-size: 1.4rem;
  }
}

/* ============================================
   GOLDEN WELLNESS LIVE — REAL-TIME DASHBOARD
   ============================================ */

/* Page wrapper with day/night theming */
.gwl-page {
  min-height: 100vh;
  position: relative;
  padding-bottom: 4rem;
  transition: background 1.5s ease;
}

.gwl-page.gwl-day {
  background: linear-gradient(180deg, #e8dfd2 0%, #f5f0e8 30%, #f9f8f6 60%);
}

.gwl-page.gwl-night {
  background: linear-gradient(180deg, #0c1220 0%, #141e30 30%, #1a2332 60%);
}

.gwl-page.gwl-night * {
  --color-text: #e0ddd6;
}

.gwl-page.gwl-golden {
  background: linear-gradient(180deg, #f5d6a0 0%, #e8c78a 15%, #f5f0e8 50%);
}

/* Floating particles */
.gwl-particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.gwl-particle {
  position: absolute;
  border-radius: 50%;
  animation: gwl-float ease-in-out infinite alternate;
}

.gwl-dust {
  width: 3px;
  height: 3px;
  background: rgba(194, 155, 118, 0.25);
}

.gwl-star-particle {
  width: 2px;
  height: 2px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.3);
  animation: gwl-twinkle ease-in-out infinite alternate;
}

@keyframes gwl-float {
  0% { transform: translateY(0) scale(1); opacity: 0.3; }
  100% { transform: translateY(-30px) scale(1.5); opacity: 0.8; }
}

@keyframes gwl-twinkle {
  0% { opacity: 0.2; transform: scale(0.8); }
  100% { opacity: 1; transform: scale(1.3); }
}

/* Header */
.gwl-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 7rem;
  padding-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.gwl-header-right {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.gwl-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #d64545;
  background: rgba(214, 69, 69, 0.08);
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(214, 69, 69, 0.15);
}

.gwl-live-dot {
  width: 7px;
  height: 7px;
  background: #d64545;
  border-radius: 50%;
  animation: gwl-pulse 1.5s ease-in-out infinite;
}

@keyframes gwl-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}

.gwl-time {
  font-size: 0.85rem;
  font-weight: 500;
  font-variant-numeric: tabular-nums;
  opacity: 0.6;
}

/* Hero */
.gwl-hero {
  text-align: center;
  padding: 3rem 0 4rem;
  position: relative;
  z-index: 2;
}

.gwl-title {
  font-size: 3.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
  color: var(--color-primary-dark);
}

.gwl-page.gwl-night .gwl-title {
  color: #e0ddd6;
}

.gwl-subtitle {
  font-size: 1.15rem;
  opacity: 0.7;
  max-width: 550px;
  margin: 0 auto;
  line-height: 1.7;
}

.gwl-location {
  font-weight: 600;
  color: var(--color-secondary);
}

/* Dashboard Grid */
.gwl-dashboard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  position: relative;
  z-index: 2;
  padding-bottom: 2rem;
}

/* Cards */
.gwl-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.gwl-page.gwl-night .gwl-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.08);
}

.gwl-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.5;
  margin-bottom: 1.25rem;
}

.gwl-refresh {
  margin-left: auto;
  opacity: 0.4;
  transition: opacity 0.2s, transform 0.3s;
  padding: 4px;
  border-radius: 50%;
}

.gwl-refresh:hover {
  opacity: 1;
  transform: rotate(180deg);
}

/* Weather Card */
.gwl-weather-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.gwl-weather-emoji {
  font-size: 3.5rem;
  line-height: 1;
}

.gwl-weather-temp-block {
  display: flex;
  flex-direction: column;
}

.gwl-temp {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
}

.gwl-feels-like {
  font-size: 0.8rem;
  opacity: 0.5;
  margin-top: 4px;
}

.gwl-weather-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
  opacity: 0.8;
}

.gwl-weather-details {
  display: flex;
  gap: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.gwl-page.gwl-night .gwl-weather-details {
  border-color: rgba(255, 255, 255, 0.08);
}

.gwl-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  flex: 1;
  text-align: center;
}

.gwl-detail span:first-of-type {
  font-weight: 600;
  font-size: 0.95rem;
}

.gwl-detail-label {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.45;
  font-weight: 500 !important;
}

/* Sunrise Card */
.gwl-sunrise-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}

.gwl-sunrise-time {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #e2ab55;
}

.gwl-countdown-block {
  text-align: right;
}

.gwl-countdown-label {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-bottom: 4px;
}

.gwl-countdown {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
  color: #e2ab55;
}

.gwl-sunrise-visual {
  position: relative;
  height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.gwl-horizon-line {
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
  opacity: 0.4;
}

.gwl-sun-icon {
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

/* Sunset Card */
.gwl-sunset-main {
  margin-bottom: 1rem;
}

.gwl-sunset-time {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: #c27a4e;
  display: block;
}

.gwl-daylight {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-top: 4px;
  display: block;
}

.gwl-sunset-visual {
  position: relative;
  height: 50px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gwl-sunset-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #f5c882 0%, #e8956e 40%, #c27a7a 70%, #6a5a82 100%);
  opacity: 0.2;
  border-radius: var(--radius-sm);
}

.gwl-sunset-emoji {
  font-size: 1.75rem;
  position: relative;
  z-index: 1;
}

/* Moon Card */
.gwl-moon-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.gwl-moon-emoji {
  font-size: 3rem;
  line-height: 1;
}

.gwl-moon-info {
  display: flex;
  flex-direction: column;
}

.gwl-moon-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
}

.gwl-moon-illumination {
  font-size: 0.8rem;
  opacity: 0.55;
  margin-top: 2px;
}

.gwl-moon-bar-track {
  height: 4px;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 99px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.gwl-page.gwl-night .gwl-moon-bar-track {
  background: rgba(255, 255, 255, 0.08);
}

.gwl-moon-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #6a7a82, #c2c8d0);
  border-radius: 99px;
  transition: width 0.8s ease;
}

.gwl-moon-phases-strip {
  display: flex;
  justify-content: space-between;
}

.gwl-phase-dot {
  font-size: 1.1rem;
  opacity: 0.3;
  transition: all 0.3s ease;
}

.gwl-phase-dot.active {
  opacity: 1;
  transform: scale(1.4);
  filter: drop-shadow(0 0 6px rgba(200, 200, 220, 0.5));
}

/* Star Visibility Card */
.gwl-stars-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.gwl-stars-rating {
  display: flex;
  gap: 4px;
}

.gwl-star-icon {
  color: rgba(0, 0, 0, 0.12);
  transition: color 0.3s ease;
}

.gwl-star-icon.filled {
  color: #e2ab55;
  filter: drop-shadow(0 0 4px rgba(226, 171, 85, 0.4));
}

.gwl-page.gwl-night .gwl-star-icon {
  color: rgba(255, 255, 255, 0.12);
}

.gwl-stars-label {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

.gwl-stars-score {
  font-size: 0.75rem;
  opacity: 0.45;
  font-weight: 600;
}

.gwl-stars-note {
  font-size: 0.8rem;
  opacity: 0.5;
  line-height: 1.5;
  text-align: center;
  font-style: italic;
}

/* Golden Hour Card */
.gwl-golden-main {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.gwl-golden-emoji {
  font-size: 2.5rem;
}

.gwl-golden-info {
  display: flex;
  flex-direction: column;
}

.gwl-golden-status {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
}

.gwl-golden-next {
  font-size: 0.8rem;
  opacity: 0.6;
  margin-top: 2px;
}

.gwl-active-golden {
  background: linear-gradient(135deg, rgba(245, 214, 160, 0.5), rgba(232, 199, 138, 0.3)) !important;
  border-color: rgba(226, 171, 85, 0.3) !important;
  box-shadow: 0 0 40px rgba(226, 171, 85, 0.15);
}

.gwl-golden-note {
  font-size: 0.85rem;
  opacity: 0.7;
  font-style: italic;
  color: #8b6f30;
}

/* Footer */
.gwl-footer {
  text-align: center;
  padding: 3rem 0 2rem;
  position: relative;
  z-index: 2;
}

.gwl-footer p {
  font-size: 0.7rem;
  opacity: 0.3;
  letter-spacing: 0.05em;
}

/* ============================================
   DAYLIGHT PROGRESSION ARC GRAPH COMPONENT
   ============================================ */

.gwl-card-daylight-arc {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 245, 237, 0.9));
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.06), 0 0 20px rgba(212, 175, 55, 0.1);
  padding: 2rem;
  margin-bottom: 0.5rem;
}

.gwl-page.gwl-night .gwl-card-daylight-arc {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.9));
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3), 0 0 30px rgba(212, 175, 55, 0.08);
}

.gwl-arc-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.gwl-arc-title-block {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.gwl-gold-icon {
  color: var(--color-secondary, #d4af37);
}

.gwl-arc-title-block h3 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.gwl-arc-sub {
  font-size: 0.8rem;
  opacity: 0.65;
  display: block;
  margin-top: 2px;
}

/* Badges Group (Total Daylight + Sundown Counter) */
.gwl-arc-badges-group {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
}

/* Total Daylight per Day Badge */
.gwl-daylight-total-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(245, 166, 35, 0.08) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md, 12px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
}

.gwl-page.gwl-night .gwl-daylight-total-badge {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18) 0%, rgba(30, 41, 59, 0.8) 100%);
  border-color: rgba(212, 175, 55, 0.3);
}

.gwl-daylight-total-val {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #D4AF37;
  letter-spacing: -0.02em;
}

.gwl-daylight-total-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-primary-dark, #1e293b);
  opacity: 0.7;
  text-transform: uppercase;
}

.gwl-page.gwl-night .gwl-daylight-total-lbl {
  color: #CBD5E1;
}

/* Sundown Counter Badge */
.gwl-sundown-badge {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: linear-gradient(135deg, #1A202C 0%, #2D3748 100%);
  color: #FFF;
  padding: 0.6rem 1.25rem;
  border-radius: var(--radius-md, 12px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.gwl-page.gwl-night .gwl-sundown-badge {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
}

.gwl-sundown-val {
  font-size: 1.35rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: #FBBF24;
  letter-spacing: -0.02em;
}

.gwl-sundown-lbl {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #94A3B8;
  text-transform: uppercase;
}

/* Mobile Swipe Hint Badge */
.gwl-mobile-swipe-hint {
  display: none;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-secondary, #d4af37);
  opacity: 0.85;
}

@media (max-width: 768px), (hover: none) {
  .gwl-mobile-swipe-hint {
    display: block;
  }
}

/* Solar Arc SVG Container */
.gwl-svg-arc-container {
  width: 100%;
  position: relative;
  overflow: hidden;
  margin: 0.5rem 0 1rem;
}

.gwl-solar-arc-svg {
  width: 100%;
  height: auto;
  display: block;
}

/* Arc Progress Bar */
.gwl-arc-bar-section {
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.gwl-arc-bar-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.75;
  margin-bottom: 0.5rem;
}

.gwl-arc-track {
  width: 100%;
  height: 8px;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.gwl-page.gwl-night .gwl-arc-track {
  background: rgba(255, 255, 255, 0.12);
}

.gwl-arc-fill {
  height: 100%;
  background: linear-gradient(90deg, #F5A623 0%, #D4AF37 50%, #F59E0B 100%);
  border-radius: 999px;
  transition: width 0.3s ease;
}

/* Scrubber & Controls */
.gwl-arc-controls {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  background: rgba(0, 0, 0, 0.03);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md, 12px);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.gwl-page.gwl-night .gwl-arc-controls {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}

.gwl-btn-loop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #D4AF37;
  color: #1A202C;
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full, 999px);
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.gwl-btn-loop:hover {
  transform: translateY(-2px);
  background: #E5C158;
  box-shadow: 0 6px 16px rgba(212, 175, 55, 0.4);
}

.gwl-btn-loop.active {
  background: #E11D48;
  color: #FFF;
  box-shadow: 0 4px 12px rgba(225, 29, 72, 0.4);
}

.gwl-scrubber-group {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 220px;
}

.gwl-muted-icon {
  opacity: 0.5;
}

.gwl-scrubber-slider {
  flex: 1;
  height: 6px;
  accent-color: #D4AF37;
  cursor: pointer;
}

.gwl-scrub-readout {
  font-size: 0.85rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  min-width: 75px;
}

.gwl-btn-reset {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full, 999px);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.gwl-page.gwl-night .gwl-btn-reset {
  border-color: rgba(255, 255, 255, 0.2);
  color: #FFF;
}

.gwl-btn-reset:hover {
  opacity: 1;
}

/* Custom SVG Icons styling */
.gwl-svg-icon {
  display: inline-block;
  vertical-align: middle;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
  .gwl-dashboard {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .gwl-header {
    padding-top: 5.5rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .gwl-title {
    font-size: 2.5rem;
  }

  .gwl-subtitle {
    font-size: 1rem;
  }

  .gwl-hero {
    padding: 2rem 0 3rem;
  }

  .gwl-dashboard {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .gwl-arc-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .gwl-sundown-badge {
    align-items: flex-start;
    width: 100%;
  }

  .gwl-temp {
    font-size: 2.5rem;
  }

  .gwl-weather-emoji {
    font-size: 2.5rem;
  }

  .gwl-sunrise-time,
  .gwl-sunset-time {
    font-size: 1.75rem;
  }

  .gwl-countdown {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .gwl-title {
    font-size: 2rem;
  }

  .gwl-card {
    padding: 1.25rem;
  }
}

/* ==========================================================================
   Eco-Flow Wood Worx Stylesheet
   ========================================================================== */

.woodworks-page {
  background-color: var(--color-bg);
}

/* Back Button */
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.9rem;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  margin-bottom: 2.5rem;
  transition: all var(--transition-fast);
}

.back-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(-4px);
}

/* Hero Section */
.ww-hero {
  position: relative;
  height: 80vh;
  min-height: 550px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-bottom: 6rem;
}

.ww-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ww-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(20, 20, 20, 0.4) 0%,
    rgba(20, 20, 20, 0.75) 60%,
    rgba(20, 20, 20, 0.95) 100%
  );
  z-index: 1;
}

.ww-hero-content {
  position: relative;
  z-index: 2;
  color: white;
  width: 100%;
}

.ww-hero-text {
  max-width: 800px;
}

.ww-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  color: white;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.ww-subtitle {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
  line-height: 1.6;
  opacity: 0.9;
  font-family: var(--font-sans);
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Intro & Philosophy Card */
.bg-surface {
  background-color: var(--color-surface);
}

.ww-intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ww-pre-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.about-text {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  color: var(--color-text);
  opacity: 0.85;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.ww-philosophy-card {
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(88, 86, 37, 0.1);
  background: rgba(249, 248, 246, 0.8);
}

.phil-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.phil-icon {
  color: var(--color-primary);
  width: 32px;
  height: 32px;
}

.phil-header h3 {
  font-size: 1.8rem;
  color: var(--color-primary-dark);
}

.phil-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.phil-list li {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--color-text);
  position: relative;
  padding-left: 1.5rem;
}

.phil-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-secondary);
  font-size: 1.5rem;
  line-height: 1;
}

/* ==========================================================================
   10-Step Interactive Timeline
   ========================================================================== */
.timeline-section {
  position: relative;
  overflow: hidden;
}

.ww-timeline-container {
  position: relative;
  max-width: 1100px;
  margin: 4rem auto 0;
  padding: 2rem 0;
}

/* Vertical center line */
.ww-timeline-track {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    to bottom,
    rgba(88, 86, 37, 0.1) 0%,
    var(--color-primary) 15%,
    var(--color-primary) 85%,
    rgba(88, 86, 37, 0.1) 100%
  );
  transform: translateX(-50%);
  z-index: 1;
}

/* Individual timeline item */
.ww-timeline-item {
  position: relative;
  display: flex;
  width: 50%;
  margin-bottom: 6rem;
  z-index: 2;
}

.item-left {
  padding-right: 4rem;
  justify-content: flex-end;
  text-align: right;
}

.item-right {
  align-self: flex-end;
  margin-left: 50%;
  padding-left: 4rem;
  justify-content: flex-start;
  text-align: left;
}

/* Center dot with icon */
.ww-timeline-dot {
  position: absolute;
  top: 40px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--color-bg);
  border: 3px solid var(--color-primary);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-smooth);
}

.item-left .ww-timeline-dot {
  right: -25px;
}

.item-right .ww-timeline-dot {
  left: -25px;
}

.dot-active {
  background: var(--color-primary);
  color: white;
  transform: scale(1.15);
  box-shadow: 0 0 15px rgba(88, 86, 37, 0.4);
}

/* Step Card container */
.ww-timeline-card {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-smooth), box-shadow var(--transition-smooth), border-color var(--transition-smooth);
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
}

.ww-timeline-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(88, 86, 37, 0.3);
}

/* Card image header */
.card-image-wrapper {
  position: relative;
  height: 220px;
  width: 100%;
  overflow: hidden;
  background-color: var(--color-taupe);
}

.card-image-wrapper img {
  transition: transform 0.8s ease;
}

.ww-timeline-card:hover .card-image-wrapper img {
  transform: scale(1.08);
}

.step-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--color-secondary);
  color: white;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.3rem 0.8rem;
  border-radius: 5px;
  box-shadow: var(--shadow-sm);
  letter-spacing: 1px;
}

/* Card details */
.card-info {
  padding: 2rem;
}

.card-subtitle {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--color-secondary);
  display: block;
  margin-bottom: 0.5rem;
}

.card-title {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary-dark);
}

.card-desc {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text);
  opacity: 0.8;
}

/* Align adjustments for left card */
.item-left .step-badge {
  left: 1rem;
  right: auto;
}

/* ==========================================================================
   Wood Species Explorer
   ========================================================================== */
.species-section {
  border-top: 1px solid rgba(88, 86, 37, 0.08);
}

.species-explore-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3.5rem;
  margin-top: 4rem;
  align-items: start;
}

/* Tabs list on the left */
.species-tabs {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.species-tab {
  display: flex;
  align-items: center;
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(88, 86, 37, 0.05);
  transition: all var(--transition-smooth);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.species-tab:hover {
  background: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
  border-color: rgba(88, 86, 37, 0.15);
}

.species-tab.active {
  background: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateX(6px);
}

.species-color-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  margin-right: 1.25rem;
  flex-shrink: 0;
  box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

.species-tab-meta {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.species-tab-name {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--color-text);
  margin-bottom: 0.15rem;
}

.species-tab-latin {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.75rem;
  color: var(--color-taupe);
  letter-spacing: 0.5px;
}

.chevron-icon {
  color: var(--color-taupe);
  opacity: 0.4;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.species-tab.active .chevron-icon {
  transform: translateX(3px);
  opacity: 1;
  color: var(--color-primary);
}

/* Showcase panel on the right */
.species-showcase-panel {
  perspective: 1000px;
}

.species-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.species-card-banner {
  padding: 4rem 3rem;
  color: white;
  position: relative;
  display: flex;
  align-items: flex-end;
}

.species-banner-text h2 {
  font-size: 2.5rem;
  color: white;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
}

.species-badge {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 100px;
}

.latin-sub {
  font-family: var(--font-sans);
  font-style: italic;
  font-size: 0.95rem;
  opacity: 0.8;
}

.species-card-content {
  padding: 3rem;
  background: white;
}

.species-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-taupe);
  margin-bottom: 0.4rem;
}

.spec-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--color-primary-dark);
}

.species-divider {
  height: 1px;
  background: rgba(88, 86, 37, 0.08);
  margin: 2rem 0;
}

.species-card-desc {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text);
  opacity: 0.85;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.ww-cta-section {
  position: relative;
  padding: 10rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.ww-cta-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.ww-cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(20, 20, 20, 0.8);
  z-index: 1;
}

.ww-cta-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 3rem;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  line-height: 1.6;
  opacity: 0.9;
  margin-bottom: 2.5rem;
}

.btn-cta {
  font-size: 1.1rem;
  padding: 1.25rem 3rem;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ==========================================================================
   Responsive Adaptations
   ========================================================================== */
@media (max-width: 1024px) {
  .ww-intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .species-explore-container {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .species-tab.active {
    transform: none;
  }
}

@media (max-width: 768px) {
  .ww-hero {
    height: 70vh;
    padding-bottom: 4rem;
  }
  
  .ww-philosophy-card {
    padding: 2rem;
  }

  /* Collapse timeline to single column */
  .ww-timeline-track {
    left: 20px;
  }

  .ww-timeline-item {
    width: 100%;
    margin-bottom: 4rem;
  }

  .item-left,
  .item-right {
    margin-left: 0;
    padding-left: 55px;
    padding-right: 0;
    justify-content: flex-start;
    text-align: left;
  }

  .ww-timeline-dot {
    top: 20px;
    width: 40px;
    height: 40px;
  }

  .item-left .ww-timeline-dot,
  .item-right .ww-timeline-dot {
    left: 0px;
    right: auto;
  }

  .item-left .step-badge,
  .item-right .step-badge {
    right: 1rem;
    left: auto;
  }

  .card-image-wrapper {
    height: 180px;
  }
  
  .card-info {
    padding: 1.5rem;
  }

  .species-card-banner {
    padding: 3rem 2rem;
  }
  
  .species-card-content {
    padding: 2rem;
  }

  .cta-title {
    font-size: 2.25rem;
  }
}
/* ============================================================= */
/* AURA AI NATURE GUIDE & SANCTUARY OPERATING SYSTEM STYLES      */
/* ============================================================= */
.aura-app-wrapper {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(14, 20, 11, 1) 0%, rgba(20, 26, 16, 1) 100%);
  color: #F5F7F2;
  padding: 100px 1.5rem 4rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.aura-header-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #E6C665;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 0.45rem 1.15rem;
  border-radius: 30px;
  margin-bottom: 1rem;
}

.aura-page-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: #FFFFFF;
  margin-bottom: 0.5rem;
}

.aura-page-sub {
  font-size: 1rem;
  color: #C2CBB2;
  margin-bottom: 1.5rem;
}

.mode-toggle-btn {
  color: #E6C665;
  border-color: rgba(230, 198, 101, 0.4);
  font-size: 0.85rem;
  padding: 0.5rem 1.25rem;
  margin-bottom: 2rem;
}

/* Phone Container & Titanium Frame */
.aura-phone-container {
  width: 100%;
  max-width: 410px;
  margin: 0 auto;
  perspective: 1000px;
}

.aura-phone-frame {
  background: #0E140B;
  border: 3px solid rgba(212, 175, 55, 0.4);
  border-radius: 46px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 40px rgba(212, 175, 55, 0.15);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 760px;
  position: relative;
}

/* Status Bar & Dynamic Island */
.aura-phone-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.25rem 0.4rem 1.25rem;
  background: #080C06;
  font-size: 0.68rem;
  font-family: var(--font-mono, monospace);
  color: #A0AA92;
}

.satellite-pill {
  color: #2ecc71;
  font-size: 0.6rem;
  font-weight: 700;
  margin-left: 6px;
}

.dynamic-island {
  background: #000000;
  border-radius: 20px;
  padding: 0.25rem 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.camera-lens {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #111;
  border: 1px solid #333;
}

.aura-mini-logo {
  font-size: 0.62rem;
  color: #E6C665;
  font-weight: 700;
  letter-spacing: 0.1em;
}

/* Telemetry Ticker */
.aura-telemetry-ticker {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  background: rgba(212, 175, 55, 0.08);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 0.45rem 1rem;
  font-size: 0.65rem;
  font-family: var(--font-mono, monospace);
  color: #C0C8AE;
  scrollbar-width: none;
}

.aura-telemetry-ticker::-webkit-scrollbar {
  display: none;
}

.ticker-item span {
  color: #E6C665;
  font-weight: 700;
}

/* Viewport Area */
.aura-app-viewport {
  flex: 1;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}

.tab-content {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
}

/* Tab 1: Chat */
.chat-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.aura-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #D4AF37;
  color: #E6C665;
  display: flex;
  align-items: center;
  justify-content: center;
}

.chat-header h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin: 0;
}

.online-indicator {
  font-size: 0.65rem;
  color: #2ecc71;
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.chat-bubble-row {
  display: flex;
}

.chat-bubble-row.user {
  justify-content: flex-end;
}

.chat-bubble-row.aura {
  justify-content: flex-start;
}

.chat-bubble {
  max-width: 82%;
  padding: 0.85rem 1rem;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
}

.chat-bubble-row.user .chat-bubble {
  background: #D4AF37;
  color: #141A10;
  border-bottom-right-radius: 4px;
}

.chat-bubble-row.aura .chat-bubble {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #F0F4E8;
  border-bottom-left-radius: 4px;
}

.bubble-time {
  display: block;
  font-size: 0.6rem;
  opacity: 0.6;
  margin-top: 0.3rem;
}

.thinking-bubble {
  display: flex;
  gap: 4px;
  padding: 0.6rem 0.85rem;
}

.thinking-bubble .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #E6C665;
  animation: pulseDot 1.4s infinite ease-in-out both;
}

.thinking-bubble .dot:nth-child(1) { animation-delay: -0.32s; }
.thinking-bubble .dot:nth-child(2) { animation-delay: -0.16s; }

@keyframes pulseDot {
  0%, 80%, 100% { transform: scale(0); }
  40% { transform: scale(1); }
}

.prompt-chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 0.85rem;
  padding-bottom: 0.4rem;
  scrollbar-width: none;
}

.prompt-chips-scroll::-webkit-scrollbar {
  display: none;
}

.prompt-chip {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #E6C665;
  font-size: 0.72rem;
  padding: 0.4rem 0.75rem;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
}

.prompt-chip:hover {
  background: #E6C665;
  color: #141A10;
}

.chat-input-bar {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 0.35rem 0.5rem 0.35rem 1rem;
}

.chat-input-bar input {
  flex: 1;
  background: transparent;
  border: none;
  color: #FFFFFF;
  font-size: 0.85rem;
  outline: none;
}

.send-btn {
  background: #D4AF37;
  color: #141A10;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* Tab 2: Map & Radar */
.tab-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1rem;
  color: #E6C665;
}

.tab-header h3 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin: 0;
}

.map-view-box {
  position: relative;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.3);
  margin-bottom: 1rem;
}

.map-img-fill {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-overlay-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(14, 20, 11, 0.85);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: #E6C665;
  font-size: 0.65rem;
  font-family: var(--font-mono, monospace);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
}

.trail-picker-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow-y: auto;
}

.trail-picker-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 0.85rem;
  cursor: pointer;
}

.trail-picker-card.active {
  border-color: #D4AF37;
  background: rgba(212, 175, 55, 0.1);
}

.trail-picker-top {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
  margin-bottom: 0.3rem;
}

.trail-picker-code {
  color: #D4AF37;
  font-family: var(--font-mono, monospace);
}

.trail-picker-status {
  color: #2ecc71;
}

.trail-picker-card h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #FFFFFF;
  margin-bottom: 0.4rem;
}

.trail-picker-stats {
  display: flex;
  gap: 12px;
  font-size: 0.72rem;
  color: #B0B8A0;
}

/* Spotify Pill & Embed Styles */
.category-pill.spotify-pill {
  background: rgba(30, 215, 96, 0.15);
  border: 1px solid rgba(30, 215, 96, 0.4);
  color: #1ED760;
  font-weight: 700;
}

.category-pill.spotify-pill.active, .category-pill.spotify-pill:hover {
  background: #1ED760;
  color: #000000;
  border-color: #1ED760;
  box-shadow: 0 0 15px rgba(30, 215, 96, 0.4);
}

.spotify-embed-wrapper {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 0.5rem;
}

.spotify-embed-header {
  text-align: left;
  padding: 0.5rem 0.5rem 0.25rem 0.5rem;
}

.spotify-badge {
  font-size: 0.6rem;
  font-weight: 700;
  color: #1ED760;
  font-family: var(--font-mono, monospace);
  display: block;
  margin-bottom: 0.2rem;
}

.spotify-embed-header h4 {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  color: #FFFFFF;
  margin: 0 0 0.2rem 0;
}

.spotify-embed-header p {
  font-size: 0.72rem;
  color: #A0AA92;
  margin: 0;
}

.spotify-connect-card {
  background: rgba(30, 215, 96, 0.05);
  border: 1px solid rgba(30, 215, 96, 0.3);
  border-radius: 16px;
  padding: 1.5rem 1rem;
  text-align: center;
  margin-top: 0.75rem;
}

.spotify-logo-badge {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.spotify-connect-card h5 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin: 0 0 0.4rem 0;
}

.spotify-connect-card p {
  font-size: 0.76rem;
  color: #B0C0A2;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}

.spotify-connect-btn {
  background: #1ED760;
  color: #000000;
  border: none;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(30, 215, 96, 0.4);
  transition: all 0.25s ease;
  width: 100%;
  max-width: 280px;
}

.spotify-connect-btn:hover {
  background: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(255, 255, 255, 0.6);
}

.spotify-privacy-note {
  display: block;
  font-size: 0.65rem;
  color: #7A846C;
  margin-top: 0.75rem;
}

.spotify-connected-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(30, 215, 96, 0.15);
  border: 1px solid rgba(30, 215, 96, 0.35);
  border-radius: 8px;
  padding: 0.4rem 0.75rem;
  margin-top: 0.5rem;
}

.connected-user {
  font-size: 0.7rem;
  color: #1ED760;
  font-weight: 600;
}

.disconnect-btn {
  background: transparent;
  border: none;
  color: #e74c3c;
  font-size: 0.68rem;
  cursor: pointer;
}

/* Tab 3: Audio */
.audio-tab {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.audio-category-pills {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  margin-bottom: 0.5rem;
  padding-bottom: 0.4rem;
  scrollbar-width: auto;
  flex-shrink: 0;
}

.audio-category-pills::-webkit-scrollbar {
  height: 4px;
}

.audio-category-pills::-webkit-scrollbar-thumb {
  background: rgba(212, 175, 55, 0.4);
  border-radius: 4px;
}

.category-pill {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.35);
  color: #E6C665;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.category-pill.active, .category-pill:hover {
  background: #E6C665;
  color: #141A10;
  border-color: #E6C665;
  box-shadow: 0 0 12px rgba(230, 198, 101, 0.3);
}

.spotify-playlist-switcher {
  display: flex;
  gap: 8px;
  margin: 0.5rem 0 0.85rem 0;
  overflow-x: auto;
}

.playlist-select-btn {
  background: rgba(30, 215, 96, 0.12);
  border: 1px solid rgba(30, 215, 96, 0.35);
  color: #1DB954;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.85rem;
  border-radius: 20px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.playlist-select-btn.active, .playlist-select-btn:hover {
  background: #1DB954;
  color: #000000;
  border-color: #1DB954;
  box-shadow: 0 0 12px rgba(29, 185, 84, 0.4);
}

.player-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 14px;
  padding: 0.85rem;
  display: flex;
  align-items: center;
  gap: 12px;
  text-align: left;
  flex-shrink: 0;
}

.player-album-art {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.player-album-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.player-info-side {
  flex: 1;
  overflow: hidden;
}

.active-category-pill {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 700;
  color: #E6C665;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(212, 175, 55, 0.15);
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  display: inline-block;
  margin-bottom: 0.2rem;
}

.active-track-title {
  font-family: var(--font-serif);
  font-size: 0.92rem;
  color: #FFFFFF;
  margin: 0.15rem 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.artist-name {
  font-size: 0.7rem;
  color: #C0C8AE;
  margin-bottom: 0.4rem;
}

.play-main-btn-sm {
  background: #E6C665;
  color: #141A10;
  border: none;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.play-main-btn-sm:hover {
  background: #FFFFFF;
  transform: translateY(-1px);
}

.active-track-desc {
  font-size: 0.78rem;
  color: #C0C8AE;
  line-height: 1.5;
  margin-bottom: 1rem;
}

.audio-category-pills {
  display: flex;
  gap: 6px;
  overflow-x: auto;
  margin-bottom: 0.85rem;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.audio-category-pills::-webkit-scrollbar {
  display: none;
}

.category-pill {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #C2CBB2;
  font-size: 0.68rem;
  padding: 0.35rem 0.65rem;
  border-radius: 16px;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.category-pill.active, .category-pill:hover {
  background: #E6C665;
  color: #141A10;
  border-color: #E6C665;
  font-weight: 600;
}

.audio-track-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  overflow-y: auto;
  max-height: 220px;
}

.audio-track-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.6rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.audio-track-item:hover, .audio-track-item.active {
  background: rgba(212, 175, 55, 0.12);
  border-color: #D4AF37;
}

.track-item-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.track-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumb-play-icon {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  color: #E6C665;
  display: flex;
  align-items: center;
  justify-content: center;
}

.track-item-info {
  flex: 1;
  text-align: left;
}

.track-cat-badge {
  font-size: 0.6rem;
  color: #D4AF37;
  display: block;
}

.track-item-info h5 {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: #FFFFFF;
  margin: 0.1rem 0;
}

.track-item-info p {
  font-size: 0.7rem;
  color: #98A28A;
  margin: 0;
}

.play-main-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #E6C665;
  color: #141A10;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem auto;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(230, 198, 101, 0.4);
}

.binaural-toggle-box {
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 0.6rem 0.85rem;
  border-radius: 8px;
  font-size: 0.72rem;
  display: flex;
  justify-content: space-between;
  color: #E6C665;
}

/* Tab 4: AR Scanner */
.scanner-camera-frame {
  position: relative;
  height: 190px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.scanner-target-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scanner-status {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(46, 204, 113, 0.85);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

.species-detail-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 1rem;
  text-align: left;
  margin-bottom: 1rem;
}

.species-type {
  font-size: 0.65rem;
  color: #D4AF37;
  font-weight: 700;
  text-transform: uppercase;
}

.species-detail-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin: 0.25rem 0 0.5rem 0;
}

.species-detail-card p {
  font-size: 0.78rem;
  color: #C0C8AE;
  margin: 0;
  line-height: 1.5;
}

.species-thumb-list {
  display: flex;
  gap: 8px;
  overflow-x: auto;
}

.species-thumb-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #D8DEC8;
  font-size: 0.7rem;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  white-space: nowrap;
  cursor: pointer;
}

.species-thumb-btn.active {
  background: #D4AF37;
  color: #141A10;
  border-color: #D4AF37;
}

/* Dock Navigation */
.aura-dock-nav {
  display: flex;
  justify-content: space-around;
  background: #080C06;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.6rem 0.5rem;
}

.dock-item {
  background: transparent;
  border: none;
  color: #7A846C;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  font-size: 0.62rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.dock-item.active, .dock-item:hover {
  color: #E6C665;
}

.aura-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dock-aura-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(212, 175, 55, 0.6);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.dock-item.active .dock-aura-icon, .dock-item:hover .dock-aura-icon {
  border-color: #E6C665;
  box-shadow: 0 0 8px rgba(230, 198, 101, 0.5);
  transform: scale(1.08);
}

/* Fullscreen Mode override */
.aura-app-wrapper.fullscreen-mode .aura-phone-container {
  max-width: 100%;
}

.aura-app-wrapper.fullscreen-mode .aura-phone-frame {
  height: 82vh;
  border-radius: 20px;
}

/* Tab 4: Observatory Styles */
.observatory-tab {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.observatory-hero-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.12) 0%, rgba(20, 26, 16, 0.8) 100%);
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 14px;
  padding: 1rem;
  text-align: left;
}

.stargaze-badge {
  font-size: 0.62rem;
  font-weight: 700;
  color: #E6C665;
  font-family: var(--font-mono, monospace);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 0.4rem;
}

.observatory-hero-card h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: #FFFFFF;
  margin: 0 0 0.3rem 0;
}

.stargaze-sub {
  font-size: 0.76rem;
  color: #C0C8AE;
  margin-bottom: 0.65rem;
}

.constellation-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.constellation-tags span {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #E6C665;
  font-size: 0.65rem;
  padding: 0.2rem 0.5rem;
  border-radius: 10px;
}

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

.sensor-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 0.75rem;
  text-align: left;
}

.tile-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: #8A947C;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.08em;
  display: block;
}

.tile-val {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin: 0.2rem 0;
}

.tile-sub {
  font-size: 0.65rem;
  color: #B0B8A0;
}

.tile-sub.text-green {
  color: #2ecc71;
  font-weight: 600;
}

.live-camera-feeds {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.feed-header-label {
  font-size: 0.65rem;
  font-family: var(--font-mono, monospace);
  color: #2ecc71;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.camera-feed-card {
  position: relative;
  height: 95px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cam-feed-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.85) 100%);
  padding: 0.4rem 0.65rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cam-title {
  font-size: 0.72rem;
  color: #FFFFFF;
  font-family: var(--font-sans);
}

.live-dot {
  font-size: 0.6rem;
  color: #e74c3c;
  font-weight: 700;
}

/* Celestial Grid & Daylight Arc */
.celestial-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}

.celestial-tile {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 10px;
  padding: 0.6rem 0.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}

.celestial-label {
  font-size: 0.58rem;
  font-weight: 700;
  color: #E6C665;
  font-family: var(--font-mono, monospace);
  display: block;
}

.celestial-time {
  font-family: var(--font-serif);
  font-size: 0.88rem;
  color: #FFFFFF;
  margin: 0.1rem 0 0 0;
}

.daylight-arc-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 0.85rem;
  text-align: left;
}

.arc-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
  font-family: var(--font-mono, monospace);
  color: #C0C8AE;
  margin-bottom: 0.6rem;
}

.daylight-hours-badge {
  background: rgba(212, 175, 55, 0.15);
  color: #E6C665;
  padding: 0.15rem 0.5rem;
  border-radius: 8px;
  font-weight: 700;
}

.arc-bar-container {
  position: relative;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  margin: 0.5rem 0 0.85rem 0;
}

.arc-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #F5A623 0%, #F5B041 50%, #EE5253 100%);
  border-radius: 6px;
}

.arc-sun-pin {
  position: absolute;
  top: -8px;
  font-size: 0.85rem;
  transform: translateX(-50%);
  filter: drop-shadow(0 0 6px #F5A623);
}

.arc-time-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.62rem;
  color: #8A947C;
}

/* Visible Moon Graphic Widget */
.observatory-hero-card.moon-widget-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.moon-hero-left {
  flex: 1;
}

.moon-widget-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 16px;
  padding: 0.75rem 0.85rem;
  flex-shrink: 0;
  box-shadow: inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.moon-graphic-label {
  font-size: 0.6rem;
  font-family: var(--font-mono, monospace);
  color: #E6C665;
  font-weight: 700;
  white-space: nowrap;
}

/* Live Camera Video Feed Styles */
.scanner-video-feed {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.camera-toggle-row {
  display: flex;
  justify-content: center;
  margin: 0.6rem 0;
}

.btn-camera-start {
  background: linear-gradient(135deg, #E6C665 0%, #D4AF37 100%);
  color: #141A10;
  border: none;
  font-weight: 700;
  font-size: 0.76rem;
  padding: 0.6rem 1.2rem;
  border-radius: 20px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(230, 198, 101, 0.3);
  transition: all 0.2s ease;
}

.btn-camera-start:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 198, 101, 0.45);
}

.btn-camera-stop {
  background: rgba(231, 76, 60, 0.2);
  border: 1px solid #e74c3c;
  color: #ff6b6b;
  font-size: 0.74rem;
  font-weight: 600;
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  cursor: pointer;
}

.camera-error-msg {
  font-size: 0.68rem;
  color: #E6C665;
  background: rgba(212, 175, 55, 0.1);
  padding: 0.4rem 0.75rem;
  border-radius: 8px;
  margin: 0.4rem 0;
}

.scanner-status.live {
  background: rgba(46, 204, 113, 0.25);
  border-color: #2ecc71;
  color: #2ecc71;
}

/* Daily Verified Stoic Wisdom Card */
.daily-stoic-card {
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(20, 26, 16, 0.85) 100%);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  margin: 0.5rem 0 0.75rem 0;
  text-align: left;
}

.stoic-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.4rem;
}

.stoic-badge {
  font-size: 0.58rem;
  font-weight: 700;
  color: #E6C665;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.05em;
}

.refresh-quote-btn {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.25);
  color: #E6C665;
  font-size: 0.62rem;
  padding: 0.2rem 0.55rem;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: all 0.2s ease;
}

.refresh-quote-btn:hover {
  background: rgba(212, 175, 55, 0.2);
  color: #FFFFFF;
}

.stoic-quote-text {
  font-family: var(--font-serif);
  font-size: 0.82rem;
  line-height: 1.45;
  color: #F0F4E8;
  font-style: italic;
  margin: 0 0 0.4rem 0;
}

.stoic-author-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.65rem;
}

.author-name {
  color: #E6C665;
  font-weight: 600;
}

.author-citation {
  color: #8A947C;
  font-family: var(--font-mono, monospace);
  font-size: 0.6rem;
}

/* Audio Scrubber & Offline Badge Enhancements */
.player-badge-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 0.25rem;
  flex-wrap: wrap;
}

.offline-status-badge {
  font-size: 0.58rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 10px;
  font-family: var(--font-mono, monospace);
  letter-spacing: 0.03em;
}

.offline-status-badge.local-mp3 {
  background: rgba(30, 215, 96, 0.15);
  color: #1ED760;
  border: 1px solid rgba(30, 215, 96, 0.35);
}

.offline-status-badge.ambient {
  background: rgba(230, 198, 101, 0.12);
  color: #E6C665;
  border: 1px solid rgba(230, 198, 101, 0.3);
}

.audio-scrubber-wrapper {
  margin: 0.45rem 0 0.35rem 0;
  width: 100%;
}

.audio-seek-slider {
  width: 100%;
  height: 4px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  cursor: pointer;
  accent-color: #E6C665;
}

.time-display-row {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}

.time-text {
  font-size: 0.6rem;
  font-family: var(--font-mono, monospace);
  color: #9CA3AF;
  font-weight: 600;
}

.track-badge-line {
  display: flex;
  align-items: center;
  gap: 6px;
}

.mini-offline-tag {
  font-size: 0.52rem;
  font-weight: 700;
  color: #1ED760;
  background: rgba(30, 215, 96, 0.15);
  padding: 0.08rem 0.35rem;
  border-radius: 6px;
  border: 1px solid rgba(30, 215, 96, 0.3);
}

/* ==========================================
   3D BRASS STAR COMPASS CURSOR STYLES
   ========================================== */
.golden-nugget-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 44px;
  height: 44px;
  margin-top: -22px;
  margin-left: -22px;
  pointer-events: none;
  z-index: 99999;
  will-change: transform;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
              height 0.3s cubic-bezier(0.16, 1, 0.3, 1),
              margin 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hide default cursor on desktop when golden compass is active */
@media (pointer: fine) {
  body, a, button, input, select, textarea, [role="button"] {
    cursor: none !important;
  }
}

.nugget-aura {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, rgba(212, 175, 55, 0.1) 60%, rgba(212, 175, 55, 0) 100%);
  filter: blur(4px);
  transition: all 0.3s ease;
  animation: auraPulse 3s infinite ease-in-out;
}

.nugget-svg {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  animation: nuggetFloat 4s infinite ease-in-out;
  transform: rotate(0deg);
}

/* Hover State Expansion (Maintains perfectly level 0deg alignment) */
.golden-nugget-cursor.nugget-hover {
  width: 48px;
  height: 48px;
  margin-top: -24px;
  margin-left: -24px;
}

.golden-nugget-cursor.nugget-hover .nugget-aura {
  inset: -12px;
  background: radial-gradient(circle, rgba(255, 229, 143, 0.7) 0%, rgba(212, 175, 55, 0.25) 60%, rgba(212, 175, 55, 0) 100%);
  filter: blur(6px);
}

.golden-nugget-cursor.nugget-hover .nugget-svg {
  transform: scale(1.25) rotate(0deg);
}

/* Active Click Shrink (Maintains perfectly level 0deg alignment) */
.golden-nugget-cursor.nugget-active .nugget-svg {
  transform: scale(0.88) rotate(0deg);
}

/* Pure Vertical Float (Zero tilt/rotation) */
@keyframes nuggetFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(0deg); }
}

@keyframes auraPulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.15); }
}
