/* ===========================================================================
   SITE PAGES  ·  /about  /features  /contact  /privacy-policy
                  /Terms-Conditions  /CancellationandRefund
   ---------------------------------------------------------------------------
   The marketing and legal pages are static HTML on purpose — they are the
   ones in sitemap.xml and the only ones a crawler that does not run
   JavaScript can read — but they used to ship their own, older template
   (pastel bubbles, floating pill header). This sheet puts them on the same
   two themes as the app: "Temple at Dawn" (light) and "aurora" (dark).

   Tokens are a copy of the app's src/utils/styles/variables.css, trimmed to
   what these pages use. The theme is the app's own: `data-theme` on <html>,
   persisted under localStorage "mr-theme" (see site-pages.js and the inline
   bootstrap in each page's <head>), so a visitor who chose light in the app
   gets light here too.

   Weight discipline: no backdrop-filter, no filter: blur(). The aurora
   ambient is four soft radial gradients moved on the compositor only.
   =========================================================================== */

:root {
  --primary-color: #4c2fa0;
  --primary-strong: #341f78;
  --text-color: #1f1830;
  --text-muted: rgba(31, 24, 48, 0.70);
  --text-faint: rgba(31, 24, 48, 0.66);
  --app-bg: #faf7f0;

  --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.92) 0%, rgba(239, 244, 255, 0.95) 100%);
  --card-border: rgba(150, 130, 190, 0.24);
  --card-border-strong: rgba(108, 86, 168, 0.42);
  --card-shadow: 0 12px 28px rgba(74, 47, 120, 0.12);
  --card-title: #141a3c;
  --tile-bg: rgba(255, 253, 248, 0.82);
  --tile-icon-bg: rgba(76, 47, 160, 0.08);

  --accent-gold: #e8a33d;
  --accent-gold-ink: #9d5d0b;
  --grad-brand: linear-gradient(135deg, #1d4ed8 0%, #5b21b6 100%);
  --on-accent: #ffffff;
  --glow: 0 14px 34px -12px rgba(76, 47, 160, 0.55);
  --divider: rgba(120, 104, 168, 0.22);

  --header-bg: var(--grad-brand);
  --header-shadow: 0 6px 22px rgba(42, 26, 102, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --header-ink: #ffffff;
  --header-ink-dim: rgba(255, 255, 255, 0.82);
  --header-ghost-bg: rgba(255, 255, 255, 0.94);
  --header-ghost-ink: #3a1d8a;
  --header-ghost-border: rgba(255, 255, 255, 0.7);
  --toggle-bg: rgba(255, 255, 255, 0.16);
  --toggle-border: rgba(255, 255, 255, 0.35);
  --menu-bg: #ffffff;
  --menu-ink: #4a1e9e;
  --menu-shadow: 0 18px 40px rgba(15, 23, 42, 0.18);

  --footer-bg: #222222;
  --footer-border: transparent;
  --footer-ink: #ffffff;
  --footer-ink-dim: rgba(255, 255, 255, 0.72);
  --footer-divider: #444444;

  --font-body: "Alata", "Hanken Grotesk", system-ui, -apple-system, sans-serif;
  --font-display: "Fraunces", "Marcellus", "Cormorant Garamond", Georgia, serif;

  --ambient-display: none;
  --sun-display: none;
  --moon-display: block;
}

:root[data-theme="aurora"] {
  --primary-color: #ff9d6c;
  --primary-strong: #ff7e96;
  --text-color: #f4f1ec;
  --text-muted: #a6a7bc;
  --text-faint: #8a8ca0;
  --app-bg: #0a0d17;

  --card-bg: linear-gradient(145deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.035) 100%);
  --card-border: rgba(255, 255, 255, 0.1);
  --card-border-strong: rgba(255, 255, 255, 0.16);
  --card-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  --card-title: #f4f1ec;
  --tile-bg: rgba(255, 255, 255, 0.04);
  --tile-icon-bg: rgba(255, 157, 108, 0.12);

  --accent-gold: #ffd49a;
  --accent-gold-ink: #ffd49a;
  --grad-brand: linear-gradient(120deg, #ffe0b0, #ff9d6c 55%, #ff7e96);
  --on-accent: #1a1206;
  --glow: 0 14px 34px -12px rgba(255, 157, 108, 0.6);
  --divider: rgba(255, 255, 255, 0.1);

  --header-bg: rgba(10, 13, 23, 0.94);
  --header-shadow: none;
  --header-ink: #f4f1ec;
  --header-ink-dim: #a6a7bc;
  --header-ghost-bg: rgba(255, 255, 255, 0.06);
  --header-ghost-ink: #f4f1ec;
  --header-ghost-border: rgba(255, 255, 255, 0.14);
  --toggle-bg: rgba(255, 255, 255, 0.06);
  --toggle-border: rgba(255, 255, 255, 0.14);
  --menu-bg: rgba(17, 21, 34, 0.98);
  --menu-ink: #f4f1ec;
  --menu-shadow: 0 24px 60px rgba(0, 0, 0, 0.6);

  --footer-bg: transparent;
  --footer-border: rgba(255, 255, 255, 0.1);
  --footer-ink: #f4f1ec;
  --footer-ink-dim: #a6a7bc;
  --footer-divider: rgba(255, 255, 255, 0.1);

  --ambient-display: block;
  --sun-display: block;
  --moon-display: none;
}

/* ---- Base ------------------------------------------------------------- */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-color);
  background: var(--app-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  max-width: 100%;
  display: block;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 200;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--grad-brand);
  color: var(--on-accent);
  font-weight: 600;
}
.skip-link:focus {
  top: 12px;
}

