/* ============================================================
   Prescott & Hargrove PLLC — Master Stylesheet
   Strategic Dispute Resolution & Civil Litigation
   ============================================================ */

/* --- Custom Properties --- */
:root {
  --navy: #1B2A4A;
  --navy-dark: #0F1B33;
  --navy-light: #2A3F6B;
  --gold: #C9A96E;
  --gold-dark: #A8874D;
  --gold-light: #D4BC8E;
  --text: #1A1A2E;
  --text-secondary: #4A4A5A;
  --text-light: #6B6B7B;
  --white: #FFFFFF;
  --bg-alt: #F7F8FA;
  --bg-warm: #FAF9F7;
  --border: #E2E4E8;
  --border-light: #F0F1F3;
  --shadow-sm: 0 1px 3px rgba(15, 27, 51, 0.06);
  --shadow-md: 0 4px 12px rgba(15, 27, 51, 0.08);
  --shadow-lg: 0 8px 30px rgba(15, 27, 51, 0.10);
  --shadow-xl: 0 16px 50px rgba(15, 27, 51, 0.12);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --font-heading: 'Cormorant Garant', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --container: 1200px;
  --container-narrow: 800px;
  --container-wide: 1400px;
  --header-height: 88px;
  --transition: 0.3s ease;
}

/* --- Reset --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

/* --- Typography --- */
.display { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; letter-spacing: -0.01em; }
h1, .h1 { font-size: clamp(2rem, 4vw, 3rem); }
h2, .h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3, .h3 { font-size: clamp(1.3rem, 2.5vw, 1.75rem); }
h4, .h4 { font-size: 1.25rem; }
h5, .h5 { font-size: 1.1rem; }
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.text-xs { font-size: 0.75rem; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-secondary { color: var(--text-secondary); }
.text-light { color: var(--text-light); }
.text-white { color: var(--white); }
.text-center { text-align: center; }
.text-upper {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
}
.lead {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 2rem;
}
.container--narrow { max-width: var(--container-narrow); }
.container--wide { max-width: var(--container-wide); }
.section {
  padding: 5rem 0;
}
.section--alt { background: var(--bg-alt); }
.section--warm { background: var(--bg-warm); }
.section--navy {
  background: var(--navy);
  color: var(--white);
}
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy .lead, .section--navy p { color: rgba(255,255,255,0.8); }
.section-label {
  display: inline-block;
  margin-bottom: 1rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header p {
  margin-top: 1rem;
  max-width: 600px;
}
.section-header.text-center p {
  margin-left: auto;
  margin-right: auto;
}
.grid {
  display: grid;
  gap: 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); }
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-between { align-items: center; justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }

/* --- Header & Navigation --- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
  background: transparent;
}
.header.scrolled {
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.header.scrolled .nav-link { color: var(--text); }
.header.scrolled .nav-link:hover { color: var(--gold); }
.header.scrolled .logo { color: var(--navy); }
.header.scrolled .logo-sub { color: var(--text-secondary); }
.header--solid {
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.header--solid .nav-link { color: var(--text); }
.header--solid .nav-link:hover { color: var(--gold); }
.header--solid .logo { color: var(--navy); }
.header--solid .logo-sub { color: var(--text-secondary); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  transition: color var(--transition);
}
.logo-img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-img--footer {
  width: 64px;
  height: 64px;
}
.logo-sub {
  display: block;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  transition: color var(--transition);
  margin-top: 2px;
}
.nav { display: flex; align-items: center; gap: 0.4rem; }
.nav-link {
  display: inline-block;
  padding: 0.5rem 0.95rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  transition: color var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--gold); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  margin-left: 1rem;
}
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  z-index: 1001;
}
.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
}
.header.scrolled .mobile-toggle span,
.header--solid .mobile-toggle span { background: var(--navy); }
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  height: 100vh;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  padding: 6rem 2rem 2rem;
  transition: right var(--transition);
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(15,27,51,0.5);
  z-index: 998;
  opacity: 0;
  transition: opacity var(--transition);
}
.mobile-overlay.active { opacity: 1; }
.mobile-nav-link {
  display: block;
  padding: 0.85rem 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border-light);
  transition: color var(--transition);
}
.mobile-nav-link:hover { color: var(--gold); }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  text-align: center;
}
.btn--primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
}
.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.btn--outline-gold:hover {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn--navy {
  background: var(--navy);
  color: var(--white);
}
.btn--navy:hover {
  background: var(--navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 0.95rem; }
.btn--full { width: 100%; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-light) 100%);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
  z-index: 0;
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { display: none; }
}
@media (max-width: 768px) {
  .hero-video { display: none; }
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201,169,110,0.06) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(42,63,107,0.3) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to top, rgba(15,27,51,0.4), transparent);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 750px;
  padding: 2rem 0;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero-label::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-title {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.75);
  margin-bottom: 2.5rem;
  max-width: 600px;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
/* --- Partner Logo Ticker --- */
.ticker-section {
  padding: 2.5rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.ticker-label {
  text-align: center;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.ticker-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}
.ticker-track {
  display: flex;
  align-items: center;
  gap: 4rem;
  width: max-content;
  animation: ticker 40s linear infinite;
}
.ticker-track:hover {
  animation-play-state: paused;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  opacity: 0.55;
  transition: opacity var(--transition);
  cursor: default;
}
.ticker-item:hover {
  opacity: 1;
}
.ticker-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.ticker-name--sans {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.ticker-name--light {
  font-weight: 500;
}
.ticker-loc {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--text-light);
  white-space: nowrap;
}
.ticker-sep {
  flex-shrink: 0;
  width: 1px;
  height: 32px;
  background: var(--border);
}
@media (max-width: 768px) {
  .ticker-track { gap: 2.5rem; animation-duration: 25s; }
  .ticker-name { font-size: 1rem; }
  .ticker-name--sans { font-size: 0.85rem; }
}

.hero-intl-card:hover {
  background: rgba(255,255,255,0.1) !important;
  border-color: rgba(201,169,110,0.3) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.hero-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-bar-inner {
  display: flex;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-stat {
  flex: 1;
  padding: 1.5rem 2rem;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.hero-stat:last-child { border-right: none; }
.hero-stat-number {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 0.35rem;
}

/* --- Page Hero (interior pages) --- */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  position: relative;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(42,63,107,0.3), transparent 60%);
  pointer-events: none;
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero .hero-label { margin-bottom: 1rem; }
.page-hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}
.page-hero .lead {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
}
.breadcrumb {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,0.3); }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: all var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateY(-3px);
}
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
  color: var(--gold);
}
.card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
.card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap var(--transition);
}
.card-link:hover { gap: 0.7rem; }
.card-link svg { width: 14px; height: 14px; }

