:root {
  --ink: #10263a;
  --ink-soft: #3f5363;
  --navy: #0c2235;
  --navy-deep: #071824;
  --cream: #f3f0e9;
  --paper: #faf9f6;
  --white: #ffffff;
  --copper: #c78345;
  --copper-light: #dda365;
  --line: rgba(16, 38, 58, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

.site-header {
  align-items: center;
  background: rgba(250, 249, 246, 0.94);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  height: 88px;
  padding: 0 clamp(24px, 5vw, 80px);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
}

.brand {
  align-items: center;
  display: inline-flex;
  gap: 12px;
  justify-self: start;
}

.brand-mark {
  align-items: center;
  background: var(--navy);
  color: var(--copper-light);
  display: inline-flex;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  height: 40px;
  justify-content: center;
  width: 40px;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 8px;
  letter-spacing: 0.2em;
  margin-top: 5px;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 600;
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--copper);
}

.header-cta {
  align-items: center;
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 10px;
  justify-self: end;
  letter-spacing: 0.03em;
}

.header-cta span,
.button span {
  color: var(--copper);
  font-size: 17px;
}

.hero {
  background:
    linear-gradient(rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0.32)),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(16, 38, 58, 0.035) 25%);
  display: grid;
  gap: clamp(52px, 8vw, 130px);
  grid-template-columns: minmax(0, 1.3fr) minmax(330px, 0.7fr);
  min-height: calc(100vh - 88px - 72px);
  padding: clamp(72px, 9vw, 132px) clamp(24px, 6.5vw, 104px) clamp(68px, 8vw, 112px);
}

.hero-copy {
  align-self: center;
  max-width: 820px;
}

.eyebrow {
  align-items: center;
  color: var(--copper);
  display: flex;
  font-size: 11px;
  font-weight: 800;
  gap: 12px;
  letter-spacing: 0.17em;
  margin: 0 0 28px;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--copper);
  content: "";
  height: 1px;
  width: 34px;
}

h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(56px, 6.2vw, 94px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.98;
  margin: 0;
  max-width: 950px;
}

.hero-lede {
  color: var(--ink-soft);
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.65;
  margin: 32px 0 0;
  max-width: 710px;
}

.hero-actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
}

.button {
  align-items: center;
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  gap: 34px;
  justify-content: center;
  padding: 18px 22px;
  transition: background 180ms ease, transform 180ms ease;
}

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

.button-primary:hover,
.button-primary:focus-visible {
  background: #15354e;
  transform: translateY(-2px);
}

.text-link {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: inline-flex;
  font-size: 12px;
  font-weight: 700;
  gap: 12px;
  padding-bottom: 5px;
  transition: color 180ms ease;
}

.hero-panel {
  align-self: center;
  background: var(--navy);
  box-shadow: 18px 20px 0 var(--cream);
  color: var(--white);
  max-width: 470px;
  padding: clamp(34px, 4vw, 52px);
  position: relative;
}

.hero-panel::before {
  background: var(--copper);
  content: "";
  height: 4px;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
}

.panel-label {
  color: #aeb9c1;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.17em;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.hero-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-panel li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  padding: 24px 0;
}

.hero-panel li span {
  color: var(--copper-light);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.hero-panel li p {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.45;
  margin: 0;
}

.panel-footer {
  align-items: flex-start;
  color: #c5cdd2;
  display: flex;
  font-size: 11px;
  gap: 10px;
  line-height: 1.5;
  margin-top: 26px;
}

.pulse {
  background: var(--copper-light);
  border-radius: 999px;
  box-shadow: 0 0 0 4px rgba(221, 163, 101, 0.14);
  flex: 0 0 auto;
  height: 6px;
  margin-top: 5px;
  width: 6px;
}

.credibility {
  align-items: center;
  background: var(--cream);
  color: var(--ink-soft);
  display: flex;
  gap: clamp(24px, 4vw, 62px);
  justify-content: center;
  min-height: 72px;
  padding: 18px 24px;
}

.credibility p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin: 0;
  text-align: center;
  text-transform: uppercase;
}

.credibility span {
  background: var(--copper);
  border-radius: 999px;
  height: 3px;
  width: 3px;
}

.section-shell {
  padding: clamp(88px, 10vw, 150px) clamp(24px, 6.5vw, 104px);
}

.section-heading {
  align-items: end;
  display: grid;
  gap: clamp(40px, 8vw, 130px);
  grid-template-columns: 1.3fr 0.7fr;
  margin-bottom: 64px;
}

.section-kicker {
  color: var(--copper);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  margin: 0 0 20px;
  text-transform: uppercase;
}

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

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(40px, 4.5vw, 66px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 1.06;
  margin: 0;
}

.section-heading > p,
.approach-intro > p:last-child,
.about-copy > p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
  margin: 0;
}

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

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

.service-card {
  min-height: 470px;
  padding: 42px clamp(24px, 3.2vw, 50px) 46px;
  position: relative;
}

.service-card + .service-card {
  border-left: 1px solid var(--line);
}

.featured-card {
  background: var(--cream);
}

.service-number {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
  margin-bottom: 64px;
}

.service-card h3,
.fit-band h3,
.step h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 2.2vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.18;
  margin: 0;
}

.service-card > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
  margin: 22px 0 28px;
}

