/* Landing pages (one per occasion). Deliberately its own small stylesheet rather than
   nightward.css: those pages exist to load fast and rank, and the homepage stylesheet carries
   a great deal of animation and layout they never use. Page weight is a ranking factor and
   this is the cheapest place to respect it. */

:root {
  --ground: #0a0e1c; --panel: #141c31; --panel-2: #0f1626;
  --line: #25314f; --line-2: #33436a;
  --accent: #ecc178; --accent-2: #f9e2b0;
  --text: #eef1fc; --text-2: #cfd7ec; --muted: #94a0bd;
  --font: "Quicksand", "Segoe UI", -apple-system, system-ui, sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--ground); color: var(--text);
  font-family: var(--font); line-height: 1.7; -webkit-font-smoothing: antialiased;
}
a { color: var(--accent); }

/* ---- chrome ---- */
.lp-top {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding: 16px 24px; border-bottom: 1px solid var(--line);
  position: sticky; top: 0; background: color-mix(in srgb, var(--ground) 92%, transparent);
  backdrop-filter: blur(8px); z-index: 5;
}
.lp-brand { display: inline-flex; align-items: center; gap: 9px; text-decoration: none;
  color: var(--text); font-weight: 700; letter-spacing: .01em; }
.lp-nav { display: flex; gap: 18px; font-size: .86rem; }
.lp-nav a { color: var(--muted); text-decoration: none; }
.lp-nav a:hover { color: var(--text); }

/* ---- article ---- */
.lp { max-width: 760px; margin: 0 auto; padding: 40px 24px 72px; }
.lp-crumb { font-size: .76rem; color: var(--muted); margin: 0 0 18px; }
.lp-crumb a { color: var(--muted); text-decoration: none; }
.lp-crumb span { opacity: .5; margin: 0 5px; }

.lp h1 {
  font-size: clamp(1.7rem, 4.4vw, 2.5rem); line-height: 1.2; margin: 0 0 18px;
  letter-spacing: -.015em;
}
.lp-lede { font-size: 1.06rem; color: var(--text-2); margin: 0 0 26px; }
.lp h2 {
  font-size: 1.14rem; margin: 40px 0 12px; letter-spacing: -.01em;
  padding-top: 22px; border-top: 1px solid var(--line);
}
.lp p { margin: 0 0 16px; color: var(--text-2); }

.lp-cta-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin: 26px 0 8px; }
.lp-cta {
  display: inline-block; text-decoration: none; font-weight: 700; font-size: .95rem;
  color: #241c05; background: linear-gradient(180deg, var(--accent-2), var(--accent));
  padding: 12px 22px; border-radius: 100px;
  box-shadow: 0 14px 30px -14px rgba(236, 193, 120, .8);
}
.lp-cta:hover { filter: brightness(1.06); }
.lp-note { font-size: .8rem; color: var(--muted); }

.lp-steps { margin: 0 0 8px; padding-left: 22px; }
.lp-steps li { margin-bottom: 8px; color: var(--text-2); }
.lp-steps b { color: var(--text); }

.lp-faq { margin: 0; }
.lp-faq dt { font-weight: 700; margin-top: 18px; color: var(--text); }
.lp-faq dd { margin: 6px 0 0; color: var(--text-2); }

.lp-others { list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 8px; }
.lp-others a {
  display: block; text-decoration: none; color: var(--text-2); font-size: .88rem;
  padding: 10px 14px; border: 1px solid var(--line); border-radius: 10px; background: var(--panel-2);
}
.lp-others a:hover { border-color: var(--accent); color: var(--text); }

/* ---- footer ---- */
.lp-foot { border-top: 1px solid var(--line); padding: 26px 24px 40px; text-align: center; }
.lp-foot p { margin: 0 0 10px; font-size: .84rem; color: var(--muted); }
.lp-foot nav { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; font-size: .78rem; }
.lp-foot nav a { color: var(--muted); text-decoration: none; }
.lp-foot nav a:hover { color: var(--text); }

@media (max-width: 560px) {
  .lp { padding: 28px 18px 56px; }
  .lp-nav { gap: 12px; font-size: .8rem; }
}

/* Pre-launch band. Mirrors the rule in nightward.css — the landing pages load this sheet
   instead, and a visitor arriving here from search must be told the shop is shut just as
   plainly as one who arrives at the homepage. */
.sf-banner{
  position:relative;z-index:60;
  background:linear-gradient(90deg,var(--accent,#c9a227),var(--accent-2,#e8d48b));
  color:var(--on-accent,#241c05);
  font-size:14px;line-height:1.45;
}
.sf-banner .wrap{
  max-width:1180px;margin:0 auto;padding:9px 20px;
  display:flex;align-items:baseline;gap:10px;flex-wrap:wrap;
}
.sf-banner b{font-weight:700}
.sf-banner span{opacity:.86}
@media (max-width:640px){
  .sf-banner{font-size:13px}
  .sf-banner .wrap{padding:8px 14px;gap:6px}
}

/* ---- occasion design grid -------------------------------------------------------------
   Real rendered cards, so the tiles carry the 1000x1400 aspect of the product itself rather
   than a square crop that would misrepresent what arrives. */
.og-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 18px; margin: 22px 0 30px; padding: 0; list-style: none; }
.og-tile { position: relative; display: block; text-decoration: none; color: inherit;
  border-radius: 12px; overflow: hidden; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.09); transition: transform .18s ease, border-color .18s ease; }
.og-tile:hover, .og-tile:focus-visible { transform: translateY(-3px); border-color: rgba(240,212,136,.5); }
.og-art { display: block; width: 100%; height: auto; aspect-ratio: 1000 / 1400; background: #0b1020; }
.og-row { display: flex; align-items: baseline; justify-content: space-between; gap: 8px; padding: 9px 10px 11px; }
.og-cap { font-size: 13px; font-weight: 600; letter-spacing: .01em; min-width: 0;
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.og-price { flex: none; font-size: 11px; font-weight: 700; opacity: .8; }
.og-empty { opacity: .7; font-size: 14px; }
@media (max-width: 520px) { .og-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; } }

/* ---- city pages ------------------------------------------------------------------------
   The computed-facts list and the city index. Deliberately plain: these pages earn their keep
   by being true and readable, not by being decorated. */
.lp-facts { margin: 18px 0 14px; padding-left: 20px; line-height: 1.7; }
.lp-facts li { margin: 6px 0; }
.lp-facts b { color: var(--text); font-weight: 600; }
.lp-note-block { font-size: .9rem; color: var(--muted); border-left: 2px solid rgba(236,193,120,.4);
  padding: 4px 0 4px 14px; margin: 16px 0 26px; }
.city-fig { margin: 26px 0; }
.city-fig img { display: block; width: 100%; max-width: 520px; height: auto; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.1); background: #0b1020; }
.city-fig figcaption { margin-top: 9px; font-size: .84rem; color: var(--muted); }
.city-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 10px; list-style: none; padding: 0; margin: 22px 0 28px; }
.city-grid a { display: flex; align-items: baseline; justify-content: space-between; gap: 8px;
  padding: 12px 14px; border-radius: 10px; text-decoration: none; color: inherit;
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.09); }
.city-grid a:hover, .city-grid a:focus-visible { border-color: rgba(236,193,120,.5); }
.cg-name { font-weight: 600; }
.cg-lat { font-size: .8rem; color: var(--muted); }
