:root {
  --navy: #061b31;
  --navy-2: #092642;
  --navy-3: #0d3152;
  --gold: #c58b32;
  --gold-2: #e2b66c;
  --ink: #071426;
  --muted: #596270;
  --line: #e4e7eb;
  --paper: #ffffff;
  --soft: #f6f7f8;
  --shadow: 0 16px 40px rgba(6, 27, 49, .12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.65;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: linear-gradient(90deg, #06172a, #092642);
  color: #fff;
  border-bottom: 1px solid rgba(226, 182, 108, .22);
}

.navbar {
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 280px;
  flex-shrink: 1;
}

.brand-mark {
  font-family: var(--serif);
  font-size: 58px;
  line-height: .88;
  letter-spacing: 0;
}

.brand-rule {
  width: 2px;
  height: 58px;
  background: var(--gold);
}

.brand-name {
  display: block;
  font-family: var(--serif);
  font-size: clamp(23px, 2.5vw, 31px);
  line-height: 1;
  letter-spacing: 1px;
  white-space: nowrap;
}

.brand-sub {
  display: block;
  margin-top: 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.brand > span:last-child {
  min-width: 0;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 3vw, 42px);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 34px 0 30px;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 22px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width .2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255,255,255,.32);
  background: transparent;
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  content: "";
}

.nav-toggle span::before {
  transform: translateY(-7px);
}

.nav-toggle span::after {
  transform: translateY(5px);
}

.hero {
  min-height: 480px;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(3, 21, 38, .98) 0%, rgba(3, 21, 38, .9) 33%, rgba(3, 21, 38, .2) 65%, rgba(3, 21, 38, .08) 100%),
    url("../images/hero-boardroom.jpg") center right / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-inner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 72px 0;
}

.hero-copy {
  max-width: 560px;
}

.eyebrow {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .6px;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(42px, 5.2vw, 64px);
  line-height: 1.08;
}

h2 {
  color: var(--ink);
  font-size: clamp(30px, 3.4vw, 43px);
  line-height: 1.12;
}

h3 {
  color: var(--ink);
  font-size: 22px;
  line-height: 1.18;
}

.hero-line {
  width: 44px;
  height: 2px;
  margin: 24px 0 22px;
  background: var(--gold);
}

.hero p {
  width: min(470px, 100%);
  margin: 0 0 28px;
  font-size: 17px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 12px 22px;
  border: 1px solid var(--gold);
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  transition: transform .2s ease, box-shadow .2s ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(197, 139, 50, .24);
}

.button.dark {
  background: var(--navy);
  border-color: var(--navy);
}

.button.ghost {
  background: transparent;
  color: var(--navy);
}

.section {
  padding: 72px 0;
}

.section.tight {
  padding: 54px 0;
}

.section.soft {
  background: var(--soft);
}

