/* ===========================================================
   ANDY C ALIVE — Document · Bristol · Sat 03·10·2026
   Indigo field, crimson chromatic-split lettering and fiery
   portrait glow — sampled from the supplied poster. The poster
   is shown whole on the left over a blurred copy of itself.
   =========================================================== */

/* ---------- TOKENS (sampled from full_artwork.png) ---------- */
:root {
  --bone:        #f5f1f7;                    /* cool near-white text       */
  --bone-soft:   rgba(245, 241, 247, 0.72);
  --bone-faint:  rgba(245, 241, 247, 0.42);
  --bone-ghost:  rgba(245, 241, 247, 0.14);

  --field:         #15102a;                  /* dominant indigo field      */
  --field-deep:    #0c0a1c;
  --panel-bg:      rgba(18, 13, 36, 0.66);
  --panel-bg-solid:#171132;

  --hairline:    rgba(245, 241, 247, 0.14);
  --hairline-hi: rgba(245, 241, 247, 0.30);

  /* Crimson — the ANDY C ALIVE / BRSTL / DCMNT display lettering */
  --crimson:        #d9313d;
  --crimson-bright: #f0454f;
  --crimson-deep:   #b90b35;
  --crimson-ghost:  rgba(217, 49, 61, 0.15);
  /* Portrait fire — secondary warmth */
  --orange:      #fc8a2a;
  --orange-red:  #ee5e24;
  /* Chromatic-aberration ghost (the blue split on the poster lettering) */
  --cyan:        #36e0ff;

  --danger:      #ff8d7a;

  --sans:    "Helvetica Neue", "HelveticaNeue", Helvetica, "Nimbus Sans", "Liberation Sans", Arial, sans-serif;
  /* Display = the poster's own face: Neue Helvetica Pro 75 Bold. On the
     client's machines "Helvetica Neue" resolves to that family; elsewhere it
     falls back through Helvetica/Arial. Weight is carried by font-weight:700. */
  --display: "Helvetica Neue", "HelveticaNeue", Helvetica, "Nimbus Sans", "Liberation Sans", Arial, sans-serif;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
  color: var(--bone);
  background: var(--field-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg { display: block; max-width: 100%; }
a { color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* Display type is Neue Helvetica 75 Bold — carry the weight explicitly */
.panel__eyebrow, .panel__title, .form__label, .form__error,
.btn, .form__resend, .foot, .legal__back-brand,
.legal h1, .legal h2, .legal h3, .legal h4 {
  font-weight: 700;
}

/* ---------- BLURRED ARTWORK BACKDROP ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--field-deep);
}
.bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
/* Scrim — deepens the edges so the poster + panel read cleanly */
.scrim {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 50% 38%, transparent 0%, rgba(12, 10, 28, 0.5) 70%, rgba(12, 10, 28, 0.82) 100%),
    linear-gradient(180deg, rgba(12, 10, 28, 0.38) 0%, transparent 30%, rgba(12, 10, 28, 0.72) 100%);
}

/* ---------- LAYOUT ---------- */
.stage {
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 100vh;
  min-height: 100svh;
  padding: clamp(1rem, 2.5vw, 2rem) clamp(1rem, 4vw, 2.75rem) clamp(0.4rem, 1vw, 0.75rem);
  gap: clamp(1rem, 2.5vw, 2rem);
}

/* ---------- HERO ---------- */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  align-content: center;
  padding: clamp(0.5rem, 2vw, 2rem) 0;
}
@media (min-width: 1080px) {
  .hero {
    /* Pack the poster + panel into a centred container so they sit close
       together rather than pinned to opposite edges of a wide screen. */
    grid-template-columns: minmax(0, auto) minmax(380px, 430px);
    justify-content: center;
    gap: clamp(1.4rem, 2.8vw, 2.6rem);
    max-width: 1120px;
    margin: 0 auto;
  }
}
.hero__col { min-width: 0; }

/* ---------- POSTER COLUMN ----------
   The supplied artwork composite, shown whole. Its own indigo field
   matches the page, so it sits framed in a thin crimson edge with a
   warm glow lifting it off the blurred backdrop. */
.hero__col--poster {
  animation: fade-up 1.1s cubic-bezier(.2,.7,.2,1) 0.15s both;
  display: flex;
  justify-content: center;
}
.poster { margin: 0; line-height: 0; }
.poster img {
  width: min(86vw, 440px);
  height: auto;
  border: 1px solid var(--crimson-ghost);
  /* Layered drop shadow (tight contact + deep cast) so the poster lifts
     clearly off its own blurred backdrop, with a crimson ambient glow. */
  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.55),
    0 22px 40px rgba(0, 0, 0, 0.6),
    0 44px 90px rgba(0, 0, 0, 0.72),
    0 0 110px rgba(217, 49, 61, 0.24);
}
@media (min-width: 1080px) {
  .poster img {
    width: auto;
    max-width: 100%;
    max-height: min(86vh, 800px);
  }
}

