/* ============================================================
   Your Family Lawyer — Frisco | css/style.css
   Ring 2 geo site: frisco.yourfamilylawyer.net
   ============================================================ */

/* ── Font Face ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Merriweather';
  src: url('../fonts/merriweather-400i.woff2') format('woff2');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-400.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Inter';
  src: url('../fonts/inter-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --navy:    #1B2A4A;
  --slate:   #3E5C8A;
  --gold:    #C9A227;
  --cream:   #F7F4EE;
  --charcoal:#2B2B2B;
  --white:   #FFFFFF;
  --light-gray: #E8E4DC;
  --text:    #2B2B2B;
  --text-light: #5A5A5A;

  --font-heading: 'Merriweather', Georgia, 'Times New Roman', serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --max-w: 1180px;
  --radius: 3px;
  --transition: 220ms ease;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 3px 10px rgba(0,0,0,.12);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--slate); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
h2 { font-size: clamp(1.35rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.05rem; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── Container ─────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Section ───────────────────────────────────────────────── */
.section {
  padding: 4rem 0;
}
.section--sm { padding: 2.5rem 0; }
.section--lg { padding: 5rem 0; }

.section--cream { background: var(--cream); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--slate { background: var(--slate); color: var(--white); }
.section--slate h2, .section--slate h3 { color: var(--white); }

.section-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .5rem;
}

/* ── Gold Rule Divider ─────────────────────────────────────── */
hr.gold-rule {
  border: none;
  border-top: 2px solid var(--gold);
  width: 60px;
  margin: 2rem 0;
}
hr.gold-rule--center { margin-left: auto; margin-right: auto; }
hr.gold-rule--wide { width: 100%; margin: 2.5rem 0; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  padding: .75rem 1.75rem;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: center;
  transition: all var(--transition);
  border: 2px solid transparent;
  line-height: 1.2;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn--primary:hover {
  background: #b8911f;
  border-color: #b8911f;
  color: var(--navy);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover {
  background: var(--white);
  color: var(--navy);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--navy:hover {
  background: #243968;
  border-color: #243968;
  color: var(--white);
}
.btn--lg { padding: .9rem 2.25rem; font-size: 1rem; }

/* ── Navigation ────────────────────────────────────────────── */
.site-header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid var(--gold);
}
.nav-wrap {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: .85rem 1.5rem;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  flex-shrink: 0;
  text-decoration: none;
  line-height: 1.15;
}
.nav-logo-name {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
}
.nav-logo-name .gold { color: var(--gold); }
.nav-logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: .1rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: .15rem;
  margin-left: auto;
  flex-wrap: wrap;
}
.nav-links a {
  color: rgba(255,255,255,.85);
  font-size: .82rem;
  font-weight: 500;
  padding: .4rem .65rem;
  border-radius: 2px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-links a:hover, .nav-links a[aria-current="page"] {
  color: var(--white);
  background: rgba(255,255,255,.08);
}
.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
  border-radius: var(--radius) !important;
  padding: .45rem 1rem !important;
}
.nav-cta:hover {
  background: #b8911f !important;
  color: var(--navy) !important;
}

/* Hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: .4rem;
  margin-left: auto;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: .5rem 0 1rem;
    border-bottom: 3px solid var(--gold);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: .65rem 1.5rem; width: 100%; border-radius: 0; }
  .nav-cta { margin: .5rem 1.5rem 0; width: auto; }
  .site-header { position: relative; }
}

/* ── Breadcrumb ────────────────────────────────────────────── */
.breadcrumb {
  background: var(--cream);
  border-bottom: 1px solid var(--light-gray);
  padding: .6rem 0;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem;
  align-items: center;
  font-size: .8rem;
  color: var(--text-light);
}
.breadcrumb ol li::after { content: '/'; margin-left: .35rem; color: var(--light-gray); }
.breadcrumb ol li:last-child::after { display: none; }
.breadcrumb ol li a { color: var(--slate); }
.breadcrumb ol li a:hover { color: var(--gold); }
.breadcrumb ol li:last-child { color: var(--text); font-weight: 500; }

/* ── Split Hero (Home) ─────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 3fr 2fr;
  min-height: 420px;
}
.hero-split__left {
  background: var(--navy);
  padding: 4rem 3rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-split__left h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero-split__left p { color: rgba(255,255,255,.85); font-size: 1.05rem; margin-bottom: 1.75rem; }
.hero-split__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }
.hero-split__actions .btn--outline { font-size: .9rem; }

.hero-split__right {
  background: var(--slate);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
  position: relative;
  overflow: hidden;
}
.hero-split__right::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--gold);
}
.hero-stat {
  text-align: center;
}
.hero-stat__number {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.hero-stat__label {
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  text-transform: uppercase;
  letter-spacing: .1em;
  display: block;
  margin-top: .4rem;
}
.hero-stat__tagline {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--white);
  font-size: 1rem;
  margin-top: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-split {
    grid-template-columns: 1fr;
  }
  .hero-split__left { padding: 2.5rem 1.5rem; }
  .hero-split__right { padding: 2.5rem 1.5rem; min-height: 220px; }
  .hero-split__right::before { width: 100%; height: 4px; bottom: auto; top: 0; }
}

/* ── Interior Page Hero ────────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 3rem 0 2.5rem;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; }
.page-hero .lead { color: rgba(255,255,255,.8); font-size: 1.05rem; max-width: 680px; }

/* ── Sidebar Layout ────────────────────────────────────────── */
.page-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 3rem;
  align-items: start;
  padding-top: 2.5rem;
  padding-bottom: 3rem;
}
.page-main { min-width: 0; }
.sidebar {
  position: sticky;
  top: 80px;
}
.sidebar-widget {
  background: var(--cream);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.sidebar-widget h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
  padding-bottom: .75rem;
  border-bottom: 2px solid var(--gold);
  color: var(--navy);
}
.sidebar-widget ul li { border-bottom: 1px solid var(--light-gray); }
.sidebar-widget ul li:last-child { border-bottom: none; }
.sidebar-widget ul li a {
  display: block;
  padding: .55rem 0;
  font-size: .9rem;
  color: var(--slate);
  font-weight: 500;
}
.sidebar-widget ul li a:hover { color: var(--gold); padding-left: .25rem; }
.sidebar-cta {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); font-size: 1rem; margin-bottom: .75rem; }
.sidebar-cta p { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 1rem; }
.sidebar-cta .btn { display: block; width: 100%; margin-bottom: .6rem; }
.sidebar-cta .phone-link {
  display: block;
  color: rgba(255,255,255,.8);
  font-size: .85rem;
  font-weight: 500;
}
.sidebar-cta .phone-link:hover { color: var(--gold); }

