/* ===== Lumen Flora — static styles ===== */
@import url("./fonts.css");

:root {
  --bg: #0a0f24;
  --bg-2: #0d1530;
  --fg: #eef3fb;
  --muted: #8a98b8;
  --border: rgba(238, 243, 251, 0.10);
  --cyan: #76eaff;
  --teal: #5fe8d2;
  --violet: #b58bff;
  --moon: #d8c8ff;
  --gradient-aurora: linear-gradient(135deg, #76eaff 0%, #b58bff 50%, #5fe8d2 100%);
  --gradient-night: radial-gradient(ellipse at top, #18204a 0%, #060a1c 70%);
  --shadow-glow: 0 0 40px rgba(118,234,255,0.35), 0 0 80px rgba(181,139,255,0.22);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; border-color: var(--border); }
html, body { background: var(--bg); color: var(--fg); }
html { scroll-behavior: smooth; }
body {
  background: var(--gradient-night);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  min-height: 100vh;
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
input { font: inherit; color: inherit; }

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

::selection { background: rgba(118,234,255,0.35); color: white; }

/* utilities */
.container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
.glass { background: rgba(20,28,60,0.45); backdrop-filter: blur(18px) saturate(140%); -webkit-backdrop-filter: blur(18px) saturate(140%); border: 1px solid var(--border); }
.glass-strong { background: rgba(15,22,50,0.7); backdrop-filter: blur(22px) saturate(160%); -webkit-backdrop-filter: blur(22px) saturate(160%); border: 1px solid rgba(238,243,251,0.14); }
.label-eyebrow { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--cyan); text-shadow: 0 0 14px rgba(118,234,255,0.5); }
.text-glow { text-shadow: 0 0 18px rgba(118,234,255,0.55), 0 0 40px rgba(181,139,255,0.30); }
.text-glow-soft { text-shadow: 0 0 12px rgba(118,234,255,0.35); }
.aurora-text {
  background: var(--gradient-aurora);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  animation: aurora 8s ease infinite;
}
.ring-glow { box-shadow: var(--shadow-glow); }
.muted { color: var(--muted); }
.divider { height: 1px; width: 40px; background: var(--cyan); display: inline-block; }
.grain { background-image: radial-gradient(rgba(238,243,251,0.05) 1px, transparent 1px); background-size: 3px 3px; }

@keyframes aurora { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pulseGlow { 0%,100% { opacity: .55; transform: scale(1); } 50% { opacity: 1; transform: scale(1.15); } }
@keyframes drift {
  0%   { transform: translate(0, 100vh) scale(.6); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { transform: translate(40px, -10vh) scale(1.2); opacity: 0; }
}
@keyframes floatY { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }
@keyframes scrollCue { 0%,100% { transform: translateY(0); } 50% { transform: translateY(8px); } }

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s ease, transform .9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Particles ===== */
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particles span {
  position: absolute;
  bottom: -10vh;
  border-radius: 50%;
  opacity: 0;
  animation-name: drift;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

/* ===== Nav ===== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 50; padding: 24px 0; transition: padding .4s ease; }
.nav.scrolled { padding: 12px 0; }
.nav-bar { display: flex; align-items: center; justify-content: space-between; padding: 12px 20px; border-radius: 999px; }
.nav-brand { display: flex; align-items: center; gap: 10px; }
.brand-orb { position: relative; width: 28px; height: 28px; }
.brand-orb::before, .brand-orb::after { content: ""; position: absolute; border-radius: 50%; }
.brand-orb::before { inset: 0; background: var(--cyan); filter: blur(6px); opacity: .7; animation: pulseGlow 4s ease-in-out infinite; }
.brand-orb::after { inset: 4px; background: rgba(181,139,255,0.85); }
.brand-name { font-family: var(--font-display); font-size: 18px; letter-spacing: 0.3em; }
.brand-name .dot { color: var(--cyan); }
.nav-links { display: none; gap: 28px; }
.nav-links a { font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); transition: color .3s, text-shadow .3s; }
.nav-links a:hover { color: var(--cyan); text-shadow: 0 0 12px rgba(118,234,255,0.5); }
.nav-cta { display: none; padding: 10px 18px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--cyan); }
.nav-cta:hover { box-shadow: var(--shadow-glow); }
.nav-burger { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 999px; color: var(--cyan); }

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; align-items: center; }
  .nav-burger { display: none; }
}

/* mobile menu */
.mobile-menu { position: fixed; inset: 0; z-index: 60; background: rgba(6,10,28,0.92); backdrop-filter: blur(24px); display: none; flex-direction: column; padding: 28px; }
.mobile-menu.open { display: flex; }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; }
.mobile-menu-links { flex: 1; display: flex; flex-direction: column; justify-content: center; gap: 18px; }
.mobile-menu-links a { font-family: var(--font-display); font-size: 36px; transition: color .3s, text-shadow .3s; }
.mobile-menu-links a:hover { color: var(--cyan); text-shadow: 0 0 18px rgba(118,234,255,0.55); }

/* ===== Hero ===== */
.hero { position: relative; min-height: 100vh; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(10,15,36,0.4), rgba(10,15,36,0.3) 40%, var(--bg)); }
.hero-grain { position: absolute; inset: 0; opacity: .4; }
.hero-inner { position: relative; z-index: 2; min-height: 100vh; display: flex; flex-direction: column; justify-content: center; padding: 140px 24px 100px; max-width: 1240px; margin: 0 auto; }
.eyebrow-row { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; }
.hero h1 { font-size: clamp(48px, 8vw, 120px); line-height: 0.95; max-width: 1000px; }
.hero h1 .glow { text-shadow: 0 0 18px rgba(118,234,255,0.55), 0 0 40px rgba(181,139,255,0.30); }
.hero p.lead { margin-top: 28px; max-width: 560px; font-size: 17px; color: var(--muted); }
.cta-row { margin-top: 44px; display: flex; flex-wrap: wrap; gap: 14px; }
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 16px 26px; border-radius: 999px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.25em; transition: transform .25s ease, box-shadow .3s ease; }
.btn-glass { background: rgba(15,22,50,0.7); border: 1px solid rgba(238,243,251,0.14); }
.btn-glass:hover { box-shadow: var(--shadow-glow); }
.btn-primary { background: var(--cyan); color: #0a0f24; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: scale(1.02); }
.icon { width: 16px; height: 16px; flex-shrink: 0; }
.hero-stats { margin-top: 70px; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 24px; max-width: 460px; }
.hero-stat .k { font-family: var(--font-display); font-size: 30px; color: var(--cyan); text-shadow: 0 0 12px rgba(118,234,255,0.35); }
.hero-stat .v { font-size: 10px; text-transform: uppercase; letter-spacing: 0.2em; color: var(--muted); margin-top: 4px; }
.scroll-cue { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); }
.scroll-cue .label { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; }
.scroll-cue .line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cyan), transparent); animation: scrollCue 2s ease-in-out infinite; }

