/* ============================================
   BUZZ OF TRANSFORMATION - Design System
   Cinematic Documentary Website
   ============================================ */

/* ============================================
   1. FONTS
   ============================================ */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Space+Grotesk:wght@400;500;600;700&display=swap');

/* ============================================
   2. CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Colors - Bee & Nature Inspired, Desaturated & Deep */
  --amber-gold: #D4A04A;
  --amber-gold-light: #E8C078;
  --honey-dark: #8B6914;
  --warm-black: #1A1814;
  --warm-black-light: #2A2620;
  --ivory: #F5F2E8;
  --ivory-dark: #E8E4D8;
  --organic-gray: #6B6560;
  --organic-gray-light: #9A948D;
  --moss: #4A5240;
  --pollen: #C9A227;

  /* Semantic Colors */
  --color-primary: var(--amber-gold);
  --color-secondary: var(--honey-dark);
  --color-background: var(--warm-black);
  --color-background-alt: var(--ivory);
  --color-text: var(--ivory);
  --color-text-muted: var(--organic-gray-light);
  --color-text-dark: var(--warm-black);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Outfit', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-data: 'Space Grotesk', 'SF Mono', monospace;

  /* Font Sizes - Fluid Typography */
  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.375vw, 1rem);
  --text-base: clamp(1rem, 0.9rem + 0.5vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.625vw, 1.375rem);
  --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.75rem);
  --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2.25rem);
  --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3.5rem);
  --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 5rem);
  --text-hero: clamp(3rem, 2rem + 5vw, 8rem);

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;
  --space-section: clamp(4rem, 8vw, 10rem);

  /* Layout */
  --container-max: 1440px;
  --container-padding: clamp(1.5rem, 5vw, 4rem);

  /* Effects */
  --transition-fast: 150ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-cinematic: 800ms cubic-bezier(0.4, 0, 0.2, 1);

  --shadow-sm: 0 1px 2px rgba(26, 24, 20, 0.1);
  --shadow-md: 0 4px 12px rgba(26, 24, 20, 0.15);
  --shadow-lg: 0 12px 40px rgba(26, 24, 20, 0.2);
  --shadow-glow: 0 0 40px rgba(212, 160, 74, 0.3);

  --blur-sm: blur(4px);
  --blur-md: blur(8px);
  --blur-lg: blur(20px);
  --blur-cinematic: blur(40px);

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-background);
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='8' fill='none' stroke='%23D4A04A' stroke-width='2'/%3E%3C/svg%3E") 12 12, auto;
}

/* Pointer cursor for clickable elements */
a,
button,
input[type="submit"],
input[type="button"],
.btn,
.nav__toggle,
.nav__link,
.card,
[role="button"],
[onclick] {
  cursor: pointer;
}

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

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

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

/* ============================================
   4. TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.text-hero {
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.03em;
}

.text-display {
  font-size: var(--text-4xl);
  font-weight: 500;
}

.text-headline {
  font-size: var(--text-3xl);
  font-weight: 500;
}

.text-title {
  font-size: var(--text-2xl);
  font-weight: 500;
}

.text-subtitle {
  font-size: var(--text-xl);
  font-weight: 400;
}

.text-body {
  font-size: var(--text-base);
  font-weight: 400;
}

.text-caption {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.text-data {
  font-family: var(--font-data);
  font-weight: 500;
}

.text-accent {
  color: var(--color-primary);
}

.text-italic {
  font-style: italic;
}

/* ============================================
   5. LAYOUT UTILITIES
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
}

.container--narrow {
  max-width: 960px;
}

.container--wide {
  max-width: 1600px;
}

.section {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

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

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-sm {
  gap: var(--space-sm);
}

.gap-md {
  gap: var(--space-md);
}

.gap-lg {
  gap: var(--space-lg);
}

.gap-xl {
  gap: var(--space-xl);
}

.gap-2xl {
  gap: var(--space-2xl);
}

.grid {
  display: grid;
}

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

.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ============================================
   6. NAVIGATION - Mammut Style
   ============================================ */

/* Frame border that appears when menu is open */
.nav-frame {
  position: fixed;
  inset: 0;
  z-index: 998;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity;
}

.nav-frame.is-open {
  opacity: 1;
}

.nav-frame__border {
  position: absolute;
  background-color: #fff !important;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.nav-frame__border--top {
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  transform: translateY(-100%);
}

