/* VRM Lawyers — shared styles (converted from Tailwind + shadcn theme) */
:root {
  --navy: #0B1F3F;
  --gold: #C8A45C;
  --gold-hover: #D4B76A;
  --white: #FFFFFF;
  --ivory: #F5F2EC;
  --text-primary: #1A1A2E;
  --text-secondary: #6B7280;
  --border-light: #E5E7EB;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: auto; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--gold); color: var(--navy); }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-display); margin: 0; }
p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 4px; }

/* Layout primitives */
.section-padding { padding: 100px 5vw; }
.content-max-width { max-width: 1280px; margin: 0 auto; }
.text-center { text-align: center; }

/* Label style */
.label-style {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-navy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  text-align: center;
}
.btn-primary { background: var(--gold); color: var(--navy); }
.btn-primary:hover { background: var(--gold-hover); }
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 30px;
}
.btn-secondary:hover { background: var(--white); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { opacity: 0.9; }
.btn-outline-gold {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 32px;
  font-size: 14px; font-weight: 600;
  border: 1px solid var(--gold); color: var(--gold);
  background: transparent;
  transition: all 0.3s ease;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }

.btn-outline-navy {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; font-size: 14px; font-weight: 600;
  border: 2px solid var(--navy); color: var(--navy);
  background: transparent;
}
.btn-outline-navy:hover { background: var(--navy); color: var(--white); }

/* Link with underline animation */
.link-underline { position: relative; display: inline-block; }
.link-underline::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease-out;
}
.link-underline:hover::after { transform: scaleX(1); }

/* ====== STICKY BAR ====== */
.sticky-bar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 40px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  padding: 0 16px;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.sticky-bar.show { transform: translateY(0); }
.sticky-bar p { color: var(--navy); font-size: 14px; font-weight: 600; }
.sticky-bar a { color: var(--navy); text-decoration: underline; }
.sticky-bar .close-btn {
  position: absolute; right: 16px;
  background: none; border: none; padding: 4px;
  color: var(--navy);
  display: flex; align-items: center;
}

/* ====== HEADER ====== */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 72px;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background 0.3s ease, border-color 0.3s ease, margin-top 0.3s ease;
}
.site-header.transparent {
  background: transparent;
  border-bottom: none;
}
.site-header.with-sticky { margin-top: 40px; }

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%;
  padding: 0 5vw;
}
.brand {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  transition: color 0.3s ease;
}
.site-header.transparent .brand { color: var(--white); }

.main-nav { display: none; align-items: center; gap: 32px; }
.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-primary);
  transition: color 0.3s ease;
}
.main-nav a.active { color: var(--gold); }
.site-header.transparent .main-nav a:not(.active) { color: var(--white); }

.header-cta { display: none; align-items: center; gap: 16px; }
.header-cta .phone {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500;
  color: var(--text-primary);
}
.site-header.transparent .header-cta .phone { color: var(--white); }
.header-cta .btn-primary { padding: 10px 22px; font-size: 14px; }

.hamburger {
  background: none; border: none; padding: 8px;
  color: var(--navy);
  display: flex; align-items: center;
}
.site-header.transparent .hamburger { color: var(--white); }

.header-spacer { height: 72px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
  background: var(--navy);
  display: none;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 32px;
  z-index: 999;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--white);
}
.mobile-menu a.active { color: var(--gold); }
.mobile-menu .phone-mobile {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--gold); font-size: 18px;
}

@media (min-width: 1024px) {
  .main-nav, .header-cta { display: flex; }
  .hamburger { display: none; }
}

