:root {
  --red: #C8102E;
  --red-dark: #9B0D22;
  --red-deep: #6B0717;
  --red-light: #E8304A;
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --cream: #FDF6EE;
  --warm-white: #FFFAF5;
  --charcoal: #1A1208;
  --brown: #3D2B1F;
  --mid-gray: #7A6E68;
  --light-gray: #F0EBE5;
  --border: rgba(200,16,46,0.12);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --tr: all 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  --radius-card: 16px;
  --radius-btn: 6px;
  --shadow-card: 0 4px 24px rgba(26,18,8,0.06);
  --shadow-hover: 0 16px 48px rgba(200,16,46,0.10);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 2px; }

/* ================================================
   TOPBAR
   ================================================ */
.topbar {
  background: var(--red-deep);
  padding: 7px 0;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  letter-spacing: .03em;
}
.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: rgba(255,255,255,0.8); text-decoration: none; }
.topbar a:hover { color: var(--gold-light); }
.topbar-right { display: flex; gap: 18px; align-items: center; }
.iso-badge {
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 2px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ================================================
   NAVIGATION
   ================================================ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 2px solid var(--red);
  box-shadow: 0 2px 20px rgba(200,16,46,.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  flex-shrink: 0;
}
.logo-text strong { display: block; font-size: 15px; font-weight: 600; color: var(--charcoal); letter-spacing: -.02em; }
.logo-text span { display: block; font-size: 10px; color: var(--mid-gray); letter-spacing: .08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2px; list-style: none; }
.nav-links a {
  display: block;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  border-radius: 5px;
  transition: var(--tr);
  letter-spacing: -.01em;
}
.nav-links a:hover,
.nav-links a.active { color: var(--red); background: rgba(200,16,46,.06); }
.nav-cta { display: flex; gap: 10px; align-items: center; }

/* ================================================
   BUTTONS
   ================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: var(--radius-btn);
  font-size: 13.5px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--tr);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: -.01em;
}
.btn-outline { border: 1.5px solid var(--red); color: var(--red); background: transparent; }
.btn-outline:hover { background: rgba(200,16,46,.07); }
.btn-primary { background: var(--red); color: #fff; box-shadow: 0 4px 14px rgba(200,16,46,.3); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(200,16,46,.38); }
.btn-gold { background: var(--gold); color: var(--charcoal); box-shadow: 0 4px 14px rgba(201,168,76,.35); }
.btn-gold:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-ghost-white { border: 1.5px solid rgba(255,255,255,0.4); color: #fff; background: transparent; }
.btn-ghost-white:hover { background: rgba(255,255,255,.1); }
.btn-lg { padding: 14px 32px; font-size: 15px; }
.btn-sm { padding: 7px 16px; font-size: 12.5px; }

/* ================================================
   HAMBURGER
   ================================================ */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--charcoal); border-radius: 2px; display: block; transition: var(--tr); }

/* ================================================
   HERO SLIDER
   ================================================ */
