:root {
  --pink: #ef6699;
  --mint: #5ac1b8;
  --lavender: #9c79d1;
  --peach: #ffb096;
  --cream: #fffaf6;
  --soft: #fff0f5;
  --dark: #5a4955;
  --muted: #8b7280;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(197, 106, 142, 0.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background:
    radial-gradient(circle at top left, #ffe3ed 0, transparent 30%),
    radial-gradient(circle at top right, #e7fbf8 0, transparent 28%),
    linear-gradient(180deg, #fffaf6 0%, #fff0f5 100%);
}

a { color: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 70px);
  background: rgba(255, 250, 246, 0.86);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(239, 102, 153, 0.16);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.brand strong {
  display: block;
  color: var(--pink);
  font-size: 1.15rem;
  line-height: 1.1;
}

.brand small {
  color: var(--lavender);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 18px;
  font-weight: 700;
  color: var(--muted);
}

nav a { text-decoration: none; }
nav a:hover { color: var(--pink); }

.hero {
  min-height: 86vh;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: center;
  gap: 44px;
  padding: clamp(48px, 7vw, 92px) clamp(20px, 6vw, 80px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--mint);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

h1, h2, h3 { margin: 0; }

h1 {
  font-size: clamp(2.5rem, 7vw, 5.5rem);
  line-height: 0.96;
  color: var(--pink);
  letter-spacing: -0.07em;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  color: var(--dark);
  letter-spacing: -0.05em;
}

.subtitle {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
  margin: 24px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
}

.btn.primary {
  background: linear-gradient(135deg, var(--pink), var(--peach));
  color: white;
  box-shadow: 0 14px 30px rgba(239, 102, 153, 0.28);
}

.btn.secondary {
  background: white;
  color: var(--pink);
  border: 2px solid rgba(239, 102, 153, 0.25);
}

.hero-card {
  position: relative;
  padding: clamp(20px, 4vw, 44px);
  border-radius: 46px;
  background: rgba(255,255,255,0.72);
  box-shadow: var(--shadow);
  border: 1px solid rgba(239, 102, 153, 0.16);
}

.hero-card::before,
.hero-card::after {
  content: "♥";
  position: absolute;
  color: var(--mint);
  font-size: 44px;
}

.hero-card::before { left: 24px; top: 22px; color: var(--peach); }
.hero-card::after { right: 28px; bottom: 24px; }

.hero-logo {
  display: block;
  width: 100%;
  max-width: 520px;
  margin: auto;
  border-radius: 50%;
}

.section {
  padding: clamp(56px, 7vw, 95px) clamp(20px, 6vw, 80px);
}

.section-title {
  max-width: 760px;
  margin-bottom: 30px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.card, .about-box, .contact-card {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(239, 102, 153, 0.16);
  border-radius: 30px;
  padding: 26px;
  box-shadow: var(--shadow);
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: 1.6rem;
  margin-bottom: 16px;
}

.icon.pink { background: var(--pink); }
.icon.mint { background: var(--mint); }
.icon.lavender { background: var(--lavender); }
.icon.peach { background: var(--peach); }

.card h3 {
  color: var(--dark);
  font-size: 1.25rem;
}

.card p, .about p, .contact p, li {
  color: var(--muted);
  line-height: 1.65;
}

.collection-img {
  width: 100%;
  border-radius: 36px;
  margin-top: 28px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(239, 102, 153, 0.16);
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 28px;
  align-items: center;
}

.about-box strong {
  color: var(--pink);
  font-size: 1.25rem;
}

.about-box ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.contact {
  display: grid;
  place-items: center;
}

.contact-card {
  width: min(920px, 100%);
  text-align: left;
}

.contact-card a {
  color: var(--pink);
  font-weight: 800;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  background: #25d366;
  color: white;
  border-radius: 999px;
  padding: 14px 18px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
}

footer {
  text-align: center;
  padding: 26px 18px 44px;
  color: var(--muted);
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    justify-content: space-between;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .actions { justify-content: center; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .about { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .brand img { width: 48px; height: 48px; }
  nav { font-size: 0.9rem; gap: 10px; }
  .cards { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .floating-whatsapp {
    left: 18px;
    text-align: center;
  }
}


.btn.social {
  background: white;
  color: var(--lavender);
  border: 2px solid rgba(156, 121, 209, 0.24);
}

.floating-socials {
  position: fixed;
  left: 18px;
  bottom: 18px;
  z-index: 30;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.floating-socials a {
  background: white;
  color: var(--pink);
  border: 1px solid rgba(239, 102, 153, 0.2);
  border-radius: 999px;
  padding: 12px 14px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(0,0,0,0.12);
}

@media (max-width: 560px) {
  .floating-socials {
    position: static;
    padding: 0 18px 12px;
    justify-content: center;
  }
}