/* ====== HERO (homepage) ====== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 1; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,31,63,0.5) 0%, rgba(11,31,63,0.75) 100%);
}
.hero-content {
  position: absolute; bottom: 15vh; left: 0; right: 0;
  padding: 0 5vw;
  z-index: 10;
}
.hero-content .inner { max-width: 700px; }
.hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-top: 16px;
}
.hero .lede {
  margin-top: 16px;
  color: rgba(255,255,255,0.85);
  font-size: clamp(16px, 1.5vw, 18px);
  max-width: 540px;
  line-height: 1.7;
}
.hero .cta-row {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 32px;
}
.hero .trust-row {
  display: flex; flex-wrap: wrap;
  column-gap: 32px; row-gap: 12px;
  margin-top: 40px;
}
.hero .trust-item {
  display: inline-flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}
.hero .trust-item svg { color: var(--gold); }

.scroll-indicator {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  z-index: 10;
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* ====== PAGE HERO (interior) ====== */
.page-hero {
  background: var(--navy);
  min-height: 45vh;
  padding: 140px 5vw 60px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  letter-spacing: -0.01em;
  max-width: 800px;
}
.page-hero .label-style { margin-bottom: 16px; }
.page-hero .subtitle {
  margin-top: 16px;
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  max-width: 600px;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .current { color: var(--gold); }
.breadcrumb .sep { opacity: 0.5; }

/* ====== TRUST BAR ====== */
.trust-bar {
  padding: 40px 5vw;
  border-bottom: 1px solid var(--border-light);
}
.trust-bar .inner {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
  max-width: 1280px; margin: 0 auto;
  text-align: center;
}
.trust-bar .stat-value {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 56px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-bar .stat-label {
  margin-top: 8px;
  display: inline-block;
  color: var(--text-secondary);
}
@media (min-width: 768px) {
  .trust-bar .inner { grid-template-columns: repeat(4, 1fr); }
}

/* ====== ABOUT PREVIEW ====== */
.about-preview { background: var(--ivory); }
.about-preview .grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}
.about-preview h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-top: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
.about-preview p {
  margin-top: 16px;
  font-size: 18px;
  color: var(--text-primary);
  line-height: 1.7;
}
.about-preview img { width: 100%; object-fit: cover; aspect-ratio: 4 / 3; }
@media (min-width: 1024px) {
  .about-preview .grid { grid-template-columns: 55% 45%; gap: 64px; }
}

/* ====== PRACTICE AREAS (home & hub) ====== */
.practice-areas-home { background: var(--navy); }
.section-heading { text-align: center; margin-bottom: 48px; }
.section-heading h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-top: 16px;
  line-height: 1.2;
}
.section-heading h2.light { color: var(--white); }
.section-heading h2.dark { color: var(--text-primary); }
.section-heading .desc {
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  font-size: 16px;
}
.section-heading .desc.light { color: rgba(255,255,255,0.7); }
.section-heading .desc.dark { color: var(--text-secondary); }

/* Home carousel: horizontal scrollable cards */
.pa-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
.pa-carousel::-webkit-scrollbar { display: none; }
.pa-card-dark {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 320px;
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  transition: border-color 0.3s ease;
}
.pa-card-dark:hover { border-color: var(--gold); }
.pa-card-dark .icon-wrap {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(200,164,92,0.15);
  display: flex; align-items: center; justify-content: center;
}
.pa-card-dark .icon-wrap svg { color: var(--gold); }
.pa-card-dark h3 {
  font-size: 20px; font-weight: 600;
  color: var(--white);
  margin-top: 20px;
}
.pa-card-dark p {
  margin-top: 8px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.pa-card-dark .learn-more {
  display: inline-flex; align-items: center; gap: 4px;
  margin-top: 16px;
  color: var(--gold);
  font-size: 14px; font-weight: 500;
}
.pa-card-dark .learn-more:hover { text-decoration: underline; }

/* Practice Areas hub grid */
.pa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 640px) { .pa-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .pa-grid { grid-template-columns: repeat(4, 1fr); } }
.pa-card-light {
  display: block;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}