/* --- Attorney/Team --- */
.attorney-card {
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}
.attorney-photo {
  flex-shrink: 0;
  width: 280px;
  height: 350px;
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--border) 100%);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  overflow: hidden;
}
.attorney-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.attorney-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
}
.attorney-title {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
  margin-bottom: 1.25rem;
}
.attorney-bio p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.credential-list {
  margin-top: 1.5rem;
}
.credential-list h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}
.credential-list ul {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.credential-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  padding-left: 1rem;
  position: relative;
}
.credential-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--gold-light);
  line-height: 1;
  opacity: 0.4;
}
.testimonial-text {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--navy);
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-detail {
  font-size: 0.8rem;
  color: var(--text-light);
}
.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font-heading);
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  transition: color var(--transition);
  gap: 1rem;
}
.faq-question:hover { color: var(--gold-dark); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1rem;
  transition: transform var(--transition);
  color: var(--gold);
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--text-secondary);
  line-height: 1.75;
  font-size: 0.95rem;
}

/* --- Forms --- */
.form-group {
  margin-bottom: 1.5rem;
}
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.form-label .required {
  color: #c0392b;
  margin-left: 0.15rem;
}
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--white);
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.1);
}
.form-textarea {
  resize: vertical;
  min-height: 140px;
}
.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A4A5A' d='M6 8.825L.35 3.175l.7-.7L6 7.425l4.95-4.95.7.7z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-error {
  font-size: 0.8rem;
  color: #c0392b;
  margin-top: 0.35rem;
  display: none;
}
.form-group.error .form-input,
.form-group.error .form-textarea,
.form-group.error .form-select {
  border-color: #c0392b;
}
.form-group.error .form-error {
  display: block;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.form-note {
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.6;
}
.form-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 2rem 0;
}
.upload-area {
  border: 2px dashed var(--border);
  border-radius: var(--radius-md);
  padding: 2rem;
  text-align: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.upload-area:hover { border-color: var(--gold); }
.upload-area p { color: var(--text-light); font-size: 0.9rem; }

/* --- Process Steps --- */
.process-step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem 0;
}
.process-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  border-radius: 50%;
}
.process-content h4 {
  margin-bottom: 0.5rem;
}
.process-content p {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* --- Results / Representative Matters --- */
.result-item {
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
}
.result-item:last-child { border-bottom: none; }
.result-tag {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: var(--bg-alt);
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.result-item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.result-item p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
}
.case-detail { max-height: 0; overflow: hidden; transition: max-height 0.5s ease; }
.case-open { max-height: 600px !important; }

/* --- Resource / Article Cards --- */
.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
.article-thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  position: relative;
}
.article-thumb-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  padding: 0.3rem 0.75rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 2px;
}
.article-body {
  padding: 1.75rem;
}
.article-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.article-card:hover h3 { color: var(--gold-dark); }
.article-body p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.article-meta {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Article Content (long-form) --- */
.article-content {
  max-width: 740px;
  margin: 0 auto;
}
.article-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-size: 1.6rem;
}
.article-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.article-content p {
  margin-bottom: 1.25rem;
  color: var(--text-secondary);
}
.article-content ul,
.article-content ol {
  margin-bottom: 1.25rem;
  padding-left: 1.5rem;
}
.article-content li {
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
  list-style: disc;
}
.article-content ol li { list-style: decimal; }
.article-content blockquote {
  margin: 2rem 0;
  padding: 1.5rem 2rem;
  border-left: 3px solid var(--gold);
  background: var(--bg-warm);
  font-style: italic;
  color: var(--text-secondary);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-sidebar {
  position: sticky;
  top: 6rem;
}
.sidebar-card {
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 1.5rem;
}
.sidebar-card h4 {
  font-size: 0.85rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 1rem;
}
.sidebar-card .footer-links a {
  color: var(--text-secondary);
}
.sidebar-card .footer-links a:hover {
  color: var(--gold-dark);
}

/* --- Contact Info Block --- */
.contact-block {
  margin-bottom: 2rem;
}
.contact-block h4 {
  font-size: 0.8rem;
  font-family: var(--font-body);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-light);
  margin-bottom: 0.75rem;
}
.contact-block p, .contact-block a {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}
.contact-block a:hover { color: var(--gold); }
.contact-icon-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border-radius: var(--radius-sm);
  color: var(--gold);
  font-size: 0.9rem;
}
.map-placeholder {
  width: 100%;
  height: 260px;
  background: var(--bg-alt);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 0.85rem;
}