.hero-slider {
  position: relative;
  width: 100%;
  height: 92vh;
  min-height: 560px;
  overflow: hidden;
  background: var(--charcoal);
}
.hero-slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s ease; }
.hero-slide.active { opacity: 1; }
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.82) 0%, rgba(155,13,34,0.55) 50%, rgba(26,18,8,0.4) 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: .04;
  background-image: repeating-linear-gradient(45deg, #C8102E 0, #C8102E 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.hero-content { position: absolute; inset: 0; display: flex; align-items: center; z-index: 2; }
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,16,46,.18);
  border: 1px solid rgba(200,16,46,.35);
  color: #f4a0a0;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  margin-bottom: 22px;
  text-transform: uppercase;
}
.hero-tag::before { content: "\25CF"; font-size: 8px; color: var(--red-light); animation: pulse 2s infinite; }
.hero-slide h1 {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 20px;
}
.hero-slide h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.hero-stat .num { font-family: var(--font-display); font-size: 26px; font-weight: 700; color: #fff; line-height: 1; }
.hero-stat .lbl { font-size: 11px; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .06em; margin-top: 3px; }
.hero-divider { width: 1px; background: rgba(255,255,255,.15); align-self: stretch; }

/* Registration Card in Hero */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  padding: 32px;
  backdrop-filter: blur(12px);
}
.hero-card h3 { font-family: var(--font-display); font-size: 22px; color: #fff; margin-bottom: 6px; }
.hero-card p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.join-form { display: flex; flex-direction: column; gap: 12px; }
.join-form input,
.join-form select {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  padding: 12px 16px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font-body);
  width: 100%;
  outline: none;
  transition: var(--tr);
}
.join-form input::placeholder { color: rgba(255,255,255,.3); }
.join-form input:focus,
.join-form select:focus { border-color: rgba(200,16,46,.5); background: rgba(255,255,255,.1); }
.join-form select option { background: #1A1208; color: #fff; }
.hero-trust { display: flex; align-items: center; gap: 8px; margin-top: 14px; }
.hero-trust span { font-size: 11px; color: rgba(255,255,255,.4); }

/* Slider Controls */
.slider-controls {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
  align-items: center;
}
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  cursor: pointer;
  transition: var(--tr);
  border: none;
}
.slider-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 10;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr);
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(200,16,46,.5); border-color: var(--red); }
.slider-prev { left: 24px; }
.slider-next { right: 24px; }

/* ================================================
   PARTNERS MARQUEE
   ================================================ */
.partners-strip {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  overflow: hidden;
}
.partners-track {
  display: flex;
  gap: 50px;
  align-items: center;
  animation: marquee 28s linear infinite;
  width: max-content;
}
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.partners-strip:hover .partners-track { animation-play-state: paused; }
.partner-item {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--mid-gray);
  white-space: nowrap;
  letter-spacing: .03em;
  transition: var(--tr);
}
.partner-item:hover { color: var(--red); }
.partner-dot { color: var(--red); opacity: .4; font-size: 6px; }

/* ================================================
   SECTIONS
   ================================================ */
.section { padding: 90px 0; }
.section-dark { background: var(--charcoal); }
.section-cream { background: var(--cream); }
.section-red { background: var(--red); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-label::before { content: ""; width: 24px; height: 2px; background: var(--red); display: inline-block; }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.section-dark .section-title { color: #fff; }
.section-sub { font-size: 16px; color: var(--mid-gray); line-height: 1.65; max-width: 560px; font-weight: 300; }
.section-dark .section-sub { color: rgba(255,255,255,.5); }
.section-header { margin-bottom: 54px; }
.section-header.center { text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-sub { margin: 0 auto; }

/* ================================================
   SERVICES GRID
   ================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: var(--tr);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--tr);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); border-color: rgba(200,16,46,.25); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(200,16,46,.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--tr);
}
.service-card:hover .service-icon { background: rgba(200,16,46,.14); transform: scale(1.08); }
.service-card h3 { font-size: 17px; font-weight: 600; color: var(--charcoal); margin-bottom: 10px; letter-spacing: -.02em; }
.service-card p { font-size: 14px; color: var(--mid-gray); line-height: 1.65; font-weight: 300; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  margin-top: 16px;
  text-decoration: none;
}
.service-link::after { content: "\2192"; transition: var(--tr); display: inline-block; }
.service-link:hover::after { transform: translateX(4px); }

/* ================================================
   STATS BAND
   ================================================ */
.stats-section {
  background: var(--red);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.03) 0, rgba(255,255,255,.03) 1px, transparent 0, transparent 50%);
  background-size: 20px 20px;
}
.stats-inner { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 16px 24px; border-right: 1px solid rgba(255,255,255,.15); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: 48px; font-weight: 900; color: #fff; line-height: 1; }
.stat-lbl { font-size: 13px; color: rgba(255,255,255,.7); text-transform: uppercase; letter-spacing: .08em; margin-top: 6px; font-weight: 500; }

/* ================================================
   MEMBERSHIP TIERS
   ================================================ */
.tiers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tier-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 28px 24px;
  transition: var(--tr);
  position: relative;
}
.tier-card:hover { background: rgba(255,255,255,.07); border-color: rgba(200,16,46,.3); transform: translateY(-3px); }
.tier-card.popular { background: rgba(200,16,46,.12); border-color: rgba(200,16,46,.5); transform: scale(1.02); }
.tier-card.popular:hover { transform: scale(1.02) translateY(-3px); }
.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--charcoal);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  letter-spacing: .06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.tier-name { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.tier-price { font-family: var(--font-display); font-size: 36px; font-weight: 700; color: #fff; line-height: 1; margin-bottom: 4px; }
.tier-price sup { font-size: 16px; vertical-align: super; font-family: var(--font-body); font-weight: 600; }
.tier-period { font-size: 12px; color: rgba(255,255,255,.4); margin-bottom: 22px; }
.tier-divider { height: 1px; background: rgba(255,255,255,.08); margin-bottom: 20px; }
.tier-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.tier-features li { display: flex; align-items: flex-start; gap: 8px; font-size: 13px; color: rgba(255,255,255,.65); line-height: 1.4; }
.tier-features li::before { content: "\2713"; color: var(--gold); font-size: 12px; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.tier-card .btn { width: 100%; justify-content: center; font-size: 13px; padding: 11px; }

/* ================================================
   EVENTS GRID
   ================================================ */
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.event-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--tr);
}
.event-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.event-header {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  padding: 28px 24px;
  position: relative;
  overflow: hidden;
}
.event-header::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
}
.event-category { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.6); margin-bottom: 8px; }
.event-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: #fff; line-height: 1.2; }
.event-body { padding: 20px 24px; }
.event-meta { display: flex; flex-direction: column; gap: 7px; margin-bottom: 18px; }
.event-meta-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--mid-gray); }
.event-price { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--red); margin-bottom: 16px; }
.event-card .btn { width: 100%; justify-content: center; font-size: 13px; padding: 11px; }

