/* =============================================================================
   GONZALEZ & ROTHCHILD LLP — MAIN STYLESHEET
   Palette: Navy #1B2A4A | Red #B22234 | Gold #C9A227 | Off-white #FAF8F4
   Typography: Playfair Display (headings) + Source Sans 3 (body)
   ============================================================================= */

/* === GOOGLE FONTS IMPORT === */
/* Google Fonts loaded via <link> in each page <head> — not @import */

/* === CSS CUSTOM PROPERTIES === */
:root {
  --navy:      #1B2A4A;
  --navy-deep: #0f1d33;
  --red:       #B22234;
  --red-dark:  #8e1b28;
  --gold:      #C9A227;
  --gold-light:#e8c558;
  --offwhite:  #FAF8F4;
  --white:     #ffffff;
  --gray-100:  #f4f2ee;
  --gray-200:  #e8e4dc;
  --gray-400:  #a09890;
  --gray-600:  #6b6258;
  --gray-800:  #3a342e;
  --text:      #1B2A4A;
  --text-muted:#5a5248;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Source Sans 3', 'Helvetica Neue', Arial, sans-serif;

  --shadow-sm: 0 1px 3px rgba(27,42,74,0.08);
  --shadow-md: 0 4px 16px rgba(27,42,74,0.12);
  --shadow-lg: 0 8px 32px rgba(27,42,74,0.16);
  --radius:    4px;
  --radius-lg: 8px;

  --nav-height: 80px;
  --max-width:  1200px;
  --section-pad: 80px;
}

/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* Skip-to-content */
.skip-link {
  position: absolute;
  top: -999px;
  left: 0;
  padding: 0.5rem 1rem;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--red-dark); }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-sans);
  font-size: inherit;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); }
h4 { font-size: 1.2rem; }

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

.lead {
  font-size: 1.15rem;
  line-height: 1.75;
  color: var(--text-muted);
}

/* Gold horizontal rule */
.gold-rule {
  border: none;
  border-top: 2px solid var(--gold);
  width: 60px;
  margin: 1.5rem 0;
}
.gold-rule--center { margin-left: auto; margin-right: auto; }

/* === LAYOUT === */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--wide { max-width: 1400px; }
.container--narrow { max-width: 800px; }

.section {
  padding: var(--section-pad) 0;
}
.section--light { background: var(--offwhite); }
.section--navy  { background: var(--navy); color: var(--white); }
.section--navy h2, .section--navy h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* === NAVIGATION === */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: var(--shadow-sm);
  height: var(--nav-height);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.site-logo {
  flex-shrink: 0;
  min-width: 0;
}
.site-logo img {
  /* Scales smoothly with viewport instead of snapping at one breakpoint. */
  height: clamp(44px, 5.6vw, 74px);
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.site-logo:focus-visible { outline: 3px solid var(--gold); border-radius: var(--radius); }

.site-monogram {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: 1.25rem;
}
.site-monogram img {
  height: clamp(40px, 5vw, 66px);
  width: auto;
}
.site-monogram:focus-visible { outline: 3px solid var(--gold); border-radius: var(--radius); }

.site-nav ul {
  display: flex;
  align-items: center;
  gap: clamp(0.6rem, 1.4vw, 1.25rem);
}
.site-nav a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--navy);
  padding: 0.25rem 0;
  position: relative;
}
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--red); }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { width: 100%; }

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.5rem 1rem !important;
  border-radius: var(--radius);
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--red-dark) !important; color: var(--white) !important; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--navy);
}
.nav-toggle:focus-visible { outline: 3px solid var(--gold); border-radius: var(--radius); }
.nav-toggle-icon {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  transition: background 0.2s;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  background: currentColor;
  transition: transform 0.25s;
}
.nav-toggle-icon::before { top: -7px; }
.nav-toggle-icon::after  { top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::before { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle[aria-expanded="true"] .nav-toggle-icon::after  { transform: rotate(-45deg) translate(5px, -5px); }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s, box-shadow 0.2s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); text-decoration: none; }
.btn:active { transform: none; }
.btn:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

.btn-red   { background: var(--red); color: var(--white); border-color: var(--red); }
.btn-red:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); }

.btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }

