/* The Lily Pad Boutique — enchanted twilight pond
   Palette: midnight indigo / pond teal / chandelier gold / lily blush / leaf green
   Type: Great Vibes (script) + Marcellus (headings) + Mulish (body) — loaded via <link> */

:root {
  --night: #101a2c;
  --night-2: #0c1422;
  --pond: #14333a;
  --pond-2: #1b4048;
  --gold: #e6bd6f;
  --gold-soft: #f2d9a4;
  --blush: #efaec9;
  --leaf: #8db878;
  --cream: #f6efdf;
  --ink-on-gold: #241b09;
  --muted: #b9c2cf;
  --hairline: rgba(230, 189, 111, .35);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Mulish', system-ui, sans-serif;
  background: var(--night);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); }

h1, h2, h3 { font-family: 'Marcellus', serif; font-weight: 400; line-height: 1.2; }
.script { font-family: 'Great Vibes', cursive; font-weight: 400; color: var(--gold-soft); }

.wrap { max-width: 1100px; margin: 0 auto; padding: 0 22px; }

/* ---- topbar ---- */
.topbar {
  background: var(--night-2);
  border-bottom: 1px solid var(--hairline);
  font-size: .82rem;
  letter-spacing: .04em;
  color: var(--muted);
  text-align: center;
  padding: 8px 14px;
}
.topbar strong { color: var(--gold); font-weight: 700; }
.topbar .addr, .topbar strong { display: inline-block; }

/* ---- header ---- */
header.site {
  position: sticky; top: 0; z-index: 50;
  background: rgba(16, 26, 44, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}
/* keep .wrap's 22px side padding — a `12px 0` shorthand here wipes it out and
   pushes the wordmark flush against the screen edge on phones */
.site-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 12px 22px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name .script { font-size: 1.5rem; }
.brand-name small {
  font-family: 'Marcellus', serif; letter-spacing: .34em; font-size: .58rem;
  color: var(--muted); text-transform: uppercase; margin-top: 2px;
}
nav.main { display: flex; gap: 22px; }
nav.main a {
  font-family: 'Marcellus', serif; font-size: .92rem; letter-spacing: .08em;
  color: var(--cream); text-decoration: none; text-transform: uppercase;
}
nav.main a:hover { color: var(--gold); }

/* ---- hero ---- */
.hero {
  position: relative; min-height: 92svh;
  display: flex; align-items: center; justify-content: center; text-align: center;
  isolation: isolate; overflow: hidden;
}
.hero .bg {
  position: absolute; inset: 0; z-index: -2;
  background: url('../assets/hero-pond.png') center 40% / cover no-repeat var(--night-2);
}
.hero .scrim {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(ellipse at 50% 55%, rgba(12, 20, 34, 0) 30%, rgba(12, 20, 34, .72) 100%),
    linear-gradient(to bottom, rgba(12, 20, 34, .55), rgba(12, 20, 34, .15) 35%, rgba(16, 26, 44, .92) 96%);
}
.hero-inner { padding: 90px 22px 110px; max-width: 820px; }
.hero .kicker {
  font-family: 'Marcellus', serif; letter-spacing: .38em; text-transform: uppercase;
  font-size: .78rem; color: var(--gold-soft); margin-bottom: 18px;
}
.hero h1 { font-size: clamp(3.2rem, 9vw, 6rem); }
.hero h1 .script { display: block; font-size: 1.12em; text-shadow: 0 0 34px rgba(230, 189, 111, .45); }
.hero .sub {
  margin: 22px auto 0; max-width: 34em; color: var(--cream);
  font-size: clamp(1rem, 2.4vw, 1.15rem);
}
.hero .cta-row { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none;
  font-family: 'Marcellus', serif; letter-spacing: .1em; text-transform: uppercase;
  font-size: .88rem; padding: 13px 28px; border-radius: 999px;
}
.btn-gold { background: linear-gradient(160deg, var(--gold-soft), var(--gold)); color: var(--ink-on-gold); box-shadow: 0 0 24px rgba(230, 189, 111, .35); }
.btn-gold:hover { filter: brightness(1.06); }
.btn-ghost { border: 1px solid var(--hairline); color: var(--cream); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* fireflies */
.fireflies { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.fireflies i {
  position: absolute; width: 5px; height: 5px; border-radius: 50%;
  background: #ffe9a8; opacity: 0;
  box-shadow: 0 0 10px 3px rgba(255, 233, 168, .65);
  animation: drift 9s ease-in-out infinite;
}
.fireflies i:nth-child(1) { left: 12%; top: 34%; animation-delay: 0s; }
.fireflies i:nth-child(2) { left: 26%; top: 62%; animation-delay: 1.6s; }
.fireflies i:nth-child(3) { left: 44%; top: 24%; animation-delay: 3.1s; }
.fireflies i:nth-child(4) { left: 63%; top: 58%; animation-delay: 2.2s; }
.fireflies i:nth-child(5) { left: 78%; top: 30%; animation-delay: 4.4s; }
.fireflies i:nth-child(6) { left: 88%; top: 66%; animation-delay: 5.6s; }
.fireflies i:nth-child(7) { left: 8%; top: 76%; animation-delay: 6.8s; }
@keyframes drift {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  20% { opacity: .9; }
  50% { opacity: .35; transform: translate(14px, -22px); }
  80% { opacity: .8; }
}
@media (prefers-reduced-motion: reduce) {
  .fireflies i { animation: none; opacity: .5; }
  html { scroll-behavior: auto; }
}

/* ---- gold flourish divider ---- */
.flourish {
  display: flex; align-items: center; gap: 14px; justify-content: center;
  margin: 0 auto 18px; max-width: 420px; color: var(--gold);
}
.flourish::before, .flourish::after {
  content: ""; height: 1px; flex: 1;
  background: linear-gradient(to right, transparent, var(--hairline));
}
.flourish::after { background: linear-gradient(to left, transparent, var(--hairline)); }
.flourish svg { flex: none; }

/* ---- sections ---- */
section { padding: 84px 0; }
.section-head { text-align: center; margin-bottom: 46px; }
.section-head .script { font-size: clamp(2rem, 5vw, 2.9rem); display: block; }
.section-head h2 { font-size: clamp(1.7rem, 4vw, 2.4rem); letter-spacing: .04em; }
.section-head p.lede { max-width: 44em; margin: 14px auto 0; color: var(--muted); }

/* story */
.story { background: linear-gradient(to bottom, var(--night), var(--night-2)); }
.story-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 46px; align-items: center; }
.story-grid .text p { margin-bottom: 1em; color: var(--muted); }
.story-grid .text p strong { color: var(--cream); }
.framed { position: relative; }
.framed img { border-radius: 10px; border: 1px solid var(--hairline); }
.framed::after {
  content: ""; position: absolute; inset: 12px -12px -12px 12px; z-index: -1;
  border: 1px solid var(--hairline); border-radius: 10px;
}

/* collections */
.collections { background: var(--night-2); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: linear-gradient(to bottom, var(--pond), var(--night-2) 130%);
  border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden;
  display: flex; flex-direction: column;
}
.card img { aspect-ratio: 4 / 3; object-fit: cover; }
.card .pad-body { padding: 24px 24px 28px; }
.card h3 { color: var(--gold-soft); font-size: 1.3rem; margin-bottom: 10px; }
.card p { color: var(--muted); font-size: .96rem; }

/* full-bleed quote band */
.band {
  position: relative; padding: 120px 22px; text-align: center; isolation: isolate;
  background: url('../assets/lily-closeup.png') center / cover no-repeat var(--night-2);
}
.band::before { content: ""; position: absolute; inset: 0; z-index: -1; background: rgba(12, 20, 34, .55); }
.band .script { font-size: clamp(1.9rem, 5vw, 3rem); text-shadow: 0 2px 24px rgba(0, 0, 0, .6); }
.band p { color: var(--cream); max-width: 36em; margin: 12px auto 0; }

/* visit */
.visit-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch; }
.visit-info { display: flex; flex-direction: column; gap: 20px; justify-content: center; }
.info-tile {
  border: 1px solid var(--hairline); border-radius: 12px; padding: 22px 24px;
  background: linear-gradient(to bottom right, rgba(20, 51, 58, .5), rgba(16, 26, 44, .3));
}
.info-tile h3 { color: var(--gold-soft); font-size: 1.05rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 8px; }
.info-tile p { color: var(--muted); font-size: .98rem; }
.info-tile a { text-decoration: none; }
.info-tile a:hover { text-decoration: underline; }
.mapbox { border: 1px solid var(--hairline); border-radius: 12px; overflow: hidden; min-height: 380px; }
.mapbox iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(.85); }

