/* ===========================================================
   LLC Publication Online — production stylesheet
   Trust & Authority direction · navy + gold legal aesthetic
   Fully responsive: mobile-first with progressive breakpoints
   =========================================================== */

/* ---------- TOKENS ---------- */
:root {
  --navy: #0B1F3A;
  --navy-dark: #06152A;
  --navy-light: #1A3258;
  --gold: #C9A35B;
  --gold-light: #E5C788;
  --paper: #FAF7F1;
  --paper-warm: #F4ECD8;
  --ink: #0B1F3A;
  --ink-60: #5A6B82;
  --rule: #E2DACA;

  --serif: "Source Serif Pro", Georgia, "Times New Roman", serif;
  --display: "Playfair Display", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --container: 1200px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--serif);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
input, select, textarea, button { font-family: inherit; font-size: 100%; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
@media (min-width: 768px) { .container { padding: 0 40px; } }

/* ---------- TYPOGRAPHY ---------- */
.display { font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -1px; margin: 0; }
.italic { font-style: italic; }
.gold { color: var(--gold); }
.navy { color: var(--navy); }
.light { color: var(--paper); }

.eyebrow {
  font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 16px;
  display: flex; align-items: center; gap: 12px;
}
.eyebrow-light { color: var(--gold); }
.eyebrow-rule { width: 28px; height: 1px; background: var(--gold); display: inline-block; }

.section-head { margin-bottom: 48px; }
.section-head-center { text-align: center; }
.section-head-center .eyebrow { justify-content: center; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-block; font-family: var(--sans);
  font-weight: 700; font-size: 15px; letter-spacing: 0.5px;
  padding: 16px 30px; border: 1px solid transparent; cursor: pointer;
  transition: transform .15s, background .2s, color .2s;
  text-align: center; line-height: 1.2;
}
.btn:hover { transform: translateY(-1px); }
.btn-gold { background: var(--gold); color: var(--navy); }
.btn-gold:hover { background: var(--gold-light); }
.btn-ghost { background: transparent; color: var(--paper); border-color: rgba(250,247,241,.3); }
.btn-ghost:hover { background: rgba(250,247,241,.08); }
.btn-cta-gold { background: var(--gold); color: var(--navy); padding: 16px 36px; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; }
.btn-cta-navy { background: var(--navy); color: var(--gold); padding: 16px 36px; font-size: 14px; letter-spacing: 1.2px; text-transform: uppercase; }
.btn-submit {
  background: var(--navy); color: var(--gold);
  padding: 18px 36px; font-size: 15px; font-weight: 700; letter-spacing: 0.8px; text-transform: uppercase;
  border: 0;
}
.btn-submit:hover { background: var(--navy-dark); }

/* ---------- HEADER / NAV ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.nav-container { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; padding-bottom: 16px; }
.brand { display: flex; align-items: center; gap: 14px; }
.brand-mark {
  width: 40px; height: 40px; background: var(--navy); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--display); font-size: 22px; font-weight: 700; letter-spacing: -.5px;
}
.brand-name { font-family: var(--display); font-size: 19px; font-weight: 600; line-height: 1; }
.brand-tag { font-family: var(--sans); font-size: 11px; color: var(--ink-60); letter-spacing: 1.5px; text-transform: uppercase; margin-top: 3px; }

.primary-nav { display: none; }
.nav-toggle {
  background: transparent; border: 0; padding: 8px;
  width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--navy); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .primary-nav {
    display: flex; gap: 32px; align-items: center;
    font-family: var(--sans); font-size: 14px;
  }
  .primary-nav a { color: var(--ink); }
  .primary-nav a:hover { color: var(--gold); }
  .nav-cta {
    background: var(--navy); color: var(--paper) !important;
    padding: 11px 22px; font-weight: 600; letter-spacing: .3px;
    border: 1px solid var(--navy);
  }
  .nav-cta:hover { background: var(--navy-dark); color: var(--gold) !important; }
}
.primary-nav.is-open {
  display: flex; flex-direction: column; gap: 0;
  position: absolute; top: 100%; left: 0; right: 0;
  background: var(--paper); border-bottom: 1px solid var(--rule);
  padding: 12px 24px 20px; font-family: var(--sans); font-size: 16px;
}
.primary-nav.is-open a { padding: 14px 0; border-bottom: 1px solid var(--rule); color: var(--ink); }
.primary-nav.is-open a:last-child { border-bottom: 0; margin-top: 8px; background: var(--navy); color: var(--paper); padding: 14px 22px; text-align: center; }

/* ---------- HERO ---------- */
.hero {
  background: var(--navy); color: var(--paper);
  padding: 64px 0 80px;
  position: relative; overflow: hidden;
}
@media (min-width: 768px) { .hero { padding: 90px 0 110px; } }
.hero-seal { position: absolute; top: 40px; right: 40px; width: 180px; height: 180px; pointer-events: none; display: none; }
@media (min-width: 768px) { .hero-seal { display: block; } }
.hero-seal-outer { position: absolute; inset: 0; border: 1px solid var(--gold); border-radius: 50%; opacity: .25; }
.hero-seal-inner { position: absolute; inset: 16px; border: 1px solid var(--gold); border-radius: 50%; opacity: .4; }

.hero-grid { display: grid; grid-template-columns: 1fr; gap: 48px; align-items: center; position: relative; }
@media (min-width: 1000px) { .hero-grid { grid-template-columns: 1.2fr 1fr; gap: 80px; } }

.hero-copy h1 { font-size: 44px; margin: 0; font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -1.5px; }
@media (min-width: 600px) { .hero-copy h1 { font-size: 56px; } }
@media (min-width: 1000px) { .hero-copy h1 { font-size: 68px; } }

.lede {
  font-family: var(--sans); font-size: 17px; line-height: 1.6;
  color: rgba(250,247,241,.78); max-width: 540px; margin-top: 24px;
}
@media (min-width: 768px) { .lede { font-size: 18px; margin-top: 28px; } }

.hero-actions {
  display: flex; gap: 12px; margin-top: 36px;
  flex-wrap: wrap;
}
@media (min-width: 768px) { .hero-actions { gap: 16px; margin-top: 40px; } }

/* Price card */
.price-card {
  background: var(--paper); color: var(--ink);
  padding: 32px; position: relative;
}
@media (min-width: 768px) { .price-card { padding: 36px 36px 32px; } }
.price-card-rule { position: absolute; top: -1px; left: -1px; right: -1px; height: 4px; background: var(--gold); }
.price-card-eyebrow { font-family: var(--sans); font-size: 11px; color: var(--ink-60); letter-spacing: 2px; text-transform: uppercase; font-weight: 600; }
.price-card-amount { font-family: var(--display); font-size: 56px; font-weight: 600; line-height: 1; margin-top: 6px; letter-spacing: -1.5px; }
@media (min-width: 768px) { .price-card-amount { font-size: 72px; letter-spacing: -2px; } }
.price-card-flat { font-size: 20px; color: var(--ink-60); font-weight: 400; margin-left: 6px; }
.price-card-note { font-family: var(--sans); font-size: 14px; color: var(--ink-60); margin-top: 6px; }
.hr { height: 1px; background: var(--rule); margin: 24px 0; }
.price-card-list { list-style: none; padding: 0; margin: 0; font-family: var(--sans); font-size: 13px; }
.price-card-list li {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 10px 0; border-bottom: 1px solid var(--rule);
}
.price-card-list li:last-child { border-bottom: 0; }
.price-card-list span {
  font-weight: 600; display: flex; align-items: baseline; gap: 10px; flex: 1; min-width: 0;
}
.price-card-list span::before {
  content: '✓'; color: var(--gold); font-weight: 700; font-size: 14px; flex: 0 0 auto;
}
.price-card-list em { color: var(--ink-60); font-style: italic; text-align: right; flex: 0 0 auto; }

/* ---------- AUTHORITY ---------- */
.authority { background: var(--paper); padding: 36px 0; border-bottom: 1px solid var(--rule); }
.authority-grid {
  display: grid; grid-template-columns: auto auto; gap: 24px;
  font-family: var(--sans);
}
@media (min-width: 900px) { .authority-grid { grid-template-columns: auto auto auto auto; gap: 40px; } }
.authority-cell { border-left: 2px solid var(--gold); padding-left: 18px; }
.authority-num { font-family: var(--display); font-size: 24px; font-weight: 600; color: var(--navy); line-height: 1.1; }
@media (min-width: 768px) { .authority-num { font-size: 30px; line-height: 1; } }
.authority-label { font-size: 12px; color: var(--ink-60); letter-spacing: 1px; text-transform: uppercase; margin-top: 8px; }

/* ---------- WHY ---------- */
.why { padding: 80px 0; background: var(--paper); }
@media (min-width: 768px) { .why { padding: 100px 0; } }
.why-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .why-grid { grid-template-columns: 1fr 1.4fr; gap: 80px; } }
.why-head .eyebrow { color: var(--gold); }
.why-head h2 { font-size: 36px; }
@media (min-width: 768px) { .why-head h2 { font-size: 44px; } }
.why-body { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink); }
.why-body p:first-child { margin-top: 0; }
.why-warn { background: var(--paper-warm); border-left: 3px solid var(--gold); padding: 18px 22px; margin-top: 24px; margin-bottom: 0; }
.why-warn strong { color: var(--navy); }

