@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Prompt:wght@200;300;400;500;600;700&display=swap');

/* ===== BASE & SCROLLBAR ===== */
* {
  scroll-behavior: smooth;
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #1e1915;
}
::-webkit-scrollbar-thumb {
  background: #3e2617;
  border-radius: 10px;
  border: 2px solid #1e1915;
}
::-webkit-scrollbar-thumb:hover {
  background: #c97520;
}

:root {
  --premium-shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --premium-shadow-md: 0 10px 40px -10px rgba(0, 0, 0, 0.5);
  --premium-shadow-lg: 0 20px 60px -15px rgba(0, 0, 0, 0.7);
  --premium-glow: 0 0 25px rgba(251, 191, 36, 0.15);
  --teak-primary: #dc9240;
  --black-matte: #1c1713;
}

html {
  scroll-padding-top: 70px;
}

body {
  font-family: 'Prompt', 'Lanna', 'Outfit', sans-serif;
  background-color: var(--black-matte);
  color: #f8f8f8;
}

.font-outfit {
  font-family: 'Outfit', sans-serif;
}

/* ===== NAVBAR ===== */
#navbar {
  background: transparent;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  border-bottom: 1px solid rgba(255, 255, 255, 0);
}

#navbar.scrolled {
  background: rgba(28, 22, 18, 0.88);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.nav-item {
  display: inline-block;
  padding: 8px 16px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translateX(-50%);
  border-radius: 999px;
}

.nav-item:hover {
  color: #fbbf24;
}

.nav-item:hover::after,
.nav-item.active::after {
  width: 24px;
}

.nav-item.active {
  color: #fbbf24;
  background: rgba(251, 191, 36, 0.08);
}

#mobileMenu {
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(28, 22, 18, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding-top: 80px;
  display: none; /* Controlled by JS */
  flex-direction: column;
  overflow-y: auto;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-item {
  display: block;
  padding: 18px 32px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-item:hover, .mobile-nav-item.active {
  background: rgba(251, 191, 36, 0.1);
  color: #fbbf24;
  padding-left: 40px;
}

#mobileMenuBtn {
  position: relative;
  z-index: 51;
}

/* Hide default details marker on mobile collapsible menu */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  background: rgba(30, 24, 20, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(251, 191, 36, 0.25);
  border-radius: 20px;
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-width: 200px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 100;
  margin-top: 12px;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-item {
  display: block;
  padding: 10px 18px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  font-size: 0.9rem;
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: left;
  white-space: nowrap;
}

.nav-dropdown-item:hover,
.nav-dropdown-item.active {
  background: linear-gradient(90deg, rgba(251, 191, 36, 0.15) 0%, rgba(217, 119, 6, 0.05) 100%);
  color: #fbbf24;
  padding-left: 22px;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* Hide default details marker on mobile collapsible menu */
details summary::-webkit-details-marker {
  display: none;
}
details summary {
  list-style: none;
}



/* ===== HERO ===== */
.hero-overlay {
  background: radial-gradient(circle at center 35%, rgba(20, 60, 35, 0.25) 0%, rgba(28, 22, 18, 0.75) 50%, #1c1713 100%);
}

.text-shadow-lg {
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.85), 0 2px 10px rgba(0, 0, 0, 0.6);
}

.text-shadow-glow {
  text-shadow: 0 0 25px rgba(251, 191, 36, 0.35), 0 0 50px rgba(251, 191, 36, 0.1);
}

.text-gradient-gold {
  color: #fbbf24;
  display: inline-block;
}

.text-gradient-teak {
  color: #dc9240;
  display: inline-block;
}

.font-cinzel {
  font-family: 'Cinzel', serif;
}

.font-outfit {
  font-family: 'Outfit', sans-serif;
}

/* ===== AMBIENT GLOW SYSTEM ===== */
.ambient-glow-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.03) 0%, rgba(217, 119, 6, 0.005) 55%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
  will-change: transform, opacity;
}

.ambient-glow-blob-forest {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.02) 0%, rgba(4, 120, 87, 0.005) 60%, transparent 80%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(120px);
  will-change: transform, opacity;
}

