/* ============================================
   ICE CAKES NOT PEOPLE — Styles
   Colors from the merch artwork:
   Navy, Royal Blue, Mint, Lavender, Cherry Red
   ============================================ */

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

:root {
  /* Primary palette — from the cake artwork */
  --navy: #2B3A67;
  --royal-blue: #4158A6;
  --mint: #6DD5A8;
  --mint-light: #B8EDDA;
  --lavender: #C9A3CF;
  --lavender-light: #E8D5EB;
  --cherry: #D63B3B;
  --dark-navy: #1E2D5E;

  /* Backgrounds & surfaces */
  --bg-white: #FAFCFF;
  --bg-soft: #F2F5FB;
  --bg-mint-tint: #F0FBF6;
  --bg-lavender-tint: #F8F2F9;

  /* Text */
  --text-dark: #1E2D5E;
  --text-medium: #4A5580;
  --text-light: #7A86A8;
}

html {
  scroll-behavior: smooth;
}

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

/* ============================================
   PATTERN BACKGROUND (SVG)
   ============================================ */
.pattern-bg {
  position: relative;
  background-color: var(--bg-soft);
  background-image: url("data:image/svg+xml,%3Csvg width='140' height='140' viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='12' fill='%236DD5A8' opacity='0.12'/%3E%3Ccircle cx='100' cy='25' r='8' fill='%23C9A3CF' opacity='0.1'/%3E%3Ccircle cx='65' cy='85' r='10' fill='%234158A6' opacity='0.07'/%3E%3Ccircle cx='15' cy='110' r='7' fill='%236DD5A8' opacity='0.1'/%3E%3Ccircle cx='120' cy='105' r='9' fill='%23C9A3CF' opacity='0.08'/%3E%3C/svg%3E");
}

/* ============================================
   NAVIGATION
   ============================================ */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(250, 252, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--navy);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.4rem;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.nav-brand span {
  color: var(--lavender);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--royal-blue);
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* ============================================
   MARQUEE BANNER
   ============================================ */
.marquee-banner {
  margin-top: 58px;
  background: var(--navy);
  color: white;
  padding: 0.6rem 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: inline-flex;
  animation: marquee 25s linear infinite;
}

.marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0 2rem;
}

.marquee-star {
  color: var(--mint);
}

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background: linear-gradient(160deg, var(--bg-mint-tint) 0%, var(--bg-white) 35%, var(--bg-lavender-tint) 70%, var(--bg-soft) 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(109, 213, 168, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 163, 207, 0.2) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: 0.95;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 .highlight {
  color: var(--royal-blue);
  font-style: italic;
}

.hero h1 .strike-ice {
  position: relative;
  color: var(--mint);
}

.hero h1 .strike-ice::after {
  content: '';
  position: absolute;
  left: -5%;
  right: -5%;
  top: 50%;
  height: 8px;
  background: var(--cherry);
  transform: rotate(-3deg);
  border-radius: 4px;
}

.hero-subtitle {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(1.3rem, 3vw, 2.2rem);
  color: var(--lavender);
  margin: 1rem 0 0.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}

.hero-description {
  max-width: 600px;
  font-size: 1.1rem;
  color: var(--text-medium);
  margin: 1rem auto 2rem;
  position: relative;
  z-index: 1;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--royal-blue);
  color: white;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  border: none;
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 58, 103, 0.35);
}

/* Floating decorative elements */
.float-element {
  position: absolute;
  font-size: 3rem;
  opacity: 0.5;
  animation: floaty 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}

.float-element:nth-child(1) { top: 15%; left: 8%; animation-delay: 0s; }
.float-element:nth-child(2) { top: 25%; right: 10%; animation-delay: 1.5s; font-size: 2.5rem; }
.float-element:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 3s; font-size: 2rem; }
.float-element:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 4.5s; }
.float-element:nth-child(5) { top: 50%; left: 3%; animation-delay: 2s; font-size: 2rem; }

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   SECTION STYLES
   ============================================ */
