@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@400;500;600;700&family=Source+Serif+4:opsz,wght@8..60,400;8..60,500;8..60,600;8..60,700&display=swap');

:root {
  --primary: #0b3d6e;
  --primary-deep: #062a4e;
  --primary-mid: #1e5a8f;
  --primary-soft: #eaf1f8;
  --primary-pale: #f5f8fb;
  --accent: #b8932f;
  --accent-deep: #8a6e22;
  --accent-soft: #faf4e3;
  --neutral-900: #0d1b2a;
  --neutral-700: #2c3e50;
  --neutral-500: #5a6b7a;
  --neutral-400: #7a8a99;
  --neutral-300: #b8c2cc;
  --neutral-200: #dde3e9;
  --neutral-100: #eef2f6;
  --neutral-50: #f8fafb;
  --bg: #ffffff;
  --text: #1a2733;
  --text-muted: #4a5968;
  --text-soft: #7a8a99;
  --success: #2f7a4f;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
}
.serif { font-family: 'Source Serif 4', Georgia, serif; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* Utility bar */
.util-bar {
  background: var(--primary-deep);
  color: rgba(255,255,255,0.85);
  padding: 9px 0;
  font-size: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.util-bar .container { display: flex; justify-content: space-between; align-items: center; }
.util-bar .left { display: flex; gap: 24px; }
.util-bar .right { display: flex; gap: 20px; }
.util-bar a { color: rgba(255,255,255,0.85); text-decoration: none; cursor: pointer; }
.util-bar a:hover { color: #fff; }
.util-bar span.divider { color: rgba(255,255,255,0.25); margin: 0 2px; }

/* Main nav */
nav.main-nav {
  background: #fff;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--neutral-200);
  box-shadow: 0 1px 0 rgba(0,0,0,0.02);
}
nav.main-nav .container { display: flex; align-items: center; justify-content: space-between; }
.logo { display: flex; align-items: center; gap: 14px; cursor: pointer; text-decoration: none; }
.logo-mark {
  width: 44px; height: 44px;
  background: var(--primary);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 16px; font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Source Serif 4', Georgia, serif;
  position: relative;
  flex-shrink: 0;
}
.logo-mark::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.logo-text { display: flex; flex-direction: column; }
.logo-name {
  color: var(--primary);
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 18px; font-weight: 600;
  letter-spacing: -0.2px;
  line-height: 1.1;
}
.logo-tag {
  color: var(--text-soft);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-top: 3px;
  font-weight: 500;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--neutral-700); font-size: 14px; text-decoration: none; cursor: pointer;
  transition: color 0.15s; font-weight: 500;
  position: relative;
  padding: 6px 0;
}
.nav-links a:hover { color: var(--primary); }
.nav-links a.active { color: var(--primary); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -22px;
  left: 0; right: 0;
  height: 3px;
  background: var(--accent);
}
.nav-cta {
  background: var(--primary); color: #fff !important;
  padding: 11px 22px; font-weight: 600; font-size: 13px;
  border-radius: 2px;
  letter-spacing: 0.3px;
}
.nav-cta:hover { background: var(--primary-deep) !important; color: #fff !important; }
.nav-cta.active::after { display: none !important; }

/* Buttons */
.btn-primary {
  background: var(--primary);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.15s;
  font-family: inherit;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover { background: var(--primary-deep); }
.btn-ghost {
  background: #fff;
  color: var(--primary);
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--primary);
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  transition: all 0.15s;
  letter-spacing: 0.3px;
  text-decoration: none;
  display: inline-block;
}
.btn-ghost:hover { background: var(--primary-soft); }
.btn-row { display: flex; gap: 12px; flex-wrap: wrap; }

/* Sections */
section.content { padding: 88px 0; }
section.soft { background: var(--neutral-50); }
section.white { background: #fff; }
section.divider-top { border-top: 1px solid var(--neutral-200); }

.section-eyebrow {
  font-size: 11px; color: var(--accent-deep); letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 14px; font-weight: 700;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--accent);
}
.section-title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 40px; font-weight: 600;
  color: var(--primary-deep); margin-bottom: 18px;
  line-height: 1.15; letter-spacing: -0.8px;
  max-width: 760px;
}
.section-sub {
  font-size: 17px; color: var(--text-muted);
  max-width: 660px; margin-bottom: 56px; line-height: 1.6;
}

/* Two-col */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }

/* Practice list */
.practice-list {
  background: #fff;
  border: 1px solid var(--neutral-200);
  border-top: 3px solid var(--primary);
}
.practice-list .heading {
  padding: 22px 28px;
  background: var(--primary-pale);
  border-bottom: 1px solid var(--neutral-200);
}
.practice-list .heading .label {
  font-size: 11px; color: var(--accent-deep);
  letter-spacing: 2px; text-transform: uppercase;
  font-weight: 700; margin-bottom: 4px;
}
.practice-list .heading .title {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px; font-weight: 600;
  color: var(--primary-deep);
}
.practice-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 28px;
  border-bottom: 1px solid var(--neutral-200);
  font-size: 15px;
  cursor: pointer;
  color: var(--neutral-700);
  font-weight: 500;
  transition: background 0.15s;
  text-decoration: none;
  display: flex;
}
.practice-row:last-child { border-bottom: none; }
.practice-row:hover { background: var(--primary-pale); color: var(--primary); }
.practice-row .arrow {
  color: var(--accent);
  font-family: 'Source Serif 4', Georgia, serif;
  font-weight: 600;
}