/* ---------- HOW ---------- */
.how { background: var(--navy); color: var(--paper); padding: 80px 0; }
@media (min-width: 768px) { .how { padding: 100px 0; } }
.how .display { font-size: 36px; }
@media (min-width: 768px) { .how .display { font-size: 48px; } }
.steps {
  display: grid; grid-template-columns: 1fr; gap: 0;
  border-top: 1px solid rgba(201,163,91,.3);
  border-bottom: 1px solid rgba(201,163,91,.3);
}
@media (min-width: 600px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .steps { grid-template-columns: repeat(4, 1fr); } }
.step { padding: 32px 24px; border-bottom: 1px solid rgba(201,163,91,.3); }
@media (min-width: 600px) {
  .step { border-right: 1px solid rgba(201,163,91,.3); }
  .step:nth-child(2n) { border-right: 0; }
  .step:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (min-width: 1000px) {
  .step { border-bottom: 0; }
  .step:nth-child(2n) { border-right: 1px solid rgba(201,163,91,.3); }
  .step:nth-child(4n) { border-right: 0; }
  .step:last-child { border-right: 0; }
}
.step-row { display: flex; justify-content: space-between; align-items: center; }
.step-num { font-family: var(--display); font-size: 36px; color: var(--gold); font-style: italic; font-weight: 400; line-height: 1; }
.step-time { font-family: var(--sans); font-size: 11px; color: var(--gold); font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; border: 1px solid rgba(201,163,91,.4); padding: 4px 10px; }
.step-title { font-family: var(--sans); font-size: 17px; font-weight: 600; margin-top: 18px; margin-bottom: 10px; }
.step-desc { font-family: var(--sans); font-size: 14px; line-height: 1.6; color: rgba(250,247,241,.7); }

.cta-row { text-align: center; margin-top: 48px; }
@media (min-width: 768px) { .cta-row { margin-top: 56px; } }

/* ---------- COMPARE ---------- */
.compare { padding: 80px 0; background: var(--paper); }
@media (min-width: 768px) { .compare { padding: 100px 0; } }
.compare .display { font-size: 32px; }
@media (min-width: 768px) { .compare .display { font-size: 44px; } }
.compare-table { font-family: var(--sans); border: 1px solid var(--rule); max-width: 1100px; margin: 0 auto; }
.compare-row {
  display: grid; grid-template-columns: 2fr 1.2fr 1.2fr;
  font-size: 13px;
}
@media (min-width: 600px) { .compare-row { font-size: 14px; } }
.compare-row > * { padding: 14px 12px; }
@media (min-width: 600px) { .compare-row > * { padding: 18px 24px; } }
.compare-row > *:not(:first-child) { text-align: center; }
.compare-row { border-top: 1px solid var(--rule); }
.compare-head { background: var(--navy); color: var(--paper); font-size: 12px; font-weight: 600; letter-spacing: 0.5px; border-top: 0; }
@media (min-width: 600px) { .compare-head { font-size: 13px; } }
.compare-us { background: var(--gold); color: var(--navy); }
.compare-row > *:nth-child(1) { font-weight: 600; text-align: left; }
.compare-us-cell { background: var(--paper-warm); color: var(--navy); font-weight: 700; }
.compare-row > *:nth-child(3):not([role="columnheader"]) { color: var(--ink-60); }
.compare-head > *:nth-child(3) { color: rgba(250,247,241,.7); }

/* ---------- PRICING ---------- */
.pricing { padding: 80px 0; background: var(--paper-warm); }
@media (min-width: 768px) { .pricing { padding: 100px 0; } }
.pricing-head {
  display: flex; flex-direction: column; gap: 24px;
  align-items: flex-start; margin-bottom: 40px;
}
@media (min-width: 900px) { .pricing-head { flex-direction: row; justify-content: space-between; align-items: flex-end; } }
.pricing .display { font-size: 36px; }
@media (min-width: 768px) { .pricing .display { font-size: 48px; } }
.pricing-sub { font-family: var(--sans); font-size: 15px; color: var(--ink-60); max-width: 480px; margin-top: 14px; line-height: 1.6; }
.county-search {
  font-family: var(--sans); padding: 14px 18px; font-size: 14px;
  border: 1px solid var(--rule); background: var(--paper); width: 100%; max-width: 320px;
  color: var(--ink); outline: 0;
}
@media (min-width: 900px) { .county-search { width: 280px; } }
.county-search:focus { border-color: var(--gold); }

.county-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--paper); border: 1px solid var(--rule);
}
@media (min-width: 600px) { .county-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 900px) { .county-grid { grid-template-columns: 1fr 1fr 1fr; } }
.county-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 22px; font-family: var(--sans); font-size: 14px;
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 600px) {
  .county-row:nth-child(2n) { border-right: 0; }
  .county-row { border-right: 1px solid var(--rule); }
}
@media (min-width: 900px) {
  .county-row:nth-child(2n) { border-right: 1px solid var(--rule); }
  .county-row:nth-child(3n) { border-right: 0; }
}
.county-row { transition: background .15s; }
.county-row:hover { background: rgba(201,163,91,0.08); }
.county-row:hover .county-price { color: var(--navy); }
.county-name { color: var(--ink); }
.county-price { font-weight: 700; font-family: var(--display); font-size: 16px; color: var(--ink); }
.pricing-foot { font-family: var(--sans); font-size: 12px; color: var(--ink-60); margin-top: 16px; text-align: center; font-style: italic; }

