:root {
  --navy: #071a2d;
  --navy-2: #0e2d4d;
  --blue: #1f5f99;
  --steel: #6f7f91;
  --gold: #c8a35d;
  --gold-2: #a98236;
  --white: #ffffff;
  --paper: #f7f8fb;
  --soft: #eef2f6;
  --ink: #17202a;
  --muted: #5d6a78;
  --line: rgba(7, 26, 45, .12);
  --shadow: 0 28px 80px rgba(7, 26, 45, .18);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.65;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.container {
  width: min(1160px, calc(100% - 42px));
  margin: 0 auto;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.header-inner,
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  color: var(--navy);
}

.brand span {
  width: 46px;
  height: 46px;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--gold);
  border-radius: 12px;
  font-weight: 900;
  letter-spacing: .06em;
}

.brand strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-menu,
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}

.nav-menu a,
.main-nav a {
  text-decoration: none;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}

.nav-menu a:hover,
.main-nav a:hover {
  color: var(--gold-2);
}

.menu-toggle,
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--navy);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  font-weight: 900;
}

/* Buttons */

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn.primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 16px 32px rgba(200,163,93,.28);
}

.btn.secondary {
  background: var(--white);
  color: var(--navy);
  border-color: rgba(255,255,255,.28);
}

.btn.light-btn {
  background: var(--white);
  color: var(--navy);
}

/* Typography */

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 900;
}

.eyebrow.light {
  color: #e6c982;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(46px, 6vw, 78px);
  line-height: .98;
  letter-spacing: -.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
  letter-spacing: -.045em;
  margin-bottom: 18px;
}

h3 {
  font-size: 23px;
  line-height: 1.18;
  margin-bottom: 10px;
}

/* Home Hero */

.hero {
  position: relative;
  background:
    linear-gradient(rgba(7,26,45,.88), rgba(7,26,45,.88)),
    radial-gradient(circle at top right, rgba(200,163,93,.25), transparent 32%),
    linear-gradient(135deg, var(--navy), #0a2139);
  color: var(--white);
  padding: 92px 0 88px;
  overflow: hidden;
}

.hero:after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 70px;
  align-items: center;
}

.hero-lead {
  color: rgba(255,255,255,.78);
  font-size: 22px;
  max-width: 760px;
  margin-bottom: 30px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-profile-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 30px;
  padding: 16px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero-profile-card img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
}

.profile-card-content {
  padding: 22px 8px 6px;
}

.profile-card-content span {
  color: var(--gold);
  font-size: 12px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 900;
}

.profile-card-content h2 {
  color: var(--white);
  font-size: 34px;
  margin: 8px 0 10px;
}

.profile-card-content p {
  color: rgba(255,255,255,.72);
  margin-bottom: 0;
}

/* Authority strip */

.authority-strip {
  background: var(--white);
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}

.authority-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.authority-grid div {
  border-left: 4px solid var(--gold);
  padding-left: 20px;
}

.authority-grid span {
  display: block;
  color: var(--navy);
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
}

.authority-grid p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 700;
}

/* General sections */

.section {
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: .85fr 1fr;
  gap: 70px;
}

.split p {
  color: var(--muted);
  font-size: 18px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--gold-2);
  font-weight: 900;
  text-decoration: none;
  border-bottom: 2px solid rgba(200,163,93,.35);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.practice-preview {
  padding: 88px 0;
  background: var(--paper);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.practice-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 14px 38px rgba(7,26,45,.06);
}

.practice-grid span {
  color: var(--gold-2);
  font-size: 13px;
  letter-spacing: .14em;
  font-weight: 900;
}

.practice-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

/* Feature band */

.feature-band {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
  padding: 78px 0;
}

.feature-band-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 60px;
  align-items: start;
}

.feature-band h2 {
  color: var(--white);
}

.feature-band p {
  color: rgba(255,255,255,.78);
  font-size: 20px;
}

/* Credentials */

.credentials-snapshot {
  padding: 84px 0;
  background: var(--white);
}

.credentials-grid,
.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.credential-card,
.contact-card-grid div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--paper);
}

.credential-card span,
.contact-card-grid span {
  color: var(--gold-2);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}

.credential-card p,
.contact-card-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

/* CTA */

.cta-section {
  padding: 84px 0;
  background: var(--navy);
  color: var(--white);
  text-align: center;
}

.cta-box {
  max-width: 880px;
}

.cta-box h2 {
  color: var(--white);
}

.cta-box p {
  color: rgba(255,255,255,.76);
  font-size: 18px;
  margin-bottom: 26px;
}

/* Page hero */

.page-hero {
  padding: 86px 0;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 64px;
  align-items: center;
}

.page-hero p {
  color: var(--muted);
  font-size: 21px;
}

.page-hero img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  object-position: center top;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

/* Profile */

.profile-section {
  padding: 88px 0;
}

.profile-layout {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 64px;
  align-items: start;
}

.profile-main {
  max-width: 790px;
}

.profile-main p {
  color: var(--muted);
  font-size: 18px;
}

.profile-lead {
  color: var(--navy) !important;
  font-size: 29px !important;
  line-height: 1.36;
  font-weight: 800;
  letter-spacing: -.03em;
}

