:root {
  --ink: #171611;
  --paper: #f4f3ed;
  --white: #ffffff;
  --accent: #171611;
  --accent-muted: #8b887f;
  --line: rgba(23, 22, 17, 0.2);
  --muted: #65645e;
  --dark-muted: #bab8ae;
  --serif: Georgia, "Times New Roman", serif;
  --sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --shell: min(1240px, calc(100vw - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

a { color: inherit; }

button, input, textarea { font: inherit; }

img { display: block; max-width: 100%; }

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-160%);
}

.skip-link:focus { transform: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  border-bottom: 1px solid var(--line);
  background: color-mix(in srgb, var(--paper) 92%, transparent);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand img { width: 24px; height: 29px; }

.brand-name {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.045em;
}

.brand-product {
  margin-left: 3px;
  padding-left: 13px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.site-nav a:not(.nav-cta):hover { text-decoration: underline; text-underline-offset: 5px; }

.nav-cta {
  padding: 11px 16px;
  border: 1px solid var(--ink);
  transition: background 160ms ease, color 160ms ease;
}

.nav-cta:hover { background: var(--ink); color: var(--white); }

.menu-button { display: none; }

.section-shell { width: var(--shell); margin: 0 auto; }

.company-context {
  width: var(--shell);
  margin: 0 auto;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  border-bottom: 1px solid var(--line);
}

.company-context div {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.company-context strong {
  flex: 0 0 auto;
  font-size: 13px;
}

.company-context div > span {
  color: var(--muted);
  font-size: 13px;
}

.company-context > a {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid var(--ink);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: background 160ms ease, color 160ms ease;
}

.company-context > a:hover { background: var(--ink); color: var(--white); }

.hero {
  width: var(--shell);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 0 84px;
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(360px, 0.72fr);
  gap: clamp(60px, 8vw, 130px);
  align-items: center;
}

.eyebrow, .section-number {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.recognition h2,
.outcomes h2,
.manage h2,
.report h2,
.method h2,
.services h2,
.people h2,
.request h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero h1 { max-width: 820px; font-size: clamp(58px, 7.2vw, 110px); }

.hero-lede {
  max-width: 730px;
  margin: 34px 0 0;
  font-size: clamp(19px, 1.7vw, 25px);
  line-height: 1.45;
}

.service-area {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.studio-domain {
  margin: 32px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid var(--ink);
  border-radius: 0;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button-dark { background: var(--ink); color: var(--white); }
.button-dark:hover { background: #393730; border-color: #393730; }

.text-link {
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 6px;
}

.system-map { align-self: end; border-top: 1px solid var(--ink); }

.system-map-head,
.system-map-foot {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 13px 0;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.system-map ol { margin: 0; padding: 0; list-style: none; border-bottom: 1px solid var(--ink); }

.system-map li {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: baseline;
  gap: 12px;
  padding: 17px 0;
  border-top: 1px solid var(--line);
}

.system-map li span,
.outcome-index { color: var(--accent-muted); font-size: 11px; font-weight: 700; }
.system-map li strong { font-family: var(--serif); font-size: 22px; font-weight: 500; }
.system-map li small { color: var(--muted); font-size: 12px; }
.system-map-foot { justify-content: flex-start; align-items: center; }
.signal-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

.recognition { padding: 140px 0; border-top: 1px solid var(--line); }
.recognition-grid { display: grid; grid-template-columns: 1.18fr 0.82fr; gap: 10vw; }
.recognition h2 { font-size: clamp(48px, 6vw, 88px); }
.recognition-copy { padding-top: 10px; }
.recognition-copy p { margin: 0 0 24px; font-size: clamp(18px, 1.65vw, 23px); }

.outcomes { padding: 120px 0; background: var(--ink); color: var(--white); }
.section-number.light { color: #bab8ae; }
.outcomes-intro { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 10vw; }
.outcomes h2 { max-width: 740px; font-size: clamp(50px, 6.2vw, 90px); }
.outcomes-intro > p { margin: 10px 0 0; color: var(--dark-muted); font-size: 20px; }
.outcome-list { margin: 90px 0 0; padding: 0; list-style: none; border-top: 1px solid #45443e; }
.outcome-list li { display: grid; grid-template-columns: 70px 1fr; padding: 30px 0; border-bottom: 1px solid #45443e; }
.outcome-list li div { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 8vw; }
.outcome-list h3 { margin: 0; font-family: var(--serif); font-size: 31px; font-weight: 500; }
.outcome-list p { max-width: 540px; margin: 4px 0 0; color: var(--dark-muted); }
.outcome-index { color: #bab8ae; }

.manage { padding: 140px 0; }
.manage-heading { display: grid; grid-template-columns: 1.35fr 0.65fr; gap: 10vw; align-items: end; }
.manage h2 { max-width: 850px; font-size: clamp(50px, 5.9vw, 86px); }
.manage-heading p { margin: 0; color: var(--muted); font-size: 20px; }
.manage-list { margin-top: 90px; border-top: 1px solid var(--ink); }
.manage-list > div { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; padding: 25px 0; border-bottom: 1px solid var(--line); }
.manage-list span { font-family: var(--serif); font-size: clamp(26px, 3vw, 42px); letter-spacing: -0.035em; }
.manage-list small { color: var(--muted); font-size: 15px; align-self: center; }

.report { display: grid; grid-template-columns: 1.12fr 0.88fr; min-height: 760px; background: var(--ink); color: var(--white); }
.report-visual { position: relative; min-height: 760px; overflow: hidden; background: #d8d7cf; }
.report-page { position: absolute; width: 42%; aspect-ratio: 0.72; padding: 32px; background: #f8f7f2; color: var(--ink); box-shadow: 0 24px 60px rgba(0,0,0,.16); }
.report-page-back { top: 18%; left: 12%; transform: rotate(-7deg); }
.report-page-front { top: 11%; left: 29%; z-index: 2; transform: rotate(2deg); }
.report-page > span { font-size: 9px; font-weight: 700; letter-spacing: .13em; }
.report-page strong { display: block; margin-top: 50px; font-family: var(--serif); font-size: clamp(23px, 3vw, 43px); font-weight: 500; line-height: 1; letter-spacing: -.04em; }
.paper-line { height: 5px; margin-top: 17px; background: #d8d6cc; }
.paper-line-short { width: 44%; margin-top: 80px; }
.paper-line-mid { width: 72%; }
.paper-rule { height: 1px; margin: 30px 0; background: #b8b5aa; }
.qr-symbol { width: 82px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.qr-symbol i { aspect-ratio: 1; background: var(--ink); }
.qr-symbol i:nth-child(2), .qr-symbol i:nth-child(4), .qr-symbol i:nth-child(8) { background: transparent; border: 3px solid var(--ink); }
.report-page small { display: block; margin-top: 10px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.phone-sheet { position: absolute; right: 6%; bottom: 6%; z-index: 4; width: 31%; min-height: 47%; padding: 28px 24px; background: var(--ink); color: var(--white); box-shadow: 0 18px 45px rgba(0,0,0,.22); }
.phone-sheet > span { color: #bab8ae; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
.phone-sheet > strong { display: block; margin-top: 40px; font-family: var(--serif); font-size: clamp(21px, 2.4vw, 35px); font-weight: 500; line-height: 1.05; }
.phone-sheet > div { margin-top: 70px; border-top: 1px solid #4e4c44; }
.phone-sheet b { display: block; padding: 10px 0; border-bottom: 1px solid #4e4c44; font-size: 10px; font-weight: 500; text-transform: uppercase; letter-spacing: .1em; }
.report-copy { align-self: center; max-width: 610px; padding: 80px clamp(36px, 6vw, 100px); }
.report h2 { font-size: clamp(48px, 5.2vw, 76px); }
.report-copy > p:not(.section-number) { color: #e1e0d8; font-size: 18px; }
.text-link-light { display: inline-block; margin-top: 20px; color: var(--white); }

.method { padding: 140px 0; }
.method-intro { display: grid; grid-template-columns: 1.2fr .8fr; gap: 10vw; align-items: end; }
.method h2 { font-size: clamp(50px, 6vw, 86px); }
.method-intro > p { margin: 0; color: var(--muted); font-size: 20px; }
.method-steps { display: grid; grid-template-columns: repeat(4, 1fr); margin: 90px 0 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.method-steps li { min-height: 270px; padding: 26px 28px 20px 0; border-right: 1px solid var(--line); }
.method-steps li + li { padding-left: 28px; }
.method-steps li:last-child { border-right: 0; }
.method-steps span { font-family: var(--serif); font-size: 29px; }
.method-steps p { color: var(--muted); font-size: 15px; }

.services { padding: 130px 0; border-top: 1px solid var(--line); }
.services-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 11vw; }
.services h2 { font-size: clamp(50px, 5.5vw, 80px); }
.services-grid > div > p { max-width: 510px; margin-top: 28px; color: var(--muted); font-size: 19px; }
.services ul { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.services li { display: flex; justify-content: space-between; gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line); }
.services li span { font-family: var(--serif); font-size: 23px; }
.services li b { color: var(--accent-muted); font-size: 11px; }

.people { display: grid; grid-template-columns: 1fr 1fr; min-height: 680px; background: var(--ink); color: var(--white); }
.people-art { display: flex; align-items: center; justify-content: center; padding: 60px; overflow: hidden; }
.people-art img { width: min(100%, 720px); mix-blend-mode: screen; }
.people-copy { display: flex; flex-direction: column; justify-content: center; max-width: 660px; padding: 80px clamp(40px, 7vw, 110px); }
.people h2 { font-size: clamp(52px, 6vw, 88px); }
.people-copy > p:not(.section-number) { color: var(--dark-muted); font-size: 19px; }
.people-note { margin-top: 42px; padding-top: 24px; border-top: 1px solid #45443e; }

.request { display: grid; grid-template-columns: .85fr 1.15fr; gap: 11vw; padding: 140px 0; }
.request h2 { font-size: clamp(50px, 5.7vw, 84px); }
.request-intro > p:not(.section-number) { max-width: 560px; color: var(--muted); font-size: 19px; }
.request-form { padding-top: 8px; }
.request-form label { display: block; margin-bottom: 24px; }
.request-form label > span { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
.request-form label small { color: var(--muted); font-weight: 400; }
.request-form input,
.request-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
}
.request-form textarea { resize: vertical; }
.request-form input:focus,
.request-form textarea:focus { border-bottom: 3px solid var(--accent); }
.field-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.button-submit { margin-top: 12px; }
.form-note { max-width: 610px; color: var(--muted); font-size: 12px; }
.form-status { min-height: 28px; color: var(--accent); font-size: 14px; font-weight: 600; }

.site-footer { padding: 80px max(24px, calc((100vw - 1240px) / 2)) 30px; background: #e4e3dc; }
.footer-main { display: grid; grid-template-columns: 1fr 1fr; gap: 10vw; padding-bottom: 70px; }
.footer-brand { display: flex; align-items: flex-start; gap: 14px; }
.footer-brand div { display: flex; flex-direction: column; }
.footer-brand strong { font-family: var(--serif); font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.footer-brand span { margin-top: 8px; color: var(--muted); font-size: 12px; letter-spacing: .12em; text-transform: uppercase; }
.footer-product > span { font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.footer-product p { max-width: 440px; margin: 12px 0; color: var(--muted); }
.footer-product a { font-weight: 600; text-underline-offset: 5px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 40px; padding-top: 24px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
.footer-bottom p { max-width: 550px; margin: 0; }
.footer-bottom div { display: flex; gap: 22px; }
.footer-links a { text-underline-offset: 4px; }
.external-note { margin: 18px 0 0; color: var(--muted); font-size: 12px; }

.policy-main { width: var(--shell); margin: 0 auto; padding: 92px 0 130px; }
.policy-intro { max-width: 920px; padding-bottom: 64px; border-bottom: 1px solid var(--ink); }
.policy-intro h1 { margin: 0; font-family: var(--serif); font-size: clamp(56px, 8vw, 108px); font-weight: 500; letter-spacing: -.055em; line-height: .98; }
.policy-standfirst { max-width: 820px; margin: 30px 0 0; color: var(--muted); font-size: clamp(19px, 1.8vw, 25px); line-height: 1.5; }
.policy-meta { margin: 22px 0 0; color: var(--muted); font-size: 13px; }
.policy-sections { max-width: 920px; margin-top: 18px; }
.policy-sections section { display: grid; grid-template-columns: minmax(180px, .42fr) 1fr; gap: 54px; padding: 42px 0; border-bottom: 1px solid var(--line); }
.policy-sections h2 { margin: 0; font-family: var(--serif); font-size: 28px; font-weight: 500; letter-spacing: -.025em; line-height: 1.12; }
.policy-sections p, .policy-sections li { color: var(--muted); }
.policy-sections p { margin: 0 0 16px; }
.policy-sections p:last-child { margin-bottom: 0; }
.policy-sections ul { margin: 0; padding-left: 20px; }
.policy-sections li + li { margin-top: 8px; }
.policy-note { max-width: 920px; margin: 34px 0 0; padding: 22px 0 0; border-top: 1px solid var(--ink); color: var(--muted); font-size: 13px; }
.policy-home { font-weight: 600; text-underline-offset: 5px; }

@media (max-width: 980px) {
  :root { --shell: min(100% - 40px, 760px); }
  .menu-button { display: inline-flex; min-height: 44px; align-items: center; border: 0; background: transparent; font-size: 14px; font-weight: 600; }
  .site-nav { position: fixed; inset: 75px 0 auto; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 28px; border-bottom: 1px solid var(--line); background: var(--paper); }
  .site-nav.open { display: flex; }
  .site-nav a { min-height: 48px; display: flex; align-items: center; border-bottom: 1px solid var(--line); }
  .site-nav .nav-cta { justify-content: center; margin-top: 18px; border: 1px solid var(--ink); }
  .company-context { align-items: flex-start; }
  .company-context div { flex-direction: column; gap: 3px; }
  .hero { grid-template-columns: 1fr; min-height: auto; padding-top: 88px; }
  .system-map { width: min(100%, 640px); justify-self: end; }
  .recognition-grid, .outcomes-intro, .manage-heading, .method-intro, .services-grid, .request { grid-template-columns: 1fr; gap: 42px; }
  .outcome-list li div { grid-template-columns: 1fr; gap: 8px; }
  .manage-heading p, .method-intro > p { max-width: 540px; }
  .report { grid-template-columns: 1fr; }
  .report-visual { min-height: 650px; }
  .report-copy { max-width: none; }
  .method-steps { grid-template-columns: 1fr 1fr; }
  .method-steps li:nth-child(2) { border-right: 0; }
  .method-steps li:nth-child(n+3) { border-top: 1px solid var(--line); }
  .people { grid-template-columns: 1fr; }
  .people-art { min-height: 500px; }
  .people-copy { max-width: none; }
  .footer-bottom { flex-direction: column; }
  .policy-sections section { grid-template-columns: 1fr; gap: 14px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 32px); }
  body { font-size: 16px; }
  .site-header { min-height: 68px; padding: 10px 16px; }
  .site-nav { top: 67px; }
  .brand-name { font-size: 21px; }
  .brand-product { font-size: 11px; }
  .company-context { flex-direction: column; gap: 14px; padding: 16px 0; }
  .company-context > a { width: 100%; text-align: center; }
  .hero { padding: 66px 0 68px; gap: 65px; }
  .hero h1 { font-size: clamp(49px, 15vw, 72px); }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 19px; }
  .button { width: 100%; }
  .system-map li { grid-template-columns: 30px 1fr; }
  .system-map li small { grid-column: 2; }
  .recognition, .manage, .method, .services { padding: 92px 0; }
  .recognition h2, .outcomes h2, .manage h2, .report h2, .method h2, .services h2, .people h2, .request h2 { font-size: 47px; }
  .outcomes { padding: 90px 0; }
  .outcome-list { margin-top: 58px; }
  .outcome-list li { grid-template-columns: 38px 1fr; }
  .outcome-list h3 { font-size: 25px; }
  .manage-list { margin-top: 58px; }
  .manage-list > div { grid-template-columns: 1fr; gap: 6px; }
  .manage-list span { font-size: 28px; }
  .report-visual { min-height: 510px; }
  .report-page { width: 56%; padding: 22px; }
  .report-page-back { left: 6%; }
  .report-page-front { left: 20%; }
  .phone-sheet { width: 38%; min-height: 43%; padding: 20px 14px; }
  .phone-sheet > div { margin-top: 38px; }
  .report-copy { padding: 72px 16px; }
  .method-steps { grid-template-columns: 1fr; }
  .method-steps li, .method-steps li + li { min-height: 0; padding: 24px 0; border-right: 0; border-top: 1px solid var(--line); }
  .method-steps li:first-child { border-top: 0; }
  .services li span { font-size: 19px; }
  .people-art { min-height: 350px; padding: 36px 16px; }
  .people-copy { padding: 72px 16px; }
  .request { padding: 92px 0; }
  .policy-main { padding: 66px 0 92px; }
  .policy-intro { padding-bottom: 44px; }
  .policy-intro h1 { font-size: 52px; }
  .policy-sections section { padding: 32px 0; }
  .field-pair { grid-template-columns: 1fr; gap: 0; }
  .site-footer { padding: 64px 16px 28px; }
  .footer-main { grid-template-columns: 1fr; gap: 54px; }
  .footer-bottom div { flex-direction: column; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