/* ---------- TESTIMONIALS ---------- */
.testimonials { padding: 80px 0; background: var(--paper); }
@media (min-width: 768px) { .testimonials { padding: 100px 0; } }
.testimonials .display { font-size: 32px; }
@media (min-width: 768px) { .testimonials .display { font-size: 44px; } }
.testimonial-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .testimonial-grid { grid-template-columns: repeat(3, 1fr); gap: 32px; } }
.testimonial { background: var(--paper); padding: 32px; border: 1px solid var(--rule); position: relative; margin: 0; }
@media (min-width: 768px) { .testimonial { padding: 36px 32px; } }
.testimonial-quote { font-family: var(--display); font-size: 64px; color: var(--gold); line-height: 0.6; position: absolute; top: 28px; right: 26px; }
.testimonial blockquote {
  font-family: var(--serif); font-size: 17px; line-height: 1.55;
  color: var(--ink); font-style: italic; margin: 0; padding-right: 30px;
}
.testimonial figcaption { font-family: var(--sans); margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--rule); }
.testimonial figcaption strong { display: block; font-size: 14px; font-weight: 600; }
.testimonial figcaption span { font-size: 12px; color: var(--ink-60); margin-top: 2px; }

/* ---------- ORDER ---------- */
.order { background: var(--navy); color: var(--paper); padding: 80px 0; }
@media (min-width: 768px) { .order { padding: 100px 0; } }
.order-grid { display: grid; grid-template-columns: 1fr; gap: 40px; align-items: start; }
@media (min-width: 1000px) { .order-grid { grid-template-columns: 1fr 1.4fr; gap: 64px; } }
.order-aside .display { font-size: 32px; }
@media (min-width: 768px) { .order-aside .display { font-size: 44px; } }
@media (min-width: 1000px) { .order-aside { position: sticky; top: 100px; } }
.order-aside-lede { font-family: var(--sans); font-size: 15px; color: rgba(250,247,241,.7); line-height: 1.7; margin-top: 20px; }

