/* ───────────────────────────────────────────
   Run for HERitage — style.css
   Clean, editorial, human-designed feel
─────────────────────────────────────────── */

:root {
  --purple: #4B1D6B;
  --purple-mid: #6b2d96;
  --gold: #C9A227;
  --gold-lt: #ddb535;
  --ivory: #F5F0E6;
  --ivory-dark: #ece5d3;
  --crimson: #8B1E3F;
  --black: #1C1C1C;
  --text: #2a2a2a;
  --text-mid: #555;
  --text-light: #888;
  --border: #e0d8c8;
  --white: #ffffff;
  --green: #2e7a52;
  --nav-h: 68px;
  --radius: 3px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
  color: var(--black);
}
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 900; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 700; }
em { font-style: italic; color: var(--gold); }
p { font-size: 0.95rem; color: var(--text-mid); line-height: 1.85; }

.eyebrow {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

/* ─── BUTTONS ─── */
.btn-gold {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  cursor: pointer;
}
.btn-gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,162,39,0.3);
}
.btn-gold.full-width { width: 100%; text-align: center; display: block; }

.btn-ghost {
  display: inline-block;
  padding: 0.85rem 2rem;
  background: transparent;
  color: var(--ivory);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid rgba(245,240,230,0.4);
  border-radius: var(--radius);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-underline {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-underline:hover { color: var(--gold); }

/* ─── NAVBAR ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(35, 10, 55, 0.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,162,39,0.25);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: rgba(35, 10, 55, 0.99);
}
.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  gap: 2rem;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.logo em { color: var(--gold); font-style: italic; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.2rem;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 0.4rem 0.9rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.65);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--ivory); }
.nav-links a.active { border-bottom: 2px solid var(--gold); }
.nav-btn {
  padding: 0.5rem 1.3rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: var(--radius);
  white-space: nowrap;
  transition: background 0.2s;
}
.nav-btn:hover { background: var(--gold-lt); }

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ivory);
  transition: all 0.3s;
}
/* ===== HERO UI (match 2nd image) ===== */
.hero{
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  text-align:center !important;
  min-height:100vh;
}

.hero-content{
  max-width:980px !important;
  margin:0 auto !important;
  padding:0 2rem !important;
}

.hero-tag{
  display:inline-flex !important;
  align-items:center !important;
  gap:.9rem !important;
  background:transparent !important;
  border:none !important;
  padding:0 !important;
  margin:0 0 1.2rem !important;
  color:var(--gold) !important;
  font-weight:700 !important;
  letter-spacing:.22em !important;
  text-transform:uppercase !important;
  font-size:.72rem !important;
}
/* ===== PREMIUM JOURNEY SECTION ===== */

.journey-pro{
  background: var(--purple);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
}

.journey-container{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-head{
  margin-bottom: 4rem;
}

.journey-tag{
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
}

.journey-tag::after{
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-left: 14px;
  vertical-align: middle;
}

.journey-head h2{
  font-size: clamp(2.8rem,5vw,4rem);
  color: var(--ivory);
  margin: 0;
}

.journey-grid{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

.journey-line{
  position: absolute;
  top: 230px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(201,162,39,0.4);
}

.journey-item{
  flex: 1;
  position: relative;
  z-index: 2;
}

.circle{
  width: 85px;
  height: 85px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 auto 1.8rem;
}

.journey-item h3{
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.journey-item p{
  color: rgba(245,240,230,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
/* ===== PREMIUM JOURNEY SECTION ===== */

.journey-pro{
  background: var(--purple);
  padding: 7rem 2rem;
  text-align: center;
  position: relative;
}

.journey-container{
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.journey-head{
  margin-bottom: 4rem;
}

.journey-tag{
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-block;
  margin-bottom: 1rem;
  position: relative;
}

.journey-tag::after{
  content: "";
  display: inline-block;
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin-left: 14px;
  vertical-align: middle;
}

.journey-head h2{
  font-size: clamp(2.8rem,5vw,4rem);
  color: var(--ivory);
  margin: 0;
}

.journey-grid{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  gap: 2rem;
}

.journey-line{
  position: absolute;
  top: 230px;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(201,162,39,0.4);
}

.journey-item{
  flex: 1;
  position: relative;
  z-index: 2;
}

.circle{
  width: 85px;
  height: 85px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--black);
  margin: 0 auto 1.8rem;
}

.journey-item h3{
  color: var(--ivory);
  margin-bottom: 0.6rem;
}

.journey-item p{
  color: rgba(245,240,230,0.6);
  font-size: 0.9rem;
  line-height: 1.6;
  max-width: 220px;
  margin: 0 auto;
}
/* HOW */
  .how-section{ background: var(--purple); }
  .how-section .section-title{ color: var(--ivory); }
  .how-inner{ max-width:1200px; margin:0 auto; }
  .steps{
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:2rem; margin-top:3.5rem;
    position:relative;
  }
  .steps::before{
    content:""; position:absolute; top:28px; left:10%; right:10%;
    height:1px; background: linear-gradient(90deg, transparent, rgba(201,162,39,0.38), transparent);
  }
  .step{ text-align:center; padding:0 1rem; }
  .step-num{
    width:56px; height:56px; border-radius:50%;
    background: var(--gold); color: var(--black);
    font-family:'Playfair Display', serif;
    font-size:1.35rem; font-weight:900;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 1.2rem;
    position:relative; z-index:2;
  }
  .step-title{
    font-family:'Playfair Display', serif;
    font-size:1.08rem; font-weight:800;
    color: var(--ivory);
    margin-bottom:.55rem;
  }
  /* Upcoming header + right pills */
.upcoming-topbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}

.upcoming-title-wrap{
  min-width: 280px;
}

.city-tabs{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

/* responsive: pills go below on small screens */
@media (max-width: 900px){
  .upcoming-topbar{
    flex-direction:column;
    align-items:flex-start;
  }
  .city-tabs{
    justify-content:flex-start;
  }
}
  .step-desc{
    font-size:.86rem;
    color: rgba(245,240,230,0.58);
    line-height:1.75;
  }

/* Responsive */
@media(max-width: 900px){
  .journey-grid{
    flex-direction: column;
    gap: 3rem;
  }

  .journey-line{
    display: none;
  }
}
/* Responsive */
@media(max-width: 900px){
  .journey-grid{
    flex-direction: column;
    gap: 3rem;
  }

  .journey-line{
    display: none;
  }
}

.hero-tag::before,
.hero-tag::after{
  content:"";
  width:100px;
  height:1px;
  background:rgba(201,162,39,0.55);
}
/* ===== PRO LEVEL UPCOMING SECTION ===== */

.upcoming-section{
  background: var(--ivory);
  padding: 3rem 2rem 2rem;
  border-top: 1px solid var(--border);
}

.upcoming-inner{
  max-width: 1200px;
  margin: 0 auto;
}
.upcoming-head h2{
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}
.upcoming-section{
  padding: 2.2rem 2rem 2rem;
}
.upcoming-head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}
.upcoming-head{
  position: relative;
  padding-bottom: 1rem;
}

.upcoming-head::after{
  content:"";
  width:60px;
  height:3px;
  background: var(--gold);
  position:absolute;
  bottom:0;
  left:0;
}
.race-strip{
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  border-radius: 6px;
  overflow: hidden;
}
.upcoming-head h2{
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--black);
  margin: 0;
}

.race-strip{
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.hero h1{
  margin:0 0 1rem !important;
  line-height:1.05 !important;
  font-size:clamp(3.2rem, 7vw, 6.2rem) !important;
}

.hero-sub{
  max-width:720px !important;
  margin:0 auto 2rem !important;
  line-height:1.85 !important;
}

.hero-actions{
  justify-content:center !important;
  gap:1.2rem !important;
}

.hero-scroll{ display:none !important; }
.hero-aside{ display:none !important; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── HERO (homepage) ─── */
.hero {
  min-height: 100vh;
  background: var(--purple);
  display: flex;
  align-items: center;
  padding: var(--nav-h) 2.5rem 0;
  position: relative;
  overflow: hidden;
}
.hero-texture {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 100% 50%, rgba(139,30,63,0.35) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 0% 80%, rgba(28,28,28,0.4) 0%, transparent 50%),
    radial-gradient(ellipse 50% 60% at 50% 0%, rgba(107,45,150,0.4) 0%, transparent 55%),
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 60px,
      rgba(255,255,255,0.018) 60px,
      rgba(255,255,255,0.018) 61px
    ),
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent 80px,
      rgba(255,255,255,0.012) 80px,
      rgba(255,255,255,0.012) 81px
    );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 5rem 0 3rem;
}
.hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
  padding: 0.35rem 0.9rem;
  border: 1px solid rgba(201,162,39,0.35);
  border-radius: 2px;
}
.hero h1 {
  color: var(--ivory);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.gold-text {
  color: var(--gold);
  font-style: italic;
}
.hero-sub {
  font-size: 1.05rem;
  color: rgba(245,240,230,0.6);
  max-width: 520px;
  margin-bottom: 2.5rem;
  line-height: 1.9;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-scroll {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.3);
}
.scroll-line {
  width: 60px;
  height: 1px;
  background: rgba(201,162,39,0.4);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleX(1); }
  50% { opacity: 1; transform: scaleX(1.3); }
}
.hero-aside {
  position: absolute;
  right: 5%;
  bottom: 10%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,162,39,0.15);
  border-left: 3px solid var(--gold);
  padding: 0.9rem 1.4rem;
  min-width: 160px;
}
.stat-card strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-card span {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.45);
}

/* Hero animations */
.hero-tag { animation: fadeUp 0.6s ease both; }
.hero h1 { animation: fadeUp 0.6s ease 0.1s both; }
.hero-sub { animation: fadeUp 0.6s ease 0.2s both; }
.hero-actions { animation: fadeUp 0.6s ease 0.3s both; }
.hero-scroll { animation: fadeUp 0.6s ease 0.4s both; }
.stat-card:nth-child(1) { animation: fadeLeft 0.5s ease 0.4s both; }
.stat-card:nth-child(2) { animation: fadeLeft 0.5s ease 0.5s both; }
.stat-card:nth-child(3) { animation: fadeLeft 0.5s ease 0.6s both; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── EVENTS STRIP ─── */
.events-strip {
  background: var(--ivory);
  border-top: 3px solid var(--gold);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.strip-label {
  padding: 0.7rem 2.5rem;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold); 
  background: var(--ivory-dark);
  border-bottom: 1px solid var(--border);
}
.strip-track {
  display: flex;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.strip-track::-webkit-scrollbar { display: none; }
.strip-item {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 1.1rem 2rem;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s;
}
.strip-item:hover { background: var(--ivory-dark); }
.si-date {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--purple);
  min-width: 50px;
}
.si-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--black);
}
.si-cat {
  font-size: 0.75rem;
  color: var(--text-light);
}
.si-link {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.si-link:hover { color: var(--crimson); }
.divider { width: 1px; background: var(--border); align-self: stretch; flex-shrink: 0; }

/* ─── MISSION ─── */
.mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  padding: 7rem 5rem;
  max-width: 1280px;
  margin: 0 auto;
  align-items: center;
}
.mission-text h2 { margin: 0.5rem 0 1.5rem; }
.mission-text p { margin-bottom: 1rem; }
.mission-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
}
.mv-block {
  padding: 2rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.mv-purple {
  grid-column: span 2;
  background: var(--purple);
  padding: 2.5rem;
}
.mv-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
}
.mv-gold {
  background: var(--gold);
}
.mv-gold strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  display: block;
  color: var(--black);
}
.mv-gold span { font-size: 0.75rem; font-weight: 600; color: rgba(28,28,28,0.65); }
.mv-crimson {
  background: var(--crimson);
}
.mv-crimson strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  display: block;
  color: var(--ivory);
}
.mv-crimson span { font-size: 0.75rem; font-weight: 600; color: rgba(245,240,230,0.6); }

