:root {
  --navy: #16233f;
  --navy-dark: #0d1526;
  --gold: #b7965f;
  --gold-light: #d9c199;
  --cream: #f7f4ee;
  --text: #2a2a2a;
  --text-light: #5a5a5a;
  --white: #ffffff;
  --border: #e2ddd0;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Source Sans 3', 'Segoe UI', Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: var(--navy);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.4rem;
  color: var(--navy);
  font-weight: 700;
  letter-spacing: 0.3px;
}

.brand-tagline {
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

nav.main-nav a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav.main-nav a:hover,
nav.main-nav a.active {
  color: var(--gold);
  border-bottom-color: var(--gold);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 90px 24px;
}

.hero-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 2.6rem;
  max-width: 700px;
  margin-bottom: 18px;
}

.hero .eyebrow {
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.hero p.lead {
  font-size: 1.15rem;
  max-width: 600px;
  color: #dfe4ee;
  margin-bottom: 32px;
}

.hero-with-photo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
}

.hero-with-photo .hero-text {
  flex: 1;
  min-width: 280px;
}

.headshot-lg {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  flex-shrink: 0;
}

.headshot-sm {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  margin-bottom: 24px;
}

@media (max-width: 700px) {
  .hero-with-photo {
    flex-direction: column-reverse;
    text-align: center;
  }

  .hero-with-photo .hero-text {
    min-width: 0;
  }

  .hero-with-photo .lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.btn {
  display: inline-block;
  padding: 14px 30px;
  font-weight: 600;
  border-radius: 3px;
  transition: all 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}

.btn-primary:hover {
  background: var(--gold-light);
}

.btn-outline {
  border-color: var(--gold-light);
  color: var(--white);
  margin-left: 14px;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.08);
}

/* Sections */
section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 50px;
}

.section-heading .eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
}

.section-heading h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.section-heading p {
  color: var(--text-light);
}

/* Practice area cards */
.grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  padding: 32px;
  border-radius: 4px;
}

.card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.card p {
  color: var(--text-light);
}

.card ul {
  margin-top: 14px;
  padding-left: 20px;
  color: var(--text-light);
}

.card li {
  margin-bottom: 6px;
}

/* Alternate background band */
.band {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.two-col {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}

.two-col h2 {
  margin-bottom: 20px;
}

.two-col p {
  margin-bottom: 16px;
  color: var(--text-light);
}

.credentials-list {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px;
}

.credentials-list h4 {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 14px;
}

.credentials-list ul {
  list-style: none;
}

.credentials-list li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.95rem;
}

.credentials-list li:last-child {
  border-bottom: none;
}

/* Timeline (About page) */
.timeline-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--border);
}

.timeline-item:last-child {
  border-bottom: none;
}

.timeline-item .role-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}

.timeline-item h3 {
  font-size: 1.15rem;
}

.timeline-item .dates {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.timeline-item .org {
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 10px;
}

.timeline-item p {
  color: var(--text-light);
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  padding: 60px 24px;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 14px;
}

.cta-band p {
  color: #cfd6e4;
  margin-bottom: 28px;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 36px;
}

.contact-card h3 {
  margin-bottom: 18px;
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 1.05rem;
}

.contact-line:last-child {
  border-bottom: none;
}

.contact-line .label {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 70px;
  flex-shrink: 0;
}

/* Footer */
footer {
  background: var(--navy-dark);
  color: #b7c0d3;
  padding: 44px 24px 30px;
  font-size: 0.85rem;
}

footer .footer-inner {
  max-width: 1100px;
  margin: 0 auto;
}

footer .footer-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: 20px;
}

footer .footer-brand {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

footer nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

footer nav a {
  color: #b7c0d3;
}

footer nav a:hover {
  color: var(--gold-light);
}

footer .disclaimer {
  color: #8994ab;
  line-height: 1.6;
  max-width: 900px;
}

/* Responsive */
@media (max-width: 820px) {
  .grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 30px; }
  .contact-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 2.1rem; }
}

@media (max-width: 700px) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  nav.main-nav ul {
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .btn-outline {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }

  footer .footer-top {
    flex-direction: column;
  }
}
