/* ============================================================
   JurisTatva Advisors — Global Stylesheet
   Palette: Navy / Gold (dark header & footer)
   ============================================================ */

:root {
  --navy:       #0D1B2A;
  --navy-mid:   #1A2E45;
  --navy-deep:  #091420;
  --gold:       #C9A84C;
  --gold-light: #E8C87A;
  --ash:        #F2F4F7;
  --white:      #FFFFFF;
  --text:       #1C2B3A;
  --muted:      #6B7C93;
  --border:     #D8DFE8;
  --red-soft:   #B94040;
  --green-soft: #2A7A4B;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

img { max-width: 100%; }

/* ── TOP BAR ── */
.topbar {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.6);
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 8px 16px;
  text-align: center;
}
.topbar span { color: var(--gold); font-weight: 600; margin: 0 6px; }

/* ── HEADER / NAV (dark) ── */
header.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--navy);
  border-bottom: 2px solid var(--gold);
  box-shadow: 0 2px 16px rgba(9,20,32,0.35);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 24px;
  height: 99px;
  gap: 16px;
}
.nav-brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-brand span { color: var(--gold); }
.nav-logo {
  height: 96px; width: auto;
  display: block;
}
.nav-links {
  display: flex; align-items: center; gap: 26px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  font-size: 13.5px;
  font-weight: 500;
  color: rgba(255,255,255,0.82);
  letter-spacing: 0.05em;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.nav-cta {
  background: var(--gold);
  color: var(--navy) !important;
  padding: 9px 20px !important;
  border-radius: 4px;
  font-weight: 600 !important;
  border-bottom: none !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none; border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  width: 42px; height: 38px;
  cursor: pointer;
  flex-direction: column;
  align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block; width: 20px; height: 2px;
  background: var(--gold);
  transition: transform .25s, opacity .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--navy);
    border-bottom: 2px solid var(--gold);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links li { text-align: center; }
  .nav-links a {
    display: block;
    padding: 12px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-links a.active { border-bottom-color: rgba(255,255,255,0.06); }
  .nav-cta { margin: 12px 24px 0; display: inline-block; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 64px 24px 56px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: attr(data-watermark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 200px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  position: absolute;
  right: -10px; top: -30px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}
.page-hero .hero-eyebrow { margin-bottom: 18px; }
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 760px;
  margin-bottom: 14px;
}
.page-hero h1 em { color: var(--gold-light); font-style: normal; }
.page-hero p {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 620px;
}
.breadcrumb {
  font-size: 12.5px;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.breadcrumb a { color: var(--gold-light); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }

/* ── HOME HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  color: var(--white);
  padding: 88px 24px 76px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '§ 441';
  font-family: 'Cormorant Garamond', serif;
  font-size: 280px;
  font-weight: 700;
  color: rgba(255,255,255,0.03);
  position: absolute;
  right: -20px; top: -40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 700px;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--gold-light); font-style: normal; }
.hero-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.72);
  max-width: 580px;
  margin-bottom: 36px;
}
.hero-actions { margin-bottom: 40px; }
.hero-meta { display: flex; gap: 32px; flex-wrap: wrap; }
.hero-meta-item { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero-meta-item strong { color: var(--gold-light); display: block; font-size: 15px; margin-bottom: 2px; }

/* ── SECTION WRAPPER ── */
.section { padding: 72px 24px; }
.section-alt { background: var(--ash); }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-intro {
  font-size: 16px;
  color: var(--muted);
  max-width: 660px;
  margin-bottom: 48px;
}

/* ── DEFINITION CARD ── */
.definition-card {
  background: var(--navy);
  color: var(--white);
  border-radius: 8px;
  padding: 40px 44px;
  border-left: 5px solid var(--gold);
  position: relative;
}
.definition-card .open-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 80px;
  color: var(--gold);
  line-height: 0.6;
  display: block;
  margin-bottom: 16px;
}
.definition-card p {
  font-size: 17px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}
.definition-card .source-tag {
  margin-top: 20px;
  font-size: 12px;
  color: var(--gold-light);
  font-family: 'JetBrains Mono', monospace;
  letter-spacing: 0.04em;
}

/* ── TWO COLUMN ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
@media (max-width: 768px) { .two-col { grid-template-columns: 1fr; } }

/* ── AUTHORITY CARDS ── */
.authority-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 32px;
  background: var(--white);
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.authority-card:hover {
  box-shadow: 0 8px 32px rgba(13,27,42,0.1);
  border-color: var(--gold);
}
.authority-card .badge {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 500;
  background: var(--navy);
  color: var(--gold);
  padding: 4px 12px;
  border-radius: 3px;
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.authority-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.authority-card .threshold {
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  margin-bottom: 6px;
}
.authority-card p { font-size: 14px; color: var(--muted); }

.plain-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 28px 32px;
  background: var(--white);
}
.plain-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 12px;
}
.plain-card p { font-size: 14px; color: var(--muted); }

/* ── PROCESS STEPS ── */
.steps-list { display: flex; flex-direction: column; }
.step-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-num {
  width: 48px; height: 48px;
  background: var(--navy);
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
}
.step-content h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.step-content p { font-size: 14px; color: var(--muted); line-height: 1.65; }
.step-tag {
  display: inline-block;
  font-size: 11px;
  font-family: 'JetBrains Mono', monospace;
  background: var(--ash);
  color: var(--navy);
  border: 1px solid var(--border);
  padding: 3px 10px;
  border-radius: 3px;
  margin-top: 8px;
}
.section-alt .step-tag { background: var(--white); }

/* ── COMPOUNDABLE / NON GRID ── */
.offence-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
@media (max-width: 768px) { .offence-grid { grid-template-columns: 1fr; } }

.offence-box { border-radius: 8px; padding: 28px 32px; }
.offence-box.yes { background: #F0FAF5; border: 1.5px solid #A8D9BC; }
.offence-box.no  { background: #FDF4F4; border: 1.5px solid #E8B4B4; }
.offence-box .box-title {
  font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 16px; display: flex; align-items: center; gap: 8px;
}
.offence-box.yes .box-title { color: var(--green-soft); }
.offence-box.no  .box-title { color: var(--red-soft); }
.offence-box ul { list-style: none; }
.offence-box ul li {
  font-size: 14px; color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  display: flex; align-items: flex-start; gap: 10px;
}
.offence-box ul li:last-child { border-bottom: none; }
.offence-box ul li::before { flex-shrink: 0; margin-top: 4px; }
.offence-box.yes ul li::before { content: '✓'; color: var(--green-soft); font-weight: 700; }
.offence-box.no  ul li::before { content: '✕'; color: var(--red-soft); font-weight: 700; }

/* ── RESTRICTIONS ── */
.restriction-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; }
.restriction-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 4px solid var(--red-soft);
  border-radius: 6px;
  padding: 24px;
}
.restriction-card h4 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.restriction-card p { font-size: 13.5px; color: var(--muted); line-height: 1.6; }

/* ── DOCUMENTS TABLE ── */
.table-wrap { overflow-x: auto; }
.doc-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 560px; }
.doc-table thead th {
  background: var(--navy);
  color: var(--gold);
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.06em;
  padding: 14px 18px;
  text-align: left;
  font-weight: 500;
}
.doc-table tbody tr { border-bottom: 1px solid var(--border); }
.doc-table tbody tr:hover { background: var(--ash); }
.doc-table tbody td { padding: 14px 18px; color: var(--text); vertical-align: top; }
.doc-table tbody td:first-child { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: var(--muted); white-space: nowrap; }

