/* ================================================================
   Candella — Marketing Site CSS
   Design system: dark candle-lit Orthodox aesthetic
   Mobile-first, fluid typography, GPU-cheap animations
   ================================================================ */

/* ── Design tokens ─────────────────────────────────────────────── */
:root {
  --bg:           #0A0A0C;
  --surface:      #13131A;
  --elevated:     #1C1C26;
  --card:         #1E1E2A;

  --gold:         #C9A84C;
  --gold-light:   #E8C96A;

  --flame-orange: #E8702A;
  --flame-amber:  #F5A623;
  --flame-core:   #FFF5C0;

  --text:         #F0ECD8;
  --text2:        #B8B09A;
  --muted:        #6B6456;

  --border:       #2A2A38;
  --border-med:   #3A3A50;

  --success:      #4A9B6F;

  --font-display: 'Playfair Display', 'Lora', Georgia, serif;
  --font-body:    'EB Garamond', 'Lora', Georgia, serif;
  --font-ui:      'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono:    'DM Mono', 'Courier New', monospace;

  --radius-sm:    8px;
  --radius-md:    14px;
  --radius-lg:    20px;
  --radius-xl:    28px;

  --shadow-card:  0 2px 24px rgba(0,0,0,.55), 0 1px 4px rgba(0,0,0,.4);
  --shadow-glow:  0 0 40px rgba(229,130,50,.18), 0 0 80px rgba(229,130,50,.08);

  --max-w:        1180px;
  --section-pad:  clamp(4rem, 8vw, 7rem) 1.5rem;
}

/* ── Reset & base ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.1vw + .5rem, 1.125rem);
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: var(--gold); text-decoration: none; transition: color .2s; }
a:hover { color: var(--gold-light); }
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

ul { list-style: none; }

/* ── Typography helpers ────────────────────────────────────────── */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw + .5rem, 2.75rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1.2;
  letter-spacing: -.01em;
}
.section-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(.95rem, 1vw + .3rem, 1.1rem);
  color: var(--text2);
  margin-top: .6rem;
}
.body-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw + .4rem, 1.125rem);
  color: var(--text2);
  line-height: 1.8;
  max-width: 62ch;
}
.body-text--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.body-text + .body-text { margin-top: 1.1rem; }

/* ── Layout helpers ────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.section {
  padding: var(--section-pad);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

/* ── Divider line ──────────────────────────────────────────────── */
.section:not(.hero) + .section:not(.hero) {
  border-top: 1px solid var(--border);
}

/* ================================================================
   SCROLL REVEAL
   ================================================================ */
/* Visible by default (no-JS / crawler safe); only hidden when JS is active. */
.reveal {
  opacity: 1;
  transform: none;
}
.js .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ================================================================
   FLAME ANIMATION
   ================================================================ */
@keyframes flicker {
  0%,100% { transform: scaleX(1)   scaleY(1)   rotate(-.5deg); opacity: 1; }
  20%      { transform: scaleX(.97) scaleY(1.02) rotate(.4deg);  opacity: .97; }
  40%      { transform: scaleX(1.02)scaleY(.98)  rotate(-.3deg); opacity: .99; }
  60%      { transform: scaleX(.98) scaleY(1.03) rotate(.5deg);  opacity: .96; }
  80%      { transform: scaleX(1.01)scaleY(.99)  rotate(-.2deg); opacity: .98; }
}

.flame-svg {
  animation: flicker 3.6s ease-in-out infinite;
  transform-origin: 50% 85%;
}
@media (prefers-reduced-motion: reduce) {
  .flame-svg { animation: none; }
}

/* ================================================================
   HEADER / NAV
   ================================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(10,10,12,.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: .85rem 1.5rem;
}

/* Wordmark */
.nav-brand {
  display: flex;
  align-items: center;
  gap: .45rem;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: .01em;
  flex-shrink: 0;
}
.nav-brand:hover { color: var(--gold-light); }
.nav-brand__cross {
  font-size: .95rem;
  color: var(--flame-amber);
  line-height: 1;
}

/* Desktop links */
.nav-links {
  display: none;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: var(--text2);
  padding: .45rem .7rem;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.05); }
