:root {
  --navy: #041c38;
  --navy-soft: #0a2948;
  --copper: #c97133;
  --copper-light: #e1a06d;
  --olive: #555e2c;
  --ink: #102032;
  --stone: #f3f0ea;
  --paper: #fbfaf7;
  --white: #ffffff;
  --line: rgba(4, 28, 56, 0.14);
  --muted: #5f6b77;
  --serif: ui-serif, "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, Aptos, "Segoe UI", Helvetica, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body::selection {
  color: var(--white);
  background: var(--copper);
}

a {
  color: inherit;
}

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

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

h1,
h2 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.99;
}

h2 {
  margin-bottom: 1.5rem;
  font-size: clamp(2.55rem, 5vw, 5.25rem);
}

h3 {
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.25;
}

.shell {
  width: min(100% - 3rem, 1200px);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  border-bottom: 1px solid rgba(4, 28, 56, 0.09);
  background: rgba(251, 250, 247, 0.94);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 5rem;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 0.8rem;
  color: var(--navy);
  text-decoration: none;
}

.brand-mark {
  position: relative;
  display: block;
  width: 3rem;
  height: 3rem;
  flex: 0 0 auto;
  overflow: hidden;
  background: var(--white);
}

.brand-mark img {
  position: absolute;
  top: -0.45rem;
  left: 50%;
  width: 7rem;
  max-width: none;
  height: auto;
  transform: translateX(-50%);
}

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

.brand-copy strong {
  font-size: 1.08rem;
  letter-spacing: 0.17em;
}

.brand-copy small {
  margin-top: 0.42rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(1.25rem, 2.4vw, 2.35rem);
}

.main-nav a {
  position: relative;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: -0.45rem;
  left: 0;
  height: 2px;
  content: "";
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  padding: 0.7rem 1rem;
  border: 1px solid var(--navy);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  color: var(--white);
  background: var(--navy);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(2.75rem, 6vw, 6.4rem) 0 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(201, 113, 51, 0.12), transparent 29rem),
    var(--paper);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(420px, 1.07fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 7rem);
}

.eyebrow {
  display: flex;
  align-items: center;
  margin-bottom: 1.55rem;
  gap: 0.7rem;
  color: var(--copper);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: currentColor;
}

.eyebrow.light {
  color: var(--copper-light);
}

.hero h1 {
  max-width: 12ch;
  margin-bottom: 1.85rem;
  color: var(--navy);
  font-size: clamp(3.4rem, 6.2vw, 6.5rem);
}

.hero h1 em {
  color: var(--copper);
  font-weight: inherit;
}

.hero-lead {
  max-width: 38rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.45vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.8rem 1.25rem;
  gap: 0.9rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

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

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--navy-soft);
}

.button-ghost {
  border-color: var(--line);
  color: var(--navy);
  background: rgba(255, 255, 255, 0.55);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--copper);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  margin: 2rem 0 0;
  padding: 0;
  gap: 0.65rem 1.4rem;
  color: var(--navy);
  font-size: 0.83rem;
  font-weight: 700;
  list-style: none;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 0.52rem;
}

.hero-points li::before {
  width: 0.43rem;
  height: 0.43rem;
  border-radius: 50%;
  content: "";
  background: var(--olive);
}

.hero-visual {
  position: relative;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: -1.2rem;
  right: -1.2rem;
  width: 68%;
  height: 94%;
  content: "";
  background: var(--copper);
}

.hero-visual img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: 65% center;
  filter: saturate(0.88) contrast(1.02);
}

.hero-visual figcaption {
  position: absolute;
  right: -0.75rem;
  bottom: 1.3rem;
  display: flex;
  align-items: center;
  min-width: 13rem;
  padding: 1rem 1.15rem;
  gap: 0.9rem;
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.caption-index {
  padding-right: 0.85rem;
  border-right: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
}

.hero-ribbon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.2rem;
  margin-top: clamp(3rem, 6vw, 5rem);
  gap: clamp(1.2rem, 4vw, 4.5rem);
  color: rgba(255, 255, 255, 0.74);
  background: var(--navy);
  font-size: clamp(0.72rem, 1.2vw, 0.88rem);
  font-weight: 750;
  letter-spacing: 0.18em;
}

