/* Prichard Law — site styles */
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #1A3A5C;
  background: #FFFFFF;
  line-height: 1.6;
}
a { color: #2E75B6; text-decoration: none; }
a:hover { color: #1A3A5C; }
img { max-width: 100%; display: block; }

/* Header */
header {
  background: #FFFFFF;
  border-bottom: 1px solid #E5EBF2;
  padding: 1.75rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 100;
}
.brand { line-height: 1.2; }
.brand a { color: inherit; }
.brand-name {
  font-size: 36px;
  font-weight: 600;
  color: #1A3A5C;
  letter-spacing: -0.015em;
}
.brand-sub {
  font-size: 13px;
  color: #4A6FA5;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 5px;
  font-weight: 500;
}
nav {
  display: flex;
  gap: 2.5rem;
  font-size: 22px;
  font-weight: 500;
}
nav a {
  color: #4A6FA5;
  padding-bottom: 4px;
}
nav a.active {
  color: #1A3A5C;
  border-bottom: 2px solid #2E75B6;
}

/* Hero */
.hero { position: relative; height: 440px; overflow: hidden; }
.hero img { width: 100%; height: 100%; object-fit: cover; object-position: center 60%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%, rgba(0,0,0,0.55) 100%);
  display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end;
  text-align: left;
  padding: 3rem 2.5rem 2.5rem;
}
.hero h1 {
  color: white;
  font-size: 42px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  max-width: 720px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.6);
}
.hero p {
  color: rgba(255,255,255,0.95);
  font-size: 18px;
  max-width: 600px;
  line-height: 1.5;
  text-shadow: 0 1px 10px rgba(0,0,0,0.6);
}

