:root {
  --navy-900: #0a1628;
  --navy-800: #0f1d33;
  --navy-700: #1a2942;
  --navy-600: #2a3a55;
  --gold-500: #c9a961;
  --gold-400: #d8bd7e;
  --gold-300: #e6d3a3;
  --cream: #f7f3ea;
  --white: #ffffff;
  --gray-100: #f3f4f6;
  --gray-300: #d1d5db;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(10, 22, 40, 0.08);
  --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.1);
  --shadow-lg: 0 12px 40px rgba(10, 22, 40, 0.14);
  --radius: 6px;
  --radius-lg: 12px;
  --max-width: 1200px;
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gray-900);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { color: var(--gray-700); }

a { color: var(--navy-700); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-500); }

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

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}
.btn-primary:hover {
  background: var(--gold-400);
  border-color: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.btn-secondary:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(247, 243, 234, 0.3);
}
.btn-ghost:hover {
  background: rgba(247, 243, 234, 0.1);
  color: var(--cream);
  border-color: var(--cream);
}

/* ===== NAV ===== */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.logo:hover { color: var(--navy-900); }
.logo-mark {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-mark svg { width: 100%; height: 100%; }
.logo-name { font-weight: 700; }
.logo-name .accent { color: var(--gold-500); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-700);
}
.nav-links a:hover, .nav-links a.active { color: var(--navy-900); }

.nav-cta { display: flex; gap: 0.75rem; align-items: center; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy-900);
  margin: 5px 0;
  transition: all var(--transition);
}

@media (max-width: 900px) {
  .nav-links, .nav-cta .btn-secondary { display: none; }
  .nav-toggle { display: block; }
  .site-nav.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 1rem 0;
  }
  .site-nav.open .nav-links a {
    padding: 0.85rem 1.5rem;
    width: 100%;
  }
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream);
  padding: 6rem 0 7rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(201, 169, 97, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--cream); margin-bottom: 1.5rem; }
.hero h1 .accent { color: var(--gold-400); font-style: italic; }
.hero-lede {
  font-size: 1.2rem;
  color: rgba(247, 243, 234, 0.85);
  max-width: 640px;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-trust {
  margin-top: 3.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(247, 243, 234, 0.15);
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}
.hero-trust span {
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.5);
}
.hero-trust .logos {
  display: flex;
  gap: 2rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-trust .logo-item {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(247, 243, 234, 0.7);
}

/* Page hero (smaller, for inner pages) */
.page-hero {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream);
  padding: 5rem 0 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero h1 .accent { color: var(--gold-400); font-style: italic; }
.page-hero p {
  color: rgba(247, 243, 234, 0.8);
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0 auto;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 0; }
section.tight { padding: 3.5rem 0; }

.section-head { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.section-head .eyebrow { display: block; }
.section-head p { font-size: 1.1rem; margin-top: 1rem; }

/* ===== STATS ===== */
.stats {
  background: var(--cream);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--navy-900);
  font-weight: 700;
  line-height: 1;
}
.stat-label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--gray-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}

/* ===== CARDS / GRID ===== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .feature-grid { grid-template-columns: 1fr; } }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
}
.feature-card:hover {
  border-color: var(--gold-500);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--navy-900);
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-card h3 { margin-bottom: 0.75rem; font-size: 1.3rem; }

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
@media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }
.step {
  text-align: center;
}
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy-900);
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 2px solid var(--gold-500);
}
.step h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.step p { font-size: 0.95rem; }

/* ===== PRACTICE AREAS ===== */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 900px) { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
.practice-item {
  padding: 1.5rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  color: var(--navy-900);
  transition: all var(--transition);
}
.practice-item:hover {
  border-color: var(--gold-500);
  background: var(--cream);
  color: var(--navy-900);
}
.practice-item svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
  flex-shrink: 0;
}

