/* ==========================================================================
   Awad & Khoury, LLP — Custom Site Design
   Brand: Burgundy #75172e + Gray #808080 + Navy accent #1a3a5c
   Fonts: Crimson Text (headings), Fjord One/system (body) — loaded via Google Fonts
   Layout: distinct from the mahfuzlaw template model — split hero, card grid,
   circular attorney photos, icon practice areas, gray footer.
   Static, no framework, no build.
   ========================================================================== */

/* ------------------------------ Tokens ---------------------------------- */
:root {
  /* Burgundy scale (brand primary) */
  --burgundy:       #75172e;
  --burgundy-700:   #5e1225;
  --burgundy-600:   #8a1d38;
  --burgundy-200:   #e8c4cf;
  --burgundy-050:   #faf3f5;

  /* Gray scale (brand secondary) */
  --gray:           #808080;
  --gray-700:       #5c5c5c;
  --gray-300:       #b3b3b3;
  --gray-100:       #e8e8e8;
  --gray-050:       #f5f5f5;

  /* Navy accent */
  --navy:           #1a3a5c;
  --navy-700:       #0f2840;

  /* Blue accent (from original site) */
  --blue-accent:    #1a6ba5;

  /* Surfaces & ink */
  --ink:            #222222;
  --ink-2:          #555555;
  --ink-3:          #888888;
  --bg:             #ffffff;
  --bg-soft:        #fafafa;
  --bg-warm:        #f9f6f3;
  --line:           #e0e0e0;
  --line-soft:      #eeeeee;
  --on-dark:        #ffffff;
  --on-dark-soft:   #cccccc;

  --serif:  'Crimson Text', 'Georgia', 'Times New Roman', serif;
  --sans:   'Fjord One', 'Georgia', serif;
  --sans-ui: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --radius:       .5rem;
  --radius-lg:    14px;
  --radius-xl:    20px;
  --radius-fill:  999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow:     0 1px 3px rgba(0,0,0,.08), 0 4px 12px rgba(0,0,0,.05);
  --shadow-lg:  0 4px 16px rgba(0,0,0,.1), 0 12px 28px rgba(0,0,0,.08);
  --shadow-xl:  0 8px 30px rgba(0,0,0,.12), 0 20px 48px rgba(0,0,0,.10);

  --max: 1180px;
  --space: clamp(2.5rem, 5vw, 4.5rem);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;
}

/* ------------------------------ Reset / Base ---------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.68;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: var(--burgundy); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--burgundy-600); }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.18;
  color: var(--burgundy);
  margin: 0 0 .5em;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 4.5vw, 3.1rem); }
h2 { font-size: clamp(1.6rem, 3.2vw, 2.4rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
h4 { font-size: 1.1rem; font-family: var(--sans); font-weight: 700; letter-spacing: .02em; text-transform: uppercase; color: var(--ink); }
p { margin: 0 0 1rem; }
strong { font-weight: 700; }
ul, ol { margin: 0 0 1rem; padding-left: 1.3rem; }

.wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: clamp(16px, 4vw, 40px); }
.section { padding-block: var(--space); }
.section + .section { padding-top: 0; }
.section--soft { background: var(--bg-soft); }
.section--warm { background: var(--bg-warm); }
.section--gray { background: var(--gray-050); }
.section--burgundy { background: var(--burgundy); color: var(--on-dark); }
.section--burgundy h1, .section--burgundy h2, .section--burgundy h3, .section--burgundy h4 { color: #fff; }
.section--navy { background: var(--navy); color: var(--on-dark); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }

.center { text-align: center; }
.measure { max-width: 62ch; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.lead { font-size: 1.15rem; color: var(--ink-2); line-height: 1.6; }

/* Skip link */
.skip { position: absolute; left: -999px; top: 0; background: var(--burgundy); color: #fff; padding: .7rem 1.2rem; border-radius: 0 0 var(--radius) 0; z-index: 200; }
.skip:focus { left: 0; }
:focus-visible { outline: 3px solid var(--burgundy); outline-offset: 2px; border-radius: 3px; }

/* ------------------------------ Kicker --------------------------------- */
.kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--sans-ui); font-size: .78rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--burgundy);
  margin-bottom: .8rem;
}
.kicker .ln { width: 28px; height: 2px; background: var(--burgundy); border-radius: 2px; }
.section--burgundy .kicker, .section--navy .kicker { color: var(--burgundy-200); }
.section--burgundy .kicker .ln, .section--navy .kicker .ln { background: var(--burgundy-200); }