section {
  padding: 5rem 2rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.section-header .star-divider {
  color: var(--mint);
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  margin: 0.5rem 0;
}

.section-header p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-medium);
  font-size: 1.1rem;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about {
  background: white;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.about-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.about-text p {
  color: var(--text-medium);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-text .emphasis {
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: var(--royal-blue);
  margin-top: 1.5rem;
}

.about-visual {
  background: linear-gradient(135deg, var(--bg-mint-tint), var(--lavender-light));
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 2px solid var(--mint-light);
}

.about-visual .big-quote {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--dark-navy);
  line-height: 1.1;
}

.about-visual .big-quote span {
  color: var(--royal-blue);
  font-style: italic;
}

.about-visual .credit {
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   MERCH SECTION
   ============================================ */
.merch-section {
  background: var(--bg-lavender-tint);
}

.merch-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: center;
}

.merch-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(30, 45, 94, 0.1);
  transition: transform 0.3s ease;
  background: white;
}

.merch-image-wrapper:hover {
  transform: translateY(-4px);
}

.merch-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

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

.merch-info h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--dark-navy);
  margin-bottom: 1rem;
}

.merch-info p {
  color: var(--text-medium);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.merch-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.merch-tag {
  display: inline-block;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.merch-tag.mint {
  background: var(--mint-light);
  color: var(--dark-navy);
}

.merch-tag.lavender {
  background: var(--lavender-light);
  color: var(--dark-navy);
}

.merch-tag.navy {
  background: var(--navy);
  color: white;
}

.merch-cta {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.merch-cta:hover {
  background: var(--royal-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(65, 88, 166, 0.3);
}

/* ============================================
   MAP SECTION
   ============================================ */
.map-section {
  background: var(--bg-soft);
}

#map {
  width: 100%;
  max-width: 1100px;
  height: 550px;
  margin: 0 auto;
  border-radius: 20px;
  border: 4px solid var(--navy);
  box-shadow: 0 10px 40px rgba(43, 58, 103, 0.12);
  z-index: 1;
  position: relative;
}

/* Custom Leaflet Popup */
.leaflet-popup-content-wrapper {
  border-radius: 16px !important;
  font-family: 'DM Sans', sans-serif !important;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15) !important;
  border: 2px solid var(--navy) !important;
}

.leaflet-popup-content {
  margin: 16px 20px !important;
  font-size: 14px !important;
}

.popup-title {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.popup-address {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.popup-details {
  font-size: 0.85rem;
  color: var(--text-dark);
  font-weight: 600;
}

/* ============================================
   LOCATIONS GRID
   ============================================ */
.locations {
  background: white;
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.location-card {
  background: var(--bg-soft);
  border-radius: 16px;
  padding: 2rem;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.location-card::before {
  content: '✽';
  position: absolute;
  top: -10px;
  right: -5px;
  font-size: 4rem;
  opacity: 0.06;
  color: var(--royal-blue);
}

.location-card:hover {
  border-color: var(--mint);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(109, 213, 168, 0.15);
}

.location-card .city-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.location-card .state {
  font-weight: 600;
  color: var(--lavender);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

.location-card .card-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-medium);
}

.location-card .card-detail .icon {
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.location-card .hq-badge {
  display: inline-block;
  background: var(--cherry);
  color: white;
  padding: 0.2rem 0.8rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

/* ============================================
   HOW TO HELP
   ============================================ */
.help-section {
  background: linear-gradient(135deg, var(--bg-mint-tint) 0%, var(--bg-lavender-tint) 100%);
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.help-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: white;
  border-radius: 20px;
  transition: transform 0.3s;
  border: 2px solid transparent;
}

.help-card:hover {
  transform: translateY(-4px);
  border-color: var(--mint-light);
}

.help-card .help-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.help-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.help-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--navy);
  color: white;
  text-align: center;
  padding: 4rem 2rem;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
}

.cta-banner p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  opacity: 0.9;
}

.cta-banner .btn-white {
  display: inline-block;
  background: white;
  color: var(--navy);
  padding: 1rem 2.5rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
}

.cta-banner .btn-white:hover {
  background: var(--mint);
  color: var(--dark-navy);
  transform: translateY(-2px);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark-navy);
  color: rgba(255,255,255,0.8);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--mint);
}

.footer-brand span {
  color: var(--lavender);
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--mint);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(250, 252, 255, 0.98);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 2px solid var(--navy);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-mobile-toggle {
    display: block;
  }

  .hero {
    min-height: 80vh;
    padding: 3rem 1.5rem;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 10vw, 4rem);
  }

  .float-element {
    font-size: 2rem !important;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .merch-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  #map {
    height: 400px;
    border-radius: 12px;
  }

  .locations-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================
   HERO BUTTONS
   ============================================ */
.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.hero-cta-secondary {
  background: transparent;
  border: 2px solid var(--royal-blue);
  color: var(--royal-blue);
}

.hero-cta-secondary:hover {
  background: var(--royal-blue);
  color: white;
}

/* ============================================
   ABOUT STATS
   ============================================ */
.about-stats {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(109, 213, 168, 0.3);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--royal-blue);
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-medium);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.about-text a {
  color: var(--royal-blue);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-underline-offset: 3px;
}

