:root {
  --ink: #111a1e;
  --ink-soft: #26343a;
  --paper: #f7f8f6;
  --white: #ffffff;
  --mist: #e8eff0;
  --line: #cbd4d6;
  --teal: #0f4c5c;
  --teal-light: #8fb8bf;
  --burgundy: #7a263a;
  --gold: #d8b773;
  --muted: #53636a;
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --text: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--paper);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--text);
  font-size: 17px;
  line-height: 1.6;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 10;
  background-color: #243a43;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
}

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

.brand {
  display: inline-flex;
  flex-direction: column;
  width: fit-content;
  text-decoration: none;
  line-height: 1;
}

.brand-name {
  font-family: var(--display);
  font-size: 23px;
  font-weight: 700;
}

.brand-kind {
  margin-top: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.primary-nav a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

.header-call {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 9px;
  min-height: 42px;
  padding: 0 15px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.header-call:hover {
  background: var(--white);
  color: var(--ink);
}

.header-call svg,
.button svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero {
  position: relative;
  display: flex;
  min-height: 650px;
  height: min(82svh, 780px);
  align-items: flex-end;
  overflow: hidden;
  background-color: #1a313a;
  color: var(--white);
  isolation: isolate;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  z-index: -2;
  object-fit: cover;
  object-position: 52% center;
}

.hero-shade {
  z-index: -1;
  background: rgba(8, 20, 25, 0.64);
}

.hero-content {
  padding-bottom: clamp(64px, 9vh, 96px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--teal-light);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow span {
  margin: 0 7px;
  color: var(--gold);
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(58px, 7.1vw, 100px);
  font-weight: 500;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin: 28px 0 0;
  color: #ecf3f4;
  font-size: clamp(19px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--gold);
  color: var(--ink);
}

.button-primary:hover {
  background: #e0bd76;
}

.button-light {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.button-light:hover {
  background: var(--white);
  color: var(--ink);
}

.client-link {
  display: inline-block;
  margin-top: 23px;
  color: #edf4f5;
  font-size: 14px;
  font-weight: 700;
  text-underline-offset: 5px;
}

.proof-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

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

.proof-grid > div {
  min-width: 0;
  padding: 26px 30px;
  border-left: 1px solid var(--line);
}

.proof-grid > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.proof-label {
  display: block;
  margin-bottom: 5px;
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.proof-grid strong {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 600;
}

.section {
  padding: 104px 0 116px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  column-gap: 72px;
  align-items: end;
  margin-bottom: 54px;
}

.section-heading .section-kicker {
  grid-column: 1 / -1;
  color: var(--burgundy);
}

.section-heading h2,
.approach-band h2,
.office-copy h2,
.urgent-band h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.section-heading > p:last-child {
  margin: 0 0 6px;
  color: var(--muted);
  font-size: 18px;
}

.practice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--line);
}

.practice-item {
  position: relative;
  min-width: 0;
  padding: 35px 44px 38px 0;
  border-bottom: 1px solid var(--line);
}

.practice-item:nth-child(even) {
  padding-right: 0;
  padding-left: 44px;
  border-left: 1px solid var(--line);
}

.practice-number {
  display: block;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.practice-item h3 {
  margin: 10px 0 12px;
  font-family: var(--display);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.1;
}

.practice-item p {
  margin: 0;
  color: var(--muted);
}

.practice-item a,
.text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--teal);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.practice-item a:hover,
.text-link:hover {
  color: var(--burgundy);
}

.approach-band {
  padding: 102px 0 108px;
  background: var(--teal);
  color: var(--white);
}

.approach-band .section-kicker {
  color: var(--gold);
}

.approach-band h2 {
  max-width: 820px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.approach-grid article {
  min-width: 0;
  padding: 32px 34px 0;
  border-left: 1px solid rgba(255, 255, 255, 0.34);
}

.approach-grid article:first-child {
  padding-left: 0;
  border-left: 0;
}

.approach-grid span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.approach-grid h3 {
  margin: 12px 0 10px;
  font-family: var(--display);
  font-size: 31px;
  font-weight: 600;
}

.approach-grid p {
  margin: 0;
  color: #d9e8eb;
}

.office-section {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(480px, 0.96fr);
  min-height: 720px;
  background: var(--white);
}

.office-image-wrap {
  min-height: 540px;
}

.office-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.office-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 680px;
  padding: 74px clamp(48px, 7vw, 110px);
}

.office-copy .section-kicker {
  color: var(--burgundy);
}

.office-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.office-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 34px;
  margin: 38px 0 0;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.office-details div:last-child {
  grid-column: 1 / -1;
}

.office-details dt {
  color: var(--burgundy);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.office-details dd {
  margin: 7px 0 0;
  color: var(--ink-soft);
}

.urgent-band {
  padding: 78px 0;
  background: var(--burgundy);
  color: var(--white);
}

.urgent-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
}

.urgent-band .section-kicker {
  color: #f0cbd4;
}

.urgent-band h2 {
  font-size: clamp(38px, 4vw, 58px);
}

.urgent-band p:not(.section-kicker) {
  max-width: 760px;
  margin: 18px 0 0;
  color: #f5e9ec;
  font-size: 18px;
}

.button-white {
  min-width: 210px;
  background: var(--white);
  color: var(--burgundy);
}

.button-white:hover {
  background: var(--paper);
}

.final-cta {
  padding: 104px 0 110px;
  background: var(--mist);
}

.final-cta-inner {
  max-width: 880px;
  margin-left: max(24px, calc((100% - var(--shell)) / 2));
}

.final-cta .section-kicker {
  color: var(--teal);
}

.final-cta p:not(.section-kicker) {
  max-width: 700px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.button-dark {
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: var(--teal);
}

.final-actions .text-link {
  margin: 0 0 0 12px;
}

.site-footer {
  padding: 76px 0 26px;
  background: var(--ink);
  color: #dbe4e6;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 0.7fr;
  gap: 72px;
  padding-bottom: 58px;
}

.footer-brand {
  color: var(--white);
}

.footer-grid > div:first-child > p {
  max-width: 340px;
  margin: 22px 0 0;
  color: #acbcc1;
}

.footer-grid h2 {
  margin: 0 0 18px;
  color: var(--gold);
  font-family: var(--text);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-grid address {
  color: #c7d2d5;
  font-style: normal;
}

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

.footer-grid li + li {
  margin-top: 9px;
}

.footer-grid a {
  text-underline-offset: 4px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr;
  gap: 40px;
  padding-top: 24px;
  border-top: 1px solid #344249;
  color: #899ba1;
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.photo-credit {
  text-align: right;
}

.error-page {
  display: grid;
  min-height: 100svh;
  place-items: center;
  padding: 48px 24px;
  background: var(--mist);
}

.error-content {
  width: min(100%, 720px);
}

.error-content .brand {
  margin-bottom: 80px;
}

.error-content .section-kicker {
  color: var(--burgundy);
}

.error-content h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(52px, 8vw, 92px);
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: 0;
}

.error-content > p:not(.section-kicker) {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.error-secondary {
  border-color: var(--ink);
}

.error-secondary:hover {
  background: var(--white);
}

@media (max-width: 920px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

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

  .approach-grid article {
    padding: 28px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .approach-grid article:first-child {
    border-top: 0;
  }

  .office-section {
    grid-template-columns: 1fr;
  }

  .office-image-wrap {
    min-height: 460px;
  }

  .office-copy {
    max-width: none;
  }

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

  .footer-grid > div:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 16px;
  }

  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .header-inner {
    min-height: 76px;
  }

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

  .brand-kind {
    margin-top: 5px;
    font-size: 9px;
  }

  .header-call {
    width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .header-call span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .hero {
    min-height: 600px;
    height: 78svh;
  }

  .hero-image {
    object-position: 53% center;
  }

  .hero-content {
    padding-bottom: 52px;
  }

  .hero h1 {
    font-size: clamp(50px, 15vw, 68px);
    line-height: 0.95;
  }

  .hero-copy {
    margin-top: 22px;
    font-size: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .client-link {
    margin-top: 18px;
  }

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

  .proof-grid > div,
  .proof-grid > div:first-child {
    padding: 17px 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .proof-grid > div:first-child {
    border-top: 0;
  }

  .proof-grid strong {
    font-size: 20px;
  }

  .section {
    padding: 76px 0 82px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .approach-band h2,
  .office-copy h2,
  .urgent-band h2,
  .final-cta h2 {
    font-size: clamp(39px, 12vw, 52px);
  }

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

  .practice-item,
  .practice-item:nth-child(even) {
    padding: 28px 0 31px;
    border-left: 0;
  }

  .practice-item h3 {
    font-size: 27px;
  }

  .approach-band {
    padding: 76px 0 78px;
  }

  .approach-grid {
    margin-top: 40px;
  }

  .office-image-wrap {
    min-height: 360px;
  }

  .office-copy {
    padding: 66px 24px 72px;
  }

  .office-details {
    grid-template-columns: 1fr;
  }

  .office-details div:last-child {
    grid-column: auto;
  }

  .urgent-band {
    padding: 66px 0;
  }

  .urgent-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .urgent-inner .button {
    width: 100%;
  }

  .final-cta {
    padding: 76px 0 82px;
  }

  .final-cta-inner {
    max-width: none;
    margin-left: 0;
  }

  .final-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-actions .button {
    width: 100%;
  }

  .final-actions .text-link {
    margin: 8px 0 0;
  }

  .site-footer {
    padding-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .photo-credit {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .button {
    transition: none;
  }
}