/* ------------------------------ Buttons -------------------------------- */
.btn {
  --_bg: var(--burgundy); --_fg: #fff;
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  font-family: var(--sans-ui); font-weight: 600; font-size: .95rem; line-height: 1;
  padding: .85rem 1.5rem; min-height: 46px;
  border-radius: var(--radius-fill); border: 2px solid transparent;
  background: var(--_bg); color: var(--_fg);
  cursor: pointer; transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; transition: transform .18s ease; }
.btn:hover { transform: translateY(-2px); color: var(--_fg); }
.btn:hover svg { transform: translateX(3px); }
.btn--primary { --_bg: var(--burgundy); box-shadow: 0 6px 18px -6px rgba(117,23,46,.5); }
.btn--primary:hover { --_bg: var(--burgundy-600); }
.btn--outline { --_bg: transparent; --_fg: var(--burgundy); border-color: var(--burgundy); }
.btn--outline:hover { --_bg: var(--burgundy); --_fg: #fff; }
.btn--ghost-light { --_bg: transparent; --_fg: #fff; border-color: rgba(255,255,255,.5); }
.btn--ghost-light:hover { --_bg: #fff; --_fg: var(--burgundy); border-color: #fff; }
.btn--gray { --_bg: var(--gray); }
.btn--gray:hover { --_bg: var(--gray-700); }
.btn--lg { font-size: 1.02rem; padding: 1rem 1.8rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* ------------------------------ Header --------------------------------- */
.site-header { background: #fff; border-bottom: 1px solid var(--line); }
.top-bar { background: var(--gray); color: #fff; padding: .55rem 0; font-size: .88rem; }
.top-bar-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
.top-bar a { color: #fff; display: inline-flex; align-items: center; gap: .4rem; }
.top-bar a:hover { opacity: .8; color: #fff; }
.top-bar svg { width: 15px; height: 15px; }
.top-bar .lang-note { font-size: .82rem; opacity: .85; }
.header-main { padding-block: .8rem; }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; }
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 55px; width: auto; }
.nav { display: flex; align-items: center; gap: .15rem; }
.nav a {
  font-family: var(--sans-ui); font-size: .88rem; font-weight: 600;
  color: var(--ink); padding: .5rem .75rem; border-radius: var(--radius);
  letter-spacing: .02em; text-transform: uppercase;
  transition: color .18s ease, background .18s ease;
}
.nav a:hover { color: var(--burgundy); background: var(--burgundy-050); }
.nav a[aria-current="page"] { color: var(--burgundy); }
.header-cta { display: flex; align-items: center; gap: .8rem; flex-shrink: 0; }
.header-phone { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--sans-ui); font-weight: 700; color: var(--burgundy); font-size: 1.05rem; }
.header-phone svg { width: 16px; height: 16px; }

.nav-toggle { display: none; background: none; border: 1px solid var(--line); border-radius: var(--radius); width: 44px; height: 44px; cursor: pointer; align-items: center; justify-content: center; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }

@media (max-width: 960px) {
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .nav {
    position: fixed; inset: 112px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg); padding: .4rem clamp(16px,4vw,40px) 1rem;
    transform: translateY(-140%); transition: transform .28s ease;
    max-height: calc(100vh - 112px); overflow-y: auto; z-index: 99;
  }
  .nav[data-open="true"] { transform: translateY(0); }
  .nav a { width: 100%; padding: .8rem .4rem; border-radius: 0; border-bottom: 1px solid var(--line-soft); font-size: 1rem; }
  .top-bar .lang-note { display: none; }
}

/* ------------------------------ Hero (Split Layout) -------------------- */
.hero { background: linear-gradient(175deg, var(--bg-warm) 0%, #fff 100%); position: relative; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem); align-items: center;
  padding-block: clamp(3rem, 5vw, 5rem);
}
.hero h1 { color: var(--burgundy); margin-bottom: 1rem; }
.hero .lead { color: var(--ink-2); margin-bottom: 1.5rem; font-size: 1.15rem; }
.hero-points { list-style: none; padding: 0; margin: 0 0 1.8rem; display: grid; gap: .65rem; }
.hero-points li {
  display: flex; gap: .6rem; align-items: flex-start;
  font-family: var(--sans-ui); font-size: .95rem; color: var(--ink-2);
}
.chk { flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%; background: var(--burgundy-050); color: var(--burgundy); display: inline-flex; align-items: center; justify-content: center; margin-top: 2px; }
.chk svg { width: 12px; height: 12px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; }
.hero-img-card {
  background: #fff; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl); overflow: hidden;
  border: 1px solid var(--line-soft);
  max-width: 440px;
}
.hero-img-card img { width: 100%; height: auto; display: block; }
.hero-badge {
  position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%);
  background: var(--burgundy); color: #fff; padding: .6rem 1.4rem;
  border-radius: var(--radius-fill); font-family: var(--sans-ui); font-weight: 600;
  font-size: .88rem; white-space: nowrap; box-shadow: var(--shadow-lg);
}

@media (max-width: 800px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-points li { justify-content: center; }
  .hero .btn-row { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-img-card { max-width: 300px; }
}

/* ------------------------------ Cards ---------------------------------- */
.grid { display: grid; gap: 1.2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .grid-4 { grid-template-columns: repeat(2,1fr); } .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 580px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: #fff; border: 1px solid var(--line-soft); border-radius: var(--radius-lg);
  padding: 1.5rem; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
a.card { display: block; color: inherit; }
a.card:hover { color: inherit; }

.icon-chip {
  width: 48px; height: 48px; border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; background: var(--burgundy-050); color: var(--burgundy);
}
.icon-chip svg { width: 24px; height: 24px; }
.card h3 { margin-bottom: .35rem; font-size: 1.2rem; }
.card p { color: var(--ink-2); font-size: .95rem; margin-bottom: 1rem; }
.card-link { display: inline-flex; align-items: center; gap: .4rem; font-family: var(--sans-ui); font-weight: 600; font-size: .9rem; color: var(--burgundy); }
.card-link svg { width: 14px; height: 14px; transition: transform .18s ease; }
.card:hover .card-link svg { transform: translateX(3px); }

/* Practice area icon cards */
.pa-card { text-align: center; padding: 1.8rem 1.2rem; }
.pa-card img { width: 64px; height: 64px; margin: 0 auto 1rem; }
.pa-card h3 { font-size: 1.1rem; margin-bottom: .4rem; }

/* ------------------------------ Meet Attorneys ------------------------- */
.attorney-grid { display: grid; gap: 2rem; }
.attorney-grid-2 { grid-template-columns: repeat(2, 1fr); }
.attorney-grid-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 800px) { .attorney-grid-2, .attorney-grid-3 { grid-template-columns: 1fr; } }

.attorney-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl);
  padding: 2rem 1.5rem 1.5rem; text-align: center;
  box-shadow: var(--shadow-sm); transition: transform .2s ease, box-shadow .2s ease;
}
.attorney-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.attorney-card img {
  width: 140px; height: 140px; border-radius: 50%; object-fit: cover;
  margin: 0 auto 1.2rem; border: 4px solid var(--burgundy-050);
}
.attorney-card h3 { color: var(--burgundy); margin-bottom: .15rem; }
.attorney-card .role { font-family: var(--sans-ui); font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); margin-bottom: 1rem; }
.attorney-card p { color: var(--ink-2); font-size: .94rem; line-height: 1.55; }

/* ------------------------------ Shoutout / Value props ----------------- */
.shoutout-grid { display: grid; gap: 0; }
.shoutout-grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 960px) { .shoutout-grid-4 { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 520px) { .shoutout-grid-4 { grid-template-columns: 1fr; } }

.shout-cell {
  padding: 2rem 1.5rem; border-right: 1px solid var(--line);
  text-align: center; transition: background .2s ease;
}
.shout-cell:last-child { border-right: none; }
.shout-cell:hover { background: var(--bg-soft); }
.shout-cell .shout-icon { width: 40px; height: 40px; margin: 0 auto .8rem; color: var(--burgundy); }
.shout-cell h3 { font-size: 1.15rem; margin-bottom: .5rem; }
.shout-cell p { font-size: .92rem; color: var(--ink-2); }

/* ------------------------------ Content with sidebar ------------------- */
.content-layout { display: grid; grid-template-columns: minmax(0,1fr) 320px; gap: clamp(2rem, 4vw, 3rem); align-items: start; }
@media (max-width: 900px) { .content-layout { grid-template-columns: 1fr; } }

.prose { font-size: 1.02rem; }
.prose h2 { margin-top: 2rem; }
.prose h3 { margin-top: 1.5rem; color: var(--navy); }
.prose h2:first-child, .prose h3:first-child { margin-top: 0; }
.prose ul li, .prose ol li { margin-bottom: .45rem; }
.prose p { color: var(--ink); }
.prose a { text-decoration: underline; text-decoration-color: var(--burgundy-200); text-underline-offset: 2px; }

.sidebar { position: sticky; top: 24px; display: grid; gap: 1.2rem; }
.side-cta {
  background: linear-gradient(155deg, var(--burgundy), var(--burgundy-700));
  color: #fff; border-radius: var(--radius-lg); padding: 1.5rem; box-shadow: var(--shadow-lg);
}
.side-cta h3 { color: #fff; font-size: 1.15rem; }
.side-cta p { color: rgba(255,255,255,.8); font-size: .93rem; }
.side-cta .btn { width: 100%; margin-top: .5rem; }
.side-list { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 1.3rem; }
.side-list h4 { font-family: var(--sans-ui); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; color: var(--ink-3); margin: 0 0 .8rem; }
.side-list ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .1rem; }
.side-list a {
  display: flex; align-items: center; gap: .5rem; padding: .5rem .3rem;
  border-radius: var(--radius); font-size: .93rem; font-weight: 500; color: var(--ink);
}
.side-list a:hover { background: var(--burgundy-050); color: var(--burgundy); }
.side-list a[aria-current="page"] { color: var(--burgundy); font-weight: 700; }
.side-list a::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--burgundy); flex-shrink: 0; }