.about-text a:hover {
  color: var(--navy);
}

/* ============================================
   DATE BANNER
   ============================================ */
.date-banner {
  background: var(--navy);
  color: white;
  padding: 3rem 2rem;
}

.date-banner-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}

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

.date-day {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mint);
}

.date-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.5rem;
  line-height: 1.1;
}

.date-year {
  font-size: 0.9rem;
  opacity: 0.7;
}

.date-divider {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--lavender);
}

.date-note {
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 280px;
  text-align: center;
}

/* ============================================
   HOST / TOOLKIT SECTION
   ============================================ */
.host-section {
  background: white;
  padding-bottom: 4rem;
}

.toolkit-steps {
  max-width: 850px;
  margin: 0 auto;
}

.toolkit-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(43, 58, 103, 0.08);
}

.toolkit-step:last-child {
  border-bottom: none;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--navy);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.3rem;
  margin-top: 0.2rem;
}

.toolkit-step-highlight .step-number {
  background: var(--cherry);
  font-size: 1.1rem;
}

.step-content h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.step-content p {
  color: var(--text-medium);
  font-size: 1rem;
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.step-content a {
  color: var(--royal-blue);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-underline-offset: 3px;
  font-weight: 600;
}

.step-content a:hover {
  color: var(--navy);
}

.step-content ul {
  margin: 0.5rem 0 1rem 1.2rem;
  color: var(--text-medium);
}

.step-content ul li {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Equipment grid */
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.6rem;
  margin: 1rem 0;
}

.equip-item {
  background: var(--bg-soft);
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
}

/* Pricing grid */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 1rem 0;
}

.price-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--bg-soft);
  padding: 0.7rem 1.2rem;
  border-radius: 12px;
  border: 2px solid var(--bg-soft);
  transition: border-color 0.3s;
}

.price-item:hover {
  border-color: var(--mint-light);
}

.price-emoji {
  font-size: 1.3rem;
}

.price-name {
  font-size: 0.9rem;
  color: var(--text-medium);
  font-weight: 500;
}

.price-amount {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-left: auto;
}

/* Give back emphasis */
.give-back-emphasis {
  background: var(--bg-mint-tint);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  border-left: 4px solid var(--mint);
  color: var(--dark-navy) !important;
  font-size: 1rem !important;
}

/* Toolkit contact box */
.toolkit-contact {
  max-width: 850px;
  margin: 2rem auto 0;
  text-align: center;
  background: var(--bg-lavender-tint);
  padding: 2.5rem;
  border-radius: 20px;
  border: 2px solid var(--lavender-light);
}

.toolkit-contact h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--dark-navy);
  margin-bottom: 0.5rem;
}

.toolkit-contact p {
  color: var(--text-medium);
  font-size: 1.05rem;
}

.toolkit-contact a {
  color: var(--royal-blue);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-underline-offset: 3px;
}

.toolkit-contact a:hover {
  color: var(--navy);
}

/* ============================================
   HOST SIGN-UP SECTION
   ============================================ */
.signup-section {
  background: var(--navy);
  padding: 5rem 2rem;
}