/* ================================================
   TESTIMONIALS
   ================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 28px;
  position: relative;
  transition: var(--tr);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 72px;
  line-height: 1;
  color: var(--red);
  opacity: .12;
  font-weight: 900;
}
.testimonial-text { font-size: 15px; line-height: 1.7; color: var(--brown); margin-bottom: 20px; font-style: italic; font-weight: 300; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  font-family: var(--font-display);
}
.author-name { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.author-role { font-size: 12px; color: var(--mid-gray); }
.star-row { color: var(--gold); font-size: 13px; margin-bottom: 14px; letter-spacing: 2px; }

/* ================================================
   CTA BANNER
   ================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--red-deep) 0%, var(--red) 50%, var(--red-light) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, rgba(0,0,0,.04) 0, rgba(0,0,0,.04) 1px, transparent 0, transparent 50%);
  background-size: 18px 18px;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner h2 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 46px); font-weight: 700; color: #fff; margin-bottom: 14px; line-height: 1.1; }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 32px; font-weight: 300; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ================================================
   FOOTER
   ================================================ */
footer { background: #100B05; color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin: 16px 0 18px; color: rgba(255,255,255,.45); font-weight: 300; }
.footer-socials { display: flex; gap: 10px; }
.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  text-decoration: none;
  color: rgba(255,255,255,.5);
  transition: var(--tr);
}
.social-btn:hover { border-color: var(--red); color: var(--red); }
.footer-col h4 { font-size: 13px; font-weight: 600; color: #fff; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 20px; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,.45); text-decoration: none; transition: var(--tr); font-weight: 300; }
.footer-links a:hover { color: rgba(255,255,255,.85); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-contact-item .fci { font-size: 15px; flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span,
.footer-contact-item a { font-size: 13px; color: rgba(255,255,255,.45); line-height: 1.6; font-weight: 300; text-decoration: none; }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom a { color: rgba(255,255,255,.3); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ================================================
   WHATSAPP FAB
   ================================================ */
.whatsapp-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 26px;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--tr);
}
.whatsapp-fab:hover { transform: scale(1.1); }

/* ================================================
   ANIMATIONS
   ================================================ */
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: .3; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
.fu { animation: fadeUp .65s ease forwards; }
.fd1 { animation-delay: .1s; opacity: 0; }
.fd2 { animation-delay: .2s; opacity: 0; }
.fd3 { animation-delay: .3s; opacity: 0; }
.fd4 { animation-delay: .4s; opacity: 0; }

/* ================================================
   FORMS (General / Admin / Dashboard)
   ================================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--charcoal); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 11px 16px;
  border: 1.5px solid #E0D8D2;
  border-radius: 8px;
  font-size: 14px;
  font-family: var(--font-body);
  background: #fff;
  color: var(--charcoal);
  transition: var(--tr);
  outline: none;
}
.form-control:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(200,16,46,.08); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-text { font-size: 12px; color: var(--mid-gray); margin-top: 4px; }
.alert { padding: 14px 18px; border-radius: 8px; font-size: 14px; margin-bottom: 20px; }
.alert-success { background: rgba(34,197,94,.08); border: 1px solid rgba(34,197,94,.25); color: #166534; }
.alert-error { background: rgba(200,16,46,.06); border: 1px solid rgba(200,16,46,.2); color: #8B0000; }
.alert-warning { background: rgba(234,179,8,.08); border: 1px solid rgba(234,179,8,.25); color: #854d0e; }

/* ================================================
   BADGES
   ================================================ */
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 3px 10px; border-radius: 20px; font-size: 11px; font-weight: 600; }
.badge-red { background: rgba(200,16,46,.1); color: var(--red); }
.badge-green { background: rgba(34,197,94,.1); color: #166534; }
.badge-gold { background: rgba(201,168,76,.15); color: #92680a; }
.badge-gray { background: rgba(120,113,108,.1); color: #57534e; }
.badge-blue { background: rgba(59,130,246,.1); color: #1d4ed8; }

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0, rgba(255,255,255,.02) 1px, transparent 0, transparent 50%);
  background-size: 24px 24px;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 { font-family: var(--font-display); font-size: clamp(28px, 4vw, 48px); font-weight: 700; color: #fff; margin-bottom: 10px; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,.7); font-weight: 300; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 12px; }
.breadcrumb a { color: rgba(255,255,255,.6); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb-sep { font-size: 10px; }

/* ================================================
   CARD (generic)
   ================================================ */
.card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-card); padding: 28px; box-shadow: var(--shadow-card); }
.card-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.card-title { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--charcoal); }

/* ================================================
   TABLES
   ================================================ */
.table-wrap { overflow-x: auto; }
table { width: 100%; border-collapse: collapse; }
table th {
  text-align: left;
  padding: 12px 16px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--mid-gray);
  border-bottom: 2px solid var(--light-gray);
}
table td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--charcoal);
  border-bottom: 1px solid var(--light-gray);
  vertical-align: middle;
}
table tr:hover td { background: rgba(200,16,46,.02); }