.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--navy); }
.btn-white { background: var(--white); color: var(--navy-deep); border-color: var(--white); }
.btn-white:hover { background: rgba(255,255,255,0.88); color: var(--navy-deep); border-color: rgba(255,255,255,0.88); }

.btn-outline-navy { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

.btn-outline-red { background: transparent; color: var(--red); border-color: var(--red); }
.btn-outline-red:hover { background: var(--red); color: var(--white); }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }

.btn-sm { padding: 0.6rem 1.25rem; font-size: 0.85rem; }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }

/* === HERO — HOMEPAGE SPLIT === */
.hero-split {
  min-height: calc(100vh - var(--nav-height));
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.hero-panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 4rem 3.5rem;
  min-height: 600px;
  overflow: hidden;
  text-decoration: none;
  color: var(--white);
}
.hero-panel:hover { color: var(--white); text-decoration: none; }
.hero-panel:focus-visible { outline: 4px solid var(--gold); outline-offset: -4px; }

.hero-panel__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 6s ease;
  will-change: transform;
}
.hero-panel:hover .hero-panel__bg { transform: scale(1.03); }

.hero-panel__overlay {
  position: absolute;
  inset: 0;
}
.hero-panel--injury .hero-panel__bg {
  background-image: url('/assets/img/hero-truck-accident.jpg');
  filter: grayscale(100%);
}
/* INJURY panel — Texas flag blue field: firm brand navy wash; star is a separate SVG layer */
.hero-panel--injury .hero-panel__overlay {
  background: rgba(27,42,74,0.78);
}

/* Lone star — square container locks 1:1 so the star never stretches at any viewport width */
.hero-panel__star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -52%); /* nudge slightly above center to clear bottom text */
  width: 68%;
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: none;
}
.hero-panel__star svg {
  width: 100%;
  height: 100%;
  display: block;
}
.hero-panel--injury .hero-panel__content {
  border-left: 4px solid var(--red);
  padding-left: 1.25rem;
}
/* Text legibility over blue field — subtle shadows, no fading of blue */
.hero-panel--injury .hero-panel__eyebrow {
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}
.hero-panel--injury .hero-panel__title {
  text-shadow: 0 2px 10px rgba(0,0,0,0.60);
}
.hero-panel--injury .hero-panel__subtitle {
  text-shadow: 0 1px 6px rgba(0,0,0,0.55);
}

/* COMMERCIAL panel — Texas flag white-over-red bars; grayscale skyline; soft vertical gradient */
.hero-panel--commercial {
  justify-content: flex-start;
  padding-top: 5rem;
}
.hero-panel--commercial .hero-panel__overlay {
  /* Texas flag: white owns top half, red owns bottom half, soft transition at midpoint */
  background: linear-gradient(to bottom, rgba(225,228,235,0.72) 0%, rgba(225,228,235,0.68) 50%, rgba(178,34,52,0.84) 100%);
}
.hero-panel--commercial .hero-panel__bg {
  background-color: var(--navy-deep);
  background-position: center bottom;
  background-size: cover;
  background-image: url('/assets/img/hero-houston-skyline.jpg');
  filter: grayscale(100%);
}
/* Right-align content block, gold vertical bar on the right — mirrors injury's red bar on left */
.hero-panel--commercial .hero-panel__content {
  text-align: right;
  border-right: 4px solid var(--gold);
  padding-right: 1.25rem;
  margin-left: auto;
}
/* Text: dark navy for legibility over light upper wash */
.hero-panel--commercial .hero-panel__eyebrow {
  color: var(--navy);
}
.hero-panel--commercial .hero-panel__title {
  color: var(--navy);
}
.hero-panel--commercial .hero-panel__subtitle {
  margin-left: auto;
  color: rgba(15,29,51,0.88);
}
/* btn-white needs visible border when sitting on a light wash */
.hero-panel--commercial .btn-white {
  border-color: var(--navy);
}
.hero-panel__content {
  position: relative;
  z-index: 2;
}
.hero-panel__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.hero-panel__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.15;
}
.hero-panel__subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  max-width: 380px;
}

