@import url("../fonts/fonts.css");

:root {
  --cream: oklch(0.985 0.012 80);
  --bg: oklch(0.985 0.012 80);
  --fg: oklch(0.24 0.018 50);
  --card: oklch(1 0 0);
  --muted: oklch(0.96 0.012 80);
  --muted-fg: oklch(0.5 0.02 60);
  --secondary: oklch(0.94 0.025 75);
  --border: oklch(0.9 0.015 70);
  --primary: oklch(0.74 0.075 15);
  --primary-fg: oklch(0.99 0.005 80);
  --accent: oklch(0.55 0.06 110);
  --gold: oklch(0.78 0.09 80);
  --shadow-soft: 0 8px 30px -12px oklch(0.5 0.05 30 / 0.12);
  --shadow-card: 0 20px 60px -25px oklch(0.5 0.05 30 / 0.18);
  --gradient-warm: linear-gradient(135deg, oklch(0.97 0.02 75), oklch(0.94 0.04 25));
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.5;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: 0; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.container { max-width: 1240px; margin: 0 auto; padding: 0 1.5rem; }
.balance { text-wrap: balance; }

/* NAV */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  padding: 1.25rem 0;
  transition: all 0.5s cubic-bezier(.22,1,.36,1);
}
.nav.scrolled {
  background: color-mix(in oklab, var(--bg) 85%, transparent);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  padding: 0.75rem 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; }
.brand { display: flex; align-items: center; gap: 0.5rem; color: #fff; }
.brand svg { width: 20px; height: 20px; }
.brand-name { font-family: var(--font-display); font-size: 1.35rem; letter-spacing: 0.02em; }
.nav.scrolled .brand { color: var(--fg); }
.nav.scrolled .brand svg { color: var(--primary); }
.nav-links { display: none; gap: 2rem; align-items: center; }
.nav-links a { font-size: 0.875rem; color: rgba(255,255,255,0.9); transition: opacity .2s; }
.nav-links a:hover { opacity: 0.7; }
.nav.scrolled .nav-links a { color: color-mix(in oklab, var(--fg) 80%, transparent); }
.nav-cta {
  display: none;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--primary-fg);
  font-size: 0.875rem; font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: background .2s;
}
.nav-cta:hover { background: color-mix(in oklab, var(--primary) 90%, black); }
.nav-burger { color: #fff; padding: 0.5rem; }
.nav.scrolled .nav-burger { color: var(--fg); }
@media (min-width: 1024px) {
  .nav-links, .nav-cta { display: inline-flex; }
  .nav-burger { display: none; }
}
.mobile-menu {
  display: none;
  background: var(--bg);
  border-top: 1px solid var(--border);
  margin-top: 0.75rem;
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: color-mix(in oklab, var(--fg) 80%, transparent); }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 720px; overflow: hidden; }
.hero img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: heroZoom 2.4s ease-out both;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.4), rgba(0,0,0,.25), rgba(0,0,0,.55));
}
.hero-content {
  position: relative; z-index: 2; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 0 1.5rem; color: #fff;
}
.eyebrow-light { font-size: 0.75rem; letter-spacing: 0.4em; text-transform: uppercase; color: rgba(255,255,255,0.8); margin-bottom: 1.5rem; }
.hero-content h1 {
  font-size: clamp(3.5rem, 10vw, 9rem);
  color: #fff; line-height: 0.95;
}
.hero-content p {
  margin-top: 2rem; max-width: 36rem;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  color: rgba(255,255,255,0.85); line-height: 1.6;
}
.hero-ctas { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1rem; }
@media (min-width: 640px) { .hero-ctas { flex-direction: row; } }
.btn {
  padding: 1rem 2rem; border-radius: 999px; font-weight: 500;
  transition: all .25s; display: inline-flex; align-items: center; justify-content: center;
}
.btn-primary { background: var(--primary); color: var(--primary-fg); box-shadow: var(--shadow-card); }
.btn-primary:hover { background: color-mix(in oklab, var(--primary) 90%, black); }
.btn-glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn-glass:hover { background: rgba(255,255,255,0.25); }
.scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7); font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
}

/* SECTION */
.section { padding: 6rem 1.5rem; }
@media (min-width: 768px) { .section { padding: 8rem 1.5rem; } }
.section-bg-secondary { background: color-mix(in oklab, var(--secondary) 40%, var(--bg)); }
.section-bg-warm { background: var(--gradient-warm); }
.section-head { max-width: 36rem; margin-bottom: 4rem; }
.eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--accent); font-weight: 500; }
.section-head h2 { margin-top: 1rem; font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.05; }
.section-head p { margin-top: 1.5rem; font-size: 1.125rem; color: var(--muted-fg); line-height: 1.7; }

/* GRID */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2,1fr); } .grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-2 { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } .grid-4 { grid-template-columns: repeat(4,1fr); } }