/* ================================================
   PAGINATION
   ================================================ */
.pagination { display: flex; gap: 6px; align-items: center; justify-content: center; margin-top: 32px; }
.page-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--brown);
  text-decoration: none;
  border: 1px solid var(--light-gray);
  transition: var(--tr);
}
.page-link:hover { border-color: var(--red); color: var(--red); }
.page-link.active { background: var(--red); color: #fff; border-color: var(--red); }
.page-link.disabled { opacity: .4; pointer-events: none; }

/* ================================================
   MARKETPLACE / LISTING CARDS
   ================================================ */
.listing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.listing-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: var(--tr);
}
.listing-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.listing-img {
  height: 180px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.listing-img img { width: 100%; height: 100%; object-fit: cover; }
.listing-body { padding: 20px; }
.listing-cat { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.listing-title { font-size: 16px; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; letter-spacing: -.01em; }
.listing-desc { font-size: 13px; color: var(--mid-gray); line-height: 1.6; margin-bottom: 14px; }
.listing-footer { display: flex; align-items: center; justify-content: space-between; }
.listing-price { font-family: var(--font-display); font-size: 18px; font-weight: 700; color: var(--red); }

/* ================================================
   MEMBER DASHBOARD SIDEBAR
   ================================================ */
.dashboard-layout { display: grid; grid-template-columns: 260px 1fr; gap: 28px; align-items: start; }
.sidebar {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  position: sticky;
  top: 90px;
}
.sidebar-header { background: linear-gradient(135deg, var(--red-deep), var(--red)); padding: 24px 20px; }
.sidebar-header .sidebar-name { font-family: var(--font-display); font-size: 17px; font-weight: 700; color: #fff; }
.sidebar-header .sidebar-role { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 2px; }
.sidebar-nav { padding: 12px 0; }
.sidebar-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13.5px;
  color: var(--brown);
  text-decoration: none;
  transition: var(--tr);
  border-left: 3px solid transparent;
}
.sidebar-item:hover { background: var(--cream); color: var(--red); border-left-color: rgba(200,16,46,.3); }
.sidebar-item.active { background: rgba(200,16,46,.06); color: var(--red); border-left-color: var(--red); font-weight: 600; }
.sidebar-section-label { font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mid-gray); padding: 16px 20px 4px; }
.sidebar-divider { height: 1px; background: var(--light-gray); margin: 8px 0; }

/* ================================================
   STAT WIDGET (Dashboard)
   ================================================ */
.stat-widgets { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-bottom: 28px; }
.stat-widget {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 20px;
  transition: var(--tr);
}
.stat-widget:hover { box-shadow: var(--shadow-card); transform: translateY(-2px); }
.stat-widget-icon { font-size: 24px; margin-bottom: 12px; }
.stat-widget-val { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--charcoal); line-height: 1; margin-bottom: 4px; }
.stat-widget-lbl { font-size: 12px; color: var(--mid-gray); font-weight: 500; }
.stat-widget-change { font-size: 11px; margin-top: 6px; font-weight: 500; }
.change-up { color: #16a34a; }
.change-down { color: var(--red); }

/* ================================================
   ADMIN PANEL LAYOUT
   ================================================ */
.admin-layout { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; }
.admin-sidebar {
  background: var(--charcoal);
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 240px;
  overflow-y: auto;
  z-index: 50;
}
.admin-sidebar-logo {
  padding: 22px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-sidebar-logo span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.8); }
