                /* Dress 2 Impress — Static Styles */
:root {
  --bg: #fff8f3;
  --card: #ffffff;
  --foreground: #2b1d2a;
  --muted: #f3eee9;
  --muted-foreground: #7a6b76;
  --border: #ead9d2;
  --primary: #e85a8b;
  --primary-foreground: #ffffff;
  --primary-glow: #ff8fb3;
  --bubblegum: #ffd6e7;
  --bubblegum-foreground: #6b1e3a;
  --mint: #c8f0dc;
  --mint-foreground: #14513a;
  --sunshine: #ffd76b;
  --sunshine-foreground: #6b4a00;
  --sky: #cfe6ff;
  --accent: #fde2ec;

  --shadow-soft: 0 6px 18px rgba(232, 90, 139, 0.18);
  --shadow-pop: 0 16px 40px rgba(232, 90, 139, 0.28);
  --shadow-card: 0 4px 14px rgba(0, 0, 0, 0.06);

  --gradient-hero: linear-gradient(135deg, #fff0f6 0%, #fff7e0 50%, #e8f5ff 100%);
  --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-glow));
  --gradient-fun: linear-gradient(135deg, #ffe1ec, #fff3c8, #d8f1e3);
  --gradient-sunshine: linear-gradient(135deg, #ffd76b, #ffb347);

  --radius: 1rem;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: var(--bg);
  color: var(--foreground);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.font-display { font-family: 'Poppins', 'Inter', sans-serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 248, 243, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(234, 217, 210, 0.6);
}
.site-header .row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
}
.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand img { width: 48px; height: 48px; object-fit: contain; border-radius: 0.75rem; box-shadow: var(--shadow-soft); }
.brand-name { font-weight: 700; font-family: 'Poppins', sans-serif; font-size: 1rem; }
.nav { display: none; gap: 0.25rem; align-items: center; }
.nav a { padding: 0.5rem 1rem; border-radius: 999px; font-weight: 600; font-size: 0.9rem; color: rgba(43, 29, 42, 0.8); }
.nav a:hover { background: var(--accent); color: var(--foreground); }
.nav a.active { background: var(--primary); color: var(--primary-foreground); }
.btn-burger { display: inline-flex; padding: 0.5rem; border: none; background: transparent; cursor: pointer; border-radius: 0.75rem; }
.mobile-nav { display: none; flex-direction: column; padding-bottom: 1rem; gap: 0.25rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 0.75rem 1rem; border-radius: 1rem; font-weight: 600; font-size: 0.9rem; }
.mobile-nav a:hover { background: var(--accent); }
.mobile-nav a.active { background: var(--primary); color: var(--primary-foreground); }

@media (min-width: 768px) {
  .nav { display: inline-flex; }
  .btn-burger { display: none; }
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.85rem 1.5rem; border-radius: 999px; font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer; transition: all 0.2s ease; text-decoration: none;
}
.btn-primary { background: var(--gradient-primary); color: var(--primary-foreground); box-shadow: var(--shadow-soft); }
.btn-primary:hover { box-shadow: var(--shadow-pop); transform: translateY(-2px); }
.btn-outline { background: var(--card); color: var(--foreground); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); }
.btn-mint { background: var(--mint); color: var(--mint-foreground); box-shadow: var(--shadow-soft); }
.btn-mint:hover { box-shadow: var(--shadow-pop); transform: translateY(-2px); }
.btn-dark { background: var(--foreground); color: var(--bg); }
.btn-dark:hover { transform: translateY(-2px); }

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--gradient-hero);
}

