/* ============================================================
   LIL MISS BUMBA - demo site design system
   Palette + type verified from her live site (7 July 2026):
   plum #531A4A, lavender #D1C8F4 / #AE9DEF, blush #FCF0F0,
   Shrikhand display + Bitter body, pill buttons.
   One added warm accent (peach #F2955F) echoing her peach motif.
   ============================================================ */

:root {
  --plum: #531A4A;
  --plum-deep: #3D1236;
  --plum-soft: #6E2B62;
  --lav: #D1C8F4;
  --lav-mid: #AE9DEF;
  --lav-pale: #F2EEFC;
  --blush: #FCF0F0;
  --peach: #F2955F;
  --peach-deep: #E07E44;
  --white: #FFFFFF;
  --ink: #3A1834;
  --font-display: "Shrikhand", "Bitter", serif;
  --font-body: "Bitter", Georgia, serif;
  --radius-card: 22px;
  --radius-pill: 999px;
  --shadow-card: 0 10px 30px rgba(83, 26, 74, 0.12);
  --shadow-lift: 0 18px 44px rgba(83, 26, 74, 0.2);
  --wrap: 1120px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--plum); }
a:hover { color: var(--plum-soft); }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--peach); color: var(--plum);
  padding: 0.6rem 1.2rem; border-radius: 0 0 12px 0; z-index: 200;
  font-weight: 700; text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- type ---------- */
h1, h2, h3 { color: var(--plum); }

h1, .display {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0.01em;
}

h1 { font-size: clamp(2.1rem, 5.4vw, 3.6rem); }

h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  line-height: 1.18;
}

h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.3;
}

.eyebrow {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach-deep);
  margin-bottom: 0.75rem;
}

.lede { font-size: 1.18rem; line-height: 1.6; color: var(--plum); }

.hl { color: var(--peach); }

/* ---------- layout ---------- */
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.25rem; }

.section { padding: 4.5rem 0; }
.section--tight { padding: 3rem 0; }
.section--lav { background: var(--lav-pale); }
.section--plum { background: var(--plum); }
.section--plum h2, .section--plum h3, .section--plum p, .section--plum li { color: var(--blush); }
.section--plum .eyebrow { color: var(--peach); }

.section-head { max-width: 720px; margin-bottom: 2.5rem; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { margin-top: 0.9rem; }

.grid { display: grid; gap: 1.5rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .grid--3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .grid--2, .grid--3 { grid-template-columns: 1fr; } }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
@media (max-width: 820px) { .split { grid-template-columns: 1fr; gap: 2rem; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  border-radius: var(--radius-pill);
  padding: 0.85rem 1.9rem;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); }

.btn--primary { background: var(--plum); color: var(--blush); }
.btn--primary:hover { background: var(--plum-soft); color: var(--blush); }

.btn--peach { background: var(--peach); color: var(--plum); }
.btn--peach:hover { background: var(--peach-deep); color: var(--white); }

.btn--lav { background: var(--lav); color: var(--plum); }
.btn--lav:hover { background: var(--lav-mid); color: var(--plum); }

.btn--ghost { background: transparent; color: var(--blush); border-color: var(--lav); }
.btn--ghost:hover { background: rgba(209, 200, 244, 0.15); color: var(--white); }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.75rem; }

/* ---------- header / nav ---------- */
.site-header {
  background: var(--plum);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 18px rgba(61, 18, 54, 0.35);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 1.25rem;
  max-width: 1240px;
  margin: 0 auto;
}

.brand { display: flex; align-items: center; gap: 0.65rem; text-decoration: none; }
.brand img { height: 46px; width: auto; }
.brand-name {
  font-family: var(--font-display);
  color: var(--blush);
  font-size: 1.05rem;
  line-height: 1.1;
}
@media (max-width: 380px) { .brand-name { display: none; } }

