/*
Theme Name:     Roth Law
Theme URI:      https://rothandroth.net
Author:         Roth Law Network
Author URI:     https://rothandroth.net
Description:    Custom WordPress theme for rothandroth.net — Law Offices of Roth & Roth. Editorial navy/gold law-firm aesthetic. Multi-page SEO architecture with JSON-LD schema, breadcrumbs, internal-link clusters, and accessibility built in.
Version:        0.2.0
Requires at least: 6.5
Requires PHP:   8.1
License:        Proprietary
License URI:    https://rothandroth.net
Tags:           law-firm, custom-theme, editorial, navy
Text Domain:    roth-law
*/

/* ============================================================
   DESIGN TOKENS
   Locked from live rothandroth.net (2026-05-22)
   ============================================================ */
:root {
  /* Navy palette */
  --navy-900: #0A1023;
  --navy-800: #141E36;
  --navy-700: #1E2A4A;
  --navy-600: #2A3A66;

  /* Gold palette */
  --gold-400: #D9B48A;
  --gold-500: #C9A27B;
  --gold-600: #A88458;

  /* Neutrals */
  --ivory: #F7F4ED;
  --ivory-warm: #EDE7D9;
  --charcoal: #2B2B33;
  --charcoal-soft: #4A4A57;
  --line: rgba(30, 42, 74, 0.12);
  --line-on-dark: rgba(201, 162, 123, 0.32);

  /* Semantic */
  --bg-page: var(--ivory);
  --bg-dark: var(--navy-900);
  --text-on-light: var(--charcoal);
  --text-on-dark: var(--ivory);
  --accent: var(--gold-500);
  --accent-hover: var(--gold-600);

  /* Type */
  --font-display: "Cormorant Garamond", "Trajan Pro", Georgia, serif;
  --font-body: "Inter", -apple-system, "Helvetica Neue", Arial, sans-serif;

  /* Type scale (modular, fluid) */
  --fs-xs: clamp(0.75rem, 0.7vw + 0.6rem, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.4vw + 0.8rem, 1rem);
  --fs-base: 1rem;
  --fs-lg: clamp(1.125rem, 0.4vw + 1rem, 1.25rem);
  --fs-xl: clamp(1.375rem, 1vw + 1.1rem, 1.75rem);
  --fs-2xl: clamp(1.75rem, 2vw + 1.2rem, 2.5rem);
  --fs-3xl: clamp(2.25rem, 3vw + 1.4rem, 3.5rem);
  --fs-4xl: clamp(3rem, 5vw + 1.6rem, 5rem);

  /* Spacing scale */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-8: 3rem;
  --sp-10: 4rem;
  --sp-12: 6rem;
  --sp-16: 8rem;

  /* Layout */
  --container: 1200px;
  --container-narrow: 880px;
  --container-wide: 1440px;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* Motion */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 220ms;
}

/* ============================================================
   RESET + BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.6;
  color: var(--text-on-light);
  background: var(--bg-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { max-width: 100%; height: auto; display: block; }

/* Visually-hidden but available to screen readers + Google/AI crawlers.
   Used on the homepage H1 (whose visible expression is the wordmark graphic). */
.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link.sr-only:focus,
.skip-link:focus-visible {
  position: fixed !important;
  top: var(--sp-3); left: var(--sp-3);
  width: auto; height: auto;
  clip: auto;
  padding: var(--sp-3) var(--sp-5);
  background: var(--gold-500);
  color: var(--navy-900);
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-sm);
  z-index: 1000;
}

/* Sticky-nav shadow on scroll (toggled by site.js) */
.nav.is-scrolled {
  box-shadow: 0 2px 12px rgba(10, 16, 35, 0.08);
}

/* When the mobile menu is open, lock body scroll */
body.nav-open { overflow: hidden; }

a {
  color: var(--navy-700);
  text-decoration: underline;
  text-decoration-color: rgba(201, 162, 123, 0.5);
  text-underline-offset: 3px;
  transition: color var(--duration) var(--ease);
}
a:hover, a:focus { color: var(--accent-hover); }
a:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 var(--sp-4);
  letter-spacing: 0.01em;
}
h1 { font-size: var(--fs-3xl); }
h2 { font-size: var(--fs-2xl); }
h3 { font-size: var(--fs-xl); }
h4 { font-size: var(--fs-lg); }

p { margin: 0 0 var(--sp-4); }

em, i {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--accent);
}