.nav-frame__border--bottom {
  bottom: 0;
  left: 0;
  right: 0;
  height: 8px;
  transform: translateY(100%);
}

.nav-frame__border--left {
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px;
  transform: translateX(-100%);
}

.nav-frame__border--right {
  top: 0;
  right: 0;
  bottom: 0;
  width: 8px;
  transform: translateX(100%);
}

.nav-frame.is-open .nav-frame__border {
  transform: translate(0, 0);
}

/* Navigation container */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
}

/* Hamburger Toggle - SVG trapezoid style */
.nav__toggle {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1001;
  width: 120px;
  height: 40px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: top;
}

.nav__toggle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.nav__toggle-bg path {
  fill: #fff;
  transition: fill var(--transition-fast);
}

.nav__toggle:hover .nav__toggle-bg path {
  fill: white;
}

.nav__toggle-lines {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav__toggle-lines span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: var(--warm-black);
  transition: all var(--transition-base);
}

/* Move toggle down when menu is open */
.nav.is-open .nav__toggle {
  top: 80px;
}

/* Toggle X animation when open */
.nav.is-open .nav__toggle-lines span:first-child {
  transform: rotate(45deg) translate(3px, 2px);
}

.nav.is-open .nav__toggle-lines span:last-child {
  transform: rotate(-45deg) translate(3px, -2px);
}

/* Menu wrapper - hidden by default */
.nav__menu-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-100%);
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
  z-index: 999;
}

.nav.is-open .nav__menu-wrapper {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3xl);
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav__item {
  text-align: center;
}

.nav__link {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--warm-black);
  text-decoration: none;
  transition: opacity var(--transition-fast);
}

.nav__link:hover {
  opacity: 0.7;
}

/* Logo - hidden by default, shows in corner when open */
.nav__logo {
  position: fixed;
  bottom: 20px;
  left: 20px;
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
  z-index: 999;
}

.nav.is-open .nav__logo {
  opacity: 1;
  visibility: visible;
}

.nav__logo span {
  color: var(--color-primary);
}

/* ============================================
   7. HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__background {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 0;
  overflow: hidden;
}

.hero__background img,
.hero__background video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) blur(2px);
}

/* Subtle zoom animation for non-home hero images */
.hero--with-blur .hero__background img {
  animation: heroZoom 10s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

.hero__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 24, 20, 0.4) 0%,
      rgba(26, 24, 20, 0.3) 40%,
      rgba(26, 24, 20, 0.8) 75%,
      rgba(26, 24, 20, 1) 95%);
}

.hero__blur-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 24, 20, 0.5) 0%,
      rgba(26, 24, 20, 0.5) 60%,
      rgba(26, 24, 20, 1) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hero--with-blur .hero__background::after {
  display: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--space-4xl) var(--container-padding);
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-xl);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s var(--transition-cinematic) forwards;
  animation-delay: 0.3s;
}

.hero__title span {
  display: block;
}

.hero__title .highlight {
  color: var(--color-primary);
  font-style: italic;
}

.hero__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: 300;
  color: var(--color-text-muted);
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 0.8s;
}

/* ============================================
   8. BEE COUNTER
   ============================================ */
.bee-counter {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--space-3xl);
}

.bee-counter__circle {
  position: relative;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(212, 160, 74, 0.1) 0%, transparent 70%);
}

.bee-counter__circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 74, 0.5);
  box-shadow: 0 0 20px rgba(212, 160, 74, 0.3);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0.3;
    box-shadow: 0 0 40px rgba(212, 160, 74, 0.5);
  }
}

.bee-counter__circle::after {
  content: '';
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 160, 74, 0.15);
  animation: rotate 60s linear infinite;
}

.bee-counter__number {
  font-family: var(--font-data);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.02em;
  text-shadow: var(--shadow-glow);
  font-variant-numeric: tabular-nums;
  min-width: 280px;
  display: inline-block;
  text-align: center;
}

.bee-counter__label {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--space-sm);
  text-align: center;
  line-height: 1.6;
}

.bee-counter__period {
  display: block;
  font-family: var(--font-body);
  font-size: var(--text-xs);
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: var(--space-xs);
  opacity: 0.8;
}

.bee-counter__context {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-text-muted);
  text-align: center;
  max-width: 400px;
  margin-top: var(--space-xl);
}

.bee-counter__rate {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  background: rgba(212, 160, 74, 0.1);
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 160, 74, 0.2);
}

