/* ============================================
   NOIR PETALS — Luxury Florist (Static)
   ============================================ */

/* Fonts */
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-400.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/cormorant-500.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/cormorant-600.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: normal; font-weight: 700; font-display: swap; src: url('../fonts/cormorant-700.ttf') format('truetype'); }
@font-face { font-family: 'Cormorant Garamond'; font-style: italic; font-weight: 400; font-display: swap; src: url('../fonts/cormorant-italic.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 300; font-display: swap; src: url('../fonts/inter-300.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../fonts/inter-400.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../fonts/inter-500.ttf') format('truetype'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../fonts/inter-600.ttf') format('truetype'); }

/* Tokens */
:root {
  --bg: hsl(0, 0%, 4%);
  --bg-soft: hsl(350, 40%, 8%);
  --card: hsl(0, 0%, 7%);
  --ivory: hsl(38, 38%, 92%);
  --muted: hsl(38, 10%, 62%);
  --border: hsl(0, 0%, 15%);
  --gold: hsl(41, 55%, 56%);
  --gold-glow: hsl(41, 80%, 70%);
  --burgundy: hsl(350, 65%, 24%);
  --burgundy-deep: hsl(350, 70%, 14%);

  --gradient-noir: linear-gradient(180deg, hsl(0 0% 4%) 0%, hsl(350 40% 8%) 100%);
  --gradient-gold: linear-gradient(135deg, hsl(41 55% 56%) 0%, hsl(41 80% 70%) 100%);
  --shadow-gold: 0 10px 40px -10px hsl(41 55% 56% / 0.35);
  --shadow-glow: 0 0 60px hsl(41 80% 70% / 0.25);
  --ease-luxe: cubic-bezier(0.65, 0, 0.35, 1);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--gradient-noir);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; cursor: pointer; font: inherit; }
ul { list-style: none; }
::selection { background: hsl(41 55% 56% / 0.3); color: var(--gold-glow); }

/* Helpers */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; }
.font-display { font-family: 'Cormorant Garamond', serif; }
.italic { font-style: italic; }
.text-gold { color: var(--gold); }
.text-muted { color: var(--muted); }
.tracking-luxe { letter-spacing: 0.25em; text-transform: uppercase; }
.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.gold-divider { display:inline-block; height: 1px; width: 60px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.section-eyebrow { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.section-title { font-family: 'Cormorant Garamond', serif; font-weight: 500; color: var(--ivory); font-size: clamp(2.25rem, 5vw, 3.75rem); line-height: 1.1; margin-top: 1rem; }
.section-pad { padding: 8rem 0; }

/* Animations */
@keyframes fade-up { from { opacity: 0; transform: translateY(30px);} to { opacity: 1; transform: translateY(0);} }
@keyframes shimmer { 0%,100%{opacity:.6;} 50%{opacity:1;} }
@keyframes slow-zoom { from { transform: scale(1);} to { transform: scale(1.08);} }
@keyframes petal-fall {
  0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; }
  10% { opacity: 0.7; }
  90% { opacity: 0.5; }
  100% { transform: translateY(110vh) translateX(80px) rotate(360deg); opacity: 0; }
}
.animate-fade-up { animation: fade-up 1.2s var(--ease-luxe) both; }
.animate-shimmer { animation: shimmer 3s ease-in-out infinite; }
.animate-slow-zoom { animation: slow-zoom 18s ease-out forwards; }

.reveal { opacity: 0; transform: translateY(30px); transition: opacity 1s var(--ease-luxe), transform 1s var(--ease-luxe); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Petals */
.petals { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 10; }
.petal {
  position: absolute; width: 18px; height: 18px;
  background: radial-gradient(circle at 30% 30%, hsl(350 70% 35%), hsl(350 80% 18%));
  border-radius: 80% 0 80% 0;
  animation: petal-fall 18s linear infinite;
  filter: blur(0.3px);
}

/* Navbar */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: hsl(0 0% 4% / 0.7);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid hsl(0 0% 15% / 0.4);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; padding: 1.25rem 0; }
.nav__brand { display:flex; align-items:center; gap: .5rem; }
.nav__brand-mark { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; }
.nav__brand-text { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.25em; text-transform: uppercase; font-size: 1.125rem; color: var(--ivory); }
.nav__brand-text span { color: var(--gold); }
.nav__links { display: none; align-items: center; gap: 2.5rem; }
.nav__links a { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); transition: color .5s var(--ease-luxe); }
.nav__links a:hover { color: var(--gold); }
.nav__cart { display:none; align-items:center; gap:.5rem; font-size:.7rem; letter-spacing:.25em; text-transform:uppercase; color: var(--ivory); transition: color .4s; }
.nav__cart:hover { color: var(--gold); }
.nav__toggle { color: var(--ivory); display: flex; }
.nav__toggle svg { width: 24px; height: 24px; }
.nav__mobile { display: none; border-top: 1px solid hsl(0 0% 15% / 0.4); background: hsl(0 0% 4% / 0.95); }
.nav__mobile.open { display: block; }
.nav__mobile ul { padding: 1.5rem 0; display: flex; flex-direction: column; gap: 1.25rem; }
.nav__mobile a { font-size: 0.8rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); }
.nav__mobile a:hover { color: var(--gold); }
@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cart { display: flex; }
  .nav__toggle { display: none; }
}
@media (min-width: 768px) { .nav__cart { display: flex; } }

