:root {
  --pink: #ff5c8a;
  --pink-dark: #e0426f;
  --cream: #fff6f0;
  --peach: #ffe6d5;
  --ink: #2b2140;
  --muted: #6b6480;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(43, 33, 64, 0.12);
  --radius: 18px;
}

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

html { scroll-behavior: smooth; }

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

.container { width: min(1140px, 92%); margin-inline: auto; }

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

/* Buttons */
.btn {
  display: inline-block;
  background: var(--pink);
  color: var(--white);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 20px rgba(255, 92, 138, 0.35);
}
.btn:hover { background: var(--pink-dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--pink-dark);
  border: 2px solid var(--pink);
  box-shadow: none;
}
.btn-ghost:hover { background: var(--pink); color: var(--white); }
.btn-small { padding: 0.5rem 1.1rem; font-size: 0.9rem; }

/* Header / Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 246, 240, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43, 33, 64, 0.06);
}
.nav { display: flex; align-items: center; justify-content: space-between; padding: 1rem 0; }
.brand { font-weight: 700; font-size: 1.4rem; letter-spacing: -0.5px; }
.brand-mark { font-family: "Pacifico", cursive; color: var(--pink); }
.brand-accent { color: var(--pink-dark); }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.6rem; }
.nav-links a { font-weight: 500; transition: color 0.2s; }
.nav-links a:hover { color: var(--pink); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 26px; height: 3px; background: var(--ink); border-radius: 3px; transition: 0.3s; }

/* Hero */
.hero {
  background: radial-gradient(circle at 20% 20%, var(--peach), transparent 55%),
              radial-gradient(circle at 85% 30%, #ffd9e6, transparent 50%),
              var(--cream);
  padding: 5.5rem 0 4.5rem;
  text-align: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--pink-dark);
  margin-bottom: 0.8rem;
}
.hero h1 { font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1.1; font-weight: 700; }
.highlight { color: var(--pink); }
.lead { max-width: 620px; margin: 1.3rem auto 2rem; color: var(--muted); font-size: 1.1rem; }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Strip */
.strip { background: var(--pink); color: var(--white); padding: 1.4rem 0; }
.strip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.strip-item span { font-size: 1.8rem; display: block; }
.strip-item p { font-weight: 500; margin-top: 0.3rem; }

/* Sections */
.section { padding: 4.5rem 0; }
.section-alt { background: var(--peach); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 2.8rem; }
.section-head h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--muted); margin-top: 0.5rem; }

/* Cards */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem 1.4rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 40px rgba(43, 33, 64, 0.16); }
.card-icon { font-size: 2.6rem; margin-bottom: 0.8rem; }
.card h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.card p { color: var(--muted); font-size: 0.95rem; }
.price { display: inline-block; margin-top: 0.9rem; font-weight: 700; color: var(--pink-dark); }

/* Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery-item {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.gallery-note { text-align: center; color: var(--muted); margin-top: 1.2rem; font-size: 0.9rem; }
code { background: rgba(43,33,64,0.08); padding: 0.15rem 0.4rem; border-radius: 6px; }

/* Contact */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
.contact-list { list-style: none; margin: 1.4rem 0; display: grid; gap: 0.8rem; }
.contact-list a { color: var(--pink-dark); font-weight: 600; }
.socials { display: flex; gap: 1.2rem; flex-wrap: wrap; margin-top: 1rem; }
.socials a { font-weight: 600; color: var(--pink-dark); }

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.contact-form h3 { margin-bottom: 1rem; }
.contact-form label { display: block; font-weight: 500; margin-bottom: 1rem; font-size: 0.95rem; }
.contact-form input, .contact-form textarea {
  width: 100%;
  margin-top: 0.35rem;
  padding: 0.7rem 0.9rem;
  border: 1px solid #e6dfea;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
}
.contact-form input:focus, .contact-form textarea:focus { outline: 2px solid var(--pink); border-color: transparent; }
.form-note { font-size: 0.8rem; color: var(--muted); margin-top: 0.8rem; }

/* Footer */
.footer { background: var(--ink); color: #e7e2f0; padding: 2rem 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-brand { font-weight: 700; }
.to-top { color: var(--pink); font-weight: 600; }

/* Responsive */
@media (max-width: 900px) {
  .cards, .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 1rem 0;
    gap: 1rem;
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open { display: flex; }
  .strip-grid { grid-template-columns: repeat(2, 1fr); gap: 1.2rem; }
}
@media (max-width: 460px) {
  .cards, .gallery { grid-template-columns: 1fr; }
}