.hero-cta {
  background: white;
  padding: 1.5rem;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid #E5EBF2;
}
.btn-primary {
  background: #1A3A5C; color: white;
  padding: 14px 28px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  border: 1px solid #1A3A5C;
  cursor: pointer;
}
.btn-primary:hover { background: #2E75B6; border-color: #2E75B6; color: white; }
.btn-secondary-outline {
  background: white; color: #1A3A5C;
  padding: 14px 28px;
  border: 1px solid #2E75B6;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}
.btn-secondary-outline:hover { background: #F4F7FB; color: #1A3A5C; }

/* Sections */
section { padding: 4rem 2rem; }
.section-narrow { max-width: 800px; margin: 0 auto; }
.section-medium { max-width: 1000px; margin: 0 auto; }
.section-wide { max-width: 1200px; margin: 0 auto; }
h1 { font-size: 36px; font-weight: 500; color: #1A3A5C; letter-spacing: -0.02em; margin-bottom: 6px; }
h2 { font-size: 30px; font-weight: 500; color: #1A3A5C; letter-spacing: -0.01em; margin-bottom: 0.5rem; }
h3 { font-size: 19px; font-weight: 500; color: #1A3A5C; margin-bottom: 0.5rem; }
.center { text-align: center; }
.subhead { color: #4A6FA5; margin-bottom: 2.5rem; font-size: 15px; }

/* Intro */
.intro { background: white; }
.intro p { font-size: 17px; color: #4A6FA5; line-height: 1.8; }

/* Practice */
.practice-section { background: #F7FAFC; }
.practice-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.practice-card {
  background: white;
  border: 1px solid #E5EBF2;
  border-radius: 8px;
  padding: 1.5rem;
}
.practice-card:hover { border-color: #2E75B6; }
.practice-card p { color: #4A6FA5; font-size: 14px; line-height: 1.6; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.team-card {
  background: white;
  border: 1px solid #E5EBF2;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s, border-color 0.2s;
  display: block;
  color: inherit;
}
.team-card:hover { box-shadow: 0 4px 16px rgba(26,58,92,0.08); border-color: #2E75B6; }
.team-card a { color: inherit; }
.team-photo { aspect-ratio: 1; overflow: hidden; }
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-info { padding: 1.5rem; }
.team-name { font-size: 22px; font-weight: 500; color: #1A3A5C; margin-bottom: 4px; letter-spacing: -0.01em; }
.team-role {
  font-size: 12px;
  color: #2E75B6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.team-preview { font-size: 14px; color: #4A6FA5; line-height: 1.7; margin-bottom: 1rem; }
.team-link { font-size: 14px; color: #2E75B6; font-weight: 500; }

/* Bio page */
.bio-header {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.bio-photo {
  width: 240px;
  height: 240px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.bio-photo img { width: 100%; height: 100%; object-fit: cover; }
.bio-meta { flex: 1; min-width: 240px; }
.bio-name { font-size: 36px; font-weight: 500; color: #1A3A5C; letter-spacing: -0.02em; margin-bottom: 6px; }
.bio-title {
  font-size: 13px;
  color: #2E75B6;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}
.bio-practice {
  font-size: 16px;
  color: #1A3A5C;
  font-weight: 500;
  padding: 1rem 1.25rem;
  background: #F4F7FB;
  border-left: 3px solid #2E75B6;
  border-radius: 4px;
}
.bio-contact-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  font-size: 14px;
  color: #4A6FA5;
}
.bio-contact-row a { color: #2E75B6; }
.bio-body {
  margin-top: 2rem;
  font-size: 16px;
  line-height: 1.85;
  color: #2C3E50;
}
.bio-body p { margin-bottom: 1.2rem; }
.back-link { display: inline-block; margin-bottom: 1.5rem; font-size: 14px; color: #2E75B6; }

/* Contact */
.contact-direct {
  background: #F7FAFC;
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}
.contact-direct-title {
  font-size: 14px;
  color: #4A6FA5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin-bottom: 1.25rem;
}
.contact-people {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.contact-person {
  padding: 1.25rem;
  background: white;
  border-radius: 6px;
}
.contact-person-name { font-size: 17px; font-weight: 500; color: #1A3A5C; margin-bottom: 4px; }
.contact-person-role {
  font-size: 12px;
  color: #4A6FA5;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}
.contact-person-phone { font-size: 15px; margin-bottom: 4px; }
.contact-person-email { font-size: 15px; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}
.contact-info h3 {
  font-size: 13px;
  color: #4A6FA5;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 1.5rem 0 0.5rem;
  font-weight: 500;
}
.contact-info h3:first-child { margin-top: 0; }
.contact-info p { color: #1A3A5C; line-height: 1.7; font-size: 16px; }
.office-photo {
  margin-top: 2rem;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
}
.office-photo img { width: 100%; height: 100%; object-fit: cover; }

/* Practice detail */
.practice-detail {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}
.practice-detail-item {
  padding: 1.75rem;
  border: 1px solid #E5EBF2;
  border-radius: 8px;
  background: white;
}
.practice-detail-item h3 { font-size: 22px; }
.practice-detail-item p {
  color: #4A6FA5;
  line-height: 1.75;
  font-size: 15px;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  background: #1A3A5C;
  color: #B8CBE0;
  padding: 2.5rem 2rem;
  text-align: center;
  font-size: 13px;
}
footer .footer-name {
  font-weight: 500;
  color: white;
  font-size: 15px;
  margin-bottom: 6px;
}
footer .footer-line { line-height: 1.7; }
footer .footer-copy {
  margin-top: 12px;
  color: #7A9DC2;
  font-size: 12px;
}

/* Mobile */
@media (max-width: 640px) {
  header { padding: 1.25rem 1.25rem; }
  .brand-name { font-size: 28px; }
  nav { gap: 1.25rem; font-size: 17px; }
  .hero { height: 340px; }
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  section { padding: 3rem 1.25rem; }
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  .bio-photo { width: 100%; max-width: 280px; height: auto; aspect-ratio: 1; margin: 0 auto; }
  .bio-name { font-size: 28px; }
}
