:root {
  --paper: #f6f4ee;
  --ink: #111111;
  --red: #e5231b;
  --line: rgba(17, 17, 17, 0.34);
  --display: "Arial Narrow", "Roboto Condensed", "Helvetica Neue Condensed", Impact, sans-serif;
  --body: Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
}
a { color: inherit; }
.top-rule { height: 6px; background: var(--red); }
.page-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 20px;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 32px;
  padding-right: 32px;
}
.site-header {
  min-height: 102px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
}
.brand {
  grid-column: 1 / span 3;
  display: inline-block;
  width: max-content;
  color: var(--ink);
  font-family: var(--display);
  font-size: 20px;
  font-stretch: condensed;
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.8px;
  text-decoration: none;
}
.brand span { color: var(--red); }
.header-meta {
  grid-column: 9 / -1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.header-meta a { text-decoration: none; }
.header-meta a:hover, .site-footer a:hover { color: var(--red); }
.hero { min-height: 660px; border-bottom: 1px solid var(--ink); }
.hero-number {
  grid-column: 1 / span 3;
  align-self: end;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(170px, 23vw, 350px);
  font-weight: 900;
  letter-spacing: -17px;
  line-height: .67;
  overflow: hidden;
}
.hero-copy {
  grid-column: 4 / span 6;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 74px 0 56px;
}
.eyebrow {
  margin: 0 0 24px;
  color: var(--red);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.6px;
}
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3, blockquote {
  font-family: var(--display);
  font-weight: 900;
  letter-spacing: -1.5px;
}
h1 {
  margin-bottom: 28px;
  font-size: clamp(56px, 8vw, 124px);
  line-height: .79;
}
.hero-dek {
  max-width: 390px;
  margin-bottom: 32px;
  font-size: 18px;
  line-height: 1.35;
}
.button {
  display: inline-block;
  width: max-content;
  padding: 15px 18px 13px;
  border: 1px solid var(--red);
  border-radius: 0;
  color: var(--paper);
  background: var(--red);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
  cursor: pointer;
  transition: background .18s ease, color .18s ease;
}
.button:hover, .button:focus-visible { color: var(--red); background: var(--paper); }
.hero-note {
  grid-column: 11 / -1;
  align-self: end;
  margin-bottom: 60px;
  padding-top: 12px;
  border-top: 1px solid var(--ink);
  font-size: 10px;
  letter-spacing: 1.3px;
}
.hero-note span { display: block; margin-bottom: 7px; }
.hero-note strong { font-family: var(--display); font-size: 18px; line-height: .9; }
.services { padding-top: 82px; padding-bottom: 82px; border-bottom: 1px solid var(--ink); }
.section-label { grid-column: 1 / span 3; }
.section-label p { color: var(--red); font-size: 11px; font-weight: 800; letter-spacing: 1.6px; }
.section-label h2, .method h2, .contact h2 { margin-bottom: 0; font-size: clamp(34px, 4vw, 58px); line-height: .82; }
.service-list { grid-column: 4 / -1; display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.service { min-height: 196px; padding-top: 13px; border-top: 1px solid var(--ink); }
.service span { display: block; margin-bottom: 34px; color: var(--red); font-family: var(--display); font-size: 28px; font-weight: 900; line-height: 1; }
.service h3 { margin-bottom: 12px; font-size: 19px; line-height: .9; }
.service p { margin-bottom: 0; font-size: 13px; line-height: 1.35; }
.facts { border-bottom: 1px solid var(--ink); background: var(--ink); color: var(--paper); }
.facts-grid { min-height: 192px; }
.fact { grid-column: span 4; display: flex; flex-direction: column; justify-content: center; min-height: 192px; padding-right: 18px; border-right: 1px solid rgba(246,244,238,.45); }
.fact:last-child { border-right: 0; }
.fact strong { color: var(--red); font-family: var(--display); font-size: clamp(52px, 6vw, 88px); font-weight: 900; letter-spacing: -3px; line-height: .76; }
.fact span { margin-top: 18px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.method { padding-top: 110px; padding-bottom: 110px; border-bottom: 1px solid var(--ink); }
.method-intro { grid-column: 1 / span 5; }
.method-intro > p:last-child { max-width: 440px; margin-top: 30px; margin-bottom: 0; font-size: 16px; line-height: 1.55; }
.method-steps { grid-column: 7 / -1; margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--ink); }
.method-steps li { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding: 20px 0 17px; border-bottom: 1px solid var(--line); }
.method-steps li > span { color: var(--red); font-family: var(--display); font-size: 30px; font-weight: 900; line-height: .8; }
.method-steps h3 { margin-bottom: 7px; font-size: 21px; line-height: .9; }
.method-steps p { margin-bottom: 0; font-size: 14px; line-height: 1.35; }
.quote-section { padding-top: 102px; padding-bottom: 102px; border-bottom: 1px solid var(--ink); }
.quote-section .eyebrow { grid-column: 1 / span 3; }
blockquote { grid-column: 4 / span 8; margin: 0; padding: 0 0 0 27px; border-left: 7px solid var(--red); font-size: clamp(32px, 4.5vw, 68px); line-height: .94; }
.quote-credit { grid-column: 4 / span 8; margin: 25px 0 0; font-size: 11px; font-weight: 800; letter-spacing: 1.4px; }
.contact { padding-top: 96px; padding-bottom: 96px; }
.contact-title { grid-column: 1 / span 6; }
.contact-title address { margin-top: 45px; font-style: normal; font-size: 15px; line-height: 1.5; }
.contact-phone { display: inline-block; margin-top: 10px; color: var(--red); font-family: var(--display); font-size: 27px; font-weight: 900; text-decoration: none; }
.contact-form { grid-column: 8 / -1; padding-top: 7px; }
.form-row { margin-bottom: 22px; border-top: 1px solid var(--ink); }
.form-row label { display: block; padding-top: 10px; font-size: 10px; font-weight: 800; letter-spacing: 1.4px; }
input, textarea { width: 100%; padding: 8px 0 3px; border: 0; border-radius: 0; outline: 0; color: var(--ink); background: transparent; font: 18px var(--body); }
textarea { resize: vertical; }
input:focus, textarea:focus { box-shadow: inset 0 -2px var(--red); }
.form-status { min-height: 20px; margin: 14px 0 0; color: var(--red); font-size: 12px; font-weight: 700; }
.site-footer { min-height: 108px; align-items: center; border-top: 1px solid var(--ink); font-size: 10px; font-weight: 800; letter-spacing: 1.15px; }
.footer-brand { grid-column: 1 / span 3; font-family: var(--display); font-size: 17px; letter-spacing: -.5px; }
.social-links { grid-column: 5 / span 4; display: flex; gap: 18px; }
.site-footer a { text-decoration: none; }
.site-footer > a { grid-column: 9 / span 3; }
.site-footer p { grid-column: 12; margin: 0; text-align: right; white-space: nowrap; }
.privacy-page { min-height: calc(100vh - 216px); padding-top: 82px; padding-bottom: 100px; }
.privacy-number { grid-column: 1 / span 3; align-self: start; color: var(--red); font-family: var(--display); font-size: clamp(130px, 18vw, 270px); font-weight: 900; letter-spacing: -13px; line-height: .7; }
.privacy-content { grid-column: 4 / span 7; }
.privacy-content h1 { font-size: clamp(52px, 7vw, 98px); }
.privacy-content .intro { margin-bottom: 48px; font-size: 13px; font-weight: 700; letter-spacing: .5px; }
.privacy-content section { max-width: 730px; padding: 21px 0; border-top: 1px solid var(--ink); }
.privacy-content section h2 { margin-bottom: 10px; font-size: 23px; line-height: .9; }
.privacy-content section p { margin-bottom: 0; font-size: 15px; line-height: 1.5; }
.privacy-content .button { margin-top: 32px; }

@media (max-width: 760px) {
  .page-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 14px; padding-left: 18px; padding-right: 18px; }
  .site-header { min-height: 80px; }
  .brand { grid-column: 1 / span 2; font-size: 18px; }
  .header-meta { grid-column: 3 / -1; display: block; text-align: right; font-size: 9px; line-height: 1.7; }
  .header-meta span, .header-meta a { display: block; }
  .hero { min-height: 610px; position: relative; }
  .hero-number { grid-column: 1 / span 2; align-self: end; font-size: 180px; letter-spacing: -10px; }
  .hero-copy { grid-column: 1 / -1; justify-content: start; padding-top: 70px; padding-bottom: 0; }
  h1 { font-size: clamp(60px, 18vw, 95px); }
  .hero-dek { max-width: 310px; font-size: 16px; }
  .hero-note { grid-column: 3 / -1; margin-bottom: 33px; }
  .services, .method, .contact { padding-top: 62px; padding-bottom: 62px; }
  .section-label, .method-intro, .contact-title { grid-column: 1 / -1; }
  .service-list { grid-column: 1 / -1; grid-template-columns: repeat(2, 1fr); gap: 24px 14px; margin-top: 42px; }
  .service { min-height: 175px; }
  .fact { grid-column: span 4; min-height: 135px; border-right: 0; border-bottom: 1px solid rgba(246,244,238,.45); }
  .fact:last-child { border-bottom: 0; }
  .facts-grid { min-height: 0; }
  .fact strong { font-size: 66px; }
  .method-intro > p:last-child { margin-bottom: 48px; }
  .method-steps { grid-column: 1 / -1; }
  .quote-section { padding-top: 65px; padding-bottom: 65px; }
  .quote-section .eyebrow, blockquote, .quote-credit { grid-column: 1 / -1; }
  blockquote { padding-left: 17px; font-size: clamp(31px, 10vw, 47px); }
  .quote-credit { margin-top: 20px; }
  .contact-form { grid-column: 1 / -1; margin-top: 48px; }
  .site-footer { min-height: 0; padding-top: 28px; padding-bottom: 28px; row-gap: 16px; }
  .footer-brand, .social-links, .site-footer > a, .site-footer p { grid-column: 1 / -1; }
  .social-links { flex-wrap: wrap; }
  .site-footer p { text-align: left; }
  .privacy-page { padding-top: 55px; padding-bottom: 65px; }
  .privacy-number { grid-column: 1 / -1; font-size: 142px; letter-spacing: -8px; }
  .privacy-content { grid-column: 1 / -1; margin-top: 46px; }
  .privacy-content h1 { font-size: 58px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button { transition: none; }
}