/* ---------- Tokens ---------- */
:root {
  --navy-900: #0a1628;
  --navy-800: #0c1f3a;
  --navy-700: #11294a;
  --navy-100: #e6ebf3;
  --navy-50:  #f3f6fa;

  --gold-600: #b08a3a;
  --gold-500: #c9a24a;
  --gold-400: #d8b664;
  --gold-100: #f4ead0;

  --ink-900: #0d1320;
  --ink-700: #2a3346;
  --ink-500: #5a6479;
  --ink-300: #98a0b3;
  --ink-100: #d3d8e2;
  --paper:   #fbfaf6;
  --line:    #e5e2d6;

  --serif: "Fraunces", "Iowan Old Style", Georgia, serif;
  --sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(10, 22, 40, 0.06);
  --shadow-md: 0 8px 30px rgba(10, 22, 40, 0.08);
  --shadow-lg: 0 24px 60px rgba(10, 22, 40, 0.18);

  --container: 1200px;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink-900);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
  text-align: left;
}
p { margin: 0; }
ul, ol { margin: 0; padding: 0; }
li { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--ink-100);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.topbar__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 38px;
  flex-wrap: wrap;
}
.topbar__item { color: var(--ink-100); }
.topbar__item--muted { color: var(--gold-400); }
.topbar__sep {
  width: 1px; height: 12px; background: rgba(255,255,255,0.18);
}
.topbar__spacer { flex: 1; }

/* ---------- Header ---------- */
.header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(6px);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy-800);
}
.brand__mark {
  width: 36px; height: 36px;
  color: var(--navy-800);
}
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-align: left;
}
.brand__sub {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  margin-top: 4px;
  text-align: left;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 500;
}
.nav a {
  color: var(--ink-700);
  transition: color .15s ease;
}
.nav a:hover { color: var(--navy-800); }
.nav__cta {
  color: var(--paper) !important;
  background: var(--navy-800);
  padding: 10px 18px;
  border-radius: var(--radius);
  transition: background .15s ease;
}
.nav__cta:hover { background: var(--navy-700); color: var(--paper) !important; }

.hamburger {
  display: none;
  background: none; border: 0;
  width: 36px; height: 36px;
  flex-direction: column; justify-content: center; gap: 5px;
  padding: 0;
}
.hamburger span {
  display: block; height: 2px; background: var(--navy-800);
}
.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 16px 28px 24px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}
.mobile-nav a {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-700);
}
.mobile-nav a:last-child { border-bottom: 0; }
.mobile-nav.is-open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(ellipse at top right, rgba(201, 162, 74, 0.10), transparent 60%),
    linear-gradient(180deg, var(--paper) 0%, var(--paper) 100%);
  padding: 96px 0 80px;
  border-bottom: 1px solid var(--line);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--gold-600);
  font-weight: 600;
  margin-bottom: 20px;
  text-align: left;
}
.eyebrow--gold { color: var(--gold-400); }
.hero__title {
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  text-align: left;
}
.gold { color: var(--gold-600); font-style: italic; }
.hero__lede {
  font-size: 19px;
  color: var(--ink-700);
  max-width: 560px;
  margin-bottom: 36px;
  text-align: left;
}
.hero__cta {
  display: flex; gap: 14px; flex-wrap: wrap;
  margin-bottom: 56px;
}

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600;
  padding: 14px 24px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: all .15s ease;
  letter-spacing: -0.005em;
}
.btn--gold {
  background: var(--gold-500);
  color: var(--navy-900);
}
.btn--gold:hover { background: var(--gold-400); transform: translateY(-1px); }
.btn--ghost {
  color: var(--navy-800);
  border-color: var(--navy-800);
  background: transparent;
}
.btn--ghost:hover { background: var(--navy-800); color: var(--paper); }
.btn--block { width: 100%; }

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}
.hero__stats strong {
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  color: var(--navy-800);
  line-height: 1.1;
  text-align: left;
}
.hero__stats span {
  font-size: 13px;
  color: var(--ink-500);
  line-height: 1.4;
  text-align: left;
}

.hero__card {
  background: var(--navy-800);
  color: var(--paper);
  padding: 36px;
  border-radius: 6px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.hero__card::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border: 1px solid rgba(201, 162, 74, 0.25);
  border-radius: 50%;
  pointer-events: none;
}
.hero__card-tag {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 16px;
  text-align: left;
}
.hero__card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--paper);
  text-align: left;
}
.hero__card p {
  color: var(--ink-100);
  font-size: 15px;
  margin-bottom: 24px;
  text-align: left;
}
.hero__card-meta {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 13px;
  color: var(--ink-300);
}