.service-card ul,
.fit-band ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-card li {
  align-items: baseline;
  border-top: 1px solid var(--line);
  color: var(--ink-soft);
  display: flex;
  font-size: 12px;
  gap: 10px;
  line-height: 1.45;
  padding: 13px 0;
}

.service-card li::before {
  color: var(--copper);
  content: "+";
  font-weight: 700;
}

.fit-band {
  background: var(--navy);
  color: var(--white);
  display: grid;
  gap: clamp(50px, 9vw, 150px);
  grid-template-columns: 0.8fr 1.2fr;
  margin-top: 64px;
  padding: clamp(42px, 5vw, 72px);
}

.fit-band h3 {
  max-width: 480px;
}

.fit-band li {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #d4dce1;
  font-size: 14px;
  line-height: 1.5;
  padding: 16px 0 16px 26px;
  position: relative;
}

.fit-band li::before {
  background: var(--copper-light);
  content: "";
  height: 5px;
  left: 1px;
  position: absolute;
  top: 23px;
  transform: rotate(45deg);
  width: 5px;
}

.approach {
  background: var(--cream);
  display: grid;
  gap: clamp(64px, 9vw, 138px);
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
}

.approach-intro {
  align-self: start;
  position: sticky;
  top: 134px;
}

.approach-intro h2 {
  margin-bottom: 26px;
}

.approach-intro > p:last-child {
  max-width: 440px;
}

.steps {
  counter-reset: steps;
}

.step {
  border-top: 1px solid rgba(16, 38, 58, 0.22);
  padding: 38px 0 52px;
}

.step-top {
  align-items: center;
  display: flex;
  gap: 16px;
  margin-bottom: 26px;
}

.step-top span {
  color: var(--copper);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.step-top p {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin: 0;
  text-transform: uppercase;
}

.step > p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.75;
  margin: 20px 0;
  max-width: 700px;
}

.step > strong {
  color: var(--ink);
  font-size: 12px;
}

.about {
  background: var(--white);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}

.about-quote {
  background: var(--navy);
  color: var(--white);
  padding: clamp(72px, 8vw, 128px) clamp(38px, 6vw, 90px);
}

.about-quote blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 3.3vw, 48px);
  letter-spacing: -0.035em;
  line-height: 1.22;
  margin: 56px 0 72px;
}

.quote-credit {
  font-size: 12px;
  font-weight: 700;
  margin: 0;
}

.quote-credit span {
  color: #9dabb5;
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.08em;
  margin-top: 7px;
  text-transform: uppercase;
}

.about-copy {
  align-self: center;
  padding: clamp(80px, 10vw, 150px) clamp(40px, 8vw, 130px);
}

.about-copy h2 {
  font-size: clamp(38px, 4vw, 58px);
  margin-bottom: 38px;
}

.about-copy > p {
  margin-top: 18px;
  max-width: 720px;
}

.final-cta {
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  display: flex;
  flex-direction: column;
  padding: clamp(88px, 11vw, 164px) 24px;
  text-align: center;
}

.final-cta h2 {
  max-width: 870px;
}

.final-cta > p:not(.section-kicker) {
  color: #bdc7ce;
  font-size: 16px;
  line-height: 1.7;
  margin: 28px auto 36px;
  max-width: 660px;
}

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

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

footer {
  align-items: center;
  background: var(--paper);
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr auto 1fr;
  padding: 38px clamp(24px, 6.5vw, 104px);
}

footer > p,
footer > div {
  color: var(--ink-soft);
  font-size: 10px;
  line-height: 1.6;
}

footer > p {
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

footer > div {
  display: flex;
  flex-direction: column;
  gap: 5px;
  justify-self: end;
  text-align: right;
}

footer > div a {
  color: var(--ink);
  font-weight: 700;
}

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

  .desktop-nav {
    display: none;
  }

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

  .hero-panel {
    max-width: 640px;
  }

  .section-heading,
  .approach,
  .about {
    grid-template-columns: 1fr;
  }

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

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

  .service-card + .service-card {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-number {
    margin-bottom: 34px;
  }

  .approach-intro {
    position: static;
  }

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

  footer > p {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header {
    height: 72px;
  }

  .header-cta {
    border-bottom: 1px solid var(--ink);
    font-size: 0;
    gap: 0;
  }

  .header-cta::before {
    content: "Contact";
    font-size: 11px;
  }

  .header-cta span {
    display: none;
  }

  .hero {
    background: var(--paper);
    gap: 56px;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(48px, 14vw, 68px);
  }

  .hero-lede {
    font-size: 17px;
  }

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

  .hero-panel {
    box-shadow: 10px 12px 0 var(--cream);
    margin-right: 10px;
  }

  .credibility {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
    padding: 24px;
  }

  .credibility span {
    display: none;
  }

  .section-heading,
  .fit-band {
    grid-template-columns: 1fr;
  }

  .service-card {
    padding-left: 8px;
    padding-right: 8px;
  }

  .fit-band {
    padding: 38px 28px;
  }

  .about-quote,
  .about-copy {
    padding-left: 24px;
    padding-right: 24px;
  }

  footer {
    align-items: flex-start;
    grid-template-columns: 1fr;
  }

  footer > div {
    justify-self: start;
    text-align: left;
  }
}

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

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