/* Hero above — firm banner */
.hero-banner {
  background: var(--navy);
  text-align: center;
  padding: 1.25rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(201,162,39,0.08) 0%, transparent 70%);
}
.hero-banner .container { position: relative; z-index: 1; }
.hero-banner__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  color: var(--gold);
  letter-spacing: 0.02em;
  margin: 0 0 0.3rem 0;
}
.hero-banner__vosb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.hero-banner__vosb-badge { height: 80px; width: auto; }
.hero-banner__vosb-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  text-align: left;
}
.hero-banner__vosb-label {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero-banner__vosb-sub {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* === HERO — PRACTICE PAGE === */
.page-hero {
  padding: 6rem 0 4rem;
  position: relative;
  overflow: hidden;
}
/* Background photo — full size, grayscale */
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(100%);
}
/* Colour overlay sits above bg, below star and content */
.page-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
}

/* INJURY — Texas flag navy field + truck accident photo */
.page-hero--injury { background: var(--navy-deep); }
.page-hero--injury .page-hero__bg {
  background-image: url('/assets/img/hero-truck-accident.jpg');
}
.page-hero--injury .page-hero__overlay {
  background: rgba(27,42,74,0.78);
}
/* Lone star — square container locks 1:1 aspect ratio */
.page-hero--injury .page-hero__star {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 38%;
  aspect-ratio: 1 / 1;
  z-index: 1;
  pointer-events: none;
}
.page-hero--injury .page-hero__star svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* COMMERCIAL — Texas flag white-to-red bars + Houston skyline */
.page-hero--commercial { background: var(--navy); }
.page-hero--commercial .page-hero__bg {
  background-image: url('/assets/img/hero-houston-skyline.jpg');
  background-position: center bottom;
}
.page-hero--commercial .page-hero__overlay {
  background: linear-gradient(to bottom, rgba(225,228,235,0.72) 0%, rgba(225,228,235,0.68) 50%, rgba(178,34,52,0.84) 100%);
}
/* Text: dark navy over the light upper wash, matching homepage right panel */
.page-hero--commercial h1 { color: var(--navy); }
.page-hero--commercial .lead { color: rgba(15,29,51,0.88); }
.page-hero--commercial .page-hero__eyebrow { color: var(--navy) !important; }
.page-hero--commercial .page-hero__strapline {
  color: var(--navy);
  border-color: rgba(15,29,51,0.3);
}

.page-hero .container { position: relative; z-index: 2; }
.page-hero__eyebrow {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.page-hero--injury .page-hero__eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.page-hero .lead { color: rgba(255,255,255,0.82); max-width: 640px; }
.page-hero__strapline {
  display: inline-block;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(201,162,39,0.4);
  border-radius: var(--radius);
}
.page-hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

/* === PRACTICE AREA SECTIONS === */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-top: 3px solid var(--gold);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.95rem; color: var(--text-muted); }

.service-card--injury { border-top-color: var(--red); }
.service-card--commercial { border-top-color: var(--navy); }

/* === SERVICE PROSE (consolidated practice pages — H2 list layout) === */
.service-prose {
  margin-top: 2.5rem;
}
.service-entry {
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--gray-200);
}
.service-entry:last-child { border-bottom: none; }
.service-entry h2 {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.85rem;
  line-height: 1.25;
}
.service-entry p {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 72ch;
}
.service-entry--injury h2 { color: var(--red-dark, #8b1a1a); }
.service-entry--commercial h2 { color: var(--navy); }
@media (min-width: 768px) {
  .service-entry { padding: 3rem 0; }
  .service-entry h2 { font-size: 1.6rem; }
}

/* === WHY GORO / TRUST BAND === */
.trust-band {
  background: var(--navy);
  color: var(--white);
  padding: 3.5rem 0;
}
.trust-band .container {
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-band__badge img { height: 90px; width: auto; flex-shrink: 0; }
.trust-band__text h2 { color: var(--white); margin-bottom: 0.75rem; }
.trust-band__text p { color: rgba(255,255,255,0.82); max-width: 720px; }

/* === STAT BAND === */
.stat-band {
  background: var(--offwhite);
  padding: 3.5rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}
.stat-band .container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item__number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}
.stat-item__label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 0.5rem;
}
.stat-item__divider {
  width: 30px;
  height: 2px;
  background: var(--gold);
  margin: 0.5rem auto;
}

/* === PRACTICE AREA GRID (homepage teaser) === */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
.practice-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  display: block;
  color: inherit;
}
.practice-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
  color: inherit;
  text-decoration: none;
}
.practice-card__type {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.practice-card--injury .practice-card__type { color: var(--red); }
.practice-card--commercial .practice-card__type { color: var(--navy); }
.practice-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.practice-card p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 1rem; }
.practice-card__link {
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.practice-card--injury .practice-card__link { color: var(--red); }
.practice-card--commercial .practice-card__link { color: var(--navy); }

/* === TEAM / ATTORNEY CARDS === */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.attorney-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.attorney-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.attorney-card__photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: top;
}
.attorney-card__body { padding: 1.75rem; display: flex; flex-direction: column; flex: 1; }
.attorney-card__name { font-size: 1.3rem; margin-bottom: 0.25rem; }
.attorney-card__title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.attorney-card__bio { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; flex: 1; }
.attorney-card__link { margin-top: 1rem; display: inline-block; font-weight: 700; font-size: 0.85rem; color: var(--red); text-transform: uppercase; letter-spacing: 0.04em; align-self: flex-start; }