/* ─── CATEGORIES TEASE ─── */
.categories-tease {
  background: var(--ivory);
  padding: 6rem 5rem;
  border-top: 1px solid var(--border);
}
.ct-header {
  max-width: 560px;
  margin-bottom: 3rem;
}
.ct-header h2 { margin: 0.5rem 0 1rem; }
.ct-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}
.ct-card {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.2rem;
  background: var(--c);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.ct-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}
.ct-km {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.ct-name {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--ivory);
  margin-bottom: 0.3rem;
}
.ct-desc {
  font-size: 0.68rem;
  color: rgba(245,240,230,0.5);
}

/* ─── TESTIMONIALS ─── */
.testimonials {
  padding: 6rem 5rem;
  background: var(--purple);
  text-align: center;
}
.testimonials h2 { color: var(--ivory); margin: 0.5rem 0 3rem; }
.testi-slider { max-width: 700px; margin: 0 auto; min-height: 140px; position: relative; }
.testi-slide {
  display: none;
  animation: fadeUp 0.4s ease both;
}
.testi-slide.active { display: block; }
.testi-slide blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--ivory);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.testi-slide blockquote::before { content: '"'; color: var(--gold); }
.testi-slide blockquote::after { content: '"'; color: var(--gold); }
.testi-slide cite {
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  color: rgba(245,240,230,0.4);
  font-style: normal;
}
.testi-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
/* ===== HERO SLOGAN PREMIUM STYLE ===== */
/* ===== HERO SLOGAN HIGHLIGHT ===== */