.pa-card-light:hover { border-color: var(--gold); }
.pa-card-light .icon-wrap {
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(200,164,92,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.pa-card-light .icon-wrap svg { color: var(--gold); }
.pa-card-light h3 {
  font-size: 18px; font-weight: 600;
  color: var(--text-primary);
}
.pa-card-light p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.pa-card-light .learn-more {
  display: inline-block;
  margin-top: 16px;
  color: var(--navy);
  font-size: 14px; font-weight: 500;
}

/* ====== ATTORNEYS (home) ====== */
.attorneys-home { background: var(--white); }
.attorneys-grid {
  max-width: 1080px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .attorneys-grid { grid-template-columns: repeat(3, 1fr); } }
.attorney-card img {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  filter: grayscale(100%);
  transition: filter 0.5s ease;
}
.attorney-card:hover img { filter: grayscale(0%); }
.attorney-card h3 {
  font-size: 20px; font-weight: 600;
  margin-top: 20px;
  color: var(--text-primary);
}
.attorney-card .title { margin-top: 4px; display: block; }
.attorney-card p {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.attorney-card .view-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 14px; font-weight: 500;
  color: var(--navy);
}

/* ====== TESTIMONIALS HOME (carousel) ====== */
.testimonials-home { background: var(--ivory); }
.testimonial-carousel {
  max-width: 800px; margin: 0 auto;
  text-align: center;
}
.testimonial-carousel .quote-icon { color: var(--gold); opacity: 0.3; margin: 0 auto 16px; }
.testimonial-slides { min-height: 220px; position: relative; }
.testimonial-slide { display: none; }
.testimonial-slide.active { display: block; animation: fadeIn 0.5s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.testimonial-slide .quote {
  font-family: var(--font-display);
  font-size: clamp(18px, 2vw, 22px);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}
.testimonial-slide .name { margin-top: 24px; font-size: 16px; font-weight: 600; color: var(--text-primary); }
.testimonial-slide .case-type { margin-top: 4px; display: block; }
.testimonial-slide .stars {
  display: flex; justify-content: center; gap: 4px;
  margin-top: 12px;
}
.stars svg { color: var(--gold); fill: var(--gold); }
.testimonial-nav {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  margin-top: 32px;
}
.testimonial-nav button.arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid var(--border-light);
  background: transparent;
  color: var(--text-secondary);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s ease;
}
.testimonial-nav button.arrow:hover { border-color: var(--gold); color: var(--gold); }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--border-light); border: none;
  transition: all 0.3s ease;
}
.testimonial-dots button.active { background: var(--gold); transform: scale(1.3); }

/* ====== CASE RESULTS ====== */
.case-results-home { background: var(--navy); }
.cr-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .cr-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .cr-grid { grid-template-columns: repeat(3, 1fr); } }
.cr-card-dark {
  padding: 32px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}
.cr-amount {
  font-family: var(--font-display);
  font-size: 32px; font-weight: 700;
  color: var(--gold);
}
.cr-card-dark .case-type { margin-top: 12px; font-size: 16px; font-weight: 500; color: var(--white); }
.cr-card-dark .desc { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.6); }