/* Capsule bio (on practice pages) */
.capsule-bios {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.capsule-bio {
  display: flex;
  gap: 1.25rem;
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.capsule-bio__photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  flex-shrink: 0;
  border: 3px solid var(--gold);
}
.capsule-bio__text h4 { font-size: 1rem; margin-bottom: 0.15rem; }
.capsule-bio__role {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.capsule-bio__text p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 0.5rem; }
.capsule-bio__link { font-size: 0.82rem; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.04em; }

/* === NADIA PLACEHOLDER CARD === */
.attorney-card--placeholder .attorney-card__photo-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.attorney-card--placeholder .placeholder-monogram {
  font-family: var(--font-serif);
  font-size: 4rem;
  color: rgba(201,162,39,0.5);
  font-weight: 700;
}
.attorney-card--placeholder .attorney-card__note {
  font-size: 0.82rem;
  color: var(--gray-400);
  font-style: italic;
  margin-top: 0.5rem;
}

/* === FAQ SECTION === */
.faq-list { margin-top: 2rem; }
.faq-item {
  border-bottom: 1px solid var(--gray-200);
}
.faq-item:first-child { border-top: 1px solid var(--gray-200); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.25rem 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-question:focus-visible { outline: 3px solid var(--gold); border-radius: var(--radius); }
.faq-question:hover { color: var(--red); }
.faq-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  position: relative;
  color: var(--gold);
}
.faq-icon::before, .faq-icon::after {
  content: '';
  position: absolute;
  background: currentColor;
  transition: transform 0.25s, opacity 0.25s;
}
.faq-icon::before { top: 50%; left: 0; width: 100%; height: 2px; transform: translateY(-50%); }
.faq-icon::after  { left: 50%; top: 0; height: 100%; width: 2px; transform: translateX(-50%); }
.faq-question[aria-expanded="true"] .faq-icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-answer {
  padding-bottom: 1.25rem;
  color: var(--text-muted);
  display: none;
}
.faq-answer.is-open { display: block; }

/* === CONTACT FORM === */
.contact-section { padding: var(--section-pad) 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.form-group label .req {
  color: var(--red);
  margin-left: 0.2rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--text);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(27,42,74,0.1);
}
.form-control.is-error { border-color: var(--red); }
.form-error-msg {
  display: none;
  font-size: 0.82rem;
  color: var(--red);
  margin-top: 0.3rem;
  font-weight: 600;
}
.form-error-msg.is-visible { display: block; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

select.form-control { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%231B2A4A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }

textarea.form-control { resize: vertical; min-height: 130px; }

/* Honeypot */
.form-field--honeypot { position: absolute; left: -9999px; visibility: hidden; }

.form-disclaimer {
  background: var(--offwhite);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-consent input[type="checkbox"] {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 0.15rem;
  accent-color: var(--navy);
  cursor: pointer;
}
.form-consent label { font-size: 0.88rem; color: var(--text-muted); cursor: pointer; }

/* Contact sidebar */
.contact-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }
.contact-info-block {
  background: var(--navy);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}
.contact-info-block h3 { color: var(--white); margin-bottom: 1.25rem; font-size: 1.15rem; }
.contact-info-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-item__icon { flex-shrink: 0; color: var(--gold); margin-top: 0.15rem; }
.contact-info-item__text { font-size: 0.92rem; color: rgba(255,255,255,0.85); }
.contact-info-item__text a { color: var(--gold); font-weight: 600; }
.contact-info-item__text a:hover { color: var(--gold-light); }
.contact-map-placeholder {
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 1.5rem;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}
.section-header--left {
  text-align: left;
  margin-left: 0;
}
.section-header__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: var(--text-muted); }

/* === CTA STRIP === */
.cta-strip {
  padding: 4rem 0;
  text-align: center;
}
.cta-strip--red { background: var(--red); }
.cta-strip--navy { background: var(--navy); }
.cta-strip--offwhite { background: var(--offwhite); border-top: 1px solid var(--gray-200); }
.cta-strip h2 { color: var(--white); margin-bottom: 1rem; }
.cta-strip--offwhite h2 { color: var(--navy); }
.cta-strip p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 0 auto 2rem; }
.cta-strip--offwhite p { color: var(--text-muted); }
.cta-strip__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* VOSB-featured CTA band (homepage) */
.cta-strip--vosb-feature .container {
  display: flex;
  align-items: center;
  gap: 3.5rem;
  text-align: left;
}
.cta-strip__vosb-emblem {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
}
.cta-strip__vosb-emblem img {
  width: 128px;
  height: auto;
  filter: drop-shadow(0 2px 14px rgba(0,0,0,0.45));
}
.cta-strip__vosb-emblem span {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 700;
  line-height: 1.4;
}
.cta-strip__body { flex: 1; min-width: 0; }
.cta-strip--vosb-feature p { margin: 0 0 2rem; max-width: none; }
.cta-strip--vosb-feature .cta-strip__actions { justify-content: flex-start; }