.section-head {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-head .eyebrow {
  display: block;
  margin-bottom: 8px;
}

.section-head p {
  margin: 14px auto 0;
  max-width: 720px;
  color: var(--muted);
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}

.practice-card {
  min-height: 226px;
  padding: 22px 16px 18px;
  border: 1px solid var(--line);
  background: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.line-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  border: 1px solid rgba(197, 139, 50, .55);
  color: var(--gold);
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 24px;
}

.practice-card h3 {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.practice-card p {
  margin: 10px 0 20px;
  color: #222b37;
  font-size: 13px;
  line-height: 1.65;
}

.learn {
  margin-top: auto;
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: stretch;
}

.split-media {
  min-height: 320px;
  background: url("../images/about-building.jpg") center / cover no-repeat;
}

.split-copy {
  padding: clamp(34px, 6vw, 70px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.split-copy p {
  max-width: 620px;
  color: #172233;
}

.value-grid,
.article-grid,
.team-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.value,
.article-card,
.service-card {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
}

.value strong,
.article-card strong,
.service-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 400;
}

.value p,
.article-card p,
.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.team-grid {
  grid-template-columns: repeat(7, 1fr);
}

.person {
  text-align: center;
}

.person-mark {
  width: 92px;
  aspect-ratio: 1;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--serif);
  font-size: 58px;
}

.person strong {
  display: block;
  min-height: 40px;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.25;
}

.gold-tick {
  width: 18px;
  height: 1px;
  margin: 10px auto;
  background: var(--gold);
}

.person span {
  color: #1d2736;
  font-size: 12px;
}

.cta-band {
  margin-top: 24px;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff;
}

.cta-inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: 1fr 1.25fr auto;
  align-items: center;
  gap: 32px;
}

.cta-title {
  display: flex;
  align-items: center;
  gap: 22px;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.1;
}

.cta-title::before {
  content: "";
  width: 2px;
  height: 48px;
  background: var(--gold);
}

.cta-inner p {
  margin: 0;
  color: rgba(255,255,255,.86);
}

.page-hero {
  background: linear-gradient(90deg, #06172a, #0b2c4a);
  color: #fff;
  padding: 70px 0;
}

.page-hero h1 {
  max-width: 840px;
}

.page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.86);
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.prose p {
  margin: 0 0 18px;
  color: #273344;
}

.prose h2,
.prose h3 {
  margin: 0 0 16px;
}

.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.profile {
  border: 1px solid var(--line);
  background: #fff;
  padding: 24px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
}

.profile .person-mark {
  width: 86px;
  margin: 0;
}

.profile h3 {
  margin-bottom: 3px;
}

.profile .role {
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.article-card img {
  width: 100%;
  height: 150px;
  margin-bottom: 18px;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
}

.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  background: #fff;
  padding: 28px;
}

.contact-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

label {
  display: block;
  margin-bottom: 7px;
  color: #233044;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  margin-bottom: 16px;
  padding: 11px 12px;
  border: 1px solid #cfd5dc;
  background: #fff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

.site-footer {
  background: linear-gradient(90deg, #06172a, #08243d);
  color: #fff;
  padding: 34px 0 0;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .8fr;
  gap: 42px;
  padding-bottom: 34px;
}

.footer-brand .brand {
  min-width: auto;
}

.footer-brand .brand-mark {
  font-size: 56px;
}

.footer-brand .brand-name {
  font-size: 27px;
}

.footer-title {
  margin: 0 0 12px;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-list li {
  margin: 6px 0;
  color: rgba(255,255,255,.84);
  font-size: 14px;
}

.social {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.72);
  color: #fff;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.68);
  font-size: 13px;
}

@media (max-width: 1060px) {
  .practice-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .value-grid,
  .article-grid,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .container,
  .hero-inner {
    width: min(100% - 32px, 720px);
  }

  .navbar {
    min-height: 82px;
  }

  .brand-mark {
    font-size: 46px;
  }

  .brand-rule {
    height: 48px;
  }

  .brand-name {
    font-size: 22px;
  }

  .brand-sub {
    font-size: 9px;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 82px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #06172a;
    border-top: 1px solid rgba(255,255,255,.12);
  }

  .nav-open .nav-links {
    display: flex;
  }

  .nav-links a {
    padding: 15px 24px;
    border-bottom: 1px solid rgba(255,255,255,.1);
  }

  .nav-links a::after {
    display: none;
  }

  .hero {
    min-height: 560px;
    background:
      linear-gradient(90deg, rgba(3, 21, 38, .98), rgba(3, 21, 38, .78)),
      url("../images/hero-boardroom.jpg") center / cover no-repeat;
  }

  .section {
    padding: 56px 0;
  }

  .practice-grid,
  .team-grid,
  .value-grid,
  .article-grid,
  .service-grid,
  .profile-grid,
  .content-grid,
  .contact-layout,
  .footer-main,
  .split {
    grid-template-columns: 1fr;
  }

  .split-media {
    min-height: 260px;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    padding: 26px 0;
    gap: 16px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .navbar {
    gap: 12px;
  }

  .brand {
    min-width: 0;
    gap: 9px;
  }

  .brand-mark {
    font-size: 42px;
  }

  .brand-rule {
    height: 48px;
  }

  .brand-name {
    font-size: 17px;
  }

  .brand-sub {
    max-width: 176px;
    font-size: 9px;
    line-height: 1.35;
  }

  h1 {
    font-size: 39px;
  }

  h2 {
    font-size: 31px;
  }

  .practice-card {
    min-height: 0;
  }

  .profile {
    grid-template-columns: 1fr;
  }
}