.bio-disclaimer {
  margin-top: 28px;
  padding: 20px;
  background: #fff7e6;
  border: 1px solid rgba(200,163,93,.35);
  border-radius: 16px;
  color: #513a13;
  font-weight: 700;
}

.profile-sidebar {
  position: sticky;
  top: 106px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
}

.profile-sidebar h2 {
  color: var(--white);
  font-size: 32px;
}

.sidebar-item {
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.sidebar-item:last-child {
  border-bottom: 0;
}

.sidebar-item span {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 900;
}

.sidebar-item p {
  color: rgba(255,255,255,.78);
  margin: 6px 0 0;
}

/* Achievements */

.achievements-section {
  padding: 88px 0;
  background: var(--paper);
}

.achievement-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.achievement-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.achievement-grid ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  font-weight: 700;
}

.achievement-grid li {
  margin-bottom: 9px;
}

/* Quote */

.quote-section {
  background: var(--navy);
  color: var(--white);
  padding: 86px 0;
}

.quote-box p {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.14;
  letter-spacing: -.045em;
  font-weight: 800;
  max-width: 980px;
}

.quote-box span {
  color: var(--gold);
  font-weight: 900;
}

/* Practice page */

.practice-hero {
  padding: 96px 0;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  color: var(--white);
}

.practice-hero-inner {
  max-width: 980px;
}

.practice-hero h1 {
  color: var(--white);
}

.practice-hero p {
  color: rgba(255,255,255,.78);
  font-size: 22px;
}

.practice-detail-section {
  padding: 88px 0;
}

.practice-detail-grid {
  display: grid;
  gap: 18px;
}

.practice-detail-grid article {
  display: grid;
  grid-template-columns: 90px .8fr 1fr;
  gap: 28px;
  align-items: start;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.practice-detail-grid article span {
  color: var(--gold-2);
  font-weight: 900;
  letter-spacing: .14em;
}

.practice-detail-grid h2 {
  font-size: 34px;
}

.practice-detail-grid p {
  color: var(--muted);
  margin-bottom: 0;
}

.industries-section {
  padding: 88px 0;
  background: var(--paper);
}

.industries-grid {
  display: grid;
  grid-template-columns: .8fr 1fr;
  gap: 60px;
}

.industries-grid p {
  color: var(--muted);
  font-size: 18px;
}

.industry-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.industry-list div {
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  font-weight: 800;
  color: var(--navy);
}

.process-section {
  padding: 88px 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-grid div {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}

.process-grid span {
  color: var(--gold-2);
  font-weight: 900;
}

/* Contact */

.contact-hero {
  padding: 90px 0;
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 64px;
  align-items: start;
}

.contact-grid p {
  color: var(--muted);
  font-size: 21px;
}

.contact-panel {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  color: var(--gold);
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-panel p {
  color: rgba(255,255,255,.76);
  font-size: 16px;
  margin-bottom: 24px;
}

.contact-cards {
  padding: 70px 0;
}

/* Footer */

.site-footer {
  background: #04111f;
  color: var(--white);
  padding: 34px 0;
}

.footer-inner,
.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-footer p {
  margin: 0;
  color: rgba(255,255,255,.68);
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: rgba(255,255,255,.78);
  text-decoration: none;
  font-weight: 800;
  margin-left: 18px;
}

.site-footer a:hover {
  color: var(--gold);
}

/* Responsive */

@media (max-width: 940px) {
  .menu-toggle,
  .nav-toggle {
    display: inline-flex;
  }

  .nav-menu,
  .main-nav {
    position: absolute;
    right: 21px;
    top: 72px;
    display: none;
    width: min(310px, calc(100vw - 42px));
    padding: 16px;
    border-radius: 18px;
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-menu.open,
  .main-nav.open {
    display: grid;
  }

  .nav-menu a,
  .main-nav a {
    padding: 10px;
  }

  .hero-grid,
  .split,
  .feature-band-grid,
  .page-hero-grid,
  .profile-layout,
  .industries-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .practice-grid,
  .credentials-grid,
  .contact-card-grid,
  .process-grid,
  .authority-grid {
    grid-template-columns: 1fr 1fr;
  }

  .practice-detail-grid article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .profile-sidebar {
    position: static;
  }

  .hero-profile-card,
  .page-hero img {
    max-width: 420px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .hero,
  .section,
  .practice-preview,
  .feature-band,
  .credentials-snapshot,
  .cta-section,
  .page-hero,
  .profile-section,
  .achievements-section,
  .quote-section,
  .practice-hero,
  .practice-detail-section,
  .industries-section,
  .process-section,
  .contact-hero {
    padding: 58px 0;
  }

  h1 {
    font-size: 46px;
  }

  h2 {
    font-size: 34px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .practice-grid,
  .credentials-grid,
  .contact-card-grid,
  .process-grid,
  .authority-grid,
  .achievement-grid,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .footer-inner,
  .footer-grid {
    display: grid;
  }

  .site-footer a {
    display: inline-block;
    margin: 12px 14px 0 0;
  }
}