/* Phone strip (injury pages) */
.phone-strip {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 0.75rem;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}
.phone-strip a { color: var(--white); text-decoration: none; }
.phone-strip a:hover { color: var(--gold-light); }

/* Mobile sticky call button (injury pages) */
.sticky-call-btn {
  display: none;
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 900;
  background: var(--red);
  color: var(--white);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(178,34,52,0.45);
  white-space: nowrap;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}
.sticky-call-btn:hover { background: var(--red-dark); transform: translateX(-50%) translateY(-2px); box-shadow: 0 6px 24px rgba(178,34,52,0.5); color: var(--white); }

/* === FUNNEL BREADCRUMB === */
.funnel-breadcrumb {
  background: var(--offwhite);
  border-bottom: 1px solid var(--gray-200);
  padding: 0.85rem 0;
  font-size: 0.88rem;
}
.funnel-breadcrumb a { color: var(--navy); font-weight: 600; }
.funnel-breadcrumb a:hover { color: var(--red); }
.funnel-breadcrumb .sep { margin: 0 0.5rem; color: var(--gray-400); }

/* Dual-CTA band (no-JS/direct-entry fallback for shared pages) */
.dual-cta-band {
  background: var(--offwhite);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}
.dual-cta-band__divider { background: var(--gray-200); height: 100%; }
.dual-cta-band__side { text-align: center; }
.dual-cta-band__side h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.dual-cta-band__side p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 1rem; }

/* === RELATED LINKS (bottom of shared pages) === */
.related-links {
  background: var(--offwhite);
  padding: 3rem 0;
  border-top: 1px solid var(--gray-200);
}
.related-links h3 { font-size: 1.1rem; margin-bottom: 1.25rem; }
.related-links ul { display: flex; gap: 1rem; flex-wrap: wrap; }
.related-links ul li a {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s, background 0.2s;
}
.related-links ul li a:hover { border-color: var(--gold); background: var(--offwhite); color: var(--navy); }

/* === FOOTER === */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.8);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.footer-brand__name-link { text-decoration: none; display: block; }
.footer-brand__name {
  display: block;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--white);
  white-space: nowrap;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}
.footer-brand__amp { color: var(--red); }
.footer-brand__tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold);
  margin-top: 0;
  margin-bottom: 1rem;
}
.footer-brand__address { font-size: 0.85rem; line-height: 1.7; }
.footer-brand__address p { margin-bottom: 0.15rem; }
.footer-brand__address a { color: rgba(255,255,255,0.75); }
.footer-brand__address a:hover { color: var(--gold); }
.footer-address-grid {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 1.75rem;
  align-items: start;
}

