/* =========================================
   RESET & BASE
   ========================================= */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #14293f;
  --navy-dark: #0c1a29;
  --gold: #b3894a;
  --gold-light: #d9b47a;
  --cream: #f7f4ee;
  --text: #2b2b2b;
  --text-light: #6b7280;
  --border: #e4e1d8;
  --radius: 8px;
}

body {
  font-family: 'Georgia', 'Times New Roman', serif;
  color: var(--text);
  line-height: 1.65;
  background: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Trebuchet MS', 'Segoe UI', Arial, sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

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

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: var(--navy-dark);
  color: #cfd8e3;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.85rem;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
}
.topbar-phone {
  color: var(--gold-light);
  font-weight: bold;
}

/* =========================================
   HEADER
   ========================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  font-size: 1rem;
}
.logo-text {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  font-size: 1.15rem;
  color: var(--navy);
}

.main-nav ul {
  display: flex;
  align-items: center;
  gap: 26px;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.92rem;
}
.main-nav a {
  color: var(--navy);
  font-weight: 600;
  padding: 6px 0;
}
.main-nav a:hover { color: var(--gold); }

.nav-cta {
  background: var(--gold);
  color: #fff !important;
  padding: 10px 18px !important;
  border-radius: var(--radius);
}
.nav-cta:hover { background: var(--navy) !important; }

.has-dropdown { position: relative; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-width: 260px;
  box-shadow: 0 12px 24px rgba(0,0,0,0.08);
  padding: 8px 0;
}
.has-dropdown:hover .dropdown { display: block; }
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-weight: 500;
  white-space: nowrap;
}
.dropdown li a:hover { background: var(--cream); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--navy);
}

/* =========================================
   HERO
   ========================================= */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: #fff;
  padding: 72px 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold-light);
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.85rem;
  margin-bottom: 12px;
}
.hero h1 {
  color: #fff;
  font-size: 2.6rem;
  margin-bottom: 18px;
}
.hero-sub {
  font-size: 1.1rem;
  color: #d7dee7;
  margin-bottom: 28px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.btn {
  display: inline-block;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: all 0.2s ease;
}
.btn-primary { background: var(--gold); color: #fff; }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border: 2px solid #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { background: var(--cream); }

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  padding: 32px;
}
.hero-card h3 { color: #fff; margin-bottom: 12px; }
.hero-card p { color: #d7dee7; margin-bottom: 20px; font-size: 0.95rem; }

/* =========================================
   INTRO
   ========================================= */
.intro { padding: 72px 0; background: #fff; }
.intro-inner {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 56px;
}
.intro h2 { font-size: 1.9rem; margin-bottom: 20px; }
.intro p { color: var(--text-light); margin-bottom: 16px; }

.intro-stats {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.stat {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}
.stat-num {
  display: block;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: bold;
  color: var(--navy);
}
.stat-label {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  color: var(--text-light);
  font-size: 0.9rem;
}

/* =========================================
   MEET THE ATTORNEY
   ========================================= */
.attorney { padding: 72px 0; background: var(--cream); }
.attorney-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: center;
}
.attorney-photo img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: 0 16px 30px rgba(20,41,63,0.15);
}
.eyebrow-dark {
  color: var(--gold);
}
.attorney-text h2 { font-size: 1.8rem; margin-bottom: 16px; }
.attorney-text p { color: var(--text-light); margin-bottom: 22px; }

/* =========================================
   PRACTICE AREAS
   ========================================= */
.practice-areas { background: var(--cream); padding: 80px 0; }
.section-title { font-size: 2rem; text-align: center; }
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-top: 10px;
  margin-bottom: 48px;
  font-family: 'Trebuchet MS', Arial, sans-serif;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.pa-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pa-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20,41,63,0.1);
}
.pa-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pa-icon svg { width: 26px; height: 26px; fill: var(--gold-light); }
.pa-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.pa-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.pa-link {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-weight: bold;
  color: var(--gold);
  font-size: 0.9rem;
}
.pa-link:hover { color: var(--navy); }

/* =========================================
   REVIEWS
   ========================================= */
.reviews { padding: 80px 0; background: #fff; }
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 20px;
}
.review-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 28px;
  border-left: 4px solid var(--gold);
}
.review-card p { font-style: italic; margin-bottom: 14px; }
.review-card cite {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-style: normal;
  font-weight: bold;
  color: var(--navy);
  font-size: 0.85rem;
}

/* =========================================
   CTA STRIP
   ========================================= */
.cta-strip { background: var(--navy); color: #fff; padding: 48px 0; }
.cta-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.cta-strip h2 { color: #fff; font-size: 1.5rem; margin-bottom: 8px; }
.cta-strip p { color: #cfd8e3; font-family: 'Trebuchet MS', Arial, sans-serif; }

/* =========================================
   FOOTER
   ========================================= */
.site-footer { background: var(--navy-dark); color: #cfd8e3; }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 64px 24px 40px;
}
.footer-col h4 {
  color: #fff;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col p {
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.9rem;
  margin-bottom: 12px;
  color: #b7c1cf;
}
.footer-col a { color: #b7c1cf; }
.footer-col a:hover { color: var(--gold-light); }
.footer-links li { margin-bottom: 10px; font-family: 'Trebuchet MS', Arial, sans-serif; font-size: 0.9rem; }

.footer-link-btn {
  display: inline-block;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  color: var(--gold-light);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius);
  padding: 8px 14px;
  margin: 4px 8px 4px 0;
}
.footer-link-btn:hover { background: rgba(255,255,255,0.08); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 20px 24px;
  font-family: 'Trebuchet MS', Arial, sans-serif;
  font-size: 0.8rem;
  color: #8a94a3;
}
.footer-legal { display: flex; gap: 18px; }
.footer-legal a:hover { color: var(--gold-light); }

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 900px) {
  .hero-inner, .intro-inner, .attorney-inner { grid-template-columns: 1fr; }
  .attorney-photo img { max-width: 320px; margin: 0 auto; }
  .card-grid, .review-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
  .topbar-inner { flex-direction: column; gap: 4px; text-align: center; }
  .nav-toggle { display: block; }
  .main-nav ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #fff;
    border-top: 1px solid var(--border);
    padding: 12px 24px;
    gap: 4px;
  }
  .main-nav ul.open { display: flex; }
  .has-dropdown .dropdown { position: static; box-shadow: none; border: none; padding-left: 12px; }
  .hero h1 { font-size: 1.9rem; }
  .card-grid, .review-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
}