/* Testimonial */
.testimonial-block {
  background: var(--primary-deep);
  color: #fff;
  padding: 64px;
  position: relative;
  border-top: 4px solid var(--accent);
}
.quote-mark {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 96px;
  color: var(--accent);
  line-height: 0.5;
  margin-bottom: 24px;
  font-weight: 600;
}
.testimonial {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 28px;
  line-height: 1.45;
  color: #fff;
  max-width: 820px;
  margin-bottom: 28px;
  font-weight: 400;
  letter-spacing: -0.3px;
}
.testimonial-attr {
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.attr-avatar {
  width: 48px; height: 48px;
  background: var(--accent);
  color: var(--primary-deep);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px;
  font-family: 'Source Serif 4', Georgia, serif;
}
.attr-text strong {
  color: #fff; display: block;
  font-weight: 600; font-size: 15px;
  margin-bottom: 2px;
}
.attr-text span { font-size: 13px; color: rgba(255,255,255,0.7); }

/* Page hero */
.page-hero {
  background: var(--primary-pale);
  padding: 72px 0 64px;
  border-bottom: 4px solid var(--accent);
}
.breadcrumb {
  font-size: 12px; color: var(--accent-deep);
  letter-spacing: 2px; margin-bottom: 16px; font-weight: 700;
  text-transform: uppercase;
}
.page-hero h1 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 46px; font-weight: 600;
  color: var(--primary-deep);
  line-height: 1.1; max-width: 820px; margin-bottom: 20px;
  letter-spacing: -1px;
}
.page-hero p {
  font-size: 17px; color: var(--text-muted);
  max-width: 700px; line-height: 1.6;
}

/* Pillars */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 48px; border-top: 1px solid var(--neutral-200); }
.pillar {
  background: #fff;
  padding: 32px;
  border-right: 1px solid var(--neutral-200);
  border-bottom: 1px solid var(--neutral-200);
  border-top: 3px solid transparent;
  transition: border-top-color 0.2s;
}
.pillar:hover { border-top-color: var(--accent); }
.pillar:last-child { border-right: none; }
.pillar-num {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 13px; color: var(--accent);
  letter-spacing: 2px; font-weight: 600;
  margin-bottom: 14px;
}
.pillar h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 19px; color: var(--primary-deep);
  margin-bottom: 10px; font-weight: 600;
  letter-spacing: -0.3px;
}
.pillar p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