/* ===== Section base ===== */
section.block { padding: 130px 0; position: relative; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 24px; margin-bottom: 64px; }
.section-head h2 { font-size: clamp(40px, 5vw, 80px); max-width: 800px; line-height: 0.95; }
.section-head p { max-width: 360px; color: var(--muted); }
.section-head.center { text-align: center; flex-direction: column; align-items: center; }

/* ===== Collections ===== */
.col-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.col-card { position: relative; border-radius: 22px; overflow: hidden; }
.col-card .img-wrap { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.col-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s ease; }
.col-card:hover .img-wrap img { transform: scale(1.1); }
.col-card .img-wrap::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(10,15,36,0.3) 50%, transparent); }
.col-card .glow-overlay { position: absolute; inset: 0; box-shadow: inset 0 0 80px var(--cyan); opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.col-card:hover .glow-overlay { opacity: 1; }
.col-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 24px; }
.col-body .row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.col-body h3 { font-size: 26px; }
.col-body .price { color: var(--cyan); font-family: var(--font-mono); font-size: 14px; text-shadow: 0 0 12px rgba(118,234,255,0.4); white-space: nowrap; }
.col-body .desc { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.add-btn { display: inline-flex; align-items: center; gap: 8px; padding: 9px 16px; border-radius: 999px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.25em; }
.add-btn:hover { color: var(--cyan); box-shadow: var(--shadow-glow); }
@media (min-width: 720px) { .col-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .col-grid { grid-template-columns: repeat(3, 1fr); } .col-card.tall { grid-row: span 2; } .col-card.tall .img-wrap { aspect-ratio: 4/6; } }

/* ===== Occasions ===== */
.occ-bg { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.occ-bg .blob { position: absolute; border-radius: 50%; filter: blur(120px); }
.occ-bg .b1 { top: 25%; left: 0; width: 600px; height: 600px; background: var(--violet); opacity: .08; }
.occ-bg .b2 { bottom: 0; right: 0; width: 480px; height: 480px; background: var(--cyan); opacity: .10; }
.occ-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
.occ-card { position: relative; height: 360px; border-radius: 22px; overflow: hidden; }
.occ-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .7; transition: opacity 1s, transform 1s; }
.occ-card:hover img { opacity: 1; transform: scale(1.1); }
.occ-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, var(--bg), rgba(10,15,36,0.4) 50%, transparent); }
.occ-card .body { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; padding: 28px; }
.occ-card .biome { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; }
.occ-card h3 { font-size: 30px; margin-bottom: 8px; }
.occ-card p { font-size: 14px; color: var(--muted); }
@media (min-width: 720px) { .occ-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .occ-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== Garden ===== */
.garden { min-height: 90vh; text-align: center; }
.garden h2 { font-size: clamp(48px, 7vw, 110px); line-height: .95; margin-bottom: 36px; }
.garden .lead { max-width: 640px; margin: 0 auto 50px; font-size: 18px; color: var(--muted); }
.garden-orb { position: absolute; border-radius: 50%; filter: blur(80px); pointer-events: none; opacity: .25; animation: floatY 12s ease-in-out infinite; }
.garden-orb.o1 { top: 18%; left: 12%; width: 220px; height: 220px; background: var(--cyan); }
.garden-orb.o2 { top: 55%; left: 70%; width: 280px; height: 280px; background: var(--violet); animation-delay: -3s; }
.garden-orb.o3 { top: 70%; left: 18%; width: 180px; height: 180px; background: var(--teal); animation-delay: -6s; }
.garden-orb.o4 { top: 8%; left: 65%; width: 160px; height: 160px; background: var(--moon); animation-delay: -9s; }
.garden-grid { display: grid; grid-template-columns: 1fr; gap: 14px; max-width: 960px; margin: 0 auto; }
.garden-cell { padding: 26px; border-radius: 18px; text-align: left; }
.garden-cell .k { font-family: var(--font-display); color: var(--cyan); font-size: 24px; text-shadow: 0 0 12px rgba(118,234,255,0.35); margin-bottom: 8px; }
.garden-cell p { font-size: 14px; color: var(--muted); }
@media (min-width: 720px) { .garden-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== Delivery ===== */
.del-grid { display: grid; grid-template-columns: 1fr; gap: 60px; align-items: center; }
.del-grid h2 { font-size: clamp(40px, 5vw, 80px); line-height: .95; margin-bottom: 28px; }
.del-grid .lead { color: var(--muted); margin-bottom: 36px; max-width: 460px; }
.cities { display: grid; grid-template-columns: repeat(2,1fr); gap: 12px; margin-bottom: 36px; max-width: 420px; }
.city { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.city .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.map-card { position: relative; aspect-ratio: 4/3; border-radius: 28px; overflow: hidden; }
.map-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.map-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top right, rgba(10,15,36,0.6), transparent 50%, rgba(10,15,36,0.4)); }
.map-badge { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 14px; border-radius: 14px; display: flex; justify-content: space-between; align-items: center; }
.map-badge .small { font-size: 10px; text-transform: uppercase; letter-spacing: 0.25em; color: var(--muted); }
.map-badge .big { font-family: var(--font-display); font-size: 22px; }
.map-badge .live { font-family: var(--font-mono); color: var(--cyan); font-size: 13px; }
.steps { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 80px; }
.step { padding: 26px; border-radius: 22px; }
.step .top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.step .top .icon { color: var(--cyan); width: 22px; height: 22px; }
.step .top .num { font-family: var(--font-mono); font-size: 12px; color: var(--muted); }
.step h3 { font-size: 24px; margin-bottom: 8px; }
.step p { font-size: 14px; color: var(--muted); }
@media (min-width: 720px) { .steps { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .del-grid { grid-template-columns: 1fr 1fr; } .steps { grid-template-columns: repeat(4,1fr); } }

/* ===== Journal ===== */
.journal-grid { display: grid; grid-template-columns: 1fr; gap: 22px; }
.j-card { display: block; }
.j-thumb { position: relative; aspect-ratio: 4/5; border-radius: 22px; overflow: hidden; margin-bottom: 18px; }
.j-thumb img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 1s ease; }
.j-card:hover .j-thumb img { transform: scale(1.1); }
.j-thumb::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,15,36,0.8), transparent); }
.j-tag { position: absolute; top: 14px; left: 14px; padding: 6px 12px; border-radius: 999px; font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--cyan); z-index: 2; }
.j-meta { font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.25em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.j-card h3 { font-size: 22px; transition: color .3s, text-shadow .3s; }
.j-card:hover h3 { color: var(--cyan); text-shadow: 0 0 12px rgba(118,234,255,0.35); }
@media (min-width: 720px) { .journal-grid { grid-template-columns: repeat(2,1fr); } }
@media (min-width: 1024px) { .journal-grid { grid-template-columns: repeat(4,1fr); } }

/* ===== Testimonials ===== */
.tst-grid { display: grid; grid-template-columns: 1fr; gap: 18px; max-width: 1100px; margin: 0 auto; }
.tst { padding: 32px; border-radius: 22px; box-shadow: 0 0 50px rgba(181,139,255,0.10); }
.tst .quote { font-family: var(--font-display); color: var(--cyan); font-size: 50px; line-height: 1; margin-bottom: 16px; text-shadow: 0 0 18px rgba(118,234,255,0.55); }
.tst blockquote { color: var(--fg); margin-bottom: 24px; line-height: 1.6; opacity: .92; }
.tst figcaption { display: flex; align-items: center; gap: 12px; }
.avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--gradient-aurora); display: grid; place-items: center; font-family: var(--font-display); color: #0a0f24; font-size: 18px; }
.tst .name { font-family: var(--font-display); font-size: 18px; }
.tst .role { font-size: 12px; color: var(--muted); margin-top: 2px; }
@media (min-width: 720px) { .tst-grid { grid-template-columns: repeat(3,1fr); } }

