/* =============================================================
   MUNI.Q — OnePager (V2 DUALITY adapted)
   Mobile-First: base = mobile, 768px = tablet, 1024px = desktop
   ============================================================= */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  background: #FBF5EC;
  color: #14141A;
}
img { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ---------- V2 Container ---------- */
.v2 {
  --coral: #FF5A4F;
  --coral-soft: #FFB3A8;
  --pink: #FF8A9F;
  --teal: #00C4B0;
  --teal-soft: #8CE5DC;
  --teal-deep: #006B6B;
  --cream: #FBF5EC;
  --paper: #F4ECDF;
  --ink: #14141A;
  --ink-soft: rgba(20,20,26,0.6);
  background: var(--cream);
  color: var(--ink);
  font-family: 'Inter Tight', sans-serif;
  overflow-x: hidden;
}
.v2 ::selection { background: var(--coral); color: #fff; }

.v2__grain {
  position: absolute; inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.05;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n2'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' /%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n2)' /%3E%3C/svg%3E");
}

/* =============================================================
   TOP BAR
   ============================================================= */
.v2__top {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px 18px;
  border-bottom: 1px solid rgba(20,20,26,0.08);
  background: rgba(251, 245, 236, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.v2__top-left, .v2__top-right { display: none; }
.v2__brand-center {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.12em;
  position: relative;
  display: inline-block;
}
.v2__brand-center .l { color: var(--coral); }
.v2__brand-center .r { color: var(--teal-deep); }
.v2__brand-center .center { color: var(--ink); }

@media (min-width: 768px) {
  .v2__top {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    padding: 22px 28px;
    gap: 16px;
  }
  .v2__top-left, .v2__top-right {
    display: flex;
    gap: 22px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }
  .v2__top-right { justify-content: flex-end; }
  .v2__top-left a, .v2__top-right a { color: var(--ink-soft); transition: color 0.2s; }
  .v2__top-left a:hover { color: var(--coral); }
  .v2__top-right a:hover { color: var(--teal-deep); }
  .v2__brand-center { font-size: 26px; }
}
@media (min-width: 1024px) {
  .v2__top { padding: 24px 36px; }
  .v2__top-left, .v2__top-right { gap: 32px; }
  .v2__brand-center { font-size: 28px; }
}

/* =============================================================
   HERO — Mobile: stack via grid-areas. Desktop: side-by-side
   ============================================================= */
.v2__hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
    "left"
    "center"
    "right";
}
.v2__hero-half--left  { grid-area: left; }
.v2__hero-center      { grid-area: center; }
.v2__hero-half--right { grid-area: right; }

.v2__hero-half {
  position: relative;
  padding: 48px 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
}
.v2__hero-half--left {
  background: linear-gradient(160deg, #FFD9D2 0%, #FF9C8D 60%, var(--coral) 100%);
  color: #2A0E0A;
}
.v2__hero-half--right {
  background: linear-gradient(200deg, #B8EFE8 0%, #5BD8C7 60%, #009C8A 100%);
  color: #052B27;
}
.v2__halflabel {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 10px;
}
.v2__halflabel::before {
  content: ''; width: 18px; height: 1px; background: currentColor;
}
.v2__halftitle {
  font-family: 'Instrument Serif', serif;
  font-size: 60px;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 18px 0 16px;
  font-style: italic;
}
.v2__halfbody {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  line-height: 1.5;
  max-width: 380px;
}
.v2__halffoot {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.v2__hero-half--right .v2__halftitle {
  font-style: normal;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 0.02em;
  font-size: 56px;
  line-height: 0.96;
}
.v2__hero-half--right .v2__halfbody {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  line-height: 1.65;
  letter-spacing: 0.02em;
}

.v2__hero-center {
  position: relative;
  width: 70%;
  max-width: 320px;
  margin: -40px auto;
  aspect-ratio: 3/4;
  z-index: 5;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.25);
}
.v2__hero-center img { width: 100%; height: 100%; object-fit: cover; }
.v2__hero-center::after {
  content: 'MUNI.Q';
  position: absolute;
  bottom: 14px; left: 14px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);
  z-index: 2;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

@media (min-width: 768px) {
  .v2__hero {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "left right";
    min-height: calc(100vh - 80px);
    border-bottom: 1px solid rgba(20,20,26,0.1);
  }
  .v2__hero-half { padding: 56px 22px; }
  .v2__hero-half--right { text-align: right; }
  .v2__hero-half--right .v2__halflabel { justify-content: flex-end; }
  .v2__hero-half--right .v2__halflabel::before { display: none; }
  .v2__hero-half--right .v2__halflabel::after {
    content: ''; width: 18px; height: 1px; background: currentColor;
    margin-left: 10px;
  }
  .v2__hero-half--right .v2__halfbody,
  .v2__hero-half--right .v2__halflabel,
  .v2__hero-half--right .v2__halftitle { margin-left: auto; }
  .v2__hero-center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 24vw;
    max-width: 220px;
    margin: 0;
  }
  .v2__halftitle { font-size: 54px; margin: 22px 0 20px; max-width: 260px; }
  .v2__hero-half--right .v2__halftitle { font-size: 36px; max-width: 260px; }
  .v2__hero-half--right .v2__halfbody { max-width: 240px; }
  .v2__halfbody { font-size: 15px; max-width: 240px; }
}
@media (min-width: 1024px) {
  .v2__hero-half { padding: 80px 56px 60px; }
  .v2__halflabel { font-size: 11px; gap: 12px; }
  .v2__halflabel::before { width: 24px; }
  .v2__halftitle { font-size: clamp(72px, 8vw, 120px); margin: 28px 0 24px; max-width: none; }
  .v2__halfbody { font-size: 18px; max-width: 380px; }
  .v2__hero-half--right .v2__halftitle { font-size: clamp(52px, 5vw, 78px); max-width: 480px; }
  .v2__hero-half--right .v2__halflabel,
  .v2__hero-half--right .v2__halfbody { max-width: 440px; }
  .v2__hero-half--right .v2__halflabel::after { width: 24px; margin-left: 12px; }
  .v2__hero-center { width: clamp(280px, 28vw, 420px); }
  .v2__hero-center::after { font-size: 22px; }
}

/* =============================================================
   STRIP — with CTA button
   ============================================================= */
.v2__strip {
  background: var(--ink);
  color: var(--cream);
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.12em;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  position: relative;
  z-index: 5;
}
.v2__strip > span:first-child { color: var(--coral); }
.v2__strip > span:nth-child(2) {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.02em;
  color: rgba(251,245,236,0.7);
  text-transform: lowercase;
}
.v2__strip-cta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-soft);
  padding: 10px 18px;
  border: 1px solid var(--teal-soft);
  border-radius: 999px;
  transition: all 0.25s ease;
}
.v2__strip-cta:hover {
  background: var(--teal-soft);
  color: var(--ink);
  transform: translateY(-1px);
}
@media (min-width: 768px) {
  .v2__strip {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
    padding: 22px 28px;
    font-size: 22px;
  }
  .v2__strip > span:nth-child(2) { font-size: 17px; flex: 1; text-align: center; }
}
@media (min-width: 1024px) {
  .v2__strip { padding: 26px 36px; font-size: clamp(22px, 2.4vw, 30px); }
  .v2__strip > span:nth-child(2) { font-size: clamp(17px, 1.6vw, 21px); }
}

/* =============================================================
   LISTEN SECTION
   ============================================================= */
.onepager__listen {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid rgba(20,20,26,0.08);
}
.listen__wrap {
  display: grid;
  grid-template-columns: 1fr;
}
.listen__cover {
  background: var(--paper);
  padding: 36px 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.listen__cover img {
  max-width: 320px;
  width: 100%;
  border-radius: 4px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
  transition: transform 0.5s cubic-bezier(.2,.6,.2,1);
}
.listen__cover img:hover { transform: scale(1.02); }
.listen__info {
  padding: 40px 22px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.listen__tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 14px;
}
.listen__title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.listen__title em {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  font-style: italic;
  color: var(--coral);
  letter-spacing: -0.01em;
}
.listen__body {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-soft);
  margin-bottom: 28px;
  max-width: 460px;
}

/* Click-to-load Spotify embed */
.listen__embed {
  background: var(--paper);
  border: 1px solid rgba(20,20,26,0.08);
  border-radius: 14px;
  padding: 22px;
  margin-bottom: 28px;
  max-width: 540px;
}
.listen__embed iframe { display: block; border-radius: 12px; }
.listen__embed-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  background: var(--ink);
  color: var(--cream);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.25s ease;
}
.listen__embed-btn:hover { background: var(--coral); transform: translateY(-1px); }
.listen__embed-btn .embed-icon {
  font-size: 10px;
  color: var(--coral-soft);
}
.listen__embed-btn:hover .embed-icon { color: #fff; }
.listen__embed-btn em {
  font-style: italic;
  font-family: 'Instrument Serif', serif;
  font-size: 13px;
  letter-spacing: 0;
  color: rgba(251,245,236,0.7);
  text-transform: none;
  margin-left: 2px;
}
.listen__embed-note {
  font-size: 11px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin-top: 10px;
  max-width: 460px;
}
.listen__embed-note a {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(255,90,79,0.3);
  text-underline-offset: 2px;
}
.listen__embed-note a:hover { text-decoration-color: var(--coral); }

/* Platform button grid */
.listen__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-width: 540px;
}
.platform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 20px;
  background: transparent;
  border: 1px solid rgba(20,20,26,0.18);
  border-radius: 12px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.25s ease;
}
.platform:hover {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
  transform: translateX(4px);
}
.platform__name { font-weight: 500; }
.platform__arrow {
  font-size: 14px;
  color: var(--ink-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}
.platform:hover .platform__arrow {
  color: var(--coral-soft);
  transform: translate(2px, -2px);
}

@media (min-width: 600px) {
  .listen__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
}
@media (min-width: 768px) {
  .listen__cover { padding: 56px 36px; }
  .listen__info { padding: 60px 36px; }
  .listen__title { font-size: 56px; }
  .listen__body { font-size: 18px; }
}
@media (min-width: 1024px) {
  .listen__wrap { grid-template-columns: 1fr 1fr; }
  .listen__cover { padding: 100px 60px; }
  .listen__info { padding: 100px 60px; }
  .listen__title { font-size: clamp(56px, 6vw, 78px); }
  .listen__embed, .listen__grid { max-width: 100%; }
  .platform { padding: 16px 22px; font-size: 13px; }
}

/* =============================================================
   ABOUT
   ============================================================= */
.onepager__about {
  padding: 70px 22px 80px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--cream) 100%);
  border-bottom: 1px solid rgba(20,20,26,0.08);
}
.about__wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.about__kicker {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.about__body {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  line-height: 1.45;
  margin-bottom: 22px;
  color: var(--ink);
}
.about__body em {
  font-style: italic;
  color: var(--coral);
}
.about__accent {
  color: var(--teal-deep);
  font-style: italic;
}
.about__claim {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-top: 40px;
  color: var(--ink);
}
.about__claim .about__accent {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  letter-spacing: -0.01em;
  font-weight: 400;
}

@media (min-width: 768px) {
  .onepager__about { padding: 100px 36px 110px; }
  .about__body { font-size: 26px; }
  .about__claim { font-size: 52px; margin-top: 48px; }
}
@media (min-width: 1024px) {
  .onepager__about { padding: 130px 36px 140px; }
  .about__body { font-size: clamp(26px, 2.6vw, 32px); }
  .about__claim { font-size: clamp(52px, 5vw, 72px); margin-top: 56px; }
}

/* =============================================================
   FOLLOW
   ============================================================= */
.onepager__follow {
  padding: 60px 22px 80px;
  max-width: 1280px;
  margin: 0 auto;
}
.follow__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-bottom: 32px;
  gap: 12px;
}
.follow__head h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 0.02em;
  line-height: 0.9;
}
.follow__head h2 .ital {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--coral);
}
.follow__head p {
  font-family: 'Instrument Serif', serif;
  font-size: 17px;
  line-height: 1.5;
  max-width: 480px;
  color: var(--ink-soft);
}
.follow__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.social {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--paper);
  border-radius: 12px;
  transition: all 0.25s ease;
}
.social:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateX(4px);
}
.social__platform {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 0.06em;
}
.social__handle {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.social:hover .social__handle { color: rgba(251,245,236,0.7); }
.social__arrow {
  font-size: 16px;
  color: var(--ink-soft);
  transition: transform 0.2s ease, color 0.2s ease;
}
.social:hover .social__arrow {
  color: var(--coral-soft);
  transform: translate(2px, -2px);
}

@media (min-width: 768px) {
  .onepager__follow { padding: 80px 28px 100px; }
  .follow__head {
    flex-direction: row;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 40px;
    gap: 24px;
  }
  .follow__head h2 { font-size: 64px; }
  .follow__head p { text-align: right; }
  .follow__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
}
@media (min-width: 1024px) {
  .onepager__follow { padding: 100px 36px 120px; }
  .follow__head { margin-bottom: 48px; }
  .follow__head h2 { font-size: clamp(64px, 6vw, 88px); }
  .social { padding: 20px 24px; }
  .social__platform { font-size: 24px; }
}

/* =============================================================
   FOOTER
   ============================================================= */
.v2__footer {
  background: var(--ink);
  color: var(--cream);
  padding: 56px 22px 28px;
  position: relative;
}
.v2__footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 1280px;
  margin: 0 auto;
}
.v2__footer-brand .v2__brand-center { font-size: 44px; }
.v2__footer-brand p {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.5;
  max-width: 320px;
  color: rgba(251,245,236,0.7);
  margin-top: 14px;
}
.v2__footer h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--coral-soft);
  margin-bottom: 16px;
  font-weight: 500;
}
.v2__footer ul li { padding: 5px 0; font-size: 14px; }
.v2__footer ul li a { color: rgba(251,245,236,0.7); transition: color 0.2s; }
.v2__footer ul li a:hover { color: var(--teal-soft); }
.v2__footer-bottom {
  max-width: 1280px;
  margin: 36px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(251,245,236,0.4);
}
@media (min-width: 768px) {
  .v2__footer { padding: 72px 28px 28px; }
  .v2__footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .v2__footer-brand { grid-column: 1 / -1; }
  .v2__footer-brand .v2__brand-center { font-size: 52px; }
  .v2__footer-bottom { flex-direction: row; justify-content: space-between; gap: 12px; font-size: 10px; }
}
@media (min-width: 1024px) {
  .v2__footer { padding: 80px 36px 30px; }
  .v2__footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 48px; }
  .v2__footer-brand { grid-column: auto; }
  .v2__footer-brand .v2__brand-center { font-size: 56px; }
  .v2__footer-brand p { font-size: 17px; margin-top: 18px; }
  .v2__footer-bottom { margin-top: 50px; padding-top: 24px; }
}