@media (max-width: 900px) {
  .page-layout {
    grid-template-columns: 1fr;
  }
  .sidebar {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .sidebar { grid-template-columns: 1fr; }
}

/* ── Trust Strip ───────────────────────────────────────────── */
.trust-strip {
  background: var(--white);
  border-top: 1px solid var(--light-gray);
  border-bottom: 1px solid var(--light-gray);
}
.trust-strip__inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1.25rem 2.5rem;
  border-right: 1px solid var(--light-gray);
  flex: 1;
  min-width: 200px;
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  color: var(--gold);
}
.trust-text strong {
  display: block;
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy);
  font-family: var(--font-body);
}
.trust-text span {
  font-size: .8rem;
  color: var(--text-light);
}

@media (max-width: 640px) {
  .trust-item { border-right: none; border-bottom: 1px solid var(--light-gray); }
  .trust-item:last-child { border-bottom: none; }
}

/* ── Practice Cards Grid ───────────────────────────────────── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.card-border {
  border-left: 4px solid var(--slate);
  padding: 1.5rem 1.5rem 1.5rem 1.25rem;
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.card-border:hover {
  border-left-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.card-border h3 { margin-bottom: .5rem; font-size: 1.1rem; }
.card-border p { font-size: .9rem; color: var(--text-light); flex: 1; margin-bottom: 1rem; }
.card-border .card-link {
  font-size: .85rem;
  font-weight: 600;
  color: var(--slate);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.card-border .card-link::after { content: '\2192'; }
.card-border .card-link:hover { color: var(--gold); }

/* ── Key Facts Bar ─────────────────────────────────────────── */
.facts-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.fact-item {
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.12);
  text-align: center;
}
.fact-item:last-child { border-right: none; }
.fact-label {
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  display: block;
  margin-bottom: .4rem;
}
.fact-value {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  display: block;
}