/* ---- Aurora ambient (dark only) ---------------------------------------- */

.ambient {
  display: var(--ambient-display);
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}
.ambient span {
  position: absolute;
  border-radius: 50%;
  will-change: transform;
}
.ambient .b1 {
  width: 640px;
  height: 640px;
  top: -220px;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 157, 108, 0.32), transparent 65%);
  animation: driftCenter 26s ease-in-out infinite;
}
.ambient .b2 {
  width: 560px;
  height: 560px;
  top: 200px;
  left: -160px;
  background: radial-gradient(circle, rgba(139, 108, 255, 0.28), transparent 65%);
  animation: drift2 32s ease-in-out infinite;
}
.ambient .b3 {
  width: 520px;
  height: 520px;
  top: 480px;
  right: -160px;
  background: radial-gradient(circle, rgba(111, 227, 207, 0.2), transparent 65%);
  animation: drift3 30s ease-in-out infinite;
}
.ambient .b4 {
  width: 600px;
  height: 600px;
  bottom: -260px;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 134, 160, 0.18), transparent 65%);
  animation: drift4 36s ease-in-out infinite;
}
@keyframes driftCenter {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 40px); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}
@keyframes drift3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-30px, 30px); }
}
@keyframes drift4 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, 30px); }
}
@media (prefers-reduced-motion: reduce) {
  .ambient span {
    animation: none;
  }
}

/* ---- Header (matches src/Components/Header, public variant) ------------ */

.site-header {
  font-family: var(--font-body);
  position: sticky;
  top: 0;
  z-index: 99;
  background: var(--header-bg);
  box-shadow: var(--header-shadow);
  border-bottom: 1px solid transparent;
  color: var(--header-ink);
}
:root[data-theme="aurora"] .site-header {
  border-bottom-color: var(--divider);
}

.site-header__in {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}

/* Brand lockup — one mark, one gradient wordmark, one tagline. The gradient
   does not follow the theme (it is a brand mark), except that on the violet
   banner it would vanish, so there it goes solid white. */
.lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 0 0 auto;
}
.lockup img {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
}
.lockup__words {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.lockup__name {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.2vw, 22px);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1.15;
  background: linear-gradient(90deg, #6b00ff, #a300ff, #ff6b5e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.site-header .lockup__name {
  background: none;
  -webkit-text-fill-color: #fff;
  color: #fff;
  text-shadow: 0 1px 2px rgba(20, 8, 60, 0.28);
}
:root[data-theme="aurora"] .site-header .lockup__name {
  background: linear-gradient(90deg, #6b00ff, #a300ff, #ff6b5e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: none;
}
.lockup__tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  line-height: 1.2;
  margin-top: 2px;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.88);
}
:root[data-theme="aurora"] .lockup__tag,
.site-footer .lockup__tag {
  color: #ff7e96;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 28px);
}
/* Values copied from StyledNavLink in src/Components/Header/styles.js so the
   marketing bar and the app bar are the same bar: the fluid 16-18px size, the
   500 weight, and white at 82% in BOTH themes — the component has no aurora
   override, because the aurora bar is near-black and 82% white reads on it. */
.site-nav a {
  font-size: clamp(16px, 2vw, 18px);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a.active {
  color: #ffffff;
}
.site-nav a.active {
  font-weight: 600;
}
.site-nav__cta {
  display: none;
}

.site-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.mrb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}
.mrb:hover {
  transform: translateY(-1px);
}
.mrb:focus-visible,
.theme-toggle:focus-visible,
.mr-burger:focus-visible {
  outline: 2px solid var(--accent-gold);
  outline-offset: 3px;
}
.mrb--primary {
  background: var(--grad-brand);
  color: var(--on-accent);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: var(--glow);
}
:root[data-theme="aurora"] .mrb--primary {
  border-color: transparent;
}
.mrb--ghost {
  background: var(--header-ghost-bg);
  color: var(--header-ghost-ink);
  border-color: var(--header-ghost-border);
}
.mrb--lg {
  padding: 15px 30px;
  font-size: 16px;
}
.lang-chip {
  padding: 9px 14px;
}
.lang-chip span {
  font-size: 15px;
  line-height: 1;
}

