/* ==========================================================================
   Her Brand Era, waitlist. One screen: the arch, the name, the form.
   Tokens first. Change the brand here and the whole page follows.
   Motion rule: slow, transform/opacity only, one entrance sequence, nothing loops fast.
   ========================================================================== */
:root {
  --cream: #FCF7F0;
  --paper: #FFFDF9;
  --blush: #F6D9D8;
  --blush-deep: #EBB9BD;
  --butter: #F8EAB0;
  --gold: #C9A158;        /* decoration only: lines, sparkles */
  --gold-light: #F3DFA6;  /* the glint that travels over the gold */
  --gold-ink: #87631F;    /* gold that is readable as text */
  --ink: #3D2A2F;
  --ink-soft: #6B5559;
  --rose: #8E3F57;        /* the one action color */
  --rose-hover: #7A344A;
  --error: #A3303F;

  --serif: "Bodoni Moda", "Didot", "Bodoni 72", Georgia, serif;
  --script: "Cormorant Garamond", "Bodoni Moda", Georgia, serif;
  --sans: "Jost", "Futura", "Avenir Next", system-ui, sans-serif;

  --ease: cubic-bezier(.2, .7, .2, 1);
  /* pointer parallax, set by js/motion.js (desktop only) */
  --px: 0;
  --py: 0;

  color-scheme: light;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-height: 100svh;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; }
[hidden] { display: none !important; }
h1, p, ul { margin: 0; }
:focus-visible { outline: 2px solid var(--rose); outline-offset: 3px; border-radius: 4px; }

.spark { width: 14px; height: 14px; color: var(--gold); flex: none; }
.spark--xs { width: 10px; height: 10px; }

/* ---------- Atmosphere: parallax layers ---------- */
.layer { position: fixed; inset: -40px; pointer-events: none; z-index: 0; will-change: transform; }
.layer--far  { transform: translate3d(calc(var(--px) * -10px), calc(var(--py) * -10px), 0); }
.layer--near { transform: translate3d(calc(var(--px) * 22px), calc(var(--py) * 22px), 0); }

.orb { position: absolute; border-radius: 50%; }
.orb--blush {
  width: 70vmax; height: 70vmax; left: -22vmax; top: -30vmax;
  background: radial-gradient(closest-side, rgba(246, 217, 216, .75), rgba(246, 217, 216, 0));
}
.orb--butter {
  width: 64vmax; height: 64vmax; right: -24vmax; bottom: -28vmax;
  background: radial-gradient(closest-side, rgba(248, 234, 176, .7), rgba(248, 234, 176, 0));
}

.layer--near .spark { position: absolute; }
.f1 { width: 22px; height: 22px; top: 14%; left: 13%; }
.f2 { width: 11px; height: 11px; top: 26%; left: 22%; opacity: .7; }
.f3 { width: 14px; height: 14px; top: 30%; right: 13%; }
.f4 { width: 28px; height: 28px; bottom: 24%; right: 16%; }
.f5 { width: 12px; height: 12px; bottom: 18%; left: 11%; opacity: .75; }
.f6 { width: 9px;  height: 9px;  top: 58%; right: 24%; opacity: .6; }

/* ---------- Page ---------- */
.page {
  position: relative; z-index: 1;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 1.1rem;
  padding: clamp(1.25rem, 4vh, 2.5rem) 16px calc(1rem + env(safe-area-inset-bottom));
}

