/* ============================================================
   LUMA MARKETING GROUP — Design System
   Plain CSS, no build step required.
   ============================================================ */

:root {
  --ink: #000000;
  --paper: #ffffff;
  --bg: #f7f7f7;
  --gold: #c8a44d;
  --gold-soft: #ddc088;
  --gold-text: #8a6d2e; /* darker gold for AA text contrast on light backgrounds */
  --gray-700: #3a3a3a;
  --gray-500: #6b6b6b;
  --gray-300: #b8b8b8;
  --line: rgba(0, 0, 0, 0.1);
  --surface: #ffffff;
  --surface-2: #f0efec;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.04), 0 12px 32px -12px rgba(0, 0, 0, 0.12);

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --font-ui: "Inter", "Segoe UI", sans-serif;
}

html.dark {
  --ink: #f7f6f3;
  --paper: #0a0a0a;
  --bg: #0a0a0a;
  --gold: #d8b869;
  --gold-soft: #e9d19f;
  --gold-text: #d8b869;
  --gray-700: #d4d2cc;
  --gray-500: #9a978f;
  --gray-300: #3d3b36;
  --line: rgba(255, 255, 255, 0.12);
  --surface: #131311;
  --surface-2: #1a1917;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.4), 0 20px 40px -16px rgba(0, 0, 0, 0.6);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  transition: background-color 0.3s ease, color 0.3s ease;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4, p { margin: 0; }
table { border-collapse: collapse; width: 100%; }

::selection { background: var(--gold); color: #000; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  background: var(--ink);
  color: var(--paper);
  padding: 0.75rem 1.25rem;
  border-radius: 0.5rem;
  z-index: 200;
  transition: top 0.2s ease;
  font-family: var(--font-ui);
  font-size: 0.875rem;
}
.skip-link:focus { top: 1rem; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
html.dark .grain { opacity: 0.06; }

/* ---------- Layout ---------- */
.container { max-width: 84rem; margin-inline: auto; padding-inline: 1.5rem; }
@media (min-width: 768px) { .container { padding-inline: 2.5rem; } }

.section { padding-block: 6rem; }
.section-lg { padding-block: 8rem; }
@media (max-width: 768px) {
  .section { padding-block: 4rem; }
  .section-lg { padding-block: 5rem; }
}
.bg-surface { background: var(--surface); }
.bg-black { background: #000; color: #fff; }

.grid { display: grid; gap: 2.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.gap-2 { gap: 0.5rem; } .gap-3 { gap: 0.75rem; } .gap-4 { gap: 1rem; } .gap-6 { gap: 1.5rem; }

.text-center { text-align: center; }
.max-w-xl { max-width: 42rem; }
.max-w-2xl { max-width: 48rem; }
.max-w-3xl { max-width: 56rem; }
.mx-auto { margin-inline: auto; }

/* ---------- Typography ---------- */
.eyebrow {
  font-family: var(--font-ui);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-text);
}
h1, h2, h3 { font-family: var(--font-display); font-weight: 500; letter-spacing: -0.01em; }
.h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.05; }
.h2 { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.1; }
.h3 { font-size: 1.5rem; line-height: 1.2; }
.lede { font-size: clamp(1.05rem, 1.5vw, 1.25rem); line-height: 1.6; color: var(--gray-500); }
.text-sm { font-size: 0.875rem; }
.text-gray { color: var(--gray-500); }
.text-gray-dark { color: var(--gray-700); }
.text-gold { color: var(--gold-text); }
.italic { font-style: italic; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-ui);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.btn svg { width: 16px; height: 16px; transition: transform 0.3s ease; }
.btn:hover svg { transform: translate(2px, -2px); }
.btn-primary { background: var(--ink); color: var(--paper); box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--gold); color: #000; }
.btn-gold { background: var(--gold); color: #000; box-shadow: var(--shadow); }
.btn-gold:hover { background: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-secondary:hover { border-color: var(--gold); color: var(--gold-text); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.3); }
.btn-outline-white:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; }

/* ---------- Nav ---------- */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 100;
  transition: all 0.3s ease;
}
.navbar.scrolled {
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { height: 5rem; display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; letter-spacing: -0.01em; }
.nav-links { display: none; align-items: center; gap: 2.5rem; }
.nav-links a { font-family: var(--font-ui); font-size: 0.875rem; }
.nav-links a:hover, .nav-links a.active { color: var(--gold-text); }
.nav-actions { display: none; align-items: center; gap: 1rem; }
.nav-mobile-toggle { display: flex; }
@media (min-width: 768px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-mobile-toggle { display: none; }
}

.icon {
  width: 1.25em;
  height: 1.25em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.icon-btn:hover { border-color: var(--gold); color: var(--gold-text); }
.icon-btn svg { width: 18px; height: 18px; }

.mobile-menu {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 0.9rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  border-bottom: 1px solid var(--line);
}

/* theme toggle icon swap */
.icon-sun, .icon-moon { position: absolute; transition: all 0.3s ease; }
html.dark .icon-sun { opacity: 0; transform: scale(0); }
html:not(.dark) .icon-moon { opacity: 0; transform: scale(0); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
  color: #fff;
}
.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(120px);
  animation: float 20s ease-in-out infinite;
}
.hero-blob.a { top: -10rem; left: -8rem; width: 36rem; height: 36rem; background: rgba(200,164,77,0.2); }
.hero-blob.b { top: 33%; right: -6rem; width: 28rem; height: 28rem; background: rgba(255,255,255,0.08); animation-delay: -8s; }
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, 25px); }
}
.hero-spotlight {
  position: absolute;
  inset: 0;
  opacity: 0.7;
  background: radial-gradient(600px circle at var(--x, 50%) var(--y, 30%), rgba(200,164,77,0.16), transparent 60%);
}
.hero-content { position: relative; z-index: 1; padding-top: 8rem; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
}
@media (min-width: 768px) { .hero-scroll { display: flex; } }
.hero-scroll svg { animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Cards / surfaces ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  padding: 2rem;
}
.card-flat { background: var(--surface); border: 1px solid var(--line); }