/* ===== HERO SEASON LABEL REFINED ===== */

.hero-tag{
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.hero-tag::before,
.hero-tag::after{
  content: "";
  width: 45px;
  height: 1px;
  background: rgba(201,162,39,0.6);
}
.hero-slogan{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.1rem,2vw,1.4rem);
  font-weight: 700;
  color: var(--gold);
  margin: 1.2rem auto 1.5rem;
  display: inline-block;
  padding: 0.5rem 1.2rem;
  background: rgba(201,162,39,0.08);
  border-radius: 4px;
  letter-spacing: 0.04em;
  text-shadow: 0 2px 10px rgba(201,162,39,0.25);
}
.hero-slogan{
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem,2vw,1.3rem);
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin: 1rem 0 1.2rem;
  position: relative;
  display: inline-block;
}


.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  border: none;
  transition: background 0.2s, transform 0.2s;
  cursor: pointer;
}
.dot.active { background: var(--gold); transform: scale(1.3); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero.small {
  background: var(--purple);
  padding: calc(var(--nav-h) + 3rem) 5rem 3.5rem;
  border-bottom: 3px solid var(--gold);
}
.page-hero.small.purple-hero { background: #3a1254; }
.ph-content { max-width: 700px; }
.ph-content h1 { color: var(--ivory); margin: 0.4rem 0 0.8rem; }
.ph-content p { color: rgba(245,240,230,0.55); font-size: 1rem; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 0.9rem 5rem;
  font-size: 0.75rem;
  color: var(--text-light);
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
}
.breadcrumb a { color: var(--purple); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 0.5rem; }

/* ─── FILTER BAR ─── */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 1rem 3rem;
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}
.filter-inner { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; max-width: 1280px; margin: 0 auto; }
.filter-label { font-size: 0.75rem; font-weight: 600; color: var(--text-light); white-space: nowrap; }
.filter-pills { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.pill {
  padding: 0.35rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: transparent;
  color: var(--text-mid);
  transition: all 0.2s;
}
.pill:hover { border-color: var(--purple); color: var(--purple); }
.pill.active { background: var(--purple); border-color: var(--purple); color: var(--white); }

/* ─── EVENTS PAGE ─── */
.events-page { padding: 3rem 3rem 6rem; }
.events-container { max-width: 1280px; margin: 0 auto; }
.city-section { margin-bottom: 4rem; }
.city-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.city-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}
.city-header h2 { font-size: 1.5rem; color: var(--black); }
.city-header span { font-size: 0.8rem; color: var(--text-light); margin-left: auto; }
.ev-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.ev-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow 0.2s, transform 0.2s;
  background: var(--white);
}
.ev-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transform: translateY(-3px);
}
.ev-card-top {
  padding: 2rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.ev-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  background: rgba(255,255,255,0.15);
  border-radius: 2px;
  color: var(--ivory);
}
.ev-km {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 900;
  color: rgba(255,255,255,0.2);
  line-height: 1;
}
.ev-card-body { padding: 1.5rem; }
.ev-card-body h3 { font-size: 1.1rem; margin-bottom: 0.8rem; }
.ev-meta { margin-bottom: 1.2rem; }
.ev-meta span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
}
.ev-price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 1.2rem;
}
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  display: block;
}
.price-note { font-size: 0.68rem; color: var(--text-light); }
.spot-bar {
  width: 80px;
  height: 4px;
  background: var(--border);
  border-radius: 2px;
  margin-bottom: 4px;
}
.spot-fill {
  height: 100%;
  background: var(--crimson);
  border-radius: 2px;
}
.ev-spots { font-size: 0.68rem; color: var(--crimson); text-align: right; }
.btn-ev {
  display: block;
  width: 100%;
  padding: 0.75rem;
  background: var(--black);
  color: var(--ivory);
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: var(--radius);
  transition: background 0.2s;
}
.btn-ev:hover { background: var(--purple); }
/* HOW */
  .how-section{ background: var(--purple); }
  .how-section .section-title{ color: var(--ivory); }
  .how-inner{ max-width:1200px; margin:0 auto; }
  .steps{
    display:grid; grid-template-columns:repeat(4,1fr);
    gap:2rem; margin-top:3.5rem;
    position:relative;
  }
  .steps::before{
    content:""; position:absolute; top:28px; left:10%; right:10%;
    height:1px; background: linear-gradient(90deg, transparent, rgba(201,162,39,0.38), transparent);
  }
  .step{ text-align:center; padding:0 1rem; }
  .step-num{
    width:56px; height:56px; border-radius:50%;
    background: var(--gold); color: var(--black);
    font-family:'Playfair Display', serif;
    font-size:1.35rem; font-weight:900;
    display:flex; align-items:center; justify-content:center;
    margin:0 auto 1.2rem;
    position:relative; z-index:2;
  }
  .step-title{
    font-family:'Playfair Display', serif;
    font-size:1.08rem; font-weight:800;
    color: var(--ivory);
    margin-bottom:.55rem;
  }
  .step-desc{
    font-size:.86rem;
    color: rgba(245,240,230,0.58);
    line-height:1.75;
  }

