
:root {
  --ink: #171918;
  --ink-soft: #4c504d;
  --paper: #ffffff;
  --soft: #f2f4f2;
  --line: #d9ddda;
  --coral: #e6674e;
  --coral-dark: #b84431;
  --teal: #2b6f69;
  --lime: #cbd84b;
  --shell: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "Helvetica Neue", Helvetica, Arial, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

body,
button,
a {
  letter-spacing: 0;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 3px;
  background: var(--ink);
  color: var(--coral);
  font-size: 23px;
  font-weight: 800;
  line-height: 1;
}

.brand-name {
  display: flex;
  flex-direction: column;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.05;
}

.brand-name small {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.primary-nav {
  display: flex;
  justify-self: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 650;
}

.primary-nav a,
.footer-links a {
  transition: color 160ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--coral-dark);
}

.header-contact {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 3px;
  padding: 8px 19px;
  font-size: 14px;
  font-weight: 700;
  transition:
    background 160ms ease,
    color 160ms ease;
}

.header-contact:hover,
.header-contact:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.hero {
  position: relative;
  display: flex;
  height: calc(100svh - 155px);
  min-height: 560px;
  max-height: 720px;
  overflow: hidden;
  background: var(--soft);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-wash {
  position: absolute;
  inset: 0 auto 0 0;
  width: 58%;
  background: rgba(249, 250, 248, 0.91);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
}

.hero-copy {
  width: 50%;
  max-width: 590px;
  padding: 60px 0;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 570px;
  margin-bottom: 26px;
  font-size: 76px;
  font-weight: 760;
  line-height: 0.98;
}

.hero-lede {
  max-width: 520px;
  margin-bottom: 38px;
  color: #353936;
  font-size: 21px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

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

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--ink);
  color: var(--paper);
}

.button--dark {
  max-width: 100%;
  background: var(--ink);
  color: var(--paper);
}

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

.text-link {
  border-bottom: 1px solid var(--ink);
  padding: 4px 0;
  font-size: 14px;
  font-weight: 750;
}

.text-link:hover,
.text-link:focus-visible {
  border-bottom-color: var(--coral);
  color: var(--coral-dark);
}

.signal-band {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

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

.signal-grid > div {
  display: flex;
  min-height: 98px;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  padding: 18px 38px;
}

.signal-grid > div:first-child {
  border-left: 1px solid var(--line);
}

.signal-grid strong {
  font-size: 17px;
  line-height: 1.25;
}

.signal-grid span {
  margin-top: 4px;
  color: var(--ink-soft);
  font-size: 13px;
}

.section {
  padding: 112px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.6fr 1.35fr 0.9fr;
  align-items: start;
  gap: 42px;
  margin-bottom: 78px;
}

.section-heading .eyebrow {
  padding-top: 10px;
}

.section-heading h2,
.company-section h2,
.contact-section h2,
.legal-hero h1 {
  margin-bottom: 0;
  font-size: 44px;
  font-weight: 740;
  line-height: 1.08;
}

.section-heading > p:last-child {
  margin-bottom: 0;
  color: var(--ink-soft);
  font-size: 17px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 48px;
}

.service-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  border-top: 2px solid var(--ink);
  padding-top: 26px;
}

.service-item > span {
  color: var(--coral-dark);
  font-size: 13px;
  font-weight: 800;
}

.service-item h3 {
  margin-bottom: 12px;
  font-size: 25px;
  font-weight: 720;
  line-height: 1.15;
}

.service-item p {
  grid-column: 2;
  max-width: 460px;
  margin-bottom: 0;
  color: var(--ink-soft);
}

.approach-section {
  padding: 108px 0 118px;
  background: var(--ink);
  color: var(--paper);
}

.section-heading--light {
  grid-template-columns: 0.6fr 2.3fr;
  max-width: 930px;
}

.section-heading--light h2 {
  font-size: 48px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #5d625f;
}

.approach-step {
  min-height: 260px;
  border-right: 1px solid #5d625f;
  padding: 30px 34px 26px 0;
}

.approach-step + .approach-step {
  padding-left: 34px;
}

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

.approach-step > span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 52px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-size: 13px;
  font-weight: 800;
}

.approach-step h3 {
  margin-bottom: 10px;
  font-size: 26px;
  line-height: 1.2;
}

.approach-step p {
  max-width: 290px;
  margin-bottom: 0;
  color: #c9ceca;
}

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

.company-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
}

.company-section .eyebrow {
  margin-bottom: 34px;
}

.company-copy {
  padding-top: 2px;
}

.large-copy {
  margin-bottom: 28px;
  font-size: 24px;
  font-weight: 560;
  line-height: 1.45;
}

.company-copy > p:not(.large-copy) {
  max-width: 650px;
  color: var(--ink-soft);
}

.company-details {
  margin-top: 52px;
  margin-bottom: 0;
  border-top: 1px solid #bec4bf;
}

.company-details > div {
  display: grid;
  grid-template-columns: 120px 1fr;
  border-bottom: 1px solid #bec4bf;
  padding: 16px 0;
}

