/* ============================================
   Sticky Smiles — Brand Design System
   Palette sampled directly from mascot artwork
   ============================================ */

:root {
  --ink: #3D066B;
  --ink-soft: #5A2C82;
  --hot-pink: #FF006E;
  --hot-pink-dark: #D6005C;
  --cyan: #00C7DE;
  --cyan-light: #7FE9F5;
  --yellow: #FFD23F;
  --blush: #FDAABA;
  --blush-light: #FFEEF2;
  --cream: #FFFBF5;
  --white: #FFFFFF;
  --shadow: 0 12px 32px rgba(61, 6, 107, 0.14);
  --shadow-soft: 0 4px 16px rgba(61, 6, 107, 0.08);
  --radius: 28px;
  --radius-sm: 16px;
  --font-display: 'Baloo 2', system-ui, sans-serif;
  --font-body: 'Nunito', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0 0 0.4em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }

p { margin: 0 0 1em; }

a { color: inherit; text-decoration: none; }

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

section { padding: 88px 0; position: relative; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--hot-pink);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.85rem;
  margin-bottom: 10px;
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  padding: 15px 30px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.btn-primary {
  background: var(--hot-pink);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(255, 0, 110, 0.35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 12px 26px rgba(255, 0, 110, 0.42); }
.btn-secondary {
  background: var(--white);
  color: var(--ink);
  border: 2px solid var(--ink);
}
.btn-secondary:hover { transform: translateY(-2px); background: var(--ink); color: var(--white); }
.btn-light {
  background: rgba(255,255,255,0.92);
  color: var(--ink);
}
.btn-light:hover { transform: translateY(-2px); background: var(--white); }

/* ---------- Nav ---------- */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 245, 0.88);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(61, 6, 107, 0.08);
}
.site-nav .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.brand-lockup { display: flex; align-items: center; gap: 10px; }
.brand-lockup img { height: 46px; width: auto; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.98rem;
}
.nav-links a { padding: 6px 2px; border-bottom: 2px solid transparent; transition: border-color 0.15s, color 0.15s; }
.nav-links a:hover, .nav-links a.active { border-color: var(--hot-pink); color: var(--hot-pink); }
.nav-cta { display: none; }
.nav-toggle { display: none; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: block; background: none; border: none; cursor: pointer;
    font-family: var(--font-display); font-weight: 700; color: var(--ink); font-size: 1rem;
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 30%;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(61,6,107,0.15) 0%, rgba(61,6,107,0.15) 40%, rgba(61,6,107,0.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 60px 0 70px;
  width: 100%;
}
.hero-content .eyebrow { color: var(--yellow); }
.hero-content h1 { color: var(--white); max-width: 780px; }
.hero-content .lede { font-size: 1.2rem; max-width: 560px; opacity: 0.92; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ---------- Framed hero (backdrop blur + uncropped photo card) ---------- */
.hero-framed { min-height:auto; padding:70px 0 90px; display:block; align-items:initial; }
.hero-bg-blur {
  position:absolute; inset:0;
  background-size:cover; background-position:center;
  filter: blur(38px) brightness(0.55) saturate(1.15);
  transform: scale(1.15);
}
.hero-bg-blur::after { content:''; position:absolute; inset:0; background:rgba(61,6,107,0.35); }
.hero-framed-inner {
  position:relative; z-index:2;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:56px; align-items:center;
  padding-top:40px;
}
.hero-content-text h1 { color:var(--white); }
.hero-content-text .eyebrow { color:var(--yellow); }
.hero-photo-frame {
  border-radius:var(--radius); overflow:hidden;
  box-shadow:0 24px 60px rgba(0,0,0,0.35);
  border:4px solid rgba(255,255,255,0.85);
}
.hero-photo-frame img { width:100%; display:block; aspect-ratio:3/4; object-fit:cover; }
@media (max-width:900px){
  .hero-framed-inner { grid-template-columns:1fr; text-align:center; }
  .hero-actions { justify-content:center; }
  .hero-photo-frame { max-width:320px; margin:0 auto; }
}

.hero-swirl {
  position: absolute; z-index: 2;
  width: 130px; opacity: 0.9;
  filter: drop-shadow(0 8px 18px rgba(0,0,0,0.25));
}

/* ---------- Stat strip ---------- */
.stat-strip {
  background: var(--ink);
  color: var(--white);
  padding: 26px 0;
}
.stat-strip .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 48px;
  justify-content: space-between;
  align-items: center;
}
.stat-item { display: flex; align-items: baseline; gap: 10px; }
.stat-item strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--yellow); }
.stat-item span { font-size: 0.92rem; opacity: 0.85; }

