:root{
  --bg: #fffaf0;
  --ink: #141414;
  --muted: rgba(20,20,20,.72);

  --red: #ff4d4d;
  --wa: #25D366;

  --sun: #ffe08a;
  --sky: #dff0ff;
  --mint:#dff9ee;
  --peach:#ffe4da;
  --lav:#efe7ff;

  --taster-deep: #22324a;
  --taster-deep-2:#1a2638;

  --stroke: rgba(20,20,20,.08);
  --shadow: 0 14px 34px rgba(0,0,0,.08);

  /* Photo frame tuning */
  --frame-bg: rgba(255,255,255,0.85);
  --frame-border: rgba(20,20,20,0.10);
  --frame-shadow: 0 14px 26px rgba(0,0,0,0.10);
  --frame-radius: 20px;
  --img-radius: 16px;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
}

/* Prevent horizontal scroll */
html, body{
  width: 100%;
  overflow-x: hidden;
}

img{ max-width:100%; display:block; }
a{ color: inherit; }

.wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

h1,h2,h3{ margin:0 0 10px; line-height:1.12; letter-spacing:-0.01em; }
p{ margin:0 0 12px; color: var(--muted); }
strong{ color: var(--ink); }
.centre{ text-align:center; }
.muted{ color: var(--muted); }

/* =========================
   Sticky WhatsApp (bottom-right)
   ========================= */
.whatsapp-float{
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 9999;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: var(--wa);
  color:#fff;
  text-decoration:none;
  font-weight: 950;
  box-shadow: 0 12px 28px rgba(37,211,102,0.34);
  border: 1px solid rgba(255,255,255,0.25);
}
.wa-bubble{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
}
.wa-svg{ width: 20px; height: 20px; display:block; }
.whatsapp-text{ font-size: 14px; }
@media (max-width:480px){
  .whatsapp-text{ display:none; }
  .whatsapp-float{ padding: 12px; }
}

/* =========================
   TOP BAR
   ========================= */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,250,240,0.96);
  border-bottom: 1px solid var(--stroke);
}
.topbar-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 6px 0;
  min-height: 56px;
}
.brand{
  display:flex;
  align-items:center;
  text-decoration:none;
  line-height: 1;
}
.logo{
  height: 77px;
  width: auto;
  object-fit: contain;
}
.desktop-nav{
  display:flex;
  align-items:center;
  gap: 10px;
}
.desktop-nav a{
  text-decoration:none;
  font-weight: 850;
  opacity: .92;
  padding: 8px 10px;
  border-radius: 12px;
  line-height: 1.1;
}
.desktop-nav a:hover{ background: rgba(0,0,0,.04); }
.header-actions{
  display:flex;
  align-items:center;
  gap: 10px;
}
.nav-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  background: var(--red);
  color:#fff !important;
  text-decoration:none;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(255,77,77,.24);
  border: 1px solid rgba(0,0,0,.04);
}
.menu-toggle{
  display:none;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,0.78);
  border-radius: 14px;
  padding: 10px 12px;
  cursor:pointer;
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  line-height: 0;
}
.hamburger{
  width: 22px;
  height: 2px;
  background: #222;
  display:block;
  position: relative;
  border-radius: 2px;
}
.hamburger::before,
.hamburger::after{
  content:"";
  position:absolute;
  left:0;
  width: 22px;
  height: 2px;
  background:#222;
  border-radius: 2px;
}
.hamburger::before{ top:-7px; }
.hamburger::after{ top:7px; }

/* Mobile dropdown */
.mobile-nav{
  display:none;
  flex-direction: column;
  gap: 8px;
  padding: 10px 16px 14px;
  border-top: 1px solid var(--stroke);
  background: rgba(255,250,240,0.96);
}
.mobile-nav a{
  text-decoration:none;
  font-weight: 900;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
}
.mobile-nav a.nav-cta{
  background: var(--red);
  color:#fff !important;
  border: 1px solid rgba(0,0,0,.04);
}
body.nav-open .mobile-nav{ display:flex; }