/* =============================================================
   LEGAL PAGES (Impressum + Datenschutz)
   ============================================================= */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 22px 80px;
}
.legal__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 36px;
  transition: color 0.2s;
}
.legal__back:hover { color: var(--coral); }
.legal h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 44px;
  letter-spacing: 0.02em;
  line-height: 0.95;
  margin-bottom: 28px;
  word-break: break-word;
  hyphens: auto;
}
.legal h1 em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--coral);
  display: block;
}
.legal h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  letter-spacing: 0.06em;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--ink);
}
.legal h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--coral);
  margin-top: 24px;
  margin-bottom: 10px;
  font-weight: 500;
}
.legal p, .legal li {
  font-size: 15px;
  line-height: 1.7;
  color: var(--ink);
  margin-bottom: 14px;
}
.legal ul { padding-left: 0; margin-bottom: 16px; }
.legal ul li { padding-left: 14px; position: relative; margin-bottom: 6px; }
.legal ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.7em;
  width: 6px; height: 1px;
  background: var(--coral);
}
.legal address {
  font-style: normal;
  margin-bottom: 14px;
  line-height: 1.7;
}
.legal a {
  color: var(--coral);
  text-decoration: underline;
  text-decoration-color: rgba(255,90,79,0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color 0.2s;
}
.legal a:hover { text-decoration-color: var(--coral); }
.legal__footer {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(20,20,26,0.1);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
@media (min-width: 768px) {
  .legal { padding: 72px 36px 100px; }
  .legal h1 { font-size: 80px; }
  .legal h1 em { display: inline; }
  .legal h2 { font-size: 28px; margin-top: 44px; }
  .legal p, .legal li { font-size: 16px; }
}
