:root {
    --blush: #E8CFC0;
    --blush-light: #F5EBE4;
    --blush-deep: #D4A98E;
    --sage: #9BAF8E;
    --sage-dark: #6E8562;
    --sage-muted: #B5C4AB;
    --cream: #FDF8F4;
    --warm-white: #FEFCFA;
    --text-dark: #3A3228;
    --text-soft: #6B5E52;
    --text-light: #8C7E72;
    --gold-accent: #C4A46D;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Jost', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* ─── HERO ─── */
  .hero {
   min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  }

  .hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

  .hero::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--blush) 0%, transparent 70%);
    opacity: 0.3;
    animation: floatSoft 8s ease-in-out infinite;
  }

  .hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--sage-muted) 0%, transparent 70%);
    opacity: 0.25;
    animation: floatSoft 10s ease-in-out infinite reverse;
  }

  @keyframes floatSoft {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(15px, -20px) scale(1.05); }
  }

  .hero-badge {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.75rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: rgba(155, 175, 142, 0.3);
    border: 1px solid rgba(155, 175, 142, 0.3);
    padding: 0.5rem 1.5rem;
    border-radius: 100px;
    margin-bottom: 4rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.3s forwards;
  }

  .hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2.8rem, 8vw, 4rem);
    line-height: 1.05;
    color: var(--warm-white);
    margin-bottom: 0.25em;
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
  }

  .hero-title em {
    font-style: italic;
    font-weight: 300;
    color: var(--sage-dark);
  }

  .hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-style: italic;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    color: var(--warm-white);
    margin-bottom: 0.75rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.7s forwards;
  }

  .hero-date {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 1.1rem;
    letter-spacing: 0.15em;
    color: var(--blush);
    margin-top: 2.5em;
    margin-bottom: 2.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 0.9s forwards;
  }

  .hero-cta {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--warm-white);
    background: var(--sage-dark);
    padding: 1rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease;
    opacity: 0;
    margin-top: 4em;
    animation: fadeUp 1s ease 1.1s forwards;
    position: relative;
    z-index: 2;
  }

  .hero-cta:hover {
    background: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(58, 50, 40, 0.15);
  }

  .hero-scroll-hint {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    animation: fadeUp 1s ease 1.5s forwards;
  }

  .hero-scroll-hint span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-light);
  }

  .scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blush-deep), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }

  @keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
  }

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

  /* ─── INTRO ─── */
  .intro {
    max-width: 680px;
    margin: 0 auto;
    padding: 6rem 2rem;
    text-align: center;
  }

  .intro-text {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    line-height: 1.85;
    color: var(--text-soft);
  }

  .intro-text strong {
    font-weight: 500;
    color: var(--text-dark);
  }

  .intro-divider {
    width: 60px;
    height: 1px;
    background: var(--blush-deep);
    margin: 2.5rem auto;
    opacity: 0.5;
  }

  /* ─── EXPERIENCE SECTION ─── */
  .experience {
    background: var(--warm-white);
    padding: 5rem 2rem;
  }

  .experience-header {
    text-align: center;
    margin-bottom: 4rem;
  }

  .experience-label {
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1rem;
  }

  .experience-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
  }

  .experience-grid {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .exp-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    background: var(--cream);
    border: 1px solid rgba(212, 169, 142, 0.15);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
  }

  .exp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 20px 20px 0 0;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .exp-card:nth-child(1)::before { background: var(--blush-deep); }
  .exp-card:nth-child(2)::before { background: var(--sage); }
  .exp-card:nth-child(3)::before { background: var(--gold-accent); }

  .exp-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(58, 50, 40, 0.06);
  }

  .exp-card:hover::before { opacity: 1; }

  .exp-icon {
    font-size: 2rem;
    margin-bottom: 1.25rem;
    display: block;
  }

  .exp-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
  }

  .exp-card p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-soft);
  }

  /* ─── DETAILS STRIP ─── */
  .details-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 100%;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
  gap: 1rem;

  position: relative;
  overflow: hidden;
}

/* Background image */
.details-bg {
  position: absolute;
  inset: 0;
  background: url("https://res.cloudinary.com/dsr2loo2c/image/upload/v1774837263/Untitled_design_4_g0zcqm.png") center/cover no-repeat;
  z-index: 0;
}