/* Full case results list */
.cr-list-item {
  padding: 32px 0;
  border-bottom: 1px solid var(--border-light);
}
.cr-list-item .header-row {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 16px;
}
.cr-list-item .amount {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: var(--gold);
}
.cr-list-item .year { color: var(--text-secondary); }
.cr-list-item .case-type { margin-top: 8px; font-size: 18px; font-weight: 500; color: var(--text-primary); }
.cr-list-item .desc { margin-top: 8px; font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

/* ====== FAQ ====== */
.faq-list { }
.faq-item {
  border-bottom: 1px solid var(--border-light);
  cursor: pointer;
}
.faq-item-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
}
.faq-item-header h3 {
  font-size: 17px; font-weight: 500;
  color: var(--text-primary);
  padding-right: 16px;
}
.faq-toggle {
  font-size: 22px; font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
}
.faq-item.open .faq-answer { max-height: 600px; opacity: 1; }
.faq-answer p {
  padding-bottom: 20px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* FAQ category tabs */
.faq-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px;
}
.faq-tab {
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  transition: all 0.2s ease;
}
.faq-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ====== CONTACT ====== */
.contact-home { background: var(--ivory); }
.contact-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { }
.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  margin-top: 16px;
  color: var(--text-primary);
  line-height: 1.2;
}
.contact-info .lede {
  margin-top: 16px;
  font-size: 16px;
  color: var(--text-secondary);
}
.contact-items { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.contact-items .row { display: flex; align-items: center; gap: 16px; }
.contact-items .row.start { align-items: flex-start; }
.contact-items svg { color: var(--gold); flex-shrink: 0; }
.contact-items a { font-size: 18px; font-weight: 500; color: var(--navy); }
.contact-items .addr, .contact-items .hrs { font-size: 16px; color: var(--text-secondary); }
.contact-form-wrap {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
}

/* Contact page cards */
.contact-cards { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px;
  background: var(--ivory);
}
.contact-card svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-card h4 { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.contact-card p { margin-top: 4px; font-size: 14px; color: var(--text-secondary); }
.contact-card a { display: block; margin-top: 4px; font-size: 14px; color: var(--navy); }
.contact-card .open247 { color: var(--gold); }

/* Contact form */
.contact-form-wrap .title { margin-bottom: 24px; }
.contact-form-wrap h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.contact-form-wrap .title p { margin-top: 4px; font-size: 14px; color: var(--text-secondary); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 16px; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1px solid var(--border-light);
  background: var(--white);
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: var(--gold); }
.contact-form textarea { resize: none; }
.contact-form .submit { width: 100%; }
.contact-form .disclaimer { font-size: 12px; text-align: center; color: var(--text-secondary); }
.form-success { text-align: center; padding: 48px 16px; }
.form-success .icon-circle {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(200,164,92,0.15);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success .icon-circle svg { color: var(--gold); }
.form-success h3 { font-size: 24px; font-weight: 700; color: var(--navy); }
.form-success p { margin-top: 8px; font-size: 16px; color: var(--text-secondary); }

/* ====== CTA BANNER ====== */
.cta-gold {
  background: var(--gold);
  padding: 60px 5vw;
  text-align: center;
}
.cta-gold h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--navy);
}
.cta-gold p { margin-top: 12px; font-size: 16px; color: rgba(11,31,63,0.8); }
.cta-gold .btn-navy {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 32px;
  font-size: 14px; font-weight: 600;
  background: var(--navy);
  color: var(--white);
  transition: opacity 0.3s ease;
}
.cta-gold .btn-navy:hover { opacity: 0.9; }

.cta-ivory {
  background: var(--ivory);
  padding: 80px 5vw;
  text-align: center;
}
.cta-ivory h2 {
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-primary);
}
.cta-ivory p { margin-top: 12px; font-size: 16px; color: var(--text-secondary); }
.cta-ivory .btn-primary { margin-top: 24px; }

/* ====== FOOTER ====== */
.site-footer { background: var(--navy); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 80px 5vw 40px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-brand { color: var(--white); font-size: 16px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; }
.footer-tag { margin-top: 8px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-desc { margin-top: 16px; font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.6; }
.footer-social {
  display: flex; gap: 16px; margin-top: 24px;
}
.footer-social a { color: rgba(255,255,255,0.6); transition: color 0.3s ease; }
.footer-social a:hover { color: var(--gold); }
.footer-col h4 { color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}
.footer-col a:hover { color: var(--gold); }
.contact-list { display: flex; flex-direction: column; gap: 16px; }
.contact-list .row { display: flex; align-items: flex-start; gap: 12px; }
.contact-list .row.center { align-items: center; }
.contact-list svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-list span, .contact-list a { font-size: 14px; color: rgba(255,255,255,0.8); transition: color 0.3s ease; }
.contact-list a { color: var(--gold); }
.contact-list a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; flex-direction: column; align-items: center;
  gap: 16px;
}
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-bottom p, .footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--white); }
.footer-bottom .links { display: flex; gap: 16px; }
.footer-disclaimer {
  margin-top: 16px;
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 800px;
  line-height: 1.6;
}

/* ====== FLOATING CTA ====== */
.floating-cta {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 998;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: all 0.3s ease;
}
.floating-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.floating-cta:hover { transform: scale(1.1); }
.floating-cta svg { color: var(--navy); }