.nav-links .nav-cta {
  background: var(--gold);
  color: #0A0A0C;
  padding: .45rem 1rem;
  border-radius: 999px;
  font-weight: 600;
  margin-left: .5rem;
}
.nav-links .nav-cta:hover { background: var(--gold-light); color: #0A0A0C; }

/* Lang switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: .3rem;
  margin-left: .75rem;
  flex-shrink: 0;
}
.lang-btn {
  font-family: var(--font-mono);
  font-size: .75rem;
  font-weight: 500;
  color: var(--muted);
  padding: .25rem .4rem;
  border-radius: 4px;
  transition: color .2s;
  letter-spacing: .04em;
}
.lang-btn:hover { color: var(--gold); }
.lang-btn--active { color: var(--gold); }
.lang-sep { color: var(--border-med); font-size: .7rem; }

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: var(--radius-sm);
  margin-left: auto;
  transition: background .2s;
}
.nav-hamburger:hover { background: rgba(255,255,255,.07); }
.nav-hamburger:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.hamburger-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text2);
  border-radius: 2px;
  transition: transform .25s, opacity .25s, background .2s;
  transform-origin: center;
}
.nav-hamburger.is-open .hamburger-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.is-open .hamburger-bar:nth-child(2) { opacity: 0; }
.nav-hamburger.is-open .hamburger-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  max-height: 0;
  overflow: hidden;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  transition: max-height .3s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.is-open { max-height: 480px; }
.mobile-nav-links {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.5rem .5rem;
  gap: .25rem;
}
.mobile-link {
  font-family: var(--font-ui);
  font-size: 1rem;
  font-weight: 500;
  color: var(--text2);
  padding: .7rem .5rem;
  border-bottom: 1px solid var(--border);
  display: block;
  transition: color .2s;
}
.mobile-link:hover { color: var(--gold); }
.mobile-link--cta {
  color: var(--gold);
  border-bottom: none;
  font-weight: 600;
}
.mobile-lang {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem 1rem;
}

/* Desktop: show nav-links, hide hamburger */
@media (min-width: 768px) {
  .nav-links      { display: flex; }
  .nav-hamburger  { display: none; }
  .mobile-menu    { display: none; }
  .lang-switcher  { margin-left: 1rem; }
}

/* ================================================================
   HERO
   ================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: clamp(5rem, 12vw, 9rem) 1.5rem clamp(4rem, 8vw, 7rem);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 55% at 50% 40%, rgba(229,130,50,.18) 0%, rgba(229,130,50,.06) 45%, transparent 70%);
  pointer-events: none;
}

.hero-flame {
  position: relative;
  z-index: 1;
  width: clamp(80px, 12vw, 130px);
  margin-bottom: 2rem;
  filter: drop-shadow(0 0 32px rgba(245,166,35,.45)) drop-shadow(0 0 60px rgba(232,112,42,.2));
}

.hero-content { position: relative; z-index: 1; max-width: 700px; }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 9vw + .5rem, 7rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: -.02em;
  line-height: 1.0;
  margin-bottom: .6rem;
}
.hero-title::after {
  content: '';
  display: block;
  width: 3.5rem;
  height: 2px;
  background: linear-gradient(90deg, var(--flame-amber), transparent);
  margin: .75rem auto 0;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw + .4rem, 1.6rem);
  font-style: italic;
  color: var(--text);
  margin-bottom: .8rem;
  line-height: 1.35;
}

.hero-subtitle {
  font-family: var(--font-ui);
  font-size: clamp(.9rem, 1vw + .3rem, 1.05rem);
  color: var(--text2);
  margin-bottom: 2.5rem;
}

/* Store badges */
.hero-badges,
.download-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-med);
  background: var(--elevated);
  transition: border-color .2s, background .2s, transform .2s;
  min-width: 160px;
  cursor: pointer;
}
.badge--store:hover {
  border-color: var(--gold);
  background: var(--card);
  transform: translateY(-2px);
}
.badge--coming {
  opacity: .6;
  cursor: default;
}
.badge-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--text2);
}
.badge-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}
.badge-label {
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
}
.badge-sub {
  font-family: var(--font-mono);
  font-size: .7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-top: 2px;
}

