/* ================ RESET ================ */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #2D1810;
  background: #FEF8E8;
  overflow-x: hidden;
  line-height: 1.65;
}
a { text-decoration: none; color: inherit; transition: color 0.3s ease; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================ VARS ================ */
:root {
  --red: #E11D27;
  --red-dark: #B01520;
  --red-soft: #F5D3D5;
  --gold: #F7C948;
  --gold-light: #FDE89A;
  --gold-dark: #E0A424;
  --dark: #2D1810;
  --dark-soft: #4A2F22;
  --cream: #FEF8E8;
  --cream-warm: #FBEFD3;
  --text: #3D2817;
  --text-muted: #7A6656;
  --white: #FFFFFF;
  --border: rgba(45, 24, 16, 0.12);
  --border-light: rgba(45, 24, 16, 0.06);
  --shadow-sm: 0 2px 8px rgba(45, 24, 16, 0.08);
  --shadow-md: 0 10px 30px rgba(45, 24, 16, 0.12);
  --shadow-lg: 0 25px 60px rgba(45, 24, 16, 0.18);
  --shadow-xl: 0 30px 80px rgba(45, 24, 16, 0.25);
  --radius: 16px;
  --radius-lg: 28px;
  --radius-pill: 100px;
  --container: 1200px;
  --nav-height: 80px;
  --section-padding: 120px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ================ NAV ================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: var(--cream);
  z-index: 1000;
  transition: box-shadow var(--transition), background var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  box-shadow: 0 4px 20px rgba(45, 24, 16, 0.1);
  border-bottom-color: var(--border-light);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-text {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.logo-sub {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  font-family: 'Inter', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: white !important;
  padding: 11px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 14px;
  transition: all var(--transition);
  box-shadow: 0 6px 20px rgba(225, 29, 39, 0.3);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--red-dark);
  color: white !important;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(225, 29, 39, 0.4);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--dark);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translateY(5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translateY(-5px); }

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(45, 24, 16, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ================ HERO ================ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 24px 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('img/hero-green.jpg') center/cover no-repeat;
  filter: brightness(0.7);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.25) 0%, rgba(0, 0, 0, 0.45) 60%, rgba(0, 0, 0, 0.7) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 880px;
}
.hero-badge {
  display: inline-flex;
  align-items: stretch;
  background: var(--gold);
  border-radius: 0;
  font-size: 11px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: 2.8px;
  text-transform: uppercase;
  margin-bottom: 36px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  position: relative;
  padding: 0;
  overflow: hidden;
}
.hero-badge .dot {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: auto;
  align-self: stretch;
  background: var(--red);
  border-radius: 0;
  animation: none;
  flex-shrink: 0;
  color: var(--gold);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 18px;
  font-weight: 700;
  font-style: italic;
  letter-spacing: 0;
}
.hero-badge .dot::before {
  content: 'Y';
}
.hero-badge-text {
  padding: 14px 22px 14px 18px;
  display: flex;
  align-items: center;
  border-left: 2px solid var(--red);
}

.hero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 700;
  color: white;
  letter-spacing: -1.5px;
  line-height: 1.05;
  margin-bottom: 28px;
}
.hero-kyrgyz {
  display: block;
  font-size: clamp(56px, 9vw, 110px);
  color: var(--gold);
  font-weight: 800;
  margin-bottom: 4px;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}
.hero-main {
  display: block;
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 500;
}
.hero-main em {
  color: var(--gold);
  font-style: italic;
  font-weight: 600;
}
.hero-subtitle {
  font-size: clamp(16px, 1.7vw, 19px);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 44px;
  line-height: 1.7;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
  animation: scroll-line 2s infinite;
}
@keyframes scroll-line {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.5; transform: scaleY(0.5); transform-origin: top; }
}

/* ================ BUTTONS ================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: -0.2px;
  text-decoration: none;
}
.btn-primary {
  background: var(--red);
  color: white;
  box-shadow: 0 10px 30px rgba(225, 29, 39, 0.4);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(225, 29, 39, 0.5);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 10px 30px rgba(247, 201, 72, 0.4);
}
.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
}
.btn-whatsapp:hover {
  background: #1EBE5D;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 211, 102, 0.5);
}
.btn-block {
  width: 100%;
  justify-content: center;
}

/* ================ MARQUEE ================ */
.marquee {
  background: var(--red);
  color: white;
  padding: 18px 0;
  overflow: hidden;
  position: relative;
  border-top: 3px solid var(--gold);
  border-bottom: 3px solid var(--gold);
}
.marquee-track {
  display: flex;
  gap: 36px;
  align-items: center;
  white-space: nowrap;
  animation: marquee 40s linear infinite;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.marquee-track span { flex-shrink: 0; }
.dot-sep {
  color: var(--gold);
  font-size: 14px;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ================ SECTIONS ================ */
.section {
  padding: var(--section-padding) 0;
}
.section-cream {
  background: var(--cream-warm);
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--gold);
}
.section-label.light {
  color: var(--gold);
}
.section-label.light::before {
  background: var(--gold);
}
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}
.section-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.7;
}
.highlight {
  color: var(--red);
  position: relative;
  white-space: nowrap;
}
.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 12px;
  background: var(--gold);
  z-index: -1;
  opacity: 0.5;
  border-radius: 4px;
}
.highlight-light {
  color: var(--gold);
}