/* ── SECTION 441 QUICK REF ── */
.provision-box {
  background: #F7F5FF;
  border: 1.5px solid #C8C0F0;
  border-radius: 8px;
  padding: 32px 36px;
}
.provision-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}
.provision-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 12px 0; border-bottom: 1px solid #DDD8F8;
  gap: 16px;
}
.provision-row:last-child { border-bottom: none; }
.provision-row .sub { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: #7B72C8; min-width: 80px; padding-top: 2px; }
.provision-row .desc { font-size: 14px; color: var(--text); line-height: 1.6; }
@media (max-width: 600px) {
  .provision-row { flex-direction: column; gap: 4px; }
}

/* ── FEES NOTE ── */
.fees-note {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  border-radius: 8px;
  padding: 36px 40px;
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
}
@media (max-width: 768px) { .fees-note { grid-template-columns: 1fr; } }
.fee-item { border-left: 3px solid var(--gold); padding-left: 20px; }
.fee-item .fee-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.fee-item .fee-val { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 700; color: var(--gold-light); margin-bottom: 4px; }
.fee-item .fee-note { font-size: 13px; color: rgba(255,255,255,0.65); }

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item { border: 1.5px solid var(--border); border-radius: 6px; overflow: hidden; background: var(--white); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 24px;
  cursor: pointer;
  font-size: 15px; font-weight: 500; color: var(--navy);
  background: var(--white);
  transition: background .2s;
  gap: 16px;
}
.faq-q:hover { background: var(--ash); }
.faq-q .arrow { color: var(--gold); font-size: 20px; flex-shrink: 0; transition: transform .25s; }
.faq-a {
  padding: 0 24px;
  max-height: 0; overflow: hidden;
  font-size: 14px; color: var(--muted); line-height: 1.7;
  transition: max-height .3s ease, padding .3s ease;
}
.faq-item.open .faq-a { max-height: 320px; padding: 0 24px 18px; }
.faq-item.open .arrow { transform: rotate(45deg); }

/* ── CTA BAND ── */
.cta-band {
  background: var(--gold);
  padding: 56px 24px;
  text-align: center;
}
.cta-band h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.cta-band p { font-size: 16px; color: rgba(13,27,42,0.75); margin-bottom: 28px; max-width: 700px; margin-left: auto; margin-right: auto; }
.btn-primary {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 14px 34px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: background .2s;
}
.btn-primary:hover { background: #162538; }
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
  padding: 13px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-left: 12px;
  transition: background .2s;
}
.btn-secondary:hover { background: rgba(13,27,42,0.08); }
.hero .btn-primary { background: var(--gold); color: var(--navy); }
.hero .btn-primary:hover { background: var(--gold-light); }
.hero .btn-secondary { color: var(--white); border-color: rgba(255,255,255,0.5); }
.hero .btn-secondary:hover { background: rgba(255,255,255,0.08); }
@media (max-width: 480px) {
  .btn-secondary { margin-left: 0; margin-top: 12px; }
}

/* ── CONTACT PAGE ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 28px 30px;
  background: var(--white);
  margin-bottom: 20px;
}
.contact-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px;
}
.contact-card h3 .ico { color: var(--gold); font-size: 18px; }
.contact-card p, .contact-card a { font-size: 14.5px; color: var(--muted); text-decoration: none; line-height: 1.7; }
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 34px;
}
.contact-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-form .form-note { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.form-group input, .form-group textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 11px 14px;
  font-family: 'Inter', sans-serif;
  font-size: 14.5px;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.form-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 4px;
  padding: 13px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: background .2s;
}
.form-submit:hover { background: #162538; }

/* ── LEGAL PAGES (Privacy / Terms) ── */
.legal-content { max-width: 860px; margin: 0 auto; }
.legal-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  margin: 40px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { font-size: 15px; color: var(--text); margin-bottom: 14px; line-height: 1.8; }
.legal-content ul { margin: 0 0 16px 22px; }
.legal-content ul li { font-size: 15px; color: var(--text); margin-bottom: 8px; line-height: 1.7; }
.legal-content .effective-date {
  font-size: 13px;
  font-family: 'JetBrains Mono', monospace;
  color: var(--muted);
  margin-bottom: 32px;
}
.legal-content em.note {
  display: block;
  background: var(--ash);
  border-left: 4px solid var(--gold);
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 20px;
}

/* ── ABOUT PLACEHOLDER ── */
.about-placeholder {
  border: 2px dashed var(--gold);
  background: #FDFAF2;
  border-radius: 8px;
  padding: 48px 36px;
  text-align: center;
}
.about-placeholder h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}
.about-placeholder p { font-size: 14.5px; color: var(--muted); max-width: 540px; margin: 0 auto; }

/* ── FOOTER (dark) ── */
footer.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 56px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}
@media (max-width: 900px) { .footer-main { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-main { grid-template-columns: 1fr; } }

.footer-brand .brand-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand .brand-name span { color: var(--gold); }
.footer-brand p { line-height: 1.75; max-width: 320px; }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color .2s;
}
.footer-col a:hover { color: var(--gold-light); }
.footer-col p { line-height: 1.8; }
.footer-col .addr { margin-bottom: 10px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-inner a { color: var(--gold); text-decoration: none; }
.footer-disclaimer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 28px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  line-height: 1.7;
}
.footer-disclaimer strong { color: rgba(255,255,255,0.55); }

/* ── UTILITY ── */
.divider { height: 1px; background: var(--border); max-width: 1100px; margin: 0 auto; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