@media (max-width: 700px) {
  .facts-bar { grid-template-columns: repeat(2, 1fr); }
  .fact-item { border-right: 1px solid rgba(255,255,255,.12); border-bottom: 1px solid rgba(255,255,255,.12); }
}
@media (max-width: 400px) {
  .facts-bar { grid-template-columns: 1fr; }
  .fact-item { border-right: none; }
}

/* ── Steps / Process ───────────────────────────────────────── */
.steps { counter-reset: step; }
.step {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  flex-shrink: 0;
  width: 2.5rem;
  text-align: center;
}
.step-content h4 { margin-bottom: .3rem; color: var(--navy); }
.step-content p { font-size: .92rem; color: var(--text-light); margin: 0; }

/* ── FAQ Accordion ─────────────────────────────────────────── */
.faq-list { margin: 0; }
.faq-item {
  border-bottom: 1px solid var(--light-gray);
}
.faq-item:first-child { border-top: 1px solid var(--light-gray); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.1rem 0;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item.open .faq-question::after {
  content: '\2212';
}
.faq-answer {
  display: none;
  padding-bottom: 1.1rem;
  color: var(--text-light);
  font-size: .95rem;
  line-height: 1.65;
}
.faq-answer p { margin-bottom: .75rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-item.open .faq-answer { display: block; }

/* ── Prose ─────────────────────────────────────────────────── */
.prose h2 { margin-top: 2rem; margin-bottom: .85rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 1.5rem; margin-bottom: .6rem; }
.prose ul {
  list-style: disc;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.prose ul li { margin-bottom: .35rem; font-size: .96rem; }
.prose ol {
  list-style: decimal;
  padding-left: 1.4rem;
  margin-bottom: 1rem;
}
.prose ol li { margin-bottom: .35rem; font-size: .96rem; }
.prose a { color: var(--slate); font-weight: 500; }
.prose a:hover { color: var(--gold); }
.prose blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.25rem;
  background: var(--cream);
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: .95rem;
}

/* ── Callout Box ───────────────────────────────────────────── */
.callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 1.25rem 1.5rem;
  margin: 1.75rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout--navy {
  background: var(--navy);
  border-left-color: var(--gold);
  color: var(--white);
}
.callout--navy h4 { color: var(--gold); }
.callout h4 { font-size: .95rem; margin-bottom: .4rem; color: var(--navy); }
.callout p { font-size: .9rem; margin: 0; color: var(--text-light); }
.callout--navy p { color: rgba(255,255,255,.8); }

/* ── Serving Section ───────────────────────────────────────── */
.serving-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: .75rem;
  margin-top: 1.25rem;
}
.serving-link {
  display: block;
  padding: .65rem 1rem;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  font-size: .88rem;
  font-weight: 500;
  color: var(--slate);
  text-align: center;
  transition: all var(--transition);
  background: var(--white);
}
.serving-link:hover {
  border-color: var(--gold);
  color: var(--navy);
  background: var(--cream);
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: var(--navy);
  padding: 3.5rem 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: .75rem; }
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-band__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Attorney Profile (About) ──────────────────────────────── */
.attorney-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0;
}
.attorney-photo {
  position: sticky;
  top: 80px;
}
.attorney-photo img {
  width: 100%;
  border-radius: var(--radius);
  border: 4px solid var(--slate);
}
.attorney-info {
  padding: .5rem 0;
  background: var(--cream);
  border-radius: var(--radius);
  margin-top: 1rem;
}
.attorney-info-row {
  display: flex;
  gap: .75rem;
  padding: .65rem 1rem;
  border-bottom: 1px solid var(--light-gray);
  font-size: .88rem;
}
.attorney-info-row:last-child { border-bottom: none; }
.attorney-info-row strong { color: var(--navy); flex-shrink: 0; min-width: 90px; }