::selection { background: var(--gold-400); color: var(--navy-900); }

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container-narrow {
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container-wide {
  max-width: var(--container-wide);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}

.section, .s {
  padding-block: var(--sp-12);
}
.s-dark {
  background: var(--bg-dark);
  color: var(--text-on-dark);
}
.s-dark h1, .s-dark h2, .s-dark h3, .s-dark h4 { color: var(--text-on-dark); }
.s-dark a { color: var(--gold-400); text-decoration-color: var(--gold-500); }
.s-dark a:hover { color: var(--ivory); }

.eyebrow {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: var(--sp-3);
  display: inline-block;
}

.lead {
  font-size: var(--fs-lg);
  line-height: 1.55;
  color: var(--charcoal-soft);
  max-width: 60ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 2rem;
  font-family: var(--font-body);
  font-size: var(--fs-sm);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid currentColor;
  cursor: pointer;
  background: transparent;
  color: inherit;
  transition: all var(--duration) var(--ease);
}
.btn-primary {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--navy-900);
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--ivory);
}
.btn-ghost-light {
  color: var(--ivory);
  border-color: var(--gold-500);
}
.btn-ghost-light:hover { background: var(--gold-500); color: var(--navy-900); }
.btn-ghost-dark {
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-ghost-dark:hover { background: var(--navy-900); color: var(--ivory); }

/* ============================================================
   TOP UTILITY BAR + HEADER NAV
   ============================================================ */
.topbar {
  background: var(--navy-900);
  color: var(--ivory);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.6rem 0;
}
.topbar .container {
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
  text-align: center;
}
.topbar strong { color: var(--gold-400); font-weight: 600; }
.topbar a { color: var(--ivory); text-decoration: none; font-weight: 500; }

.nav {
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  padding-block: var(--sp-4);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--navy-900);
}
.nav-brand .helmet { width: 36px; height: 36px; fill: var(--gold-500); }
.nav-brand .wordmark {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  letter-spacing: 0.12em;
  color: var(--navy-900);
  line-height: 1;
}
.nav-brand .wordmark small {
  display: block;
  font-size: 0.65em;
  letter-spacing: 0.2em;
  color: var(--gold-600);
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  text-decoration: none;
  color: var(--charcoal);
  font-size: var(--fs-sm);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--duration) var(--ease);
}
.nav-menu a:hover, .nav-menu a:focus, .nav-menu .current-menu-item a {
  color: var(--accent-hover);
}
.nav-cta {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: right;
}
.nav-cta .label {
  font-size: var(--fs-xs);
  color: var(--charcoal-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.nav-cta .phone {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--gold-600);
  text-decoration: none;
  letter-spacing: 0.05em;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: var(--sp-2);
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav.open .nav-menu {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 100% 0 auto 0;
    background: var(--ivory);
    padding: var(--sp-5);
    gap: var(--sp-4);
    border-bottom: 1px solid var(--line);
  }
}

/* ============================================================
   HOMEPAGE — HERO
   ============================================================ */
.hero {
  background: var(--navy-900);
  background-image:
    radial-gradient(circle at 20% 10%, rgba(201, 162, 123, 0.08), transparent 60%),
    radial-gradient(circle at 80% 90%, rgba(201, 162, 123, 0.05), transparent 50%);
  color: var(--ivory);
  text-align: center;
  padding-block: var(--sp-16);
  position: relative;
  overflow: hidden;
}
.hero-eyebrow {
  font-size: var(--fs-xs);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-400);
  font-weight: 500;
  margin-bottom: var(--sp-8);
}
.hero-wordmark {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-6);
  margin-bottom: var(--sp-6);
}
.hero-wordmark .helmet { width: 120px; height: 120px; fill: var(--gold-500); }
.hero-wordmark .divider { width: 2px; height: 140px; background: var(--gold-500); opacity: 0.7; }
.hero-wordmark .text {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--gold-400);
  line-height: 0.95;
  letter-spacing: 0.05em;
  text-align: left;
}
.hero-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-2xl);
  color: var(--ivory);
  margin-bottom: var(--sp-6);
}
.hero-body {
  max-width: 56ch;
  margin-inline: auto;
  color: rgba(247, 244, 237, 0.85);
  margin-bottom: var(--sp-8);
}
.hero-ctas {
  display: flex;
  gap: var(--sp-4);
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   PILLARS / TRUST BAND
   ============================================================ */
.pillars {
  background: var(--navy-800);
  color: var(--ivory);
  padding-block: var(--sp-8);
  border-block: 1px solid var(--line-on-dark);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  text-align: center;
}
.pillar-num {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  color: var(--gold-400);
  display: block;
  line-height: 1;
  margin-bottom: var(--sp-2);
}
.pillar-label {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory);
  opacity: 0.85;
}
@media (max-width: 768px) {
  .pillars-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   STANDARD SECTION GRID + HEADER
   ============================================================ */
.section-head {
  text-align: center;
  max-width: 60ch;
  margin: 0 auto var(--sp-10);
}
.section-head h2 { margin-bottom: var(--sp-4); }
.section-head .lead { margin-inline: auto; }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 900px) { .two-col { grid-template-columns: 1fr; } }

