/* ===========================================================
   UKG BRUNCH — Document · Bristol · Sat 7th Nov 2026
   A UK-garage warehouse rave: electric blue, acid lime and
   cream sticker blocks over a dark warehouse. Colours sampled
   from the supplied artwork (main_artwork.png). The poster is
   shown whole on the left over a blurred copy of the warehouse.
   =========================================================== */

/* ---------- SELF-HOSTED DISPLAY FACE ---------- */
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/assets/fonts/anton-latin.woff2") format("woff2");
}

/* ---------- TOKENS (sampled from main_artwork.png) ---------- */
:root {
  --cream:       #fcf0e4;                    /* sticker pills + body text   */
  --cream-soft:  rgba(252, 240, 228, 0.74);
  --cream-faint: rgba(252, 240, 228, 0.46);
  --cream-ghost: rgba(252, 240, 228, 0.14);

  --ink:         #0b0c1c;                    /* near-black navy field       */
  --ink-deep:    #06070f;
  --panel-bg:      rgba(10, 11, 26, 0.62);
  --panel-bg-solid:#11132b;

  --hairline:    rgba(252, 240, 228, 0.14);
  --hairline-hi: rgba(252, 240, 228, 0.28);

  /* Electric blue — the sticker blocks */
  --blue:        #000cfc;
  --blue-bright: #2b37ff;
  --blue-ghost:  rgba(0, 12, 252, 0.22);

  /* Acid lime — the headline lettering */
  --lime:        #d8fc0c;
  --lime-soft:   #c7e814;
  --lime-ghost:  rgba(216, 252, 12, 0.16);

  --danger:      #ff6a5d;

  --sans:    "Helvetica Neue", "HelveticaNeue", Helvetica, "Nimbus Sans", "Liberation Sans", Arial, sans-serif;
  --display: "Anton", "Haettenschweiler", "Arial Narrow Bold", Impact, var(--sans);
}

/* ---------- 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(--cream);
  background: var(--ink-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; }

/* Anton ships at a single heavy weight; keep weight honest */
.panel__title, .btn, .form__input--otp, .legal h1, .legal h2,
.legal h3, .legal__back-brand {
  font-weight: 400;
}

/* ---------- BLURRED WAREHOUSE BACKDROP ---------- */
.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--ink-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% 36%, transparent 0%, rgba(6, 7, 15, 0.5) 70%, rgba(6, 7, 15, 0.84) 100%),
    linear-gradient(180deg, rgba(6, 7, 15, 0.4) 0%, transparent 30%, rgba(6, 7, 15, 0.74) 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 {
    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 is a transparent cut-out (the sticker blocks on
   their own), floating over the live warehouse background. A shape-
   following drop-shadow lifts the stickers off the scene. */
.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(88vw, 460px);
  height: auto;
  /* drop-shadow (not box-shadow) so the shadow follows the sticker alpha,
     not a rectangle. Kept moderate to avoid the transparent-PNG halo. */
  filter:
    drop-shadow(0 10px 18px rgba(0, 0, 0, 0.55))
    drop-shadow(0 26px 44px rgba(0, 0, 0, 0.5));
}
@media (min-width: 1080px) {
  .poster img {
    width: auto;
    max-width: 100%;
    max-height: min(88vh, 820px);
  }
}

/* ---------- SIGNUP PANEL ---------- */
.signup { display: flex; justify-content: center; }
.panel {
  position: relative;
  width: 100%;
  max-width: 500px;
  padding: clamp(1.6rem, 3vw, 2.2rem) clamp(1.3rem, 3vw, 2rem);
  background: var(--panel-bg);
  backdrop-filter: blur(13px) saturate(1.15);
  -webkit-backdrop-filter: blur(13px) saturate(1.15);
  border: 1px solid var(--hairline-hi);
  border-radius: 22px;
  /* 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(252, 240, 228, 0.16),
    inset 0 0 70px rgba(0, 12, 252, 0.08),
    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; }

/* Eyebrow = a cream sticker pill, echoing the poster's "1PM-9PM" tags */
.panel__eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 1.05rem;
  padding: 0.42rem 0.95rem 0.38rem;
  background: var(--cream);
  color: var(--ink);
  border-radius: 999px;
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

/* Stacked-sticker headline: a cream lead line, then per-line electric-blue
   pills that each hug their own line's text width — exactly like the poster
   ("IN THE" sits in a short box, "WAREHOUSE." in a box to its own edge).
   box-decoration-break:clone gives one pill per wrapped line; the generous
   line-height on the tag both gaps the stacked pills and keeps the first
   pill clear of the cream lead line above (no upward bleed). */
.panel__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;                     /* pills touch — no gap between the stacked boxes */
  margin: 0 0 1rem;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5.6vw, 3.3rem);
  line-height: 1.0;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  color: var(--cream);
}
.panel__title-lead {
  display: block;
  margin-bottom: 0.2em;       /* extra air under the cream lead line */
}
/* Each line is its OWN inline-block pill, so the gap between pills is set
   directly (flex gap) and a pill can never overlap/clip the one above it. */
.panel__title-tag {
  display: inline-block;
  max-width: 100%;
  padding: 0.06em 0.2em;
  line-height: 1.05;
  color: var(--lime);
  background: var(--blue);
  /* left edge straight (stacked boxes share one flush vertical edge),
     only the right corners rounded */
  border-radius: 0 8px 8px 0;
}
/* ...except the OUTER corners of the stack: top-left of the first pill and
   bottom-left of the last pill are rounded; the inner junction stays square. */
.panel__title-lead + .panel__title-tag { border-top-left-radius: 8px; }
.panel__title-tag:last-child { border-bottom-left-radius: 8px; }

