/* ==========================================================================
   Cornelis Zonwering — pages.css
   Signature moment: het rolluik dat de bezoeker zelf opent en sluit.
   ========================================================================== */

/* --- HERO ----------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h) - var(--bar-h));
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink);
  isolation: isolate;
}
@media (min-width: 900px) { .hero { min-height: min(880px, calc(100svh - var(--nav-h) - var(--bar-h))); } }

.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 60% 50%;
  transform: scale(1.45);
  transform-origin: 50% 34%;
  will-change: transform;
}
@media (min-width: 900px) {
  .hero__bg img { object-position: 50% 42%; transform: scale(1.08); transform-origin: 50% 50%; }
}
.hero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(180deg, rgba(20,22,26,.62) 0%, rgba(20,22,26,.18) 30%, rgba(20,22,26,.72) 72%, rgba(20,22,26,.94) 100%),
    linear-gradient(96deg, rgba(20,22,26,.72) 0%, rgba(20,22,26,.12) 62%);
  pointer-events: none;
}
/* Zonnegloed die zachtjes ademt */
.hero__sun {
  position: absolute;
  z-index: 1;
  top: -14%;
  right: -6%;
  width: min(720px, 92vw);
  aspect-ratio: 1 / 1;
  background: radial-gradient(circle at 50% 50%, rgba(240,215,154,.4), rgba(215,169,79,.16) 38%, rgba(215,169,79,0) 68%);
  pointer-events: none;
  animation: sun-breathe 9s ease-in-out infinite alternate;
  will-change: transform, opacity;
}
@keyframes sun-breathe {
  from { transform: scale(1) translate3d(0,0,0); opacity: .85; }
  to   { transform: scale(1.14) translate3d(-2%, 2%, 0); opacity: 1; }
}
@media (prefers-reduced-motion: reduce) { .hero__sun { animation: none; } }

/* Het rolluik zelf */
.hero__shutterwrap {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}
.hero__kast {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 26px;
  background: linear-gradient(180deg, #2c313a 0%, #1b1f25 55%, #101318 100%);
  box-shadow: 0 6px 16px rgba(0,0,0,.45);
  z-index: 2;
}
.hero__kast::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(215,169,79,0), rgba(215,169,79,.55), rgba(215,169,79,0));
}
@media (min-width: 900px) { .hero__kast { height: 34px; } }

.hero__shutter {
  position: absolute;
  left: 0; right: 0;
  top: 0;
  height: 100%;
  z-index: 1;
  transform: translate3d(0, 0, 0);
  transition: transform 1.5s var(--ease-out);
  will-change: transform;
  background-color: #e9e6e0;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.20), rgba(0,0,0,0) 22%),
    repeating-linear-gradient(
      180deg,
      #f2efe9 0px,
      #f2efe9 9px,
      #dedad2 10px,
      #cbc6bd 11px,
      #f2efe9 12px
    );
  box-shadow: inset 0 -14px 26px rgba(0,0,0,.22);
}
.hero__shutter::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 14px;
  background: linear-gradient(180deg, #b9b3a8, #8d887e);
  box-shadow: 0 4px 14px rgba(0,0,0,.35);
}
.hero.is-open .hero__shutter { transform: translate3d(0, -100%, 0); }

/* Toggle knop */
.hero__toggle {
  position: absolute;
  z-index: 5;
  bottom: calc(var(--s-3) + env(safe-area-inset-bottom));
  right: var(--gutter);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--r-full);
  border: 1px solid rgba(255,255,255,.24);
  background: rgba(20,22,26,.5);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: var(--ivory);
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
@media (min-width: 900px) { .hero__toggle { bottom: auto; top: calc(var(--s-4) + 34px); } }
.hero__toggle:hover { background: rgba(20,22,26,.72); border-color: var(--gold-2); transform: translateY(-2px); }
.hero__toggle svg { width: 16px; height: 16px; color: var(--gold-2); flex: 0 0 16px; }

.hero__content {
  position: relative;
  z-index: 4;
  width: 100%;
  padding-block: clamp(48px, 8vw, 96px) clamp(88px, 10vw, 120px);
  color: var(--ivory);
}
.hero__inner { display: flex; flex-direction: column; gap: var(--s-3); max-width: 860px; }
.hero h1 {
  font-size: var(--step-6);
  line-height: .98;
  letter-spacing: -0.035em;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.35);
}
.hero h1 em { font-style: normal; color: var(--gold-3); }
.hero__sub {
  font-size: var(--step-1);
  line-height: 1.55;
  color: rgba(247,244,238,.86);
  max-width: 54ch;
}
.hero__meta { display: flex; flex-wrap: wrap; gap: var(--s-1) var(--s-2); }
.hero .btn-row { margin-top: var(--s-2); }