/* Page-body variant of the ghost button: on the cream canvas the header's
   white pill would disappear, so it takes the card border and ink. */
main .mrb--ghost {
  background: var(--tile-bg);
  color: var(--text-color);
  border-color: var(--card-border-strong);
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--toggle-border);
  background: var(--toggle-bg);
  color: var(--header-ink);
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.theme-toggle:hover {
  transform: translateY(-1px);
  border-color: var(--header-ink-dim);
}
.theme-toggle .icon-sun {
  display: var(--sun-display);
}
.theme-toggle .icon-moon {
  display: var(--moon-display);
}

.mr-burger {
  display: none;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid var(--toggle-border);
  background: var(--toggle-bg);
  color: var(--header-ink);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.mr-burger i {
  display: block;
  width: 16px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.mr-burger[aria-expanded="true"] i:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.mr-burger[aria-expanded="true"] i:nth-child(2) {
  opacity: 0;
}
.mr-burger[aria-expanded="true"] i:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.menu-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(0, 0, 0, 0.35);
}
.menu-backdrop.is-open {
  display: block;
}

@media (max-width: 900px) {
  .site-header__in {
    height: auto;
    padding: 12px 16px;
    gap: 12px;
  }
  .lockup img {
    width: 36px;
    height: 36px;
  }
  .lockup__name {
    font-size: 14px;
    letter-spacing: 0.03em;
  }
  .lockup__tag {
    font-size: 8.5px;
    letter-spacing: 0.04em;
  }
  .site-actions {
    margin-left: auto;
  }
  .site-actions .mrb {
    display: none;
  }
  .mr-burger {
    display: inline-flex;
  }
  .site-nav {
    display: none;
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 8px);
    z-index: 100;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px;
    border-radius: 20px;
    background: var(--menu-bg);
    border: 1px solid var(--card-border);
    box-shadow: var(--menu-shadow);
  }
  .site-nav.is-open {
    display: flex;
  }
  .site-nav a {
    color: var(--menu-ink);
    padding: 10px 14px;
    border-radius: 12px;
  }
  .site-nav a:hover,
  .site-nav a.active {
    color: var(--menu-ink);
    background: var(--tile-icon-bg);
  }
  .site-nav__cta {
    display: grid;
    gap: 8px;
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--divider);
  }
  .site-nav__cta .mrb {
    width: 100%;
    color: var(--menu-ink);
    padding: 12px 18px;
  }
  .site-nav__cta .mrb--ghost {
    background: transparent;
    border-color: var(--card-border-strong);
  }
  .site-nav__cta .mrb--primary {
    color: var(--on-accent);
  }
}

/* ---- Page layout ------------------------------------------------------- */

main {
  flex: 1 0 auto;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px 72px;
}
@media (max-width: 600px) {
  main {
    padding: 0 18px 56px;
  }
}

.mrh {
  padding: clamp(40px, 6vw, 76px) 0 clamp(28px, 4vw, 44px);
  max-width: 780px;
}
.mre {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary-color);
  margin: 0 0 18px;
}
.mrh h1 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--card-title);
}
.mrh h1 .warm,
.section-title .warm {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding: 0.14em 0 0.2em;
  margin: -0.14em 0 -0.2em;
}
.mrh .lead {
  margin: 22px 0 0;
  max-width: 36rem;
  font-size: clamp(15px, 1.35vw, 17.5px);
  line-height: 1.65;
  color: var(--text-muted);
}
.mrh .cta-row {
  margin-top: 28px;
}
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.mrh .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-faint);
}
.mrh .meta strong {
  color: var(--text-muted);
  font-weight: 600;
}

.stack {
  display: grid;
  gap: clamp(18px, 3vw, 28px);
}

.mrc {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: clamp(22px, 3vw, 38px);
  box-shadow: var(--card-shadow);
}
.mrc > :first-child {
  margin-top: 0;
}
.mrc > :last-child {
  margin-bottom: 0;
}
.mrc h2,
.section-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(23px, 2.6vw, 31px);
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--card-title);
  margin: 0 0 14px;
}
.mrc h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--card-title);
  margin: 24px 0 8px;
}
.mrc p {
  margin: 0 0 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.mrc p a,
.mrc li a {
  color: var(--primary-color);
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--primary-color) 35%, transparent);
  text-underline-offset: 3px;
}
.mrc p a:hover,
.mrc li a:hover {
  text-decoration-color: var(--primary-color);
}
.mrc strong {
  color: var(--text-color);
  font-weight: 600;
}
.mrc .cta-row {
  margin-top: 22px;
}