.bee-counter__rate-number {
  font-family: var(--font-data);
  font-size: var(--text-lg);
  font-weight: 600;
  color: var(--color-primary);
}

.bee-counter__rate-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.bee-counter__info-icon {
  margin-left: var(--space-xs);
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  opacity: 0.7;
  transition: opacity 0.2s;
}

.bee-counter__rate:hover .bee-counter__info-icon {
  opacity: 1;
}

/* Disclaimer Modal */
.disclaimer-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  padding: var(--space-lg);
}

.disclaimer-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.disclaimer-modal__content {
  background: var(--warm-black-light);
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 500px;
  position: relative;
}

.disclaimer-modal__close {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  cursor: pointer;
  padding: var(--space-xs);
  line-height: 1;
  transition: color 0.2s;
}

.disclaimer-modal__close:hover {
  color: var(--color-primary);
}

.disclaimer-modal__text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   9. SPLIT SECTION
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 80vh;
}

.split--reverse {
  direction: rtl;
}

.split--reverse>* {
  direction: ltr;
}

.split__media {
  position: relative;
  overflow: hidden;
}

.split__media--video {
  background: var(--warm-black);
}

.split__media--video::after {
  display: none;
}

.split__media iframe {
  width: 100%;
  height: 100%;
  min-height: 500px;
  display: block;
}

.split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-cinematic);
}

.split__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: background 0.5s ease, backdrop-filter 0.5s ease, -webkit-backdrop-filter 0.5s ease;
  pointer-events: none;
  z-index: 1;
}

.split__media--no-blur::after {
  display: none;
}

.split__media:hover::after {
  background: rgba(26, 24, 20, 0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.split__media:hover img {
  transform: scale(1.03);
}

.split__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--space-4xl);
  background-color: var(--warm-black-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q 12.5 5, 25 10 T 50 10 T 75 10 T 100 10' fill='none' stroke='rgba(212,160,74,0.10)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 20px;
}

.split__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.split__title {
  font-size: var(--text-3xl);
  margin-bottom: var(--space-lg);
}

.split__text {
  font-size: var(--text-lg);
  font-weight: 300;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: var(--space-xl);
}

/* ============================================
   10. BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
  transition: all var(--transition-base);
}

.btn--primary {
  background-color: var(--color-primary);
  color: var(--warm-black);
}

.btn--primary:hover {
  background-color: var(--amber-gold-light);
  box-shadow: var(--shadow-glow);
}

.btn--secondary {
  background-color: transparent;
  color: var(--color-text);
  border: 1px solid var(--organic-gray);
}

.btn--secondary:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  padding: var(--space-sm) 0;
}

.btn--ghost::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn--ghost:hover::after {
  transform: translateX(4px);
}

/* ============================================
   11. CARDS
   ============================================ */
.card {
  background-color: var(--warm-black-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.card__media {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-cinematic);
}

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

.card__body {
  padding: var(--space-xl);
}

.card__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-primary);
  margin-bottom: var(--space-sm);
}

.card__title {
  font-size: var(--text-xl);
  margin-bottom: var(--space-md);
}