/* ---------- SIGNUP PANEL ---------- */
.signup { display: flex; justify-content: center; }
.panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: clamp(1.5rem, 3vw, 2.1rem) clamp(1.25rem, 3vw, 1.9rem);
  background: var(--panel-bg);
  backdrop-filter: blur(12px) saturate(1.1);
  -webkit-backdrop-filter: blur(12px) saturate(1.1);
  border: 1px solid var(--hairline-hi);
  border-radius: 0;
  /* box-shadow (not ::before) so the intl-tel-input dropdown can overflow
     freely and nothing stacks over the form — blueprint gotcha #2 */
  box-shadow:
    inset 0 1px 0 rgba(245, 241, 247, 0.16),
    inset 0 0 60px rgba(217, 49, 61, 0.05),
    0 26px 70px rgba(0, 0, 0, 0.62);
  animation: fade-up 1.1s cubic-bezier(.2,.7,.2,1) 0.45s both;
}

/* State machine — blueprint contract */
.panel__idle, .panel__otp, .panel__success { display: none; }
.panel[data-form-state="idle"]    .panel__idle    { display: block; }
.panel[data-form-state="otp"]     .panel__otp     { display: block; }
.panel[data-form-state="success"] .panel__success { display: block; }

.panel__eyebrow {
  margin: 0 0 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--display);
  font-size: 11.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson);
}
.panel__eyebrow-hair {
  flex: 0 0 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--crimson), transparent);
}
.panel__eyebrow-hair:last-child {
  flex: 1 1 auto;
  background: linear-gradient(90deg, var(--crimson), transparent 80%);
}

.panel__title {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(2.3rem, 5.4vw, 3.15rem);
  line-height: 0.98;
  letter-spacing: -0.012em;   /* tight tracking suits bold Helvetica display */
  text-transform: uppercase;
  color: var(--bone);
  text-wrap: balance;
}
/* The active phrase goes crimson with a faint red/cyan chromatic split —
   the same misregistration as the poster lettering. */
.panel__title em {
  font-style: normal;
  color: var(--crimson);
  text-shadow: -1.5px 0 rgba(54, 224, 255, 0.55), 1.5px 0 rgba(185, 11, 53, 0.55);
}
@media (prefers-reduced-motion: no-preference) {
  .panel__title em { animation: chroma 7s steps(1) 1s infinite; }
}

.panel__lede {
  margin: 0 0 1.4rem;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--bone-soft);
  text-wrap: pretty;
}
/* Scoped to avoid clobbering eyebrow — blueprint gotcha #3 */
.panel__success p:not(.panel__eyebrow) {
  color: var(--bone-soft);
  margin: 0 0 1.4rem;
  font-size: 14.5px;
  line-height: 1.55;
}
.panel__success-note {
  margin: 0 0 1.1rem !important;
  padding: 0.7rem 0.9rem;
  background: var(--crimson-ghost);
  border-left: 2px solid var(--crimson);
  border-radius: 0;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: var(--bone) !important;
}