/* Dark overlay */
.details-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.70);
  z-index: 1;
}


  .detail-item {
    padding: 1.5rem 0.5rem;
    position: relative;
    z-index: 2;
  }

  .detail-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 0.5rem;
  }

  .detail-value {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 1.25rem;
    color: var(--warm-white);
    line-height: 1.4;
  }

  /* ─── PRICING ─── */
  .pricing {
    background: linear-gradient(170deg, var(--blush-light) 0%, var(--cream) 100%);
    padding: 5rem 2rem;
    text-align: center;
  }

  .pricing-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1rem;
  }

  .pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-dark);
    margin-bottom: 3rem;
  }

  .pricing-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto 2.5rem;
  }

  .price-card {
    flex: 1;
    min-width: 250px;
    max-width: 320px;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    transition: transform 0.3s ease;
  }

  .price-card:hover { transform: translateY(-3px); }

  .price-card.early-bird {
    background: var(--sage-dark);
    color: var(--warm-white);
  }

  .price-card.regular {
    background: var(--warm-white);
    border: 1px solid rgba(212, 169, 142, 0.3);
    color: var(--text-dark);
  }

  .price-card-badge {
    font-family: 'Jost', sans-serif;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 0.3rem 1rem;
    border-radius: 100px;
  }

  .early-bird .price-card-badge {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.9);
  }

  .regular .price-card-badge {
    background: rgba(155, 175, 142, 0.12);
    color: var(--sage-dark);
  }

  .price-amount {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: 3.5rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .price-amount sup {
    font-size: 1.5rem;
    vertical-align: super;
    margin-right: 2px;
  }

  .price-note {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.8rem;
    opacity: 0.75;
  }

  .early-bird .price-note { color: rgba(255,255,255,0.7); }

  .pricing-includes {
    max-width: 480px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem;
    background: var(--warm-white);
    border-radius: 16px;
    border: 1px solid rgba(212, 169, 142, 0.15);
  }

  .pricing-includes h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--text-dark);
  }

  .includes-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .includes-list li {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: var(--text-soft);
    padding-left: 1.5rem;
    position: relative;
  }

  .includes-list li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--blush-deep);
    font-size: 0.75rem;
  }

  /* ─── ABOUT / HOST ─── */
  .host {
    max-width: 680px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
  }

  .host-label {
    font-family: 'Jost', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--sage-dark);
    margin-bottom: 1rem;
  }

  .host-name {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
  }

  .host-bio {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-soft);
  }

  .host-handle {
    display: inline-block;
    margin-top: 1.5rem;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    color: var(--sage-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--sage-muted);
    padding-bottom: 2px;
    transition: all 0.3s ease;
  }

  .host-handle:hover {
    color: var(--text-dark);
    border-color: var(--text-dark);
  }

  /* ─── CTA FOOTER ─── */
  .cta-footer {
    background: var(--text-dark);
    padding: 5rem 2rem;
    text-align: center;
  }

  .cta-footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--blush-light);
    margin-bottom: 1rem;
    line-height: 1.2;
  }

  .cta-footer-subtitle {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.9rem;
    color: rgba(245, 235, 228, 0.6);
    margin-bottom: 2.5rem;
  }

  .cta-footer-btn {
    display: inline-block;
    font-family: 'Jost', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-dark);
    background: var(--blush);
    padding: 1rem 3rem;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.4s ease;
  }

  .cta-footer-btn:hover {
    background: var(--warm-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  }

  /* ─── FOOTER ─── */
  footer {
    background: var(--text-dark);
    border-top: 1px solid rgba(245, 235, 228, 0.08);
    padding: 2rem;
    text-align: center;
  }

  footer p {
    font-family: 'Jost', sans-serif;
    font-weight: 300;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    color: rgba(245, 235, 228, 0.3);
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 768px) {
    .experience-grid {
      grid-template-columns: 1fr;
      max-width: 400px;
    }

    .details-strip {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.5rem;
    }

    .pricing-cards {
      flex-direction: column;
      align-items: center;
    }

    .price-card { min-width: 280px; }
  }

  @media (max-width: 480px) {
    .hero { padding: 2rem 1.5rem; }
    .details-strip { grid-template-columns: 1fr; }
  }