:root {
  --ink: #171717;
  --orange: #f7931e;
  --burnt-orange: #f15a24;
  --mauve: #744253;
  --rose: #ccb4b4;
  --mist: #e5dce1;
  --white: #fff;
  --header-height: 72px;
  --container: 1280px;
  --gutter: 24px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 16px); }
body { margin: 0; color: var(--ink); background: var(--white); font-family: "Albert Sans", "Aptos", "Segoe UI", Arial, sans-serif; font-size: 16px; line-height: 1.6; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, .button { font: inherit; }

.container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }
.skip-link { position: fixed; z-index: 100; top: 8px; left: 8px; padding: 10px 16px; color: var(--ink); background: var(--white); transform: translateY(-160%); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; box-shadow: 0 0 0 2px var(--ink); }
[aria-disabled="true"] { cursor: default; }

.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand__mark { width: 44px; height: 44px; object-fit: contain; }
.brand__type { display: flex; flex-direction: column; line-height: 1; text-transform: uppercase; }
.brand__type strong { font-size: 15px; font-weight: 650; letter-spacing: .2em; }
.brand__type small { margin-top: 4px; font-size: 9px; letter-spacing: .32em; opacity: .75; }
.brand--light { color: var(--white); }

.site-header { position: fixed; z-index: 50; inset: 0 0 auto; height: var(--header-height); color: var(--white); background: rgba(23,23,23,.9); border-bottom: 1px solid rgba(255,255,255,.08); backdrop-filter: blur(8px); transition: background-color .25s, border-color .25s; }
.site-header--scrolled { background: rgba(23,23,23,.97); border-color: rgba(255,255,255,.14); }
.site-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 26px; }
.site-header__home { display: inline-flex; text-decoration: none; flex: 0 0 auto; }
.site-nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.site-nav a { position: relative; padding: 7px 0; color: rgba(255,255,255,.7); font-size: 12px; font-weight: 550; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; transition: color .2s; }
.site-nav a::after { position: absolute; right: 0; bottom: 2px; left: 0; height: 1px; content: ""; background: var(--orange); transform: scaleX(0); transform-origin: left; transition: transform .2s; }
.site-nav a:hover, .site-nav a:focus-visible, .site-nav a.is-active { color: var(--orange); }
.site-nav a.is-active::after { transform: scaleX(1); }
.site-header__cta { margin-left: 6px; }
.menu-button, .mobile-nav { display: none; }

.button { min-height: 50px; padding: 13px 28px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border: 1px solid transparent; color: var(--white); font-size: 12px; font-weight: 650; letter-spacing: .12em; line-height: 1.2; text-decoration: none; text-transform: uppercase; transition: color .2s, border-color .2s, background-color .2s, transform .2s; }
.button[href]:hover { transform: translateY(-2px); }
.button--primary { background: linear-gradient(90deg, var(--orange), var(--burnt-orange)); }
.button--outline { border-color: rgba(255,255,255,.35); background: transparent; }
.button--outline[href]:hover { color: var(--orange); border-color: var(--orange); }
.button--ghost { color: var(--white); border-color: rgba(255,255,255,.38); background: transparent; }
.button--ghost:hover { border-color: rgba(255,255,255,.8); }
.button--dark { color: var(--white); background: var(--ink); }
.button-row { display: flex; flex-wrap: wrap; gap: 14px; }
.button-row--center { justify-content: center; }