/* ---------- Photo mosaic ---------- */
.mosaic {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 120px;
  gap: 12px;
  margin-top: 44px;
}
.mosaic img {
  width: 100%; height: 100%; object-fit: cover;
  border-radius: 18px;
  transition: transform 0.35s ease;
}
.mosaic a:hover img { transform: scale(1.04); }
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

@media (max-width: 760px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .mosaic .wide { grid-column: span 2; }
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
  margin-top: 44px;
}
.venue-card, .tier-card, .info-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.venue-card img { height: 220px; object-fit: cover; }
.venue-card .body, .info-card .body { padding: 26px; }
.venue-card .tag {
  display: inline-block;
  background: var(--blush-light);
  color: var(--hot-pink-dark);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.8rem;
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 10px;
}

.tier-card {
  padding: 34px 28px;
  border: 3px solid transparent;
  display: flex;
  flex-direction: column;
}
.tier-card.featured { border-color: var(--hot-pink); position: relative; }
.tier-card.featured::before {
  content: 'MOST BOOKED';
  position: absolute; top: -14px; left: 28px;
  background: var(--hot-pink); color: var(--white);
  font-family: var(--font-display); font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em;
  padding: 5px 14px; border-radius: 100px;
}
.tier-card .price { font-family: var(--font-display); font-size: 2.4rem; color: var(--hot-pink); margin: 6px 0 18px; }
.tier-card .price span { font-size: 1rem; color: var(--ink-soft); font-family: var(--font-body); }
.tier-card ul { list-style: none; margin: 0 0 24px; padding: 0; flex-grow: 1; }
.tier-card li { padding: 9px 0; border-bottom: 1px solid rgba(61,6,107,0.08); font-size: 0.97rem; }
.tier-card li:last-child { border-bottom: none; }

/* ---------- Testimonial ---------- */
.testimonial {
  background: var(--blush-light);
  border-radius: var(--radius);
  padding: 46px;
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}
.testimonial img { width: 180px; border-radius: 18px; box-shadow: var(--shadow); }
.testimonial blockquote {
  margin: 0; font-family: var(--font-display); font-size: 1.5rem; color: var(--ink);
}
.testimonial cite { display: block; margin-top: 14px; font-family: var(--font-body); font-style: normal; font-weight: 700; color: var(--hot-pink-dark); font-size: 0.95rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--hot-pink) 0%, #C300E0 100%);
  color: var(--white);
  border-radius: var(--radius);
  padding: 64px 48px;
  text-align: center;
  margin: 0 28px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { opacity: 0.92; max-width: 560px; margin-left: auto; margin-right: auto; }

/* ---------- Footer ---------- */
footer {
  background: var(--ink);
  color: var(--white);
  padding: 60px 0 30px;
  margin-top: 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
.footer-grid h4 { color: var(--yellow); font-size: 1rem; margin-bottom: 14px; }
.footer-grid a { display: block; opacity: 0.85; padding: 5px 0; }
.footer-grid a:hover { opacity: 1; color: var(--cyan-light); }
.footer-bottom {
  padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 0.88rem; opacity: 0.7;
}

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; }
  .mosaic { grid-auto-rows: 130px; }
}