.card__text {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ============================================
   12. DONATION TIERS
   ============================================ */
.tier {
  position: relative;
  padding: var(--space-2xl);
  background: linear-gradient(135deg, var(--warm-black-light) 0%, var(--warm-black) 100%);
  border: 1px solid rgba(212, 160, 74, 0.2);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.tier:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.tier--featured {
  border-color: var(--color-primary);
  background: linear-gradient(135deg, rgba(212, 160, 74, 0.1) 0%, var(--warm-black) 100%);
}

.tier--featured::before {
  content: 'Recommended';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: var(--space-xs) var(--space-md);
  background-color: var(--color-primary);
  color: var(--warm-black);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: var(--radius-full);
}

.tier__name {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  margin-bottom: var(--space-sm);
}

.tier__amount {
  font-family: var(--font-data);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-bottom: var(--space-lg);
}

.tier__description {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.6;
}

.tier__benefits {
  list-style: none;
  margin-bottom: var(--space-xl);
}

.tier__benefit {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.tier__benefit::before {
  content: '✓';
  color: var(--color-primary);
  font-weight: 700;
}

/* ============================================
   12.5 CTA SECTION
   ============================================ */
.cta-section {
  position: relative;
  overflow: hidden;
}

.cta-section__background {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-section__background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: slowZoom 10s ease-in-out infinite alternate;
}

@keyframes slowZoom {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.cta-section__background::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26, 24, 20, 0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ============================================
   13. TEAM MEMBER
   ============================================ */
.team-member {
  text-align: center;
}

.team-member__photo {
  width: 200px;
  height: 200px;
  margin: 0 auto var(--space-xl);
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  background: transparent;
  position: relative;
  animation: teamGlow 3s ease-in-out infinite;
}

@keyframes teamGlow {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 160, 74, 0.3), 0 0 40px rgba(212, 160, 74, 0.1);
  }

  50% {
    box-shadow: 0 0 30px rgba(212, 160, 74, 0.5), 0 0 60px rgba(212, 160, 74, 0.2);
  }
}

.team-member__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member__name {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  margin-bottom: var(--space-xs);
}

.team-member__role {
  font-size: var(--text-sm);
  color: var(--color-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: var(--space-md);
}

.team-member__bio {
  font-size: var(--text-base);
  color: var(--color-text-muted);
  max-width: 300px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ============================================
   14. FOOTER
   ============================================ */
.footer {
  padding: var(--space-4xl) 0 var(--space-xl);
  background-color: var(--warm-black);
  border-top: 1px solid rgba(107, 101, 96, 0.2);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-3xl);
  margin-bottom: var(--space-3xl);
}

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--space-lg);
}

.footer__logo span {
  color: var(--color-primary);
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--color-text);
  margin-bottom: var(--space-lg);
}

.footer__links {
  list-style: none;
}

.footer__link {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-xl);
  border-top: 1px solid rgba(107, 101, 96, 0.2);
}

.footer__copyright {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
}

.footer__socials {
  display: flex;
  gap: var(--space-lg);
}

.footer__social {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  transition: color var(--transition-fast);
}

.footer__social:hover {
  color: var(--color-primary);
}

/* ============================================
   15. ANIMATIONS
   ============================================ */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  to {
    transform: rotate(360deg);
  }
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.7;
  }
}

@keyframes countUp {
  from {
    transform: translateY(10px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Scroll-triggered animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   16. UTILITY CLASSES
   ============================================ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

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

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

.mt-sm {
  margin-top: var(--space-sm);
}

.mt-md {
  margin-top: var(--space-md);
}

.mt-lg {
  margin-top: var(--space-lg);
}

.mt-xl {
  margin-top: var(--space-xl);
}

.mt-2xl {
  margin-top: var(--space-2xl);
}

.mb-sm {
  margin-bottom: var(--space-sm);
}

.mb-md {
  margin-bottom: var(--space-md);
}

.mb-lg {
  margin-bottom: var(--space-lg);
}

.mb-xl {
  margin-bottom: var(--space-xl);
}

.mb-2xl {
  margin-bottom: var(--space-2xl);
}

/* Stats Section */
.stats-section {
  background: var(--warm-black);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-2xl);
  max-width: 1000px;
  margin: 0 auto;
}

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

.stat-card__circle {
  width: 160px;
  height: 160px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  border: 2px solid var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: statPulse 4s ease-in-out infinite;
}

.stat-card__circle::before {
  content: '';
  position: absolute;
  inset: -15px;
  border-radius: 50%;
  border: 1px dashed rgba(212, 160, 74, 0.25);
  animation: rotate 40s linear infinite;
}

.stat-card__circle::after {
  content: '';
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 74, 0.1);
  animation: rotate 60s linear infinite reverse;
}

@keyframes statPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(212, 160, 74, 0.2), 0 0 40px rgba(212, 160, 74, 0.05);
    transform: scale(1);
  }

  50% {
    box-shadow: 0 0 35px rgba(212, 160, 74, 0.4), 0 0 70px rgba(212, 160, 74, 0.1);
    transform: scale(1.02);
  }
}

.stat-card__number {
  font-family: var(--font-data);
  font-size: var(--text-4xl);
  font-weight: 600;
  color: var(--color-primary);
  letter-spacing: -0.02em;
}

.stat-card__number--large {
  font-size: var(--text-3xl);
}

.stat-card__plus {
  font-family: var(--font-data);
  font-size: var(--text-xl);
  color: var(--color-primary);
  margin-left: 2px;
  opacity: 0.8;
}

