
:root {
  --cream: #fff9f3;
  --blush: #f9dfe7;
  --rose: #f4b8c8;
  --pink: #d92568;
  --berry: #8c204e;
  --sage: #8ea58a;
  --green: #35483b;
  --ink: #3f3a36;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  width: 1px;
}

.menu-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: none;
  padding: 10px;
}

.menu-toggle > span:not(.screen-reader-text) {
  background: var(--berry);
  display: block;
  height: 2px;
  margin: 5px 0;
  width: 24px;
}

.site-header {
  align-items: center;
  backdrop-filter: blur(18px);
  background: rgba(255, 249, 243, 0.9);
  border: 1px solid rgba(217, 37, 104, 0.15);
  border-radius: 28px;
  display: grid;
  gap: 28px;
  grid-template-columns: 170px 1fr auto;
  left: 5%;
  padding: 10px 24px;
  position: absolute;
  top: 24px;
  width: 90%;
  z-index: 10;
}

.brand img {
  display: block;
  height: 78px;
  mix-blend-mode: multiply;
  object-fit: cover;
  object-position: center;
  width: 150px;
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.1vw, 38px);
}

nav a {
  font-size: 14px;
  padding: 12px 0;
  position: relative;
}

nav a::after {
  background: var(--pink);
  bottom: 4px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  width: 100%;
}

nav a:hover::after {
  transform: scaleX(1);
}

.header-whatsapp {
  align-items: center;
  border: 1.5px solid var(--pink);
  border-radius: 999px;
  color: var(--pink);
  display: flex;
  font-weight: 700;
  gap: 8px;
  padding: 14px 18px;
  white-space: nowrap;
}

.header-whatsapp span {
  background: var(--pink);
  border-radius: 50%;
  color: var(--white);
  display: grid;
  height: 28px;
  place-items: center;
  width: 28px;
}

.hero {
  background:
    radial-gradient(circle at 18% 72%, rgba(244, 184, 200, 0.45), transparent 26%),
    linear-gradient(104deg, rgba(255, 249, 243, 0.98) 0%, rgba(255, 249, 243, 0.92) 43%, rgba(255, 249, 243, 0.12) 67%);
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 900px;
  overflow: hidden;
  padding-top: 134px;
  position: relative;
}

.hero::before,
.hero::after {
  border: 1px solid rgba(217, 37, 104, 0.18);
  border-radius: 50%;
  content: "";
  height: 440px;
  left: -170px;
  position: absolute;
  top: 520px;
  width: 440px;
}

.hero::after {
  height: 520px;
  left: -130px;
  top: 580px;
  width: 520px;
}

.hero-copy {
  align-self: center;
  padding: 80px 4vw 48px 7vw;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--pink);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.feature-copy h2,
.contact-section h2 {
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: -0.035em;
}

.hero h1 {
  font-size: clamp(54px, 5.1vw, 82px);
  line-height: 0.98;
  margin: 0;
  max-width: 760px;
}

.hero-text {
  font-size: 21px;
  line-height: 1.65;
  margin: 34px 0 0;
  max-width: 570px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 700;
  gap: 14px;
  justify-content: center;
  min-height: 56px;
  padding: 15px 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  box-shadow: 0 16px 30px rgba(140, 32, 78, 0.18);
  transform: translateY(-2px);
}

.button-primary {
  background: var(--pink);
  box-shadow: 0 10px 24px rgba(217, 37, 104, 0.23);
  color: var(--white);
}