/* ===== GLASS ===== */
.glass-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(251, 191, 36, 0.01) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(251, 191, 36, 0.1);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  padding: 1.5rem;
}

.glass-card::after, .shop-card::after, .board-card::after, .about-stat-card::after {
  content: '';
  position: absolute;
  top: var(--mouse-y, 0px);
  left: var(--mouse-x, 0px);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.12) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.glass-card:hover::after, .shop-card:hover::after, .board-card:hover::after, .about-stat-card:hover::after {
  opacity: 1;
}

.glass-card:hover {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(251, 191, 36, 0.03) 100%);
  border-color: rgba(251, 191, 36, 0.35);
  border-top-color: rgba(251, 191, 36, 0.7);
  border-left-color: rgba(251, 191, 36, 0.7);
  transform: translateY(-6px);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.65), 0 0 30px rgba(251, 191, 36, 0.22);
}

.premium-shape {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), inset 0 1px 20px rgba(255, 255, 255, 0.02);
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: linear-gradient(135deg, #fffbeb 0%, #fef08a 25%, #fbbf24 60%, #d97706 100%);
  background-size: 200% 200%;
  color: #1a120b;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.2), inset 0 1px 1px rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(254, 240, 138, 0.7);
  position: relative;
  overflow: hidden;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.3);
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -150%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-25deg);
  transition: 0.75s;
}

.btn-gold:hover::before {
  left: 150%;
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 12px 30px rgba(251, 191, 36, 0.45), 0 0 25px rgba(251, 191, 36, 0.25);
}

.btn-gold:active {
  transform: translateY(-1px) scale(0.99);
}

.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  letter-spacing: 0.08em;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-outline:hover {
  background: rgba(251, 191, 36, 0.06);
  border-color: rgba(251, 191, 36, 0.6);
  color: #fbbf24;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(251, 191, 36, 0.15);
}

/* ===== SECTION LABELS ===== */
.section-badge {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(245, 158, 11, 0.08);
  border: 1px solid rgba(245, 158, 11, 0.3);
  color: #fbbf24;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.section-badge-dark {
  display: inline-block;
  padding: 6px 20px;
  background: rgba(138, 69, 22, 0.08);
  border: 1px solid rgba(138, 69, 22, 0.3);
  color: #c27838;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.section-title {
  font-family: 'Noto Serif Thai', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.section-sub {
  margin-top: 16px;
  font-size: 1.05rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 300;
  line-height: 1.6;
}

/* ===== BOARD ===== */
.board-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.board-card:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 191, 36, 0.4);
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(251, 191, 36, 0.15);
}

.president-card {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(138, 69, 22, 0.2) 100%);
  border: 1.5px solid rgba(251, 191, 36, 0.4);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(251, 191, 36, 0.15);
}

.president-card:hover {
  border-color: rgba(251, 191, 36, 0.7);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 45px rgba(251, 191, 36, 0.3);
}

.vp-card {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(30, 58, 138, 0.15) 100%);
  border: 1px solid rgba(59, 130, 246, 0.25);
}

.vp-card:hover {
  border-color: rgba(59, 130, 246, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(59, 130, 246, 0.2);
}

.advisor-card {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.05) 0%, rgba(120, 53, 15, 0.15) 100%);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.advisor-card:hover {
  border-color: rgba(245, 158, 11, 0.5);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(245, 158, 11, 0.2);
}

.exec-card {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.04) 0%, rgba(6, 78, 59, 0.12) 100%);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.exec-card:hover {
  border-color: rgba(16, 185, 129, 0.45);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.7), 0 0 25px rgba(16, 185, 129, 0.15);
}

.board-card-sm {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.board-card-sm:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
}