/* =========================
   Buttons
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 950;
  border: 1px solid transparent;
  box-shadow: 0 14px 30px rgba(0,0,0,.10);
}
.btn.primary{ background: var(--red); color:#fff; }
.btn.whatsapp{
  background: var(--wa);
  color:#fff;
  box-shadow: 0 14px 30px rgba(37,211,102,.26);
}
.btn-wa{
  width: 26px;
  height: 26px;
  border-radius: 999px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.18);
}
.wa-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-right: 10px;
}
.btn.whatsapp svg{
  width: 22px;
  height: 22px;
  display:block;
}

/* =========================
   Sections
   ========================= */
.section{
  padding: 90px 0;
  position: relative;
}
.section-head{ margin-bottom: 22px; }
.section-head h2{
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 950;
}
.lead{
  max-width: 880px;
  margin: 0 auto;
  font-size: 16px;
  line-height: 1.6;
}

/* =========================
   HERO
   ========================= */
.hero{
  position: relative;
  overflow:hidden;
  padding: 64px 0 48px;
  background: linear-gradient(180deg, #fff3cf 0%, #fffaf0 60%, #fffaf0 100%);
}
.hero::before, .hero::after{
  content:"";
  position:absolute;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  opacity:.62;
  z-index:0;
}
.hero::before{
  left:-210px; top:-240px;
  background:
    radial-gradient(circle at 30% 30%, var(--sky), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--mint), transparent 62%);
}
.hero::after{
  right:-240px; bottom:-260px;
  background:
    radial-gradient(circle at 30% 30%, var(--peach), transparent 60%),
    radial-gradient(circle at 70% 70%, var(--lav), transparent 62%);
}
.hero-content{
  position: relative;
  z-index: 2;
  text-align:center;
}

/* Desktop hero characters */
.hero-scene{
  position:absolute;
  inset:0;
  pointer-events:none;
  z-index: 1;
}
.hero-char{
  position:absolute;
  height:auto;
  opacity:0;
  will-change: transform, opacity;
  width: min(170px, 16vw);
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.18));
}
.char-hulk  { top: 10%; left: 4%; }
.char-super { top: 12%; right: 4%; }
.char-knight{ bottom: 10%; left: 6%; }
.char-nurse { bottom: 10%; right: 6%; }

.char-super{
  transform: translate(160%, -160%) rotate(10deg) scale(0.95);
  animation: superFly 900ms cubic-bezier(.18,.9,.2,1) 120ms forwards;
}
.char-hulk{
  transform: translate(-120%, -160%) scale(0.95);
  animation: hulkDrop 850ms cubic-bezier(.2,.9,.2,1) 160ms forwards;
}
.char-knight{
  transform: translate(-160%, 160%) rotate(-10deg) scale(0.88);
  animation: knightJump 980ms cubic-bezier(.18,.9,.2,1) 200ms forwards;
}
.char-nurse{
  transform: translate(160%, 160%) scale(0.92);
  animation: nurseWalk 1000ms cubic-bezier(.18,.9,.2,1) 240ms forwards;
}

@keyframes superFly{ to{ opacity:1; transform: translate(0,0) rotate(0) scale(1);} }
@keyframes nurseWalk{ 0%{opacity:0;} 70%{opacity:1; transform: translate(0,0) scale(1);} 100%{opacity:1; transform: translate(0,0) scale(1);} }
@keyframes knightJump{ 0%{opacity:0;} 60%{opacity:1; transform: translate(10px,-10px) rotate(0) scale(1.02);} 100%{opacity:1; transform: translate(0,0) rotate(0) scale(1);} }
@keyframes hulkDrop{ 0%{opacity:0;} 70%{opacity:1; transform: translate(0,10px) scale(1.03);} 100%{opacity:1; transform: translate(0,0) scale(1);} }