.divider-grid {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 1.5rem;
  overflow: hidden;
}
.divider-grid > * { background: var(--surface); }

/* Service / feature cards */
.service-card {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  transition: background-color 0.3s ease;
}
.service-card:hover { background: var(--surface-2); }
.service-icon { color: var(--gold-text); width: 28px; height: 28px; margin-bottom: 1.5rem; }
.service-card h3 { font-size: 1.25rem; margin: 0 0 0.75rem; }
.service-card p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-500); margin: 0; }
.service-link {
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.service-link svg { width: 16px; height: 16px; }

/* ---------- Stats ---------- */
.stat-value { font-family: var(--font-display); font-weight: 600; font-size: clamp(2.25rem, 4vw, 3rem); color: var(--gold-text); }
html.dark .stat-value, .bg-black .stat-value { color: var(--gold); }
.stat-label { margin-top: 0.75rem; font-size: 0.9rem; color: rgba(255,255,255,0.6); }
.bg-surface .stat-label, .bg-paper .stat-label { color: var(--gray-500); }

/* ---------- Testimonials ---------- */
.testimonial-quote { font-family: var(--font-display); font-style: italic; font-size: 1.25rem; line-height: 1.4; }
.testimonial-footer { margin-top: 2rem; border-top: 1px solid var(--line); padding-top: 1.25rem; }

/* ---------- Portfolio ---------- */
.case-art {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 1.5rem;
  overflow: hidden;
  transition: transform 0.5s ease;
}
.case-art:hover { transform: scale(1.02); }
.case-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}
.case-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-top: 1.25rem; padding-top: 1.25rem; border-top: 1px solid var(--line); }
.case-metrics dt { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--gray-500); }
.case-metrics dd { margin: 0.25rem 0 0; font-family: var(--font-display); font-size: 1.1rem; font-weight: 600; color: var(--gold-text); }
.tag-pill { display: inline-block; border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.8rem; font-size: 0.75rem; color: var(--gray-500); }

