:root {
  --rose: #b0174f;
  --rose-dark: #7f1039;
  --leaf: #23644b;
  --leaf-dark: #143d30;
  --gold: #d9a441;
  --cream: #fff8ef;
  --paper: #ffffff;
  --ink: #25171d;
  --muted: #735f66;
  --shadow: 0 22px 60px rgba(37, 23, 29, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--cream);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6vw;
  background: rgba(255, 248, 239, 0.94);
  border-bottom: 1px solid rgba(176, 23, 79, 0.16);
  backdrop-filter: blur(14px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
}

.logo span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--rose);
  font-family: Georgia, serif;
  font-size: 24px;
}

nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-weight: 700;
}

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

.whatsapp-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 22px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
}

.whatsapp-button {
  color: white;
  background: #1f9d55;
  box-shadow: 0 12px 24px rgba(31, 157, 85, 0.24);
}

.whatsapp-button:hover {
  background: #168346;
}

.secondary-button {
  color: var(--rose-dark);
  border: 1px solid rgba(176, 23, 79, 0.3);
  background: rgba(255, 255, 255, 0.74);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 80px);
  padding: 64px 6vw;
  background:
    radial-gradient(circle at 8% 15%, rgba(217, 164, 65, 0.24), transparent 28%),
    linear-gradient(135deg, #fff8ef 0%, #fff1f5 48%, #eef8f1 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 780px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.92;
}

h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
}

h3 {
  margin: 18px 0 8px;
  font-size: 22px;
}

.hero-copy {
  max-width: 650px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-panel {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  border: 12px solid white;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero-panel img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.hero-badge {
  position: absolute;
  right: 20px;
  bottom: 20px;
  max-width: 260px;
  padding: 18px;
  border-radius: 8px;
  color: white;
  background: rgba(20, 61, 48, 0.9);
}

.hero-badge strong,
.hero-badge span {
  display: block;
}

.hero-badge span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
}

.section {
  padding: 86px 6vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p,
.contact-section p,
.offer-band p,
.flower-card p,
.service-list p {
  color: var(--muted);
  line-height: 1.65;
}

.flower-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.flower-card {
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 16px 42px rgba(37, 23, 29, 0.1);
}

.flower-card img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}

.flower-card h3,
.flower-card p {
  padding: 0 22px;
}

.flower-card p {
  margin: 0;
  padding-bottom: 24px;
}

.offer-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 54px 6vw;
  color: white;
  background: linear-gradient(135deg, var(--leaf-dark), var(--leaf));
}

.offer-band .eyebrow,
.offer-band p {
  color: #ffd98a;
}

.offer-band h2 {
  max-width: 820px;
}

.services {
  background: white;
}

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

.service-list div {
  padding-top: 26px;
  border-top: 3px solid var(--gold);
}

.service-list span {
  color: var(--rose);
  font-weight: 900;
}

.contact-section {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 74px 6vw;
  background: #fff1f5;
}

.large-button {
  min-width: 260px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: #1f9d55;
  box-shadow: 0 14px 34px rgba(31, 157, 85, 0.36);
  font-weight: 900;
}

.opening-popup {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    linear-gradient(rgba(37, 23, 29, 0.62), rgba(37, 23, 29, 0.62)),
    url("https://images.unsplash.com/photo-1490750967868-88aa4486c946?auto=format&fit=crop&w=1600&q=85") center/cover;
}

.opening-popup.is-hidden {
  display: none;
}

.popup-card {
  position: relative;
  width: min(620px, 100%);
  padding: 46px;
  border-radius: 8px;
  background: rgba(255, 248, 239, 0.96);
  box-shadow: var(--shadow);
  text-align: center;
}

.popup-card h2 {
  font-size: clamp(34px, 5vw, 56px);
}

.popup-card p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: white;
  background: var(--rose-dark);
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.popup-button {
  margin-top: 8px;
}

@media (max-width: 900px) {
  .site-header {
    flex-wrap: wrap;
  }

  nav {
    order: 3;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 420px;
  }

  .flower-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .offer-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 5vw;
  }

  .logo strong {
    font-size: 16px;
  }

  .header-button {
    width: 100%;
  }

  nav a {
    font-size: 14px;
  }

  .hero,
  .section,
  .contact-section,
  .offer-band {
    padding-left: 5vw;
    padding-right: 5vw;
  }

  h1 {
    font-size: 52px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions,
  .hero-actions a,
  .contact-section a,
  .offer-band a {
    width: 100%;
  }

  .hero-panel,
  .hero-panel img {
    min-height: 340px;
  }

  .hero-badge {
    right: 12px;
    bottom: 12px;
    left: 12px;
    max-width: none;
  }

  .popup-card {
    padding: 38px 22px 28px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 58px;
    height: 58px;
  }
}