/* Rows of small facts — effective date, contact — on the legal pages. */
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 22px;
}
.meta-row span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  background: var(--tile-bg);
  font-size: 13.5px;
  color: var(--text-muted);
}
.meta-row span b {
  color: var(--text-color);
  font-weight: 600;
}
.meta-row span a {
  color: var(--primary-color);
}

.tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.tile {
  padding: 22px;
  border-radius: 18px;
  background: var(--tile-bg);
  border: 1px solid var(--card-border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.tile:hover {
  transform: translateY(-3px);
  border-color: var(--card-border-strong);
}
.tile .ic {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid var(--card-border-strong);
  background: var(--tile-icon-bg);
  color: var(--primary-color);
}
.tile .ic svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.tile h3,
.tile h4 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 600;
  color: var(--card-title);
}
.tile p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
.tile .deva {
  font-family: "Noto Serif Devanagari", "Tiro Devanagari Sanskrit", serif;
  font-size: 20px;
  color: var(--accent-gold-ink);
  margin-bottom: 4px;
}

.list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.list li {
  position: relative;
  padding-left: 30px;
  color: var(--text-muted);
  line-height: 1.6;
}
.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--grad-brand);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M7.5 12.5l3 3L16.5 9' stroke='black' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='black' stroke-width='2'/%3E%3Cpath d='M7.5 12.5l3 3L16.5 9' stroke='black' stroke-width='2.4' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / contain no-repeat;
}
.list--plain li::before {
  -webkit-mask: none;
  mask: none;
  width: 8px;
  height: 8px;
  left: 6px;
  top: 0.62em;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
  margin-top: 6px;
}
.two-col h3 {
  margin-top: 8px;
}
.two-col p {
  margin-bottom: 0;
}
@media (max-width: 720px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.quotes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
  margin-top: 20px;
}
.quote {
  padding: 24px;
  border-radius: 18px;
  background: var(--tile-bg);
  border: 1px solid var(--card-border);
}
.quote .stars {
  color: var(--accent-gold);
  letter-spacing: 2px;
  font-size: 14px;
  margin-bottom: 12px;
}
.quote p {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--text-color);
}

.contact-lines {
  display: grid;
  gap: 6px;
  margin-top: 4px;
}
.contact-lines a {
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
}
.contact-lines a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.contact-lines address {
  font-style: normal;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Legal prose reads better a little narrower than the feature grids. */
.legal {
  max-width: 860px;
}
.legal .mrc h2 {
  font-size: clamp(20px, 2.2vw, 25px);
  margin-top: 30px;
}
.legal .mrc h2:first-child {
  margin-top: 0;
}
.legal .mrc .list {
  margin: 0 0 16px;
}

/* ---- Footer (matches src/Components/Footer) ---------------------------- */

.site-footer {
  font-family: var(--font-body);
  background: var(--footer-bg);
  color: var(--footer-ink);
  border-top: 1px solid var(--footer-border);
  padding: 36px 50px 40px;
}
.site-footer__in {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}
.site-footer__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--footer-divider);
}
.site-footer .lockup__name {
  font-size: clamp(18px, 1.25vw, 24px);
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 25px;
}
.site-footer__nav a,
.site-footer__legal a {
  color: var(--footer-ink-dim);
  transition: color 0.2s ease;
}
.site-footer__nav a:hover,
.site-footer__legal a:hover,
.site-footer__nav a.active {
  color: var(--footer-ink);
}
.site-footer__social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.site-footer__social p {
  margin: 0;
  font-weight: 600;
}
.site-footer__icons {
  display: flex;
  gap: 12px;
}
.site-footer__icons a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--footer-divider);
  color: var(--footer-ink);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.site-footer__icons a:hover {
  transform: translateY(-2px);
  border-color: var(--footer-ink-dim);
}
.site-footer__icons svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 14px;
  color: var(--footer-ink-dim);
}
.site-footer__legal {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
}
@media (max-width: 768px) {
  .site-footer {
    padding: 28px 20px 40px;
  }
  .site-footer__top,
  .site-footer__bottom {
    flex-direction: column;
    text-align: center;
    justify-content: center;
  }
  .site-footer__nav,
  .site-footer__legal,
  .site-footer__social {
    justify-content: center;
  }
  .site-footer__social {
    flex-direction: column;
    gap: 10px;
  }
}