/* Before/After slider */
.ba-slider { position: relative; aspect-ratio: 16/10; width: 100%; border-radius: 1.5rem; overflow: hidden; border: 1px solid var(--line); user-select: none; }
.ba-layer { position: absolute; inset: 0; }
.ba-after { background: linear-gradient(135deg, #000, #2b2418, var(--gold)); }
.ba-before { background: linear-gradient(135deg, #b8b8b8, #6b6b6b); }
.ba-label { position: absolute; bottom: 1rem; padding: 0.3rem 0.8rem; border-radius: 999px; background: rgba(0,0,0,0.6); color: #fff; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; }
.ba-label.after { right: 1rem; }
.ba-label.before { left: 1rem; }
.ba-handle-track { position: absolute; inset-block: 0; width: 2px; background: rgba(255,255,255,0.8); transform: translateX(-50%); z-index: 2; }
.ba-handle { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 40px; height: 40px; border-radius: 999px; background: #fff; border: 1px solid var(--gold); display: flex; align-items: center; justify-content: center; cursor: ew-resize; box-shadow: var(--shadow); }
.ba-range { position: absolute; inset: 0; width: 100%; opacity: 0; cursor: ew-resize; }

/* ---------- Process ---------- */
.process-step { padding: 2rem; }
.process-number { font-family: var(--font-display); font-size: 0.875rem; color: var(--gold-text); }

/* ---------- Pricing ---------- */
.pricing-card {
  position: relative;
  border-radius: 1.75rem;
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured { border-color: var(--gold); background: #000; color: #fff; }
@media (min-width: 900px) { .pricing-card.featured { transform: scale(1.04); } }
.pricing-badge { position: absolute; top: -0.9rem; left: 2rem; background: var(--gold); color: #000; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.35rem 0.8rem; border-radius: 999px; }
.pricing-price { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; }
.pricing-list { margin-top: 2rem; flex: 1; display: flex; flex-direction: column; gap: 0.9rem; }
.pricing-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.pricing-list svg { width: 16px; height: 16px; margin-top: 0.15rem; color: var(--gold-text); flex-shrink: 0; }
.pricing-card.featured .pricing-list svg { color: var(--gold); }

.compare-table-wrap { overflow-x: auto; border-radius: 1.5rem; border: 1px solid var(--line); background: var(--paper); }
.compare-table { min-width: 640px; }
.compare-table th, .compare-table td { padding: 1.25rem; text-align: center; border-bottom: 1px solid var(--line); }
.compare-table th:first-child, .compare-table td:first-child { text-align: left; }
.compare-table thead th { font-family: var(--font-display); font-size: 1.1rem; font-weight: 500; }
.compare-table tbody tr:nth-child(even) { background: color-mix(in srgb, var(--surface-2) 60%, transparent); }
.compare-table svg { width: 16px; height: 16px; }
.check-yes { color: var(--gold-text); }
.check-no { color: var(--gray-300); }

/* ---------- FAQ Accordion ---------- */
.faq { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:last-child { border-bottom: none; }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item svg { width: 20px; height: 20px; color: var(--gold-text); transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item[open] svg { transform: rotate(180deg); }
.faq-item p { padding-bottom: 1.5rem; max-width: 42rem; font-size: 0.95rem; line-height: 1.6; color: var(--gray-500); }

/* ---------- Timeline ---------- */
.timeline { border-left: 1px solid var(--line); padding-left: 2rem; }
.timeline-item { position: relative; padding-bottom: 3rem; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot { position: absolute; left: -2.36rem; top: 0.4rem; width: 10px; height: 10px; border-radius: 999px; background: var(--gold); }

/* ---------- Forms ---------- */
.field { margin-bottom: 0; }
.field label { display: block; font-size: 0.9rem; font-weight: 500; margin-bottom: 0.5rem; }
.field input, .field select, .field textarea {
  width: 100%;
  height: 3rem;
  border-radius: 0.75rem;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 1rem;
  font: inherit;
  color: var(--ink);
}
.field textarea { height: auto; padding: 0.75rem 1rem; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); outline: none; }
.field-error { color: #dc2626; font-size: 0.75rem; margin-top: 0.35rem; }
.field-hint { color: var(--gray-500); font-weight: 400; }

.consent-box { background: color-mix(in srgb, var(--surface-2) 60%, transparent); border: 1px solid var(--line); border-radius: 1.25rem; padding: 1.25rem; display: flex; flex-direction: column; gap: 1rem; }
.consent-check { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.9rem; }
.consent-check input { margin-top: 0.2rem; width: 1rem; height: 1rem; flex-shrink: 0; accent-color: var(--gold); }

.form-success { border: 1px solid var(--line); background: var(--surface); border-radius: 1.5rem; padding: 2rem; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 150;
  padding: 1rem;
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-panel {
  max-width: 56rem;
  margin-inline: auto;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: color-mix(in srgb, var(--surface) 95%, transparent);
  backdrop-filter: blur(16px);
  padding: 1.75rem;
  box-shadow: var(--shadow);
}
.cookie-prefs { display: none; margin-top: 1.25rem; border-top: 1px solid var(--line); padding-top: 1.25rem; gap: 1rem; flex-direction: column; }
.cookie-prefs.open { display: flex; }
.cookie-pref-row { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; }
.cookie-pref-row input { margin-top: 0.2rem; accent-color: var(--gold); }

/* ---------- Back to top ---------- */
.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 90;
  display: none;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow);
}
.back-to-top.visible { display: flex; }
.back-to-top:hover { border-color: var(--gold); color: var(--gold-text); }

/* ---------- Page loader ---------- */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  transition: opacity 0.5s ease;
}
.page-loader.hidden { opacity: 0; pointer-events: none; }
.page-loader span { font-family: var(--font-display); font-size: 1.5rem; font-weight: 600; color: #fff; letter-spacing: 0.05em; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); background: var(--surface); }
.footer-grid { display: grid; gap: 3rem; grid-template-columns: repeat(12, 1fr); }
.footer-col-4 { grid-column: span 4; }
.footer-col-2 { grid-column: span 2; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-col-4, .footer-col-2 { grid-column: span 1; }
}
.social-row { display: flex; gap: 0.75rem; margin-top: 1.5rem; }
.footer-bottom { margin-top: 3.5rem; border-top: 1px solid var(--line); padding-top: 2rem; display: flex; flex-direction: column; gap: 0.75rem; font-size: 0.75rem; color: var(--gray-500); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }

/* ---------- Final CTA ---------- */
.final-cta { position: relative; overflow: hidden; }
.final-cta .blob { position: absolute; width: 24rem; height: 24rem; border-radius: 999px; filter: blur(120px); pointer-events: none; }
.final-cta .blob.a { top: -6rem; right: -6rem; background: rgba(200,164,77,0.12); }
.final-cta .blob.b { bottom: -6rem; left: -6rem; background: rgba(255,255,255,0.05); }

/* ---------- Legal pages ---------- */
.legal-body { max-width: 56rem; margin-inline: auto; }
.legal-body h2 { font-size: 1.4rem; margin-top: 2.5rem; margin-bottom: 0.75rem; }
.legal-body p, .legal-body li { font-size: 0.95rem; line-height: 1.7; color: var(--gray-700); }
.legal-body ul { list-style: disc; padding-left: 1.5rem; margin-top: 0.5rem; }
.legal-body ul li { margin-bottom: 0.5rem; }
.legal-body a { text-decoration: underline; }
.legal-body a:hover { color: var(--gold-text); }
.legal-table { width: 100%; border: 1px solid var(--line); border-radius: 1rem; overflow: hidden; margin-top: 1rem; font-size: 0.9rem; }
.legal-table th, .legal-table td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.legal-table th { background: var(--surface-2); }

/* Utility spacing */
.mt-2 { margin-top: 0.5rem; } .mt-3 { margin-top: 0.75rem; } .mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; } .mt-8 { margin-top: 2rem; } .mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; } .mt-14 { margin-top: 3.5rem; } .mt-16 { margin-top: 4rem; }