/* ================ ABOUT ================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(-2deg);
  transition: transform var(--transition);
}
.about-image:hover {
  transform: rotate(0deg);
}
.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-sticker {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: var(--gold);
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: 2px;
  transform: rotate(3deg);
}
.sticker-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}
.sticker-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-soft);
}
.about-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(32px, 3.8vw, 48px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  letter-spacing: -0.8px;
  margin-bottom: 24px;
}
.about-content p {
  font-size: 17px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 18px;
}
.about-content p em {
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}
.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.value-num {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 6px;
}
.value-label {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

/* ================ ACTIVITIES ================ */
.activities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.activity-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: all var(--transition);
  border: 1px solid var(--border-light);
  position: relative;
  overflow: hidden;
}
.activity-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.activity-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.activity-card:hover::before {
  transform: scaleX(1);
}
.activity-card-accent {
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: white;
}
.activity-card-accent h3,
.activity-card-accent .activity-meta {
  color: white;
}
.activity-card-accent p {
  color: rgba(255, 255, 255, 0.85);
}
.activity-card-accent .activity-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--gold);
}

.activity-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(225, 29, 39, 0.08), rgba(247, 201, 72, 0.08));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin-bottom: 24px;
  transition: transform var(--transition);
}
.activity-card:hover .activity-icon {
  transform: scale(1.08) rotate(-4deg);
}
.activity-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.activity-card p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.activity-meta {
  font-size: 12px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ================ EVENTS ================ */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 960px;
  margin: 0 auto;
}
.event-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 32px;
  padding: 32px 36px;
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  transition: all var(--transition);
  align-items: center;
}
.event-card:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 16px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 16px;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}
.event-day {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
}
.event-month {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}
.event-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--red-soft);
  color: var(--red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
}
.event-body h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}
.event-body p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.event-meta {
  display: flex;
  gap: 20px;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}
.event-meta span::before {
  content: '●';
  color: var(--gold);
  margin-right: 8px;
}

/* ================ QUOTE BANNER ================ */
.quote-banner {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: white;
}
.quote-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(247, 201, 72, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(225, 29, 39, 0.15) 0%, transparent 50%);
}
.quote-content {
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.quote-mark {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 120px;
  line-height: 0.6;
  color: var(--gold);
  font-style: italic;
  margin-bottom: 20px;
}
.quote-text {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(22px, 3vw, 34px);
  font-weight: 500;
  line-height: 1.4;
  font-style: italic;
  margin-bottom: 24px;
  letter-spacing: -0.3px;
}
.quote-author {
  font-size: 14px;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ================ VORSTAND ================ */
.board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 960px;
  margin: 0 auto;
}
.board-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.board-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.board-avatar {
  width: 104px;
  height: 104px;
  border-radius: 50%;
  margin: 0 auto 20px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--red), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 32px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(225, 29, 39, 0.25);
}
.board-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.board-avatar-placeholder {
  background: linear-gradient(135deg, var(--cream-warm), var(--gold-light));
  color: var(--red);
}
.board-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}
.board-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.board-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ================ MEMBERSHIP ================ */
.membership {
  background: var(--dark);
  color: white;
  position: relative;
  overflow: hidden;
}
.membership::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 10%, rgba(225, 29, 39, 0.2), transparent 40%),
    radial-gradient(circle at 90% 90%, rgba(247, 201, 72, 0.12), transparent 40%);
}
.membership-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.membership-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.membership-content h2 .highlight-light {
  font-style: italic;
}
.membership-content > p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
  margin-bottom: 32px;
}
.membership-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 40px;
}
.membership-list li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}
.check-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.free-banner {
  display: flex;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--dark);
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px rgba(247, 201, 72, 0.25);
  position: relative;
  overflow: hidden;
}
.free-banner::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
}
.free-amount {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 68px;
  font-weight: 800;
  line-height: 1;
  color: var(--red);
  position: relative;
  z-index: 1;
}
.free-body {
  flex: 1;
  position: relative;
  z-index: 1;
}
.free-title {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}
.free-sub {
  font-size: 14px;
  line-height: 1.5;
  color: var(--dark-soft);
}
.free-star {
  color: var(--red);
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  animation: star-spin 8s linear infinite;
}
@keyframes star-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.membership-content p strong {
  color: var(--gold);
  font-weight: 700;
}