.stat-card__label {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Honeycomb Animation */
.honeycomb-section {
  position: relative;
  overflow: hidden;
}

.honeycomb-container {
  width: 100%;
  height: 200px;
  position: relative;
  overflow: hidden;
}

.honeycomb-container--fullscreen {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.honeycomb-container--fullscreen::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 150px;
  background: linear-gradient(to bottom, transparent, var(--warm-black));
  pointer-events: none;
  z-index: 2;
}

.honeycomb-container canvas {
  width: 100%;
  height: 100%;
}

/* Particle Only Container (no hexagons) */
.particle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.particle-container canvas {
  width: 100%;
  height: 100%;
}

/* Video Hero */
.video-hero {
  width: 100%;
  margin-top: var(--space-2xl);
}

.video-hero--fullwidth {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  margin-top: var(--space-3xl);
}

.video-hero__wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.video-hero__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Video Grid */
.video-grid {
  display: grid;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
}

.video-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

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

/* Video Card */
.video-card {
  background: var(--warm-black);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.video-card__video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-card__video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-card__title {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 500;
  color: var(--ivory);
  padding: var(--space-md) var(--space-lg);
  margin: 0;
}

.video-card__subtitle {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  padding: 0 var(--space-lg) var(--space-md);
  margin: 0;
  margin-top: calc(var(--space-md) * -1);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }

  .stat-card__circle {
    width: 120px;
    height: 120px;
  }

  .stat-card__number {
    font-size: var(--text-3xl);
  }

  .video-grid--3,
  .video-grid--2 {
    grid-template-columns: 1fr;
  }

  .video-card__title {
    font-size: var(--text-sm);
  }
}

.bg-dark {
  background-color: var(--warm-black);
}

.bg-light {
  background-color: var(--ivory);
  color: var(--color-text-dark);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='20' viewBox='0 0 100 20'%3E%3Cpath d='M0 10 Q 12.5 5, 25 10 T 50 10 T 75 10 T 100 10' fill='none' stroke='rgba(139,105,20,0.12)' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 100px 20px;
}

/* ============================================
   17. RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
  .split {
    grid-template-columns: 1fr;
  }

  .split__content {
    padding: var(--space-2xl);
  }

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

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

@media (max-width: 768px) {
  .nav-frame {
    z-index: 9997;
  }

  .nav-frame__border--top {
    height: 40px;
  }

  .nav-frame__border--bottom {
    height: 6px;
  }

  .nav-frame__border--left,
  .nav-frame__border--right {
    width: 6px;
  }

  .nav__menu-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background-color: var(--warm-black) !important;
    z-index: 9996;
  }

  .nav__menu {
    flex-direction: column;
    gap: var(--space-xl);
  }

  .nav__link {
    font-size: var(--text-xl);
    color: var(--ivory);
  }

  .nav__toggle {
    display: flex;
    z-index: 9999;
    top: 0;
  }

  .nav.is-open .nav__toggle {
    top: 40px;
  }

  .hero__content .mt-2xl {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
  }

  .hero__content .mt-2xl .btn {
    margin-left: 0 !important;
  }

  .grid-cols-2,
  .grid-cols-3 {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand {
    max-width: none;
    margin: 0 auto;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-lg);
    text-align: center;
  }

  .bee-counter__circle {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .split__content {
    padding: var(--space-xl);
  }

  .tier {
    padding: var(--space-xl);
  }
}

/* ============================================
   18. CINEMATIC EFFECTS
   ============================================ */

/* Depth of field blur overlay */
.cinematic-blur {
  position: relative;
}

.cinematic-blur::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center,
      transparent 30%,
      rgba(26, 24, 20, 0.3) 100%);
  pointer-events: none;
}

/* Vignette effect */
.vignette::after {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 150px rgba(26, 24, 20, 0.5);
  pointer-events: none;
}

/* Film grain texture (optional, subtle) */
.film-grain::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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%' height='100%' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.03;
  pointer-events: none;
}

/* Gradient overlays for text legibility */
.gradient-overlay-bottom {
  position: relative;
}

.gradient-overlay-bottom::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(26, 24, 20, 0.2) 0%,
      rgba(26, 24, 20, 0.1) 30%,
      rgba(26, 24, 20, 0.3) 70%,
      rgba(26, 24, 20, 0.7) 100%);
  pointer-events: none;
}

.gradient-overlay-top {
  position: relative;
}

.gradient-overlay-top::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(26, 24, 20, 0.6), transparent);
  pointer-events: none;
}