.avatar-ring {
  width: 176px;
  height: 176px;
  border-radius: 50%;
  padding: 4px;
  background: linear-gradient(135deg, #fbbf24, #d97706);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-placeholder.president {
  background: linear-gradient(135deg, #451a03, #1c0a02);
}

.avatar-placeholder.vp {
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e293b, #0f172a);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.avatar-sm {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.6);
}

.gold-badge {
  display: inline-block;
  padding: 4px 16px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0c0a08;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 10px rgba(245, 158, 11, 0.2);
}

.blue-badge {
  display: inline-block;
  padding: 4px 16px;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #60a5fa;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* ===== SHOPS & FILTERS ===== */
.shop-filter-btn {
  padding: 12px 28px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Prompt', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.shop-filter-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
}

.shop-filter-btn.active {
  background: linear-gradient(135deg, #fde68a 0%, #f59e0b 50%, #b45309 100%);
  border-color: rgba(255, 255, 255, 0.2);
  color: #1c0a02;
  font-weight: 800;
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
}

.shop-card > div {
  background: linear-gradient(165deg, rgba(42, 34, 28, 0.9) 0%, rgba(28, 22, 18, 0.95) 100%);
  position: relative;
}

.shop-card > div::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

.shop-card:hover {
  transform: translateY(-10px);
}

#shopSearch {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

#shopSearch:focus {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== FAQ ===== */
.faq-item {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-item:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 22px 28px;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Prompt', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: color 0.3s;
}

.faq-question:hover {
  color: #fcd34d;
}

.faq-answer {
  display: none;
  padding: 0 28px 22px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  font-weight: 300;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(217, 119, 6, 0.2));
  border: 1px solid rgba(245, 158, 11, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
  flex-shrink: 0;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-item.open {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0c0a08;
  border-color: #fcd34d;
}

.faq-item.open .faq-question {
  color: #fbbf24;
}

.faq-input {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px 20px;
  color: white;
  font-family: 'Prompt', sans-serif;
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}

.faq-input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.faq-input:focus {
  border-color: rgba(251, 191, 36, 0.5);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.1);
}

/* ===== ABOUT ===== */
.about-stat-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.about-stat-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, 0px);
  left: var(--mouse-x, 0px);
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.about-stat-card:hover::before {
  opacity: 1;
}

.about-stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(251, 191, 36, 0.3);
  transform: translateY(-4px);
}

.mission-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 28px;
  padding: 32px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mission-card:hover {
  transform: translateY(-6px);
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

.mission-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15), rgba(217, 119, 6, 0.05));
  border: 1px solid rgba(251, 191, 36, 0.3);
  color: #fbbf24;
  font-size: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.4s ease;
}

.mission-card:hover .mission-icon {
  transform: rotate(10deg) scale(1.1);
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0c0a08;
  border-color: transparent;
}

.social-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.social-btn:hover {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  border-color: transparent;
  color: #0c0a08;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 15px rgba(245, 158, 11, 0.3);
}

/* ===== SECTION BACKGROUNDS ===== */
.section-bg-forest {
  /* Removed overflow: hidden to prevent clipping positioned children */
}

.section-bg-forest img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.4) saturate(0.7);
  transform: scale(1.1);
  will-change: transform;
}

/* Each section gets its own colour tint overlaid on top of the dark photo */
.section-overlay-board {
  background: linear-gradient(160deg,
      rgba(28, 22, 18, 0.9) 0%,
      rgba(15, 38, 24, 0.7) 60%,
      rgba(28, 22, 18, 0.92) 100%);
}

.section-overlay-shops {
  background: linear-gradient(135deg,
      rgba(28, 20, 16, 0.9) 0%,
      rgba(12, 38, 20, 0.68) 55%,
      rgba(28, 22, 18, 0.94) 100%);
}

.section-overlay-faq {
  background: linear-gradient(180deg,
      rgba(12, 45, 22, 0.65) 0%,
      rgba(32, 24, 18, 0.9) 100%);
}

.section-overlay-about {
  background: linear-gradient(150deg,
      rgba(35, 25, 20, 0.88) 0%,
      rgba(10, 40, 20, 0.62) 50%,
      rgba(35, 25, 20, 0.92) 100%);
}

.glass-noise {
  position: relative;
}

.glass-noise::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ===== ARTISTIC ELEMENTS ===== */
.text-outline {
  -webkit-text-stroke: 1px rgba(251, 191, 36, 0.25);
  color: rgba(255, 255, 255, 0.02);
}

.decorative-vertical-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.wood-grain-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 1;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.organic-shape {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}

