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

:root {
  --background: #fbf9f6;
  --foreground: #36302a;
  --card: #fefcfa;
  --muted: #ece6dd;
  --muted-fg: #7a6f64;
  --primary: #e0a3b1;
  --primary-deep: #95566a;
  --primary-fg: #fefcfa;
  --secondary: #a3b596;
  --accent: #c89a55;
  --border: #e6dccd;
  --beige: #ede2d0;
  --blush-soft: #fbeaee;
  --sage-soft: #e1ead8;
  --shadow-soft: 0 10px 40px -15px rgba(149,86,106,.25);
  --shadow-card: 0 4px 24px -8px rgba(54,48,42,.12);
  --shadow-elegant: 0 30px 80px -30px rgba(149,86,106,.35);
  --shadow-gold: 0 8px 30px -10px rgba(200,154,85,.4);
  --gradient-hero: linear-gradient(135deg,#fbeaee 0%,#fbf9f6 50%,#e1ead8 100%);
  --gradient-blush: linear-gradient(180deg,#fbeaee 0%,#fefcfa 100%);
  --gradient-gold: linear-gradient(135deg,#dcb676 0%,#a87d3d 100%);
  --gradient-petal: radial-gradient(circle at 30% 20%, rgba(247,207,217,.6), transparent 60%), radial-gradient(circle at 70% 80%, rgba(206,221,193,.5), transparent 55%);
  --transition: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 300;
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
input, textarea { font: inherit; color: inherit; }

h1,h2,h3,h4,.font-display { font-family: 'Cormorant Garamond', 'Times New Roman', serif; font-weight: 400; letter-spacing: -.01em; line-height: 1.1; }

.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; padding: .75rem 1.5rem; border-radius: 999px; font-size: .875rem; font-weight: 500; letter-spacing: .03em; transition: all .4s var(--transition); white-space: nowrap; }
.btn-hero { background: var(--foreground); color: var(--background); box-shadow: var(--shadow-elegant); }
.btn-hero:hover { background: #1f1b17; transform: translateY(-1px); }
.btn-elegant { border: 1px solid rgba(54,48,42,.2); color: var(--foreground); background: transparent; }
.btn-elegant:hover { background: var(--foreground); color: var(--background); }
.btn-gold { background: var(--gradient-gold); color: white; box-shadow: var(--shadow-gold); }
.btn-lg { padding: .85rem 2.25rem; font-size: .95rem; }
.btn-xl { padding: 1.05rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: .55rem 1.2rem; font-size: .8rem; }
.btn-block { width: 100%; }

.eyebrow { font-size: .7rem; text-transform: uppercase; letter-spacing: .25em; color: var(--accent); }
.muted { color: var(--muted-fg); }

/* Header */
.header { position: fixed; inset: 0 0 auto 0; z-index: 50; transition: all .5s var(--transition); }
.header.scrolled { background: rgba(251,249,246,.85); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid rgba(230,220,205,.6); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo { display: flex; align-items: center; gap: .5rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; letter-spacing: .03em; }
.logo svg { color: var(--primary); }
.nav { display: none; gap: 2.25rem; }
.nav a { font-size: .875rem; letter-spacing: .03em; color: rgba(54,48,42,.7); transition: color .3s; }
.nav a:hover { color: var(--foreground); }
.menu-btn { display: block; padding: .5rem; }
@media (min-width: 768px) { .nav { display: flex; } .menu-btn { display: none; } .header-cta { display: block; } }
.header-cta { display: none; }
.mobile-menu { display: none; background: rgba(251,249,246,.95); backdrop-filter: blur(12px); border-top: 1px solid rgba(230,220,205,.6); }
.mobile-menu.open { display: block; }
.mobile-menu-inner { padding: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }

/* Hero */
.hero { position: relative; padding: 8rem 0 6rem; overflow: hidden; }
@media (min-width: 768px) { .hero { padding: 10rem 0 8rem; } }
.hero-bg { position: absolute; inset: 0; background: var(--gradient-hero); z-index: -2; }
.hero-bg-2 { position: absolute; inset: 0; background: var(--gradient-petal); opacity: .7; z-index: -1; }
.hero-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.hero-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .35rem 1rem; border-radius: 999px; border: 1px solid var(--border); background: rgba(254,252,250,.6); backdrop-filter: blur(10px); font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); }
.hero-badge svg { color: var(--accent); }
.hero h1 { font-size: clamp(2.5rem, 6vw, 6rem); margin-top: 1.5rem; }
.hero h1 em { color: var(--primary-deep); font-style: italic; }
.hero p { margin-top: 1.5rem; max-width: 28rem; font-size: 1.05rem; color: var(--muted-fg); }
.hero-actions { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: 1rem; }
.hero-trust { margin-top: 3rem; display: flex; flex-wrap: wrap; gap: 2rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .18em; color: var(--muted-fg); }
.hero-trust span { display: inline-flex; align-items: center; gap: .5rem; }
.hero-img-wrap { position: relative; }
.hero-img-glow { position: absolute; inset: -1.5rem; background: var(--blush-soft); border-radius: 3rem; filter: blur(40px); opacity: .7; }
.hero-img { position: relative; overflow: hidden; border-radius: 2.5rem; box-shadow: var(--shadow-elegant); }
.hero-img img { height: 520px; width: 100%; object-fit: cover; }
@media (min-width: 768px) { .hero-img img { height: 640px; } }
.hero-rating { position: absolute; bottom: -1.5rem; left: -1.5rem; padding: 1.25rem; border-radius: 1rem; background: rgba(254,252,250,.9); backdrop-filter: blur(10px); border: 1px solid var(--border); box-shadow: var(--shadow-card); display: none; }
@media (min-width: 768px) { .hero-rating { display: block; } }
.stars { display: inline-flex; gap: 2px; color: var(--accent); }
.hero-rating-row { display: flex; align-items: center; gap: .75rem; }
.hero-rating-row strong { font-size: .875rem; font-weight: 500; }
.hero-rating small { font-size: .7rem; color: var(--muted-fg); margin-top: .25rem; display: block; }

/* Sections */
section { padding: 6rem 0; position: relative; }
@media (min-width: 768px) { section { padding: 8rem 0; } }
.section-head { max-width: 36rem; margin: 0 auto; text-align: center; }
.section-head h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-top: .75rem; }
.section-head p { margin-top: 1rem; color: var(--muted-fg); }

/* Categories */
.cat-grid { margin-top: 4rem; display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 768px) { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.cat-card { position: relative; overflow: hidden; padding: 1.75rem; border-radius: 1rem; border: 1px solid var(--border); background: var(--card); box-shadow: var(--shadow-card); transition: all .5s var(--transition); display: block; }
@media (min-width: 768px) { .cat-card { padding: 2.5rem; } }
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.cat-icon { width: 3rem; height: 3rem; border-radius: 999px; background: var(--blush-soft); display: flex; align-items: center; justify-content: center; transition: all .5s var(--transition); }
.cat-card:hover .cat-icon { background: var(--primary); color: var(--primary-fg); }
.cat-card h3 { font-size: 1.4rem; margin-top: 1.5rem; }
@media (min-width: 768px) { .cat-card h3 { font-size: 1.6rem; } }
.cat-card .arrow { display: inline-block; margin-top: .75rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); }

/* Products */
.section-blush { background: var(--gradient-blush); }
.products-head { display: flex; flex-wrap: wrap; align-items: end; justify-content: space-between; gap: 1.5rem; }
.products-head h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-top: .75rem; }
.products-head p { max-width: 28rem; color: var(--muted-fg); }
.products-grid { margin-top: 4rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 640px) { .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-radius: 1rem; overflow: hidden; box-shadow: var(--shadow-card); transition: all .5s var(--transition); }
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.product-img { position: relative; aspect-ratio: 4/5; background: var(--beige); overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--transition); }
.product:hover .product-img img { transform: scale(1.05); }
.product-fav { position: absolute; top: 1rem; right: 1rem; width: 2.5rem; height: 2.5rem; border-radius: 999px; background: rgba(254,252,250,.9); backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity .4s; box-shadow: var(--shadow-soft); }
.product:hover .product-fav { opacity: 1; }
.product-body { padding: 1.5rem; }
.product-body h3 { font-size: 1.5rem; }
.product-body .desc { margin-top: .5rem; font-size: .875rem; color: var(--muted-fg); }
.product-foot { margin-top: 1.25rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.product-price { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; }

/* Cities */
.cities-grid { display: grid; gap: 4rem; align-items: center; }
@media (min-width: 768px) { .cities-grid { grid-template-columns: 1fr 1fr; } }
.cities-grid h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-top: .75rem; }
.cities-grid p { margin-top: 1.25rem; max-width: 28rem; color: var(--muted-fg); }
.city-list { margin-top: 2.5rem; display: flex; flex-wrap: wrap; gap: .75rem; }
.city-tag { padding: .65rem 1.25rem; border-radius: 999px; border: 1px solid var(--border); background: var(--card); font-size: .875rem; transition: all .4s var(--transition); display: inline-flex; align-items: center; gap: .4rem; }
.city-tag:hover { border-color: var(--primary); background: var(--blush-soft); }
.city-tag svg { color: var(--primary); }
.map-wrap { position: relative; }
.map-wrap::before { content: ''; position: absolute; inset: 0; background: var(--gradient-petal); border-radius: 2rem; }
.map-card { position: relative; aspect-ratio: 5/4; border-radius: 2rem; border: 1px solid var(--border); background: var(--sage-soft); padding: 2.5rem; box-shadow: var(--shadow-card); }
.map-card svg { width: 100%; height: 100%; }
.pulse { animation: soft-pulse 4s ease-in-out infinite; transform-origin: center; transform-box: fill-box; }
@keyframes soft-pulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.3); opacity: .6; } }