/* ------------------------------ Callout --------------------------------- */
.callout {
  background: var(--burgundy-050); border-left: 4px solid var(--burgundy);
  border-radius: var(--radius); padding: 1rem 1.2rem; margin: 1.5rem 0;
}
.callout p:last-child { margin-bottom: 0; }
.callout .callout-t { font-weight: 700; color: var(--burgundy); display: block; margin-bottom: .3rem; }

/* ------------------------------ Bullet list ----------------------------- */
.bullet-list { list-style: none; padding: 0; display: grid; gap: .5rem; }
.bullet-list li { display: flex; gap: .6rem; align-items: flex-start; }
.bullet-list li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--burgundy); flex-shrink: 0; margin-top: .6rem; }

/* ------------------------------ Two column ------------------------------ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 3.5rem); align-items: center; }
@media (max-width: 800px) { .two-col { grid-template-columns: 1fr; } }

/* ------------------------------ FAQ ------------------------------------ */
.faq { display: grid; gap: .7rem; max-width: 800px; margin-inline: auto; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; }
.faq-q {
  width: 100%; text-align: left; background: none; border: 0; font: inherit;
  font-weight: 600; font-size: 1.02rem; color: var(--ink);
  padding: 1rem 1.2rem; display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; cursor: pointer;
}
.faq-q .pm {
  flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%;
  background: var(--burgundy-050); color: var(--burgundy);
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .2s ease, background .2s ease;
}
.faq-q .pm svg { width: 14px; height: 14px; }
.faq-item[data-open="true"] .pm { background: var(--burgundy); color: #fff; transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a-inner { padding: 0 1.2rem 1.2rem; color: var(--ink-2); font-size: .95rem; }
.faq-item[data-open="true"] .faq-a { max-height: 500px; }

/* ------------------------------ Forms ---------------------------------- */
.form-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); padding: clamp(1.4rem, 3vw, 2rem);
}
.field { margin-bottom: 1rem; }
.field label { display: block; font-family: var(--sans-ui); font-weight: 600; font-size: .88rem; margin-bottom: .3rem; color: var(--ink); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; font-size: .98rem; padding: .75rem .85rem;
  border: 1.5px solid var(--line); border-radius: var(--radius);
  background: #fff; color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--burgundy); box-shadow: 0 0 0 3px var(--burgundy-050);
}
.field textarea { min-height: 130px; resize: vertical; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 520px) { .field-row { grid-template-columns: 1fr; } }
.form-note { font-size: .8rem; color: var(--ink-3); margin-top: .5rem; }