/* Buttons */
.btn { display: inline-block; padding: 1rem 2.5rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; transition: all .7s var(--ease-luxe); cursor: pointer; }
.btn--primary { background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy)); color: var(--ivory); border: 1px solid hsl(41 55% 56% / 0.3); }
.btn--primary:hover { border-color: var(--gold); box-shadow: var(--shadow-glow); }
.btn--ghost { color: var(--ivory); border: 1px solid hsl(38 38% 92% / 0.2); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn--gold { background: var(--gold); color: var(--bg); padding: 1.25rem 3rem; }
.btn--gold:hover { background: var(--gold-glow); box-shadow: var(--shadow-glow); }

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__overlay-1 { position: absolute; inset: 0; background: linear-gradient(90deg, var(--bg) 0%, hsl(0 0% 4% / 0.7) 50%, hsl(0 0% 4% / 0.3) 100%); }
.hero__overlay-2 { position: absolute; inset: 0; background: linear-gradient(180deg, hsl(0 0% 4% / 0.6) 0%, transparent 50%, var(--bg) 100%); }
.hero__inner { position: relative; z-index: 20; padding: 8rem 0; }
.hero__content { max-width: 640px; }
.hero__eyebrow { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.hero__eyebrow span:last-child { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); }
.hero__title { font-family: 'Cormorant Garamond', serif; font-weight: 400; color: var(--ivory); font-size: clamp(3rem, 8vw, 6rem); line-height: 1.05; margin-bottom: 2rem; }
.hero__subtitle { color: var(--muted); font-size: 1.05rem; max-width: 520px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 20; display: flex; flex-direction: column; align-items: center; gap: .75rem; color: var(--muted); }
.hero__scroll span { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; }
.hero__scroll-line { width: 1px; height: 3rem; background: linear-gradient(180deg, var(--gold), transparent); }

/* Categories */
.cats { position: relative; }
.cats__head { text-align: center; margin-bottom: 5rem; }
.cats__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: hsl(0 0% 15% / 0.5); }
@media (min-width: 768px) { .cats__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cats__grid { grid-template-columns: repeat(3, 1fr); } }
.cat {
  position: relative; background: var(--bg); padding: 3rem; transition: background .7s var(--ease-luxe); cursor: pointer; overflow: hidden;
}
.cat::before { content:''; position: absolute; inset: 0; opacity: 0; transition: opacity .7s var(--ease-luxe); background: linear-gradient(135deg, hsl(350 70% 14% / 0.2), transparent); }
.cat:hover { background: var(--card); }
.cat:hover::before { opacity: 1; }
.cat > * { position: relative; }
.cat__icon { width: 40px; height: 40px; color: var(--gold); margin-bottom: 2rem; transition: transform .7s var(--ease-luxe); stroke-width: 1; }
.cat:hover .cat__icon { transform: scale(1.1); }
.cat__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--ivory); margin-bottom: .75rem; }
.cat__desc { font-size: 0.875rem; color: var(--muted); }
.cat__arrow { margin-top: 2rem; font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); opacity: 0; transition: opacity .7s var(--ease-luxe); }
.cat:hover .cat__arrow { opacity: 1; }