/* Mobile flyers overlay */
.mobile-flyers{
  position: fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index: 9000;
  display:none;
}
.mobile-flyers .flyer{
  position: absolute;
  width: 210px;
  max-width: 56vw;
  opacity: 0;
  will-change: transform, opacity;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.22));
}
@media (max-width: 980px){
  .mobile-flyers{ display:block; }
}

/* Stamp */
.stamp{
  display:inline-flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.90);
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 44px rgba(0,0,0,0.14);
  transform: rotate(-1.2deg) scale(0.98);
  opacity: 0;
  animation: stampIn 520ms cubic-bezier(.2,.9,.2,1) 520ms forwards;
  max-width: 980px;
  margin: 0 auto;
}
.stamp-text{
  font-weight: 980;
  font-size: clamp(30px, 4.1vw, 54px);
  margin: 0;
  color: var(--ink);
  white-space: nowrap;
}
.stamp-sub{
  margin: 0;
  font-weight: 950;
  font-size: 18px;
  opacity: .9;
  letter-spacing: .01em;
}
.stamp-sub .dot{ opacity: .6; padding: 0 12px; }

@keyframes stampIn{
  0%{ opacity:0; transform: rotate(-8deg) scale(1.08); }
  70%{ opacity:1; transform: rotate(-1deg) scale(0.99); }
  100%{ opacity:1; transform: rotate(-1.2deg) scale(1); }
}

.hero-sell{
  max-width: 920px;
  margin: 18px auto 16px;
  font-size: 19px;
  line-height: 1.55;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 520ms ease-out 700ms forwards;
}
.hero-buttons{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 520ms ease-out 820ms forwards;
}
@keyframes fadeUp{ to{ opacity:1; transform: translateY(0); } }

/* =========================
   Chips
   ========================= */
.chips{
  margin: 18px auto 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  max-width: 1200px;
}
.chip{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  font-weight: 950;
  font-size: 16px;
  white-space: nowrap;
  line-height: 1;
}
@media (max-width: 760px){
  .chips{
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 8px;
    padding: 0 8px;
  }
  .chip{
    font-size: 18px;
    padding: 9px 12px;
  }
}
@media (max-width: 420px){
  .chip{
    font-size: 11px;
    padding: 8px 10px;
  }
}
.chip-sun{ background: rgba(255,224,138,0.85); }
.chip-sky{ background: rgba(223,240,255,0.85); }
.chip-mint{ background: rgba(223,249,238,0.85); }
.chip-peach{ background: rgba(255,228,218,0.85); }
.chip-lav{ background: rgba(239,231,255,0.85); }

/* =========================
   FREE TASTER STRIP
   ========================= */
.taster-strip{
  padding: 20px 16px;
  background: linear-gradient(180deg, rgba(20,20,20,0.06) 0%, rgba(20,20,20,0.03) 100%);
}
.taster-card{
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(20,20,20,0.88);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.16);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
}
.taster-copy{
  min-width: 0;
  max-width: 720px;
}
.taster-eyebrow{
  display: inline-flex;
  align-items: center;
  font-weight: 980;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,224,138,0.96);
  color: #141414;
  margin-bottom: 10px;
}
.taster-title{
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 980;
  line-height: 1.15;
}
.taster-strong{
  display: block;
  margin-top: 6px;
  font-size: 0.95em;
  color: rgba(255,224,138,0.98);
}
.taster-sub{
  margin-top: 10px;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}