/* Why */
.section-beige { background: var(--beige); }
.why-grid { margin-top: 4rem; display: grid; gap: 1.5rem; grid-template-columns: repeat(1, 1fr); }
@media (min-width: 640px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(5, 1fr); } }
.why-card { background: var(--card); border: 1px solid var(--border); border-radius: 1rem; padding: 1.75rem; box-shadow: var(--shadow-card); transition: all .5s var(--transition); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-elegant); }
.why-icon { width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--gradient-gold); color: white; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-gold); }
.why-card h3 { font-size: 1.25rem; margin-top: 1.25rem; }
.why-card p { margin-top: .5rem; font-size: .875rem; color: var(--muted-fg); }

/* Testimonials */
.testimonials { margin-top: 4rem; display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .testimonials { grid-template-columns: repeat(3, 1fr); } }
.testimonial { padding: 2rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--card); box-shadow: var(--shadow-card); }
.testimonial blockquote { margin-top: 1.25rem; font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; line-height: 1.3; }
.testimonial figcaption { margin-top: 1.5rem; font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: var(--muted-fg); }

/* Occasions */
.occasions-list { max-width: 56rem; margin: 3.5rem auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: .75rem; }
.occasion { padding: .85rem 1.5rem; border-radius: 999px; border: 1px solid rgba(54,48,42,.15); background: var(--background); font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; transition: all .4s var(--transition); }
.occasion:hover { background: var(--foreground); color: var(--background); }