/* ===== TESTIMONIALS ===== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .testimonial-grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-100);
  display: flex;
  flex-direction: column;
}
.testimonial-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}
.testimonial-quote::before {
  content: '"';
  font-size: 2.5rem;
  color: var(--gold-500);
  line-height: 0.5;
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  border-top: 1px solid var(--gray-100);
  padding-top: 1.25rem;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  color: var(--gold-400);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  color: var(--navy-900);
  font-size: 0.95rem;
}
.author-info span {
  display: block;
  color: var(--gray-500);
  font-size: 0.85rem;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  display: flex;
  flex-direction: column;
}
.pricing-card.featured {
  border-color: var(--gold-500);
  border-width: 2px;
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 40%);
  transform: scale(1.03);
}
@media (max-width: 900px) { .pricing-card.featured { transform: none; } }
.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold-500);
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 99px;
}
.pricing-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}
.pricing-card .tagline {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}
.price-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1;
}
.price-period {
  color: var(--gray-500);
  font-size: 0.95rem;
}
.pricing-features {
  list-style: none;
  margin: 1.5rem 0 2rem;
  flex-grow: 1;
}
.pricing-features li {
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray-700);
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.pricing-features li::before {
  content: '✓';
  color: var(--gold-500);
  font-weight: 700;
  flex-shrink: 0;
}
.pricing-card .btn { width: 100%; justify-content: center; }

/* ===== CTA STRIP ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: var(--cream);
  text-align: center;
  padding: 5rem 0;
}
.cta-strip h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-strip p {
  color: rgba(247, 243, 234, 0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--navy-900);
  color: rgba(247, 243, 234, 0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-brand .logo { color: var(--cream); margin-bottom: 1rem; }
.footer-brand p { color: rgba(247, 243, 234, 0.6); font-size: 0.9rem; max-width: 280px; }

.footer-col h4 {
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(247, 243, 234, 0.6);
  font-size: 0.9rem;
}
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  border-top: 1px solid rgba(247, 243, 234, 0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}
.footer-bottom .legal { color: rgba(247, 243, 234, 0.4); }
.footer-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(247, 243, 234, 0.08);
  font-size: 0.78rem;
  color: rgba(247, 243, 234, 0.4);
  line-height: 1.6;
}

/* ===== ABOUT / CONTENT PAGES ===== */
.prose {
  max-width: 760px;
  margin: 0 auto;
}
.prose p { margin-bottom: 1.25rem; font-size: 1.05rem; }
.prose h2 { margin: 3rem 0 1rem; }
.prose h3 { margin: 2rem 0 0.75rem; }

.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding-left: 2rem;
  border-left: 2px solid var(--gold-500);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.4rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold-500);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--gold-500);
}
.timeline-year {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy-900);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.timeline-item p { font-size: 1rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media (max-width: 900px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }

.team-member {
  text-align: center;
}
.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  border: 1px solid var(--gold-500);
}
.team-member h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
}
.team-role {
  color: var(--gold-500);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.team-bio { font-size: 0.9rem; color: var(--gray-500); }

/* ===== JOBS LIST ===== */
.jobs-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.job-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  transition: all var(--transition);
}
.job-card:hover {
  border-color: var(--gold-500);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}
.job-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.4rem;
}
.job-meta {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: var(--gray-500);
}
.job-meta span { display: flex; align-items: center; gap: 0.35rem; }
.job-meta svg { width: 14px; height: 14px; }
.job-tag {
  display: inline-block;
  background: var(--cream);
  color: var(--navy-900);
  padding: 0.25rem 0.7rem;
  border-radius: 99px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; } }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.form-field input, .form-field select, .form-field textarea {
  padding: 0.85rem 1rem;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  background: var(--white);
  transition: border-color var(--transition);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15);
}
.form-field textarea { min-height: 140px; resize: vertical; }

.office-list { display: flex; flex-direction: column; gap: 2rem; }
.office-item {
  padding: 1.5rem;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--gold-500);
}
.office-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy-900);
  margin-bottom: 0.5rem;
}
.office-item p { font-size: 0.95rem; margin-bottom: 0.4rem; }
.office-item p:last-child { margin-bottom: 0; }
.office-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-500);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--gray-100);
  padding: 1.5rem 0;
}
.faq-item h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
  color: var(--navy-900);
}
.faq-item p { font-size: 0.98rem; }

/* ===== FEATURED TESTIMONIAL ===== */
.featured-story {
  background: var(--cream);
  padding: 3rem;
  border-radius: var(--radius-lg);
  max-width: 880px;
  margin: 0 auto 4rem;
}
.featured-story .featured-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--navy-900);
  margin-bottom: 1.5rem;
  font-style: italic;
}
.featured-story .author-avatar { width: 56px; height: 56px; }

/* ===== UTILITIES ===== */
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy-900); color: var(--cream); }
.bg-navy h2, .bg-navy h3 { color: var(--cream); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