.button-secondary {
  border: 1.5px solid var(--pink);
  color: var(--pink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 84px;
}

.trust-row span {
  color: var(--green);
  font-size: 13px;
}

.hero-art {
  min-height: 760px;
  position: relative;
}

.hero-image {
  background-image: url("../images/hero-botanical.png"), url("../images/glow-pink-reference.jpg");
  background-position: center;
  background-size: cover;
  inset: 0;
  position: absolute;
}

.hero-art::after {
  background: linear-gradient(90deg, var(--cream), transparent 32%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-orbit {
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  height: 620px;
  position: absolute;
  right: -50px;
  top: 80px;
  width: 620px;
  z-index: 2;
}

.delivery-card {
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  bottom: 80px;
  box-shadow: 0 18px 40px rgba(53, 72, 59, 0.14);
  color: var(--berry);
  display: flex;
  flex-direction: column;
  padding: 18px 24px;
  position: absolute;
  right: 7%;
  z-index: 3;
}

.delivery-card span {
  font-size: 13px;
  margin-top: 3px;
}

.section {
  margin: 0 auto;
  max-width: 1240px;
  padding: 112px 32px;
  text-align: center;
}

.section h2,
.feature-copy h2,
.contact-section h2 {
  font-size: clamp(42px, 4vw, 64px);
  line-height: 1.05;
  margin: 0;
}

.section-lead {
  font-size: 18px;
  line-height: 1.7;
  margin: 24px auto 56px;
  max-width: 700px;
}

.product-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, 1fr);
  text-align: left;
}

.product-card {
  background: var(--white);
  border: 1px solid rgba(217, 37, 104, 0.12);
  border-radius: 26px;
  padding: 32px 26px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  box-shadow: 0 22px 50px rgba(140, 32, 78, 0.12);
  transform: translateY(-6px);
}

.product-icon {
  align-items: center;
  background: var(--blush);
  border-radius: 50%;
  color: var(--pink);
  display: flex;
  font-size: 27px;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.product-card h3 {
  color: var(--berry);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
  margin: 24px 0 10px;
}

.product-card p {
  font-size: 15px;
  line-height: 1.65;
}

.product-card a {
  color: var(--pink);
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  margin-top: 12px;
}

.feature-section {
  align-items: center;
  background: var(--blush);
  display: grid;
  gap: 8vw;
  grid-template-columns: 1fr 1fr;
  padding: 100px 7vw;
}

.feature-photo {
  border: 12px solid var(--white);
  border-radius: 42% 42% 24px 24px;
  box-shadow: 0 26px 70px rgba(140, 32, 78, 0.14);
  height: 620px;
  overflow: hidden;
}

.feature-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.feature-copy p:not(.eyebrow),
.feature-copy li {
  font-size: 17px;
  line-height: 1.7;
}

.feature-copy ul {
  list-style: none;
  margin: 28px 0 34px;
  padding: 0;
}

.feature-copy li {
  margin: 12px 0;
  padding-left: 30px;
  position: relative;
}

.feature-copy li::before {
  color: var(--pink);
  content: "♡";
  left: 0;
  position: absolute;
}

.occasion-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 52px;
}

.occasion-list a {
  align-items: center;
  background: var(--white);
  border-radius: 18px;
  color: var(--berry);
  display: flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  gap: 16px;
  padding: 24px;
  text-align: left;
}

.occasion-list span {
  color: var(--pink);
}

.contact-section {
  align-items: center;
  background: var(--berry);
  color: var(--white);
  display: flex;
  gap: 48px;
  justify-content: space-between;
  padding: 80px 9vw;
}

.contact-section h2,
.contact-section .eyebrow {
  color: var(--white);
}

.contact-section p:not(.eyebrow) {
  line-height: 1.7;
  max-width: 700px;
}

.button-light {
  background: var(--white);
  color: var(--berry);
  flex-shrink: 0;
}

footer {
  background: #2f342f;
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  gap: 60px;
  grid-template-columns: 2fr 1fr 1fr;
  padding: 72px 8vw;
}

footer img {
  border-radius: 14px;
  height: 90px;
  object-fit: cover;
  width: 190px;
}

footer div {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

footer strong {
  color: var(--white);
  margin-bottom: 8px;
}

.floating-whatsapp {
  background: #25d366;
  border: 4px solid var(--white);
  border-radius: 50%;
  bottom: 22px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
  color: var(--white);
  display: grid;
  font-size: 25px;
  height: 62px;
  place-items: center;
  position: fixed;
  right: 22px;
  width: 62px;
  z-index: 20;
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 150px auto 1fr;
  }

  nav {
    display: none;
  }

  nav.is-open {
    background: var(--cream);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(140, 32, 78, 0.14);
    display: flex;
    flex-direction: column;
    gap: 2px;
    left: 0;
    padding: 16px 22px;
    position: absolute;
    right: 0;
    top: calc(100% + 10px);
  }

  .menu-toggle {
    display: block;
  }

  .header-whatsapp {
    justify-self: end;
  }

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

  .hero-copy {
    background: rgba(255, 249, 243, 0.88);
    margin: 80px 6vw;
    padding: 55px;
  }

  .hero-art {
    inset: 0;
    position: absolute;
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 20px;
    grid-template-columns: 110px auto 1fr;
    left: 4%;
    padding: 8px 12px;
    top: 12px;
    width: 92%;
  }

  .brand img {
    height: 60px;
    width: 106px;
  }

  .header-whatsapp {
    font-size: 0;
    padding: 8px;
  }

  .header-whatsapp span {
    font-size: 14px;
  }

  .hero {
    min-height: 820px;
    padding-top: 82px;
  }

  .hero-copy {
    margin: 55px 20px;
    padding: 38px 24px;
    text-align: center;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-text {
    font-size: 17px;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .trust-row {
    margin-top: 44px;
  }

  .product-grid,
  .occasion-list,
  footer {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 80px 20px;
  }

  .feature-section {
    grid-template-columns: 1fr;
    padding: 70px 24px;
  }

  .feature-photo {
    height: 460px;
  }

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
    padding: 68px 24px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: rise 0.7s ease both;
  }

  .delivery-card {
    animation: float 4s ease-in-out infinite;
  }

  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes float {
    50% {
      transform: translateY(-6px);
    }
  }
}