/* Contact */
.contact-grid { display: grid; gap: 3rem; align-items: center; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-grid h2 { font-size: clamp(2.25rem, 4vw, 3.25rem); margin-top: .75rem; }
.contact-list { margin-top: 2.5rem; display: flex; flex-direction: column; gap: 1.25rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-icon { width: 2.75rem; height: 2.75rem; border-radius: 999px; background: var(--blush-soft); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form { padding: 2rem; border: 1px solid var(--border); border-radius: 1rem; background: var(--card); box-shadow: var(--shadow-card); }
@media (min-width: 768px) { .contact-form { padding: 2.5rem; } }
.contact-form h3 { font-size: 1.5rem; }
.field-stack { margin-top: 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.field { width: 100%; padding: .85rem 1.25rem; border-radius: 999px; border: 1px solid var(--border); background: var(--background); font-size: .875rem; outline: none; transition: border-color .3s; }
.field:focus { border-color: var(--primary); }
textarea.field { border-radius: 1rem; resize: vertical; min-height: 120px; }

/* Footer */
.footer { background: var(--foreground); color: var(--background); border-top: 1px solid var(--border); }
.footer-inner { padding: 4rem 0; }
.footer-grid { display: grid; gap: 2.5rem; grid-template-columns: 1fr; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { grid-column: span 1; }
@media (min-width: 768px) { .footer-brand { grid-column: span 2; } }
.footer-brand p { margin-top: 1rem; max-width: 22rem; font-size: .875rem; color: rgba(254,252,250,.7); }
.socials { margin-top: 1.5rem; display: flex; gap: .75rem; }
.social { width: 2.5rem; height: 2.5rem; border-radius: 999px; border: 1px solid rgba(254,252,250,.2); display: flex; align-items: center; justify-content: center; transition: all .4s var(--transition); }
.social:hover { background: var(--background); color: var(--foreground); }
.footer h4 { font-family: 'Inter', sans-serif; font-size: .7rem; text-transform: uppercase; letter-spacing: .2em; color: rgba(254,252,250,.6); }
.footer ul { margin-top: 1rem; list-style: none; display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; }
.footer ul a:hover { color: var(--primary); }
.footer-bottom { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgba(254,252,250,.1); display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: space-between; font-size: .75rem; color: rgba(254,252,250,.6); text-align: center; }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; text-align: left; } }

/* Sticky mobile order */
.sticky-mobile { position: fixed; inset: auto 0 0 0; z-index: 40; background: rgba(251,249,246,.95); backdrop-filter: blur(20px); border-top: 1px solid var(--border); padding: 1rem; }
@media (min-width: 768px) { .sticky-mobile { display: none; } }
body { padding-bottom: 5rem; }
@media (min-width: 768px) { body { padding-bottom: 0; } }

/* Petals */
.petals { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.petal { position: absolute; pointer-events: none; border-radius: 60% 40% 60% 40% / 50% 60% 40% 50%; animation: float-petal linear infinite; filter: blur(.4px); }
@keyframes float-petal { 0% { transform: translateY(-10vh) translateX(0) rotate(0deg); opacity: 0; } 10% { opacity: .7; } 90% { opacity: .7; } 100% { transform: translateY(110vh) translateX(40px) rotate(360deg); opacity: 0; } }

.fade-up { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--transition), transform .9s var(--transition); }
.fade-up.in { opacity: 1; transform: translateY(0); }

.icon { width: 1.1rem; height: 1.1rem; stroke-width: 1.4; stroke: currentColor; fill: none; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }
.icon-sm { width: .9rem; height: .9rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