/* Products */
.products { background: hsl(350 65% 24% / 0.05); border-top: 1px solid hsl(0 0% 15% / 0.4); border-bottom: 1px solid hsl(0 0% 15% / 0.4); }
.products__head { display: flex; flex-direction: column; gap: 1.5rem; margin-bottom: 5rem; }
@media (min-width: 768px) { .products__head { flex-direction: row; align-items: flex-end; justify-content: space-between; } }
.products__intro { max-width: 360px; font-size: 0.875rem; color: var(--muted); }
.products__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .products__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products__grid { grid-template-columns: repeat(3, 1fr); } }
.product { background: var(--card); border: 1px solid hsl(0 0% 15% / 0.6); transition: all .7s var(--ease-luxe); overflow: hidden; }
.product:hover { border-color: hsl(41 55% 56% / 0.5); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.product__img { aspect-ratio: 4/5; overflow: hidden; background: var(--card); }
.product__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.5s var(--ease-luxe); }
.product:hover .product__img img { transform: scale(1.05); }
.product__body { padding: 2rem; }
.product__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--ivory); margin-bottom: .5rem; }
.product__desc { font-size: 0.875rem; color: var(--muted); margin-bottom: 1.5rem; }
.product__foot { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid hsl(0 0% 15% / 0.6); padding-top: 1.5rem; }
.product__price { color: var(--gold); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }
.product__cta { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--ivory); transition: color .4s; }
.product__cta:hover { color: var(--gold); }

/* Delivery */
.delivery__head { text-align: center; margin-bottom: 4rem; }
.delivery__map { position: relative; border: 1px solid hsl(0 0% 15% / 0.6); overflow: hidden; }
.delivery__map img { width: 100%; opacity: 0.8; }
.delivery__map::after { content:''; position:absolute; inset: 0; background: linear-gradient(180deg, hsl(0 0% 4% / 0.4), transparent, var(--bg)); }
.delivery__cities { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: hsl(0 0% 15% / 0.5); margin-top: 2rem; }
@media (min-width: 768px) { .delivery__cities { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .delivery__cities { grid-template-columns: repeat(6, 1fr); } }
.city { background: var(--bg); padding: 1.5rem; text-align: center; transition: background .5s; }
.city:hover { background: var(--card); }
.city__dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; margin: 0 auto .75rem; animation: shimmer 3s ease-in-out infinite; }
.city__name { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--ivory); transition: color .4s; }
.city:hover .city__name { color: var(--gold); }

/* WhyUs */
.why { background: hsl(350 65% 24% / 0.05); border-top: 1px solid hsl(0 0% 15% / 0.4); border-bottom: 1px solid hsl(0 0% 15% / 0.4); }
.why__head { text-align: center; margin-bottom: 5rem; }
.why__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .why__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why__grid { grid-template-columns: repeat(5, 1fr); } }
.why__card { text-align: center; }
.why__icon-wrap { width: 64px; height: 64px; margin: 0 auto 1.5rem; border: 1px solid hsl(41 55% 56% / 0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all .7s var(--ease-luxe); }
.why__card:hover .why__icon-wrap { border-color: var(--gold); background: hsl(350 65% 24% / 0.3); }
.why__icon { width: 24px; height: 24px; color: var(--gold); stroke-width: 1; }
.why__title { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--ivory); margin-bottom: .75rem; }
.why__desc { font-size: 0.875rem; color: var(--muted); line-height: 1.6; }

/* Testimonials */
.tests__head { text-align: center; margin-bottom: 5rem; }
.tests__grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 768px) { .tests__grid { grid-template-columns: repeat(3, 1fr); } }
.test { background: var(--card); border: 1px solid hsl(0 0% 15% / 0.6); padding: 2.5rem; transition: all .7s var(--ease-luxe); }
.test:hover { border-color: hsl(41 55% 56% / 0.5); box-shadow: var(--shadow-gold); transform: translateY(-4px); }
.test__stars { display: flex; gap: 4px; margin-bottom: 1.5rem; color: var(--gold); }
.test__stars svg { width: 14px; height: 14px; fill: var(--gold); }
.test__quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.5rem; color: var(--ivory); line-height: 1.3; margin-bottom: 2rem; }
.test__author { border-top: 1px solid hsl(0 0% 15% / 0.6); padding-top: 1.5rem; }
.test__name { font-size: 0.875rem; color: var(--ivory); }
.test__role { font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-top: .25rem; }