/* ─── EVENT DETAIL ─── */
.event-detail-page { padding: 3rem 3rem 6rem; }
.ed-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem;
  align-items: start;
}
.ed-badge-row { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.edb {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  background: var(--purple);
  color: var(--ivory);
  border-radius: 2px;
}
.edb-dist {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
}
.ed-info h1 { margin-bottom: 2rem; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.ed-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding: 1.5rem;
  background: var(--ivory);
  border-radius: var(--radius);
}
.ed-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
}
.emi-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ed-meta-item div strong {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 2px;
}
.ed-meta-item div span { font-size: 0.85rem; color: var(--black); font-weight: 500; }
.ed-about, .ed-route, .ed-includes { margin-bottom: 2.5rem; }
.ed-about h3, .ed-route h3, .ed-includes h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.route-steps { display: flex; flex-direction: column; gap: 0; }
.rs {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.88rem;
}
.rs-km {
  font-weight: 700;
  color: var(--gold);
  width: 36px;
  flex-shrink: 0;
  font-size: 0.8rem;
}
.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
}
.inc {
  font-size: 0.82rem;
  color: var(--text-mid);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Register panel */
.erp-sticky {
  position: sticky;
  top: calc(var(--nav-h) + 1rem);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  background: var(--white);
}
.erp-price { margin-bottom: 1.2rem; }
.erp-amount {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1;
}
.erp-note { font-size: 0.72rem; color: var(--text-light); }
.erp-spots { margin-bottom: 1.2rem; }
.erp-spots .spot-bar { width: 100%; margin-bottom: 6px; }
.erp-spots span { font-size: 0.72rem; color: var(--crimson); }
.full-width { width: 100%; text-align: center; display: block; }
.erp-trust {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.erp-trust span {
  font-size: 0.72rem;
  color: var(--text-light);
}
.erp-share { margin-top: 1.2rem; padding-top: 1.2rem; border-top: 1px solid var(--border); }
.erp-share span { font-size: 0.72rem; color: var(--text-light); display: block; margin-bottom: 0.5rem; }
.share-btns { display: flex; gap: 0.5rem; }
.share-btns button {
  flex: 1;
  padding: 0.45rem;
  font-size: 0.7rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: transparent;
  color: var(--text-mid);
  transition: all 0.2s;
}
.share-btns button:hover { border-color: var(--gold); color: var(--gold); }

/* FAQ */
.ed-faq { background: var(--ivory); padding: 4rem 3rem; }
.faq-inner { max-width: 800px; margin: 0 auto; }
.faq-inner h2 { margin-bottom: 2rem; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  padding: 1.1rem 0;
  text-align: left;
  background: none;
  border: none;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-q::after { content: '+'; font-size: 1.2rem; color: var(--gold); transition: transform 0.2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.8;
  transition: max-height 0.3s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1.2rem; }

/* ─── REGISTRATION STEPS ─── */
.reg-steps {
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  padding: 1.2rem 3rem;
}
.reg-steps-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0;
}
.rs-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.35;
  transition: opacity 0.3s;
  flex: 1;
  text-align: center;
}
.rs-step.active, .rs-step.done { opacity: 1; }
.rs-circle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-size: 0.78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.rs-step.active .rs-circle { background: var(--purple); color: var(--white); }
.rs-step.done .rs-circle { background: var(--green); color: var(--white); }
.rs-step span { font-size: 0.7rem; font-weight: 600; color: var(--text-mid); }
.rs-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin: 0;
  margin-bottom: 18px;
}