.hero__scroll {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 26px;
  transform: translateX(-50%);
  display: none;
  align-items: center;
  gap: 10px;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(247,244,238,.62);
}
@media (min-width: 900px) { .hero__scroll { display: inline-flex; } }
.hero__scroll span {
  display: block;
  width: 1px; height: 34px;
  background: linear-gradient(180deg, rgba(247,244,238,.6), rgba(247,244,238,0));
  animation: scroll-pulse 2.2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .5; }
  50%      { transform: scaleY(1);  transform-origin: top; opacity: 1; }
}

/* --- Pagina hero (subpagina's) -------------------------------------------- */
.phero {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  isolation: isolate;
}
.phero__bg { position: absolute; inset: 0; z-index: 0; }
.phero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 50%; }
.phero__scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(20,22,26,.82) 0%, rgba(20,22,26,.66) 45%, rgba(20,22,26,.92) 100%);
}
.phero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  max-width: 780px;
  padding-block: clamp(64px, 9vw, 128px);
}
.phero h1 { color: #fff; font-size: var(--step-5); }
.phero p { color: rgba(247,244,238,.8); font-size: var(--step-1); line-height: 1.55; max-width: 58ch; }
.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: var(--step--2);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(247,244,238,.55);
}
.crumbs a:hover { color: var(--gold-2); }
.crumbs svg { width: 12px; height: 12px; opacity: .55; }

/* --- Bento --------------------------------------------------------------- */
.bento { display: grid; gap: var(--s-2); grid-auto-rows: minmax(0, auto); }
@media (min-width: 760px)  { .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1060px) { .bento { grid-template-columns: repeat(6, minmax(0, 1fr)); } }

.bcell {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 300px;
  padding: clamp(22px, 2.6vw, 34px);
  border-radius: var(--r-lg);
  overflow: hidden;
  color: var(--ivory);
  isolation: isolate;
  background: var(--ink-2);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
  will-change: transform;
}
.bcell:hover { transform: translateY(-6px); box-shadow: var(--sh-3); }
.bcell img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
}
.bcell:hover img { transform: scale(1.07); }
.bcell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(20,22,26,.18) 0%, rgba(20,22,26,.58) 52%, rgba(20,22,26,.9) 100%);
  transition: background var(--t) var(--ease);
}
.bcell:hover::before { background: linear-gradient(180deg, rgba(20,22,26,.28) 0%, rgba(20,22,26,.66) 52%, rgba(20,22,26,.94) 100%); }
.bcell__k {
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-3);
  margin-bottom: 10px;
}
.bcell h3 { color: #fff; margin-bottom: 8px; }
.bcell p { font-size: var(--step--1); line-height: 1.6; color: rgba(247,244,238,.78); max-width: 44ch; }
.bcell__more {
  margin-top: var(--s-2);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: var(--step--1);
  font-weight: 700;
  color: var(--gold-3);
}
.bcell__more svg { width: 16px; height: 16px; transition: transform var(--t) var(--ease); }
.bcell:hover .bcell__more svg { transform: translateX(5px); }
.bcell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255,255,255,.12);
  pointer-events: none;
}

@media (min-width: 1060px) {
  .bcell--a { grid-column: span 4; min-height: 420px; }
  .bcell--b { grid-column: span 2; min-height: 420px; }
  .bcell--c { grid-column: span 2; min-height: 370px; }
  .bcell--d { grid-column: span 2; min-height: 370px; }
  .bcell--e { grid-column: span 2; min-height: 370px; }
  .bcell--f { grid-column: span 3; min-height: 340px; }
  .bcell--g { grid-column: span 3; min-height: 340px; }
}

/* --- Merkkaart ------------------------------------------------------------ */
.merk {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  padding: clamp(20px, 2.4vw, 28px);
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: var(--r);
  background: var(--paper);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.merk:hover { transform: translateY(-4px); box-shadow: var(--sh-2); }
.merk__name {
  font-family: var(--font-display);
  font-size: var(--step-1);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.2;
}
.merk p { font-size: var(--step--1); line-height: 1.6; color: var(--muted); }
.section--dark .merk,
.section--tint .merk { background: var(--paper); }

/* --- Binnenkort blok ------------------------------------------------------ */
.soon {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--s-3);
  margin-top: var(--s-4);
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--r-lg);
  border: 1px dashed rgba(184, 134, 43, .5);
  background: linear-gradient(120deg, rgba(184,134,43,.09), rgba(215,169,79,.03));
}
.soon__body { display: flex; flex-direction: column; gap: 10px; max-width: 62ch; }
.soon__body h3 { font-size: var(--step-2); }
.soon__body p { font-size: var(--step--1); line-height: 1.6; color: var(--muted); }
.soon .pill { align-self: flex-start; }