.taster-cta{ flex: 0 0 auto; }
.taster-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: #7FB2FF;
  color: #ffffff;
  text-decoration: none;
  font-weight: 980;
  font-size: 17px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  border: none;
  box-shadow: 0 14px 28px rgba(79,156,255,0.35);
  transform-origin: center;
  animation: whatsappPulse 9s infinite;
}
.taster-btn:hover{ transform: translateY(-1px); }
@keyframes whatsappPulse{
  0%   { transform: scale(1); }
  4%   { transform: scale(1.08); }
  8%   { transform: scale(1); }
  12%  { transform: scale(1.08); }
  16%  { transform: scale(1); }
  20%  { transform: scale(1.08); }
  24%  { transform: scale(1); }
  100% { transform: scale(1); }
}
@media (max-width: 760px){
  .taster-card{
    flex-direction: column;
    text-align: center;
    padding: 18px 16px;
  }
  .taster-eyebrow{
    font-size: 14px;
    padding: 10px 16px;
  }
  .taster-title{ font-size: 22px; }
  .taster-strong{
    font-size: 18px;
    margin-top: 8px;
  }
  .taster-sub{ font-size: 15px; }
  .taster-cta{
    width: 100%;
    margin-top: 14px;
  }
  .taster-btn{
    width: min(360px, 100%);
    height: 56px;
    font-size: 18px;
  }
}
@media (prefers-reduced-motion: reduce){
  .taster-btn{ animation: none !important; }
}

/* Affordable options strip */
.access-strip{
  padding: 26px 16px;
  background: rgba(255,250,240,0.88);
}

/* Base text */
.access-text{
  margin: 0 auto;
  max-width: 980px;              /* forces 2 clean lines on desktop */
  text-align: center;
  font-weight: 950;
  font-size: 22px;               /* BIGGER as requested */
  line-height: 1.3;
  color: var(--ink);
  text-wrap: balance;
}

/* Keep "course" on FIRST line on desktop */
.access-break{
  display: inline;
}

/* ===== MOBILE CONTROL ===== */
@media (max-width: 760px){

  .access-text{
    max-width: 560px;            /* nudges to 3 lines on mobile */
    font-size: 18px;
    line-height: 1.35;
  }

  /* Force a break BEFORE “If you’re interested in the course” */
  .access-break{
    display: block;              /* creates line 2 */
  }
}



/* =========================
   Meta pills
   ========================= */
.hero-meta{
  margin-top: 10px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-items: stretch;
}
.meta-pill{
  border-radius: 18px;
  padding: 12px 14px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}
.meta-title{
  font-size: 12px;
  font-weight: 980;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.65;
  margin-bottom: 6px;
}
.meta-value{ font-weight: 980; line-height: 1.25; }
.meta-small{ font-weight: 850; opacity: 0.78; font-size: 13px; }
.price-big{ font-size: 18px; }
.meta-sun{ background: rgba(255,224,138,0.55); }
.meta-sky{ background: rgba(223,240,255,0.55); }
.meta-mint{ background: rgba(223,249,238,0.55); }

/* =========================
   STORY
   ========================= */
.section-story{
  background: linear-gradient(180deg, rgba(223,240,255,0.8) 0%, var(--bg) 78%);
}
.story-flow{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  align-items: start;
}
.notice{
  background: rgba(255,255,255,0.78);
  border-radius: 22px;
  padding: 16px 18px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: var(--shadow);
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.ticks{ margin: 10px 0 0; padding-left: 18px; }
.ticks li{ margin: 8px 0; }

@media (max-width: 720px){
  .notice{
    max-width: none;
    width: 100%;
    justify-self: stretch;
    text-align: center;
    padding: 16px 14px;
  }
  .ticks{
    padding-left: 0;
    list-style-position: inside;
    display: inline-block;
    text-align: left;
    margin: 12px auto 0;
  }
  .ticks li{ margin: 6px 0; }
}

/* =========================
   COURSE
   ========================= */
.section-course{
  background: linear-gradient(180deg, rgba(255,228,218,0.82) 0%, var(--bg) 78%);
}
.feature-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.feature{
  padding: 16px 18px;
  border-radius: 20px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.72);
}
.feature:nth-child(1){ background: rgba(223,240,255,0.78); }
.feature:nth-child(2){ background: rgba(255,228,218,0.78); }
.feature:nth-child(3){ background: rgba(223,249,238,0.78); }
.feature:nth-child(4){ background: rgba(239,231,255,0.78); }

.cta-band{
  margin-top: 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.85);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: var(--shadow);
}
.cta-actions{ display:flex; gap: 10px; flex-wrap: wrap; }