/* ============================================================
   ATTORNEY CARDS
   ============================================================ */
.attorney-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}
@media (max-width: 900px) { .attorney-grid { grid-template-columns: 1fr; } }

.attorney-card {
  background: var(--ivory-warm);
  padding: var(--sp-8);
  border: 1px solid var(--line);
}
.attorney-card h3 { color: var(--navy-800); margin-bottom: var(--sp-1); }
.attorney-card .role {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-5);
  display: block;
}
.attorney-card ul {
  list-style: none;
  padding: 0;
  margin: var(--sp-5) 0 0;
}
.attorney-card ul li {
  padding: var(--sp-2) 0;
  border-top: 1px solid var(--line);
  font-size: var(--fs-sm);
}

/* ============================================================
   PRACTICE AREAS GRID (dark section)
   ============================================================ */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 900px) { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .practice-grid { grid-template-columns: 1fr; } }

.practice-card {
  padding: var(--sp-6);
  background: var(--navy-800);
  border: 1px solid var(--line-on-dark);
  transition: all var(--duration) var(--ease);
}
.practice-card:hover {
  background: var(--navy-700);
  border-color: var(--gold-500);
  transform: translateY(-2px);
}
.practice-card h3 { color: var(--gold-400); }
.practice-card p { color: rgba(247, 244, 237, 0.8); margin-bottom: var(--sp-4); }
.practice-card a {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

/* ============================================================
   QUOTE BAND
   ============================================================ */
.quote-band {
  background: var(--ivory-warm);
  padding-block: var(--sp-12);
  text-align: center;
}
.quote-band blockquote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: var(--fs-2xl);
  color: var(--navy-800);
  max-width: 60ch;
  margin: 0 auto;
  line-height: 1.4;
  position: relative;
}
.quote-band blockquote::before { content: "\201C"; color: var(--gold-500); font-size: 4em; line-height: 0.1; position: absolute; top: 0.3em; left: -0.6em; }
.quote-band cite {
  display: block;
  margin-top: var(--sp-6);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-style: normal;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list { max-width: 70ch; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding-block: var(--sp-5);
}
.faq-item summary {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  color: var(--navy-800);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--sp-4);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  color: var(--gold-500);
  font-size: 1.5em;
  font-family: var(--font-body);
  transition: transform var(--duration) var(--ease);
}
.faq-item[open] summary::after { content: "\2013"; }
.faq-item p { margin-top: var(--sp-4); color: var(--charcoal-soft); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  background: var(--navy-900);
  color: var(--ivory);
  padding-block: var(--sp-12);
}
.contact h2 { color: var(--ivory); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-10);
  align-items: start;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-info dl {
  margin: 0;
}
.contact-info dt {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-top: var(--sp-5);
  margin-bottom: var(--sp-1);
}
.contact-info dd {
  margin: 0;
  color: var(--ivory);
}

.form-field {
  display: block;
  margin-bottom: var(--sp-5);
}
.form-field label {
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-400);
  display: block;
  margin-bottom: var(--sp-2);
}
.form-field input,
.form-field textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--gold-500);
  padding: var(--sp-3) 0;
  color: var(--ivory);
  font-family: var(--font-body);
  font-size: var(--fs-base);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-bottom-color: var(--gold-400);
}

/* ============================================================
   NETWORK BAND
   ============================================================ */
.network-band {
  background: var(--ivory-warm);
  padding-block: var(--sp-10);
  text-align: center;
}
.network-band .eyebrow { color: var(--gold-600); }
.network-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}
@media (max-width: 768px) { .network-band-grid { grid-template-columns: repeat(2, 1fr); } }
.network-band-grid a {
  text-decoration: none;
  color: var(--navy-800);
  font-family: var(--font-display);
  padding: var(--sp-4);
  border: 1px solid var(--line);
  background: var(--ivory);
  transition: all var(--duration) var(--ease);
}
.network-band-grid a:hover { border-color: var(--gold-500); transform: translateY(-2px); }
.network-band-grid .domain {
  display: block;
  font-size: var(--fs-lg);
  color: var(--navy-900);
  margin-bottom: var(--sp-1);
}
.network-band-grid .role {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal-soft);
}

