:root {
  --milk: #fffaf3;
  --cream: #f7efe4;
  --linen: #efe2d3;
  --rose: #d9a5a5;
  --rose-deep: #a86f72;
  --sage: #7f8a70;
  --ink: #342a24;
  --muted: #7b6c62;
  --white: rgba(255, 255, 255, 0.72);
  --shadow: 0 24px 70px rgba(91, 67, 50, 0.13);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--milk);
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.5;
}

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

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

button {
  font: inherit;
}

.topbar {
  position: fixed;
  z-index: 10;
  top: 18px;
  left: 50%;
  width: min(1120px, calc(100% - 32px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  background: rgba(255, 250, 243, 0.58);
  box-shadow: 0 18px 50px rgba(87, 61, 45, 0.11);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: "Playfair Display", serif;
  font-size: 20px;
  font-weight: 700;
}

.brand span:last-child {
  color: var(--rose-deep);
}

.nav-links {
  display: flex;
  gap: 26px;
  color: rgba(52, 42, 36, 0.78);
  font-size: 14px;
  font-weight: 500;
}

.nav-links a,
.nav-cta {
  transition: color 220ms ease, background 220ms ease;
}

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

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--rose-deep);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px max(24px, calc((100vw - 1120px) / 2)) 86px;
  background: var(--cream) url("before.webp") center center / cover no-repeat;
  isolation: isolate;
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  z-index: -5;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1.18) translate(4.6%, 2.8%);
  transform-origin: center center;
  opacity: 0;
  filter: saturate(1.03) brightness(1.02);
  transition: opacity 1200ms ease, transform 1600ms ease;
  will-change: transform, opacity;
  pointer-events: none;
}

body.is-loaded .hero-video,
.hero-video.is-ready {
  opacity: 1;
}

.hero-overlay {
  z-index: -4;
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.88) 0%, rgba(255, 250, 243, 0.6) 42%, rgba(255, 245, 234, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.03) 0%, rgba(247, 226, 212, 0.64) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  z-index: -3;
  inset: -18% -10% auto auto;
  width: min(620px, 58vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 235, 220, 0.58) 0%, rgba(255, 235, 220, 0.28) 35%, rgba(255, 235, 220, 0) 70%);
  filter: blur(28px);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(255, 250, 243, 0) 0%, var(--milk) 100%);
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(48px, 6.9vw, 86px);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(38px, 5.6vw, 72px);
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.15;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 24px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 15px 24px;
  border: 1px solid rgba(168, 111, 114, 0.28);
  border-radius: 999px;
  font-weight: 700;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease;
}

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

.button.primary {
  background: #a86f72;
  color: #fffaf7;
  box-shadow: 0 18px 38px rgba(168, 111, 114, 0.24);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.66);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  width: 28px;
  height: 44px;
  transform: translateX(-50%);
  border: 1px solid rgba(52, 42, 36, 0.25);
  border-radius: 999px;
  display: grid;
  place-items: start center;
  padding-top: 9px;
}

.scroll-cue span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--rose-deep);
  animation: floatDown 1.8s ease-in-out infinite;
}

.section-shell {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

[id] {
  scroll-margin-top: 110px;
}

.intro-band {
  padding: 74px 0 64px;
  background: linear-gradient(180deg, var(--milk), #f4eadc);
}

.intro-grid,
.mood-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 5vw, 74px);
  align-items: end;
}

.intro-text,
.mood-copy p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.popular,
.benefits,
.faq-section {
  padding: 92px 0;
}

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

.popular-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  grid-template-rows: auto 1fr;
  gap: 18px;
}

.bouquet-card,
.benefit,
.review,
.faq,
.contact-panel {
  border: 1px solid rgba(168, 111, 114, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow);
}

.bouquet-card {
  overflow: hidden;
}

.bouquet-card.featured {
  grid-row: span 2;
}

.image-wrap,
.mag-card {
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.bouquet-card:hover img,
.mag-card:hover img {
  transform: scale(1.045);
}

.featured .image-wrap {
  height: 520px;
}

.popular-layout > .bouquet-card:not(.featured) .image-wrap {
  height: 250px;
}

.card-content {
  padding: 24px;
}

.card-content span,
.mag-card span,
.benefit span {
  color: var(--rose-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card-content p,
.benefit p,
.review p,
.faq p {
  color: var(--muted);
}

.card-content strong {
  display: inline-block;
  margin-top: 6px;
  color: var(--ink);
}

.soft-card {
  display: flex;
  align-items: end;
  min-height: 246px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), rgba(255, 228, 224, 0.7)),
    #f4dcd8;
}

.catalog-band {
  padding: 92px 0;
  background:
    linear-gradient(180deg, #f2e5d6 0%, #fff8f0 100%);
}

.magazine-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: 250px 250px 340px;
  grid-template-areas:
    "date birthday birthday"
    "date mom nopurpose"
    "premium premium nopurpose";
  gap: 16px;
}

.mag-card {
  position: relative;
  display: flex;
  align-items: end;
  min-height: 0;
  padding: 22px;
  border-radius: var(--radius);
  color: #fffaf7;
  background: #d8afa7;
  box-shadow: 0 24px 68px rgba(91, 67, 50, 0.18);
}

.mag-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(52, 42, 36, 0.08) 0%, rgba(52, 42, 36, 0.2) 45%, rgba(52, 42, 36, 0.68) 100%),
    linear-gradient(90deg, rgba(52, 42, 36, 0.14), rgba(52, 42, 36, 0));
}