.footer-vosb { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; }
.footer-vosb img { height: 44px; opacity: 0.85; }

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--white); }

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: border-color 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }

.footer-cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.footer-disclaimer {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 900px;
}
.footer-rule702 {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 900px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1rem;
}
.footer-legal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-legal-row a { color: rgba(255,255,255,0.6); }
.footer-legal-row a:hover { color: var(--white); }
.footer-legal-links { display: flex; gap: 1.25rem; }

/* === COOKIE BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--navy-deep);
  color: var(--white);
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 0.88rem; color: rgba(255,255,255,0.82); flex: 1; min-width: 240px; margin: 0; }
.cookie-banner p a { color: var(--gold); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.cookie-btn {
  padding: 0.55rem 1.25rem;
  border-radius: var(--radius);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid;
  transition: background 0.2s, color 0.2s;
}
.cookie-btn--accept { background: var(--red); border-color: var(--red); color: var(--white); }
.cookie-btn--accept:hover { background: var(--red-dark); border-color: var(--red-dark); }
.cookie-btn--reject { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); }
.cookie-btn--reject:hover { border-color: var(--white); color: var(--white); }
.cookie-btn--settings { background: transparent; border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.6); font-size: 0.8rem; }

/* === CONTENT / LEGAL PAGES === */
.content-page {
  padding: var(--section-pad) 0;
}
.content-page h2 { margin-top: 2.5rem; margin-bottom: 1rem; font-size: 1.35rem; }
.content-page h2:first-child { margin-top: 0; }
.content-page p, .content-page ul, .content-page ol { margin-bottom: 1rem; color: var(--text-muted); }
.content-page ul, .content-page ol { padding-left: 1.5rem; }
.content-page ul { list-style: disc; }
.content-page ol { list-style: decimal; }
.content-page li { margin-bottom: 0.35rem; }

/* === BLOG / RESOURCES === */

/* Screen-reader only utility */
.sr-only { position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

/* Featured post */
.resource-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  text-decoration: none;
  color: inherit;
  min-height: 360px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 3rem;
}
.resource-featured:hover { box-shadow: var(--shadow-lg, 0 20px 48px rgba(0,0,0,0.18)); transform: translateY(-3px); }
.resource-featured__image {
  background-size: cover;
  background-position: center;
  background-color: var(--navy);
  filter: grayscale(30%);
  min-height: 280px;
}
.resource-featured__content {
  background: var(--navy);
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
.resource-featured__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}
.resource-featured__category--injury  { background: var(--red);  color: var(--white); }
.resource-featured__category--corporate { background: var(--gold); color: var(--navy); }
.resource-featured__title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  color: var(--white);
  line-height: 1.35;
  margin: 0;
}
.resource-featured__excerpt {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.65;
  margin: 0;
}
.resource-featured__meta {
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Two-column layout: main content + sidebar */
.resource-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 3rem;
  align-items: start;
}
.resource-main { min-width: 0; }
.resource-sidebar { position: sticky; top: calc(var(--nav-height) + 2rem); }

/* Popular Topics module */
.resource-topics {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.resource-topics__heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.resource-topics__tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.topic-tag {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.82);
}
.topic-tag:hover { background: rgba(255,255,255,0.14); color: var(--white); }
.topic-tag--injury:hover   { border-color: var(--red); }
.topic-tag--corporate:hover { border-color: var(--gold); }

/* Filter bar */
.resource-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2rem; }
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  background: var(--white);
  color: var(--navy);
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.filter-btn.is-active, .filter-btn:hover { border-color: var(--navy); background: var(--navy); color: var(--white); }
.filter-btn:focus-visible { outline: 3px solid var(--gold); }

/* Article grid */
.article-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.article-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-card__image {
  height: 160px;
  background-size: cover;
  background-position: center;
  background-color: var(--navy-light, #2a3f6f);
}
.article-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.75rem;
  display: block;
}
.article-card--injury   .article-card__category { background: var(--red);  color: var(--white); }
.article-card--corporate .article-card__category { background: var(--navy); color: var(--white); }
.article-card--commercial .article-card__category { background: var(--navy); color: var(--white); }
.article-card__body { padding: 1.25rem 1.5rem; flex: 1; display: flex; flex-direction: column; }
.article-card__title { font-size: 1rem; line-height: 1.4; margin-bottom: auto; }
.article-card__meta  { font-size: 0.78rem; color: var(--gray-400); margin-top: 0.75rem; font-weight: 600; }
.article-card__date  { font-size: 0.8rem; color: var(--gray-400); }
.article-card__excerpt { font-size: 0.88rem; color: var(--text-muted); margin-top: 0.75rem; }