/* ---------- FORM ---------- */
.form { display: flex; flex-direction: column; gap: 0.95rem; margin: 0; padding: 0; }
/* display:none (not off-screen): an off-screen field is still a live autofill
   target and Chrome/Edge would fill it, silently blocking the real submit. */
.form__honeypot { display: none !important; }
.form__row { position: relative; }

.form__label {
  display: block;
  margin: 0 0 0.35rem;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bone-faint);
}

.form__input {
  width: 100%;
  padding: 0.65rem 0;
  background: transparent;
  color: var(--bone);
  border: 0;
  border-bottom: 1px solid var(--hairline);
  border-radius: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: border-color .2s ease;
  -webkit-appearance: none;
  appearance: none;
}
.form__input::placeholder { color: var(--bone-faint); letter-spacing: 0; }
.form__input:focus { outline: 0; border-bottom-color: var(--crimson); }
.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--bone);
  -webkit-box-shadow: 0 0 0 1000px var(--panel-bg-solid) inset;
  transition: background-color 5000s ease-in-out 0s;
}
.form__input--otp {
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.45em;
  text-align: center;
  padding: 0.8rem 0;
}

/* ============================================================
   intl-tel-input (v19) — indigo/crimson theme
   ============================================================ */
.iti { display: block; width: 100%; }
/* Vendor reserves ~52px for the flag/dial-code area — gotcha #1 */
.iti input.form__input { padding-left: calc(52px + 0.7rem); }

.iti__flag-container { background: transparent; }
.iti__selected-flag {
  background: transparent !important;
  padding-left: 0;
  border-right: 1px solid var(--hairline);
}
.iti__selected-flag:hover,
.iti__selected-flag[aria-expanded="true"] { background: rgba(245, 241, 247, 0.05) !important; }
.iti__arrow { border-top-color: var(--bone-faint); }
.iti__arrow--up { border-bottom-color: var(--crimson); }
.iti__selected-dial-code { color: var(--bone-soft); font-family: var(--sans); font-size: 14px; }

.iti__dropdown-content {
  background-color: var(--panel-bg-solid) !important;
  color: var(--bone);
  border-radius: 0 !important;
}
.iti--inline-dropdown .iti__dropdown-content {
  position: absolute;
  z-index: 1000;                /* above panel chrome + other inputs */
  margin-top: 4px;
  margin-left: 0;
  border: 1px solid var(--hairline-hi) !important;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.62),
    0 2px 6px rgba(0, 0, 0, 0.4) !important;
  min-width: 288px;
  max-width: calc(100vw - 2rem);
  overflow: hidden;
}

.iti__search-input {
  width: 100%;
  padding: 0.75rem 0.95rem;
  background: var(--field-deep);
  color: var(--bone);
  font-family: var(--sans);
  font-size: 14px;
  border: 0;
  border-bottom: 1px solid var(--hairline);
  outline: 0;
  border-radius: 0;
}
.iti__search-input::placeholder { color: var(--bone-faint); }
.iti__search-input:focus { border-bottom-color: var(--crimson); }

.iti__country-list {
  background: var(--panel-bg-solid);
  color: var(--bone);
  border: 0;
  font-family: var(--sans);
  max-height: 244px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--hairline-hi) transparent;
}
.iti__country-list::-webkit-scrollbar { width: 8px; }
.iti__country-list::-webkit-scrollbar-track { background: transparent; }
.iti__country-list::-webkit-scrollbar-thumb { background: var(--hairline-hi); }
.iti__country-list::-webkit-scrollbar-thumb:hover { background: var(--bone-faint); }

.iti__country {
  padding: 0.55rem 0.95rem;
  font-size: 14px;
  line-height: 1.3;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  transition: background .12s ease;
}
.iti__country:hover { background: rgba(245, 241, 247, 0.05); }
.iti__country.iti__highlight {
  background: var(--crimson-ghost);
  color: var(--crimson-bright);
}
.iti__country.iti__highlight .iti__dial-code { color: var(--crimson-bright); opacity: 0.9; }
.iti__country-name { color: var(--bone); flex: 1; }
.iti__dial-code { color: var(--bone-faint); font-size: 12.5px; letter-spacing: 0.02em; }
.iti__divider {
  border-bottom: 1px solid var(--hairline);
  padding: 0;
  margin: 0.25rem 0;
}
.iti__no-results {
  padding: 0.75rem 0.95rem;
  font-size: 13px;
  color: var(--bone-faint);
}

