:root{
  --base-bg:#F1F5F4;
  --primary-text:#114C5A;
  --accent:#FF9A32;
  --dark:#172F3B;
  --white:#ffffff;
}

/* =========================
   RESET / BASE
========================= */
*{ margin:0; padding:0; box-sizing:border-box; }

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--base-bg);
  color:var(--primary-text);
  line-height:1.5;
}

img{ max-width:100%; display:block; }

.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 1.25rem;
}

/* =========================
   HEADER
========================= */
.site-header{
  background:var(--primary-text);
  padding:0.1rem 1.25rem;
  position:sticky;
  top:0;
  z-index:100;
  border-bottom:1px solid rgba(0,0,0,0.05);
}

.header-inner{
  display:flex;
  justify-content:center;
  align-items:center;
  padding:0.5rem 0;
}

.header-logo{
  height:100px;
  width:auto;
}

/* =========================
   HERO
========================= */
.hero{
  background:var(--base-bg);
  padding:0 0 3rem;
}

/* Full-width poster */
.hero-poster-wrapper{
  width:100vw;
  margin-left:calc(50% - 50vw);
  overflow:hidden;
}

.hero-poster{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

/* Content below poster */
.hero-inner{
  /* .container already controls max-width + side padding */
  padding-top:2.5rem;
}

.hero-content{ max-width:640px; }

.hero-eyebrow{
  font-size:0.8rem;
  text-transform:uppercase;
  letter-spacing:0.14em;
  color:var(--dark);
  margin-bottom:0.5rem;
}

.hero-title{
  font-size:2.4rem;
  line-height:1.2;
  font-weight:700;
  color:var(--dark);
  margin-bottom:0.6rem;
}

.hero-subtitle{
  font-size:1rem;
  margin-bottom:0.9rem;
}

.hero-meta{
  display:flex;
  flex-wrap:wrap;
  gap:0.5rem;
  margin-bottom:1rem;
}

.hero-pill{
  background:var(--dark);
  color:var(--white);
  padding:0.35rem 0.75rem;
  border-radius:999px;
  font-size:0.85rem;
  font-weight:500;
}

.hero-pill--outline{
  background:transparent;
  border:1px solid rgba(0,0,0,0.18);
  color:var(--dark);
}

.hero-cta{
  display:flex;
  flex-wrap:wrap;
  gap:0.75rem;
  margin-bottom:0.9rem;
}

.hero-note{
  font-size:0.85rem;
  color:rgba(17,76,90,0.8);
  margin-bottom:1.3rem;
}

/* =========================
   HERO LAYOUT (OPTION A)
   ✅ Speaker always below text
========================= */
.hero-layout{
  display:flex;
  flex-direction:column;   /* ✅ key change: stack always */
  gap:1.75rem;
  align-items:flex-start;
  margin-top:1.5rem;
}

/* === MAKE SPEAKER CARD MUCH SMALLER === */
.hero-speaker{
  width: 100%;
  max-width: 220px;     /* ≈ one third of 640px */
  margin-top: 0.5rem;
}

.speaker-card{
  padding: 0.9rem;      /* tighter padding */
}




.speaker-tagline{
  font-size:0.95rem;
  margin-bottom:0.75rem;
}

.speaker-bullets{
  list-style:none;
  font-size:0.9rem;
  padding-left:0;
}

.speaker-bullets li::before{
  content:"✓ ";
  color:var(--accent);
}

/* =========================
   SECTIONS
========================= */
section{ padding:2rem 0; }

.section-heading{
  font-size:1.5rem;
  font-weight:700;
  color:var(--dark);
  margin-bottom:1rem;
}

.list{
  list-style:disc;
  margin-left:1.3rem;
  font-size:1rem;
}

/* =========================
   CTA / FORM
========================= */
.cta-section{
  background:var(--dark);
  color:var(--white);
}

.cta-block{
  max-width:820px;
  margin:0 auto;
  padding:2.5rem 1.5rem;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  gap:1.5rem;
}

.cta-heading{
  font-size:1.6rem;
  margin-bottom:0.2rem;
}

.cta-text{
  font-size:0.95rem;
}

.form-card{
  background:rgba(0,0,0,0.15);
  padding:1.25rem;
  border-radius:1rem;
  width:100%;
}

.cta-form-card{
  width:100%;
  max-width:520px;
}

.form-group{ margin-bottom:1rem; }

.form-group label{
  display:block;
  font-size:0.85rem;
  margin-bottom:0.2rem;
}

.form-input{
  width:100%;
  padding:0.6rem;
  border-radius:0.5rem;
  border:1px solid #ccc;
  font-size:0.9rem;
}

.btn-submit{
  background:var(--accent);
  color:var(--dark);
  border:none;
  width:100%;
  padding:0.8rem;
  border-radius:999px;
  font-weight:700;
  cursor:pointer;
}

/* =========================
   FOOTER
========================= */
.site-footer{
  padding:2rem 0;
  background:rgba(241,245,244,0.95);
  border-top:1px solid rgba(0,0,0,0.05);
}

.footer-inner{
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  gap:1rem;
}

.footer-copy{
  font-size:0.9rem;
  color:var(--primary-text);
}

.footer-logo-wrap{ display:block; }

.footer-logo{
  max-width:120px;
  height:auto;
  display:block;
  margin:0 auto;
  opacity:0.95;
}

/* =========================
   FLOATING WHATSAPP
========================= */
.whatsapp-float{
  position:fixed;
  right:20px;
  bottom:20px;
  width:65px;
  height:65px;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  background:transparent;
  padding:0;
  z-index:200;
}

.whatsapp-float img.wa-icon{
  width:100%;
  height:100%;
  object-fit:contain;
  border-radius:50%;
  box-shadow:0 6px 20px rgba(0,0,0,0.25);
}
/* ===== GRAPHIC COUNTDOWN (CANVA STYLE) ===== */
.countdown{
  display:flex;
  gap:1rem;
  flex-wrap:wrap;
}

.time-group{
  display:flex;
  flex-direction:column;
  align-items:center;
}

.time-box{
  background:#ECEEE6;                 /* Canva beige */
  color:#2B2B2B;
  min-width:72px;
  height:86px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:2.4rem;
  font-weight:800;
  box-shadow:
    inset 0 -2px 0 rgba(0,0,0,0.08),
    0 8px 18px rgba(0,0,0,0.12);
  position:relative;
}

/* Fake “split” line */
.time-box::after{
  content:"";
  position:absolute;
  top:50%;
  left:8%;
  right:8%;
  height:1px;
  background:rgba(0,0,0,0.15);
}

.time-label{
  margin-top:0.4rem;
  font-size:0.7rem;
  letter-spacing:0.12em;
  text-transform:uppercase;
  font-weight:700;
  color:rgba(23,47,59,0.65);
}
/* ===== SEAT BADGE (ONLY X SPOTS AVAILABLE) ===== */
.seats-badge{
  width: 100%;
  max-width: 320px;
  margin-top: 0.75rem;
}

.seats-badge-inner{
  background: var(--white);
  border-radius: 999px;
  padding: 1rem 1.1rem;
  border: 8px solid var(--accent);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
  text-align: center;
}

.seats-badge-top{
  font-weight: 900;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  color: var(--dark);
  text-transform: uppercase;
}

.seats-badge-number{
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 950;
  color: var(--dark);
  margin: 0.35rem 0 0.35rem;
}

.seats-badge-bottom{
  font-weight: 900;
  letter-spacing: 0.08em;
  font-size: 0.95rem;
  color: var(--dark);
  text-transform: uppercase;
}

.seats-badge-sub{
  display: inline-block;
  margin-top: 0.35rem;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: rgba(23,47,59,0.75);
}

.seats-mini{
  margin-top: 0.75rem;
  font-weight: 800;
  color: rgba(23,47,59,0.75);
  font-size: 0.9rem;
}
/* ===== PREMIUM HERO STRIP (meta + CTA grouped) ===== */
.hero-info-strip{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:space-between;
  gap: 1rem;
  max-width: 760px;

  background: rgba(255,255,255,0.60);
  border: 1px solid rgba(23,47,59,0.12);
  border-radius: 1.25rem;
  padding: 1rem 1.1rem;
  box-shadow: 0 14px 30px rgba(0,0,0,0.06);
}

/* remove extra spacing so it looks tight */
.hero-info-strip .hero-meta{ margin:0; }
.hero-info-strip .hero-cta{ margin:0; }

/* make pills look more like elegant event tags */
.hero-info-strip .hero-pill{
  font-weight: 800;
  letter-spacing: 0.02em;
  padding: 0.5rem 0.95rem;
}

.hero-info-strip .hero-pill--outline{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(23,47,59,0.18);
  color: var(--dark);
}

/* IMPORTANT: kill underline on the Reserve link */
.hero-info-strip .btn{
  text-decoration: none;
  border-radius: 999px;
  padding: 0.75rem 1.2rem;
  font-weight: 850;
}

/* make primary button look premium */
.hero-info-strip .btn-primary{
  box-shadow: 0 10px 24px rgba(0,0,0,0.14);
}

/* make Learn More look like a subtle secondary button (not plain) */
.hero-info-strip .btn-ghost{
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(23,47,59,0.18);
  color: var(--dark);
}

/* mobile: stack nicely like an invite */
@media (max-width: 650px){
  .hero-info-strip{
    flex-direction: column;
    align-items: flex-start;
  }
}
/* === HARD OVERRIDE: anchor must NEVER look like a link === */
.hero-info-strip a,
.hero-info-strip a:visited,
.hero-info-strip a:hover,
.hero-info-strip a:active {
  text-decoration: none !important;
  color: inherit;
}
/* tighten vertical rhythm inside the strip */
.hero-info-strip{
  margin-top: 1.25rem;
}

/* visually anchor CTA to the strip */
.hero-info-strip .hero-cta{
  display: flex;
  gap: 0.75rem;
}

/* primary CTA = solid, confident */
.hero-info-strip .btn-primary{
  background: var(--dark);
  color: #fff;
  border: none;
  box-shadow: 0 8px 22px rgba(0,0,0,0.18);
}

/* secondary CTA = quiet, respectful */
.hero-info-strip .btn-ghost{
  background: transparent;
  border: 1px solid rgba(23,47,59,0.25);
  color: var(--dark);
}
/* soften the date pill to feel more editorial */
.hero-info-strip .hero-pill--outline{
  font-weight: 600;
  letter-spacing: 0.01em;
}
/* =========================
   CENTER + NEAT ALIGNMENT
   (Hero strip, stats, speaker card)
========================= */

/* center the whole left column content */
.hero-content{
  display: flex;
  flex-direction: column;
  align-items: center;     /* ✅ centers children horizontally */
  text-align: center;      /* ✅ centers headings/text */
}

/* make title/subtitle not overly wide */
.hero-content > *{
  max-width: 760px;
}

/* center your "info strip" */
.hero-info-strip{
  margin-left: auto;
  margin-right: auto;
}

/* center countdown tiles */
.tile{
  width: 100%;
  max-width: 760px;        /* keep neat like a card */
  margin-left: auto;
  margin-right: auto;
}

.countdown{
  justify-content: center; /* ✅ centers the countdown boxes */
}

/* center seat badge + the small text under it */
.seats-badge{
  margin-left: auto;
  margin-right: auto;
}

.seats-mini{
  text-align: center;
}

/* center speaker card section */
.hero-speaker{
  width: 100%;
  max-width: 760px;
  margin: 0 auto;          /* ✅ center the whole block */
}

.speaker-card{
  text-align: center;      /* ✅ center heading & text */
}

/* center the photo and keep it from stretching full width */
.speaker-photo{
  display: flex;
  justify-content: center;
}

.speaker-photo img{
  width: min(360px, 100%); /* ✅ neat controlled width */
  height: auto;
  margin: 0 auto 1rem;
}

/* bullets: keep them readable but centered block */
.speaker-bullets{
  display: inline-block;   /* ✅ keeps list compact */
  text-align: left;        /* ✅ list reads nicely */
  margin: 0 auto;
}
.hero-layout{ align-items:center !important; }
.hero-speaker{ max-width:520px !important; margin:0 auto !important; }
/* ===== TWO SPEAKER PHOTOS (no distortion) ===== */
.speaker-photos{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin: 0 auto 1rem;
  max-width: 520px; /* keeps it neat */
}

.speaker-figure{
  margin: 0;
  text-align: center;
}

.speaker-figure img{
  width: 100%;
  height: 260px;           /* consistent card height */
  object-fit: cover;       /* fills without stretching */
  object-position: top;    /* keeps face higher */
  border-radius: 1rem;
  box-shadow: 0 10px 22px rgba(0,0,0,0.10);
}

.speaker-name{
  margin-top: 0.45rem;
  font-weight: 800;
  color: var(--dark);
  font-size: 0.95rem;
}

/* Mobile: stack vertically */
@media (max-width: 520px){
  .speaker-photos{
    grid-template-columns: 1fr;
  }
  .speaker-figure img{
    height: 280px;
  }
}
.countdown-title-img{
  display:block;
  margin: 0 auto 0.6rem;
  width: min(360px, 90%);
  height: auto;
}
/* Floating "Limited Seats" sticker (top-left, blinking) */
.limited-sticker{
  position: fixed;
  top: 14px;            /* adjust */
  left: 14px;           /* adjust */
  width: 180px;         /* adjust size */
  height: auto;
  z-index: 9999;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 10px 22px rgba(0,0,0,0.18);
  animation: stickerBlink 0.9s infinite ease-in-out;
  transform-origin: center;
}

@keyframes stickerBlink{
  0%, 100% { transform: scale(1);   opacity: 1; }
  50%      { transform: scale(1.05); opacity: 0.45; }
}