.hero-ribbon i {
  width: 0.36rem;
  height: 0.36rem;
  border-radius: 50%;
  background: var(--copper);
}

.section {
  padding: clamp(5.5rem, 10vw, 9.5rem) 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  margin-bottom: 3.5rem;
  gap: 2.5rem 5rem;
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -0.5rem;
}

.section-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--navy);
}

.section-heading > p:last-child {
  max-width: 30rem;
  margin: 0 0 0.45rem;
  color: var(--muted);
  font-size: 1.06rem;
}

.services {
  background: var(--paper);
}

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

.service-card {
  position: relative;
  min-height: 29rem;
  padding: clamp(1.8rem, 3vw, 2.7rem);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.45);
}

.service-card.featured {
  color: var(--white);
  background: var(--navy);
}

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

.service-card.featured p,
.service-card.featured li {
  color: rgba(255, 255, 255, 0.75);
}

.card-number {
  margin-bottom: 6rem;
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.service-card h3 {
  max-width: 12ch;
  margin-bottom: 1.1rem;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 500;
}

.service-card > p {
  min-height: 5.6rem;
  color: var(--muted);
}

.service-card ul {
  margin: 1.5rem 0 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid currentColor;
  color: var(--muted);
  font-size: 0.93rem;
  list-style: none;
}

.service-card li {
  position: relative;
  margin-top: 0.8rem;
  padding-left: 1.15rem;
}

.service-card li::before {
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  content: "";
  background: var(--copper);
}

.business {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--navy);
  background-size: 4.5rem 4.5rem;
}

.business-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(4rem, 9vw, 9rem);
}

.business h2 {
  max-width: 12ch;
  color: var(--white);
}

.business-intro > p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
}

.sector-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.55rem;
}

.sector-list span {
  padding: 0.58rem 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.19);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.8rem;
  font-weight: 700;
}

.process {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.process article {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  padding: 1.45rem 0;
  gap: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.process article > span {
  color: var(--copper-light);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.process h3 {
  margin-bottom: 0.25rem;
  color: var(--white);
  font-size: 1.05rem;
}

.process p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 0.91rem;
}

.engagement {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  margin-top: clamp(4rem, 7vw, 6rem);
  padding-top: 2rem;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.engagement > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.engagement > div {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
}

.engagement > div span:not(:last-child)::after {
  margin-left: 1.4rem;
  color: var(--copper);
  content: "·";
}

.engagement > a {
  color: var(--copper-light);
  font-size: 0.88rem;
  font-weight: 750;
  text-decoration: none;
}

.engagement > a span {
  margin-left: 0.5rem;
}

.territory {
  background: var(--stone);
}

.territory-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: 3rem 6rem;
}

.territory-heading h2 {
  max-width: 12ch;
  margin-bottom: 0;
  color: var(--navy);
}

.territory-heading > p {
  max-width: 31rem;
  margin-bottom: 0.6rem;
  color: var(--muted);
  font-size: 1.07rem;
}

.territory-lines {
  margin-top: 5rem;
  border-top: 1px solid var(--line);
}

.territory-lines article {
  display: grid;
  grid-template-columns: 3.5rem 0.8fr 1fr;
  align-items: center;
  min-height: 7.2rem;
  gap: 2rem;
  border-bottom: 1px solid var(--line);
}

.territory-lines article > span {
  color: var(--copper);
  font-family: var(--serif);
  font-size: 1.15rem;
}

.territory-lines h3,
.territory-lines p {
  margin-bottom: 0;
}

.territory-lines h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.3vw, 2.05rem);
  font-weight: 500;
}

.territory-lines p {
  color: var(--muted);
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  align-items: stretch;
  gap: clamp(3rem, 9vw, 9rem);
}

.about-identity {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 30rem;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 1.5rem 4rem rgba(4, 28, 56, 0.08);
}

.about-identity img {
  width: min(100%, 30rem);
  height: auto;
}

.about-copy {
  align-self: center;
}

.about-copy h2 {
  max-width: 13ch;
  color: var(--navy);
}