.nav-toggle-box { display: none; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  padding: 10px;
  border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 3px; width: 100%;
  background: var(--blush); border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.site-nav { display: flex; align-items: center; gap: 0.25rem; }
.site-nav a {
  color: var(--lav);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-pill);
  transition: background 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { color: var(--white); background: rgba(209, 200, 244, 0.14); }
.site-nav a[aria-current="page"] { color: var(--white); background: rgba(174, 157, 239, 0.25); }
.site-nav .btn { margin-left: 0.5rem; padding: 0.6rem 1.4rem; font-size: 0.95rem; }
.site-nav .btn:hover { transform: none; }

@media (max-width: 1020px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--plum-deep);
    padding: 0.75rem 1.25rem 1.5rem;
    gap: 0.25rem;
    box-shadow: 0 20px 30px rgba(61, 18, 54, 0.35);
  }
  .site-nav a { padding: 0.85rem 1rem; font-size: 1.05rem; }
  .site-nav .btn { margin: 0.75rem 0 0; text-align: center; }
  .nav-toggle-box:checked ~ .site-nav { display: flex; }
  .nav-toggle-box:checked ~ .nav-toggle span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle-box:checked ~ .nav-toggle span:nth-child(2) { opacity: 0; }
  .nav-toggle-box:checked ~ .nav-toggle span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

/* ---------- hero ---------- */
.hero {
  background:
    radial-gradient(52rem 30rem at 85% -10%, rgba(174, 157, 239, 0.35), transparent 60%),
    radial-gradient(40rem 26rem at -10% 110%, rgba(242, 149, 95, 0.22), transparent 55%),
    var(--plum);
  color: var(--blush);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
}
@media (max-width: 820px) {
  .hero-inner { grid-template-columns: 1fr; padding: 3rem 0 3.5rem; gap: 2.25rem; }
}

.hero h1 { color: var(--white); }
.hero .lede { color: var(--lav); margin-top: 1.1rem; }
.hero-kicker {
  display: inline-block;
  background: rgba(209, 200, 244, 0.16);
  border: 1px solid rgba(209, 200, 244, 0.4);
  color: var(--lav);
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 0.4rem 1.1rem;
  margin-bottom: 1.25rem;
}

.hero-media { position: relative; }
.hero-media img {
  border-radius: 28px;
  box-shadow: var(--shadow-lift);
  transform: rotate(1.5deg);
  border: 6px solid rgba(252, 240, 240, 0.9);
}
.hero-sticker {
  position: absolute;
  bottom: -18px; left: -10px;
  background: var(--peach);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 0.98rem;
  padding: 0.55rem 1.3rem;
  border-radius: var(--radius-pill);
  transform: rotate(-4deg);
  box-shadow: var(--shadow-card);
}

.hero-facts {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-top: 1.6rem;
}
.hero-facts span {
  background: rgba(209, 200, 244, 0.14);
  border: 1px solid rgba(209, 200, 244, 0.35);
  color: var(--blush);
  border-radius: var(--radius-pill);
  padding: 0.35rem 0.95rem;
  font-size: 0.88rem;
  font-weight: 600;
}

/* page hero (inner pages) */
.page-hero {
  background:
    radial-gradient(46rem 26rem at 90% -20%, rgba(174, 157, 239, 0.32), transparent 60%),
    var(--plum);
  color: var(--blush);
  padding: 3.5rem 0 3.75rem;
}
.page-hero h1 { color: var(--white); max-width: 800px; }
.page-hero .lede { color: var(--lav); margin-top: 1rem; max-width: 680px; }
.page-hero .hero-facts { margin-top: 1.4rem; }

/* wave divider */
.wave { display: block; width: 100%; height: 54px; }
.wave--flip { transform: scaleY(-1); }

