@font-face {
  font-family: "Museo Sans";
  src: url("font/MuseoSans_300.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("font/MuseoSans_500.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("font/MuseoSans_700.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Museo Sans";
  src: url("font/MuseoSans_900.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #151515;
  --muted: #77756e;
  --paper: #fdfcf7;
  --paper-bright: #fdfcf7;
  --soft: #e9eae2;
  --line: rgba(21, 21, 19, 0.16);
  --coral: #e56b55;
  --lime: #d6f356;
  --radius-lg: clamp(28px, 3.2vw, 52px);
  --content: min(1200px, calc(100vw - 8vw));
  --body-copy-size: clamp(16px, 1.45vw, 20px);
  --ease: cubic-bezier(.2, .72, .2, 1);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--ink);
  font-family: "Museo Sans", Arial, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 12px 18px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }
.content-width { width: var(--content); margin-inline: auto; }
.section { padding-block: clamp(88px, 11vw, 168px); }

.eyebrow {
  margin: 0 0 22px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow.light { color: rgba(255,255,255,.74); }

.site-header {
  position: absolute;
  z-index: 30;
  top: 22px;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  width: 85vw;
  min-height: 64px;
  padding: 8px 9px 8px 24px;
  color: var(--ink);
  background: rgba(248, 247, 243, .9);
  border: 1px solid rgba(255,255,255,.5);
  border-radius: 999px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(16px);
  margin-inline: auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1;
}

.brand-mark { display: flex; align-items: center; gap: 2px; height: 16px; }
.brand-mark i { display: block; width: 4px; border-radius: 4px; background: var(--coral); transform: rotate(18deg); }
.brand-mark i:nth-child(1) { height: 10px; }
.brand-mark i:nth-child(2) { height: 16px; }
.brand-mark i:nth-child(3) { height: 7px; }
.brand-name { display: block; }

.primary-nav { display: flex; justify-self: end; margin-right: clamp(28px, 3vw, 48px); gap: clamp(24px, 3vw, 48px); }
.primary-nav a { position: relative; padding: 10px 0 9px; border-bottom: 1px solid transparent; font-size: 12px; font-weight: 500; transition: border-color .3s var(--ease); }
.primary-nav a:hover, .primary-nav a:focus-visible, .primary-nav a.active { border-color: currentColor; }

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 15px 22px;
  color: var(--paper);
  background: var(--ink);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: color .25s, background .25s;
}

.header-cta:hover { color: var(--ink); background: var(--coral); }
.menu-toggle { display: none; }

.hero {
  position: relative;
  display: flex;
  height: min(943px, 115svh);
  min-height: 805px;
  overflow: hidden;
  isolation: isolate;
  color: white;
  background: #242321;
}

.hero-image, .hero-shade { position: absolute; z-index: -2; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 34%; }
.hero-shade { z-index: -1; background: linear-gradient(90deg, rgba(7,7,7,.76) 0%, rgba(7,7,7,.3) 48%, rgba(7,7,7,.08) 78%), linear-gradient(0deg, rgba(9,9,8,.38), transparent 45%); }

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 85vw;
  max-width: none;
  padding-top: 110px;
  padding-bottom: 70px;
  transform: translateX(10px);
}

.hero h1 {
  max-width: 1120px;
  margin: 0 0 0 -3px;
  font-size: clamp(28px, 8.6vw, 102px);
  font-weight: 500;
  letter-spacing: -.058em;
  line-height: .92;
}

.hero-title-line { display: block; white-space: nowrap; }
.hero-title-accent { color: var(--coral); }
.hero h1 i, h2 span { color: var(--coral); font-style: normal; }
.hero h1 .hero-title-accent i { color: #fff; }

.hero-copy {
  max-width: 620px;
  margin: 42px 0 34px;
  font-size: var(--body-copy-size);
  letter-spacing: .025em;
  line-height: 1.6;
}

.text-link {
  display: inline-flex;
  align-items: center;
  padding-bottom: 8px;
  border-bottom: 1px solid currentColor;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.main-sheet {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  overflow: hidden;
  background: var(--paper);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.section-heading.centered { max-width: 890px; margin: 0 auto clamp(70px, 8vw, 112px); text-align: center; }

.section-heading h2 {
  margin: 0 auto 24px;
  font-size: clamp(35px, 4.4vw, 66px);
  font-weight: 300;
  letter-spacing: -.055em;
  line-height: 1.02;
}

.section-heading > p:last-child { max-width: 560px; margin: 0 auto; color: var(--muted); font-size: var(--body-copy-size); letter-spacing: .02em; line-height: 1.6; }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); }
.pillar { position: relative; min-height: 330px; padding: 0 clamp(22px, 3vw, 48px); text-align: center; }
.pillar + .pillar { border-left: 1px solid var(--line); }
.pillar-icon { display: block; width: 88px; aspect-ratio: 1; margin: 0 auto 18px; object-fit: contain; border: 0; border-radius: 0; }
.pillar-number { color: var(--coral); font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.pillar h3 { margin: 13px 0 12px; font-size: clamp(18px, 1.8vw, 25px); font-weight: 500; letter-spacing: -.035em; }
.pillar > p:not(.pillar-number) { max-width: 300px; min-height: 68px; margin: 0 auto 22px; color: var(--muted); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.55; }
.micro-link { display: inline-flex; align-items: center; padding-bottom: 5px; border-bottom: 1px solid var(--line); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }

.approach { display: grid; grid-template-columns: .86fr 1.14fr; align-items: stretch; width: 85vw; gap: clamp(55px, 9vw, 140px); padding-top: 40px; }
.approach-copy { min-height: 0; padding-left: clamp(0px, 3vw, 42px); }
.approach h2, .solutions h2, .outcomes h2, .closing-cta h2 {
  margin: 0;
  font-size: clamp(55px, 7vw, 104px);
  font-weight: 300;
  letter-spacing: -.068em;
  line-height: .86;
}

.approach h2 {
  max-width: none;
  font-size: clamp(36px, 3.5vw, 50px);
  line-height: .94;
}

.approach-title-line { display: block; color: inherit; white-space: nowrap; }
.approach-title-dot { color: var(--coral); font-style: normal; }

.approach .lead { max-width: 480px; margin: 30px 0 38px; color: var(--muted); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.6; }
.process-list { border-top: 1px solid var(--line); }
.process-list details { border-bottom: 1px solid var(--line); }
.process-list summary { display: grid; grid-template-columns: 42px 1fr 18px; align-items: center; min-height: 59px; cursor: pointer; list-style: none; font-size: 15px; font-weight: 500; }
.process-list summary span { color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.process-list summary .accordion-symbol { color: var(--ink); font-size: 19px; font-weight: 300; line-height: 1; text-align: center; }
.details-body { height: auto; overflow: hidden; }
.details-body p { max-width: 410px; margin: 0 24px 0 42px; padding-bottom: 18px; color: var(--muted); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.55; }

.approach-visual { position: relative; align-self: stretch; width: 100%; min-width: 0; min-height: 0; aspect-ratio: auto; margin: 0; overflow: hidden; background: #ddc295; border: 0; box-shadow: none; }
.approach-visual img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; object-fit: cover; object-position: center; box-shadow: none; filter: none; }

#approach-title,
#promo-title,
#outcomes-title,
.service-card h3 { transform: translateX(-5px); }

.promo-band { display: grid; grid-template-columns: 1fr 1fr; min-height: 650px; color: var(--paper); background: var(--ink); }
.promo-image { position: relative; overflow: hidden; }
.promo-image img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; object-position: center; }
.promo-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(55px, 7vw, 110px); }
.promo-copy h2 { max-width: 570px; margin: 0; font-size: clamp(32px, 3.5vw, 54px); font-weight: 300; letter-spacing: -.06em; line-height: .92; white-space: nowrap; }
.promo-copy .eyebrow { color: rgba(255,255,255,.74); }
.promo-copy > p:not(.eyebrow) { max-width: 560px; margin: 30px 0 35px; color: rgba(255,255,255,.58); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.6; }
.button-row { display: flex; flex-wrap: wrap; gap: 10px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-width: 158px; padding: 15px 20px; border: 1px solid var(--ink); border-radius: 999px; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; transition: color .25s, background .25s, border-color .25s; }
.promo-band .button { border-color: rgba(255,255,255,.5); }
.promo-band .button-light { color: var(--paper); background: transparent; }
.promo-band .button-light:hover { color: var(--ink); background: var(--paper); border-color: var(--paper); }
.promo-band .button-dark { color: var(--ink); background: var(--coral); border-color: var(--coral); }
.promo-band .button-dark:hover { color: var(--paper); background: transparent; border-color: rgba(255,255,255,.5); }
.solutions { background: var(--paper-bright); }
.section-heading.centered.solutions-heading { width: 95vw; max-width: none; text-align: center; }
.solutions-heading h2 { max-width: 890px; margin-inline: auto; font-size: clamp(48px, 5.2vw, 78px); }
.solutions-heading > p:last-child { max-width: 560px; margin: 34px auto 0; color: var(--muted); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.65; }

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); width: 95vw; max-width: none; margin-inline: auto; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-card { position: relative; isolation: isolate; display: flex; flex-direction: column; justify-content: center; min-height: 380px; overflow: hidden; padding: clamp(28px, 3.4vw, 48px); border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); transition: color .35s, background .35s; }
.service-card:hover { color: var(--paper); background: var(--ink); }
.service-card-image { position: absolute; z-index: 0; top: 0; left: 0; width: 100%; max-width: none; height: 100%; object-fit: cover; object-position: center; border: 0; box-shadow: none; opacity: 0; pointer-events: none; transition: opacity .4s var(--ease); }
.service-card:hover .service-card-image { opacity: .18; }
.service-card h3, .service-card > p, .service-keywords { position: relative; z-index: 1; }
.service-card h3 { max-width: 270px; margin: 0 0 16px; font-size: clamp(23px, 2.4vw, 34px); font-weight: 300; letter-spacing: -.045em; line-height: 1; }
.service-card > p { max-width: 310px; min-height: 62px; margin: 0 0 26px; color: var(--muted); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.65; }
.service-card:hover > p { color: rgba(255,255,255,.62); }
.service-keywords { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 8px; margin: 0; padding: 0; font-size: 10px; letter-spacing: .1em; line-height: 1.5; text-transform: uppercase; }
.service-keywords > span, .keyword-pair { white-space: nowrap; }
.keyword-pair { display: inline-flex; align-items: center; gap: 8px; }
.keyword-separator { color: var(--coral); line-height: 1; }

