:root {
  --pink: #e94f8a;
  --purple: #7b3fa0;
  --gold: #f2b134;
  --cream: #fff8f2;
  --ink: #2b1e2f;
  --muted: #6b5c6e;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(43, 30, 47, 0.12);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, .logo {
  font-family: 'Playfair Display', serif;
}

.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink);
  margin-bottom: 8px;
}

.eyebrow.center, h2.center { text-align: center; }

.section { padding: 90px 0; }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 242, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(123, 63, 160, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.logo {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--purple);
  text-decoration: none;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.nav a:hover { color: var(--pink); }

.nav-cta {
  background: var(--pink);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 999px;
}

.nav-cta:hover { background: var(--purple); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--purple);
  cursor: pointer;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding: 130px 0 110px;
  background: linear-gradient(135deg, #fff0f6 0%, #fdf3ff 45%, #fff8ec 100%);
}

.hero-balloons { position: absolute; inset: 0; pointer-events: none; }

.balloon {
  position: absolute;
  width: 70px;
  height: 90px;
  border-radius: 50% 50% 50% 50% / 55% 55% 45% 45%;
  opacity: 0.55;
  filter: blur(0.5px);
}

.b1 { background: var(--pink); top: 8%; left: 6%; transform: rotate(-8deg); }
.b2 { background: var(--gold); top: 55%; left: 88%; width: 56px; height: 72px; transform: rotate(10deg); }
.b3 { background: var(--purple); top: 12%; left: 82%; width: 60px; height: 78px; transform: rotate(6deg); }
.b4 { background: var(--pink); top: 70%; left: 12%; width: 48px; height: 62px; transform: rotate(-12deg); opacity: 0.35; }

.hero-content { position: relative; text-align: center; max-width: 720px; margin: 0 auto; }

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--purple);
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-actions.center { justify-content: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

.btn-primary {
  background: var(--pink);
  color: #fff;
  box-shadow: 0 8px 20px rgba(233, 79, 138, 0.35);
}

.btn-primary:hover { background: var(--purple); transform: translateY(-2px); }

.btn-outline {
  background: #fff;
  color: var(--purple);
  border: 2px solid var(--purple);
}

.btn-outline:hover { background: var(--purple); color: #fff; transform: translateY(-2px); }

/* Strip */
.strip {
  background: var(--purple);
  color: #fff;
  padding: 20px 0;
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 500;
}

.strip-item i { font-size: 1.2rem; color: var(--gold); }

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h2 { font-size: 2.1rem; color: var(--purple); margin-bottom: 18px; }
.about-text p { color: var(--muted); margin-bottom: 16px; }

.about-cards {
  display: grid;
  gap: 20px;
}

.mini-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.mini-card i { color: var(--pink); font-size: 1.5rem; margin-bottom: 10px; }
.mini-card h3 { font-size: 1.1rem; margin-bottom: 6px; color: var(--ink); }
.mini-card p { color: var(--muted); font-size: 0.92rem; }

/* Products */
.products { background: #fff; }

.products h2 { font-size: 2.1rem; color: var(--purple); margin-bottom: 50px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }

.product-card i {
  font-size: 1.8rem;
  color: #fff;
  background: linear-gradient(135deg, var(--pink), var(--purple));
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 18px;
}

.product-card h3 { margin-bottom: 10px; font-size: 1.15rem; }
.product-card p { color: var(--muted); font-size: 0.92rem; }

/* Savings */
.savings {
  background: linear-gradient(135deg, var(--purple), var(--pink));
  color: #fff;
}

.savings-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.savings h2 { font-size: 2rem; margin-bottom: 16px; }
.savings p { margin-bottom: 24px; opacity: 0.92; }
.savings .eyebrow { color: var(--gold); }
.savings .btn-primary { background: var(--gold); color: var(--ink); box-shadow: none; }
.savings .btn-primary:hover { background: #fff; }

.savings-icon {
  font-size: 8rem;
  text-align: center;
  opacity: 0.85;
  color: var(--gold);
}

/* Visit */
.visit h2 { font-size: 2.1rem; color: var(--purple); margin-bottom: 50px; }

.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

.info-row {
  display: flex;
  gap: 18px;
  margin-bottom: 28px;
}

.info-row i {
  font-size: 1.3rem;
  color: var(--pink);
  width: 40px;
}

.info-row h4 { font-size: 1rem; margin-bottom: 4px; color: var(--ink); }
.info-row p { color: var(--muted); font-size: 0.95rem; }
.info-row a { color: var(--purple); text-decoration: none; font-weight: 500; }
.info-row a:hover { color: var(--pink); }

.visit-map {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 340px;
}

.visit-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
}

/* Contact CTA */
.contact-cta {
  background: var(--ink);
  color: #fff;
  text-align: center;
}

.contact-cta h2 { font-size: 2rem; margin-bottom: 14px; }
.contact-cta p { color: #cbb9cf; max-width: 560px; margin: 0 auto 30px; }

/* Footer */
.site-footer {
  background: #1c1420;
  color: #a8969b;
  padding: 30px 0;
  text-align: center;
  font-size: 0.85rem;
}

.footer-sub { margin-top: 6px; opacity: 0.8; }

/* Responsive */
@media (max-width: 900px) {
  .about-grid, .savings-grid, .visit-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .strip-grid { grid-template-columns: repeat(2, 1fr); }
  .savings-icon { font-size: 5rem; }
}

@media (max-width: 640px) {
  .nav { position: absolute; top: 76px; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 20px 24px; gap: 18px; display: none; border-bottom: 1px solid rgba(123,63,160,0.1); }
  .nav.open { display: flex; }
  .nav-toggle { display: block; }
  .hero h1 { font-size: 2.1rem; }
  .products-grid { grid-template-columns: 1fr; }
  .strip-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 60px 0; }
}
