/* LumiWed reviews — brand tokens only (design-tokens.json), no framework.
   Every literal below is a value present in design-tokens.json.
   ponytail: only the serif is self-hosted — the system UI stack covers body
   text, so we ship 23KB of font instead of 100KB+ for a one-page site. */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/fonts/cormorant-garamond-latin-600-normal.woff2') format('woff2');
}

:root {
  --ivory: #fffdf7;
  --charcoal: #1a1a1a;
  --gold: #c9a96e;
  --bronze: #8b7355;
  --sage: #8b9e8b;
  --sand: #e5e0d5;
  --muted: #6f6f6a;
  --panel: #fcfaf3;
  --shadow-soft: 0 18px 48px color-mix(in oklch, var(--gold) 14%, transparent);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--charcoal);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    Roboto,
    sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0 0 0.5em;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 3.6rem);
}
h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.1rem);
  margin-top: 0;
}
h3 {
  font-size: 1.2rem;
  margin-bottom: 0.35em;
}

p {
  margin: 0 0 1rem;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--bronze);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover {
  color: var(--charcoal);
}

.wrap {
  max-width: 46rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.topbar {
  border-bottom: 1px solid var(--sand);
  padding: 1.25rem 0;
}
.topbar a {
  font-weight: 600;
  color: var(--charcoal);
  text-decoration: none;
}

header.hero {
  padding: 4.5rem 0 3rem;
}
.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 34rem;
}

section {
  padding: 2.5rem 0;
  border-top: 1px solid var(--sand);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--sand);
  border-radius: 1.75rem;
  padding: 1.75rem;
  box-shadow: var(--shadow-soft);
}

/* No accent bar: the soft gold shadow already lifts this panel off the page,
   and a thick one-sided border is generic callout styling, not our restraint. */
.status {
  border-color: color-mix(in oklch, var(--gold) 38%, var(--sand));
}

.grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(13rem, 1fr));
  margin-top: 1.5rem;
}
.grid .panel {
  box-shadow: none;
  padding: 1.25rem;
  border-radius: 1.25rem;
}

/* Body font, not the serif: Cormorant's default old-style figures render "€0"
   as "€o" — pretty, but a price has to be unambiguous. */
.price {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--bronze);
  display: block;
  margin-bottom: 0.4rem;
}

ul.plain {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}
ul.plain li {
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--sand);
}
ul.plain li:last-child {
  border-bottom: 0;
}

/* Questions carry the hierarchy here: the serif at this size sits too close to
   body text, so the FAQ headings use the UI stack at a heavier weight. */
.faq h3 {
  margin-top: 1.75rem;
  font-family: inherit;
  font-weight: 600;
  font-size: 1.05rem;
}

.cta {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  background: var(--charcoal);
  color: var(--ivory);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
}
.cta:hover {
  background: var(--bronze);
  color: var(--ivory);
}

.disclosure {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px dashed var(--sage);
  border-radius: 1rem;
  padding: 1rem 1.25rem;
  margin-top: 2rem;
}

footer {
  border-top: 1px solid var(--sand);
  padding: 2.5rem 0 4rem;
  font-size: 0.9rem;
  color: var(--muted);
}
footer a {
  margin-right: 1.25rem;
  display: inline-block;
}

/* Colour-only, so no reduced-motion guard — nothing here moves. */
a,
.cta {
  transition:
    color 180ms ease-out,
    background-color 180ms ease-out;
}