.company-details dt {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.company-details dd {
  margin-bottom: 0;
  font-weight: 650;
  overflow-wrap: anywhere;
}

.company-details a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.contact-section {
  padding: 82px 0;
  background: var(--coral);
}

.contact-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.contact-section .eyebrow {
  margin-bottom: 14px;
  color: var(--ink);
}

.contact-section h2 {
  max-width: 680px;
}

.site-footer {
  padding: 76px 0 24px;
  background: #101211;
  color: var(--paper);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 70px;
  padding-bottom: 62px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 24px;
  font-weight: 760;
}

.footer-grid p,
.footer-grid address {
  max-width: 350px;
  margin-bottom: 0;
  color: #b8bdb9;
  font-size: 14px;
  font-style: normal;
}

.footer-label {
  margin-bottom: 15px !important;
  color: var(--paper) !important;
  font-size: 12px !important;
  font-weight: 800;
  text-transform: uppercase;
}

.footer-grid > div:nth-child(3) > a {
  display: inline-block;
  max-width: 100%;
  color: var(--paper);
  font-size: 14px;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: flex;
  gap: 22px;
  margin-top: 25px;
  color: #b8bdb9;
  font-size: 13px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #3c403e;
  padding-top: 21px;
  color: #8f9691;
  font-size: 12px;
}

.legal-hero {
  padding: 92px 0 84px;
  background: var(--ink);
  color: var(--paper);
}

.legal-hero-inner {
  max-width: 930px;
}

.legal-hero h1 {
  margin-bottom: 22px;
  font-size: 58px;
}

.legal-hero-inner > p:last-child {
  max-width: 760px;
  margin-bottom: 0;
  color: #c9ceca;
  font-size: 19px;
}

.legal-copy {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0 108px;
}

.legal-copy section + section {
  margin-top: 48px;
}

.legal-copy h2 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.25;
}

.legal-copy p {
  margin-bottom: 0;
  color: #3f4441;
}

.legal-copy a {
  color: var(--coral-dark);
  font-weight: 700;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .shell {
    width: min(var(--shell), calc(100% - 40px));
  }

  .primary-nav {
    gap: 24px;
  }

  .hero {
    min-height: 550px;
  }

  .hero-wash {
    width: 64%;
  }

  .hero-copy {
    width: 59%;
  }

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

  .section-heading {
    grid-template-columns: 0.45fr 1.5fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }

  .section-heading--light {
    grid-template-columns: 0.45fr 1.5fr;
  }

  .company-grid {
    gap: 56px;
  }

  .contact-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 32px;
  }
}

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

  .header-inner {
    grid-template-columns: 1fr auto;
    min-height: 0;
    gap: 14px 18px;
    padding: 14px 0 12px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    font-size: 20px;
  }

  .header-contact {
    min-height: 38px;
    padding: 7px 14px;
  }

  .primary-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-self: stretch;
    justify-content: space-between;
    gap: 18px;
    overflow-x: auto;
    font-size: 13px;
  }

  .hero {
    height: calc(100svh - 145px);
    min-height: 520px;
    max-height: 650px;
    align-items: flex-end;
  }

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

  .hero-wash {
    inset: auto 0 0;
    width: 100%;
    height: 64%;
    background: rgba(249, 250, 248, 0.94);
  }

  .hero-inner {
    align-items: flex-end;
  }

  .hero-copy {
    width: 100%;
    max-width: 540px;
    padding: 34px 0 38px;
  }

  .eyebrow {
    margin-bottom: 14px;
  }

  .hero h1 {
    margin-bottom: 18px;
    font-size: 46px;
    line-height: 1;
  }

  .hero-lede {
    margin-bottom: 26px;
    font-size: 17px;
    line-height: 1.45;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }

  .button {
    min-height: 46px;
  }

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

  .signal-grid > div {
    min-height: 76px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
    padding: 14px 20px;
  }

  .signal-grid > div:last-child {
    border-bottom: 0;
  }

  .section {
    padding: 76px 0;
  }

  .section-heading,
  .section-heading--light {
    display: block;
    margin-bottom: 50px;
  }

  .section-heading h2,
  .company-section h2,
  .contact-section h2,
  .section-heading--light h2 {
    font-size: 36px;
  }

  .section-heading > p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }

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

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

  .approach-section {
    padding: 76px 0 84px;
  }

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

  .approach-step,
  .approach-step + .approach-step {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #5d625f;
    padding: 28px 0 34px;
  }

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

  .approach-step > span {
    margin-bottom: 22px;
  }

  .company-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .large-copy {
    font-size: 21px;
  }

  .company-details > div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-section {
    padding: 66px 0;
  }

  .button--dark {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
    font-size: 13px;
    overflow-wrap: anywhere;
  }

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

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 48px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .legal-hero {
    padding: 66px 0 60px;
  }

  .legal-hero h1 {
    font-size: 42px;
  }

  .legal-hero-inner > p:last-child {
    font-size: 17px;
  }

  .legal-copy {
    width: min(760px, calc(100% - 32px));
    padding: 64px 0 82px;
  }
}

@media (max-width: 390px) {
  .hero h1 {
    font-size: 40px;
  }

  .hero-copy {
    padding-bottom: 30px;
  }

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

  .brand-name small {
    font-size: 9px;
  }
}

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

  .button,
  .primary-nav a,
  .footer-links a {
    transition: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 560ms ease,
    transform 560ms ease;
}

.reveal--in {
  opacity: 1;
  transform: translateY(0);
}

.hero-copy {
  animation: hero-rise 700ms ease both;
}

.hero-image {
  animation: hero-fade 1100ms ease both;
}

@keyframes hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-fade {
  from {
    opacity: 0.72;
    transform: scale(1.04);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero-copy,
  .hero-image {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}