.signup-inner {
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

.signup-text .star-divider {
  color: var(--mint);
  font-size: 1.5rem;
  letter-spacing: 0.5rem;
  margin-bottom: 0.5rem;
}

.signup-text h2 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3rem);
  color: white;
  margin-bottom: 1rem;
}

.signup-text p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.signup-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.signup-btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s;
  background: var(--mint);
  color: var(--dark-navy);
}

.signup-btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 213, 168, 0.3);
}

.signup-btn-alt {
  background: transparent;
  border: 2px solid var(--lavender);
  color: white;
}

.signup-btn-alt:hover {
  background: var(--lavender);
  color: var(--dark-navy);
  border-color: var(--lavender);
}

.signup-or {
  color: rgba(255, 255, 255, 0.5);
  font-style: italic;
  font-size: 0.9rem;
}

.toolkit-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: var(--mint-light);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: underline;
  text-decoration-color: rgba(109, 213, 168, 0.4);
  text-underline-offset: 4px;
  transition: all 0.3s;
}

.toolkit-link:hover {
  color: white;
  text-decoration-color: white;
}

/* ============================================
   HOST PAGE HERO
   ============================================ */
.host-hero {
  margin-top: 58px;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(160deg, var(--bg-mint-tint) 0%, var(--bg-white) 35%, var(--bg-lavender-tint) 70%, var(--bg-soft) 100%);
  text-align: center;
}

.host-hero-inner {
  max-width: 750px;
  margin: 0 auto;
}

.host-hero h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
}

.host-hero h1 .highlight {
  color: var(--royal-blue);
  font-style: italic;
}

.host-hero p {
  font-size: 1.15rem;
  color: var(--text-medium);
  max-width: 600px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.host-hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   CTA BUTTONS
   ============================================ */
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent !important;
  border: 2px solid white;
  color: white !important;
}

.btn-outline:hover {
  background: white !important;
  color: var(--navy) !important;
}

/* ============================================
   SECTION LINKS
   ============================================ */
.section-header a {
  color: var(--royal-blue);
  text-decoration: underline;
  text-decoration-color: var(--mint);
  text-underline-offset: 3px;
  font-weight: 600;
}

.section-header a:hover {
  color: var(--navy);
}

/* ============================================
   RESPONSIVE — ADDITIONAL
   ============================================ */
@media (max-width: 768px) {
  .toolkit-step {
    flex-direction: column;
    gap: 0.8rem;
    padding: 1.5rem 0;
  }

  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }

  .equipment-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pricing-grid {
    flex-direction: column;
  }

  .date-banner-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .date-divider {
    font-size: 1.5rem;
  }

  .about-stats {
    gap: 1.5rem;
  }

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

  .countdown-num {
    font-size: 1.6rem;
  }

  .countdown-unit {
    min-width: 45px;
  }

  .countdown-sep {
    font-size: 1.3rem;
  }
}

/* ============================================
   MAP MARKER ANIMATIONS
   ============================================ */
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(214, 59, 59, 0.4); }
  50% { box-shadow: 0 0 0 12px rgba(214, 59, 59, 0); }
}

.custom-marker div {
  transition: transform 0.2s;
}

.custom-marker:hover div {
  transform: scale(1.15);
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  margin: 1rem 0 0.5rem;
  position: relative;
  z-index: 1;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
}

.countdown-num {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 2.2rem;
  color: var(--dark-navy);
  line-height: 1;
}

.countdown-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-medium);
  margin-top: 0.2rem;
}

.countdown-sep {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.8rem;
  color: var(--mint);
  margin-bottom: 1rem;
}

.countdown-live {
  font-family: 'Playfair Display', serif;
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--cherry);
  animation: pulse-text 2s ease-in-out infinite;
}

@keyframes pulse-text {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ============================================
   TOOLKIT PDF DOWNLOAD
   ============================================ */
.toolkit-download {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: var(--bg-soft);
  color: var(--navy);
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s;
  border: 2px solid var(--navy);
}

.toolkit-download:hover {
  background: var(--navy);
  color: white;
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