/* MINIMAL WA CARD */
.form-card-minimal {
  text-align: center;
  padding: 56px 40px;
}
.form-card-minimal h3 {
  margin-bottom: 12px;
}
.form-card-minimal .form-intro {
  margin-bottom: 28px;
  font-size: 16px;
  line-height: 1.6;
}
.form-card-minimal .btn-block {
  padding: 18px;
  font-size: 16px;
}
.wa-icon-big {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35);
  animation: wa-pulse 2.5s infinite;
}
@keyframes wa-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 12px 40px rgba(37, 211, 102, 0.35); }
  50% { transform: scale(1.05); box-shadow: 0 14px 50px rgba(37, 211, 102, 0.5); }
}
.form-number {
  margin-top: 16px;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
}

/* FORM */
.form-card {
  background: white;
  color: var(--dark);
  padding: 44px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.form-card h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}
.form-intro {
  color: var(--text-muted);
  margin-bottom: 28px;
  font-size: 15px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  letter-spacing: 0.2px;
}
.form-group label .req {
  color: var(--red);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  background: white;
  transition: all var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(225, 29, 39, 0.08);
}
.form-group textarea {
  resize: vertical;
  min-height: 90px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 24px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-check input {
  margin-top: 3px;
  accent-color: var(--red);
}
.form-check a {
  color: var(--red);
  text-decoration: underline;
}

/* ================ CONTACT MINI ================ */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.contact-mini {
  background: white;
  padding: 32px 24px;
  border-radius: var(--radius);
  text-align: center;
  border: 1px solid var(--border-light);
  transition: all var(--transition);
}
.contact-mini:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}
.contact-mini-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(225, 29, 39, 0.08), rgba(247, 201, 72, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  margin: 0 auto 18px;
}
.contact-mini h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.contact-mini p,
.contact-mini a {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}
.contact-mini a:hover { color: var(--red); }

/* ================ FOOTER ================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 72px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand .nav-logo {
  color: white;
  margin-bottom: 18px;
}
.footer-brand .logo-sub {
  color: var(--gold);
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  max-width: 340px;
}
.footer-column h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 15px;
  font-weight: 700;
  color: white;
  margin-bottom: 18px;
  letter-spacing: 0.2px;
}
.footer-column a {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 10px;
  transition: all var(--transition);
}
.footer-column a:hover {
  color: var(--gold);
  transform: translateX(4px);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
}
.footer-tagline {
  color: var(--gold);
  font-style: italic;
  font-family: 'Fraunces', Georgia, serif;
}

/* ================ REVEAL ================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ================ LEGAL PAGES ================ */
.subhero {
  padding: calc(var(--nav-height) + 80px) 0 80px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--red-dark) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.subhero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(247, 201, 72, 0.15), transparent 50%);
}
.subhero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.subhero h1 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  margin-bottom: 16px;
}
.subhero p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px 120px;
}
.legal-content h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--dark);
  margin: 48px 0 18px;
  letter-spacing: -0.3px;
}
.legal-content h2:first-child {
  margin-top: 0;
}
.legal-content h3 {
  font-family: 'Fraunces', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  margin: 28px 0 10px;
}
.legal-content p, .legal-content li {
  font-size: 16px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 14px;
}
.legal-content ul, .legal-content ol {
  padding-left: 24px;
  margin-bottom: 18px;
}
.legal-content a {
  color: var(--red);
  text-decoration: underline;
}
.legal-content strong {
  color: var(--dark);
}
.legal-box {
  background: var(--cream-warm);
  border-left: 4px solid var(--red);
  padding: 24px 28px;
  border-radius: 12px;
  margin: 24px 0;
}

/* ================ RESPONSIVE ================ */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }
  .about-grid,
  .membership-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }
  .activities-grid,
  .board-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .about-sticker {
    right: 10px;
  }
}

@media (max-width: 768px) {
  :root { --section-padding: 64px; --nav-height: 68px; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    padding: 40px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transition: right var(--transition);
  }
  .nav-links.open { right: 0; }
  .nav-links a { font-size: 18px; }
  .nav-toggle { display: flex; }

  .activities-grid,
  .board-grid,
  .contact-cards,
  .footer-grid,
  .form-row,
  .about-values {
    grid-template-columns: 1fr;
  }

  .free-banner {
    flex-direction: column;
    text-align: center;
    padding: 32px 24px;
  }
  .free-amount {
    font-size: 56px;
  }

  .event-card {
    grid-template-columns: 100px 1fr;
    gap: 20px;
    padding: 24px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn { justify-content: center; }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }

  .about-sticker {
    right: -10px;
    bottom: 20px;
    padding: 14px 20px;
  }
  .sticker-num { font-size: 24px; }
}

@media (max-width: 480px) {
  :root { --section-padding: 48px; }
  .section-header { margin-bottom: 48px; }
  .event-card {
    grid-template-columns: 80px 1fr;
  }
  .event-day { font-size: 28px; }
  .form-card { padding: 32px 24px; }
  .hero-badge { font-size: 11px; padding: 8px 16px; }
}