/* Article template */
.article-body { max-width: 760px; }
.article-byline {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--gray-200);
}
.article-byline__photo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.article-byline__name { font-weight: 700; font-size: 0.95rem; }
.article-byline__meta { font-size: 0.82rem; color: var(--gray-400); }

/* === THANK YOU PAGE === */
.thankyou-section { padding: 6rem 0; text-align: center; }
.thankyou-icon {
  width: 80px;
  height: 80px;
  background: var(--offwhite);
  border: 3px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2rem;
  color: var(--gold);
}

/* === 404 PAGE === */
.error-page { padding: 6rem 0; text-align: center; }
.error-page h1 { font-size: 6rem; color: var(--gray-200); line-height: 1; margin-bottom: 0.5rem; }
.error-page h2 { color: var(--navy); margin-bottom: 1rem; }

/* === SCROLL-REVEAL ANIMATION === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-revealed {
  opacity: 1;
  transform: none;
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none !important; }
  .hero-panel__bg { transition: none; }
  html { scroll-behavior: auto; }
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  /* Layout stacking for narrower viewports. */
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-sidebar { position: static; }
  .hero-split { grid-template-columns: 1fr; }
  .hero-panel { min-height: 420px; }
  .resource-layout { grid-template-columns: 1fr; }
  .resource-sidebar { position: static; }
  .resource-featured { grid-template-columns: 1fr; }
  .resource-featured__image { min-height: 220px; }
  .article-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1024px) {
  :root { --section-pad: 56px; --nav-height: 64px; }

  /* Header simplifies here: the seal retires and the nav collapses to the
     hamburger together, before the links can crowd the logo.
     Logo size itself is fluid via clamp() above — it never snaps. */
  .site-monogram { display: none; }

  .site-nav ul {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0 0;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
    gap: 0;
    overflow-y: auto;
    border-top: 2px solid var(--gold);
  }
  .site-nav ul.is-open { display: flex; }
  .site-nav ul li { width: 100%; }
  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: 1rem;
    border-bottom: 1px solid var(--gray-100);
    width: 100%;
  }
  .site-nav a::after { display: none; }
  .nav-cta { text-align: center; margin-top: 1rem; }
  .nav-toggle { display: flex; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .practice-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand__name { white-space: normal; font-size: 1.05rem; }
  .dual-cta-band { grid-template-columns: 1fr; }
  .dual-cta-band__divider { height: 1px; width: 100%; }
  .capsule-bios { grid-template-columns: 1fr; }
  .capsule-bio { flex-direction: column; align-items: center; text-align: center; }

  .sticky-call-btn { display: block; }

  .hero-split { min-height: auto; }
  .hero-panel { padding: 3rem 1.5rem; min-height: 380px; }
  .page-hero { padding: 4rem 0 3rem; }
  .page-hero--injury::after, .page-hero--commercial::after { display: none; }

  .trust-band .container { flex-direction: column; gap: 2rem; text-align: center; }

  .stat-band .container { grid-template-columns: 1fr 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 440px; margin: 2.5rem auto 0; }

  .footer-legal-row { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { flex-wrap: wrap; }
  .cta-strip__actions { flex-direction: column; align-items: center; }
  .cta-strip--vosb-feature .container { flex-direction: column; gap: 2rem; text-align: center; }
  .cta-strip--vosb-feature .cta-strip__actions { justify-content: center; }
  .cta-strip--vosb-feature p { margin: 0 auto 2rem; }
}

@media (max-width: 480px) {
  :root { --section-pad: 48px; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-band .container { grid-template-columns: 1fr; }
  .article-grid { grid-template-columns: 1fr; }
  .cookie-banner { padding: 1rem; }
  .hero-panel { min-height: 320px; padding: 2rem 1.25rem; }
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
}

/* === PRINT === */
@media print {
  .site-header, .site-footer, .cookie-banner, .sticky-call-btn, .nav-toggle { display: none !important; }
  body { font-size: 12pt; }
  a { color: inherit; }
}