/* ============================================================
   FOOTER
   ============================================================ */
.ft {
  background: var(--navy-900);
  color: var(--ivory);
  padding-block: var(--sp-10);
  border-top: 1px solid var(--line-on-dark);
}
.ft-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  margin-bottom: var(--sp-8);
}
@media (max-width: 900px) { .ft-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-6); } }
@media (max-width: 600px) { .ft-grid { grid-template-columns: 1fr; } }

.ft h4 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}
.ft ul { list-style: none; padding: 0; margin: 0; }
.ft ul li { padding: var(--sp-1) 0; }
.ft a {
  color: var(--ivory);
  text-decoration: none;
  font-size: var(--fs-sm);
}
.ft a:hover { color: var(--gold-400); }
.ft-bottom {
  padding-top: var(--sp-6);
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  justify-content: space-between;
  font-size: var(--fs-xs);
  color: rgba(247, 244, 237, 0.6);
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ============================================================
   PAGE — DEFAULT
   ============================================================ */
.page-hero {
  background: var(--navy-900);
  color: var(--ivory);
  padding-block: var(--sp-10);
  text-align: center;
}
.page-hero h1 { color: var(--ivory); margin-bottom: var(--sp-3); }
.page-hero .lead { color: rgba(247, 244, 237, 0.85); margin-inline: auto; }

.breadcrumbs {
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-5);
}
.breadcrumbs a { color: inherit; text-decoration: none; }
.breadcrumbs a:hover { color: var(--ivory); }
.breadcrumbs .sep { opacity: 0.4; padding: 0 var(--sp-2); }

.prose {
  max-width: var(--container-narrow);
  margin-inline: auto;
}
.prose h2 { margin-top: var(--sp-10); color: var(--navy-800); }
.prose h3 { margin-top: var(--sp-6); color: var(--navy-700); }
.prose ul, .prose ol { padding-left: 1.5em; line-height: 1.7; }
.prose ul li { padding: var(--sp-1) 0; }

/* ============================================================
   PRACTICE AREA / CITY / FAQ CHILD TEMPLATES
   ============================================================ */
.pa-cta {
  background: var(--navy-700);
  color: var(--ivory);
  padding: var(--sp-8);
  text-align: center;
  margin-block: var(--sp-10);
}
.pa-cta h3 { color: var(--gold-400); }

.city-meta {
  background: var(--ivory-warm);
  padding: var(--sp-6);
  border-left: 4px solid var(--gold-500);
  margin-block: var(--sp-6);
}
.city-meta dt {
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 600;
}
.city-meta dd { margin: 0 0 var(--sp-3); }

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-4);
  margin-top: var(--sp-8);
}
@media (max-width: 768px) { .related-grid { grid-template-columns: 1fr; } }
.related-grid a {
  padding: var(--sp-4);
  background: var(--ivory-warm);
  text-decoration: none;
  color: var(--navy-800);
  border: 1px solid var(--line);
  font-family: var(--font-display);
  transition: all var(--duration) var(--ease);
}
.related-grid a:hover { border-color: var(--gold-500); }

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .nav, .topbar, .ft, .contact, .network-band, .pa-cta { display: none; }
  body { background: white; color: black; }
  a { color: black; text-decoration: none; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   v0.3.0 — real logo + attorney photos (patched 2026-05-27)
   ============================================================ */
.brand-logo {
	height: 44px;
	width: auto;
	display: block;
	object-fit: contain;
}
.hero-logo {
	max-width: 380px;
	width: 100%;
	height: auto;
	margin: var(--sp-6) auto var(--sp-4);
	display: block;
	object-fit: contain;
}
.attorney-photo {
	width: 100%;
	max-width: 240px;
	aspect-ratio: 4 / 5;
	object-fit: cover;
	object-position: center top;
	border-radius: 4px;
	margin: 0 auto var(--sp-5);
	display: block;
	border: 2px solid var(--gold-500);
	box-shadow: 0 4px 14px rgba(10, 16, 35, .12);
}
.attorney-card {
	text-align: center;
}
.attorney-card h3,
.attorney-card .role,
.attorney-card p,
.attorney-card ul {
	text-align: left;
}
.attorney-bio-photo img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	border: 2px solid var(--gold-500);
	box-shadow: 0 4px 14px rgba(10, 16, 35, .12);
}
