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

:root {
  --blush:       #f2d9d9;
  --blush-deep:  #e8bfbf;
  --rose:        #c98a8a;
  --cream:       #fdf8f4;
  --parchment:   #f5ede3;
  --sand:        #e8ddd3;
  --sage:        #b8c9b0;
  --sage-deep:   #8fa888;
  --bark:        #7a6a5a;
  --text:        #3d3530;
  --text-muted:  #8a7a70;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans:  'Jost', sans-serif;

  --transition: 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 8px 40px rgba(122, 106, 90, 0.12);
  --shadow-card: 0 4px 24px rgba(122, 106, 90, 0.10);
  --radius: 16px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
  font-weight: 300;
  line-height: 1.7;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--blush-deep); border-radius: 3px; }

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 56px;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

nav.scrolled {
  background: rgba(253, 248, 244, 0.94);
  backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(122,106,90,0.08);
  padding: 14px 56px;
}

.nav-logo {
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: var(--cream);
  text-decoration: none;
  transition: color var(--transition);
}
nav.scrolled .nav-logo { color: var(--text); }

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  transition: color var(--transition);
  position: relative;
}
nav.scrolled .nav-links a { color: var(--text-muted); }

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -3px;
  width: 0; height: 1px;
  background: var(--rose);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--rose) !important; }

#hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: -40px;
  background:
    linear-gradient(160deg, rgba(61,53,48,0.38) 0%, rgba(61,53,48,0.15) 60%, rgba(139,168,136,0.18) 100%),
    url('flowers-background.jpg') center/cover no-repeat;
  transform: translateY(0);
  transition: transform 0.1s linear;
  will-change: transform;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
}

.hero-eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s 0.4s forwards;
}

.hero-title {
  font-family: var(--serif);
  font-size: clamp(3.6rem, 9vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.1s 0.6s forwards;
}
.hero-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--blush);
}

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.82);
  margin-bottom: 48px;
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 0.9s forwards;
}

.hero-btns {
  display: flex;
  gap: 18px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 1s 1.1s forwards;
}

.btn {
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 40px;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  display: inline-block;
}

.btn-primary {
  background: var(--blush);
  color: var(--bark);
}
.btn-primary:hover {
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  transition-delay: 0s;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-2px);
  transition-delay: 0s;
}

.hero-scroll {
  position: absolute;
  bottom: 38px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0;
  animation: fadeUp 1s 1.6s forwards;
}
.scroll-line {
  width: 1px;
  height: 42px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2.2s ease-in-out infinite;
}

.petals-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.petal {
  position: absolute;
  top: -60px;
  width: 14px;
  height: 18px;
  border-radius: 50% 10% 50% 10%;
  opacity: 0;
  animation: petalFall linear infinite;
  will-change: transform, opacity;
}

section { position: relative; }

.section-label {
  font-family: var(--sans);
  font-size: 0.68rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 20px;
}
.section-title em {
  font-style: italic;
  color: var(--rose);
}

.section-sub {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  line-height: 1.8;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.in { opacity: 1; transform: none; transition-delay: 0s; }
.reveal.delay-1 { transition-delay: 0.1s; }
.reveal.delay-2 { transition-delay: 0.22s; }
.reveal.delay-3 { transition-delay: 0.34s; }
.reveal.delay-4 { transition-delay: 0.46s; }
.reveal.delay-5 { transition-delay: 0.58s; }
.reveal.delay-6 { transition-delay: 0.70s; }

#bouquets {
  padding: 120px 56px;
  background: var(--cream);
}

.bouquets-header {
  text-align: center;
  margin-bottom: 72px;
}
.bouquets-header .section-sub {
  margin: 0 auto;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1120px;
  margin: 0 auto;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(122,106,90,0.16);
  transition-delay: 0s;
}

.card-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}
.card:hover .card-img { transform: scale(1.04); }

.card-body {
  padding: 24px 26px 28px;
}

.card-name {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 6px;
}

.card-desc {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.card-price {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
}

.btn-card {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  background: var(--parchment);
  color: var(--bark);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-card:hover {
  background: var(--blush-deep);
  transform: translateY(-1px);
  transition-delay: 0s;
}

#about {
  padding: 100px 56px;
  background: var(--parchment);
}

.about-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 200px 200px var(--radius) var(--radius);
  display: block;
  box-shadow: var(--shadow-soft);
}

.about-accent {
  position: absolute;
  bottom: -24px; right: -24px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: var(--blush);
  z-index: -1;
}