.eyebrow { display: flex; align-items: center; gap: 13px; margin: 0 0 22px; color: var(--orange); font-size: 11px; font-weight: 600; letter-spacing: .3em; text-transform: uppercase; }
.eyebrow::before { width: 40px; height: 1px; content: ""; background: currentColor; flex: 0 0 auto; }
h1, h2, h3 { margin-top: 0; text-transform: uppercase; letter-spacing: 0; }
h1 { font-size: 72px; line-height: 1.04; }
h2 { margin-bottom: 24px; font-size: 52px; line-height: 1.08; }
h3 { font-size: 18px; line-height: 1.3; }
.section { padding-block: 108px; }
.section-heading { margin-bottom: 50px; }
.section-heading > p:last-child { max-width: 620px; margin: 0; color: rgba(23,23,23,.8); }
.section-heading--split { display: flex; align-items: flex-end; justify-content: space-between; gap: 40px; }
.section-heading--split h2 { margin-bottom: 0; }
.text-link { color: #bc4315; font-size: 12px; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; }

.hero { position: relative; min-height: 92svh; display: flex; align-items: center; overflow: hidden; color: var(--white); background: var(--ink); }
.hero__media, .hero__overlay, .hero__plane { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; opacity: .54; }
.hero__overlay { background: linear-gradient(90deg, rgba(23,23,23,.98) 0%, rgba(23,23,23,.84) 48%, rgba(23,23,23,.2) 100%), linear-gradient(0deg, rgba(23,23,23,.82), transparent 55%); }
.hero__plane { left: auto; width: min(62vw, 900px); opacity: .22; clip-path: polygon(45% 0,100% 0,100% 100%,0 100%); background: linear-gradient(135deg, transparent 22%, var(--orange) 22%, var(--burnt-orange) 100%); }
.hero__content { position: relative; z-index: 2; padding-top: calc(var(--header-height) + 66px); padding-bottom: 88px; }
.hero__copy { max-width: 730px; }
.hero h1 { max-width: 660px; margin-bottom: 28px; }
.hero h1 span { display: block; color: var(--orange); }
.hero__lead { max-width: 580px; margin: 0 0 38px; color: rgba(255,255,255,.72); font-size: 20px; font-weight: 350; line-height: 1.65; }
.scroll-cue { position: absolute; bottom: -55px; left: 0; display: inline-flex; align-items: center; gap: 14px; color: rgba(255,255,255,.52); font-size: 10px; letter-spacing: .3em; text-decoration: none; text-transform: uppercase; }
.scroll-cue span { width: 1px; height: 38px; background: rgba(255,255,255,.4); }
.motion-ready [data-hero-reveal] > * { animation: hero-in .7s both; }
.motion-ready [data-hero-reveal] > :nth-child(2) { animation-delay: .1s; }
.motion-ready [data-hero-reveal] > :nth-child(3) { animation-delay: .2s; }
.motion-ready [data-hero-reveal] > :nth-child(4) { animation-delay: .3s; }
@keyframes hero-in { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

.pillars { color: var(--white); background: var(--burnt-orange); }
.pillars__grid { display: grid; grid-template-columns: repeat(4,1fr); }
.pillar { min-width: 0; padding: 30px 34px; border-right: 1px solid rgba(255,255,255,.24); }
.pillar:last-child { border-right: 0; }
.pillar strong, .pillar span { display: block; }
.pillar strong { font-size: 23px; letter-spacing: .03em; }
.pillar span { margin-top: 2px; color: rgba(23,23,23,.88); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

.solutions__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--mist); }
.solution { min-height: 332px; padding: 40px; background: var(--white); }
.solution__icon { width: 44px; height: 44px; margin-bottom: 27px; display: grid; place-items: center; color: #a83b10; border: 1px solid var(--mist); }
.icon { width: 22px; height: 22px; }
.solution h3 { margin-bottom: 13px; letter-spacing: .04em; }
.solution p { margin: 0; color: rgba(23,23,23,.66); font-size: 14px; font-weight: 350; line-height: 1.75; }

.about { overflow: hidden; background: var(--mist); }
.about__inner { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--container); }
.about__media { position: relative; min-height: 700px; }
.about__media picture, .about__media img { width: 100%; height: 100%; }
.about__media img { object-fit: cover; object-position: center; }
.philosophy { position: absolute; bottom: 40px; left: 40px; max-width: 265px; padding: 25px; color: var(--white); background: var(--ink); }
.philosophy span { color: var(--orange); font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase; }
.philosophy p { margin: 8px 0 0; font-size: 14px; font-weight: 350; line-height: 1.7; }
.about__copy { padding: 92px 64px; align-self: center; }
.about__copy > p:not(.eyebrow) { color: rgba(23,23,23,.72); font-weight: 350; }
.principles { margin: 34px 0; padding: 0; list-style: none; }
.principles li { position: relative; margin: 12px 0; padding-left: 22px; font-size: 14px; }
.principles li::before { position: absolute; top: .7em; left: 0; width: 7px; height: 7px; content: ""; background: var(--orange); }

.process__inner { display: grid; grid-template-columns: .85fr 1.15fr; align-items: center; gap: 72px; }
.process__copy > p:not(.eyebrow) { color: rgba(23,23,23,.64); font-weight: 350; }
blockquote { margin: 34px 0 0; padding-left: 22px; border-left: 4px solid var(--orange); }
blockquote p { margin: 0; font-size: 14px; }
blockquote cite { display: block; margin-top: 8px; color: #595959; font-size: 11px; font-style: normal; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.process__mosaic { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.process__mosaic picture { overflow: hidden; }
.process__mosaic img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s; }
.process__mosaic picture:hover img { transform: scale(1.035); }
.process__wide { grid-column: 1/-1; aspect-ratio: 16/9; }
.process__wide img { object-position: center 67%; }
.process__square, .process__callout { aspect-ratio: 1; }
.process__callout { display: grid; place-content: center; text-align: center; color: var(--white); background: var(--ink); }
.process__callout strong { color: var(--orange); font-size: 24px; letter-spacing: .08em; text-transform: uppercase; }
.process__callout span { margin-top: 8px; color: rgba(255,255,255,.65); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }

.people { color: var(--white); background: var(--ink); }
.people__inner { display: grid; grid-template-columns: .72fr 1.28fr; align-items: center; gap: 70px; }
.people__copy h2 { max-width: 500px; }
.people__copy > p:not(.eyebrow) { color: rgba(255,255,255,.58); font-weight: 350; }
.people__copy .button { margin-top: 18px; }
.people__media { position: relative; aspect-ratio: 4/3; }
.people__media::after { position: absolute; z-index: 0; inset: 13px -13px -13px 13px; content: ""; border: 1px solid rgba(247,147,30,.45); }
.people__media img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: cover; }