/* ---------- CONSENT ---------- */
.form__row--check { margin-top: 0.2rem; }
.form__check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 12px;
  line-height: 1.55;
  color: var(--bone-soft);
  cursor: pointer;
}
.form__check input[type="checkbox"] {
  flex: 0 0 16px;
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  margin-top: 2px;
  background: transparent;
  border: 1px solid var(--hairline-hi);
  border-radius: 0;
  display: grid;
  place-items: center;
  transition: border-color .15s ease, background .15s ease;
}
.form__check input[type="checkbox"]:hover { border-color: var(--crimson); }
.form__check input[type="checkbox"]:checked {
  background: var(--crimson);
  border-color: var(--crimson-deep);
}
.form__check input[type="checkbox"]:checked::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--field-deep);
  border-bottom: 2px solid var(--field-deep);
  transform: rotate(-45deg) translate(0, -1px);
}
.form__check a { color: var(--bone); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--bone-ghost); }
.form__check a:hover { text-decoration-color: var(--crimson); }

.form__error {
  margin: 0.4rem 0 0;
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--danger);
}
.form__error--global { margin-top: 0.8rem; }

/* ---------- BUTTONS ---------- */
.btn {
  --btn-h: 54px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  min-height: var(--btn-h);
  margin-top: 0.5rem;
  padding: 0 1.1rem;
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  background: var(--crimson);
  border: 0;
  border-radius: 0;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 8px 22px rgba(217, 49, 61, 0.3);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
}
.btn:disabled { opacity: 0.6; cursor: progress; }
.btn:hover {
  transform: translateY(-1px);
  background: var(--crimson-bright);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 12px 30px rgba(217, 49, 61, 0.45);
}
.btn:active { transform: translateY(1px); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.32) 50%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .5s ease;
  z-index: -1;
}
.btn:hover::before { transform: translateX(120%); }
.btn__text { position: relative; z-index: 1; }
.btn__arrow {
  position: relative;
  z-index: 1;
  font-family: var(--sans);
  font-size: 18px;
  letter-spacing: 0;
  transform: translateX(0);
  transition: transform .2s ease;
}
.btn:hover .btn__arrow { transform: translateX(4px); }

.btn--whatsapp {
  background: linear-gradient(180deg, #3ae07a 0%, #25d366 55%, #1aa851 100%);
  color: #06301a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 8px 22px rgba(37, 211, 102, 0.28);
}
.btn--whatsapp:hover {
  background: linear-gradient(180deg, #3ae07a 0%, #25d366 55%, #1aa851 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(37, 211, 102, 0.42);
}
.btn__icon { width: 22px; height: 22px; position: relative; z-index: 1; }

.form__resend {
  margin: 0.9rem 0 0;
  font-family: var(--display);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-faint);
  text-align: center;
}
.form__resend-btn {
  background: transparent;
  border: 0;
  color: var(--crimson-bright);
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  text-transform: inherit;
  padding: 0 0 0 0.3rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(217, 49, 61, 0.45);
}
.form__resend-btn:disabled { color: var(--bone-faint); text-decoration-color: var(--bone-ghost); cursor: not-allowed; }

/* ---------- FOOTER (full-width, matches eed-bristol) ---------- */
.foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  padding-top: 0.7rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone-faint);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.foot a { color: var(--bone-soft); text-decoration: none; }
.foot a:hover { color: var(--crimson); }
.foot__legal { margin: 0; }
.foot__left {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.6vw, 1rem);
  flex-wrap: wrap;
}
.site-built { margin: 0; line-height: 0; }
.site-built a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.35rem 0.75rem;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--bone-soft);
  background: rgba(12, 10, 28, 0.6);
  border: 1px solid var(--hairline-hi);
  border-radius: 999px;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  text-decoration: none;
  transition: color .15s ease, border-color .15s ease, background .15s ease;
}
.site-built a:hover {
  color: var(--crimson-bright);
  border-color: var(--crimson);
  background: var(--crimson-ghost);
}
.site-built img { display: inline-block; opacity: 0.95; filter: grayscale(1) brightness(2.4); vertical-align: middle; }