/* CTA banner */
.cta-banner {
  background: linear-gradient(160deg, var(--pond-2), var(--pond));
  border-top: 1px solid var(--hairline); border-bottom: 1px solid var(--hairline);
  text-align: center;
}
.cta-banner .script { font-size: clamp(2rem, 5vw, 2.8rem); display: block; margin-bottom: 8px; }
.cta-banner p { color: var(--muted); max-width: 40em; margin: 0 auto 26px; }

/* footer */
footer { background: var(--night-2); padding: 46px 0 60px; font-size: .88rem; color: var(--muted); }
.foot-grid { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; margin-bottom: 30px; }
.foot-grid .script { font-size: 1.4rem; }
footer .disclaimer {
  border-top: 1px solid var(--hairline); padding-top: 22px;
  font-size: .8rem; line-height: 1.65; color: #8d97a6; max-width: 62em;
}



/* ---- day/night toggle ---- */
.site-right { display: flex; align-items: center; gap: 20px; }
.daynight {
  display: inline-flex; align-items: center; gap: 2px;
  border-radius: 999px; padding: 3px; flex: none;
}
.dn-opt {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: 'Marcellus', serif; font-size: .7rem; letter-spacing: .13em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap;
  padding: 6px 13px; border-radius: 999px;
  transition: background .18s ease, color .18s ease;
}
.dn-ico { width: 15px; height: 15px; flex: none; }
.daynight { background: rgba(230, 189, 111, .09); border: 1px solid var(--hairline); }
.dn-opt { color: var(--muted); }
a.dn-opt:hover { color: var(--gold-soft); background: rgba(230, 189, 111, .12); }
.dn-opt.is-on { background: rgba(230, 189, 111, .18); color: var(--gold-soft); }

/* ---- responsive ---- */
@media (max-width: 900px) {
  .cards { grid-template-columns: 1fr; }
  .story-grid, .visit-grid { grid-template-columns: 1fr; }
  .framed::after { display: none; }
  nav.main { display: none; }
  /* icons only — the labels don't fit beside the wordmark on a phone */
  .dn-label { display: none; }
  .dn-opt { padding: 7px 10px; }
  .site-right { gap: 0; }
  section { padding: 64px 0; }
  /* stack the topbar into two clean lines instead of orphaning a word */
  .topbar .addr, .topbar strong { display: block; }
  .topbar .dot { display: none; }
}