/* ====== EXIT INTENT MODAL ====== */
.exit-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none; align-items: center; justify-content: center;
  padding: 16px;
}
.exit-modal-backdrop.show { display: flex; }
.exit-modal {
  position: relative;
  width: 100%; max-width: 500px;
  padding: 40px;
  background: var(--white);
  text-align: center;
  animation: zoomIn 0.3s ease;
}
@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
.exit-modal .close-x {
  position: absolute; top: 16px; right: 16px;
  background: none; border: none; padding: 8px;
  color: var(--text-primary);
}
.exit-modal h3 {
  font-size: 28px; font-weight: 700;
  color: var(--navy); line-height: 1.2;
}
.exit-modal p { margin-top: 16px; font-size: 16px; color: var(--text-secondary); }
.exit-modal .actions { margin-top: 32px; display: flex; flex-direction: column; gap: 12px; }
.exit-modal .disclaimer { margin-top: 24px; font-size: 12px; color: var(--text-secondary); }

/* ====== ATTORNEY PROFILE PAGE ====== */
.attorney-hero {
  background: var(--navy);
  padding: 140px 5vw 60px;
}
.attorney-hero .inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}
.attorney-hero img { width: 100%; aspect-ratio: 3/4; object-fit: cover; max-width: 350px; }
.attorney-hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  margin-top: 8px; line-height: 1.2;
}
.attorney-hero .role { font-size: 18px; color: var(--gold); margin-top: 8px; }
.attorney-hero .bio { margin-top: 16px; font-size: 16px; color: rgba(255,255,255,0.8); max-width: 540px; }
.attorney-hero .actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
@media (min-width: 1024px) { .attorney-hero .inner { grid-template-columns: 350px 1fr; } }

.attorney-bio { background: var(--white); }
.attorney-bio .inner { max-width: 800px; margin: 0 auto; }
.attorney-bio h2 { font-size: 28px; font-weight: 700; color: var(--text-primary); }
.attorney-bio p { margin-top: 16px; font-size: 16px; line-height: 1.8; color: var(--text-primary); }

.attorney-credentials { background: var(--ivory); }
.attorney-credentials .inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 768px) { .attorney-credentials .inner { grid-template-columns: 1fr 1fr; } }
.attorney-credentials h2 {
  font-size: 24px; font-weight: 700;
  margin-bottom: 24px;
  color: var(--text-primary);
  display: flex; align-items: center; gap: 8px;
}
.attorney-credentials h2 svg { color: var(--gold); }
.attorney-credentials .list { display: flex; flex-direction: column; gap: 12px; }
.attorney-credentials .list p { font-size: 16px; color: var(--text-primary); }
.attorney-credentials .col h2:not(:first-child) { margin-top: 40px; }

.attorney-focus { background: var(--white); }
.attorney-focus .inner { max-width: 1280px; margin: 0 auto; }
.attorney-focus h2 { font-size: 28px; font-weight: 700; margin-bottom: 32px; color: var(--text-primary); }
.attorney-focus .grid {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .attorney-focus .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .attorney-focus .grid { grid-template-columns: repeat(4, 1fr); } }
.attorney-focus .grid a {
  display: block;
  padding: 24px;
  border: 1px solid var(--border-light);
  transition: border-color 0.3s ease;
}
.attorney-focus .grid a:hover { border-color: var(--gold); }
.attorney-focus .grid h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.attorney-focus .grid p { margin-top: 8px; font-size: 14px; color: var(--text-secondary); }

.attorney-cases { background: var(--ivory); }
.attorney-cases .inner { max-width: 1280px; margin: 0 auto; }
.attorney-cases h2 { font-size: 28px; font-weight: 700; margin-bottom: 32px; color: var(--text-primary); }
.attorney-cases .grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .attorney-cases .grid { grid-template-columns: repeat(3, 1fr); } }
.attorney-cases .card {
  padding: 24px;
  background: var(--white);
  border-left: 4px solid var(--gold);
}
.attorney-cases .amount { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); }
.attorney-cases .type { margin-top: 8px; font-weight: 500; color: var(--text-primary); }
.attorney-cases .year { font-size: 14px; color: var(--text-secondary); }