/* CTA band */
.cta-band {
  background: var(--primary-deep);
  color: #fff;
  padding: 72px 0;
  border-top: 4px solid var(--accent);
}
.cta-band .container {
  display: grid; grid-template-columns: 1.6fr 1fr;
  gap: 40px; align-items: center;
}
.cta-band .label {
  font-size: 11px; color: var(--accent);
  letter-spacing: 2.5px; text-transform: uppercase;
  margin-bottom: 14px; font-weight: 700;
}
.cta-band h2 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 36px; font-weight: 600;
  color: #fff; margin-bottom: 14px;
  letter-spacing: -0.6px; line-height: 1.15;
}
.cta-band p {
  font-size: 16px; color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.cta-band .btn-primary {
  background: var(--accent); color: var(--primary-deep);
  padding: 16px 32px;
}
.cta-band .btn-primary:hover { background: var(--accent-deep); color: #fff; }

/* Footer */
footer {
  background: var(--neutral-900);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 32px;
  font-size: 13px;
}
footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand-row { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.foot-brand-row .logo-mark { width: 40px; height: 40px; font-size: 14px; }
.foot-brand-row .name {
  color: #fff; font-weight: 600; font-size: 16px;
  font-family: 'Source Serif 4', Georgia, serif;
}
footer .foot-desc { line-height: 1.7; margin-bottom: 20px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); }
footer h5 {
  color: #fff; font-weight: 700; font-size: 12px;
  margin-bottom: 16px;
  text-transform: uppercase; letter-spacing: 1.5px;
}
footer ul { list-style: none; line-height: 2.2; }
footer li { cursor: pointer; transition: color 0.15s; }
footer li:hover { color: var(--accent); }
footer a.foot-link { color: rgba(255,255,255,0.65); text-decoration: none; display: block; line-height: 2.2; cursor: pointer; transition: color 0.15s; }
footer a.foot-link:hover { color: var(--accent); }
footer .copyright {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding-top: 24px;
  font-size: 12px;
  display: flex; justify-content: space-between;
  color: rgba(255,255,255,0.4);
}

/* Form */
.form-row { margin-bottom: 22px; }
.form-row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row label {
  display: block;
  font-size: 12px; color: var(--neutral-700);
  margin-bottom: 8px; font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.form-row input, .form-row select, .form-row textarea {
  width: 100%;
  border: 1px solid var(--neutral-200);
  background: #fff;
  padding: 13px 14px;
  font-size: 14px;
  font-family: inherit;
  border-radius: 2px;
  color: var(--text);
  transition: all 0.15s;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: inset 0 0 0 1px var(--primary);
}
.form-row textarea { resize: vertical; min-height: 130px; }
.form-row select { cursor: pointer; }
.form-submit {
  background: var(--primary);
  color: #fff;
  padding: 15px 32px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 2px;
  font-family: inherit;
  transition: all 0.15s;
  letter-spacing: 0.5px;
}
.form-submit:hover { background: var(--primary-deep); }
.form-note { font-size: 13px; color: var(--text-muted); margin-top: 18px; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 0; border-top: 1px solid var(--neutral-200); }
.faq {
  background: #fff;
  padding: 24px 0;
  cursor: pointer;
  border-bottom: 1px solid var(--neutral-200);
  transition: all 0.15s;
}
.faq-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 24px; }
.faq-q {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 17px; font-weight: 600;
  color: var(--primary-deep);
  flex: 1; line-height: 1.4;
}
.faq-toggle {
  width: 28px; height: 28px;
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  flex-shrink: 0;
  transition: all 0.15s;
}
.faq.open .faq-toggle { background: var(--primary); color: #fff; }
.faq-a {
  font-size: 15px; color: var(--text-muted);
  line-height: 1.7; max-height: 0; overflow: hidden;
  transition: max-height 0.25s ease, margin-top 0.25s ease;
  padding-right: 52px;
}
.faq.open .faq-a { max-height: 400px; margin-top: 14px; }

/* Info block */
.info-block {
  background: var(--neutral-50);
  padding: 28px;
  border-left: 3px solid var(--primary);
}
.info-block h4 {
  font-family: 'Source Serif 4', Georgia, serif;
  font-size: 16px; font-weight: 600; margin-bottom: 8px;
  color: var(--primary-deep);
}
.info-block p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* Responsive */
@media (max-width: 800px) {
  .util-bar .left { display: none; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 28px; }
  .two-col, .cta-band .container { grid-template-columns: 1fr; }
  .pillars { grid-template-columns: 1fr; }
  .form-row.two { grid-template-columns: 1fr; }
  footer .container { grid-template-columns: 1fr 1fr; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .testimonial-block { padding: 36px 24px; }
  .testimonial { font-size: 22px; }
}