.industries { background: var(--mist); }
.solutions .eyebrow, .about .eyebrow, .process .eyebrow, .industries .eyebrow { color: #a83b10; }
.industries__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--rose); }
.industry { min-height: 106px; padding: 28px 30px; display: flex; align-items: center; background: var(--mist); }
.industry > span:first-child { font-size: 14px; font-weight: 550; letter-spacing: .06em; line-height: 1.45; text-transform: uppercase; }

.contact { position: relative; overflow: hidden; padding-block: 104px; color: var(--white); background: linear-gradient(135deg, var(--orange), var(--burnt-orange) 58%, var(--mauve)); }
.contact::before { position: absolute; inset: 0; content: ""; opacity: .1; background: repeating-linear-gradient(45deg, transparent 0 40px, rgba(255,255,255,.18) 40px 80px); }
.contact__inner { position: relative; max-width: 890px; text-align: center; }
.contact__inner > img { margin: 0 auto 28px; }
.contact h2 { margin-bottom: 20px; font-size: 60px; }
.contact p { max-width: 630px; margin: 0 auto 34px; color: rgba(255,255,255,.86); font-size: 18px; }

.site-footer { padding-top: 66px; color: var(--white); background: var(--ink); border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__grid { display: grid; grid-template-columns: 2fr repeat(3,1fr); gap: 50px; padding-bottom: 64px; }
.site-footer__brand p { max-width: 320px; margin: 24px 0 0; color: rgba(255,255,255,.46); font-size: 14px; font-weight: 350; }
.footer-group h2 { margin-bottom: 18px; font-size: 10px; letter-spacing: .28em; }
.footer-group ul { margin: 0; padding: 0; list-style: none; }
.footer-group li { margin: 9px 0; color: rgba(255,255,255,.44); font-size: 14px; }
.site-footer__bottom { min-height: 84px; display: flex; align-items: center; justify-content: space-between; gap: 28px; color: rgba(255,255,255,.7); border-top: 1px solid rgba(255,255,255,.1); }
.site-footer__bottom small { font-size: 12px; }
.site-footer__legal { display: flex; flex-wrap: wrap; gap: 24px; font-size: 12px; }
.not-found { min-height: 100svh; padding: 160px 24px; text-align: center; background: var(--mist); }
.not-found .eyebrow { justify-content: center; }

.motion-ready [data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .6s, transform .6s; }
.motion-ready [data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 1100px) {
  .site-nav { gap: 18px; }
  .site-header__cta { padding-inline: 18px; }
  .about__copy { padding-inline: 46px; }
  .process__inner, .people__inner { gap: 45px; }
}

@media (max-width: 900px) {
  .site-nav, .site-header__cta { display: none; }
  .menu-button { width: 46px; height: 46px; display: grid; place-items: center; color: var(--white); border: 0; background: transparent; }
  .menu-button svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; }
  .menu-button__close { display: none; }
  .menu-button[aria-expanded="true"] .menu-button__open { display: none; }
  .menu-button[aria-expanded="true"] .menu-button__close { display: block; }
  .mobile-nav { position: absolute; inset: var(--header-height) 0 auto; padding: 24px var(--gutter) 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; background: var(--ink); border-bottom: 1px solid rgba(255,255,255,.12); }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { min-height: 44px; display: flex; align-items: center; color: rgba(255,255,255,.76); font-size: 13px; font-weight: 550; letter-spacing: .12em; text-decoration: none; text-transform: uppercase; }
  .mobile-nav .button { margin-top: 4px; }
  .pillars__grid, .solutions__grid, .industries__grid { grid-template-columns: repeat(2,1fr); }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.24); }
  .about__inner, .process__inner, .people__inner { grid-template-columns: 1fr; }
  .about__media { min-height: 560px; }
  .about__copy { padding: 78px 46px; }
  .process__inner, .people__inner { gap: 58px; }
  .people__media { grid-row: 1; }
  .site-footer__grid { grid-template-columns: repeat(3,1fr); }
  .site-footer__brand { grid-column: 1/-1; }
}