/* ---------- Trust strip ---------- */
.trust {
  background: var(--navy-50);
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
.trust__label {
  text-align: center;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--ink-500);
  margin-bottom: 12px;
  font-weight: 600;
}
.trust__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
  color: var(--ink-700);
}
.trust__dot { color: var(--gold-500); }

/* ---------- Sections ---------- */
.section { padding: 112px 0; }
.section--alt {
  background: var(--navy-50);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark {
  background: var(--navy-800);
  color: var(--paper);
}
.section__head {
  max-width: 720px;
  margin: 0 auto 64px;
  text-align: center;
}
.section__head .eyebrow { text-align: center; }
.section__title {
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.02em;
  text-align: center;
}
.section__title--light { color: var(--paper); text-align: left; }
.section__sub {
  margin-top: 18px;
  color: var(--ink-500);
  font-size: 18px;
  text-align: center;
}

/* ---------- Practice ---------- */
.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.practice {
  padding: 40px 32px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .2s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}
.practice:hover { background: var(--paper); box-shadow: var(--shadow-sm); position: relative; z-index: 1; }
.practice__icon {
  width: 44px; height: 44px;
  color: var(--gold-600);
  margin-bottom: 24px;
}
.practice h3 {
  font-size: 22px;
  margin-bottom: 12px;
  color: var(--navy-800);
  text-align: left;
}
.practice p {
  color: var(--ink-700);
  font-size: 15px;
  margin-bottom: 20px;
  text-align: left;
  flex: 1;
}
.practice__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  border-bottom: 1px solid var(--gold-500);
  padding-bottom: 2px;
  transition: color .15s ease;
  margin-top: auto;
}
.practice__link:hover { color: var(--gold-600); }

/* ---------- Team ---------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}
.bio {
  background: var(--paper);
  padding: 40px;
  border: 1px solid var(--line);
  text-align: left;
  display: flex;
  flex-direction: column;
}
.bio__portrait {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 24px;
  border: 3px solid var(--gold-500);
  flex-shrink: 0;
}
.bio__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bio__name {
  font-size: 26px;
  color: var(--navy-800);
  margin-bottom: 4px;
  text-align: left;
}
.bio__title {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-600);
  font-size: 16px;
  margin-bottom: 8px;
  text-align: left;
}
.bio__bar {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-500);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.bio__body {
  color: var(--ink-700);
  font-size: 15px;
  margin-bottom: 16px;
  text-align: left;
  flex: 1;
}
.bio__edu {
  color: var(--ink-500);
  font-size: 13px;
  font-style: italic;
  text-align: left;
}

/* ---------- Office showcase ---------- */
.office {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.office__image {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}
.office__image img {
  width: 100%;
  height: 100%;
  display: block;
}
.office__copy {
  text-align: left;
}
.office__copy .section__title { text-align: left; margin-bottom: 24px; }
.office__copy p {
  color: var(--ink-700);
  font-size: 16px;
  margin-bottom: 16px;
  text-align: left;
}
.office__list {
  margin-top: 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}
.office__list li {
  font-size: 14px;
  color: var(--ink-500);
  padding: 6px 0;
  text-align: left;
  position: relative;
  padding-left: 18px;
}
.office__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--gold-500);
  font-weight: 600;
}

/* ---------- Approach ---------- */
.approach__inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.approach__head .eyebrow { text-align: left; }
.approach__head .section__title { text-align: left; }
.approach__steps {
  display: grid;
  gap: 36px;
}
.approach__steps li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  align-items: start;
}
.approach__steps li:last-child { border-bottom: 0; padding-bottom: 0; }
.approach__num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--gold-500);
  line-height: 1;
  text-align: left;
}
.approach__step-body { text-align: left; }
.approach__steps h3 {
  font-size: 22px;
  color: var(--navy-800);
  margin-bottom: 8px;
  text-align: left;
}
.approach__steps p {
  color: var(--ink-700);
  font-size: 15px;
  text-align: left;
}