.order-summary {
  margin-top: 32px; background: rgba(201,163,91,.08);
  border: 1px solid rgba(201,163,91,.3); padding: 24px;
}
.order-summary-eyebrow { font-family: var(--sans); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 12px; }
.order-summary-county { font-family: var(--sans); font-size: 14px; color: rgba(250,247,241,.85); margin-bottom: 4px; }
.order-summary-amount { font-family: var(--display); font-size: 48px; font-weight: 600; color: var(--paper); line-height: 1; margin-top: 8px; letter-spacing: -1.5px; }
.order-summary-note { font-family: var(--sans); font-size: 12px; color: rgba(250,247,241,.55); margin-top: 10px; }

/* Form */
.order-form { background: var(--paper); color: var(--ink); padding: 32px; }
@media (min-width: 768px) { .order-form { padding: 40px 40px 36px; } }
.form-section { margin-bottom: 28px; }
.form-eyebrow {
  font-family: var(--sans); font-size: 11px; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 16px;
}
.form-eyebrow-row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.form-secure { color: var(--ink-60); letter-spacing: .5px; text-transform: none; font-weight: 500; font-style: italic; font-size: 11px; }
.form-grid { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 600px) { .form-grid-2 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 600px) { .form-grid-3 { grid-template-columns: 2fr 1fr 1fr; } }
.form-full { grid-column: 1 / -1; }
.order-form label { display: block; }
.order-form label > span {
  display: block; font-family: var(--sans); font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--ink-60); margin-bottom: 8px;
}
.order-form input,
.order-form select {
  width: 100%; padding: 14px 16px; font-size: 15px;
  border: 1px solid var(--rule); background: var(--paper); color: var(--ink);
  font-family: var(--sans); outline: 0; border-radius: 0;
  -webkit-appearance: none; appearance: none;
}
.order-form select { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'><path fill='%235A6B82' d='M0 0l5 6 5-6z'/></svg>"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.order-form input:focus,
.order-form select:focus { border-color: var(--gold); }

.form-foot { border-top: 1px solid var(--rule); padding-top: 24px; display: flex; justify-content: flex-end; }
.form-fine { font-family: var(--sans); font-size: 11px; color: var(--ink-60); margin-top: 16px; line-height: 1.5; }
.form-status { margin-top: 16px; font-family: var(--sans); font-size: 14px; }
.form-status.is-error { color: #B23A2E; }
.form-status.is-success {
  background: rgba(31,107,63,.08); border: 1px solid rgba(31,107,63,.3); color: #1F6B3F;
  padding: 14px 16px; line-height: 1.5;
}

/* ---------- FAQ ---------- */
.faq { padding: 80px 0; background: var(--paper); }
@media (min-width: 768px) { .faq { padding: 100px 0; } }
.faq-container { max-width: 880px; }
.faq .display { font-size: 32px; }
@media (min-width: 768px) { .faq .display { font-size: 44px; } }
.faq-list { border-top: 1px solid var(--rule); }
.faq-list details { border-bottom: 1px solid var(--rule); }
.faq-list summary {
  list-style: none; cursor: pointer; padding: 24px 40px 24px 0;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--sans); font-size: 17px; font-weight: 600; color: var(--navy);
  position: relative;
}
@media (min-width: 768px) { .faq-list summary { font-size: 18px; } }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after {
  content: '+';
  position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  color: var(--gold); font-family: var(--display); font-size: 28px;
  transition: transform .2s;
}
.faq-list details[open] summary::after { content: '−'; }
.faq-body {
  font-family: var(--sans); font-size: 15px; line-height: 1.7;
  color: var(--ink); padding: 0 40px 24px 0;
}

/* ---------- FOOTER ---------- */
.footer { background: var(--navy-dark); color: rgba(250,247,241,.65); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (min-width: 1000px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 48px; } }
.footer-brand-row { display: flex; align-items: center; gap: 14px; }
.footer-mark { width: 36px; height: 36px; background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; font-family: var(--display); font-size: 20px; font-weight: 700; }
.footer-name { font-family: var(--display); font-size: 18px; color: var(--paper); font-weight: 600; }
.footer-brand p { font-family: var(--sans); font-size: 13px; line-height: 1.7; margin-top: 18px; max-width: 320px; }
.footer-eyebrow { font-family: var(--sans); font-size: 11px; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; font-weight: 700; margin-bottom: 18px; }
.footer-grid > div > a, .footer-grid > div > span { display: block; font-family: var(--sans); font-size: 13px; padding: 6px 0; color: rgba(250,247,241,.65); }
.footer-grid > div > a:hover { color: var(--gold); }
.footer-hours { color: rgba(250,247,241,.45) !important; }
.footer-disclaimer {
  font-family: var(--sans); font-size: 11px; color: rgba(250,247,241,.5);
  line-height: 1.7; margin-top: 28px; padding-top: 24px;
  border-top: 1px solid rgba(250,247,241,.08); max-width: 980px;
}
.footer-bottom {
  border-top: 1px solid rgba(250,247,241,.1); margin-top: 24px; padding-top: 20px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-family: var(--sans); font-size: 12px;
}

/* ---------- LANG TOGGLE ---------- */
.faq-body a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.faq-body a:hover { background: rgba(201,163,91,0.15); }
.faq-more { text-align: center; margin-top: 40px; }

/* ---------- ARTICLE / RESOURCES ---------- */
.page-hero { background: var(--navy); color: var(--paper); padding: 80px 0 56px; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { font-family: var(--display); font-size: 44px; font-weight: 600; line-height: 1.15; margin: 12px 0 16px; color: var(--paper); }
.page-hero h1 .italic { font-style: italic; color: var(--gold); font-weight: 400; }
.page-hero p { font-family: var(--serif); font-size: 18px; line-height: 1.6; color: rgba(250,247,241,0.8); max-width: 760px; margin: 0; }
@media (min-width: 900px) { .page-hero h1 { font-size: 60px; } }
.crumbs { font-family: var(--sans); font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(250,247,241,0.6); margin-bottom: 8px; }
.crumbs a { color: var(--gold); }

.article { padding: 64px 0 96px; background: var(--paper); }
.article-container { max-width: 760px; margin: 0 auto; }
.article-meta { font-family: var(--sans); font-size: 13px; color: var(--ink-60); margin-bottom: 32px; padding-bottom: 16px; border-bottom: 1px solid var(--rule); display: flex; gap: 16px; flex-wrap: wrap; }
.article-meta strong { color: var(--navy); }
.article h2 { font-family: var(--display); font-size: 30px; font-weight: 600; color: var(--navy); margin: 48px 0 16px; line-height: 1.25; }
.article h3 { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--navy); margin: 32px 0 12px; }
.article p { font-family: var(--serif); font-size: 17px; line-height: 1.75; color: var(--ink); margin: 0 0 18px; }
.article ul, .article ol { font-family: var(--serif); font-size: 17px; line-height: 1.75; color: var(--ink); padding-left: 24px; margin: 0 0 22px; }
.article li { margin-bottom: 8px; }
.article a { color: var(--navy); border-bottom: 1px solid var(--gold); }
.article a:hover { background: rgba(201,163,91,0.15); }
.article-callout { background: #fff; border-left: 3px solid var(--gold); padding: 20px 24px; margin: 28px 0; font-family: var(--sans); font-size: 15px; line-height: 1.6; color: var(--ink); }
.article-callout strong { color: var(--navy); }
.article-cta { background: var(--navy); color: var(--paper); padding: 32px; margin: 48px 0 0; text-align: center; }
.article-cta h3 { font-family: var(--display); font-size: 24px; color: var(--paper); margin: 0 0 8px; font-weight: 500; }
.article-cta p { color: rgba(250,247,241,0.8); font-family: var(--serif); margin: 0 0 20px; }
.article-cta .btn { display: inline-block; }
.article-table { width: 100%; border-collapse: collapse; margin: 24px 0; font-family: var(--sans); font-size: 14px; }
.article-table th { background: var(--navy); color: var(--gold); text-align: left; padding: 12px 16px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-size: 11px; }
.article-table td { padding: 14px 16px; border-bottom: 1px solid var(--rule); color: var(--ink); }
.article-table tr:last-child td { border-bottom: 0; }

/* Resources hub */
.resources-grid { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 64px 0 96px; }
@media (min-width: 768px) { .resources-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (min-width: 1100px) { .resources-grid { grid-template-columns: 1fr 1fr 1fr; } }
.resource-card { background: #fff; border: 1px solid var(--rule); padding: 32px; display: flex; flex-direction: column; gap: 16px; transition: transform .15s, box-shadow .15s; }
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(11,31,58,0.08); border-color: var(--gold); }
.resource-card-tag { font-family: var(--sans); font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.resource-card h2 { font-family: var(--display); font-size: 24px; font-weight: 600; line-height: 1.25; color: var(--navy); margin: 0; }
.resource-card p { font-family: var(--serif); font-size: 16px; line-height: 1.6; color: var(--ink-80); margin: 0; flex: 1; }
.resource-card-link { font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--navy); border-top: 1px solid var(--rule); padding-top: 16px; margin-top: 4px; }
.resource-card-link::after { content: ' →'; color: var(--gold); }

/* FAQ page */
.faq-page { padding: 56px 0 96px; background: var(--paper); }
.faq-page-container { max-width: 880px; margin: 0 auto; }
.faq-page-section { margin-bottom: 48px; }
.faq-page-section h2 { font-family: var(--display); font-size: 26px; font-weight: 600; color: var(--navy); margin: 0 0 24px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }
.lang-toggle { display: inline-flex; font-family: var(--sans); font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; border: 1px solid var(--rule); margin-left: 16px; }
.lang-toggle a { padding: 7px 12px; color: var(--ink-60); border-right: 1px solid var(--rule); }
.lang-toggle a:last-child { border-right: 0; }
.lang-toggle a.is-active { background: var(--navy); color: var(--gold); }
@media (max-width: 899px) { .lang-toggle { margin: 0 0 0 auto; margin-right: 12px; } }

/* ---------- POLICY PAGES ---------- */
.policy { padding: 64px 0 80px; background: var(--paper); }
@media (min-width: 768px) { .policy { padding: 80px 0 100px; } }
.policy-container { max-width: 820px; }
.policy h1 { font-family: var(--display); font-size: 40px; font-weight: 500; line-height: 1.1; letter-spacing: -1px; margin: 0 0 16px; color: var(--navy); }
@media (min-width: 768px) { .policy h1 { font-size: 56px; } }
.policy-meta { font-family: var(--sans); font-size: 13px; color: var(--ink-60); margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--rule); }
.policy h2 { font-family: var(--display); font-size: 24px; color: var(--navy); margin: 40px 0 12px; font-weight: 600; }
@media (min-width: 768px) { .policy h2 { font-size: 28px; } }
.policy h3 { font-family: var(--sans); font-size: 16px; color: var(--navy); margin: 24px 0 8px; font-weight: 700; letter-spacing: -.2px; }
.policy p, .policy li { font-family: var(--sans); font-size: 16px; line-height: 1.75; color: var(--ink); }
.policy ul, .policy ol { padding-left: 22px; }
.policy a { color: var(--navy); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