/* ================================================================
   MEANING SECTION
   ================================================================ */
.meaning { background: var(--surface); }
.meaning-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 680px) {
  .meaning-grid {
    grid-template-columns: 140px 1fr;
    gap: 3.5rem;
  }
}
@media (min-width: 900px) {
  .meaning-grid {
    grid-template-columns: 180px 1fr;
    gap: 4.5rem;
  }
}

.meaning-icon {
  display: flex;
  justify-content: center;
}
.meaning-icon svg {
  width: 120px;
  height: auto;
  filter: drop-shadow(0 0 20px rgba(245,166,35,.3));
}
@media (min-width: 680px) {
  .meaning-icon svg { width: 100%; }
}

.meaning-lead {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1.5vw + .3rem, 1.4rem);
  font-style: italic;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.25rem;
}
.meaning-text .section-title { margin-bottom: 1.25rem; }

/* ================================================================
   FEATURES GRID
   ================================================================ */
.features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 560px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .features-grid { grid-template-columns: repeat(4, 1fr); }
}

.feat-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.feat-card:hover {
  border-color: var(--border-med);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(201,168,76,.12);
  transform: translateY(-3px);
}

.feat-icon {
  width: 44px;
  height: 44px;
  padding: .7rem;
  border-radius: var(--radius-sm);
  background: var(--elevated);
  border: 1px solid var(--border);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feat-icon svg {
  width: 100%;
  height: 100%;
}

.feat-title {
  font-family: var(--font-ui);
  font-size: clamp(.9rem, .8vw + .4rem, 1rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

.feat-desc {
  font-family: var(--font-body);
  font-size: clamp(.875rem, .7vw + .35rem, .95rem);
  color: var(--text2);
  line-height: 1.65;
  flex: 1;
}

/* ================================================================
   SCREENSHOTS
   ================================================================ */
.screenshots { background: var(--surface); overflow: hidden; }
.screenshots .container { margin-bottom: 0; }

.screens-track-wrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2rem 1.5rem 2.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--border-med) transparent;
}
.screens-track-wrap::-webkit-scrollbar { height: 5px; }
.screens-track-wrap::-webkit-scrollbar-track { background: transparent; }
.screens-track-wrap::-webkit-scrollbar-thumb { background: var(--border-med); border-radius: 99px; }

.screens-track {
  display: flex;
  gap: 1.75rem;
  width: max-content;
  align-items: flex-start;
}

@media (min-width: 900px) {
  .screens-track-wrap { overflow-x: visible; padding: 2.5rem 0; }
  .screens-track {
    width: 100%;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }
}

.screen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  width: 220px;
}
@media (min-width: 560px)  { .screen-item { width: 200px; } }
@media (min-width: 900px)  { .screen-item { width: 190px; flex-shrink: 1; } }
@media (min-width: 1100px) { .screen-item { width: 210px; } }

/* Phone frame */
.phone-frame {
  position: relative;
  background: var(--elevated);
  border: 2px solid var(--border-med);
  border-radius: 36px;
  overflow: hidden;
  box-shadow:
    var(--shadow-card),
    0 0 0 6px rgba(30,30,42,.8),
    0 0 0 7px var(--border);
  width: 100%;
  transition: box-shadow .3s, transform .3s;
}
.phone-frame:hover {
  box-shadow:
    0 8px 40px rgba(0,0,0,.7),
    0 0 0 6px rgba(30,30,42,.8),
    0 0 0 7px var(--border),
    0 0 32px rgba(201,168,76,.15);
  transform: translateY(-4px) scale(1.015);
}

.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 8px;
  background: var(--border-med);
  border-radius: 99px;
  z-index: 2;
}

.phone-screen {
  aspect-ratio: 390 / 844;
  overflow: hidden;
  display: block;
}
.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.screen-caption {
  font-family: var(--font-ui);
  font-size: .8125rem;
  font-weight: 500;
  color: var(--text2);
  text-align: center;
  letter-spacing: .01em;
}

