:root {
  --rose: #e75480;
  --rose-dark: #c9406a;
  --blush: #fdeef3;
  --cream: #fffaf5;
  --ink: #3a2a2f;
  --muted: #8a6f78;
  --green: #5a8f6b;
  --gold: #d9a441;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 5%;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #f3e0e8;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 1px;
}

.logo span {
  color: var(--rose);
}

.nav {
  display: flex;
  gap: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.9rem;
}

.nav a {
  transition: color 0.2s;
}

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

.phone-cta {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  color: #fff;
  background: var(--rose);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.phone-cta:hover {
  background: var(--rose-dark);
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
  padding: 4rem 5%;
  min-height: 70vh;
  background: linear-gradient(120deg, var(--blush), var(--cream));
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-content p {
  color: var(--muted);
  font-size: 1.1rem;
  max-width: 34rem;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.btn {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: bold;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  transition: transform 0.15s, background 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: #fff;
  background: var(--rose);
}

.btn-primary:hover {
  background: var(--rose-dark);
}

.btn-outline {
  color: var(--rose);
  border: 2px solid var(--rose);
}

.btn-outline:hover {
  background: var(--rose);
  color: #fff;
}

/* Blossom (CSS flower) */
.hero-blossom,
.about-art {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto;
}

.petal {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 90px;
  background: radial-gradient(circle at 30% 30%, #ff9db8, var(--rose));
  border-radius: 50% 50% 50% 0;
  transform-origin: 0 0;
  box-shadow: 0 4px 12px rgba(231, 84, 128, 0.25);
}

.p1 { transform: rotate(0deg) translate(-50%, -50%); }
.p2 { transform: rotate(45deg) translate(-50%, -50%); }
.p3 { transform: rotate(90deg) translate(-50%, -50%); }
.p4 { transform: rotate(135deg) translate(-50%, -50%); }
.p5 { transform: rotate(180deg) translate(-50%, -50%); }
.p6 { transform: rotate(225deg) translate(-50%, -50%); }
.p7 { transform: rotate(270deg) translate(-50%, -50%); }
.p8 { transform: rotate(315deg) translate(-50%, -50%); }

.core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(217, 164, 65, 0.25);
}

/* Sections */
.section {
  padding: 4rem 5%;
}

.section.alt {
  background: var(--blush);
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  text-align: center;
  margin-bottom: 0.5rem;
}

.section-sub {
  text-align: center;
  color: var(--muted);
  margin-bottom: 2.5rem;
}

/* Branches */
.branch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.branch {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(58, 42, 47, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.branch:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(58, 42, 47, 0.14);
}

.branch-logo {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--blush);
}

.branch-logo svg {
  width: 40px;
  height: 40px;
}

.branch h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
}

.branch-addr {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.branch-phone {
  display: inline-block;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  color: var(--rose);
  margin-bottom: 0.4rem;
}

.branch-hours {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  color: var(--muted);
}

/* Gallery */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.g-item {
  height: 180px;
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: 1rem;
  color: #fff;
  font-weight: bold;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
  background-size: cover;
  background-position: center;
  transition: transform 0.2s;
}

.g-item:hover {
  transform: scale(1.03);
}

.g-rose { background: radial-gradient(circle at 30% 30%, #ff9db8, #9a2b52); }
.g-tulip { background: radial-gradient(circle at 30% 30%, #ffb6c1, #c9406a); }
.g-sun { background: radial-gradient(circle at 30% 30%, #ffd76a, #d9a441); }
.g-lily { background: radial-gradient(circle at 30% 30%, #f5d6e0, #b76e8f); }
.g-orchid { background: radial-gradient(circle at 30% 30%, #d9a6c9, #7b3a6b); }
.g-mix { background: radial-gradient(circle at 30% 30%, #ff9db8, #5a8f6b); }

/* Delivery */
.delivery {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.truck {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.truck-box {
  position: relative;
  height: 130px;
  background: linear-gradient(135deg, var(--rose), var(--rose-dark));
  border-radius: 14px;
  margin-right: 70px;
}

.truck-flower {
  position: absolute;
  top: 50%;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.f1 { left: 14%; background: var(--gold); }
.f2 { left: 44%; background: #fff; }
.f3 { left: 74%; background: var(--gold); }

.truck-cab {
  position: absolute;
  right: 0;
  top: 34px;
  width: 90px;
  height: 96px;
  background: var(--rose-dark);
  border-radius: 14px 14px 0 0;
}

.wheel {
  position: absolute;
  bottom: -14px;
  width: 40px;
  height: 40px;
  background: var(--ink);
  border-radius: 50%;
  border: 8px solid #d9d4d0;
}

.w1 { left: 40px; }
.w2 { right: 30px; }

.delivery-info p {
  color: var(--muted);
  margin-bottom: 0.9rem;
}

.delivery-info strong {
  color: var(--ink);
}

.delivery-info .btn {
  margin-top: 0.5rem;
}

/* Team */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.member {
  text-align: center;
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem 1rem;
  box-shadow: 0 6px 20px rgba(58, 42, 47, 0.08);
}

.avatar {
  width: 84px;
  height: 84px;
  margin: 0 auto 0.8rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--blush);
}

.avatar svg {
  width: 100%;
  height: 100%;
}

.member h4 {
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}

.member p {
  color: var(--muted);
  font-size: 0.85rem;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 1rem 1rem 1.5rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(58, 42, 47, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(58, 42, 47, 0.14);
}

.card-art {
  height: 160px;
  border-radius: 12px;
  margin-bottom: 1rem;
  background-size: cover;
  background-position: center;
}

.rose { background: linear-gradient(135deg, #e75480, #9a2b52); }
.tulip { background: linear-gradient(135deg, #ffb6c1, #c9406a); }
.sunflower { background: linear-gradient(135deg, #ffd76a, #d9a441); }
.bouquet { background: linear-gradient(135deg, #ff9db8, #5a8f6b); }

.card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.3rem;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* About */
.about {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.about-text .section-title {
  text-align: left;
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1rem;
}

/* Contact */
.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: 0 6px 20px rgba(58, 42, 47, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(58, 42, 47, 0.14);
}

.contact-icon {
  font-size: 2rem;
}

.contact-label {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--muted);
}

.contact-value {
  font-weight: bold;
  color: var(--rose);
}

/* Footer */
.site-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 5%;
  background: var(--ink);
  color: #f3e0e8;
  font-size: 0.85rem;
}

.socials {
  display: flex;
  gap: 1.5rem;
  font-family: Arial, Helvetica, sans-serif;
}

.socials a {
  transition: color 0.2s;
}

.socials a:hover {
  color: var(--rose);
}

/* Responsive */
@media (max-width: 760px) {
  .nav {
    display: none;
  }

  .hero,
  .about,
  .delivery {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-blossom,
  .about-art {
    width: 200px;
    height: 200px;
  }

  .petal {
    width: 70px;
    height: 70px;
  }

  .about-text .section-title {
    text-align: center;
  }
}