:root {
  --navy: #0a2540;
  --navy-2: #0e2b4d;
  --ivory: #f7f5ef;
  --paper: #fbfaf6;
  --rule: #e5e2d8;
  --ink: #1b2230;
  --muted: #5a6473;
  --gold: #c69a3b;
  --gold-soft: #e8ddb8;
  --gutter: 32px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 5;
  background: var(--ivory);
  border-bottom: 1px solid var(--rule);
}

.site-nav {
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 18px var(--gutter);
  display: flex;
  align-items: center;
  gap: 56px;
}

.brand,
.footer-brand {
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 36px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--navy);
  font-size: 14.5px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--gold);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: #0a1828;
}

.hero-img {
  position: absolute;
  inset: 0;
  background-image: url("hero.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  filter: saturate(1.04);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(6, 18, 36, 0.82) 0%, rgba(6, 18, 36, 0.58) 42%, rgba(6, 18, 36, 0.14) 78%, rgba(6, 18, 36, 0) 100%),
    linear-gradient(180deg, rgba(6, 18, 36, 0.32) 0%, rgba(6, 18, 36, 0) 42%, rgba(6, 18, 36, 0.5) 100%);
}

.hero-inner {
  position: relative;
  width: min(100%, 1280px);
  min-height: 640px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
}

.hero-copy {
  width: min(100%, 720px);
  color: var(--ivory);
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--gold-soft);
  font-size: 11.5px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.eyebrow span,
.section-kicker::before {
  width: 36px;
  height: 1px;
  background: var(--gold);
  content: "";
  flex: 0 0 auto;
}

.hero h1,
.section-head h2,
.firm-strip h2,
.contact-section h2,
.policy-hero h1 {
  margin: 0;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 300;
  letter-spacing: 0;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--ivory);
  font-size: 72px;
  line-height: 1.05;
}

.hero h1 em {
  color: #f0e6c8;
  font-style: italic;
  font-weight: 300;
}

.hero p {
  max-width: 560px;
  margin: 0 0 34px;
  color: #d9dee6;
  font-size: 17px;
  line-height: 1.65;
}

.text-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
}

.text-link.light {
  color: var(--gold-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
}

.section {
  padding: 96px var(--gutter);
}

.section-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 56px;
  align-items: end;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--rule);
}

.section-kicker {
  margin-bottom: 14px;
  color: var(--gold);
}