/* ─── REGISTER FORM ─── */
.register-section { padding: 3rem 3rem 6rem; }
.reg-layout {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}
.reg-step-panel { display: none; }
.reg-step-panel.active { display: block; }
.reg-step-panel h2 { margin-bottom: 0.4rem; }
.reg-subtitle { font-size: 0.85rem; color: var(--text-light); margin-bottom: 2rem; }

/* form elements */
.form-group { margin-bottom: 1.4rem; }
.form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem;
  color: var(--black);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--purple);
  box-shadow: 0 0 0 3px rgba(75,29,107,0.08);
}
.form-group input.input-err,
.form-group select.input-err { border-color: var(--crimson); }
.form-hint {
  display: block;
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 0.3rem;
}
.err-msg {
  display: block;
  font-size: 0.7rem;
  color: var(--crimson);
  margin-top: 0.3rem;
  min-height: 1em;
}

/* phone input */
.phone-input { display: flex; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; }
.phone-input:focus-within { border-color: var(--purple); box-shadow: 0 0 0 3px rgba(75,29,107,0.08); }
.phone-prefix {
  padding: 0.8rem;
  background: var(--ivory);
  font-size: 0.82rem;
  color: var(--text-mid);
  white-space: nowrap;
  border-right: 1px solid var(--border);
  flex-shrink: 0;
}
.phone-input input {
  border: none;
  border-radius: 0;
  flex: 1;
  box-shadow: none !important;
}

/* size options */
.size-options { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.size-opt { cursor: pointer; }
.size-opt input { display: none; }
.size-opt span {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: all 0.2s;
  color: var(--text-mid);
}
.size-opt input:checked + span {
  border-color: var(--purple);
  background: var(--purple);
  color: var(--white);
}
.size-opt:hover span { border-color: var(--purple); color: var(--purple); }

/* checkbox */
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--purple);
}
.checkbox-label span { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }
.checkbox-label a { color: var(--purple); }

/* step nav */
.step-nav {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 2rem;
}