/* ====== PRACTICE AREA DETAIL ====== */
.pa-detail {
  background: var(--white);
}
.pa-detail .inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
}
@media (min-width: 1024px) { .pa-detail .inner { grid-template-columns: 1fr 340px; } }
.pa-detail .desc { font-size: 18px; line-height: 1.7; color: var(--text-primary); }
.pa-detail h2 { font-size: 24px; font-weight: 700; color: var(--text-primary); margin-top: 48px; }
.pa-detail .grid-2 {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .pa-detail .grid-2 { grid-template-columns: 1fr 1fr; } }
.pa-detail .check-row, .pa-detail .alert-row, .pa-detail .dollar-row {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 16px; color: var(--text-primary);
}
.pa-detail .check-row svg, .pa-detail .alert-row svg, .pa-detail .dollar-row svg { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.pa-detail .causes-box {
  margin-top: 48px;
  padding: 32px;
  background: var(--ivory);
}
.pa-detail .causes-box h2 { margin-top: 0; }
.pa-detail .causes-list { margin-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.pa-detail .related-grid {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .pa-detail .related-grid { grid-template-columns: repeat(3, 1fr); } }
.pa-detail .related-grid a {
  padding: 24px;
  text-align: center;
  border: 1px solid var(--border-light);
  background: var(--white);
  transition: border-color 0.3s ease;
}
.pa-detail .related-grid a:hover { border-color: var(--gold); }
.pa-detail .related-grid h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.pa-detail .related-grid p { margin-top: 8px; font-size: 12px; color: var(--text-secondary); }

/* Sidebar CTA */
.pa-sidebar {
  align-self: start;
}
@media (min-width: 1024px) { .pa-sidebar { position: sticky; top: 100px; } }
.pa-sidebar-box {
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--border-light);
}
.pa-sidebar-box h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.pa-sidebar-box .desc { margin-top: 8px; font-size: 14px; color: var(--text-secondary); }
.pa-sidebar-box .phone-row {
  display: flex; align-items: center; gap: 8px;
  margin-top: 16px;
  font-size: 18px; font-weight: 600;
  color: var(--navy);
}
.pa-sidebar-box .phone-row svg { color: var(--gold); }
.pa-sidebar-box .btn-primary { width: 100%; margin-top: 16px; }
.pa-sidebar-box .why { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.pa-sidebar-box .why h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }
.pa-sidebar-box .why ul { display: flex; flex-direction: column; gap: 8px; }
.pa-sidebar-box .why li {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-secondary);
}
.pa-sidebar-box .why svg { color: var(--gold); }

/* ====== TESTIMONIALS PAGE ====== */
.testimonials-page { background: var(--white); }
.testimonials-page .grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .testimonials-page .grid { grid-template-columns: 1fr 1fr; } }
.testimonials-page .card {
  padding: 32px;
  background: var(--white);
  border-left: 4px solid var(--gold);
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.testimonials-page .card .quote-icon { color: var(--gold); opacity: 0.4; }
.testimonials-page .card .quote {
  font-family: var(--font-display);
  font-size: 17px;
  font-style: italic;
  margin-top: 16px;
  color: var(--text-primary);
  line-height: 1.5;
}
.testimonials-page .card .name { margin-top: 20px; font-size: 16px; font-weight: 600; color: var(--text-primary); }
.testimonials-page .card .case-type { margin-top: 4px; display: block; }
.testimonials-page .card .stars { display: flex; gap: 4px; margin-top: 12px; }

.video-placeholder {
  background: var(--ivory);
  padding: 80px 5vw;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.play-btn {
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s ease;
  cursor: pointer;
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { color: var(--navy); margin-left: 4px; }
.video-placeholder p { margin-top: 16px; color: var(--text-secondary); }

/* ====== BLOG ====== */
.blog-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 40px; padding-bottom: 24px;
  border-bottom: 1px solid var(--border-light);
}
.blog-tab {
  padding: 8px 16px;
  font-size: 14px; font-weight: 500;
  background: transparent;
  color: var(--text-secondary);
  border: none;
  border-bottom: 2px solid transparent;
}
.blog-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

.blog-grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.blog-card .thumb span {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  opacity: 0.3;
  transition: transform 0.5s ease;
}
.blog-card:hover .thumb span { transform: scale(1.05); }
.blog-card .cat-label { margin-top: 16px; display: block; }
.blog-card h3 {
  font-size: 18px; font-weight: 600;
  margin-top: 8px;
  color: var(--text-primary);
  line-height: 1.3;
  transition: color 0.2s ease;
}
.blog-card:hover h3 { color: var(--gold); }
.blog-card .excerpt {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card .meta { margin-top: 12px; font-size: 12px; color: var(--text-secondary); }

/* Blog post */
.post-meta {
  background: var(--navy);
  padding-bottom: 32px;
  text-align: center;
}
.post-meta .items {
  display: flex; align-items: center; justify-content: center; gap: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
}
.post-meta .item { display: inline-flex; align-items: center; gap: 4px; }

.post-content { background: var(--white); }
.post-content .inner { max-width: 800px; margin: 0 auto; }
.post-back {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--text-secondary);
  margin-bottom: 32px;
}
.post-back:hover { color: var(--gold); }
.prose-content { color: var(--text-primary); line-height: 1.8; }
.prose-content p { margin: 16px 0; font-size: 17px; }
.prose-content h2 {
  font-size: clamp(22px, 2.5vw, 28px);
  font-weight: 700;
  margin: 40px 0 16px;
  line-height: 1.3;
  color: var(--text-primary);
}
.prose-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 12px; color: var(--text-primary); }
.prose-content ul, .prose-content ol { margin: 16px 0; padding-left: 24px; }
.prose-content ul { list-style: disc; }
.prose-content ol { list-style: decimal; }
.prose-content ul li, .prose-content ol li { margin: 8px 0; font-size: 16px; }

.post-cta {
  margin-top: 48px;
  padding: 32px;
  background: var(--gold);
  text-align: center;
}
.post-cta h3 { font-size: 20px; font-weight: 700; color: var(--navy); }
.post-cta p { margin-top: 8px; font-size: 14px; color: rgba(11,31,63,0.8); }
.post-cta .actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; margin-top: 16px; }
.post-cta .btn-primary { font-size: 14px; padding: 12px 24px; }