@media (max-width: 820px) {
  .attorney-layout { grid-template-columns: 1fr; }
  .attorney-photo { position: static; max-width: 320px; }
}

/* ── Contact Page ──────────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  padding: 3rem 0;
}
.contact-block h3 { margin-bottom: 1rem; }
.contact-method {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
}
.contact-method:last-child { border-bottom: none; }
.contact-icon { font-size: 1.3rem; color: var(--gold); flex-shrink: 0; line-height: 1.4; }
.contact-method-body strong { display: block; font-size: .88rem; font-weight: 600; color: var(--navy); margin-bottom: .2rem; }
.contact-method-body a { color: var(--slate); font-weight: 500; }
.contact-method-body a:hover { color: var(--gold); }

.expect-steps { counter-reset: none; }
.expect-step {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--light-gray);
  align-items: flex-start;
}
.expect-step:last-child { border-bottom: none; }
.expect-num {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-body);
}
.expect-body strong { display: block; font-size: .92rem; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
.expect-body p { font-size: .88rem; color: var(--text-light); margin: 0; }

@media (max-width: 700px) {
  .contact-layout { grid-template-columns: 1fr; }
}

/* ── Section Heading Utility ───────────────────────────────── */
.section-heading { margin-bottom: 2.5rem; }
.section-heading h2 { margin-bottom: .5rem; }
.section-heading p {
  font-size: 1rem;
  color: var(--text-light);
  max-width: 620px;
}
.section-heading--center { text-align: center; }
.section-heading--center p { margin-left: auto; margin-right: auto; }
.section-heading--white h2 { color: var(--white); }
.section-heading--white p { color: rgba(255,255,255,.75); }

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,.75);
  padding: 3rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: .25rem;
}
.footer-brand-name .gold { color: var(--gold); }
.footer-tagline {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  margin-top: .35rem;
  margin-bottom: 1rem;
  line-height: 1.5;
}
.footer-col h4 {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gold);
  margin-bottom: .9rem;
}
.footer-col ul li {
  margin-bottom: .4rem;
}
.footer-col ul li a {
  font-size: .87rem;
  color: rgba(255,255,255,.65);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-contact-line {
  display: flex;
  gap: .5rem;
  font-size: .87rem;
  margin-bottom: .5rem;
  color: rgba(255,255,255,.65);
}
.footer-contact-line strong { color: rgba(255,255,255,.5); min-width: 52px; }
.footer-contact-line a { color: rgba(255,255,255,.65); }
.footer-contact-line a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
}
.compliance-block {
  font-size: .75rem;
  color: rgba(255,255,255,.4);
  line-height: 1.65;
  max-width: 900px;
}

@media (max-width: 860px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── 404 ───────────────────────────────────────────────────── */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 1.5rem;
}
.error-page__code {
  font-family: var(--font-heading);
  font-size: clamp(5rem, 20vw, 10rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
  opacity: .25;
}
.error-page h1 { margin-bottom: .75rem; }
.error-page p { color: var(--text-light); max-width: 420px; margin: 0 auto 2rem; }
.error-page__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Utilities ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-gold    { color: var(--gold); }
.text-navy    { color: var(--navy); }
.text-slate   { color: var(--slate); }
.text-light   { color: var(--text-light); }
.text-sm      { font-size: .875rem; }
.text-xs      { font-size: .8rem; }
.font-heading { font-family: var(--font-heading); }
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: .5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: .5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .site-header, .site-footer, .sidebar, .cta-band { display: none; }
  .page-layout { grid-template-columns: 1fr; }
  a[href]::after { content: ' (' attr(href) ')'; font-size: .75rem; }
}

/* breadcrumbs: suppress list markers (list-style was never reset on the flex container) */
.breadcrumb ol { list-style: none; margin: 0; padding: 0; }
.breadcrumb ol li { list-style: none; }
.breadcrumb ol li::marker { content: none; }