@media (max-width: 600px) {
  .foot {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 1rem;
    padding-top: 1.1rem;
  }
  .foot__left { flex-direction: column; gap: 0.85rem; width: 100%; }
  .foot__legal { letter-spacing: 0.12em; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* Brief chromatic flicker on the title em — mostly settled */
@keyframes chroma {
  0%, 90%, 100% { text-shadow: -1.5px 0 rgba(54, 224, 255, 0.55), 1.5px 0 rgba(185, 11, 53, 0.55); }
  92%  { text-shadow: -4px 0 rgba(54, 224, 255, 0.8), 3px 0 rgba(185, 11, 53, 0.8); }
  94%  { text-shadow: 3px 0 rgba(54, 224, 255, 0.7), -3px 0 rgba(185, 11, 53, 0.7); }
  96%  { text-shadow: -1.5px 0 rgba(54, 224, 255, 0.55), 1.5px 0 rgba(185, 11, 53, 0.55); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__col--poster, .panel { animation: none; }
  .btn::before { display: none; }
}

/* ---------- A11Y / FOCUS ---------- */
:focus-visible { outline: 1px solid var(--crimson); outline-offset: 2px; }
.form__input:focus-visible { outline: 0; }
.btn:focus-visible { outline: 2px solid var(--crimson-bright); outline-offset: 3px; }

/* ---------- TINY VIEWPORTS ---------- */
@media (max-width: 380px) {
  .stage { padding: 0.7rem 0.85rem 0.4rem; }
  .panel { padding: 1.1rem 1rem; }
}

/* ===========================================================
   LEGAL PAGES (privacy.html)
   =========================================================== */
body.legal-wrap {
  background: var(--field);
  color: var(--bone);
  font-family: var(--sans);
  line-height: 1.6;
  margin: 0;
  padding: clamp(1rem, 3vw, 2rem) clamp(1rem, 4vw, 2.5rem) 4rem;
}
.legal { max-width: 740px; margin: 0 auto; }
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2.5rem;
  padding: 0.4rem 1.05rem 0.4rem 0.4rem;
  border: 1px solid var(--hairline-hi);
  border-radius: 999px;
  background: rgba(21, 16, 42, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background .18s ease;
}
.legal__back:hover { border-color: var(--crimson); background: var(--crimson-ghost); }
.legal__back-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--crimson);
  color: var(--bone);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform .18s ease;
}
.legal__back:hover .legal__back-arrow { transform: translateX(-3px); }
.legal__back-arrow svg { width: 13px; height: 13px; display: block; }
.legal__back-label { display: inline-flex; flex-direction: column; line-height: 1.12; }
.legal__back-text {
  font-family: var(--sans);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
.legal__back-brand {
  font-family: var(--display);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  color: var(--bone);
}
.legal h1 {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  color: var(--crimson);
  text-wrap: balance;
}
.legal h2 {
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--crimson);
  margin: 2.2rem 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--hairline);
}
.legal h3 {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--bone-soft);
  margin: 1.8rem 0 0.4rem;
}
.legal h4 {
  font-family: var(--display);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bone-faint);
  margin: 1.4rem 0 0.3rem;
}
.legal p, .legal li { font-size: 14.5px; color: var(--bone-soft); }
.legal ul { padding-left: 1.1rem; margin: 0.5rem 0 1rem; }
.legal li { margin-bottom: 0.45rem; }
.legal a:not(.legal__back) { color: var(--crimson-bright); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(217, 49, 61, 0.4); }
.legal a:not(.legal__back):hover { text-decoration-color: var(--crimson-bright); }
.legal strong { color: var(--bone); font-weight: 500; }
.legal__meta {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone-faint);
}