/* ===== Footer ===== */
footer { position: relative; padding: 130px 24px 40px; overflow: hidden; }
footer::before { content: ""; position: absolute; top: -150px; left: 50%; transform: translateX(-50%); width: 900px; height: 900px; border-radius: 50%; background: var(--cyan); opacity: .06; filter: blur(140px); pointer-events: none; }
.foot-newsletter { text-align: center; max-width: 1200px; margin: 0 auto 80px; }
.foot-newsletter h2 { font-size: clamp(40px, 5vw, 80px); margin: 24px 0 32px; }
.subscribe { display: flex; max-width: 500px; margin: 0 auto; gap: 12px; flex-direction: column; }
.subscribe input { flex: 1; padding: 16px 22px; border-radius: 999px; background: rgba(20,28,60,0.45); border: 1px solid var(--border); outline: none; font-size: 14px; }
.subscribe input::placeholder { color: var(--muted); }
.subscribe input:focus { border-color: var(--cyan); box-shadow: 0 0 0 2px rgba(118,234,255,0.4); }
.foot-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 36px; padding-top: 64px; border-top: 1px solid var(--border); }
.foot-brand { grid-column: span 2; }
.foot-brand p { font-size: 14px; color: var(--muted); max-width: 360px; margin-top: 20px; }
.foot-col h4 { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.4em; text-transform: uppercase; color: var(--cyan); margin-bottom: 18px; text-shadow: 0 0 14px rgba(118,234,255,0.5); font-weight: 400; }
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot-col a { font-size: 14px; color: rgba(238,243,251,0.85); transition: color .3s; }
.foot-col a:hover { color: var(--cyan); }
.foot-bottom { max-width: 1200px; margin: 60px auto 0; display: flex; flex-direction: column; gap: 18px; align-items: center; justify-content: space-between; font-size: 12px; color: var(--muted); }
.foot-social { display: flex; gap: 14px; align-items: center; }
.social-btn { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; transition: color .3s; }
.social-btn:hover { color: var(--cyan); }
@media (min-width: 480px) { .subscribe { flex-direction: row; } }
@media (min-width: 720px) { .foot-grid { grid-template-columns: 2fr 1fr 1fr 1fr; } .foot-brand { grid-column: span 1; } .foot-bottom { flex-direction: row; } }

/* small helpers */
.row-eyebrow { display: inline-flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.row-eyebrow.violet .label-eyebrow, .occasions .label-eyebrow { color: var(--violet); text-shadow: 0 0 14px rgba(181,139,255,0.5); }
.occasions .divider { background: var(--violet); }