.card {
  background: var(--card);
  border: 1px solid color-mix(in oklab, var(--border) 70%, transparent);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.card h3 { font-size: 1.5rem; }
.card p { margin-top: 0.75rem; color: var(--muted-fg); line-height: 1.7; }

/* BOUQUET */
.bouquet {
  background: var(--card); border-radius: 1.5rem; overflow: hidden;
  box-shadow: var(--shadow-soft); transition: all .5s; display: flex; flex-direction: column;
}
.bouquet:hover { box-shadow: var(--shadow-card); transform: translateY(-4px); }
.bouquet-img { aspect-ratio: 4 / 5; overflow: hidden; background: var(--secondary); }
.bouquet-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.bouquet:hover .bouquet-img img { transform: scale(1.05); }
.bouquet-body { padding: 1.5rem; }
.bouquet-body h3 { font-size: 1.5rem; }
.bouquet-body p { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-fg); line-height: 1.6; }
.bouquet-meta { margin-top: 1rem; display: flex; justify-content: space-between; align-items: center; font-size: 0.875rem; }
.bouquet-meta .price { color: var(--accent); font-weight: 500; }
.bouquet-meta .order { border-bottom: 1px solid color-mix(in oklab, var(--fg) 30%, transparent); transition: border-color .2s; }
.bouquet:hover .bouquet-meta .order { border-color: var(--fg); }

/* OCCASION */
.occasion {
  background: var(--card);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1.5rem; padding: 2rem; transition: all .25s;
}
.occasion:hover { border-color: color-mix(in oklab, var(--primary) 40%, transparent); box-shadow: var(--shadow-card); }
.occ-icon {
  width: 3rem; height: 3rem; border-radius: 1rem;
  background: var(--secondary); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.occasion:hover .occ-icon { background: color-mix(in oklab, var(--primary) 10%, var(--card)); }
.occasion h3 { font-size: 1.5rem; margin-top: 1.5rem; }
.occasion p { margin-top: 0.5rem; color: var(--muted-fg); line-height: 1.7; }

/* DELIVERY */
.delivery-card {
  background: color-mix(in oklab, var(--card) 80%, transparent);
  backdrop-filter: blur(8px);
  border-radius: 1.5rem; padding: 2rem;
  box-shadow: var(--shadow-soft);
}
.delivery-card svg { color: var(--primary); }
.delivery-card h3 { font-size: 1.5rem; margin-top: 1.25rem; }
.delivery-card p { margin-top: 0.5rem; color: var(--muted-fg); line-height: 1.7; }

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 1rem;
}
@media (min-width: 768px) { .gallery { grid-template-columns: repeat(3, 1fr); grid-auto-rows: 220px; } }
@media (min-width: 1024px) { .gallery { grid-template-columns: repeat(4, 1fr); } }
.gallery > div { overflow: hidden; border-radius: 1.5rem; box-shadow: var(--shadow-soft); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.gallery img:hover { transform: scale(1.05); }
.tall { grid-row: span 2; }

/* REVIEW */
.review {
  background: var(--card); border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1.5rem; padding: 2rem; box-shadow: var(--shadow-soft);
}
.stars { display: flex; gap: 0.25rem; color: var(--gold); }
.stars svg { width: 16px; height: 16px; fill: var(--gold); }
.review blockquote { margin-top: 1.25rem; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; }
.review figcaption { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-fg); }
.review figcaption strong { color: var(--fg); font-weight: 500; }

/* FAQ */
.faq { max-width: 48rem; }
.faq-item {
  background: var(--card);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1rem; padding: 0 1.5rem; margin-bottom: 0.75rem;
}
.faq-trigger {
  width: 100%; padding: 1.25rem 0;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left; font-family: var(--font-display); font-size: 1.25rem; color: var(--fg);
}
.faq-trigger svg { transition: transform .25s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-content {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--muted-fg); line-height: 1.7;
}
.faq-item.open .faq-content { max-height: 400px; padding: 0 0 1.25rem; }

/* CONTACT */
.contact-card {
  background: var(--card);
  border: 1px solid color-mix(in oklab, var(--border) 60%, transparent);
  border-radius: 1.5rem; padding: 2rem;
  display: flex; gap: 1.25rem;
  box-shadow: var(--shadow-soft);
}
.contact-icon {
  width: 3rem; height: 3rem; border-radius: 1rem; flex-shrink: 0;
  background: color-mix(in oklab, var(--primary) 10%, var(--card));
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
}
.contact-card h3 { font-size: 1.5rem; }
.contact-card p { margin-top: 0.5rem; color: var(--muted-fg); white-space: pre-line; line-height: 1.7; }

/* FOOTER */
.footer { border-top: 1px solid color-mix(in oklab, var(--border) 60%, transparent); padding: 3rem 1.5rem; }
.footer-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
@media (min-width: 768px) { .footer-inner { flex-direction: row; } }
.footer-brand { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand svg { color: var(--primary); }
.footer-brand span { font-family: var(--font-display); font-size: 1.35rem; }
.footer p { font-size: 0.875rem; color: var(--muted-fg); }

/* ANIMATIONS */
@keyframes heroZoom { from { transform: scale(1.08); } to { transform: scale(1); } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.fade-up { animation: fadeUp 0.9s cubic-bezier(.22,1,.36,1) both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .25s; }
.delay-3 { animation-delay: .4s; }
