/* =========================================================
   LeeKulick.com - Evoque Lending
   Design system + layout
   ========================================================= */

:root {
  --navy: #0E2236;
  --navy-deep: #0A1B2B;
  --navy-700: #16344f;
  --white: #ffffff;
  --bg: #ffffff;
  --bg-tint: #F6F3EE;       /* warm gray section */
  --bg-tint-2: #FBF9F5;
  --ink: #1b2530;
  --muted: #5c6776;
  --gold: #C9A24B;
  --gold-deep: #ad8632;
  --gold-soft: #efe2c4;
  --orange: #D98A4E;
  --line: #e8e2d8;
  --line-strong: #d9d2c5;
  --shadow-sm: 0 1px 2px rgba(14,34,54,.06), 0 2px 8px rgba(14,34,54,.05);
  --shadow-md: 0 6px 18px rgba(14,34,54,.08), 0 2px 6px rgba(14,34,54,.05);
  --shadow-lg: 0 18px 50px rgba(14,34,54,.16);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --maxw: 1140px;
  --header-h: 72px;
  --font-head: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
img, picture, svg { max-width: 100%; display: block; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-deep); }
h1, h2, h3 { font-family: var(--font-head); color: var(--navy); line-height: 1.12; margin: 0 0 .5em; font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 600; }
h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); }
h3 { font-size: 1.25rem; }
p { margin: 0 0 1rem; }
ul { margin: 0; padding: 0; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---- Accessibility helpers ---- */
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--navy); color: #fff; padding: 10px 16px; border-radius: 8px;
  transition: top .2s ease;
}
.skip-link:focus { top: 12px; color: #fff; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; border-radius: 4px; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem; line-height: 1;
  padding: .85rem 1.4rem; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  text-align: center; white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-lg { padding: 1rem 1.8rem; font-size: 1.05rem; }
.btn-block { width: 100%; }
.btn .ico { width: 18px; height: 18px; fill: currentColor; }

.btn-gold { background: var(--gold); color: var(--navy-deep); box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: #d4ae5c; color: var(--navy-deep); box-shadow: var(--shadow-md); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-700); color: #fff; }
.btn-outline { background: transparent; color: var(--navy); border-color: var(--line-strong); }
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: rgba(14,34,54,.03); }

/* =========================================================
   Header / Nav
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner { display: flex; align-items: center; gap: 1rem; min-height: var(--header-h); }
.brand { display: inline-flex; align-items: center; margin-right: auto; }
.brand img { height: 54px; width: auto; }
.primary-nav { display: flex; align-items: center; }
.nav-menu { list-style: none; display: flex; align-items: center; gap: 1.1rem; margin: 0; }
.nav-menu > li > a {
  font-weight: 500; color: var(--navy); font-size: .88rem; padding: .35rem 0; position: relative;
}
.nav-menu > li > a::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform .2s ease;
}
.nav-menu > li > a:hover::after, .nav-menu > li > a:focus-visible::after { transform: scaleX(1); }
.nav-cta { margin-left: .9rem; padding: .6rem 1.15rem; font-size: .9rem; }
.nav-cta-mobile { display: none; }
.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-cta { display: none; }
  .nav-toggle {
    display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 46px; height: 42px; padding: 0 11px; background: var(--navy); border: none;
    border-radius: 10px; cursor: pointer;
  }
  .nav-toggle-bar { display: block; height: 2px; width: 100%; background: #fff; border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .nav-menu {
    position: absolute; left: 0; right: 0; top: var(--header-h);
    flex-direction: column; align-items: stretch; gap: 0;
    background: #fff; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md);
    padding: .5rem 24px 1.25rem; max-height: 0; overflow: hidden; visibility: hidden;
    transition: max-height .3s ease, padding .3s ease, visibility 0s linear .3s;
  }
  .nav-menu.open { max-height: 80vh; visibility: visible; transition: max-height .3s ease, padding .3s ease; }
  .nav-menu > li { width: 100%; }
  .nav-menu > li > a { display: block; padding: .9rem .25rem; border-bottom: 1px solid var(--line); font-size: 1.05rem; }
  .nav-menu > li > a::after { display: none; }
  .nav-cta-mobile { display: block; margin-top: 1rem; }
  .nav-cta-mobile a { display: flex; }
}

/* =========================================================
   Hero
   ========================================================= */
.eyebrow {
  text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-weight: 700;
  color: var(--gold-deep); margin: 0 0 .9rem;
}
.eyebrow.gold { color: var(--gold); }
.hero {
  background:
    radial-gradient(120% 90% at 85% 0%, #fdf6e8 0%, rgba(253,246,232,0) 55%),
    linear-gradient(180deg, var(--bg-tint-2) 0%, var(--white) 70%);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}
.hero-inner {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 3rem; align-items: center;
  padding: clamp(2.5rem, 6vw, 5rem) 24px clamp(3rem, 6vw, 5.5rem);
}
.hero h1 { margin-bottom: 1.1rem; }
.hero .lead { font-size: 1.12rem; color: #3a4654; max-width: 38rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin: 1.6rem 0 1.8rem; }
.hero-contact { list-style: none; display: flex; flex-wrap: wrap; gap: 1.4rem 2rem; padding-top: 1.3rem; border-top: 1px solid var(--line); }
.hero-contact li { display: flex; flex-direction: column; gap: .1rem; }
.hc-label { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-weight: 700; }
.hero-contact a { font-weight: 600; color: var(--navy); font-size: 1.02rem; }
.hero-contact a:hover { color: var(--gold-deep); }

.hero-photo { position: relative; justify-self: center; width: min(420px, 90%); }
.hero-photo-frame {
  position: relative; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  border: 8px solid #fff; box-shadow: var(--shadow-lg);
  outline: 2px solid var(--gold-soft); outline-offset: 8px;
}
.hero-photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.hero-photo::before {
  content: ""; position: absolute; inset: -6% -10% auto auto; width: 78%; aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%, rgba(201,162,75,.18), rgba(201,162,75,0) 70%);
  z-index: -1; border-radius: 50%;
}
.hero-photo-badge {
  position: absolute; bottom: 8%; left: -6%; background: var(--navy); color: #fff;
  border-radius: 14px; padding: .7rem 1.1rem; box-shadow: var(--shadow-md); line-height: 1.1;
  border: 1px solid rgba(255,255,255,.08);
}
.hero-photo-badge strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--gold); }
.hero-photo-badge span { font-size: .78rem; letter-spacing: .03em; color: #cdd6e0; }

/* =========================================================
   Section shells
   ========================================================= */
.section { padding: clamp(3rem, 6vw, 5.5rem) 0; }
.section-head { margin-bottom: 2.2rem; max-width: 46rem; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { margin: 0; }

/* ---- First responders ---- */
.first-responders { background: var(--bg-tint); }
.fr-intro { max-width: 56rem; margin: 0 auto 2.6rem; text-align: center; }
.fr-intro p { color: #38434f; }
.fr-intro .btn { margin-top: .6rem; }
.fr-photos { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; align-items: start; max-width: 880px; margin-left: auto; margin-right: auto; }
.fr-photos figure { margin: 0; }
.fr-photos img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3/4; border-radius: var(--radius);
  box-shadow: var(--shadow-md); background: #e9e4dc;
}
.fr-photos figcaption { margin-top: .65rem; font-size: .82rem; color: var(--muted); text-align: center; line-height: 1.4; }
.disclaimer {
  margin: 2.2rem auto 0; max-width: 52rem; text-align: center; font-size: .9rem; color: var(--muted);
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1.2rem;
}

/* ---- About ---- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center; }
.about-photo { position: relative; justify-self: center; max-width: 360px; }
.about-photo > picture > img,
.about-photo > picture { width: 100%; }
.about-portrait {
  width: 100%; height: auto; aspect-ratio: 1 / 1; object-fit: cover; border-radius: 50%;
  box-shadow: var(--shadow-md); display: block; margin: 0 auto;
}
.about-photo .about-logo {
  position: absolute; bottom: -16px; left: 50%; transform: translateX(-50%);
  width: 184px; background: #fff; padding: 10px 16px; border-radius: 12px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line); display: block;
}
.about-photo .about-logo img { width: 100%; height: auto; display: block; }
.about-copy p { color: #38434f; }

/* ---- Stats ---- */
.stats { background: var(--navy); color: #fff; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.stat { padding: 1rem .5rem; border-radius: var(--radius); }
.stat + .stat { position: relative; }
.stat-num { display: block; font-family: var(--font-head); color: var(--gold); font-weight: 600; font-size: clamp(2.4rem, 5vw, 3.2rem); line-height: 1; }
.stat-num.stat-text { font-size: clamp(1.2rem, 4.4vw, 1.55rem); line-height: 1.18; }
.stat-unit { display: block; font-family: var(--font-head); color: var(--gold); font-size: 1.1rem; margin-top: .15rem; }
.stat-label { display: block; color: #c6d0db; font-size: .92rem; margin-top: .7rem; }

/* ---- Loan solutions ---- */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.8rem 1.6rem;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.card-icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, #fbf1d8, #f3e6c5); margin-bottom: 1rem;
}
.card-icon svg { width: 28px; height: 28px; fill: var(--gold-deep); }
.card h3 { margin-bottom: .9rem; }
.card ul { list-style: none; }
.card ul li { position: relative; padding: .32rem 0 .32rem 1.5rem; color: #3c4753; font-size: .98rem; border-bottom: 1px dashed var(--line); }
.card ul li:last-child { border-bottom: none; }
.card ul li::before {
  content: ""; position: absolute; left: 0; top: .85em; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%;
}
.fineprint { margin: 1.8rem auto 0; max-width: 54rem; text-align: center; color: var(--muted); font-size: .9rem; }

/* ---- Why ---- */
.why { background: var(--bg-tint); }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.4rem; }
.feature { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; box-shadow: var(--shadow-sm); }
.feature-icon { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; background: var(--navy); margin-bottom: 1rem; }
.feature-icon svg { width: 24px; height: 24px; fill: var(--gold); }
.feature h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.feature p { color: #3c4753; font-size: .96rem; margin: 0; }

/* ---- Second opinion ---- */
.second-opinion {
  background:
    radial-gradient(90% 120% at 100% 0%, rgba(201,162,75,.16), rgba(201,162,75,0) 55%),
    linear-gradient(135deg, var(--navy-deep), var(--navy-700));
  color: #fff; text-align: center;
}
.second-opinion h2 { color: #fff; }
.second-opinion-inner { max-width: 50rem; margin: 0 auto; }
.so-copy { color: #d4dde6; font-size: 1.1rem; margin-bottom: 1.8rem; }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 4vw, 3.5rem); align-items: start; }
.contact-intro p { color: #38434f; }
.contact-card {
  margin-top: 1.5rem; background: var(--navy); color: #fff; border-radius: var(--radius);
  padding: 1.6rem; box-shadow: var(--shadow-md);
}
.contact-card .cc-name { font-family: var(--font-head); font-size: 1.5rem; margin: 0; color: #fff; font-weight: 600; }
.contact-card .cc-title { color: #fff; font-weight: 600; margin: .1rem 0 1rem; }
.cc-company { margin: 0 0 1.2rem; }
.cc-company img { background: #fff; padding: 9px 12px; border-radius: 8px; width: 150px; height: auto; }
.cc-list { list-style: none; display: grid; gap: .55rem; border-top: 1px solid rgba(255,255,255,.12); padding-top: 1.1rem; }
.cc-list li { display: grid; grid-template-columns: 64px 1fr; align-items: baseline; gap: .5rem; }
.cc-list li span { font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: #9fb0c0; font-weight: 700; }
.cc-list li a { color: #fff; font-weight: 600; }
.cc-list li a:hover { color: var(--gold); }
.contact-card .cc-lic { margin: 1.1rem 0 0; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .92rem; color: #fff; }
.cc-lic a { color: #fff; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.cc-lic a:hover { color: var(--gold); }
.cc-lic span { margin: 0 .4rem; color: rgba(255,255,255,.5); }

/* ---- Form ---- */
.contact-form-wrap { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(1.4rem, 3vw, 2.2rem); box-shadow: var(--shadow-md); }
.contact-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { margin-bottom: 1.1rem; }
.field label, .contact-method legend { display: block; font-weight: 600; font-size: .92rem; color: var(--navy); margin-bottom: .4rem; }
.req { color: var(--orange); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .75rem .9rem; border: 1.5px solid var(--line-strong); border-radius: var(--radius-sm);
  background: #fdfcfa; transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,162,75,.18); background: #fff;
}
.field input:user-invalid, .field select:user-invalid { border-color: #cf5b3a; }
.field textarea { resize: vertical; min-height: 96px; }
.contact-method { border: 0; padding: 0; margin: 0 0 1.1rem; }
.contact-method legend { padding: 0; }
.contact-method .radio { display: inline-flex; align-items: center; gap: .4rem; margin-right: 1.3rem; font-weight: 500; color: var(--ink); cursor: pointer; }
.consent { background: var(--bg-tint-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .9rem 1rem; }
.checkbox { display: grid; grid-template-columns: auto 1fr; gap: .65rem; align-items: start; font-size: .86rem; color: #44505d; cursor: pointer; font-weight: 400; }
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--gold-deep); }
.contact-method input { width: 18px; height: 18px; accent-color: var(--gold-deep); }
.form-status { margin: 1rem 0 0; font-weight: 600; text-align: center; min-height: 1.2em; }
.form-status.success { color: #1f7a44; }
.form-status.error { color: #c2401f; }
.form-status.loading { color: var(--muted); }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--navy-deep); color: #c6d0db; padding: 3rem 0 6.5rem; font-size: .92rem; }
.footer-top { display: flex; flex-wrap: wrap; gap: 2rem; justify-content: space-between; align-items: start; padding-bottom: 1.6rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer-logo-link { display: inline-block; }
.footer-logo { width: 200px; height: auto; filter: brightness(0) invert(1); opacity: .95; }
.footer-eho { display: flex; align-items: center; gap: .6rem; margin: 1.1rem 0 0; color: #aab8c6; font-size: .8rem; }
.eho { width: 40px; height: 40px; color: #aab8c6; flex: none; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: .55rem 2rem; }
.footer-links a { color: #cdd7e1; }
.footer-links a:hover { color: var(--gold); }
.footer-licenses { display: flex; flex-wrap: wrap; gap: .4rem 1.4rem; padding: 1.4rem 0; color: #9fb0c0; font-size: .86rem; }
.footer-licenses a { color: var(--gold); }
.footer-compliance { color: #8d9dad; font-size: .82rem; line-height: 1.7; margin: 0 0 1rem; }
.footer-copyright { color: #7a8a99; font-size: .82rem; margin: 0; }

/* =========================================================
   Mobile action bar
   ========================================================= */
.mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; grid-template-columns: repeat(3, 1fr);
  background: var(--navy); border-top: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -6px 20px rgba(10,27,43,.25);
  padding-bottom: env(safe-area-inset-bottom);
  transition: transform .3s ease;
}
.mobile-bar.hidden { transform: translateY(110%); }
.mobile-bar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: .6rem 0; color: #fff; font-size: .76rem; font-weight: 600; }
.mobile-bar a + a { border-left: 1px solid rgba(255,255,255,.1); }
.mobile-bar .ico { width: 20px; height: 20px; fill: var(--gold); }
.mobile-bar a:hover { background: rgba(255,255,255,.05); color: #fff; }

/* =========================================================
   Reveal animations
   ========================================================= */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .cards-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.2rem; text-align: center; }
  .hero .lead { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-contact { justify-content: center; }
  .hero-photo { order: -1; width: min(320px, 78%); }
  .about-grid { grid-template-columns: 1fr; }
  .about-photo { max-width: 300px; margin-bottom: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem 1rem; }
  .cards-3 { grid-template-columns: 1fr; }
  .mobile-bar { display: grid; }
  body { padding-bottom: 0; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .brand img { height: 46px; }
  .hero-contact { gap: 1.1rem 1.5rem; }
  .contact-form .form-row { grid-template-columns: 1fr; gap: 0; }
  .cards-4 { grid-template-columns: 1fr; }
  .fr-photos { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }
  .footer-top { flex-direction: column; }
  .footer-links { grid-template-columns: 1fr; }
  .hero-photo-badge { left: 50%; transform: translateX(-50%); bottom: -10px; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .btn:hover { transform: none; }
}

/* =========================================================
   Legal / content pages
   ========================================================= */
.legal-header { background: var(--navy); border-bottom: 3px solid var(--gold); }
.legal-header .nav-inner { justify-content: space-between; }
.legal-header .brand img { height: 46px; filter: brightness(0) invert(1); }
.legal-header .back-link { color: #fff; font-weight: 600; font-size: .95rem; }
.legal-header .back-link:hover { color: var(--gold); }
.legal-main { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.legal-main .container { max-width: 800px; }
.legal-main h1 { margin-bottom: .3rem; }
.legal-main .updated { color: var(--muted); font-size: .9rem; margin-bottom: 2rem; }
.legal-main h2 { font-size: 1.4rem; margin-top: 2.2rem; }
.legal-main p, .legal-main li { color: #38434f; }
.legal-main ul { padding-left: 1.2rem; margin: 0 0 1rem; list-style: disc; }
.legal-main li { margin-bottom: .4rem; }
.legal-main a { color: var(--gold-deep); font-weight: 600; }
.legal-note {
  background: var(--bg-tint); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem; font-size: .9rem; color: var(--muted); margin: 0 0 2rem;
}