.post-internal-links {
  margin-top: 48px; padding-top: 32px;
  border-top: 1px solid var(--border-light);
}
.post-internal-links h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; color: var(--text-primary); }
.post-internal-links .tags { display: flex; flex-wrap: wrap; gap: 12px; }
.post-internal-links .tags a {
  padding: 8px 16px;
  font-size: 14px;
  background: var(--ivory);
  color: var(--text-primary);
  transition: background 0.2s ease, color 0.2s ease;
}
.post-internal-links .tags a:hover { background: var(--gold); color: var(--navy); }
.post-external {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 24px;
  font-size: 14px;
  color: var(--text-secondary);
}
.post-external:hover { color: var(--gold); }
.post-author {
  margin-top: 48px; padding-top: 32px;
  display: flex; align-items: flex-start; gap: 16px;
  border-top: 1px solid var(--border-light);
}
.post-author .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 14px;
  flex-shrink: 0;
}
.post-author .name { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.post-author .desc { margin-top: 4px; font-size: 14px; color: var(--text-secondary); }

.related-posts { background: var(--ivory); }
.related-posts .inner { max-width: 1280px; margin: 0 auto; }
.related-posts h2 { font-size: 24px; font-weight: 700; margin-bottom: 32px; color: var(--text-primary); }
.related-posts .grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 768px) { .related-posts .grid { grid-template-columns: repeat(3, 1fr); } }
.related-posts .card .thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
}
.related-posts .card .thumb span { font-family: var(--font-display); font-size: 20px; color: var(--white); opacity: 0.3; }
.related-posts .card h3 { font-size: 16px; font-weight: 600; margin-top: 12px; color: var(--text-primary); }
.related-posts .card:hover h3 { color: var(--gold); }

/* ====== ABOUT PAGE ====== */
.about-story { background: var(--white); }
.about-story .inner {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr; gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) { .about-story .inner { grid-template-columns: 45% 55%; gap: 64px; } }
.about-story img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-story h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700; margin-top: 16px; line-height: 1.2;
  color: var(--text-primary);
}
.about-story .paragraphs { margin-top: 24px; display: flex; flex-direction: column; gap: 16px; }
.about-story .paragraphs p { font-size: 18px; line-height: 1.7; color: var(--text-primary); }
.about-story .link-underline { margin-top: 24px; color: var(--navy); font-weight: 500; }

