:root {
  --navy: #1a2b44;
  --navy-deep: #101d30;
  --slate: #707b7c;
  --orange: #e67e22;
  --orange-dark: #b84f00;
  --warm-white: #fbfaf7;
  --paper: #f3f0e9;
  --white: #ffffff;
  --ink: #172033;
  --muted: #526068;
  --line: #d9d9d3;
  --heading: "Avenir Next", Avenir, "Century Gothic", Futura, sans-serif;
  --body: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --shadow: 0 18px 45px rgba(16, 29, 48, 0.1);
  --radius: 6px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--warm-white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.09em;
  text-underline-offset: 0.2em;
}

a:hover {
  text-decoration-color: var(--orange);
}

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

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--navy);
  font-family: var(--heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 780px;
  margin-bottom: 1.5rem;
  font-size: clamp(2.65rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
}

h2 {
  max-width: 800px;
  margin-bottom: 1.25rem;
  font-size: clamp(2rem, 4vw, 3.55rem);
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

p:last-child {
  margin-bottom: 0;
}

.container {
  width: min(calc(100% - 3rem), var(--container));
  margin-inline: auto;
}

.section {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.75rem;
  left: 0.75rem;
  min-height: 44px;
  padding: 0.65rem 1rem;
  transform: translateY(-160%);
  border: 3px solid var(--orange);
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
}

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

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(112, 123, 124, 0.25);
  background: rgba(251, 250, 247, 0.96);
}

.header-inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-name {
  font-family: var(--heading);
  font-size: 1.32rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.brand-descriptor {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.desktop-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.65rem 0.8rem;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover {
  color: var(--orange-dark);
}

.desktop-nav .nav-contact {
  margin-left: 0.35rem;
  padding-inline: 1.1rem;
  background: var(--navy);
  color: var(--white);
}

.desktop-nav .nav-contact:hover {
  background: var(--orange-dark);
  color: var(--white);
}

.mobile-menu {
  display: none;
  position: relative;
}

.mobile-menu summary {
  min-width: 64px;
  min-height: 44px;
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  color: var(--navy);
  font-weight: 800;
  list-style: none;
  text-align: center;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-menu summary::after {
  display: block;
  width: 24px;
  height: 2px;
  margin: 0.25rem auto 0;
  background: var(--orange);
  box-shadow: 0 6px 0 var(--orange);
  content: "";
}

.mobile-menu[open] summary::after {
  box-shadow: none;
}

.mobile-menu nav {
  position: absolute;
  top: calc(100% + 0.8rem);
  right: 0;
  width: min(280px, calc(100vw - 2rem));
  padding: 0.65rem;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.mobile-menu nav a {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.mobile-menu nav a:last-child {
  border-bottom: 0;
  background: var(--navy);
  color: var(--white);
}

.eyebrow {
  margin-bottom: 1rem;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--paper);
}

.hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 10px;
  background: var(--orange);
  content: "";
}

.hero-grid {
  display: grid;
  min-height: min(780px, calc(100vh - 78px));
  align-items: center;
  grid-template-columns: minmax(0, 1.65fr) minmax(280px, 0.7fr);
  gap: clamp(3rem, 8vw, 7rem);
  padding-block: clamp(5rem, 10vw, 8.5rem);
}

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

.hero-lede {
  max-width: 720px;
  margin-bottom: 2.25rem;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.3rem;
  border: 2px solid var(--navy);
  font-weight: 800;
  text-decoration: none;
}

.button-primary {
  background: var(--navy);
  color: var(--white);
}

.button-primary:hover {
  border-color: var(--orange-dark);
  background: var(--orange-dark);
}

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

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

.hero-panel {
  position: relative;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-top: 8px solid var(--orange);
  background: var(--navy);
  box-shadow: var(--shadow);
  color: #e8edf3;
}

.anchor-graphic {
  position: relative;
  width: 116px;
  height: 116px;
  margin-bottom: 3rem;
}

.anchor-block {
  position: absolute;
  display: block;
  background: var(--white);
}

.anchor-block-one {
  top: 0;
  left: 0;
  width: 116px;
  height: 18px;
}

.anchor-block-two {
  top: 0;
  left: 49px;
  width: 18px;
  height: 98px;
}

.anchor-block-three {
  bottom: 0;
  left: 18px;
  width: 80px;
  height: 18px;
  border-right: 18px solid var(--orange);
  border-left: 18px solid var(--orange);
}

.panel-kicker {
  margin-bottom: 0.45rem;
  color: #c9d2dc;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.panel-statement {
  margin-bottom: 1rem;
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 750;
  line-height: 1.16;
}

.approach {
  padding-block: clamp(4rem, 7vw, 6rem);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.compact-heading {
  margin-bottom: 2.5rem;
}

.compact-heading h2 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.7rem);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
}

.approach-grid article {
  min-width: 0;
  padding: 2rem;
  border-right: 1px solid var(--line);
}

.approach-grid article:last-child {
  border-right: 0;
}

.approach-grid h3 {
  font-size: 1.12rem;
}

.approach-grid p {
  color: var(--muted);
  font-size: 0.94rem;
}

.number-chip {
  display: inline-flex;
  width: 34px;
  height: 34px;
  margin-bottom: 1.5rem;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.section-heading {
  max-width: 820px;
  margin-bottom: clamp(2.5rem, 6vw, 4.5rem);
}

.section-heading > p:last-child {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.08rem;
}

.services {
  background: var(--warm-white);
}

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

.service-card {
  position: relative;
  min-width: 0;
  min-height: 260px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-card::after {
  position: absolute;
  right: 8px;
  bottom: 8px;
  width: 44px;
  height: 8px;
  background: var(--orange);
  content: "";
}

.service-card h3 {
  max-width: 270px;
  margin-top: 3rem;
  font-size: 1.42rem;
}

.service-card p {
  color: var(--muted);
}

.service-index {
  color: var(--orange-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.service-card-featured {
  grid-column: span 3;
  min-height: 0;
  padding-right: clamp(2rem, 20vw, 17rem);
  background: var(--navy);
}

.service-card-featured h3,
.service-card-featured p {
  color: var(--white);
}

.service-card-featured h3 {
  max-width: none;
  margin-top: 2rem;
}

.service-card-featured p {
  max-width: 720px;
}

.audiences {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.audiences-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.audience-list {
  border-top: 5px solid var(--orange);
}

.audience-list article {
  display: grid;
  grid-template-columns: 90px minmax(130px, 0.7fr) minmax(0, 1.2fr);
  align-items: start;
  gap: 1.25rem;
  padding-block: 1.75rem;
  border-bottom: 1px solid #c9c9c2;
}

.audience-list span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.audience-list h3,
.audience-list p {
  margin-bottom: 0;
}

.audience-list p {
  color: var(--muted);
}

.process {
  position: relative;
  background: var(--navy);
  color: #dbe2e9;
}

.process::after {
  position: absolute;
  top: 8px;
  right: max(1.5rem, calc((100% - var(--container)) / 2));
  width: 88px;
  height: 14px;
  background: var(--orange);
  content: "";
}

.section-heading-light h2,
.process h3 {
  color: var(--white);
}

.section-heading-light .eyebrow {
  color: #ffab5d;
}

.process-list {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.process-list li {
  min-width: 0;
  padding: 0 1.75rem 0 0;
  border-top: 1px solid #627086;
}

.process-list li + li {
  padding-left: 1.75rem;
  border-left: 1px solid #627086;
}

.process-number {
  display: inline-flex;
  width: 48px;
  height: 48px;
  margin-top: -1px;
  margin-bottom: 2.2rem;
  align-items: center;
  justify-content: center;
  background: var(--orange);
  color: #261508;
  font-family: var(--heading);
  font-size: 1.15rem;
  font-weight: 900;
}

.process-list h3 {
  font-size: 1.3rem;
}

.process-list p {
  color: #dbe2e9;
  font-size: 0.95rem;
}

.about {
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(3rem, 8vw, 8rem);
}

.about-copy {
  padding-left: clamp(1.5rem, 4vw, 4rem);
  border-left: 6px solid var(--orange);
}

.about-copy p {
  color: var(--muted);
}

.about-copy .large-copy {
  color: var(--navy);
  font-family: var(--heading);
  font-size: clamp(1.3rem, 2.2vw, 1.75rem);
  font-weight: 650;
  line-height: 1.45;
}

.service-area {
  padding-top: 0;
  background: var(--white);
}

.area-card {
  display: grid;
  overflow: hidden;
  align-items: center;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1.58fr);
  background: var(--paper);
}

.area-label {
  display: flex;
  min-height: 340px;
  align-items: center;
  justify-content: center;
  background: var(--slate);
  color: var(--white);
  font-family: var(--heading);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 800;
  letter-spacing: -0.08em;
}

.area-card > div:last-child {
  padding: clamp(2rem, 6vw, 5rem);
}

.area-card h2 {
  max-width: 680px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.area-card p:not(.eyebrow) {
  max-width: 670px;
  color: var(--muted);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 0.65rem;
  color: var(--navy);
  font-weight: 850;
}

.faq {
  background: var(--warm-white);
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(3rem, 8vw, 7rem);
}

.faq-list {
  border-top: 5px solid var(--navy);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  min-height: 72px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 1rem;
  color: var(--navy);
  font-family: var(--heading);
  font-size: 1.05rem;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  display: inline-flex;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  color: var(--orange-dark);
  content: "+";
  font-size: 1.4rem;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.contact {
  position: relative;
  background: var(--orange);
  color: #261508;
}

.contact::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: calc((100% - var(--container)) / 2);
  min-width: 8px;
  background: var(--navy);
  content: "";
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
  gap: clamp(3rem, 9vw, 8rem);
}

.contact .eyebrow {
  color: #3c210c;
}

.contact h2 {
  color: var(--navy-deep);
}

.contact-grid > div > p:last-child {
  max-width: 640px;
}

.contact-list {
  display: flex;
  margin: 0;
  flex-direction: column;
  border-top: 5px solid var(--navy);
  font-style: normal;
}

.contact-list a {
  display: grid;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  padding-block: 1rem;
  border-bottom: 1px solid rgba(26, 43, 68, 0.45);
  color: var(--navy-deep);
  font-weight: 800;
  overflow-wrap: anywhere;
  text-decoration: none;
}

.contact-list a:hover {
  background: rgba(255, 255, 255, 0.18);
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.site-footer {
  padding-block: 2.5rem;
  background: var(--navy-deep);
  color: #dbe2e9;
}

.footer-grid {
  display: grid;
  align-items: center;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem;
}

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

.footer-grid p {
  margin: 0;
  text-align: center;
}

.footer-grid .privacy-note {
  justify-self: end;
  color: #b8c2cd;
  font-size: 0.82rem;
  text-align: right;
}

@media (max-width: 920px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  .hero-grid {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: grid;
    align-items: end;
    grid-template-columns: 130px 1fr;
    column-gap: 2rem;
  }

  .anchor-graphic {
    grid-row: span 3;
    margin-bottom: 0;
  }

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

  .approach-grid article:nth-child(2) {
    border-right: 0;
  }

  .approach-grid article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

  .service-card-featured {
    grid-column: span 2;
  }

  .audiences-layout,
  .about-grid,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem 0;
  }

  .process-list li:nth-child(3) {
    padding-left: 0;
    border-left: 0;
  }

  .about-copy {
    max-width: 780px;
  }

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

  .footer-grid p {
    text-align: right;
  }

  .footer-grid .privacy-note {
    grid-column: span 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--container));
  }

  .header-inner {
    min-height: 70px;
    gap: 0.5rem;
  }

  .brand-descriptor {
    font-size: 0.6rem;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero::before {
    width: 6px;
  }

  .hero-grid {
    padding-block: 4.25rem;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
  }

  .button-row,
  .button {
    width: 100%;
  }

  .hero-panel {
    display: block;
  }

  .anchor-graphic {
    width: 92px;
    height: 92px;
    margin-bottom: 2.5rem;
  }

  .anchor-block-one {
    width: 92px;
    height: 15px;
  }

  .anchor-block-two {
    left: 39px;
    width: 15px;
    height: 78px;
  }

  .anchor-block-three {
    left: 14px;
    width: 64px;
    height: 15px;
    border-right-width: 15px;
    border-left-width: 15px;
  }

  .approach-grid,
  .services-grid,
  .process-list {
    grid-template-columns: 1fr;
  }

  .approach-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .approach-grid article:last-child {
    border-bottom: 0;
  }

  .service-card-featured {
    grid-column: auto;
    padding-right: 2rem;
  }

  .audience-list article {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .process-list {
    gap: 2.5rem;
  }

  .process-list li,
  .process-list li + li {
    padding: 0;
    border-top: 1px solid #627086;
    border-left: 0;
  }

  .process-number {
    margin-bottom: 1.5rem;
  }

  .about-copy {
    padding-left: 1.5rem;
  }

  .area-card {
    grid-template-columns: 1fr;
  }

  .area-label {
    min-height: 180px;
  }

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

  .contact {
    padding-block: 5.5rem;
  }

  .contact h2 {
    margin-bottom: 1.5rem;
    font-size: clamp(1.8rem, 7.5vw, 2.2rem);
    line-height: 1.16;
  }

  .contact-list a {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

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

  .footer-grid p,
  .footer-grid .privacy-note {
    grid-column: auto;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 360px) {
  .brand-copy {
    max-width: 155px;
  }

  .brand-descriptor {
    white-space: normal;
  }

  .mobile-menu summary {
    min-width: 54px;
    padding-inline: 0.45rem;
  }

  .service-card,
  .hero-panel {
    padding: 1.5rem;
  }

  .area-card > div:last-child {
    padding: 1.5rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
