:root {
  --paper: #f4f2ec;
  --ink: #111111;
  --muted: #65645f;
  --line: #cbc9c1;
  --blue: #001e8d;
  --white: #ffffff;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: "Manrope", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }

.site-header,
.hero,
.included,
.section,
footer {
  width: min(1360px, calc(100% - 64px));
  margin-inline: auto;
}

.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 20;
  transition: height .2s ease;
}
.site-header::before {
  content: "";
  position: absolute;
  inset: 0 calc((100vw - 100%) / -2);
  z-index: -1;
  border-bottom: 1px solid var(--line);
  background: rgba(244, 242, 236, .96);
  backdrop-filter: blur(8px);
}
.site-header.is-compact { height: 62px; }
.site-header.is-compact .logo { font-size: 19px; }
.site-header.is-compact .header-cta { padding: 8px 13px; }
.site-header .logo,
.site-header .header-cta {
  transition: font-size .2s ease, padding .2s ease, background .18s ease;
}
.logo { font-size: 22px; font-weight: 800; letter-spacing: -.06em; text-decoration: none; }
.logo span { color: var(--blue); }
.site-header nav { display: flex; align-items: center; gap: 32px; }
.site-header nav a { font-size: 13px; font-weight: 700; text-decoration: none; }
.site-header nav a[aria-current="page"] { color: var(--blue); }
.header-cta { padding: 10px 15px; color: var(--white); background: var(--ink); }
.menu-toggle {
  width: 44px;
  height: 44px;
  padding: 0;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.site-header.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
.site-header.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hero {
  min-height: 540px;
  padding: clamp(52px, 6vw, 78px) 0 62px;
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(260px, .65fr);
  gap: 10vw;
  align-items: end;
}
.label {
  margin: 0 0 22px;
  color: var(--blue);
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}
h1, h2, h3 { margin-top: 0; letter-spacing: -.055em; }
h1 { max-width: 860px; margin-bottom: 30px; font-size: clamp(60px, 8.8vw, 126px); line-height: .94; font-weight: 700; }
.lede { max-width: 760px; margin: 0; color: #373733; font-size: clamp(16px, 1.45vw, 19px); line-height: 1.55; }
.lede p { margin: 0 0 13px; }
.lede p:last-child { margin-bottom: 0; color: var(--ink); }
.hero-actions { margin-top: 38px; display: flex; align-items: center; gap: 25px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 50px; padding: 13px 20px; font-size: 13px; font-weight: 800; text-decoration: none; transition: transform .18s ease, background .18s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { color: var(--white); background: var(--ink); }
.button-dark:hover { background: var(--blue); }
.plain-link { font-size: 13px; font-weight: 700; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.hero-note { padding-left: 25px; border-left: 2px solid var(--blue); }
.hero-note > p { margin: 0 0 20px; font-size: 19px; font-weight: 700; line-height: 1.35; letter-spacing: -.02em; }
.hero-note ul { margin: 0; padding: 0; list-style: none; color: var(--muted); font-size: 13px; }
.hero-note li { padding: 8px 0; border-bottom: 1px solid var(--line); }

.stakes { padding-top: 88px; padding-bottom: 70px; border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink); }
.stakes-intro { display: grid; grid-template-columns: 1.25fr .75fr; gap: 18px 8vw; align-items: end; }
.stakes-intro .label { grid-column: 1 / -1; }
.stakes-intro h2 { max-width: 780px; font-size: clamp(44px, 6vw, 82px); }
.stakes-intro > p:last-child { max-width: 470px; margin: 0 0 6px; color: var(--muted); font-size: 14px; }
.stat-grid { margin-top: 64px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--ink); }
.stat { min-height: 260px; padding: 30px 34px 30px 0; border-right: 1px solid var(--line); }
.stat + .stat { padding-left: 34px; }
.stat:last-child { border-right: 0; }
.stat-number { margin: 0 0 24px; color: var(--blue); font-size: clamp(54px, 7vw, 88px); font-weight: 700; line-height: 1; letter-spacing: -.07em; }
.source-mark { margin-left: 3px; vertical-align: top; color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 14px; text-decoration: none; }
.stat > p:last-child { max-width: 320px; margin: 0; color: var(--muted); font-size: 14px; }
.sources { margin: 24px 0 0; padding: 22px 0 0 18px; border-top: 1px solid var(--line); color: var(--muted); font-size: 10px; line-height: 1.7; }
.sources a { text-underline-offset: 3px; }
.sources a:hover { color: var(--ink); }

.included { padding: 26px 0; display: grid; grid-template-columns: 220px 1fr; align-items: center; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.included .label { margin: 0; color: var(--muted); }
.included-list { display: flex; justify-content: space-between; gap: 20px; }
.included-list span { font-size: 12px; font-weight: 700; }

.section { padding: 96px 0; }
.section-intro { display: grid; grid-template-columns: 1.3fr .7fr; column-gap: 8vw; align-items: end; margin-bottom: 50px; }
.section-intro .label { grid-column: 1 / -1; }
h2 { margin-bottom: 0; font-size: clamp(46px, 6.4vw, 86px); line-height: .98; font-weight: 700; }
.section-intro > p:last-child { margin: 0 0 7px; color: var(--muted); font-size: 15px; }

.package-list { border-top: 1px solid var(--ink); }
.package { display: grid; grid-template-columns: 1.05fr 1fr .55fr; gap: 7vw; align-items: center; min-height: 225px; padding: 32px 28px 32px 0; border-bottom: 1px solid var(--line); }
.package-featured { background: var(--white); margin-inline: -28px; padding-left: 28px; border-bottom-color: var(--ink); }
.package-number { display: block; margin-bottom: 18px; color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 10px; letter-spacing: .08em; text-transform: uppercase; }
.package h3 { margin-bottom: 8px; font-size: clamp(38px, 5vw, 64px); line-height: 1; font-weight: 700; }
.package-name p { max-width: 390px; margin: 0; color: var(--muted); font-size: 14px; }
.package-title { margin-bottom: 10px; display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.package-title h3 { margin-bottom: 0; }
.package-name .package-price { margin: 0; color: var(--blue); font-size: 25px; font-weight: 800; letter-spacing: -.03em; }
.package-name .package-price small { margin-left: 3px; color: var(--muted); font: 500 10px/1 "IBM Plex Mono", monospace; letter-spacing: .08em; text-transform: uppercase; }
.package ul { margin: 0; padding: 0; list-style: none; font-size: 14px; }
.package li { padding: 7px 0; }
.package li::before { content: ""; display: inline-block; width: 6px; height: 2px; margin: 0 10px 4px 0; background: var(--blue); }
.package > a { justify-self: end; font-size: 12px; font-weight: 800; text-underline-offset: 5px; }
.package-featured > a { margin-right: 28px; }
.scale-note { margin: 24px 0 0; color: var(--muted); font-size: 13px; }
.scale-note strong { color: var(--ink); }

.process { border-top: 1px solid var(--line); }
.process .section-intro { grid-template-columns: 1fr; }
.steps { margin: 0; padding: 0; border-top: 1px solid var(--ink); list-style: none; }
.steps li { min-height: 155px; display: grid; grid-template-columns: 120px 1fr; align-items: center; border-bottom: 1px solid var(--line); }
.steps > li > span { align-self: start; padding-top: 40px; color: var(--blue); font-family: "IBM Plex Mono", monospace; font-size: 11px; }
.steps li div { display: grid; grid-template-columns: .8fr 1fr; gap: 8vw; align-items: baseline; }
.steps h3 { margin: 0; font-size: clamp(25px, 3vw, 38px); font-weight: 700; }
.steps p { max-width: 480px; margin: 0; color: var(--muted); font-size: 14px; }

.selected-work { border-top: 1px solid var(--line); }
.selected-work-intro { display: grid; grid-template-columns: 1.15fr .85fr; gap: 9vw; align-items: end; margin-bottom: 48px; }
.selected-work h2 { font-size: clamp(48px, 6.4vw, 86px); }
.selected-work-copy { max-width: 500px; padding-left: 24px; border-left: 2px solid var(--blue); color: var(--muted); }
.selected-work-copy p { margin: 0 0 22px; }
.selected-work-copy p:last-child { margin-bottom: 0; }
.selected-work-copy a { color: var(--ink); font-weight: 800; text-underline-offset: 5px; }
.selected-work-image { display: block; padding: 22px; background: var(--ink); }
.selected-work-image img { width: 100%; height: min(54vw, 620px); display: block; object-fit: cover; object-position: center; transition: opacity .2s ease; }
.selected-work-image:hover img { opacity: .86; }

.proof { display: grid; grid-template-columns: 1.1fr .9fr; gap: 10vw; align-items: end; background: var(--white); position: relative; }
.proof::before { content: ""; position: absolute; top: 0; bottom: 0; left: 50%; width: 100vw; transform: translateX(-50%); z-index: -1; background: var(--white); }
.proof h2 { font-size: clamp(43px, 5.8vw, 76px); }
.proof-copy { color: var(--muted); font-size: 16px; }
.proof-copy p:last-child { color: var(--ink); font-weight: 700; }

.contact { width: 100%; max-width: none; padding: 88px max(32px, calc((100vw - 1360px) / 2)); color: var(--white); background: var(--blue); }
.contact .label { color: var(--white); opacity: .7; }
.contact h2 { max-width: 950px; margin-bottom: 30px; font-size: clamp(58px, 9vw, 128px); }
.contact > p:not(.label) { max-width: 590px; margin: 0 0 34px; font-size: 17px; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--ink); color: var(--white); }

footer { min-height: 120px; display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; gap: 20px; font-size: 11px; }
footer p { margin: 0; color: var(--muted); }
footer p:last-child { text-align: right; }

.reveal { opacity: 0; animation: reveal .6s ease-out forwards; animation-delay: var(--delay, 0s); }
@keyframes reveal { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

@media (max-width: 850px) {
  .site-header, .hero, .included, .section, footer { width: min(100% - 36px, 1360px); }
  .hero { min-height: auto; padding: 64px 0 58px; grid-template-columns: 1fr; gap: 48px; }
  .hero-note { max-width: 360px; }
  .stakes-intro { grid-template-columns: 1fr; gap: 22px; }
  .stat-grid { grid-template-columns: 1fr; margin-top: 48px; }
  .stat, .stat + .stat { min-height: 0; padding: 28px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .included { grid-template-columns: 1fr; gap: 20px; }
  .included-list { flex-wrap: wrap; justify-content: flex-start; }
  .section { padding: 72px 0; }
  .section-intro { grid-template-columns: 1fr; gap: 22px; margin-bottom: 38px; }
  .package { grid-template-columns: 1fr 1fr; gap: 35px; }
  .package > a { grid-column: 2; justify-self: end; text-align: right; }
  .steps li div { grid-template-columns: 1fr; gap: 10px; }
  .selected-work-intro { grid-template-columns: 1fr; gap: 38px; }
  .selected-work-copy { max-width: 560px; }
  .selected-work-image { padding: 14px; }
  .selected-work-image img { height: 62vw; }
  .proof { grid-template-columns: 1fr; gap: 55px; }
  .contact { width: 100%; padding: 72px 18px; }
}

@media (max-width: 700px) {
  .site-header { height: 76px; }
  .site-header.is-compact { height: 62px; }
  .menu-toggle { display: flex; margin-right: -11px; }
  .site-header nav {
    position: absolute;
    top: 100%;
    left: calc((100vw - 100%) / -2);
    width: 100vw;
    padding: 8px 18px 18px;
    display: grid;
    align-items: stretch;
    gap: 0;
    border-bottom: 1px solid var(--ink);
    background: var(--paper);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s;
  }
  .site-header.menu-open nav {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition-delay: 0s;
  }
  .site-header nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-top: 1px solid var(--line);
    font-size: 16px;
  }
  .site-header nav .header-cta {
    min-height: 52px;
    margin-top: 10px;
    padding: 13px 16px;
    justify-content: center;
    border-top: 0;
  }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(52px, 16vw, 74px); }
  .lede { font-size: 17px; }
  .included-list { display: grid; grid-template-columns: 1fr 1fr; width: 100%; }
  .package { grid-template-columns: 1fr; gap: 27px; min-height: 0; padding: 38px 0; }
  .package-featured { margin-inline: -18px; padding-inline: 18px; }
  .package-featured > a { margin-right: 0; }
  .package > a { grid-column: auto; justify-self: end; text-align: right; }
  .steps li { grid-template-columns: 48px 1fr; gap: 8px; min-height: 230px; }
  .steps > li > span { padding-top: 43px; }
  footer { grid-template-columns: 1fr 1fr; padding: 28px 0; }
  footer > p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