/* ---------- cards ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }

.card-media { aspect-ratio: 4 / 3; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; }

.card-body { padding: 1.4rem 1.4rem 1.6rem; display: flex; flex-direction: column; gap: 0.6rem; flex: 1; }
.card-body h3 { font-family: var(--font-display); font-weight: 400; font-size: 1.22rem; }
.card-body p { font-size: 0.98rem; }
.card-link {
  margin-top: auto;
  font-weight: 700;
  text-decoration: none;
  color: var(--peach-deep);
}
.card-link:hover { color: var(--plum); }

.card--flat { box-shadow: none; border: 2px solid var(--lav); }
.card--flat:hover { transform: none; box-shadow: var(--shadow-card); }

.tag {
  display: inline-block;
  background: var(--lav);
  color: var(--plum);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  padding: 0.25rem 0.8rem;
}
.tag--peach { background: var(--peach); }

/* ---------- timetable ---------- */
.timetable { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden; }
.timetable caption { caption-side: bottom; font-size: 0.88rem; padding: 0.9rem 0.5rem; color: var(--plum-soft); }
.timetable th, .timetable td { text-align: left; padding: 1rem 1.1rem; border-bottom: 1px solid var(--lav-pale); vertical-align: top; }
.timetable thead th {
  background: var(--plum); color: var(--blush);
  font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase;
}
.timetable tbody tr:last-child td { border-bottom: none; }
.timetable td strong { color: var(--plum); }
.timetable .day { font-family: var(--font-display); color: var(--plum); font-size: 1.02rem; white-space: nowrap; }

@media (max-width: 720px) {
  .timetable thead { position: absolute; left: -9999px; }
  .timetable, .timetable tbody, .timetable tr, .timetable td { display: block; width: 100%; }
  .timetable tr { border-bottom: 6px solid var(--lav-pale); padding: 0.4rem 0; }
  .timetable td { border: none; padding: 0.45rem 1.1rem; }
  .timetable td[data-label]::before {
    content: attr(data-label);
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--peach-deep);
    margin-bottom: 0.1rem;
  }
  .timetable caption { display: block; }
}

/* ---------- pricing ---------- */
.price-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 960px) { .price-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .price-cards { grid-template-columns: 1fr; } }

.price-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.6rem 1.4rem;
  text-align: center;
  position: relative;
  display: flex; flex-direction: column; gap: 0.35rem;
}
.price-card .amount { font-family: var(--font-display); font-size: 2rem; color: var(--plum); }
.price-card .per { font-size: 0.9rem; color: var(--plum-soft); }
.price-card .note { font-size: 0.85rem; color: var(--peach-deep); font-weight: 700; }
.price-card--best { border: 3px solid var(--peach); }
.price-card--best::before {
  content: "Best value";
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--peach); color: var(--plum);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: var(--radius-pill); padding: 0.2rem 0.9rem; white-space: nowrap;
}

.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-card); box-shadow: var(--shadow-card); overflow: hidden; }
.price-table th, .price-table td { padding: 0.9rem 1.1rem; text-align: left; border-bottom: 1px solid var(--lav-pale); }
.price-table thead th { background: var(--plum); color: var(--blush); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; }
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table .amount { font-weight: 700; color: var(--plum); white-space: nowrap; }

/* ---------- pull quote ---------- */
.pull-quote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.6vw, 2.4rem);
  line-height: 1.25;
  color: var(--plum);
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.pull-quote .credit {
  display: block;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--peach-deep);
  margin-top: 1rem;
}
.section--plum .pull-quote { color: var(--blush); }

/* ---------- checklist / info ---------- */
.check-list { list-style: none; display: grid; gap: 0.7rem; }
.check-list li { padding-left: 2rem; position: relative; }
.check-list li::before {
  content: "";
  position: absolute; left: 0; top: 0.42em;
  width: 1.05rem; height: 1.05rem;
  border-radius: 50%;
  background: var(--peach);
  -webkit-mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.3 11.6 2.6 7.9l1.2-1.2 2.5 2.5 5.9-5.9 1.2 1.2z"/></svg>') center / contain no-repeat;
  mask: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16"><path fill="black" d="M6.3 11.6 2.6 7.9l1.2-1.2 2.5 2.5 5.9-5.9 1.2 1.2z"/></svg>') center / contain no-repeat;
}
.section--plum .check-list li::before { background: var(--peach); }