.about-lead {
  max-width: 42rem;
  color: var(--navy);
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2.2vw, 1.85rem);
  line-height: 1.4;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 44rem;
  color: var(--muted);
}

.values {
  display: flex;
  flex-wrap: wrap;
  margin-top: 2rem;
  gap: 0.55rem;
}

.values span {
  padding: 0.56rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 750;
}

.contact {
  padding: clamp(5rem, 9vw, 8rem) 0;
  color: var(--white);
  background: var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(4rem, 10vw, 10rem);
}

.contact h2 {
  max-width: 13ch;
  color: var(--white);
  font-size: clamp(3rem, 5vw, 5.4rem);
}

.contact-copy > p:not(.eyebrow) {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.contact-actions {
  margin-top: 2rem;
}

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

.button-copper:hover,
.button-copper:focus-visible {
  background: var(--white);
}

.phone-link {
  padding: 0.7rem;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.35rem;
}

.contact-details {
  align-self: end;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-style: normal;
}

.contact-details > div {
  padding: 1.4rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-details span {
  display: block;
  margin-bottom: 0.42rem;
  color: var(--copper-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.contact-details a:not(.text-link),
.contact-details p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.96rem;
}

.contact-details a:not(.text-link) {
  text-underline-offset: 0.28rem;
}

.text-link {
  display: inline-block;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.site-footer {
  padding: 3rem 0 2rem;
  color: var(--navy);
  background: var(--paper);
}

.footer-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-meta {
  text-align: right;
}

.footer-meta p {
  margin: 0.2rem 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.legal-note {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.legal-note p {
  max-width: 68rem;
  margin: 0;
  color: var(--muted);
  font-size: 0.73rem;
  line-height: 1.55;
}

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

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

  .main-nav {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.9fr;
    gap: 2.25rem;
  }

  .hero h1 {
    font-size: clamp(3.3rem, 7.5vw, 5.4rem);
  }

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

  .service-card {
    min-height: auto;
  }

  .card-number {
    margin-bottom: 3rem;
  }

  .service-card > p {
    min-height: auto;
  }

  .business-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .process {
    margin-top: 1rem;
  }

  .engagement {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .territory-heading {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 3rem;
  }
}

@media (max-width: 760px) {
  .shell {
    width: min(100% - 2rem, 1200px);
  }

  .site-header {
    position: relative;
  }

  .header-inner {
    min-height: 4.5rem;
    gap: 0.8rem;
  }

  .brand-copy small {
    display: none;
  }

  .header-cta {
    padding: 0.62rem 0.85rem;
    font-size: 0.78rem;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.25rem, 15vw, 5rem);
  }

  .hero-visual {
    margin-top: 1.25rem;
  }

  .hero-visual img {
    aspect-ratio: 4 / 4.6;
  }

  .hero-visual::before {
    right: -0.5rem;
  }

  .hero-visual figcaption {
    right: -0.25rem;
  }

  .hero-ribbon {
    justify-content: flex-start;
    overflow: hidden;
    padding-inline: 1rem;
    gap: 1rem;
    white-space: nowrap;
  }

  .section-heading,
  .territory-heading {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .section-heading .eyebrow {
    margin-bottom: 0;
  }

  .territory-lines article {
    grid-template-columns: 2.3rem 1fr;
    padding: 1.4rem 0;
    gap: 0.9rem;
  }

  .territory-lines p {
    grid-column: 2;
  }

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

  .about-identity {
    min-height: 22rem;
  }

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

  .footer-meta {
    text-align: left;
  }
}

@media (max-width: 430px) {
  .brand-copy strong {
    font-size: 0.95rem;
  }

  .brand-mark {
    width: 2.65rem;
    height: 2.65rem;
  }

  .brand-mark img {
    top: -0.4rem;
    width: 6.2rem;
  }

  .header-cta {
    border: 0;
    text-decoration: underline;
    text-underline-offset: 0.3rem;
  }

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

  .hero-points {
    flex-direction: column;
  }

  .hero-visual figcaption {
    min-width: 11.5rem;
  }

  .engagement > div {
    flex-direction: column;
    gap: 0.4rem;
  }

  .engagement > div span::after {
    display: none;
  }
}

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

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