.hero .container {
  padding: 2rem 1.25rem 1rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: center;
}
.hero .cta-row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.hero .stats { margin-top: 2rem; display: flex; gap: 1.5rem; align-items: center; font-size: 0.9rem; }
.hero .stars { color: #f5b300; letter-spacing: 0.1em; }
.hero-image-wrap { position: relative; }
.hero-image-wrap img { border-radius: 2.5rem; box-shadow: var(--shadow-pop); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-image-wrap .float-card {
  position: absolute; background: var(--card); padding: 0.6rem 1rem; border-radius: 1.25rem;
  box-shadow: var(--shadow-pop); display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem;
}
.float-card.left { bottom: -20px; left: -20px; animation: float-slow 5s ease-in-out infinite; }
.float-card.right { top: -20px; right: -10px; animation: wiggle 4s ease-in-out infinite; }
.float-card .icon-pill { width: 36px; height: 36px; border-radius: 0.75rem; display: grid; place-items: center; font-size: 1rem; }
.icon-pill.mint { background: var(--mint); }
.icon-pill.sunshine { background: var(--sunshine); }

@keyframes float-slow { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
@keyframes wiggle { 0%,100% { transform: rotate(-2deg); } 50% { transform: rotate(2deg); } }

@media (min-width: 768px) {
  .hero .container { grid-template-columns: 1fr 1fr; padding: 6rem 1.25rem; }
}

/* SECTIONS */
section { padding: 3rem 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--primary); }
h2 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: clamp(1.75rem, 3vw, 2.5rem); margin: 0.25rem 0 0; }
.section-head p { color: var(--muted-foreground); margin-top: 0.75rem; }

/* CATEGORY CARDS */
.cat-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
.cat-card { position: relative; overflow: hidden; padding: 2.5rem; border-radius: 2rem; box-shadow: var(--shadow-card); transition: all 0.25s; display: block; }
.cat-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-4px); }
.cat-card.school { background: var(--mint); color: var(--mint-foreground); }
.cat-card.events { background: var(--bubblegum); color: var(--bubblegum-foreground); }
.cat-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin: 1rem 0 0.5rem; }
.cat-card .arrow { display: inline-flex; align-items: center; gap: 0.4rem; font-weight: 700; margin-top: 1rem; }
@media (min-width: 768px) { .cat-grid { grid-template-columns: 1fr 1fr; } }

/* COSTUME CARDS */
.row-head { display: flex; align-items: end; justify-content: space-between; flex-wrap: wrap; gap: 1rem; margin-bottom: 2rem; }
.link-arrow { color: var(--primary); font-weight: 700; display: inline-flex; align-items: center; gap: 0.4rem; }
.cards { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .cards { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .cards.three-cols { grid-template-columns: repeat(3, 1fr); } }

.costume-card {
  background: var(--card); border-radius: 1.5rem; overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid rgba(234, 217, 210, 0.6); display: flex; flex-direction: column;
  transition: all 0.25s;
}
.costume-card:hover { box-shadow: var(--shadow-pop); transform: translateY(-4px); }
.costume-card .img-wrap { position: relative; aspect-ratio: 3/4; background: var(--muted); overflow: hidden; }
.costume-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.costume-card:hover img { transform: scale(1.05); }
.tag { position: absolute; top: 0.75rem; left: 0.75rem; background: var(--sunshine); color: var(--sunshine-foreground); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.72rem; font-weight: 700; }
.age { position: absolute; top: 0.75rem; right: 0.75rem; background: rgba(255,255,255,0.9); padding: 0.25rem 0.75rem; border-radius: 999px; font-size: 0.72rem; font-weight: 600; }
.costume-card .body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.costume-card h3 { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 1.05rem; margin: 0; }
.costume-card .desc { color: var(--muted-foreground); font-size: 0.875rem; margin: 0.5rem 0 1rem; flex: 1; }

/* TRUST */
.trust-grid { display: grid; gap: 1.25rem; grid-template-columns: 1fr; margin-top: 3rem; }
@media (min-width: 640px) { .trust-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(4, 1fr); } }
.trust-card { background: var(--card); border: 1px solid rgba(234, 217, 210, 0.6); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-card); transition: box-shadow 0.2s; }
.trust-card:hover { box-shadow: var(--shadow-pop); }
.trust-card .icon-box { width: 48px; height: 48px; border-radius: 1rem; background: var(--gradient-sunshine); display: grid; place-items: center; font-size: 1.4rem; }
.trust-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.1rem; margin: 1rem 0 0.4rem; }
.trust-card p { color: var(--muted-foreground); font-size: 0.875rem; margin: 0; }

/* TESTIMONIALS */
.bg-fun { background: var(--gradient-fun); }
.testimonial-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; margin-top: 3rem; }
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); } }
.testimonial { background: var(--card); border: 1px solid rgba(234, 217, 210, 0.6); border-radius: 1.5rem; padding: 1.5rem; box-shadow: var(--shadow-card); }
.testimonial .quote-icon { font-size: 1.75rem; color: rgba(232, 90, 139, 0.3); }
.testimonial .stars { color: #f5b300; margin: 0.5rem 0; }
.testimonial .who { margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--border); }
.testimonial .who .name { font-weight: 700; }
.testimonial .who .role { font-size: 0.75rem; color: var(--muted-foreground); }

/* CTA */
.cta-banner { position: relative; overflow: hidden; border-radius: 2.5rem; padding: 3rem 2rem; text-align: center; background: var(--gradient-primary); color: var(--primary-foreground); box-shadow: var(--shadow-pop); }
.cta-banner h2 { color: var(--primary-foreground); font-size: clamp(1.75rem, 4vw, 3rem); }
.cta-banner p { opacity: 0.9; max-width: 540px; margin: 0.75rem auto 0; }
.cta-banner .row { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }

/* CATALOGUE */
.filter-bar { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1rem; }
@media (min-width: 768px) { .filter-bar { flex-direction: row; align-items: center; justify-content: space-between; } }
.filter-pills { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.pill {
  display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.6rem 1rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--card); font-weight: 700; font-size: 0.85rem;
  cursor: pointer; transition: all 0.2s;
}
.pill:hover { border-color: var(--primary); }
.pill.active { background: var(--gradient-primary); color: var(--primary-foreground); border-color: transparent; box-shadow: var(--shadow-soft); }
.search-wrap { position: relative; }
.search-wrap input { width: 100%; padding: 0.65rem 1rem 0.65rem 2.5rem; border-radius: 999px; border: 1px solid var(--border); background: var(--card); font-size: 0.9rem; }
.search-wrap input:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(232, 90, 139, 0.15); }
.search-wrap::before { content: "🔍"; position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); font-size: 0.9rem; }
@media (min-width: 768px) { .search-wrap input { width: 280px; } }
.results-count { font-size: 0.875rem; color: var(--muted-foreground); margin: 1rem 0; }
.empty { background: var(--muted); padding: 3rem; border-radius: 2rem; text-align: center; }

/* CONTACT */
.contact-card { background: var(--card); border: 1px solid rgba(234, 217, 210, 0.6); border-radius: 2rem; padding: 2rem; box-shadow: var(--shadow-card); max-width: 640px; margin: 0 auto; }
.contact-card h2 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin: 0 0 0.25rem; }
.contact-card .lead { color: var(--muted-foreground); font-size: 0.9rem; margin: 0 0 1.5rem; }
.contact-card .actions { display: flex; flex-direction: column; gap: 1rem; }
.contact-card .actions .btn { width: 100%; padding: 1rem; font-size: 1.05rem; }
.contact-card .footnote { text-align: center; color: var(--muted-foreground); font-size: 0.85rem; margin-top: 1.5rem; }
.map-wrap { border-radius: 2rem; overflow: hidden; border: 1px solid rgba(234, 217, 210, 0.6); box-shadow: var(--shadow-card); margin-top: 2rem; }
.map-wrap iframe { width: 100%; height: 400px; border: 0; display: block; }

/* ABOUT */
.story-card { background: var(--card); padding: 2rem; border-radius: 2rem; box-shadow: var(--shadow-card); border: 1px solid rgba(234, 217, 210, 0.6); max-width: 880px; margin: 0 auto; }
.mission-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .mission-grid { grid-template-columns: 1fr 1fr; } }
.mission-card { padding: 2rem; border-radius: 2rem; box-shadow: var(--shadow-card); }
.mission-card.bubble { background: var(--bubblegum); color: var(--bubblegum-foreground); }
.mission-card.mint { background: var(--mint); color: var(--mint-foreground); }
.mission-card .ic { width: 56px; height: 56px; background: var(--card); border-radius: 1rem; display: grid; place-items: center; font-size: 1.5rem; box-shadow: var(--shadow-soft); }
.mission-card h3 { font-family: 'Poppins', sans-serif; font-size: 1.5rem; margin: 1rem 0 0.5rem; }
.stats-strip { background: var(--gradient-fun); border-radius: 2rem; padding: 2.5rem; display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; text-align: center; }
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stats-strip .num { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 2rem; color: var(--primary); }
.stats-strip .label { font-size: 0.875rem; color: rgba(43, 29, 42, 0.75); margin-top: 0.25rem; }

/* FOOTER */
.site-footer { margin-top: 6rem; background: var(--gradient-fun); border-top: 1px solid rgba(234, 217, 210, 0.6); }
.site-footer .container { padding: 3.5rem 1.25rem; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer-grid h4 { font-family: 'Poppins', sans-serif; font-size: 1rem; margin: 0 0 0.75rem; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 0.5rem; font-size: 0.875rem; }
.footer-grid a:hover { color: var(--primary); }
.footer-grid .info-list li { display: flex; align-items: flex-start; gap: 0.5rem; }
.footer-grid .info-list .ic { color: var(--primary); }
.footer-bottom { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(234, 217, 210, 0.6); display: flex; flex-direction: column; gap: 0.75rem; align-items: center; justify-content: space-between; font-size: 0.75rem; color: var(--muted-foreground); }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; } }

.brand-mini { display: flex; align-items: center; gap: 0.5rem; }
.brand-mini .logo-box { width: 40px; height: 40px; border-radius: 1rem; background: var(--gradient-primary); display: grid; place-items: center; color: var(--primary-foreground); box-shadow: var(--shadow-soft); }

.hidden { display: none !important; }
        