/* ================================================================
   VISION SECTION
   ================================================================ */
.vision { background: var(--bg); }
.vision-inner {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.vision-cross svg {
  width: 48px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(201,168,76,.3));
}
.vision-inner .section-title { margin-bottom: 0; }

/* ================================================================
   DOWNLOAD SECTION
   ================================================================ */
.download {
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.download-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}
.download-inner .section-title { margin-bottom: 0; }
.download-soon-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw + .4rem, 1.15rem);
  color: var(--text2);
}
.download-free {
  font-family: var(--font-mono);
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--gold);
  text-transform: uppercase;
  padding: .4rem 1rem;
  border: 1px solid var(--border-med);
  border-radius: 999px;
}
.download-notify {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--muted);
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) 1.5rem;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.footer-flame__svg {
  width: 36px;
  height: auto;
  filter: drop-shadow(0 0 8px rgba(245,166,35,.4));
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  display: block;
  letter-spacing: .02em;
}
.footer-tagline {
  font-family: var(--font-ui);
  font-size: .8rem;
  color: var(--muted);
  margin-top: .3rem;
  letter-spacing: .02em;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: .25rem .75rem;
  justify-content: center;
}
.footer-nav a {
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: var(--text2);
  padding: .2rem .35rem;
  border-radius: 4px;
  transition: color .2s;
}
.footer-nav a:hover { color: var(--gold); }

.footer-lang {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-copy {
  font-family: var(--font-ui);
  font-size: .75rem;
  color: var(--muted);
}

/* ================================================================
   UTILITY: gold hairline separator
   ================================================================ */
.hairline {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 0 auto;
}

/* ================================================================
   SELECTION
   ================================================================ */
::selection {
  background: rgba(201,168,76,.28);
  color: var(--text);
}

/* ================================================================
   REDUCED MOTION — override animations globally
   ================================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ================================================================
   PRIVACY PAGE
   ================================================================ */

/* Hero band */
.privacy-hero {
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.privacy-hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.privacy-hero__flame {
  width: 40px;
  height: 60px;
  margin-bottom: .25rem;
}
.privacy-hero__effective {
  font-family: var(--font-ui);
  font-size: .875rem;
  color: var(--muted);
  margin-top: .25rem;
}
.privacy-hero__intro {
  max-width: 52ch;
  text-align: center;
  margin: 0 auto;
  margin-top: .5rem;
}

/* Document */
.privacy-doc {
  max-width: 72ch;
  margin: 0 auto;
}

/* Individual policy sections */
.privacy-section {
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
}
.privacy-section--last {
  border-bottom: none;
}
.privacy-section__title {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw + .3rem, 1.35rem);
  font-weight: 600;
  color: var(--gold);
  margin-bottom: .9rem;
  line-height: 1.3;
}

/* Permission list */
.privacy-list {
  list-style: none;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}
.privacy-list li {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1vw + .4rem, 1.1rem);
  color: var(--text2);
  line-height: 1.75;
  padding-left: .25rem;
}
.privacy-list__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--flame-amber);
  background: rgba(245,166,35,.09);
  border: 1px solid rgba(245,166,35,.2);
  border-radius: 5px;
  padding: .1em .5em;
  margin-right: .4em;
  white-space: nowrap;
  vertical-align: middle;
}

/* Contact block */
.privacy-contact {
  margin-top: 1rem;
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.privacy-contact__name {
  font-family: var(--font-ui);
  font-size: .95rem;
  color: var(--text);
  font-weight: 500;
}
.privacy-contact__email {
  font-family: var(--font-mono);
  font-size: .9rem;
  color: var(--gold);
}
.privacy-contact__email:hover { color: var(--gold-light); }

/* Back link */
.privacy-back {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  max-width: 72ch;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-ui);
  font-size: .9rem;
}

/* Footer legal link */
.footer-legal {
  display: flex;
  justify-content: center;
}
.footer-legal__link {
  font-family: var(--font-ui);
  font-size: .8125rem;
  color: var(--text2);
  padding: .2rem .35rem;
  border-radius: 4px;
  transition: color .2s;
}
.footer-legal__link:hover { color: var(--gold); }