.outcomes { color: var(--paper); background: var(--ink); }
.outcomes-inner { display: grid; grid-template-columns: .78fr 1.22fr; align-items: start; gap: clamp(70px, 10vw, 160px); }
.outcomes-copy { position: sticky; top: 50px; }
.outcomes-copy > p:not(.eyebrow) { max-width: 480px; margin: 32px 0; color: rgba(255,255,255,.58); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.65; }
.button-coral { color: var(--ink); background: var(--coral); border-color: var(--coral); }
.button-coral:hover { color: var(--paper); background: transparent; border-color: rgba(255,255,255,.5); }
.metrics { border-top: 1px solid rgba(255,255,255,.18); }
.metric { display: grid; grid-template-columns: 1fr 1fr; align-items: center; min-height: 220px; gap: 30px; border-bottom: 1px solid rgba(255,255,255,.18); }
.metric strong { font-size: clamp(78px, 10vw, 140px); font-weight: 300; letter-spacing: -.075em; line-height: 1; }
.metric strong sup { color: var(--coral); font-size: .34em; font-weight: 500; vertical-align: top; }
.metric p { max-width: 280px; margin: 0; color: rgba(255,255,255,.58); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.55; }

.closing-cta { position: relative; display: grid; place-items: center; min-height: min(820px, 90svh); overflow: hidden; text-align: center; background: var(--lime); }
.closing-content { position: relative; z-index: 2; }
.closing-cta h2 { max-width: 1200px; font-size: clamp(64px, 8vw, 116px); line-height: .88; }
.closing-cta h2 span { color: var(--coral); }
.closing-link { display: inline-flex; align-items: center; justify-content: center; min-width: 170px; margin: 45px auto 0; padding: 16px 24px; color: white; background: var(--ink); border: 1px solid var(--ink); border-radius: 2px; font-size: 10px; font-weight: 700; letter-spacing: .1em; line-height: 1.2; text-transform: uppercase; transition: color .3s, background .3s, border-color .3s, transform .3s var(--ease); }
.closing-link:hover { color: var(--ink); background: var(--coral); border-color: var(--coral); transform: translateY(-2px); }