/* Review card */
.review-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.review-card h3 {
  padding: 1rem 1.5rem;
  background: var(--ivory);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  border-bottom: 1px solid var(--border);
}
.review-rows { padding: 0 1.5rem; }
.rr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.rr:last-child { border-bottom: none; }
.rr-label { font-size: 0.75rem; color: var(--text-light); min-width: 130px; }
.rr-val { font-size: 0.85rem; color: var(--black); font-weight: 500; text-align: right; }

/* Coupon */
.coupon-box {
  border: 1.5px dashed var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  background: #fffdf7;
}
.coupon-box h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.coupon-hint { font-size: 0.78rem; color: var(--text-light); margin-bottom: 1rem; }
.coupon-input-row { display: flex; gap: 0.5rem; }
.coupon-input-row input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  outline: none;
}
.coupon-input-row input:focus { border-color: var(--gold); }
.btn-apply {
  padding: 0.75rem 1.2rem;
  background: var(--gold);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-apply:hover { background: var(--gold-lt); }
.coupon-feedback { margin-top: 0.6rem; min-height: 1.2em; }
.coupon-ok { font-size: 0.8rem; color: var(--green); font-weight: 600; }
.coupon-err { font-size: 0.8rem; color: var(--crimson); }
.coupon-hints { margin-top: 0.5rem; }
.coupon-hints small { color: var(--text-light); }
.coupon-hints code {
  background: var(--ivory);
  padding: 0.1rem 0.4rem;
  border-radius: 2px;
  font-size: 0.75rem;
  color: var(--purple);
  font-weight: 700;
}

/* Price breakdown */
.price-breakdown {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
}
.pb-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 1.5rem;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--border);
}
.pb-row:last-child { border-bottom: none; }
.pb-row.total {
  background: var(--ivory);
  font-weight: 700;
  font-size: 1rem;
}
.pb-row.total span:last-child { color: var(--purple); font-family: 'Playfair Display', serif; font-size: 1.2rem; }

/* Payment methods */
.payment-methods { margin-bottom: 2rem; }
.payment-methods h3 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.8rem; }
.pm-logos { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 0.8rem; }
.pm-badge {
  padding: 0.3rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 600;
  border: 1px solid var(--border);
  border-radius: 2px;
  color: var(--text-mid);
}
.pm-secure { font-size: 0.75rem; color: var(--text-light); }
.post-pay-note { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.post-pay-note p { font-size: 0.78rem; color: var(--text-light); margin-bottom: 0.4rem; }

/* pay button */
.pay-btn { min-width: 200px; font-size: 0.85rem; }

/* Sidebar */
.reg-sidebar { position: sticky; top: calc(var(--nav-h) + 1rem); }
.sidebar-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1rem;
}
.sidebar-card h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); margin-bottom: 1rem; }
.sc-event-name { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; margin-bottom: 0.4rem; }
.sc-detail { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.2rem; }
.sc-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.sc-price-row { display: flex; justify-content: space-between; font-size: 0.85rem; margin-bottom: 0.4rem; }
.sc-total { font-weight: 700; font-size: 1rem; color: var(--purple); }
.sidebar-trust {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  margin-bottom: 1rem;
}
.trust-item { font-size: 0.78rem; color: var(--text-mid); padding: 0.35rem 0; border-bottom: 1px solid var(--border); }
.trust-item:last-child { border-bottom: none; }
.sidebar-help { font-size: 0.78rem; color: var(--text-light); }
.sidebar-help a { color: var(--purple); }

/* ─── CONFIRMATION ─── */
.confirm-page { background: var(--ivory); }
.confirm-section { padding: calc(var(--nav-h) + 3rem) 2rem 6rem; }
.confirm-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.confirm-check { margin-bottom: 1.5rem; }
.check-circle svg { width: 64px; height: 64px; margin: 0 auto; }
.check-circle path { stroke-dasharray: 36; stroke-dashoffset: 36; animation: drawCheck 0.5s ease 0.3s forwards; }
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.confirm-section h1 { margin-bottom: 0.5rem; }
.confirm-tagline { font-size: 1rem; color: var(--text-mid); margin-bottom: 3rem; }

.confirm-card {
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 2rem;
  text-align: left;
}
.cc-header {
  padding: 1rem 1.5rem;
  background: var(--gold);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cc-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--black); }
.cc-id { font-size: 0.78rem; font-weight: 700; color: var(--black); }
.cc-body { padding: 0 1.5rem; background: var(--white); }
.cc-row {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.85rem;
  gap: 1rem;
}
.cc-row:last-child { border-bottom: none; }
.cc-row span { color: var(--text-light); }
.cc-row strong { font-weight: 600; text-align: right; }
.cc-row.total strong { color: var(--purple); font-size: 1rem; }