.mag-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms ease;
}

.mag-card > div {
  position: relative;
  z-index: 1;
}

.mag-card h3 {
  max-width: 520px;
  margin: 8px 0 0;
  text-shadow: 0 2px 18px rgba(52, 42, 36, 0.38);
}

.mag-card.tall {
  grid-area: date;
}

.mag-card.wide {
  grid-area: birthday;
}

.mag-card.blush {
  grid-area: nopurpose;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(255, 250, 243, 0.8), rgba(224, 174, 171, 0.58)),
    #f3dbd5;
}

.mag-card.blush::after {
  background: linear-gradient(180deg, rgba(255, 250, 243, 0) 0%, rgba(255, 250, 243, 0.26) 100%);
}

.mag-card.premium {
  grid-area: premium;
}

.mag-card:nth-child(3) {
  grid-area: mom;
}

.mood-section {
  padding: 82px 0;
  background: #f9f1e8;
}

.mood-section .section-shell {
  width: min(1060px, calc(100% - 96px));
}

.mood-copy {
  max-width: 520px;
}

.mood-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.mood-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  border: 1px solid rgba(168, 111, 114, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 16px 42px rgba(91, 67, 50, 0.1);
  transition: transform 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.mood-card:hover {
  transform: translateY(-3px);
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fffaf7;
}

.mood-card:last-child {
  grid-column: 1 / -1;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.benefit {
  min-height: 230px;
  padding: 24px;
}

.benefit h3 {
  margin-top: 36px;
}

.reviews-band {
  padding: 92px 0;
  background: linear-gradient(135deg, #efe1d2, #fff8f2 58%, #ead6d3);
}

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

.review {
  margin: 0;
  padding: 28px;
}

.review p {
  min-height: 126px;
  margin-bottom: 24px;
  font-size: 18px;
}

.review cite {
  font-style: normal;
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq {
  padding: 8px 24px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 0;
  font-size: 18px;
  font-weight: 800;
}

.faq p {
  margin-bottom: 20px;
}

.contacts {
  padding: 72px 0 34px;
  background: #eee0d3;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding: clamp(28px, 5vw, 54px);
  background:
    linear-gradient(90deg, rgba(255, 250, 243, 0.82), rgba(255, 250, 243, 0.58)),
    url("bouquet-premium.webp") center/cover;
}

.contact-panel h2 {
  max-width: 740px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 760ms ease, transform 760ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatDown {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.7;
  }
  50% {
    transform: translateY(16px);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 900px) {
  .topbar {
    top: 12px;
  }

  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 116px;
  }

  .intro-grid,
  .mood-grid,
  .popular-layout,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .featured .image-wrap,
  .popular-layout > .bouquet-card:not(.featured) .image-wrap {
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .magazine-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 330px 250px 290px;
    grid-template-areas:
      "date birthday"
      "mom nopurpose"
      "premium premium";
  }

  .mag-card,
  .mag-card.tall,
  .mag-card.wide,
  .mag-card.premium {
    min-height: 330px;
  }

  .benefit-grid,
  .reviews {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .review p {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: calc(100% - 22px);
    padding: 10px 10px 10px 14px;
  }

  .brand {
    font-size: 18px;
  }

  .nav-cta {
    padding: 9px 14px;
  }

  .hero {
    min-height: 100svh;
    padding-inline: 20px;
  }

  .hero-video {
    object-position: 48% center;
    transform: scale(1.24) translate(5.6%, 2.6%);
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 250, 243, 0.9) 0%, rgba(255, 250, 243, 0.68) 100%),
      linear-gradient(180deg, rgba(255, 250, 243, 0.04) 0%, rgba(247, 226, 212, 0.72) 100%);
  }

  h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  h2 {
    font-size: clamp(34px, 11vw, 46px);
  }

  .button {
    width: 100%;
  }

  .section-shell {
    width: min(100% - 28px, 1120px);
  }

  .mood-section .section-shell {
    width: min(100% - 44px, 1120px);
  }

  .intro-band,
  .popular,
  .catalog-band,
  .mood-section,
  .benefits,
  .reviews-band,
  .faq-section {
    padding: 66px 0;
  }

  .magazine-grid,
  .mood-cards,
  .benefit-grid,
  .reviews {
    grid-template-columns: 1fr;
  }

  .magazine-grid {
    grid-template-areas:
      "date"
      "birthday"
      "mom"
      "nopurpose"
      "premium";
    grid-template-rows: none;
  }

  .mag-card,
  .mag-card.tall,
  .mag-card.wide,
  .mag-card.premium {
    min-height: 360px;
  }

  .mood-card,
  .mood-card:last-child {
    grid-column: auto;
  }

  .benefit {
    min-height: auto;
  }

  .benefit h3 {
    margin-top: 24px;
  }

  .contact-actions {
    width: 100%;
  }
}