.info-strip {
  background: var(--lav);
  border-radius: var(--radius-card);
  padding: 1.5rem 1.75rem;
  color: var(--plum);
  font-size: 0.98rem;
}
.info-strip strong { color: var(--plum); }

/* venue cards */
.venue-card {
  background: var(--white);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  padding: 1.6rem;
}
.venue-card h3 { color: var(--plum); margin-bottom: 0.4rem; }
.venue-card address { font-style: normal; color: var(--ink); margin-bottom: 0.75rem; }

/* ---------- media band ---------- */
.photo-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
@media (max-width: 720px) { .photo-band { grid-template-columns: 1fr; } }
.photo-band img {
  width: 100%; height: 260px; object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
}

.figure-note { font-size: 0.85rem; color: var(--plum-soft); margin-top: 0.5rem; }

/* ---------- steps ---------- */
.steps { list-style: none; counter-reset: step; display: grid; gap: 1.25rem; }
.steps li { counter-increment: step; position: relative; padding-left: 3.4rem; }
.steps li::before {
  content: counter(step);
  position: absolute; left: 0; top: 0;
  width: 2.4rem; height: 2.4rem;
  border-radius: 50%;
  background: var(--lav);
  color: var(--plum);
  font-family: var(--font-display);
  font-size: 1.1rem;
  display: grid; place-items: center;
}
.steps li strong { display: block; color: var(--plum); }

/* ---------- newsletter / CTA band ---------- */
.cta-band {
  background:
    radial-gradient(38rem 20rem at 15% 120%, rgba(242, 149, 95, 0.25), transparent 60%),
    var(--plum);
  border-radius: var(--radius-card);
  color: var(--blush);
  padding: 3rem 2.5rem;
  text-align: center;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: var(--lav); max-width: 620px; margin: 0.9rem auto 0; }
.cta-band .btn-row { justify-content: center; }
@media (max-width: 540px) { .cta-band { padding: 2.25rem 1.4rem; } }

.newsletter-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 1.5rem auto 0; }
.newsletter-form input[type="email"] {
  flex: 1;
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.85rem 1.3rem;
  border-radius: var(--radius-pill);
  border: 2px solid var(--lav);
  color: var(--ink);
  min-width: 0;
}
@media (max-width: 480px) { .newsletter-form { flex-direction: column; } }
.consent-note { font-size: 0.85rem; margin-top: 0.9rem; }

/* ---------- footer ---------- */
.site-footer { background: var(--plum-deep); color: var(--lav); padding: 3.5rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid rgba(209, 200, 244, 0.2);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }

.site-footer h3 { color: var(--blush); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.9rem; }
.footer-tagline { font-family: var(--font-display); color: var(--blush); font-size: 1.3rem; line-height: 1.3; margin-top: 0.75rem; }
.site-footer ul { list-style: none; display: grid; gap: 0.45rem; }
.site-footer a { color: var(--lav); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer address { font-style: normal; display: grid; gap: 0.45rem; }
.footer-logo { height: 52px; width: auto; }

.footer-legal { padding-top: 1.75rem; font-size: 0.85rem; color: rgba(209, 200, 244, 0.8); display: grid; gap: 0.5rem; }
.footer-legal a { text-decoration: underline; }

/* ---------- misc ---------- */
.emoji-dot { margin-right: 0.35rem; }

.notice {
  border-left: 5px solid var(--peach);
  background: var(--blush);
  border-radius: 0 var(--radius-card) var(--radius-card) 0;
  padding: 1.1rem 1.4rem;
  font-size: 0.95rem;
}

.legal-copy h2 { font-family: var(--font-body); font-weight: 700; font-size: 1.35rem; margin: 2.2rem 0 0.7rem; }
.legal-copy p, .legal-copy li { margin-bottom: 0.7rem; }
.legal-copy ul { padding-left: 1.4rem; }

/* reveal animation (JS adds .js to html; without JS everything stays visible) */
html.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.55s ease, transform 0.55s ease; }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  .card, .btn { transition: none; }
}