.about-text .section-sub { max-width: 100%; }

.about-quote {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-style: italic;
  font-weight: 300;
  color: var(--rose);
  line-height: 1.5;
  margin: 28px 0 22px;
  padding-left: 24px;
  border-left: 2px solid var(--blush-deep);
}

.about-sig {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-muted);
  margin-top: 24px;
}

#why {
  padding: 100px 56px;
  background: var(--cream);
  text-align: center;
}

.why-inner { max-width: 1060px; margin: 0 auto; }
.why-header { margin-bottom: 72px; }
.why-header .section-sub { margin: 0 auto; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.why-card {
  padding: 48px 36px;
  background: var(--parchment);
  border-radius: var(--radius);
  transition: transform var(--transition), box-shadow var(--transition);
}
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-soft);
  transition-delay: 0s;
}

.why-icon {
  width: 56px; height: 56px;
  margin: 0 auto 24px;
  background: var(--blush);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-icon svg {
  width: 26px; height: 26px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-card h3 {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--text);
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.75;
}

#gallery {
  padding: 100px 56px;
  background: var(--parchment);
}

.gallery-header {
  text-align: center;
  margin-bottom: 56px;
}

.gallery-grid {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}

.g-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.g-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.g-item:nth-child(4) { grid-column: span 2; }

.g-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 1;
  transition: transform 0.7s ease;
}
.g-item:nth-child(1) .g-img { aspect-ratio: auto; min-height: 360px; }
.g-item:nth-child(4) .g-img { aspect-ratio: 2/1; }

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

.g-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,191,191,0.0), rgba(232,191,191,0.3));
  opacity: 0;
  transition: opacity var(--transition);
}
.g-item:hover .g-overlay { opacity: 1; }

#contact {
  padding: 100px 56px 120px;
  background: var(--cream);
}

.contact-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.contact-info .section-title { margin-bottom: 32px; }

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-detail-icon {
  width: 40px; height: 40px;
  min-width: 40px;
  background: var(--parchment);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-detail-icon svg {
  width: 18px; height: 18px;
  stroke: var(--rose);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}
.contact-detail-value {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--text);
}

.form-group {
  margin-bottom: 22px;
}

.form-group label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  background: var(--parchment);
  border: 1.5px solid transparent;
  border-radius: 12px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--blush-deep);
  box-shadow: 0 0 0 4px rgba(232,191,191,0.2);
}

.form-group textarea {
  min-height: 130px;
  resize: vertical;
}

.btn-submit {
  width: 100%;
  padding: 16px;
  background: var(--text);
  color: var(--cream);
  border: none;
  border-radius: 50px;
  font-family: var(--sans);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-submit:hover {
  background: var(--rose);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(201,138,138,0.3);
}

.form-success {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 10px;
}
.form-success p { color: var(--text-muted); font-size: 0.9rem; }

footer {
  background: var(--text);
  color: rgba(253,248,244,0.6);
  text-align: center;
  padding: 36px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
}
footer span { color: var(--blush); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.5; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.12); }
}

@keyframes petalFall {
  0%   { transform: translateY(-60px) rotate(0deg)   translateX(0);    opacity: 0; }
  8%   { opacity: 0.8; }
  85%  { opacity: 0.6; }
  100% { transform: translateY(110vh) rotate(720deg) translateX(80px); opacity: 0; }
}

@media (max-width: 900px) {
  nav { padding: 18px 28px; }
  nav.scrolled { padding: 12px 28px; }
  .nav-links { gap: 24px; }

  #bouquets, #about, #why, #gallery, #contact { padding-left: 28px; padding-right: 28px; }

  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-img { aspect-ratio: 3/2; border-radius: var(--radius); }
  .about-accent { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 20px; max-width: 460px; margin: 0 auto; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .g-item:nth-child(1) { grid-column: span 2; grid-row: span 1; }
  .g-item:nth-child(1) .g-img { aspect-ratio: 16/9; }
  .g-item:nth-child(4) { grid-column: span 2; }
  .contact-inner { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 600px) {
  nav { padding: 16px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-links { display: none; }

  #bouquets, #about, #why, #gallery, #contact { padding-left: 20px; padding-right: 20px; padding-top: 80px; padding-bottom: 80px; }

  .products-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .g-item:nth-child(1), .g-item:nth-child(4) { grid-column: span 1; }
  .g-item:nth-child(4) .g-img { aspect-ratio: 1; }
  .hero-btns { flex-direction: column; align-items: center; }
}