/* Subscription */
.sub { background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy)); position: relative; overflow: hidden; }
.sub::before { content:''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, hsl(41 80% 60% / 0.3), transparent 60%); opacity: 0.3; }
.sub__inner { position: relative; display: grid; grid-template-columns: 1fr; gap: 4rem; align-items: center; }
@media (min-width: 1024px) { .sub__inner { grid-template-columns: repeat(2, 1fr); } }
.sub__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.25rem, 5vw, 3.75rem); color: var(--ivory); margin: 1rem 0 1.5rem; line-height: 1.1; }
.sub__desc { color: var(--muted); font-size: 1.125rem; line-height: 1.7; margin-bottom: 2.5rem; }
.sub__list li { display: flex; align-items: flex-start; gap: 1rem; padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 1px solid hsl(38 38% 92% / 0.1); }
.sub__list li:last-child { border-bottom: none; }
.sub__check { width: 20px; height: 20px; color: var(--gold); margin-top: 4px; flex-shrink: 0; }
.sub__list span { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--ivory); }

/* Contact */
.contact__head { text-align: center; margin-bottom: 5rem; }
.contact__grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: hsl(0 0% 15% / 0.5); max-width: 1024px; margin: 0 auto; }
@media (min-width: 768px) { .contact__grid { grid-template-columns: repeat(3, 1fr); } }
.contact__card { background: var(--bg); padding: 3rem; text-align: center; transition: background .5s; display: block; }
.contact__card:hover { background: var(--card); }
.contact__icon { width: 28px; height: 28px; color: var(--gold); margin: 0 auto 1.5rem; stroke-width: 1; }
.contact__label { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: .75rem; }
.contact__value { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--ivory); transition: color .4s; }
.contact__card:hover .contact__value { color: var(--gold); }

/* Footer */
.footer { border-top: 1px solid hsl(0 0% 15% / 0.4); background: var(--bg); padding: 5rem 0 2.5rem; }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
@media (min-width: 768px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; } }
.footer__brand { font-family: 'Cormorant Garamond', serif; letter-spacing: 0.25em; text-transform: uppercase; font-size: 1.5rem; color: var(--ivory); margin-bottom: 1rem; }
.footer__brand span { color: var(--gold); }
.footer__about { font-size: 0.875rem; color: var(--muted); max-width: 360px; line-height: 1.7; }
.footer__socials { display: flex; gap: 1rem; margin-top: 1.5rem; }
.footer__social { width: 40px; height: 40px; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: border-color .4s; }
.footer__social:hover { border-color: var(--gold); }
.footer__social svg { width: 16px; height: 16px; color: var(--ivory); }
.footer__heading { font-size: 0.65rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.footer__list li { margin-bottom: .75rem; font-size: 0.875rem; color: var(--muted); }
.footer__list a:hover { color: var(--gold); }
.footer__bottom { padding-top: 2rem; border-top: 1px solid hsl(0 0% 15% / 0.4); display: flex; flex-direction: column; gap: 1rem; justify-content: space-between; font-size: 0.75rem; color: var(--muted); }
@media (min-width: 768px) { .footer__bottom { flex-direction: row; } }

/* Sticky Buy (mobile) */
.sticky-buy { position: fixed; bottom: 1.25rem; left: 1.25rem; right: 1.25rem; z-index: 40; display: flex; align-items: center; justify-content: center; gap: .75rem; background: linear-gradient(135deg, var(--burgundy-deep), var(--burgundy)); border: 1px solid hsl(41 55% 56% / 0.4); color: var(--ivory); padding: 1rem; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; box-shadow: 0 20px 40px rgba(0,0,0,.5); }
.sticky-buy svg { width: 16px; height: 16px; color: var(--gold); }
@media (min-width: 768px) { .sticky-buy { display: none; } }