.site-footer { padding: 85px 0 28px; color: var(--paper); background: #0e0e0d; }
.footer-top { display: grid; grid-template-columns: 1fr .9fr .8fr; align-items: start; gap: 70px; padding-bottom: 80px; }
.footer-brand { display: inline-block; width: max-content; line-height: 0; }
.footer-logo { display: block; width: clamp(180px, 20vw, 260px); height: auto; filter: brightness(0) invert(1); }
.footer-top > p { max-width: 350px; margin: 5px 0 0; color: rgba(255,255,255,.52); font-size: var(--body-copy-size); letter-spacing: .025em; line-height: 1.6; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; margin-top: 5px; }
.footer-contact span { color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .14em; text-transform: uppercase; }
.footer-contact a { font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 8px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.14); color: rgba(255,255,255,.45); font-size: 9px; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom nav { display: flex; gap: 30px; }
.footer-bottom a { transition: color .25s; }
.footer-bottom a:hover { color: var(--paper); }

.main-sheet h2,
.main-sheet h3 {
  line-height: 1.1;
}

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.pillars .reveal:nth-child(2), .service-grid .reveal:nth-child(2), .service-grid .reveal:nth-child(5) { transition-delay: .1s; }
.pillars .reveal:nth-child(3), .service-grid .reveal:nth-child(3), .service-grid .reveal:nth-child(6) { transition-delay: .2s; }

@media (max-width: 980px) {
  :root { --content: min(100% - 48px, 760px); }
  .site-header { grid-template-columns: 1fr auto; }
  .header-cta { display: none; }
  .menu-toggle { z-index: 3; display: flex; align-items: center; gap: 12px; padding: 11px 16px; color: var(--paper); background: var(--ink); border: 0; border-radius: 999px; cursor: pointer; font-size: 11px; }
  .menu-toggle-icon { position: relative; display: block; width: 17px; height: 11px; }
  .menu-toggle-icon i { position: absolute; left: 0; width: 100%; height: 1px; background: currentColor; transition: top .3s, transform .3s; }
  .menu-toggle-icon i:first-child { top: 2px; }
  .menu-toggle-icon i:last-child { top: 8px; }
  .menu-open .menu-toggle-icon i:first-child { top: 5px; transform: rotate(45deg); }
  .menu-open .menu-toggle-icon i:last-child { top: 5px; transform: rotate(-45deg); }
  .primary-nav { position: absolute; z-index: 2; top: calc(100% + 9px); right: 0; left: 0; grid-column: 1 / -1; display: flex; flex-direction: column; align-items: flex-start; width: 100%; height: auto; margin-right: 0; padding: 38px; gap: 8px; color: var(--paper); background: rgba(14,14,13,.98); border: 1px solid rgba(255,255,255,.12); border-radius: 30px; box-shadow: 0 24px 55px rgba(0,0,0,.28); opacity: 0; visibility: hidden; pointer-events: none; transform: translateY(-8px) scale(.985); transform-origin: top; transition: opacity .3s var(--ease), transform .3s var(--ease), visibility .3s; }
  .primary-nav a { width: 100%; padding: 11px 0; font-size: clamp(28px, 7vw, 46px); font-weight: 300; letter-spacing: -.045em; }
  .menu-open .primary-nav { opacity: 1; visibility: visible; pointer-events: auto; transform: none; }
  .pillars { grid-template-columns: 1fr; max-width: 620px; margin-inline: auto; }
  .pillar { min-height: 0; padding: 45px 30px; }
  .pillar + .pillar { border-top: 1px solid var(--line); border-left: 0; }
  .approach { grid-template-columns: 1fr; align-items: start; max-width: none; width: 85vw; gap: 70px; }
  .approach-copy { width: 100%; min-height: 0; margin-inline: auto; padding: 0; }
  .approach-visual { align-self: auto; height: auto; aspect-ratio: 1; overflow: hidden; }
  .approach-visual img { position: absolute; inset: 0; width: 100%; height: 100%; min-height: 0; object-fit: cover; }
  .promo-band { grid-template-columns: 1fr; }
  .promo-image, .promo-image img { min-height: 620px; }
  .promo-copy { min-height: 580px; }
  .solutions-heading > p:last-child { max-width: 560px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .outcomes-inner { grid-template-columns: 1fr; }
  .outcomes-copy { position: static; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-contact { grid-column: 2; }
}

@media (max-width: 640px) {
  :root { --content: calc(100% - 36px); --radius-lg: 28px; --body-copy-size: 15px; }
  .section { padding-block: 88px; }
  .site-header { top: 12px; width: 85vw; min-height: 54px; padding-left: 16px; }
  .brand { font-size: 13px; }
  .hero { height: auto; min-height: 874px; }
  .hero-image { object-position: 75% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,8,8,.79), rgba(8,8,8,.23)), linear-gradient(0deg, rgba(8,8,8,.5), transparent 55%); }
  .hero-content { justify-content: flex-end; width: calc(100% - 36px); padding-bottom: 92px; }
  .hero h1 { line-height: .9; letter-spacing: -.052em; }
  .hero-copy { max-width: 360px; margin: 32px 0; font-size: var(--body-copy-size); line-height: 1.6; }
  .main-sheet { margin-top: -28px; }
  .section-heading.centered { margin-bottom: 55px; }
  .section-heading h2 { font-size: 36px; }
  .pillar { padding: 40px 12px; }
  .approach h2 { font-size: clamp(30px, 8.4vw, 38px); }
  .solutions h2, .outcomes h2 { font-size: 58px; }
  .approach .lead { font-size: var(--body-copy-size); }
  .approach-visual { height: auto; }
  .approach-visual img { min-height: 0; }
  .promo-image, .promo-image img { min-height: 480px; }
  .promo-copy { min-height: 0; padding: 76px 25px; }
  .promo-copy h2 { font-size: clamp(27px, 8.5vw, 34px); }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 350px; padding: 30px; }
  .service-card h3 { font-size: 31px; }
  .service-keywords { flex-direction: column; align-items: flex-start; gap: 6px; }
  .keyword-separator { display: none; }
  .outcomes-inner { gap: 65px; }
  .metric { grid-template-columns: 1fr; gap: 8px; padding: 38px 0; }
  .metric strong { font-size: 96px; }
  .metric p { padding-bottom: 6px; }
  .closing-cta { min-height: 680px; }
  .closing-cta h2 { font-size: clamp(60px, 16vw, 82px); }
  .site-footer { padding-top: 65px; }
  .footer-top { grid-template-columns: 1fr; gap: 35px; padding-bottom: 55px; }
  .footer-contact { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