/* ---------- The arch ---------- */
.stage {
  position: relative;
  width: min(620px, 100%);
  isolation: isolate;
}
.stage__glass {
  position: absolute; inset: -14px -14px 0; z-index: -1;
  /* the arch dissolves into the page instead of ending in a hard edge */
  -webkit-mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
          mask-image: linear-gradient(180deg, #000 80%, transparent 100%);
  transform: translate3d(calc(var(--px) * 4px), calc(var(--py) * 4px), 0);
}
.stage__sun {
  position: absolute; inset: 14px 14px 0;
  border-radius: 9999px 9999px 0 0;
  background:
    radial-gradient(120% 55% at 50% 100%, var(--butter) 0%, rgba(248, 234, 176, 0) 65%),
    radial-gradient(80% 40% at 50% 14%, #fff 0%, rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, var(--blush) 0%, #F9E3DC 50%, #FBEFD2 100%);
}
/* Hairline halo in gold, 14px outside the glass, with a glint that travels along it.
   The ring is cut with a mask so only the 1.2px border shows; the glint is a child that
   moves with transform, so it never repaints the arch. */
.stage__frame {
  position: absolute; inset: 0;
  border-radius: 9999px 9999px 0 0;
  padding: 1.2px 1.2px 0;
  background: var(--gold);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box exclude, linear-gradient(#000 0 0);
  overflow: hidden;
}
.stage__frame::after {
  content: "";
  position: absolute; inset: -20% -60%;
  background: linear-gradient(105deg, transparent 38%, var(--gold-light) 48%, #fff 50%, var(--gold-light) 52%, transparent 62%);
  transform: translateX(-60%);
}

.stage__content {
  display: grid; justify-items: center; text-align: center;
  /* % padding is relative to the arch WIDTH, so the words always start below the curve */
  padding: 25% clamp(1.1rem, 7%, 3.5rem) clamp(2.5rem, 6vh, 3.5rem);
}

.kicker {
  display: inline-flex; align-items: center; gap: .7rem;
  font-size: .76rem; font-weight: 500; letter-spacing: .34em; text-transform: uppercase;
  color: var(--gold-ink);
  margin-bottom: 1rem;
}
/* the gold words catch the light now and then */
.kicker__text {
  background: linear-gradient(100deg, var(--gold-ink) 0 40%, #C59A45 48%, #E9CD86 50%, #C59A45 52%, var(--gold-ink) 60% 100%);
  background-size: 250% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---------- The name: one line, editorial ---------- */
.title {
  width: 100%;
  font-weight: 400;
  /* starting size; js/motion.js shrinks it so the name ALWAYS fits on one line */
  font-size: clamp(2.3rem, 8.4vw, 4.1rem);
  line-height: 1;
  white-space: nowrap;
}
.title__line { display: inline-flex; align-items: baseline; gap: .3em; }
.title__script {
  font-family: var(--script);
  font-style: italic;
  font-weight: 500;
  font-size: 1.22em;
  letter-spacing: -.01em;
  text-transform: none;
  margin-right: .02em;
}
.title__main {
  font-family: var(--serif);
  font-optical-sizing: auto;
  text-transform: uppercase;
  letter-spacing: .02em;
}
/* word wrappers made by js/motion.js for the entrance */
.title .w { display: inline-block; overflow: hidden; padding: .06em .02em .12em; margin: -.06em -.02em -.12em; vertical-align: bottom; }
.title .w > span { display: inline-block; }

.tease {
  max-width: 24rem;
  margin-top: .9rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.05rem, .98rem + .5vw, 1.3rem);
  line-height: 1.45;
  color: var(--ink-soft);
  text-wrap: balance;
}
/* the one word that stands out (Salomé 2026-09-25) */
.tease__hl { font-style: italic; font-weight: 500; color: var(--rose); }

/* ---------- Form: vertical, two main fields, one quiet one ---------- */
.signup { width: min(100%, 400px); margin-top: clamp(1.3rem, 3vh, 2rem); }
.form { display: grid; gap: .85rem; text-align: left; }
.form__lead {
  display: flex; align-items: center; gap: .9rem;
  font-size: .74rem; font-weight: 500; letter-spacing: .26em; text-transform: uppercase;
  color: var(--ink);
}
/* hairlines on both sides, like a line on an invitation */
.form__lead::before, .form__lead::after { content: ""; flex: 1; height: 1px; background: linear-gradient(90deg, transparent, rgba(201, 161, 88, .6)); }
.form__lead::after { background: linear-gradient(90deg, rgba(201, 161, 88, .6), transparent); }

.field { display: grid; gap: .3rem; position: relative; }
.field label { font-size: .8rem; font-weight: 500; letter-spacing: .03em; color: var(--ink); }
.field--main input {
  width: 100%;
  min-height: 52px;
  padding: 0 1.1rem;
  font: 400 1rem var(--sans); /* 16px+ stops iOS from zooming in */
  color: var(--ink);
  background: rgba(255, 253, 249, .78);
  border: 1px solid rgba(201, 161, 88, .42);
  border-radius: 16px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, .8) inset;
  transition: border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
}
.field--main input:hover { border-color: rgba(201, 161, 88, .7); }
.field--main input:focus {
  outline: none; border-color: var(--rose); background: #fff;
  box-shadow: 0 0 0 4px rgba(246, 217, 216, .85), 0 8px 24px -14px rgba(142, 63, 87, .45);
}
.field--main.has-error input { border-color: var(--error); background: #FFF6F6; }

/* Nationality: a single quiet line, not a box */
.field--soft { margin-top: .1rem; }
.combo__row {
  display: flex; align-items: center; gap: .9rem;
  border-bottom: 1px solid rgba(201, 161, 88, .5);
  transition: border-color .3s ease;
}
.combo__row:focus-within { border-bottom-color: var(--rose); }
.field--soft.has-error .combo__row { border-bottom-color: var(--error); }
.field--soft label {
  flex: none;
  font-size: .72rem; font-weight: 500; letter-spacing: .16em; text-transform: uppercase;
  color: var(--ink-soft);
}
.combo__box { position: relative; flex: 1; }
.combo__box input {
  width: 100%;
  height: 40px;
  padding: 0 1.6rem 0 0;
  border: 0; background: transparent;
  font: 400 1rem var(--sans);
  color: var(--ink);
}
.combo__box input:focus { outline: none; }
.field input::placeholder { color: #A8959A; }
.combo__chev {
  position: absolute; right: .1rem; top: 50%; width: 14px; height: 14px; translate: 0 -50%;
  fill: none; stroke: var(--ink-soft); stroke-width: 1.5; pointer-events: none;
  transition: rotate .25s ease;
}
.combo.is-open .combo__chev { rotate: 180deg; }
.combo__list {
  position: absolute; z-index: 10; top: calc(100% + 8px); left: -8px; right: -8px;
  max-height: 240px; overflow-y: auto; overscroll-behavior: contain;
  margin: 0; padding: .4rem; list-style: none;
  background: #fff; border-radius: 16px;
  box-shadow: 0 18px 50px -12px rgba(61, 42, 47, .28), 0 0 0 1px #EFE2DC;
}
/* Not enough room under the field (phone keyboard open): the list opens upward. */
.combo.is-up .combo__list { top: auto; bottom: calc(100% + 8px); }
.combo__list li { display: flex; align-items: center; gap: .7rem; padding: .6rem .8rem; border-radius: 10px; cursor: pointer; }
.combo__list li[aria-selected="true"], .combo__list li:hover { background: #FBEDEA; }
.combo__list .flag { font-size: 1.15rem; line-height: 1; }
.combo__list .empty { color: var(--ink-soft); cursor: default; background: none !important; }

.field__error { font-size: .8rem; color: var(--error); }
.field__error:empty { display: none; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---------- The button ---------- */
.btn {
  position: relative; overflow: hidden; isolation: isolate;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  width: 100%;
  min-height: 56px;
  margin-top: .5rem;
  border: 0; border-radius: 999px;
  background: linear-gradient(180deg, #9A4760 0%, var(--rose) 55%, #843A51 100%);
  color: #fff;
  font: 500 .92rem/1 var(--sans); letter-spacing: .14em; text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 12px 26px -12px rgba(142, 63, 87, .65), inset 0 0 0 1px rgba(255, 255, 255, .14), inset 0 1px 0 rgba(255, 255, 255, .22);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
/* a slow sheen crosses the button on hover */
.btn::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(110deg, transparent 30%, rgba(255, 236, 190, .45) 50%, transparent 70%);
  transform: translateX(-110%);
  transition: transform .9s var(--ease);
}
.btn__spark { display: inline-block; transition: transform .6s var(--ease); }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -14px rgba(142, 63, 87, .7), 0 0 0 5px rgba(246, 217, 216, .55), inset 0 0 0 1px rgba(255, 255, 255, .2), inset 0 1px 0 rgba(255, 255, 255, .25);
}
.btn:hover::after { transform: translateX(110%); }
.btn:hover .btn__spark { transform: rotate(18deg) scale(1.2); }
.btn:active { transform: translateY(0) scale(.99); transition-duration: .15s; }
.btn__spinner {
  display: none; width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .35); border-top-color: #fff;
  animation: spin .8s linear infinite;
}
.btn.is-loading { pointer-events: none; }
.btn.is-loading .btn__label { opacity: .7; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__status { font-size: .88rem; text-align: center; }
.form__status:empty { display: none; }
.form__status.is-error { color: var(--error); }
.form__status.is-info { color: var(--gold-ink); }

/* ---------- Confirmation: the card Salomé chose ---------- */
.success {
  position: relative;
  padding: 2.4rem 1.6rem 2.2rem;
  text-align: center; outline: none;
  background: var(--paper);
  border-radius: 26px;
  box-shadow: 0 1px 2px rgba(92, 52, 60, .05), 0 18px 44px -16px rgba(142, 63, 87, .28);
}
.success::before {
  content: ""; position: absolute; inset: 9px; border-radius: 19px;
  border: 1px solid rgba(201, 161, 88, .45); pointer-events: none;
}
.success__burst { position: relative; width: 90px; height: 66px; margin: 0 auto .9rem; }
.success__burst .spark { position: absolute; }
.success__burst .b1 { width: 40px; height: 40px; left: 25px; top: 14px; }
.success__burst .b2 { width: 16px; height: 16px; left: 6px; top: 0; }
.success__burst .b3 { width: 13px; height: 13px; right: 4px; bottom: 4px; }
.success__title { font-family: var(--serif); font-size: clamp(1.4rem, 6.4vw, 2.4rem); line-height: 1.12; white-space: nowrap; }
.success__text { margin: .8rem auto 0; max-width: 22rem; color: var(--ink-soft); line-height: 1.6; }

.foot {
  display: flex; flex-wrap: wrap; justify-content: center; align-items: center;
  gap: .35rem 1.1rem;
  font-size: .76rem; color: var(--ink-soft); letter-spacing: .04em; text-align: center;
}
.foot__links { display: flex; gap: 1.1rem; }
.foot a {
  color: var(--ink-soft); text-decoration: underline;
  text-decoration-color: rgba(201, 161, 88, .7); text-underline-offset: 3px;
  transition: color .2s ease;
}
.foot a:hover { color: var(--rose); }

/* ==========================================================================
   Motion. Everything below is off for people who ask for reduced motion.
   ========================================================================== */
@media (prefers-reduced-motion: no-preference) {
  /* 1. Entrance, one sequence: the arch rises, the name arrives word by word, then the form. */
  .stage__glass { animation: glass-in 1.6s var(--ease) both; }
  .kicker { animation: rise 1s var(--ease) .45s both; }
  html.js .title { opacity: 0; }
  html.js .title.is-in { opacity: 1; }
  .title.is-in .title__script > .w > span { animation: script-in 1.4s var(--ease) .6s both; }
  .title.is-in .title__main .w > span { animation: word-up 1.1s var(--ease) both; }
  .title.is-in .title__main .w:nth-child(1) > span { animation-delay: .78s; }
  .title.is-in .title__main .w:nth-child(2) > span { animation-delay: .9s; }
  .title.is-in .title__main .w:nth-child(3) > span { animation-delay: 1.02s; }
  .title.is-in .title__main .w:nth-child(n+4) > span { animation-delay: 1.12s; }
  .tease { animation: rise 1s var(--ease) 1.25s both; }
  .form > * { animation: rise .9s var(--ease) both; }
  .form > :nth-child(1) { animation-delay: 1.5s; }
  .form > :nth-child(2) { animation-delay: 1.6s; }
  .form > :nth-child(3) { animation-delay: 1.7s; }
  .form > :nth-child(4) { animation-delay: 1.8s; }
  .form > :nth-child(5) { animation-delay: 1.85s; }
  .form > :nth-child(7) { animation-delay: 1.95s; }
  .foot { animation: fade 1s ease 2.1s both; }

  /* 2. Always on, very slow: floating sparkles, drifting light, gold glints. */
  .f1 { animation: float-a 14s ease-in-out infinite, twinkle 6s ease-in-out infinite; }
  .f2 { animation: float-b 11s ease-in-out -3s infinite, twinkle 5s ease-in-out -1s infinite; }
  .f3 { animation: float-b 16s ease-in-out -6s infinite, twinkle 7s ease-in-out -2s infinite; }
  .f4 { animation: spin-slow 40s linear infinite, float-a 13s ease-in-out -5s infinite; }
  .f5 { animation: float-a 12s ease-in-out -8s infinite, twinkle 6s ease-in-out -4s infinite; }
  .f6 { animation: float-b 15s ease-in-out -2s infinite, twinkle 4.5s ease-in-out -3s infinite; }
  .orb--blush  { animation: drift-a 26s ease-in-out infinite alternate; }
  .orb--butter { animation: drift-b 30s ease-in-out infinite alternate; }
  .stage__frame::after { animation: glint 7s ease-in-out 2.4s infinite; }
  .kicker__text { animation: text-glint 7s ease-in-out 3.2s infinite; }
  .kicker .spark { animation: spin-slow 18s linear infinite; }

  .success:not([hidden]) { animation: rise .8s var(--ease) both; }
  .success:not([hidden]) .success__burst .spark { animation: pop .7s cubic-bezier(.2, 1.6, .4, 1) .15s both; }
  .success:not([hidden]) .b2 { animation-delay: .27s; }
  .success:not([hidden]) .b3 { animation-delay: .37s; }
}
@media (prefers-reduced-motion: reduce) {
  html.js .title { opacity: 1; }
  .btn, .btn::after, .btn__spark { transition: none; }
}

@keyframes glass-in { from { opacity: 0; transform: translateY(24px) scale(.985); } to { opacity: 1; transform: none; } }
@keyframes rise { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes word-up { from { transform: translateY(105%); } to { transform: none; } }
@keyframes script-in { from { opacity: 0; transform: translate(-.18em, .12em) rotate(-4deg); } to { opacity: 1; transform: none; } }
@keyframes float-a { 0%, 100% { translate: 0 0; } 50% { translate: 6px -14px; } }
@keyframes float-b { 0%, 100% { translate: 0 0; } 50% { translate: -8px 10px; } }
@keyframes twinkle { 0%, 100% { scale: 1; opacity: 1; } 50% { scale: .6; opacity: .45; } }
@keyframes spin-slow { to { rotate: 360deg; } }
@keyframes drift-a { to { transform: translate(6vmax, 4vmax); } }
@keyframes drift-b { to { transform: translate(-5vmax, -6vmax); } }
@keyframes glint { 0% { transform: translateX(-60%); } 45%, 100% { transform: translateX(60%); } }
@keyframes text-glint { 0% { background-position: 100% 0; } 40%, 100% { background-position: 0 0; } }
@keyframes pop { from { transform: scale(0) rotate(-40deg); opacity: 0; } to { transform: none; opacity: 1; } }
/* If the script never runs, the name still shows. */
@keyframes show { to { opacity: 1; } }
html.js .title:not(.is-in) { animation: show .01s 2.5s forwards; }

/* ---------- Phones ---------- */
@media (max-width: 639px) {
  .page { align-content: start; padding-top: .75rem; gap: .8rem; }
  .stage { width: calc(100% - 20px); }
  .stage__content { padding: 22% 1.1rem 2rem; }
  .kicker { font-size: .66rem; letter-spacing: .28em; margin-bottom: .7rem; }
  .tease { font-size: .98rem; margin-top: .7rem; }
  .signup { margin-top: 1.1rem; }
  .form { gap: .6rem; }
  .form__lead { font-size: .68rem; }
  .field { gap: .2rem; }
  .field--main input { min-height: 48px; }
  .combo__box input { height: 38px; }
  .btn { min-height: 54px; margin-top: .35rem; }
  .f2, .f6 { display: none; }
  .f1 { top: 3%; left: 6%; }
  .f3 { top: 16%; right: 4%; }
  .f4 { bottom: 8%; right: 5%; width: 20px; height: 20px; }
  .f5 { bottom: 5%; left: 6%; }
}
/* the italic word leans out of its box: don't clip it */
.title__script .w { overflow: visible; }

/* Each animated block becomes its own layer (an animation on opacity/transform creates a
   stacking context), so later blocks painted OVER the country list. The quiet field and
   the arch are lifted above what comes after them. */
.field--soft { z-index: 20; }
.stage { z-index: 2; }
.foot { position: relative; z-index: 1; }

/* ---------- Consent ---------- */
.consent { display: flex; align-items: flex-start; gap: .65rem; cursor: pointer; }
.consent input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.consent__box {
  flex: none; display: grid; place-items: center;
  width: 18px; height: 18px; margin-top: .12rem;
  border: 1px solid rgba(201, 161, 88, .8); border-radius: 5px;
  background: rgba(255, 253, 249, .8);
  transition: background-color .25s ease, border-color .25s ease;
}
.consent__box svg { width: 12px; height: 12px; fill: none; stroke: #fff; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; opacity: 0; transform: scale(.6); transition: opacity .2s ease, transform .25s var(--ease); }
.consent input:checked + .consent__box { background: var(--rose); border-color: var(--rose); }
.consent input:checked + .consent__box svg { opacity: 1; transform: none; }
.consent input:focus-visible + .consent__box { outline: 2px solid var(--rose); outline-offset: 2px; }
.field--consent.has-error .consent__box { border-color: var(--error); }
.consent__text { font-size: .76rem; line-height: 1.45; color: var(--ink-soft); }
.consent__text a { color: var(--ink); text-decoration: underline; text-decoration-color: rgba(201, 161, 88, .8); text-underline-offset: 2px; }

/* ---------- Privacy page ---------- */
.legal-page {
  background:
    radial-gradient(60% 40% at 10% 0%, rgba(246, 217, 216, .6), transparent 70%),
    radial-gradient(50% 40% at 100% 100%, rgba(248, 234, 176, .5), transparent 70%),
    var(--cream);
}
.legal { width: min(680px, 100% - 32px); margin: 0 auto; padding: clamp(2rem, 6vh, 4rem) 0 4rem; }
.legal__back { display: inline-block; margin-bottom: 2rem; font-size: .85rem; color: var(--ink-soft); text-decoration: none; }
.legal__back:hover { color: var(--rose); }
.legal .kicker { animation: none; margin-bottom: .6rem; }
.legal__title { font-family: var(--serif); font-weight: 400; font-size: clamp(2.2rem, 1.6rem + 3vw, 3.4rem); line-height: 1.05; }
.legal__date { margin-top: .6rem; font-size: .85rem; color: var(--ink-soft); }
.legal h2 { margin: 2.2rem 0 .5rem; font-family: var(--serif); font-weight: 500; font-size: 1.3rem; }
.legal p { color: var(--ink-soft); line-height: 1.7; }
.legal a { color: var(--ink); text-decoration-color: var(--gold); text-underline-offset: 2px; }

/* legal pages: the same footer, with a little air above it */
.legal p + p, .legal ul + p { margin-top: .8rem; }
.legal-foot { animation: none; margin-top: 3.5rem; padding-top: 1.4rem; border-top: 1px solid rgba(201, 161, 88, .35); justify-content: flex-start; }
.legal ul { margin: .4rem 0 0; padding-left: 1.1rem; color: var(--ink-soft); line-height: 1.7; }
.legal li + li { margin-top: .3rem; }