.divider-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.5), transparent);
  width: 100%;
}

/* ===== ANIMATIONS ===== */
@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

.animate-premium-float {
  animation: float 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% { transform: scale(1) translate(0, 0); opacity: 0.05; }
  33% { transform: scale(1.08) translate(40px, -40px); opacity: 0.12; }
  66% { transform: scale(0.92) translate(-40px, 40px); opacity: 0.08; }
  100% { transform: scale(1) translate(0, 0); opacity: 0.05; }
}


.animated-glow {
  animation: pulse-glow 18s infinite ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.animate-fade-in {
  animation: fadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.animate-fade-in-up {
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== GALLERY TABS ===== */
.gallery-tab {
  padding: 8px 24px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-tab:hover {
  color: #fff;
  border-color: rgba(251, 191, 36, 0.4);
  background: rgba(251, 191, 36, 0.08);
}

.gallery-tab.active-tab {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #0c0a08;
  border-color: transparent;
  font-weight: 600;
  box-shadow: 0 6px 18px rgba(245, 158, 11, 0.35);
}

/* ===== GALLERY ITEM ===== */
.gallery-item {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover {
  border-color: rgba(251, 191, 36, 0.4);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transform: translateY(-5px);
}

/* ===== PARTNERS STRIP ===== */
.partners-track {
  overflow: hidden;
  position: relative;
}

.partners-inner {
  display: flex;
  gap: 2rem;
  width: max-content;
  animation: scroll-partners 25s linear infinite;
}

.partners-track:hover .partners-inner {
  animation-play-state: paused;
}

@keyframes scroll-partners {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== NAVIGATION BUTTON ===== */
.nav-btn-map, .nav-btn-action {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-btn-map {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
}

.nav-btn-map:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 8px 25px rgba(239, 68, 68, 0.5), 0 0 15px rgba(239, 68, 68, 0.2);
  background: linear-gradient(135deg, #f87171 0%, #ef4444 100%);
}

/* ===== MAP PAGE STYLES ===== */
.map-marker-teak {
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
  transition: all 0.3s ease;
}

.map-marker-teak:hover {
  transform: scale(1.2) translateY(-5px);
  filter: drop-shadow(0 8px 15px rgba(0,0,0,0.6));
}

.partner-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.25rem 2rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  color: #a8a29e;
  font-size: 0.75rem;
  font-weight: 500;
  min-width: 140px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.partner-badge:hover {
  background: rgba(251, 191, 36, 0.06);
  border-color: rgba(251, 191, 36, 0.3);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* ===== HYPER FRAME SYSTEM ===== */
@media (min-width: 1024px) {
  html {
    scroll-padding-top: 86px;
  }

  body:not(.map-page) {
    padding: 16px;
  }

  .hyper-frame-border {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 16px solid #0c0a08;
    outline: 1px solid rgba(251, 191, 36, 0.16);
    outline-offset: -16px;
    pointer-events: none;
    z-index: 9990;
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.95);
  }

  /* Fine second inner border for technical luxury aesthetic */
  .hyper-frame-border::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px dashed rgba(251, 191, 36, 0.06);
    pointer-events: none;
  }

  .hyper-frame-text {
    position: fixed;
    font-family: 'Cinzel', serif;
    font-size: 8px;
    font-weight: 700;
    color: rgba(251, 191, 36, 0.45);
    letter-spacing: 0.25em;
    pointer-events: none;
    z-index: 9995;
    text-transform: uppercase;
  }

  .hyper-frame-text.top-left {
    top: 4px;
    left: 24px;
  }

  .hyper-frame-text.top-right {
    top: 4px;
    right: 24px;
    text-align: right;
  }

  .hyper-frame-text.bottom-left {
    bottom: 4px;
    left: 24px;
  }

  .hyper-frame-text.bottom-right {
    bottom: 4px;
    right: 24px;
    text-align: right;
  }

  /* Floating navbar transition to sit inside the frame */
  #navbar {
    top: 16px !important;
    left: 16px !important;
    right: 16px !important;
    width: calc(100% - 32px) !important;
  }
}