.section-head h2 {
  max-width: 720px;
  font-size: 46px;
  line-height: 1.12;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.practice {
  min-width: 0;
  padding: 36px 32px 38px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}

.practice:nth-child(3n + 1) {
  padding-left: 0;
}

.practice:nth-child(3n) {
  padding-right: 0;
  border-right: 0;
}

.practice span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.practice h3 {
  margin: 0 0 14px;
  color: var(--navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0;
}

.practice p {
  margin: 0;
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.65;
}

.firm-strip {
  padding: 84px var(--gutter);
  color: var(--ivory);
  background: var(--navy);
}

.firm-inner {
  width: min(100%, 920px);
  margin: 0 auto;
}

.firm-strip h2 {
  margin-bottom: 24px;
  color: var(--ivory);
  font-size: 42px;
  line-height: 1.16;
}

.firm-strip p {
  margin: 0;
  color: #c9d2de;
  font-size: 15.5px;
  line-height: 1.75;
}

.contact-section {
  padding: 96px var(--gutter);
  background: var(--ivory);
  border-top: 1px solid var(--rule);
  text-align: center;
}

.contact-inner {
  width: min(100%, 760px);
  margin: 0 auto;
}

.contact-section h2 {
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 48px;
  line-height: 1.1;
}

.contact-section p {
  max-width: 560px;
  margin: 0 auto 34px;
  color: var(--muted);
  font-size: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 50px;
  padding: 14px 26px;
  color: var(--ivory);
  background: var(--navy);
  border: 1px solid var(--navy);
  font-size: 14.5px;
  font-weight: 500;
}

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

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

.button.light:hover {
  color: var(--ivory);
  background: transparent;
}

.site-footer {
  padding: 48px var(--gutter) 32px;
  color: #9ca8b8;
  background: var(--navy-2);
  font-size: 12.5px;
}

.footer-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.footer-brand {
  color: var(--ivory);
  font-size: 18px;
}

.footer-brand small {
  display: block;
  margin-top: 4px;
  color: #7a8597;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px 18px;
}

.footer-legal a {
  color: #c9d2de;
  border-bottom: 1px solid rgba(201, 210, 222, 0.35);
}

.footer-legal a:hover {
  color: var(--ivory);
  border-color: var(--ivory);
}

.policy-hero {
  padding: 88px var(--gutter) 76px;
  color: var(--ivory);
  background: var(--navy);
}

.policy-hero-inner,
.policy-content {
  width: min(100%, 920px);
  margin: 0 auto;
}

.policy-hero h1 {
  margin-bottom: 18px;
  color: var(--ivory);
  font-size: 62px;
  line-height: 1.06;
}

.policy-hero p {
  margin: 0;
  color: #c9d2de;
  font-size: 15px;
}

.policy-body {
  padding: 72px var(--gutter) 96px;
}

.policy-content p {
  margin: 0 0 22px;
  color: #3f4a5a;
  font-size: 16px;
  line-height: 1.78;
}

.policy-content p:last-child {
  margin-bottom: 0;
}

.policy-content a {
  color: var(--navy);
  border-bottom: 1px solid rgba(10, 37, 64, 0.35);
}

.policy-content a:hover {
  border-color: var(--navy);
}

@media (max-width: 980px) {
  .hero,
  .hero-inner {
    min-height: 600px;
  }

  .hero h1 {
    font-size: 58px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .section-head h2 {
    max-width: 720px;
    font-size: 42px;
  }

  .section-head p {
    max-width: 620px;
  }

  .practice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .practice,
  .practice:nth-child(3n + 1),
  .practice:nth-child(3n) {
    padding: 32px 28px;
    border-right: 1px solid var(--rule);
  }

  .practice:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 700px) {
  :root {
    --gutter: 24px;
  }

  .site-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 18px;
    padding-bottom: 16px;
  }

  .brand {
    font-size: 21px;
  }

  .nav-links {
    width: 100%;
    gap: 8px 22px;
  }

  .nav-links a {
    min-height: 36px;
    font-size: 14px;
  }

  .hero {
    min-height: 0;
  }

  .hero-img {
    background-position: 52% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(6, 18, 36, 0.86) 0%, rgba(6, 18, 36, 0.64) 62%, rgba(6, 18, 36, 0.28) 100%),
      linear-gradient(180deg, rgba(6, 18, 36, 0.22) 0%, rgba(6, 18, 36, 0.06) 38%, rgba(6, 18, 36, 0.72) 100%);
  }

  .hero-inner {
    min-height: 560px;
    padding-top: 72px;
    padding-bottom: 62px;
    align-items: flex-end;
  }

  .eyebrow,
  .section-kicker {
    margin-bottom: 18px;
    font-size: 10.5px;
    letter-spacing: 0.18em;
  }

  .eyebrow span,
  .section-kicker::before {
    width: 28px;
  }

  .hero h1 {
    margin-bottom: 20px;
    font-size: 44px;
    line-height: 1.08;
  }

  .hero p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.52;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 72px;
  }

  .section-head {
    padding-bottom: 26px;
  }

  .section-head h2 {
    font-size: 34px;
    line-height: 1.16;
  }

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

  .practice,
  .practice:nth-child(2n),
  .practice:nth-child(3n + 1),
  .practice:nth-child(3n) {
    padding: 28px 0;
    border-right: 0;
  }

  .practice h3 {
    font-size: 23px;
  }

  .firm-strip {
    padding-top: 58px;
    padding-bottom: 62px;
  }

  .firm-strip h2,
  .contact-section h2 {
    font-size: 34px;
    line-height: 1.16;
  }

  .contact-section {
    padding-top: 64px;
    padding-bottom: 72px;
    text-align: left;
  }

  .contact-section p {
    margin-left: 0;
    margin-right: 0;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions .text-link {
    justify-content: center;
    min-height: 44px;
    border: 1px solid rgba(232, 221, 184, 0.5);
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-legal {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
  }

  .policy-hero {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .policy-hero h1 {
    font-size: 44px;
  }

  .policy-body {
    padding-top: 48px;
    padding-bottom: 72px;
  }
}

@media (max-width: 380px) {
  :root {
    --gutter: 20px;
  }

  .nav-links {
    gap: 6px 18px;
  }

  .hero-inner {
    min-height: 500px;
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero p {
    margin-bottom: 18px;
    font-size: 15.5px;
    line-height: 1.5;
  }

  .section-head h2,
  .firm-strip h2,
  .contact-section h2 {
    font-size: 31px;
  }
}

@media (max-width: 340px) {
  .site-nav {
    gap: 10px;
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .brand {
    font-size: 20px;
  }

  .nav-links {
    gap: 4px 12px;
  }

  .nav-links a {
    min-height: 32px;
    font-size: 13.5px;
  }

  .hero-inner {
    min-height: 480px;
    padding-top: 32px;
    padding-bottom: 36px;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
  }

  .hero h1 {
    margin-bottom: 16px;
    font-size: 36px;
  }

  .hero p {
    margin-bottom: 14px;
    font-size: 14.5px;
    line-height: 1.45;
  }

  .hero-actions {
    gap: 10px;
  }
}