/* =========================
   TEAM (FRAMED PHOTOS + MOBILE FIX)
   ========================= */
.section-team{
  background: linear-gradient(180deg, rgba(239,231,255,0.85) 0%, var(--bg) 78%);
}

.team-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

/* Card frame */
.profile{
  display:flex;
  align-items:flex-start;
  gap: 18px;

  padding: 18px;
  border-radius: 24px;

  background: rgba(255,255,255,0.78);
  border: 1px solid rgba(20,20,20,0.08);
  box-shadow: 0 14px 30px rgba(0,0,0,0.08);
}

/* Photo column */
.profile-photos{
  flex: 0 0 200px;
  margin: 0;

  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 12px;
}

/* Pair stacks on desktop */
.photo-pair{
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 12px;
}

/* Each photo block */
.photo-item{
  width: 100%;
  display:flex;
  flex-direction: column;
  align-items:center;
  gap: 8px;
}

/* ====== FRAME HOLDER ======
   Outer “frame” = card-like holder
   Inner image = clipped + rounded
*/
.photo-frame{
  width: 170px;
  padding: 10px;
  border-radius: var(--frame-radius);
  background: var(--frame-bg);
  border: 1px solid var(--frame-border);
  box-shadow: var(--frame-shadow);
}

.photo-frame img{
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: var(--img-radius);
  border: 1px solid rgba(20,20,20,0.10);
  background: #fff;
}

/* If you ARE NOT using .photo-frame in HTML,
   this keeps images still looking decent */
.profile-photos img,
.photo-item img{
  border-radius: var(--img-radius);
}

/* Labels */
.photo-label{
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(20,20,20,0.6);
  text-align: center;
  width: 100%;
}

.profile-body{
  flex: 1 1 auto;
  min-width: 0;
}

.bullets{
  margin: 10px 0 0;
  padding-left: 18px;
}

/* === MOBILE LAYOUT CHOICE ===
   Choose ONE:
   A) photos side-by-side + text under (default)
   B) keep PC theme (photos left, text right)
*/

/* OPTION A (DEFAULT) */
@media (max-width: 760px){
  .profile{
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 14px;
  }

  .profile-photos{
    width: 100%;
    flex: 0 0 auto;
  }

  .photo-pair{
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 12px;
  }

  .photo-frame{
    width: 140px; /* smaller on mobile */
    padding: 8px;
    border-radius: 18px;
  }

  .photo-frame img{
    border-radius: 14px;
  }

  .profile-body{
    width: 100%;
    max-width: 560px;
    text-align: center;
  }

  .bullets{
    text-align: left;
    display: inline-block;
    margin: 10px auto 0;
  }
}

/* OPTION B (UNCOMMENT THIS BLOCK IF YOU WANT PC THEME ON MOBILE)
@media (max-width: 760px){
  .profile{
    flex-direction: row;
    align-items: flex-start;
    gap: 14px;
  }

  .profile-photos{
    flex: 0 0 150px;
  }

  .photo-frame{
    width: 120px;
    padding: 7px;
  }

  .profile-body{
    text-align: left;
  }
}
*/

/* Trust badges */
.trust-row{
  margin-top: 14px;
  display:flex;
  justify-content:center;
  gap: 12px;
  flex-wrap: wrap;
}
.trust-badge{
  background: rgba(223,249,238,0.85);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.05);
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 950;
  white-space: nowrap;
}

/* =========================
   INSPIRATION
   ========================= */