@media (max-width: 767px) {
  :root { --header-height: 68px; --gutter: 20px; }
  h1 { font-size: 46px; }
  h2 { font-size: 38px; }
  .section { padding-block: 78px; }
  .brand__mark { width: 40px; height: 40px; }
  .hero { min-height: 90svh; }
  .hero__media img { object-position: 60% center; }
  .hero__overlay { background: linear-gradient(90deg, rgba(23,23,23,.98), rgba(23,23,23,.72)), linear-gradient(0deg, rgba(23,23,23,.8), transparent); }
  .hero__plane { width: 72vw; opacity: .14; }
  .hero__content { padding-top: 116px; padding-bottom: 86px; }
  .hero__lead { margin-bottom: 30px; font-size: 17px; line-height: 1.55; }
  .scroll-cue { bottom: -52px; }
  .pillars__grid, .solutions__grid, .industries__grid { grid-template-columns: 1fr; }
  .pillar { padding: 25px 4px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.24); }
  .pillar:last-child { border-bottom: 0; }
  .solution { min-height: 0; padding: 32px 28px; }
  .section-heading--split { align-items: flex-start; flex-direction: column; }
  .about__inner { width: 100%; }
  .about__media { min-height: 500px; }
  .philosophy { right: 20px; bottom: 20px; left: 20px; max-width: 290px; }
  .about__copy { padding: 74px var(--gutter); }
  .process__mosaic { gap: 8px; }
  .process__callout strong { font-size: 18px; }
  .people__media::after { inset: 8px -8px -8px 8px; }
  .contact { padding-block: 82px; }
  .contact h2 { font-size: 40px; }
  .contact p { font-size: 17px; }
  .button-row { align-items: stretch; flex-direction: column; }
  .button-row .button { width: 100%; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; gap: 40px 26px; }
  .site-footer__brand { grid-column: 1/-1; }
  .footer-group:last-child { grid-column: 1/-1; }
  .site-footer__bottom { padding-block: 28px; align-items: flex-start; flex-direction: column; }
}

@media (max-width: 360px) {
  :root { --gutter: 16px; }
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .brand { gap: 9px; }
  .brand__type strong { font-size: 13px; }
  .brand__type small { font-size: 8px; }
  .hero__lead { font-size: 16px; }
  .eyebrow { letter-spacing: .22em; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .footer-group:last-child { grid-column: auto; }
}

@media (max-height: 700px) and (max-width: 767px) {
  .hero { min-height: 660px; }
  .hero__content { padding-top: 96px; padding-bottom: 56px; }
  .hero .eyebrow { margin-bottom: 14px; }
  .hero h1 { margin-bottom: 16px; font-size: 40px; }
  .hero__lead { margin-bottom: 20px; font-size: 15px; line-height: 1.45; }
  .hero .button { min-height: 44px; padding-block: 10px; }
  .scroll-cue { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .motion-ready [data-reveal] { opacity: 1; transform: none; }
}