/* notifications */
.notif-sent { margin-bottom: 2.5rem; display: flex; flex-direction: column; gap: 0.8rem; text-align: left; }
.notif-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1.5px solid var(--border);
  background: var(--white);
}
.email-notif { border-color: rgba(75,29,107,0.2); }
.wa-notif { border-color: rgba(46,122,82,0.2); }
.notif-icon { font-size: 1.5rem; flex-shrink: 0; }
.notif-text { flex: 1; }
.notif-text strong { display: block; font-size: 0.85rem; margin-bottom: 0.2rem; }
.notif-text span { font-size: 0.78rem; color: var(--text-light); }
.notif-status {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
}

/* next steps */
.next-steps { text-align: left; margin-bottom: 2.5rem; }
.next-steps h2 { margin-bottom: 1.5rem; font-size: 1.4rem; }
.ns-grid { display: flex; flex-direction: column; gap: 0; }
.ns-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
}
.ns-num {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.ns-item div strong { display: block; font-size: 0.9rem; margin-bottom: 0.3rem; }
.ns-item div p { font-size: 0.82rem; }

/* share */
.confirm-share { margin-bottom: 1.5rem; }
.confirm-share h3 { margin-bottom: 0.3rem; font-size: 1.1rem; }
.confirm-share p { margin-bottom: 1rem; font-size: 0.85rem; }
.share-actions { display: flex; gap: 0.8rem; justify-content: center; }
.share-wa {
  padding: 0.75rem 1.5rem;
  background: #25D366;
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: opacity 0.2s;
}
.share-wa:hover { opacity: 0.9; }
.share-copy {
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.2s;
}
.share-copy:hover { border-color: var(--gold); }

/* confetti */
.confetti-piece {
  position: fixed;
  top: -10px;
  border-radius: 2px;
  animation: confettiFall linear both;
  z-index: 9999;
  pointer-events: none;
}
@keyframes confettiFall {
  from { transform: translateY(0) rotate(0deg); opacity: 1; }
  to { transform: translateY(110vh) rotate(720deg); opacity: 0; }
}

/* ─── ABOUT PAGE ─── */
.about-page { padding: 5rem 5rem; }
.ap-inner { max-width: 1100px; margin: 0 auto; }
.ap-story { max-width: 700px; margin-bottom: 5rem; }
.ap-story h2 { margin: 0.5rem 0 1.5rem; }
.ap-story p { margin-bottom: 1rem; }
.ap-values { margin-bottom: 5rem; }
.ap-values h2 { margin: 0.5rem 0 2rem; }
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  padding: 1.8rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  transition: box-shadow 0.2s;
}
.value-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.06); }
.vc-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.value-card p { font-size: 0.82rem; }
.ap-team { margin-bottom: 5rem; }
.ap-team h2 { margin: 0.5rem 0 2rem; }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card { text-align: center; }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ivory);
}
.team-card h3 { font-size: 1rem; margin-bottom: 0.2rem; }
.team-card span { font-size: 0.72rem; color: var(--gold); font-weight: 600; letter-spacing: 0.05em; display: block; margin-bottom: 0.6rem; }
.team-card p { font-size: 0.82rem; }
.ap-impact h2 { margin: 0.5rem 0 2rem; }
.impact-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.impact-stat {
  padding: 1.5rem;
  background: var(--ivory);
  border-left: 3px solid var(--gold);
}
.impact-stat strong {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 0.3rem;
}
.impact-stat span { font-size: 0.78rem; color: var(--text-mid); }

/* ─── CONTACT ─── */
.contact-page { padding: 4rem 5rem; }
.contact-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}
.contact-info h2 { margin-bottom: 2rem; }
.ci-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}
.ci-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.ci-item div { display: flex; flex-direction: column; }
.ci-item strong { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-light); margin-bottom: 0.3rem; }
.ci-item a { font-size: 0.9rem; color: var(--purple); text-decoration: none; font-weight: 500; }
.ci-item a:hover { text-decoration: underline; }
.ci-item span { font-size: 0.88rem; color: var(--text-mid); }
.social-links { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.social-links a {
  padding: 0.3rem 0.8rem;
  font-size: 0.72rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-mid);
  text-decoration: none;
  transition: all 0.2s;
}
.social-links a:hover { border-color: var(--gold); color: var(--gold); }
.contact-form-wrap h2 { margin-bottom: 2rem; }
.contact-success {
  margin-top: 1rem;
  padding: 0.8rem 1.2rem;
  background: #e8f5ee;
  border: 1px solid #2e7a52;
  border-radius: var(--radius);
  font-size: 0.85rem;
  color: var(--green);
  font-weight: 600;
}

/* ─── GALLERY ─── */
.gallery-page { padding: 2rem 3rem 5rem; max-width: 1280px; margin: 0 auto; }
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 2rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item { border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gi-img {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: transform 0.3s;
}
.gallery-item:hover .gi-img { transform: scale(1.02); }
.gi-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 0.6rem 0.8rem;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ivory);
  letter-spacing: 0.06em;
}