.admin-nav { padding: 12px 0; }
.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: var(--tr);
  border-left: 3px solid transparent;
}
.admin-nav-item:hover { color: rgba(255,255,255,.9); background: rgba(255,255,255,.05); }
.admin-nav-item.active { color: #fff; background: rgba(200,16,46,.18); border-left-color: var(--red); }
.admin-nav-section { font-size: 9px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.25); padding: 16px 18px 4px; }
.admin-main { margin-left: 240px; padding: 28px; min-height: 100vh; background: #F5F1ED; }
.admin-topbar {
  background: #fff;
  border-bottom: 1px solid #E8E0D8;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: -28px -28px 28px;
}
.admin-topbar h1 { font-family: var(--font-display); font-size: 20px; font-weight: 700; color: var(--charcoal); }

/* ================================================
   UTILITY
   ================================================ */
.text-center { text-align: center; }
.text-right { text-align: right; }
.text-red { color: var(--red); }
.text-gold { color: var(--gold); }
.text-muted { color: var(--mid-gray); }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4 { margin-bottom: 4px; }
.mb-8 { margin-bottom: 8px; }
.mb-12 { margin-bottom: 12px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.w-full { width: 100%; }
.hidden { display: none; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ================================================
   GALLERY SECTION
   ================================================ */
.gallery-section { padding: 90px 0; background: var(--warm-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  cursor: pointer;
  background: var(--light-gray);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item.gallery-tall { grid-row: span 2; }
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.4,0,0.2,1);
  display: block;
}
.gallery-item:hover { transform: translateY(-3px); box-shadow: 0 16px 48px rgba(200,16,46,.18); }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-caption {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,.82) 0%, rgba(26,18,8,.2) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}
.gallery-item:hover .gallery-caption { opacity: 1; }
.gallery-zoom-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%) scale(0.6);
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
  pointer-events: none;
}
.gallery-item:hover .gallery-zoom-icon { opacity: 1; transform: translate(-50%,-50%) scale(1); }

/* Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.93);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .25s ease;
}
.gallery-lightbox.active { display: flex; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.lightbox-close {
  position: fixed;
  top: 18px;
  right: 22px;
  color: rgba(255,255,255,.8);
  font-size: 36px;
  cursor: pointer;
  background: none;
  border: none;
  line-height: 1;
  transition: color .2s;
  z-index: 10001;
}
.lightbox-close:hover { color: var(--red); }
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: #fff;
  font-size: 20px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  z-index: 10001;
  backdrop-filter: blur(4px);
}
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(200,16,46,.6); border-color: var(--red); }
.lightbox-caption {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.65);
  font-size: 14px;
  text-align: center;
  max-width: 80vw;
  background: rgba(0,0,0,.4);
  padding: 6px 16px;
  border-radius: 20px;
  backdrop-filter: blur(4px);
}

/* ================================================
   RESPONSIVE — MOBILE FIRST
   ================================================ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card  { display: none; }
  .tiers-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dashboard-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .stat-widgets { grid-template-columns: repeat(2, 1fr); }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { position: static; width: 100%; height: auto; }
  .admin-main { margin-left: 0; }
  .listing-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 190px; }
  .hero-slider { height: 100svh; min-height: 560px; }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
  /* Hero */
  .hero-slider { height: 100svh; min-height: 500px; }
  .hero-content { align-items: flex-end; padding-bottom: 48px; }
  .hero-inner { padding: 0 16px; gap: 0; }
  .hero-slide h1 { font-size: clamp(26px, 7vw, 38px); margin-bottom: 14px; }
  .hero-sub { font-size: 14px; margin-bottom: 24px; max-width: 100%; }
  .hero-btns { gap: 10px; }
  .hero-btns .btn { padding: 11px 18px; font-size: 13px; flex: 1; justify-content: center; min-width: 0; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stat .num { font-size: 20px; }
  .hero-tag { font-size: 10px; padding: 5px 12px; margin-bottom: 14px; }

  /* Nav & Topbar */
  .topbar-inner { flex-direction: column; align-items: flex-start; gap: 4px; padding: 8px 16px; font-size: 11px; }
  .topbar-right { gap: 10px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-inner { height: 60px; padding: 0 16px; }

  /* Sections */
  .section { padding: 56px 0; }
  .container { padding: 0 16px; }
  .section-title { font-size: clamp(22px, 6vw, 32px); }
  .section-sub { font-size: 14px; }
  .section-header { margin-bottom: 36px; }

  /* Stats band */
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-num { font-size: 34px; }

  /* Grids */
  .services-grid,
  .events-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .tiers-grid { grid-template-columns: 1fr; }
  .listing-grid { grid-template-columns: 1fr; }
  .stat-widgets { grid-template-columns: repeat(2, 1fr); }

  /* Gallery */
  .gallery-section { padding: 56px 0; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
    gap: 8px;
  }
  .gallery-item.gallery-tall { grid-row: span 1; }

  /* Slider */
  .slider-arrow { display: none; }
  .hero-slider  { height: 100svh; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  footer { padding: 48px 0 0; }

  /* Admin topbar */
  .admin-topbar { flex-direction: column; align-items: flex-start; gap: 8px; padding: 12px 16px; }
  .admin-content { padding: 16px; }

  /* Lightbox prev/next on small screen */
  .lightbox-prev { left: 6px; width: 38px; height: 38px; }
  .lightbox-next { right: 6px; width: 38px; height: 38px; }
}

/* Small mobile ≤ 480px */
@media (max-width: 480px) {
  .section { padding: 44px 0; }
  .hero-btns { flex-direction: column; gap: 8px; }
  .hero-btns .btn { width: 100%; }
  .cta-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .cta-btns .btn { width: 100%; justify-content: center; }
  .stat-widgets { grid-template-columns: 1fr 1fr; }
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
    gap: 6px;
  }
  .stat-num { font-size: 28px; }
  .topbar { display: none; } /* hide topbar on very small screens for space */
  .partner-item { font-size: 12px; }
}