.section-visitors{
  background: linear-gradient(180deg, rgba(223,249,238,0.82) 0%, var(--bg) 78%);
}
.inspo-wrap{ position: relative; }
.grid3{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.mini{
  border-radius: 20px;
  padding: 14px 16px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 22px rgba(0,0,0,0.06);
  background: rgba(255,255,255,0.72);
}
.mini.mint{ background: rgba(223,249,238,0.78); }
.mini.sky{ background: rgba(223,240,255,0.78); }
.mini.peach{ background: rgba(255,228,218,0.78); }

.inspo-grid{ padding: 0 140px; }
.inspo-char{
  position:absolute;
  top: 120px;
  width: 120px;
  pointer-events:none;
  filter: drop-shadow(0 14px 18px rgba(0,0,0,0.14));
}
.inspo-left{ left: 10px; }
.inspo-right{ right: 10px; }

/* =========================
   VENUE
   ========================= */
.section-venue{
  background: linear-gradient(180deg, rgba(255,224,138,0.80) 0%, var(--bg) 82%);
}
.venue-grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.venue-box{
  border-radius: 20px;
  padding: 16px;
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 12px 24px rgba(0,0,0,0.06);
  background: rgba(255,228,218,0.72);
}
.venue-box.alt{ background: rgba(223,240,255,0.72); }
.text-link{
  display:inline-block;
  margin-top: 8px;
  font-weight: 980;
  text-decoration: none;
  border-bottom: 2px solid rgba(0,0,0,0.16);
}

/* =========================
   FAQ
   ========================= */
.section-faqs{
  background: linear-gradient(180deg, rgba(255,228,218,0.82) 0%, var(--bg) 78%);
}
.faq details{
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(20,20,20,0.06);
  box-shadow: 0 10px 22px rgba(0,0,0,0.06);
  padding: 12px 14px;
  margin-bottom: 10px;
}
.faq summary{ cursor:pointer; font-weight: 980; }

/* =========================
   Footer
   ========================= */
.footer{
  border-top: 1px solid rgba(20,20,20,0.06);
  padding: 26px 0;
  background: rgba(255,250,240,0.88);
}
.footer-inner{
  display:flex;
  justify-content:space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-links{ display:flex; gap: 12px; }

/* =========================
   Responsive (general)
   ========================= */
@media (max-width: 980px){
  .hero-meta{ grid-template-columns: 1fr; margin-top: 12px; }
  .story-flow{ grid-template-columns: 1fr; text-align:center; }
  .feature-grid{ grid-template-columns: 1fr; }
  .team-grid{ grid-template-columns: 1fr; }
  .grid3{ grid-template-columns: 1fr; }
  .venue-grid{ grid-template-columns: 1fr; }
  .cta-band{ flex-direction: column; align-items: flex-start; }

  .hero-scene{ display:none; }
  .inspo-grid{ padding: 0; }
  .inspo-char{ display:none; }

  .stamp-text{ white-space: normal; }
}

/* Mobile header + menu */
@media (max-width: 760px){
  .desktop-nav{ display:none; }
  .menu-toggle{ display:inline-flex; }
  .mobile-flyers{ display:block; }

  .topbar-inner{
    min-height: 52px;
    padding: 6px 0;
  }
  .logo{ height: 69px; }

  .nav-cta{
    padding: 10px 14px;
    border-radius: 14px;
  }

  .hero{ padding-top: 56px; }
  .stamp-sub{ font-size: 16px; }
  .stamp-sub .dot{ padding: 0 8px; }
  .hero-sell{ font-size: 18px; }
}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero-char, .stamp, .hero-sell, .hero-buttons{
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
  .mobile-flyers{ display:none !important; }
}

/* =========================
   Mobile Sticky Book Bubble
   ========================= */
.mobile-book-bubble,
#mobileBookBubble{
  display: none;
}
@media (max-width: 760px){
  .mobile-book-bubble,
  #mobileBookBubble{
    position: fixed;
    left: 50%;
    bottom: 16px;
    width: min(360px, calc(100% - 32px));
    height: 54px;
    border-radius: 999px;
    background: var(--red);
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 980;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(255,77,77,.28);
    border: 1px solid rgba(255,255,255,0.22);
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transform: translateX(-50%) translateY(12px);
    transition: opacity .22s ease, transform .22s ease;
  }
  .mobile-book-bubble.show,
  #mobileBookBubble.show{
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .whatsapp-float{ bottom: 84px; }
}