/* ─── FOOTER ─── */
footer {
  background: #1a0530;
  border-top: 3px solid rgba(201,162,39,0.25);
}
.footer-top {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
}
.f-brand .logo { display: block; margin-bottom: 0.8rem; }
.f-brand p { font-size: 0.82rem; color: rgba(245,240,230,0.4); line-height: 1.7; margin-bottom: 1.2rem; }
.f-brand .social-links a { border-color: rgba(255,255,255,0.1); color: rgba(245,240,230,0.5); }
.f-brand .social-links a:hover { border-color: var(--gold); color: var(--gold); }
.f-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,240,230,0.4);
  margin-bottom: 1rem;
}
.f-col ul { list-style: none; }
.f-col ul li { margin-bottom: 0.5rem; }
.f-col ul li a {
  font-size: 0.84rem;
  color: rgba(245,240,230,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.f-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: rgba(245,240,230,0.25);
}
.footer-bottom a { color: rgba(245,240,230,0.35); text-decoration: none; }
.footer-bottom a:hover { color: var(--gold); }

/* ─── CTA BAND ─── */
.cta-band {
  background: linear-gradient(135deg, var(--crimson) 0%, var(--purple) 100%);
  padding: 5rem;
  text-align: center;
}
.cta-band h2 { color: var(--ivory); margin-bottom: 1.5rem; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .ct-grid { grid-template-columns: repeat(3, 1fr); }
  .mission { grid-template-columns: 1fr; gap: 3rem; padding: 5rem 2.5rem; }
  .ed-layout, .reg-layout { grid-template-columns: 1fr; }
  .reg-sidebar { position: static; }
  .erp-sticky { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    padding: 1rem;
    gap: 0;
    display: none;
    border-bottom: 2px solid rgba(201,162,39,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links li { border-bottom: 1px solid rgba(255,255,255,0.05); }
  .nav-links a { padding: 0.9rem 1rem; }
  .hamburger { display: flex; }
  .nav-btn { display: none; }
  .nav-inner { padding: 0 1.2rem; }
  .hero { padding: var(--nav-h) 1.5rem 0; }
  .hero-aside {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    margin-top: 2.5rem;
    padding-bottom: 2rem;
  }
  .stat-card { min-width: 130px; }
  .events-strip .strip-item { padding: 1rem 1.2rem; align-items:center; }
  .mission, .categories-tease, .testimonials { padding: 4rem 1.5rem; }
  .ct-grid { grid-template-columns: repeat(2, 1fr); }
  .about-page, .contact-page { padding: 3rem 1.5rem; }
  .values-grid, .team-grid { grid-template-columns: 1fr; }
  .impact-stats { grid-template-columns: 1fr 1fr; }
  .events-page, .event-detail-page, .register-section { padding: 2rem 1.5rem 4rem; }
  .filter-bar { padding: 0.8rem 1.5rem; }
  .breadcrumb { padding: 0.8rem 1.5rem; }
  .ed-meta-grid { grid-template-columns: 1fr; }
  .includes-grid { grid-template-columns: 1fr; }
  .form-row.two-col { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item[style*="grid-column"] { grid-column: auto; }
  .gallery-item[style*="grid-row"] { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; padding: 3rem 1.5rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.2rem 1.5rem; }
  .cta-band { padding: 3rem 1.5rem; }
  .page-hero.small { padding: calc(var(--nav-h) + 2rem) 1.5rem 2rem; }
  .reg-steps { padding: 1rem 1.5rem; }
  .confirm-section { padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem; }
}
/* Upcoming header: title left, pills right */
.upcoming-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:24px;
}

.up-tabs{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* pills like your 1st image */
.up-pill{
  padding:8px 18px;
  border-radius:999px;
  border:1px solid rgba(90,60,120,0.25);
  background:#fff;
  color:rgba(28,28,28,0.85);
  font-family:Montserrat, sans-serif;
  font-size:14px;
  cursor:pointer;
  transition:all .2s ease;
}

.up-pill.active{
  background:var(--purple);
  border-color:var(--purple);
  color:#fff;
}

.up-pill:hover{
  background:rgba(75,29,107,0.08);
}

/* mobile: pills go below */
@media (max-width:900px){
  .upcoming-head{
    flex-direction:column;
    align-items:flex-start;
  }
  .up-tabs{justify-content:flex-start;}
}
/* 3 Dot Menu */
.gi-img {
  position: relative;
}

.gi-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 10;
}

.gi-dots {
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 6px 10px;
  border-radius: 50%;
  cursor: pointer;
}

.gi-dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 38px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  overflow: hidden;
  min-width: 140px;
}

.gi-dropdown button {
  width: 100%;
  padding: 10px;
  border: none;
  background: #fff;
  cursor: pointer;
  text-align: left;
}

.gi-dropdown button:hover {
  background: #f3f3f3;
}

.gi-menu.active .gi-dropdown {
  display: block;
}