/* --- Comfort slider (voor/na) -------------------------------------------- */
.compare {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--ink-2);
  box-shadow: var(--sh-3);
  touch-action: pan-y;
  cursor: ew-resize;
  user-select: none;
  -webkit-user-select: none;
}
@media (min-width: 900px) { .compare { aspect-ratio: 16 / 10; } }
.compare__layer { position: absolute; inset: 0; }
.compare__layer img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
.compare__layer--sun img { filter: saturate(1.25) brightness(1.28) contrast(.94); }
.compare__layer--sun::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(118deg, rgba(255,226,150,.55) 0%, rgba(255,209,110,.2) 42%, rgba(255,255,255,0) 72%);
  mix-blend-mode: screen;
  pointer-events: none;
}
.compare__layer--shade {
  clip-path: inset(0 0 0 50%);
  will-change: clip-path;
}
.compare__layer--shade img { filter: saturate(1.02) brightness(.72) contrast(1.06); }
.compare__layer--shade::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,22,26,.28), rgba(20,22,26,.1)),
    repeating-linear-gradient(180deg, rgba(0,0,0,.13) 0px, rgba(0,0,0,.13) 6px, rgba(0,0,0,.03) 7px, rgba(0,0,0,.03) 12px);
  pointer-events: none;
}
.compare__handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: rgba(255,255,255,.92);
  transform: translateX(-50%);
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 0 24px rgba(0,0,0,.45);
}
.compare__grip {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid #fff;
  display: grid;
  place-items: center;
  color: #fff;
  box-shadow: 0 8px 26px rgba(0,0,0,.4);
}
.compare__grip svg { width: 24px; height: 24px; }
.compare__tag {
  position: absolute;
  top: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 13px;
  border-radius: var(--r-full);
  background: rgba(20,22,26,.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  line-height: 1;
  pointer-events: none;
}
.compare__tag svg { width: 14px; height: 14px; color: var(--gold-3); flex: 0 0 14px; }
.compare__tag--l { left: 16px; }
.compare__tag--r { right: 16px; }
.compare__range {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  margin: 0;
}

/* --- Kleuren grid --------------------------------------------------------- */
.swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(94px, 1fr));
  gap: var(--s-1);
}
.swatch {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--r-sm);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease), border-color var(--t) var(--ease);
}
.swatch:hover { transform: translateY(-4px); box-shadow: var(--sh-2); border-color: rgba(184,134,43,.4); }
.swatch__chip { aspect-ratio: 5 / 3; width: 100%; display: block; }
.swatch__meta { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 2px; }
.swatch__name { font-size: var(--step--2); font-weight: 700; line-height: 1.3; }
.swatch__code { font-size: var(--step--2); color: var(--muted); line-height: 1.3; }

/* --- Infographic paneel --------------------------------------------------- */
.infopanel {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--sh-2);
}
.infopanel img { width: 100%; height: auto; display: block; }
.infopanel__cap {
  padding: 14px clamp(16px, 2vw, 22px);
  border-top: 1px solid var(--line);
  font-size: var(--step--2);
  color: var(--muted);
  line-height: 1.5;
}

/* --- Werkgebied ----------------------------------------------------------- */
.places { display: flex; flex-wrap: wrap; gap: 10px; }
.place {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--r-full);
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.05);
  font-size: var(--step--1);
  font-weight: 600;
  line-height: 1;
  color: var(--ivory);
  transition: background var(--t) var(--ease), border-color var(--t) var(--ease), transform var(--t) var(--ease);
}
.place:hover { background: rgba(215,169,79,.14); border-color: rgba(215,169,79,.5); transform: translateY(-2px); }
.place svg { width: 13px; height: 13px; color: var(--gold-2); flex: 0 0 13px; }