.panel__lede {
  margin: 0 0 1.45rem;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--cream-soft);
  text-wrap: pretty;
}
/* Scoped to avoid clobbering eyebrow — blueprint gotcha #3 */
.panel__success p:not(.panel__eyebrow) {
  color: var(--cream-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(--lime-ghost);
  border-left: 3px solid var(--lime);
  border-radius: 6px;
  font-size: 13.5px !important;
  line-height: 1.5 !important;
  color: var(--cream) !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: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-faint);
}

.form__input {
  width: 100%;
  padding: 0.65rem 0;
  background: transparent;
  color: var(--cream);
  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(--cream-faint); letter-spacing: 0; }
.form__input:focus { outline: 0; border-bottom-color: var(--lime); }
.form__input:-webkit-autofill,
.form__input:-webkit-autofill:hover,
.form__input:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--cream);
  -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: 30px;
  letter-spacing: 0.42em;
  text-align: center;
  color: var(--lime);
  padding: 0.8rem 0;
}

/* ============================================================
   intl-tel-input (v19) — UKG Brunch 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(252, 240, 228, 0.05) !important; }
.iti__arrow { border-top-color: var(--cream-faint); }
.iti__arrow--up { border-bottom-color: var(--lime); }
.iti__selected-dial-code { color: var(--cream-soft); font-family: var(--sans); font-size: 14px; }

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

.iti__search-input {
  width: 100%;
  padding: 0.8rem 0.95rem;
  background: var(--ink-deep);
  color: var(--cream);
  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(--cream-faint); }
.iti__search-input:focus { border-bottom-color: var(--lime); }

.iti__country-list {
  background: var(--panel-bg-solid);
  color: var(--cream);
  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); border-radius: 4px; }
.iti__country-list::-webkit-scrollbar-thumb:hover { background: var(--cream-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(252, 240, 228, 0.05); }
.iti__country.iti__highlight {
  background: var(--blue);
  color: var(--lime);
}
.iti__country.iti__highlight .iti__dial-code { color: var(--lime); opacity: 0.92; }
.iti__country-name { color: var(--cream); flex: 1; }
.iti__dial-code { color: var(--cream-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(--cream-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(--cream-soft);
  cursor: pointer;
}
.form__check input[type="checkbox"] {
  flex: 0 0 18px;
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: transparent;
  border: 1px solid var(--hairline-hi);
  border-radius: 5px;
  display: grid;
  place-items: center;
  transition: border-color .15s ease, background .15s ease;
}
.form__check input[type="checkbox"]:hover { border-color: var(--lime); }
.form__check input[type="checkbox"]:checked {
  background: var(--blue);
  border-color: var(--blue);
}
.form__check input[type="checkbox"]:checked::after {
  content: "";
  width: 9px;
  height: 5px;
  border-left: 2px solid var(--lime);
  border-bottom: 2px solid var(--lime);
  transform: rotate(-45deg) translate(0, -1px);
}
.form__check a { color: var(--cream); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: var(--cream-ghost); }
.form__check a:hover { text-decoration-color: var(--lime); }

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

/* ---------- BUTTONS ---------- */
.btn {
  --btn-h: 56px;
  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: 18px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--lime);
  background: var(--blue);
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 8px 22px rgba(0, 12, 252, 0.34);
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn:disabled { opacity: 0.6; cursor: progress; }
.btn:hover {
  transform: translateY(-1px);
  background: var(--lime);
  color: var(--ink);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 12px 30px rgba(216, 252, 12, 0.4);
}
.btn:active { transform: translateY(1px); }
.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255,255,255,0.3) 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%);
  color: #06301a;
  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: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-align: center;
}
.form__resend-btn {
  background: transparent;
  border: 0;
  color: var(--lime);
  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(216, 252, 12, 0.45);
}
.form__resend-btn:disabled { color: var(--cream-faint); text-decoration-color: var(--cream-ghost); cursor: not-allowed; }

/* ---------- FOOTER (full-width, matches basslayerz) ---------- */
.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: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-faint);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}
.foot a { color: var(--cream-soft); text-decoration: none; }
.foot a:hover { color: var(--lime); }
.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(--cream-soft);
  background: rgba(6, 7, 15, 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(--lime);
  border-color: var(--lime);
  background: var(--lime-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.1em; }
}

/* ---------- ANIMATIONS ---------- */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero__col--poster, .panel { animation: none; }
  .btn::before { display: none; }
}

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

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

/* ===========================================================
   LEGAL PAGES (privacy.html)
   =========================================================== */
body.legal-wrap {
  background: var(--ink);
  color: var(--cream);
  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(11, 12, 28, 0.5);
  text-decoration: none;
  white-space: nowrap;
  transition: border-color .18s ease, background .18s ease;
}
.legal__back:hover { border-color: var(--lime); background: var(--lime-ghost); }
.legal__back-arrow {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--lime);
  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(--cream-faint);
}
.legal__back-brand {
  font-family: var(--display);
  font-size: 14.5px;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.legal h1 {
  font-family: var(--display);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  margin: 0 0 2rem;
  color: var(--lime);
  text-wrap: balance;
}
.legal h2 {
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 2.2rem 0 0.7rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--hairline);
}
.legal h3 {
  font-family: var(--display);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-soft);
  margin: 1.8rem 0 0.4rem;
}
.legal h4 {
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-faint);
  margin: 1.4rem 0 0.3rem;
}
.legal p, .legal li { font-size: 14.5px; color: var(--cream-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(--lime); text-decoration: underline; text-underline-offset: 2px; text-decoration-color: rgba(216, 252, 12, 0.4); }
.legal a:not(.legal__back):hover { text-decoration-color: var(--lime); }
.legal strong { color: var(--cream); font-weight: 600; }
.legal__meta {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--hairline);
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-faint);
}