/* --- CTA Section --- */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(201,169,110,0.05), transparent 70%);
  pointer-events: none;
}
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.cta-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}
.cta-content p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 2rem;
}

/* --- Gold Divider --- */
.gold-line {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin-bottom: 1.5rem;
}
.gold-line--center { margin-left: auto; margin-right: auto; }

/* --- Footer --- */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding-top: 4rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand .logo {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--white);
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: rgba(255,255,255,0.6);
}
.footer h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.25rem;
}
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p, .footer-contact a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
}
.footer-contact a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1.75rem 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
}
.footer-disclaimer {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 700px;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-shrink: 0;
}
.footer-legal-links a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  transition: color var(--transition);
  white-space: nowrap;
}
.footer-legal-links a:hover { color: var(--gold); }

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.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; }

/* --- Utility --- */
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.pt-0 { padding-top: 0; }
.pb-0 { padding-bottom: 0; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}
.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem 0;
}

/* --- Trust Bar --- */
.trust-bar {
  padding: 2rem 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  white-space: nowrap;
}
.trust-item svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

/* --- Practice Area Detail Layout --- */
.pa-content {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 4rem;
  align-items: start;
}
.pa-main h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}
.pa-main h2:first-child { margin-top: 0; }
.pa-main p {
  color: var(--text-secondary);
  margin-bottom: 1rem;
}
.pa-main ul {
  margin-bottom: 1.5rem;
  padding-left: 1.25rem;
}
.pa-main li {
  list-style: disc;
  color: var(--text-secondary);
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}
.evidence-checklist {
  background: var(--bg-warm);
  border-radius: var(--radius-md);
  padding: 2rem;
  margin: 2rem 0;
}
.evidence-checklist h3 {
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.evidence-checklist li {
  list-style: none;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.6rem;
  color: var(--text-secondary);
}
.evidence-checklist li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero-intl-card { display: none !important; }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .attorney-card { flex-direction: column; gap: 2rem; }
  .attorney-photo { width: 100%; max-width: 300px; height: 320px; }
  .pa-content { grid-template-columns: 1fr; }
  .hero-bar-inner { flex-wrap: wrap; }
  .hero-stat { flex: 1 1 50%; }
}

@media (max-width: 768px) {
  :root { --header-height: 70px; }
  .section { padding: 3.5rem 0; }
  .container { padding: 0 1.25rem; }
  .nav { display: none; }
  .nav-cta.desktop-only { display: none; }
  .mobile-toggle { display: flex; }
  .mobile-menu { display: block; }
  .mobile-overlay { display: block; }
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 90vh; }
  .hero-title { font-size: clamp(1.8rem, 6vw, 2.5rem); }
  .hero-stat { flex: 1 1 100%; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); padding: 1rem; }
  .hero-stat:last-child { border-bottom: none; }
  .hero-bar-inner { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; }
  .page-hero { padding: 8rem 0 3rem; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
  .trust-items { gap: 1.5rem; }
}

/* --- Floating CTA --- */
.floating-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(15,27,51,0.2);
  text-decoration: none;
  z-index: 900;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all var(--transition);
}
.floating-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.floating-cta:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(15,27,51,0.25);
}

/* --- Back to Top --- */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  color: var(--navy);
}
.back-to-top.visible {
  opacity: 1;
  pointer-events: auto;
}
.back-to-top:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

@media (max-width: 768px) {
  .floating-cta span { display: none; }
  .floating-cta { padding: 0.9rem; border-radius: 50%; }
  .back-to-top { bottom: 1.25rem; left: 1.25rem; width: 36px; height: 36px; }
}

/* --- Print --- */
@media print {
  .header, .footer, .cta-section, .mobile-menu, .mobile-overlay, .floating-cta, .back-to-top { display: none; }
  .hero { min-height: auto; padding: 2rem 0; }
  body { font-size: 12pt; color: #000; }
  .section { padding: 1rem 0; }
}
