/* Legal Connections design tokens + shared styles.
   Palette from Brand Kit p.5: Signature Orange #E66A2C for conversion CTAs;
   emeralds available as tokens for future sections. */

:root {
  --lc-black: #0a0a0a;
  --lc-ink: #16181d;
  --lc-charcoal: #23262d;
  --lc-gray: #5b616e;
  --lc-light: #f4f5f7;
  --lc-white: #ffffff;
  --lc-cta: #e66a2c;
  --lc-cta-dark: #c9581f;
  --lc-emerald-deep: #0f2f25;
  --lc-emerald: #174d40;
  --lc-emerald-mid: #2e6b5a;
  --lc-offwhite: #f1f1ee;
  --lc-whatsapp: #25d366;
  --lc-radius: 12px;
  --lc-shadow: 0 10px 30px rgba(10, 10, 10, 0.15);
  --lc-font: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --lc-max: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--lc-font);
  color: var(--lc-ink);
  background: var(--lc-white);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3 { line-height: 1.15; margin: 0 0 0.5em; letter-spacing: -0.01em; }

.lc-container {
  max-width: var(--lc-max);
  margin: 0 auto;
  padding: 0 20px;
}

.lc-section { padding: 72px 0; }
.lc-section--dark { background: var(--lc-black); color: var(--lc-white); }
.lc-section--light { background: var(--lc-light); }

.lc-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--lc-gray);
  margin-bottom: 10px;
}
.lc-section--dark .lc-kicker { color: rgba(255, 255, 255, 0.6); }

.lc-h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); font-weight: 800; }

.lc-btn {
  display: inline-block;
  border: 0;
  border-radius: 999px;
  padding: 16px 32px;
  font-family: var(--lc-font);
  font-size: 1.05rem;
  font-weight: 800;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}
.lc-btn:active { transform: scale(0.98); }

.lc-btn--cta {
  background: linear-gradient(180deg, var(--lc-cta), var(--lc-cta-dark));
  color: var(--lc-white);
  box-shadow: 0 6px 20px rgba(230, 106, 44, 0.35);
}
.lc-btn--cta:hover { background: var(--lc-cta-dark); }

.lc-btn--ghost {
  background: transparent;
  color: var(--lc-white);
  border: 2px solid rgba(255, 255, 255, 0.7);
}
.lc-btn--ghost:hover { border-color: var(--lc-white); background: rgba(255, 255, 255, 0.08); }

.lc-btn--dark {
  background: var(--lc-black);
  color: var(--lc-white);
}
.lc-btn--dark:hover { background: var(--lc-charcoal); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .lc-btn { transition: none; }
}