/* --- CTA band ------------------------------------------------------------- */
.ctaband {
  position: relative;
  overflow: hidden;
  background: var(--ink);
  color: var(--ivory);
  isolation: isolate;
}
.ctaband__bg { position: absolute; inset: 0; z-index: -2; }
.ctaband__bg img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 55%; }
.ctaband::before {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(102deg, rgba(20,22,26,.96) 0%, rgba(20,22,26,.82) 46%, rgba(20,22,26,.55) 100%);
}
.ctaband__inner {
  display: grid;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  padding-block: clamp(64px, 8vw, 112px);
}
@media (min-width: 940px) { .ctaband__inner { grid-template-columns: 1.25fr 1fr; } }
.ctaband h2 { color: #fff; }
.ctaband p { color: rgba(247,244,238,.78); font-size: var(--step-1); line-height: 1.55; max-width: 52ch; }
.ctacard {
  display: flex;
  flex-direction: column;
  gap: var(--s-2);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line-dark);
  background: rgba(255,255,255,.06);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}
.ctacard__row {
  display: flex;
  align-items: center;
  gap: var(--s-2);
  padding-block: 12px;
  border-bottom: 1px solid var(--line-dark);
}
.ctacard__row:last-of-type { border-bottom: 0; }
.ctacard__ico {
  width: 40px; height: 40px;
  flex: 0 0 40px;
  display: grid; place-items: center;
  border-radius: var(--r-xs);
  background: rgba(215,169,79,.16);
  color: var(--gold-2);
}
.ctacard__ico svg { width: 19px; height: 19px; }
.ctacard__txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.ctacard__lbl { font-size: var(--step--2); letter-spacing: .1em; text-transform: uppercase; color: rgba(247,244,238,.5); line-height: 1.4; }
.ctacard__val { font-size: var(--step-0); font-weight: 700; color: var(--ivory); line-height: 1.4; overflow-wrap: anywhere; }

/* --- Feature lijst -------------------------------------------------------- */
.checks { display: grid; gap: 12px; }
@media (min-width: 640px) { .checks--2 { grid-template-columns: 1fr 1fr; } }
.checks li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: var(--step--1);
  line-height: 1.55;
}
.checks svg {
  width: 20px; height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
  margin-top: 2px;
}
.section--dark .checks svg { color: var(--gold-2); }

/* --- Quote / statement ---------------------------------------------------- */
.statement {
  position: relative;
  text-align: center;
  max-width: 22ch;
  margin-inline: auto;
  font-family: var(--font-display);
  font-size: var(--step-4);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.025em;
}
.statement em { font-style: normal; color: var(--gold); }

/* --- Galerij -------------------------------------------------------------- */
.gallery { display: grid; gap: var(--s-2); }
@media (min-width: 640px)  { .gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1000px) { .gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.gitem {
  position: relative;
  border-radius: var(--r);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--ivory-2);
  border: 1px solid var(--line);
}
.gitem img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease-out);
}
.gitem:hover img { transform: scale(1.06); }
.gitem figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 34px 18px 16px;
  font-size: var(--step--2);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, rgba(20,22,26,0), rgba(20,22,26,.82));
}

/* --- Contact -------------------------------------------------------------- */
.contactgrid { display: grid; gap: clamp(32px, 5vw, 64px); align-items: start; }
@media (min-width: 940px) { .contactgrid { grid-template-columns: 1.15fr .85fr; } }
.formcard {
  padding: clamp(24px, 3vw, 40px);
  border-radius: var(--r-lg);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--sh-2);
}
.infocard {
  display: flex;
  flex-direction: column;
  gap: var(--s-3);
  padding: clamp(24px, 3vw, 36px);
  border-radius: var(--r-lg);
  background: var(--ink);
  color: var(--ivory);
  height: 100%;
}
.infocard a { transition: color var(--t-fast) var(--ease); }
.infocard a:hover { color: var(--gold-2); }

/* --- Bedankt -------------------------------------------------------------- */
.thanks {
  min-height: calc(100svh - var(--nav-h) - var(--bar-h));
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: var(--s-9);
}
.thanks__inner { display: flex; flex-direction: column; align-items: center; gap: var(--s-3); max-width: 620px; }
.thanks__ico {
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: linear-gradient(140deg, rgba(184,134,43,.2), rgba(215,169,79,.08));
  color: var(--gold);
}
.thanks__ico svg { width: 40px; height: 40px; }

/* --- Legal ---------------------------------------------------------------- */
.prose { max-width: var(--maxw-text); }
.prose h2 { font-size: var(--step-2); margin-top: var(--s-6); margin-bottom: var(--s-2); }
.prose h2:first-child { margin-top: 0; }
.prose p, .prose li { font-size: var(--step--1); line-height: 1.75; color: var(--muted); }
.prose p + p { margin-top: var(--s-2); }
.prose ul { display: grid; gap: 8px; margin-top: var(--s-2); padding-left: 20px; list-style: disc; }
.prose a { color: var(--gold); font-weight: 600; }
.prose a:hover { text-decoration: underline; }