/* ------------------------------ Page Hero ------------------------------- */
.page-hero { background: var(--burgundy); color: #fff; padding-block: clamp(2rem, 4vw, 3.5rem); }
.page-hero h1 { color: #fff; }
.page-hero .lead { color: rgba(255,255,255,.78); }
.breadcrumbs { font-size: .82rem; color: rgba(255,255,255,.6); margin-bottom: .8rem; display: flex; flex-wrap: wrap; gap: .3rem; }
.breadcrumbs a { color: var(--burgundy-200); }
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span { color: rgba(255,255,255,.45); }

/* ------------------------------ CTA Band ------------------------------- */
.cta-band {
  background: linear-gradient(145deg, var(--burgundy), var(--burgundy-700));
  color: #fff; border-radius: var(--radius-xl); padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(255,255,255,.8); max-width: 56ch; margin-inline: auto; }
.cta-band .btn { margin-top: var(--space-4); }

/* ------------------------------ Full-width quote ----------------------- */
.quote-band { background: var(--gray-050); padding: var(--space-7) var(--space-4); text-align: center; }
.quote-band blockquote { max-width: 720px; margin: 0 auto; font-family: var(--serif); font-size: clamp(1.25rem, 2.5vw, 1.75rem); font-style: italic; color: var(--burgundy); line-height: 1.45; }
.quote-band blockquote::before { content: '\201C'; font-size: 3rem; display: block; color: var(--burgundy-200); margin-bottom: .5rem; }
.quote-band .attribution { font-family: var(--sans-ui); font-size: .9rem; color: var(--ink-3); margin-top: 1rem; font-style: normal; }

/* ------------------------------ Footer --------------------------------- */
.site-footer { background: var(--gray); color: #fff; padding-top: clamp(2.5rem, 5vw, 3.5rem); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 2rem; padding-bottom: 2.2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand img { height: 45px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: .92rem; color: rgba(255,255,255,.75); max-width: 32ch; }
.site-footer h4 { color: #fff; font-family: var(--sans-ui); font-weight: 700; font-size: .8rem; letter-spacing: .06em; text-transform: uppercase; margin: 0 0 .9rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .5rem; }
.site-footer a { color: rgba(255,255,255,.75); font-size: .93rem; }
.site-footer a:hover { color: #fff; }
.footer-contact li { display: flex; gap: .5rem; align-items: flex-start; font-size: .93rem; color: rgba(255,255,255,.75); }
.footer-contact svg { width: 16px; height: 16px; color: var(--burgundy-200); flex-shrink: 0; margin-top: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.15); padding-block: 1.2rem;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: .8rem;
  font-size: .8rem; color: rgba(255,255,255,.6);
}
.footer-bottom p { margin: 0; }
.disclaimer p {
  font-size: .76rem; color: rgba(255,255,255,.5); max-width: var(--max);
  margin: 0 auto; padding: 0 clamp(16px,4vw,40px) 1.4rem; line-height: 1.5;
}

/* ------------------------------ Pill / Badge --------------------------- */
.pill {
  display: inline-flex; align-items: center; gap: .35rem;
  background: var(--burgundy-050); color: var(--burgundy);
  border: 1px solid var(--burgundy-200); font-family: var(--sans-ui);
  font-size: .76rem; font-weight: 700; letter-spacing: .03em;
  text-transform: uppercase; padding: .25rem .65rem; border-radius: var(--radius-fill);
}
.badge-row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }

/* ------------------------------ Tag list ------------------------------- */
.tag-list { display: flex; flex-wrap: wrap; gap: .45rem; padding: 0; list-style: none; margin: .5rem 0 0; }
.tag-list li {
  background: var(--burgundy-050); color: var(--burgundy-700);
  font-family: var(--sans-ui); font-size: .84rem; font-weight: 500;
  padding: .3rem .75rem; border-radius: var(--radius-fill);
}

/* ------------------------------ Stats bar ------------------------------ */
.stats-bar { background: var(--burgundy); padding: var(--space-6) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; gap: 1.5rem; } }
.stat-num { font-family: var(--serif); font-size: clamp(2rem, 4vw, 2.8rem); color: #fff; line-height: 1.1; }
.stat-num em { color: var(--burgundy-200); font-style: normal; }
.stat-lbl { color: rgba(255,255,255,.75); font-size: .95rem; margin-top: .4rem; }

/* ------------------------------ Utility -------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}
