:root {
  --ink: #17191d;
  --paper: #f5f6f7;
  --white: #ffffff;
  --red: #b5271d;
  --red-dark: #8e1f18;
  --steel: #626a73;
  --line: #d9dde1;
  --green: #2f6e59;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, "Segoe UI", Arial, sans-serif;
  letter-spacing: 0;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: white;
  transition: background .25s ease, color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.brand img { width: 146px; display: block; }
.site-header.scrolled .brand img { filter: brightness(.25); }
.main-nav { display: flex; gap: 28px; align-items: center; }
.main-nav a { text-decoration: none; font-size: 14px; font-weight: 600; }
.nav-cta { border: 1px solid currentColor; padding: 10px 14px; }
.menu-button { display: none; width: 42px; height: 42px; border: 0; background: transparent; padding: 9px; }
.menu-button span { display: block; height: 2px; background: currentColor; margin: 5px 0; }

.hero {
  min-height: min(860px, 94vh);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: white;
}
.hero-media { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(7,9,12,.88) 0%, rgba(7,9,12,.63) 46%, rgba(7,9,12,.10) 78%), linear-gradient(0deg, rgba(7,9,12,.62), transparent 45%);
}
.hero-content {
  position: relative; z-index: 2; width: min(var(--max), calc(100% - 48px));
  margin: 0 auto; padding: 170px 0 112px; max-width: var(--max);
}
.eyebrow { text-transform: uppercase; font-size: 12px; font-weight: 800; letter-spacing: .14em; color: var(--red); margin: 0 0 18px; }
.hero .eyebrow { color: #ff6a5f; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 780px; margin-bottom: 26px; font-size: clamp(48px, 7.1vw, 98px); line-height: .96; font-weight: 760; }
.hero-copy { max-width: 680px; font-size: clamp(18px, 2vw, 23px); line-height: 1.55; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; gap: 12px; margin: 38px 0 34px; flex-wrap: wrap; }
.button {
  min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 18px;
  padding: 0 20px; border: 1px solid transparent; border-radius: 4px; font-weight: 750; text-decoration: none; cursor: pointer;
}
.button-primary { color: white; background: var(--red); }
.button-primary:hover { background: var(--red-dark); }
.button-secondary { color: white; border-color: rgba(255,255,255,.55); background: rgba(0,0,0,.12); }
.hero-facts { display: flex; gap: 28px; list-style: none; padding: 0; margin: 0; color: rgba(255,255,255,.78); font-size: 14px; flex-wrap: wrap; }
.hero-facts li::before { content: ""; display: inline-block; width: 7px; height: 7px; background: #ff6a5f; margin-right: 9px; }
.scroll-cue { position: absolute; z-index: 3; right: max(24px, calc((100vw - var(--max)) / 2)); bottom: 40px; display: flex; flex-direction: column; gap: 8px; text-decoration: none; font-size: 12px; text-transform: uppercase; }

.section { padding: 112px max(24px, calc((100vw - var(--max)) / 2)); }
.section-heading { max-width: 780px; margin-bottom: 58px; }
.section-heading.compact { margin-bottom: 42px; }
h2 { font-size: clamp(34px, 4.4vw, 58px); line-height: 1.04; margin-bottom: 22px; }
.section-heading > p:last-child, .contact-copy > p { color: var(--steel); font-size: 18px; line-height: 1.65; }
.solutions { background: white; }
.solution-list { border-top: 1px solid var(--line); }
.solution-item { border-bottom: 1px solid var(--line); }
.solution-item > button {
  width: 100%; min-height: 106px; display: grid; grid-template-columns: 50px 1fr 28px; gap: 20px; align-items: center;
  padding: 0; border: 0; text-align: left; background: transparent; cursor: pointer; color: var(--ink);
}
.solution-number { color: var(--red); font-size: 13px; font-weight: 800; }
.solution-item strong { display: block; font-size: clamp(22px, 3vw, 34px); }
.solution-item small { display: block; color: var(--steel); margin-top: 6px; font-size: 14px; }
.solution-arrow { font-size: 24px; transition: transform .25s ease; }
.solution-item.is-active .solution-arrow { transform: rotate(90deg); }
.solution-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; max-height: 0; overflow: hidden; opacity: 0; transition: all .35s ease; }
.solution-item.is-active .solution-detail { max-height: 320px; opacity: 1; padding: 0 48px 32px 70px; }
.solution-detail p, .solution-detail li { color: var(--steel); line-height: 1.6; }
.solution-detail ul { margin: 0; padding-left: 18px; }

.proof-band { display: grid; grid-template-columns: repeat(3,1fr); background: var(--ink); color: white; padding: 46px max(24px, calc((100vw - var(--max)) / 2)); }
.proof-band div { padding: 8px 40px; border-right: 1px solid rgba(255,255,255,.18); }
.proof-band div:first-child { padding-left: 0; }
.proof-band div:last-child { border: 0; }
.proof-band strong { display: block; font-size: 30px; margin-bottom: 8px; }
.proof-band span { color: rgba(255,255,255,.65); font-size: 14px; }

.projects { background: white; }
.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-card { border: 1px solid var(--line); background: white; }
.project-media { position: relative; display: block; aspect-ratio: 16 / 9; overflow: hidden; background: #111; }
.project-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.project-card:hover .project-media img { transform: scale(1.025); }
.play {
  position: absolute; left: 18px; bottom: 18px; width: 46px; height: 46px;
  display: grid; place-items: center; border-radius: 50%; color: white; background: var(--red); font-size: 16px; padding-left: 2px;
}
.project-copy { padding: 26px; }
.project-type { color: var(--red); text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .12em; margin-bottom: 14px; }
.project-copy h3 { font-size: 23px; line-height: 1.16; margin-bottom: 14px; }
.project-copy > p:not(.project-type) { color: var(--steel); line-height: 1.6; min-height: 104px; }
.project-copy a { color: var(--red); font-size: 14px; font-weight: 750; text-decoration: none; }
.channel-band {
  margin-top: 24px; padding: 36px 40px; background: var(--ink); color: white;
  display: flex; align-items: center; justify-content: space-between; gap: 40px;
}
.channel-band > div { max-width: 700px; }
.channel-band h3 { font-size: 28px; margin-bottom: 8px; }
.channel-band > div > p:last-child { color: rgba(255,255,255,.68); line-height: 1.55; margin-bottom: 0; }
.button-channel { color: white; border-color: rgba(255,255,255,.5); white-space: nowrap; }
.button-channel:hover { background: white; color: var(--ink); }

.process-steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid var(--line); }
.process-steps li { padding: 24px 26px 0 0; border-right: 1px solid var(--line); min-height: 220px; }
.process-steps li + li { padding-left: 26px; }
.process-steps li:last-child { border: 0; }
.process-steps span { color: var(--red); font-size: 13px; font-weight: 800; }
.process-steps strong { display: block; margin: 46px 0 12px; font-size: 20px; }
.process-steps p { color: var(--steel); line-height: 1.55; font-size: 15px; }

.orientation { background: #e8ebed; }
.orientation-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.orientation-grid a {
  min-height: 290px; padding: 34px; background: white; text-decoration: none;
  display: flex; flex-direction: column; border-top: 4px solid transparent; transition: transform .2s ease, border-color .2s ease;
}
.orientation-grid a:hover { transform: translateY(-4px); border-color: var(--red); }
.orientation-grid span { color: var(--red); font-size: 13px; font-weight: 800; }
.orientation-grid strong { font-size: 25px; margin: 58px 0 14px; }
.orientation-grid p { color: var(--steel); line-height: 1.55; flex: 1; }
.orientation-grid b { color: var(--red); font-size: 14px; }
.orientation-note { margin: 22px 0 0; color: var(--steel); font-size: 14px; }

.contact { display: grid; grid-template-columns: .85fr 1.15fr; gap: 90px; background: white; }
.contact-person { display: flex; align-items: center; gap: 18px; margin-top: 40px; }
.contact-person img { width: 76px; height: 76px; object-fit: cover; border-radius: 50%; }
.contact-person strong, .contact-person span, .contact-person a { display: block; }
.contact-person span { color: var(--steel); margin: 4px 0; }
.contact-person a { color: var(--red); text-decoration: none; }
.contact-options { display: grid; grid-template-columns: 1fr; gap: 16px; align-content: center; }
.contact-card {
  min-height: 150px; padding: 30px; border: 1px solid var(--line); border-top: 4px solid transparent;
  display: flex; flex-direction: column; justify-content: space-between; gap: 20px; text-decoration: none; background: white;
  transition: transform .2s ease, border-color .2s ease;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--red); }
.contact-card span { color: var(--red); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.contact-card strong { font-size: clamp(22px, 3vw, 32px); overflow-wrap: anywhere; }
.contact-card b { color: var(--red); font-size: 14px; }

footer { background: var(--ink); color: rgba(255,255,255,.66); padding: 38px max(24px, calc((100vw - var(--max)) / 2)); display: flex; align-items: center; gap: 30px; }
footer img { width: 130px; }
footer p { margin: 0; flex: 1; font-size: 13px; }
footer nav { display: flex; gap: 18px; }
footer a { text-decoration: none; font-size: 13px; }

.subpage { background: white; }
.subpage .site-header { position: sticky; color: var(--ink); }
.subpage .site-header .brand img { filter: brightness(.25); }
.static-nav { display: flex; }
.legal-page {
  width: min(860px, calc(100% - 48px));
  margin: 0 auto;
  padding: 94px 0 110px;
}
.legal-page h1 { color: var(--ink); font-size: clamp(42px, 7vw, 78px); margin-bottom: 44px; }
.legal-page h2 { font-size: 24px; line-height: 1.2; margin: 36px 0 12px; }
.legal-page p { color: var(--steel); line-height: 1.7; }
.legal-page a { color: var(--red); }
.legal-note { padding: 18px 20px; border-left: 4px solid var(--red); background: var(--paper); }

@media (max-width: 820px) {
  .site-header { height: 66px; padding: 0 18px; }
  .brand img { width: 126px; }
  .menu-button { display: block; color: inherit; }
  .main-nav { position: fixed; inset: 66px 0 0; background: white; color: var(--ink); display: none; flex-direction: column; align-items: stretch; padding: 30px 24px; gap: 0; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 18px 0; border-bottom: 1px solid var(--line); font-size: 18px; }
  .nav-cta { border: 0; }
  .hero { min-height: 90vh; }
  .hero-shade { background: linear-gradient(0deg, rgba(7,9,12,.90) 0%, rgba(7,9,12,.50) 68%, rgba(7,9,12,.18)); }
  .hero-content { width: calc(100% - 36px); padding: 105px 0 46px; }
  h1 { font-size: clamp(44px, 11vw, 62px); margin-bottom: 18px; }
  .hero-copy { font-size: 17px; line-height: 1.45; }
  .hero-actions { margin: 26px 0 24px; }
  .hero-facts { gap: 10px 20px; }
  .scroll-cue { display: none; }
  .section { padding: 78px 20px; }
  .solution-item > button { grid-template-columns: 36px 1fr 22px; min-height: 98px; }
  .solution-item.is-active .solution-detail { padding: 0 0 28px 56px; max-height: 560px; }
  .solution-detail { grid-template-columns: 1fr; gap: 8px; }
  .proof-band { grid-template-columns: 1fr; padding: 30px 20px; }
  .proof-band div, .proof-band div:first-child { padding: 20px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.18); }
  .project-grid { grid-template-columns: 1fr; }
  .project-copy > p:not(.project-type) { min-height: 0; }
  .channel-band { padding: 30px 24px; align-items: flex-start; flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps li, .process-steps li + li { border-right: 0; border-bottom: 1px solid var(--line); padding: 20px 0; min-height: 0; display: grid; grid-template-columns: 46px 1fr; }
  .process-steps strong { margin: 0 0 8px; }
  .orientation-grid, .contact { grid-template-columns: 1fr; }
  .orientation-grid a { min-height: 240px; }
  .contact { gap: 48px; }
  footer { align-items: flex-start; flex-direction: column; gap: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