/* ---------- Insights ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.insight {
  background: var(--paper);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  display: flex;
  flex-direction: column;
  text-align: left;
  overflow: hidden;
}
.insight:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.insight__image {
  width: 100%;
  height: 180px;
  overflow: hidden;
  background: var(--navy-800);
}
.insight__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insight__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  text-align: left;
  flex: 1;
}
.insight__date {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-600);
  margin-bottom: 14px;
  font-weight: 600;
  text-align: left;
}
.insight h3 {
  font-size: 21px;
  color: var(--navy-800);
  margin-bottom: 12px;
  line-height: 1.25;
  text-align: left;
}
.insight p {
  color: var(--ink-700);
  font-size: 15px;
  margin-bottom: 18px;
  text-align: left;
  flex: 1;
}
.insight__link {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-800);
  text-align: left;
  margin-top: auto;
}
.insight__link:hover { color: var(--gold-600); }

/* ---------- Contact ---------- */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact__copy { text-align: left; }
.contact__title { margin-bottom: 24px; }
.contact__lede {
  font-size: 17px;
  color: var(--ink-100);
  margin: 24px 0 40px;
  max-width: 460px;
  text-align: left;
}
.contact__details {
  display: grid;
  gap: 24px;
}
.contact__details li {
  font-size: 14.5px;
  color: var(--ink-100);
  line-height: 1.6;
  text-align: left;
}
.contact__details strong {
  display: block;
  font-family: var(--serif);
  color: var(--gold-400);
  font-weight: 600;
  margin-bottom: 4px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  text-align: left;
}
.contact__details a {
  color: var(--ink-100);
  border-bottom: 1px dotted rgba(255,255,255,0.3);
}
.contact__details a:hover { color: var(--gold-400); border-bottom-color: var(--gold-400); }

.contact__form {
  background: var(--paper);
  color: var(--ink-900);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  border-radius: 4px;
  text-align: left;
}
.field { display: flex; flex-direction: column; gap: 6px; text-align: left; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-500);
  font-weight: 600;
  text-align: left;
}
.field input,
.field select,
.field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink-900);
  border-radius: var(--radius);
  transition: border-color .15s ease;
  text-align: left;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: var(--gold-500);
}
.field textarea { resize: vertical; min-height: 110px; }
.form__note {
  grid-column: 1 / -1;
  font-size: 12px;
  color: var(--ink-500);
  text-align: center;
  font-style: italic;
}
.form__success {
  grid-column: 1 / -1;
  background: var(--gold-100);
  color: var(--navy-800);
  padding: 12px;
  border-radius: var(--radius);
  font-size: 14px;
  text-align: center;
  font-weight: 600;
  margin: 0;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy-900);
  color: var(--ink-100);
  padding: 64px 0 28px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand { text-align: left; }
.footer__brand p {
  margin-top: 14px;
  color: var(--ink-300);
  font-size: 14px;
  max-width: 320px;
  text-align: left;
}
.brand__name--footer {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--paper);
  text-align: left;
}
.footer__col { text-align: left; }
.footer__col h4 {
  font-family: var(--sans);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-400);
  margin-bottom: 18px;
  font-weight: 600;
  text-align: left;
}
.footer__col a {
  display: block;
  color: var(--ink-100);
  font-size: 14px;
  margin-bottom: 10px;
  text-align: left;
}
.footer__col a:hover { color: var(--gold-400); }
.footer__col p {
  font-size: 14px;
  color: var(--ink-100);
  line-height: 1.6;
  text-align: left;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 12.5px;
  color: var(--ink-300);
  flex-wrap: wrap;
  gap: 16px;
}
.footer__legal { display: flex; gap: 22px; }
.footer__legal a { color: var(--ink-300); }
.footer__legal a:hover { color: var(--gold-400); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
  .practice-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: 1fr; gap: 32px; }
  .office { grid-template-columns: 1fr; gap: 32px; }
  .approach__inner { grid-template-columns: 1fr; gap: 48px; }
  .insights-grid { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .nav { display: none; }
  .hamburger { display: flex; }
  .topbar__inner { font-size: 12px; gap: 10px; }
  .topbar__sep { display: none; }
  .hero { padding: 64px 0 56px; }
  .section { padding: 80px 0; }
  .practice-grid { grid-template-columns: 1fr; }
  .contact__form { grid-template-columns: 1fr; padding: 28px; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .hero__stats { grid-template-columns: 1fr; gap: 16px; }
  .approach__steps li { grid-template-columns: 1fr; gap: 12px; }
  .approach__num { font-size: 32px; }
}