:root {
  --pink: #ff6b9d;
  --pink-soft: #ffb3c9;
  --pink-deep: #e24e90;
  --rose: #ff8fb3;
  --coral: #ff8760;
  --gold: #ffd166;
  --green: #5aa356;
  --ink: #2b2b33;
  --muted: #7a7a85;
  --bg: #fff8fa;
  --card: #ffffff;
  --line: #f3dce4;
  --radius: 22px;
  --shadow: 0 10px 30px rgba(255, 107, 157, 0.14);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

h1, h2, h3 { line-height: 1.15; margin: 0; }

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

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

/* ---------- Navbar ---------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 248, 250, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.navbar-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo { width: 42px; height: 42px; flex: none; }
.brand-name { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.02em; }

.nav-links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-weight: 600;
  color: var(--muted);
}
.nav-links a:hover { color: var(--pink-deep); }

.nav-cta { margin-left: 8px; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.menu-toggle span {
  width: 24px; height: 3px;
  background: var(--ink);
  border-radius: 3px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff;
  box-shadow: 0 8px 20px rgba(255, 107, 157, 0.35);
}
.btn-outline {
  background: #fff;
  color: var(--pink-deep);
  border: 2px solid var(--pink-soft);
}
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 90px 22px 110px;
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 179, 201, 0.5), transparent 40%),
    radial-gradient(circle at 85% 15%, rgba(255, 217, 102, 0.35), transparent 40%),
    radial-gradient(circle at 90% 85%, rgba(255, 143, 179, 0.4), transparent 45%),
    linear-gradient(180deg, #ffe3ee, var(--bg));
}
.hero-content { max-width: 720px; margin: 0 auto; position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-block;
  background: #fff;
  border: 1px solid var(--line);
  padding: 7px 16px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--pink-deep);
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2.4rem, 6vw, 4rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.hero-sub {
  max-width: 540px;
  margin: 20px auto 30px;
  color: var(--muted);
  font-size: 1.1rem;
}
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 34px;
}
.hero-badges span {
  background: #fff;
  border: 1px solid var(--line);
  padding: 9px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* decorative floating blooms */
.hero-deco { position: absolute; inset: 0; pointer-events: none; }
.bloom { position: absolute; opacity: 0.5; filter: blur(0.5px); }
.bloom-1 { top: 14%; left: 8%; transform: scale(2); }
.bloom-2 { top: 6%; right: 8%; transform: scale(1.6); }
.bloom-3 { bottom: 12%; left: 14%; transform: scale(1.4); }
.bloom-4 { bottom: 4%; right: 14%; transform: scale(1.8); }

/* ---------- Sections ---------- */
.section { padding: 72px 22px; }
.section-tint { background: linear-gradient(180deg, #fff, #fbebf2); }
.section-head { text-align: center; margin-bottom: 40px; }
.section-tag {
  display: inline-block;
  color: var(--pink-deep);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-bottom: 8px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}

/* ---------- Grid / cards ---------- */
.grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}
.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}
.card:hover { transform: translateY(-6px) rotate(-1deg); }
.card figcaption h3 { font-size: 1.05rem; margin: 12px 0 4px; }
.card figcaption p { color: var(--muted); margin: 0; font-size: 0.92rem; }

/* ---------- Flower artwork ---------- */
.flower {
  width: 120px;
  height: 120px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* shared petals helper */
.f { position: relative; width: 100%; height: 100%; }

.rose .f { background: radial-gradient(circle at 50% 55%, #7a0f2b, #d81f56 45%, #ff6b9d 70%, #ffb3c9); border-radius: 50%; box-shadow: 0 6px 18px rgba(216,31,86,0.35); animation: sway 4s ease-in-out infinite; }
.rose .f::after { content:""; position:absolute; inset:18%; border-radius:50%; background: radial-gradient(circle, #c2185b, transparent 70%); }

.tulip .f { width: 70px; height: 80px; background: linear-gradient(90deg, #ff3d78, #ff6b9d 50%, #ff3d78); border-radius: 55% 55% 40% 40%; box-shadow: 0 6px 18px rgba(255,61,120,0.35); animation: sway 4.5s ease-in-out infinite 0.2s; }
.tulip .f::after { content:""; position:absolute; bottom:0; left:50%; transform:translateX(-50%); width:4px; height:46px; border-radius:4px; background: var(--green); }

.sunflower .f { background: radial-gradient(circle, #6b4700 0 18%, #a8720f 26%, #3d2a00 34%, transparent 36%); box-shadow: 0 6px 18px rgba(255,183,0,0.3); animation: spin 12s linear infinite; }
.sunflower .f::before, .sunflower .f::after { content:""; position:absolute; border-radius:50%; }
.sunflower .f::before { inset:14%; background: radial-gradient(circle, #ffb300 0 26%, #ffd166 40%, transparent 68%); }
.sunflower .f::after { inset:30%; background: radial-gradient(circle, #6b4700, #3d2a00); }

.lily .f { background: radial-gradient(circle at 50% 40%, #e0e8ff 0 30%, #9fbaff 55%, #6a86e0); border-radius: 50% 50% 45% 45%; box-shadow: 0 6px 18px rgba(106,134,224,0.35); animation: sway 5s ease-in-out infinite 0.4s; }
.lily .f::after { content:""; position:absolute; inset:22%; background: radial-gradient(circle, #ffd166 0 24%, transparent 40%); }

.daisy .f { background: radial-gradient(circle, #ffc400 0 22%, #ffe08a 26%, transparent 34%); animation: spin 14s linear infinite; }
.daisy .f::before { content:""; position:absolute; inset:8%; background: conic-gradient(from 0deg, #fff, #fffdf5 20%, #f2f2f2 40%, #fff 55%, #fffdf5 75%, #e9e9e9 90%, #fff); border-radius:50%; -webkit-mask:radial-gradient(circle, transparent 26%, #000 28%); mask:radial-gradient(circle, transparent 26%, #000 28%); }
.daisy .f::after { content:""; position:absolute; inset:34%; background:#ffd166; border-radius:50%; box-shadow: 0 0 8px rgba(255,196,0,0.6); }

.orchid .f { background: radial-gradient(circle, #a64fff 0 26%, #cf7bff 42%, #e8b6ff 60%, transparent 62%); box-shadow: 0 6px 18px rgba(166,79,255,0.35); animation: sway 4.2s ease-in-out infinite 0.6s; }
.orchid .f::after { content:""; position:absolute; inset:30%; background: radial-gradient(circle, #ffd166 0 30%, #fff3c4 45%, transparent 55%); border-radius: 50%; }

.honeysuckle .f { background: conic-gradient(#ff8fb3 0 60deg, #ffd166 60deg 120deg, #ff8fb3 120deg 180deg, #ffd166 180deg 240deg, #ff8fb3 240deg 300deg, #ffd166 300deg); border-radius:50%; box-shadow: 0 6px 18px rgba(255,143,179,0.35); animation: spin 16s linear infinite; }
.honeysuckle .f::after { content:""; position:absolute; inset:32%; background: radial-gradient(circle, #ff6b9d 0 30%, #ffd166 55%); border-radius:50%; }

.hydrangea .f { background: radial-gradient(circle, #6aa5ff 0 20%, #8fc1ff 40%, #bcd8ff 62%, transparent 64%); box-shadow: 0 6px 18px rgba(106,165,255,0.35); animation: sway 4.7s ease-in-out infinite 0.3s; }
.hydrangea .f::before { content:""; position:absolute; inset:12%; background: radial-gradient(circle, #6aa5ff 0 18%, #8fc1ff 35%, transparent 60%); }
.hydrangea .f::after { content:""; position:absolute; inset:34%; background: radial-gradient(circle, #cfe6ff, #eaf4ff); border-radius:50%; }

@keyframes sway { 0%,100% { transform: rotate(-4deg) } 50% { transform: rotate(5deg) } }
@keyframes spin { to { transform: rotate(360deg) } }
@keyframes floaty { 0%,100% { transform: translateY(0) rotate(var(--r,0deg)) } 50% { transform: translateY(-16px) rotate(var(--r,0deg)) } }

/* ---------- Services ---------- */
.services { max-width: 860px; }
.service {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
  box-shadow: var(--shadow);
}
.service-icon { font-size: 2.4rem; display: block; margin-bottom: 12px; }
.service h3 { margin-bottom: 8px; font-size: 1.12rem; }
.service p { color: var(--muted); margin: 0; font-size: 0.95rem; }

/* ---------- Delivery ---------- */
.delivery {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.delivery-art { display: flex; justify-content: center; }
.truck { width: 100%; max-width: 320px; }
.truck .bouquet { animation: floaty 3s ease-in-out infinite; }
.delivery-points { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.delivery-points li { font-weight: 600; }

/* ---------- Contact ---------- */
.contact {
  max-width: 900px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 26px;
  align-items: stretch;
}
.contact-card, .contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.contact-card { display: flex; flex-direction: column; gap: 16px; }
.contact-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--line);
}
.contact-label { color: var(--muted); font-weight: 600; }
.contact-value { font-weight: 700; }
.contact-card .btn-whatsapp { margin-top: auto; text-align: center; }

.contact-form h3 { margin-bottom: 16px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 12px;
  font-family: inherit;
  font-size: 1rem;
  background: var(--bg);
  color: var(--ink);
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--pink); }
.form-msg { font-weight: 700; }
.form-msg.ok { color: var(--green); }

/* ---------- Social ---------- */
.social {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
}
.social-link {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.25rem;
  transition: transform 0.15s ease;
}
.social-link:hover { transform: translateY(-4px) scale(1.05); }
.fb  { background: #1877f2; }
.ig  { background: radial-gradient(circle at 30% 30%, #f9ce34, #ee2a7b 50%, #6228d7); }
.tt  { background: #111; }
.x   { background: #000; }
.pin { background: #e60023; }

/* ---------- Footer ---------- */
.footer {
  background: #3a2433;
  color: #f5e6ee;
  padding: 40px 22px 24px;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr auto;
  gap: 30px;
  align-items: start;
}
.footer strong { font-size: 1.05rem; display: block; margin-bottom: 6px; }
.footer p { margin: 0; opacity: 0.9; font-size: 0.95rem; line-height: 1.7; }
.footer-copy { align-self: end; opacity: 0.7; font-size: 0.85rem; }

/* ---------- Responsive ---------- */
@media (max-width: 820px) {
  .nav-links, .nav-cta { display: none; }
  .menu-toggle { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 16px 22px;
    gap: 14px;
    margin: 0;
  }
  .delivery, .contact { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
}