.about-values { background: var(--ivory); }
.about-values .inner { max-width: 1280px; margin: 0 auto; }
.about-values .grid {
  display: grid; grid-template-columns: 1fr; gap: 32px;
}
@media (min-width: 768px) { .about-values .grid { grid-template-columns: repeat(3, 1fr); } }
.about-values .card { padding: 40px; background: var(--white); }
.about-values .card svg { color: var(--gold); }
.about-values .card h3 { font-size: 20px; font-weight: 600; margin-top: 16px; color: var(--text-primary); }
.about-values .card p { margin-top: 12px; font-size: 16px; color: var(--text-secondary); line-height: 1.6; }

.about-timeline { background: var(--white); }
.about-timeline .inner { max-width: 900px; margin: 0 auto; }
.about-timeline .section-heading { margin-bottom: 64px; }
.timeline { position: relative; }
.timeline-line {
  position: absolute; left: 50%; top: 0; bottom: 0;
  width: 2px; background: var(--gold);
  transform: translateX(-50%);
  display: none;
}
@media (min-width: 768px) { .timeline-line { display: block; } }
.timeline-items { display: flex; flex-direction: column; gap: 48px; }
.timeline-item {
  position: relative;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) {
  .timeline-item { grid-template-columns: 1fr 1fr; gap: 32px; }
  .timeline-item.right .content { grid-column: 2; padding-left: 48px; }
  .timeline-item.left .content { padding-right: 48px; text-align: right; }
}
.timeline-item .dot {
  position: absolute; left: 50%; top: 8px;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--gold);
  transform: translateX(-50%);
  display: none;
}
@media (min-width: 768px) { .timeline-item .dot { display: block; } }
.timeline-item .year { font-family: var(--font-display); font-size: 28px; font-weight: 700; color: var(--gold); }
.timeline-item .title { font-size: 18px; font-weight: 600; margin-top: 4px; color: var(--text-primary); }
.timeline-item .desc { margin-top: 8px; font-size: 14px; color: var(--text-secondary); }

.about-attorneys { background: var(--ivory); }
.about-attorneys .inner { max-width: 1080px; margin: 0 auto; }
.about-attorneys .list { display: flex; flex-direction: column; gap: 64px; }
.about-attorneys .row {
  display: grid; grid-template-columns: 1fr; gap: 32px;
  align-items: center;
}
@media (min-width: 1024px) { .about-attorneys .row { grid-template-columns: 300px 1fr; } }
.about-attorneys .row.flipped img-wrap { order: 2; }
@media (min-width: 1024px) {
  .about-attorneys .row.flipped { grid-template-columns: 1fr 300px; }
  .about-attorneys .row.flipped > .img-wrap { order: 2; }
  .about-attorneys .row.flipped > .info { order: 1; }
}
.about-attorneys .img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-attorneys .info h3 { font-size: 28px; font-weight: 700; margin-top: 8px; color: var(--text-primary); }
.about-attorneys .info .bio { margin-top: 16px; font-size: 16px; line-height: 1.7; color: var(--text-secondary); }
.about-attorneys .info .creds {
  margin-top: 24px;
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 640px) { .about-attorneys .info .creds { grid-template-columns: 1fr 1fr; } }
.about-attorneys .info .creds h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--text-primary); }
.about-attorneys .info .creds p { font-size: 14px; color: var(--text-secondary); margin-top: 2px; }
.about-attorneys .info .view-profile { display: inline-block; margin-top: 24px; font-size: 14px; font-weight: 500; color: var(--navy); }

/* ====== 404 ====== */
.notfound {
  min-height: 70vh;
  padding: 100px 5vw;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
  background: var(--white);
}
.notfound .code {
  font-family: var(--font-display);
  font-size: clamp(80px, 12vw, 120px);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.notfound h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 700; margin-top: 16px; color: var(--navy); }
.notfound p { margin-top: 16px; max-width: 500px; color: var(--text-secondary); }
.notfound .actions { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* Map */
.map-wrap { height: 400px; background: var(--ivory); }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 767px) {
  .section-padding { padding: 64px 5vw; }
  .attorney-hero { padding: 100px 5vw 48px; }
}
