:root {
  --paper-0: #fdfcf9;
  --paper-1: #fbfaf6;
  --paper-2: #f7f5f0;
  --paper-3: #efece4;
  --paper-4: #e5e1d6;

  --ink-0: #121210;
  --ink-1: #1f1e1a;
  --ink-2: #33312a;
  --ink-3: #4b483e;
  --ink-4: #5f5c4e;
  --ink-5: #797463;

  --brick-0: #7d2117;
  --brick-1: #9a2b1d;
  --brick-2: #b53525;
  --brick-3: #cf4130;
  --brick-4: #ee9f8c;
  --brick-wash: rgba(181, 53, 37, .09);

  --olive-0: #7a5a16;
  --olive-1: #b0842a;
  --olive-2: #d8ab4e;

  --surface-page: var(--paper-2);
  --surface-raised: var(--paper-1);
  --surface-sunken: var(--paper-3);
  --surface-invert: var(--ink-0);
  --surface-invert-2: var(--ink-1);

  --text-strong: var(--ink-0);
  --text-body: var(--ink-2);
  --text-muted: var(--ink-4);
  --text-invert: #fbfaf6;
  --text-invert-muted: rgba(251, 250, 246, .76);

  --rule-faint: #e6e2d9;
  --rule: #dad5ca;
  --rule-strong: #88836f;
  --rule-invert: rgba(251, 250, 246, .18);

  --accent: var(--brick-2);
  --accent-hover: var(--brick-3);
  --accent-invert: var(--brick-4);

  --paper: var(--paper-2);
  --ink: var(--ink-0);
  --mute: var(--ink-4);
  --line: var(--rule);
  --line-2: var(--rule-strong);
  --ox: var(--accent);
  --ox-2: var(--accent-hover);
  --gold: var(--olive-1);
  --sans: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --gut: 20px;
  --sec: 72px;
  --maxw: 1440px;
  --ease: cubic-bezier(.19, 1, .22, 1);
  --wonk: "SOFT" 0, "WONK" 1, "opsz" 144;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 18% 12%, rgba(181, 53, 37, .07), transparent 48%),
    radial-gradient(circle at 88% 82%, rgba(176, 132, 42, .045), transparent 54%);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: .5;
  background-image: repeating-linear-gradient(to bottom, rgba(18, 18, 16, .024) 0 1px, transparent 1px 4px);
}

img, video { display: block; max-width: 100%; }
a { color: var(--ox); text-decoration: none; }
a:hover { color: var(--ink); }
button { font: inherit; color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-variation-settings: var(--wonk);
  letter-spacing: -.028em;
  line-height: 1.02;
  margin: 0;
  text-wrap: balance;
}

h1 { font-size: clamp(37px, 7.4vw, 80px); line-height: .98; letter-spacing: -.036em; }
h2 { font-size: clamp(29px, 5.4vw, 54px); line-height: 1.02; letter-spacing: -.032em; }
h3 { font-size: clamp(22px, 3.2vw, 32px); line-height: 1.1; letter-spacing: -.022em; }
h4 { font-size: 18px; letter-spacing: -.012em; }
em { font-style: italic; }
h1 em, h2 em { color: var(--ox); font-variation-settings: "SOFT" 20, "WONK" 1, "opsz" 144; }

p { margin: 0 0 1.05em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

.wrap { position: relative; z-index: 1; width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 calc(var(--gut) + .5rem); }
.narrow { max-width: 740px; }

.label {
  font-size: 10.5px;
  font-stretch: 82%;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--mute);
  margin: 0 0 16px;
}
.num {
  font-size: 10.5px;
  font-stretch: 82%;
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ox);
  font-variant-numeric: tabular-nums;
}
.lead { font-size: clamp(17px, 1.5vw, 19px); line-height: 1.5; color: var(--text-body); max-width: 44ch; }
.body { color: var(--text-body); }
.body p { max-width: 60ch; }
.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.sec { padding: var(--sec) 0; position: relative; }
.sec-tight { padding: 46px 0; position: relative; }

.skip { position: absolute; left: 14px; top: -70px; z-index: 200; background: var(--ink); color: var(--paper); padding: 11px 18px; }
.skip:focus { top: 12px; color: var(--paper); }

:where(a, button, input, textarea, summary):focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 50px;
  padding: 0 26px;
  background: var(--ink);
  color: var(--paper);
  font-size: 11px;
  font-stretch: 84%;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
  transition: color .3s var(--ease), border-color .4s var(--ease);
}
.btn::before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: var(--ox);
  transform: translateY(101%);
  transition: transform .45s var(--ease);
}
.btn:hover { color: var(--paper); border-color: var(--ox); }
.btn:hover::before { transform: translateY(0); }
.btn:active { transform: translateY(1px); }
.btn > * { position: relative; }
.btn-out { background: none; color: var(--text-strong); border-color: var(--rule-strong); }
.btn-out:hover { color: var(--paper); }
.btn-inv { background: var(--paper-1); color: var(--ink-0); border-color: var(--paper-1); }
.btn-inv::before { background: var(--ink-0); }
.btn-inv:hover { color: var(--text-invert); border-color: var(--ink-0); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

.link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-stretch: 84%;
  font-weight: 500;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 5px;
  background-image: linear-gradient(var(--ox), var(--ox));
  background-size: 0 1px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  box-shadow: inset 0 -1px 0 var(--line-2);
  transition: color .3s, background-size .45s var(--ease);
}
.link:hover { color: var(--ox); background-size: 100% 1px; }
.link .ico { display: block; width: 15px; transition: transform .45s var(--ease); }
.link .ico svg { width: 15px; height: 15px; display: block; }
.link:hover .ico { transform: translateX(5px); }

.head {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(247, 245, 240, .9);
  backdrop-filter: blur(10px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: border-color .35s, background .35s;
}
.head[data-stuck="true"] { border-bottom-color: var(--line); background: rgba(247, 245, 240, .96); }
.head-in { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 68px; transition: min-height .35s var(--ease); }
.head[data-stuck="true"] .head-in { min-height: 58px; }

.mark {
  font-family: var(--serif);
  font-variation-settings: var(--wonk);
  font-size: 22px;
  letter-spacing: -.024em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 9px;
}
.mark__glyph { width: 22px; height: 25px; display: block; flex: none; overflow: visible; }
.mark__top, .mark__base { transition: transform .5s var(--ease); }
.mark__top { fill: currentColor; }
.mark__base { fill: var(--accent); }
.mark:hover .mark__top { transform: translate(6px, 6px); }
.mark:hover .mark__base { transform: translate(-6px, -6px); }
.foot .mark__base { fill: #e02b1d; }
.foot .mark:hover .mark__top { transform: translate(6px, 6px); }

.nav { display: none; }
.nav a {
  color: var(--ink-2);
  font-size: 11px;
  font-stretch: 84%;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  position: relative;
  padding: 7px 0;
  white-space: nowrap;
}
.nav a::after { content: ""; position: absolute; left: 0; bottom: 2px; height: 1px; width: 0; background: var(--ox); transition: width .4s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--ink); }
.head .btn { display: none; }

.burger { width: 48px; height: 48px; background: none; border: 1px solid var(--rule-strong); display: grid; place-content: center; gap: 5px; cursor: pointer; }
.burger i { display: block; width: 19px; height: 1px; background: var(--ink); transition: transform .4s var(--ease); }
.burger[aria-expanded="true"] i:first-child { transform: translateY(3px) rotate(45deg); }
.burger[aria-expanded="true"] i:last-child { transform: translateY(-3px) rotate(-45deg); }

.drawer {
  position: fixed;
  inset: 68px 0 auto;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 6px var(--gut) 28px;
  z-index: 80;
  clip-path: inset(0 0 100% 0);
  visibility: hidden;
  transition: clip-path .5s var(--ease), visibility .5s;
}
.drawer.is-open { clip-path: inset(0 0 0 0); visibility: visible; }
.drawer a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--rule-faint);
  color: var(--ink);
  font-family: var(--serif);
  font-variation-settings: var(--wonk);
  font-size: 26px;
  letter-spacing: -.03em;
}
.drawer a em { font-family: var(--sans); font-style: normal; font-size: 10.5px; font-stretch: 82%; letter-spacing: .2em; color: var(--ox); }

.hero { padding: 52px 0 0; }
.hero .num { display: block; margin-bottom: 22px; }
.hero h1 { max-width: 16ch; }
.hero .lead { margin: 0 0 30px; }

.hero-media { margin: 56px 0 0; position: relative; overflow: hidden; }
.hero-media img {
  width: 100%;
  height: clamp(260px, 54vw, 560px);
  object-fit: cover;
  filter: grayscale(1) contrast(1.06) brightness(1.02);
  transform: scale(1.06);
  transition: transform 1.6s var(--ease);
}
.hero-media.in img { transform: scale(1); }
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(200deg, rgba(181, 53, 37, .3), rgba(18, 18, 16, .3));
  mix-blend-mode: multiply;
  pointer-events: none;
}
.hero-media figcaption {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  font-stretch: 82%;
  letter-spacing: .2em;
  text-transform: uppercase;
  padding: 9px 15px;
}

.split { display: grid; gap: 30px; }
.split-head { margin-bottom: 38px; }

.rows { border-top: 1px solid var(--line); }
.row {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: padding-left .5s var(--ease);
}
.row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--ox);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .5s var(--ease);
}
.row:hover { padding-left: 22px; }
.row:hover::before { transform: scaleY(1); transform-origin: top; }
.row-top { display: flex; align-items: baseline; gap: 16px; }
.row h3 { flex: 1; transition: color .3s; }
.row:hover h3 { color: var(--ox); }
.row p { margin: 11px 0 0; color: var(--ink-3); max-width: 58ch; }
.row em { font-style: normal; color: var(--ox); font-size: 10.5px; font-stretch: 82%; letter-spacing: .2em; text-transform: uppercase; opacity: 0; transform: translateX(-6px); transition: opacity .35s, transform .45s var(--ease); }
.row:hover em { opacity: 1; transform: none; }

.aims { list-style: none; margin: 0; padding: 0; display: grid; counter-reset: a; }
.aims li {
  counter-increment: a;
  border-top: 1px solid var(--line);
  padding: 24px 0 24px 50px;
  position: relative;
  font-family: var(--serif);
  font-variation-settings: var(--wonk);
  font-size: clamp(20px, 2.4vw, 27px);
  letter-spacing: -.025em;
  line-height: 1.18;
}
.aims li::before {
  content: "0" counter(a);
  position: absolute;
  left: 0;
  top: 29px;
  font-family: var(--sans);
  font-size: 10.5px;
  font-stretch: 82%;
  letter-spacing: .18em;
  color: var(--ox);
}
.aims li:last-child { border-bottom: 1px solid var(--line); }

.checks { list-style: none; margin: 0; padding: 0; }
.checks li { border-bottom: 1px solid var(--rule-faint); padding: 16px 0; color: var(--text-body); }
.checks li:first-child { border-top: 1px solid var(--rule); }

.band { background: var(--surface-sunken); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-ink { background: var(--brick-0); color: var(--text-invert); border: 0; }
.band-ink::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .6;
  background-image: repeating-linear-gradient(48deg, rgba(251, 250, 246, .06) 0 1px, transparent 1px 11px);
}
.band-ink h2, .band-ink h3 { color: var(--text-invert); }
.band-ink h2 em { color: var(--olive-2); }
.band-ink .lead, .band-ink .body { color: var(--text-invert-muted); }
.band-ink .label { color: rgba(237, 235, 225, .58); }
.band-ink .rule { border-color: var(--rule-invert); }

.pair { display: grid; gap: 28px; }
.pair-media { position: relative; overflow: hidden; }
.pair-media img {
  width: 100%;
  height: clamp(250px, 46vw, 460px);
  object-fit: cover;
  filter: grayscale(.82) contrast(1.04) sepia(.14);
  transform: scale(1.02);
  transition: transform 1.3s var(--ease), filter .8s var(--ease);
}
.pair-media:hover img { transform: scale(1.06); filter: grayscale(.1) contrast(1.02) sepia(.04); }

.quote { display: grid; gap: 24px; }
.quote blockquote {
  margin: 0;
  font-family: var(--serif);
  font-variation-settings: var(--wonk);
  font-size: clamp(22px, 3.1vw, 36px);
  line-height: 1.22;
  letter-spacing: -.03em;
  text-indent: -.42em;
}
.quote-foot { display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 17px; }
.quote cite { font-style: normal; font-size: 12px; font-stretch: 86%; letter-spacing: .1em; text-transform: uppercase; color: var(--mute); }
.arrows { display: flex; gap: 8px; }
.arrows button { width: 46px; height: 46px; display: grid; place-content: center; border: 1px solid var(--rule-strong); background: none; cursor: pointer; transition: background .3s, color .3s, border-color .3s; }
.arrows button:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.arrows svg { width: 17px; height: 17px; display: block; }
.slide { transition: opacity .35s var(--ease), transform .35s var(--ease); }
.slide[data-out="true"] { opacity: 0; transform: translateY(6px); }

.cases { border-top: 1px solid var(--line); }
.case { border-bottom: 1px solid var(--line); position: relative; }
.case-tog { width: 100%; background: none; border: 0; text-align: left; padding: 38px 0; cursor: pointer; display: flex; gap: 18px; align-items: flex-start; transition: padding-left .5s var(--ease); }
.case-tog:hover { padding-left: 16px; }
.case-tog h3 { flex: 1; font-size: clamp(20px, 2.6vw, 29px); transition: color .3s; }
.case-tog:hover h3, .case-tog[aria-expanded="true"] h3 { color: var(--ox); }
.case-tog i { width: 16px; height: 16px; flex: none; position: relative; margin-top: 9px; }
.case-tog i::before, .case-tog i::after { content: ""; position: absolute; background: var(--ox); transition: transform .45s var(--ease); }
.case-tog i::before { inset: 7px 0 auto; height: 1px; }
.case-tog i::after { inset: 0 7px auto; width: 1px; height: 16px; }
.case-tog[aria-expanded="true"] i::after { transform: scaleY(0); }
.case-body { display: none; padding: 20px 0 72px; }
.case-body[data-open] { display: block; animation: fade .55s var(--ease); }
@keyframes fade { from { opacity: 0; transform: translateY(10px); } }
.case-grid { display: grid; gap: 28px; }
.case-grid h4 { margin-bottom: 9px; }
.case-grid > div { border-top: 1px solid var(--rule-strong); padding-top: 16px; }
.case-media { margin-bottom: 28px; overflow: hidden; }
.case-media img { width: 100%; height: clamp(190px, 30vw, 320px); object-fit: cover; filter: grayscale(.8) sepia(.12); }
.sector { font-size: 10.5px; font-stretch: 82%; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); display: block; margin-top: 8px; }

.sheet { border-top: 1px solid var(--rule); padding: 52px 0; position: relative; }
.sheet:first-of-type { border-top: 0; }
.sheet-alt { background: var(--surface-raised); }

.form { display: grid; gap: 20px; }
.form label { display: block; font-size: 10.5px; font-stretch: 82%; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); margin-bottom: 8px; }
.form input, .form textarea {
  width: 100%;
  min-height: 50px;
  padding: 13px 0;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink-5);
  border-radius: 0;
  color: var(--ink);
  font: inherit;
  transition: border-color .3s;
}
.form textarea { min-height: 130px; resize: vertical; }
.form input:hover, .form textarea:hover { border-color: var(--ink); }
.form input:focus, .form textarea:focus { border-color: var(--ox); outline-offset: 4px; }
.err { color: var(--accent); font-size: 13px; margin-top: 7px; }
.err[hidden] { display: none; }
.sent { border: 1px solid var(--accent); background: var(--brick-wash); padding: 26px; animation: fade .5s var(--ease); }
.sent[hidden] { display: none; }

.dl { margin: 0; display: grid; }
.dl div { border-top: 1px solid var(--rule-faint); padding: 15px 0; display: grid; gap: 6px; }
@media (min-width: 620px) { .dl div { grid-template-columns: 110px 1fr; gap: 18px; align-items: baseline; } }
.dl dt { padding-top: 3px; font-size: 10.5px; font-stretch: 82%; letter-spacing: .2em; text-transform: uppercase; color: var(--mute); }
.dl dd { margin: 0; }

.foot { background: var(--surface-invert); color: var(--text-invert-muted); padding: 60px 0 28px; position: relative; z-index: 1; }
.foot .mark { color: var(--text-invert); font-size: 25px; gap: 12px; }
.foot .mark__glyph { width: 25px; height: 28px; }
.foot .mark__top { fill: #ffffff; }
.foot-brand p { margin-top: 14px; max-width: 30ch; font-size: 14px; }
.foot h4 { color: var(--text-invert); font-family: var(--sans); font-size: 10.5px; font-stretch: 82%; letter-spacing: .22em; text-transform: uppercase; font-weight: 500; margin-bottom: 16px; }
.foot-grid { display: grid; gap: 36px; }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.foot a { color: var(--text-invert-muted); font-size: 14px; transition: color .25s, padding-left .35s var(--ease); }
.foot a:hover { color: var(--text-invert); padding-left: 4px; }
.foot-base {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid var(--rule-invert);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: 10.5px;
  font-stretch: 82%;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(237, 235, 225, .5);
}

.reveal { opacity: 0; transform: translateY(20px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .85s var(--ease), transform .85s var(--ease); }

.ln { display: inline-block; overflow: hidden; vertical-align: bottom; padding: .1em .07em .24em; margin: -.1em -.07em -.24em; }
.ln > i { display: inline-block; font-style: inherit; transform: translateY(105%); transition: transform .95s var(--ease); }
.lit .ln > i { transform: none; }

.e404 { padding: 96px 0 var(--sec); }
.e404 .e404-code {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 0, "WONK" 1, "opsz" 144;
  font-size: clamp(78px, 23vw, 216px);
  line-height: .86;
  letter-spacing: -.05em;
  margin: 0 0 16px;
  color: var(--ox);
}

.cookie {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  background: var(--paper-0);
  border: 1px solid var(--ink);
  box-shadow: 14px 14px 0 -1px rgba(181, 53, 37, .16);
  padding: 22px;
  max-width: 480px;
  transform: translateY(18px);
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
}
.cookie[hidden] { display: none; }
.cookie.is-open { opacity: 1; transform: none; visibility: visible; }
.cookie h4 { font-family: var(--serif); font-variation-settings: var(--wonk); font-size: 23px; letter-spacing: -.028em; margin-bottom: 10px; }
.cookie p { font-size: 14px; line-height: 1.5; color: var(--text-body); }
.cookie-acts { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 18px; }
.cookie .btn { min-height: 44px; padding: 0 17px; font-size: 10.5px; }
.cookie-more {
  background: none;
  border: 0;
  padding: 0 0 3px;
  margin-top: 15px;
  font-size: 10.5px;
  font-stretch: 82%;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ox);
  border-bottom: 1px solid var(--line-2);
  cursor: pointer;
}
.cookie-more:hover { border-color: var(--ox); }
.cookie-detail { margin-top: 18px; border-top: 1px solid var(--line); animation: fade .45s var(--ease); }
.cookie-detail[hidden] { display: none; }
.tog { display: flex; gap: 15px; padding: 16px 0; border-bottom: 1px solid var(--rule-faint); }
.tog p { margin: 5px 0 0; font-size: 13px; line-height: 1.45; }
.tog strong { font-size: 12px; font-stretch: 86%; letter-spacing: .06em; text-transform: uppercase; }
.sw { width: 44px; height: 25px; flex: none; border: 1px solid var(--rule-strong); background: var(--paper-3); position: relative; cursor: pointer; transition: background .3s, border-color .3s; }
.sw::after { content: ""; position: absolute; top: 3px; left: 3px; width: 17px; height: 17px; background: var(--mute); transition: transform .35s var(--ease), background .3s; }
.sw[aria-checked="true"] { background: var(--ink); border-color: var(--ink); }
.sw[aria-checked="true"]::after { transform: translateX(19px); background: var(--paper); }
.sw[aria-disabled="true"] { opacity: .5; cursor: not-allowed; }

@media (min-width: 620px) {
  :root { --gut: 40px; --sec: 96px; }
  .case-grid { grid-template-columns: repeat(3, 1fr); }
  .foot-grid { grid-template-columns: repeat(2, 1fr); }
  .cookie { left: auto; right: 24px; bottom: 24px; }
}

@media (min-width: 900px) {
  :root { --sec: 132px; }
  body::after {
    content: "";
    position: fixed;
    top: 0;
    bottom: 0;
    left: 50%;
    width: min(100% - 2 * var(--gut), calc(var(--maxw) - 2 * var(--gut)));
    transform: translateX(-50%);
    z-index: 0;
    pointer-events: none;
    background-image:
      linear-gradient(to right, rgba(18, 18, 16, .06) 0 1px, transparent 1px),
      linear-gradient(to left, rgba(18, 18, 16, .06) 0 1px, transparent 1px);
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: 0 0, 100% 0;
  }
  .nav { display: flex; gap: 20px; }
  .burger, .drawer { display: none; }

  .split { grid-template-columns: repeat(12, 1fr); gap: 0 26px; }
  .split > :first-child { grid-column: 1 / 5; }
  .split > :nth-child(2) { grid-column: 6 / 13; }
  .split-wide > :first-child { grid-column: 1 / 4; }
  .split-wide > :nth-child(2) { grid-column: 5 / 13; }

  .pair { grid-template-columns: repeat(12, 1fr); gap: 0 26px; align-items: center; }
  .pair > :first-child { grid-column: 1 / 7; }
  .pair > :nth-child(2) { grid-column: 8 / 13; }
  .pair-rev > :first-child { grid-column: 7 / 13; order: 2; }
  .pair-rev > :nth-child(2) { grid-column: 1 / 6; }

  .aims { grid-template-columns: repeat(3, 1fr); gap: 0 30px; }
  .aims li:last-child { border-bottom: 0; }
  .foot-grid { grid-template-columns: 1.6fr 1fr 1fr; }

  .hero { padding-top: 84px; }
  .hero-in { display: grid; grid-template-columns: repeat(12, 1fr); gap: 0 26px; align-items: end; }
  .hero-in > :first-child { grid-column: 1 / 8; }
  .hero-in > :nth-child(2) { grid-column: 8 / 13; padding-bottom: .6em; }

  .quote { grid-template-columns: repeat(12, 1fr); gap: 0 26px; align-items: end; }
  .quote > :first-child { grid-column: 1 / 10; }
  .quote > :nth-child(2) { grid-column: 10 / 13; }
  .quote [data-slide] .quote-foot { margin-right: -26px; padding-right: 26px; }
  .quote .quote-foot { min-height: 64px; align-items: center; }
  .sheet .pair-media { position: sticky; top: 108px; }
  .rows .row:nth-child(even) { padding-right: 8%; }
}

@media (min-width: 1120px) {
  .nav { gap: 28px; }
  .head .btn { display: inline-flex; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .ln > i { transform: none; }
}

.legal-h1 { max-width: 14ch; padding-bottom: .1em; }
.legal { max-width: 740px; color: var(--text-body); }
.legal p { max-width: 68ch; }
.legal h2 { font-size: clamp(23px, 2.6vw, 30px); margin: 44px 0 14px; }
.legal h3 { font-size: 20px; margin: 34px 0 12px; }
.legal ul { margin: 0 0 1.05em; padding-left: 20px; }
.legal li { margin-bottom: 7px; }
.legal strong { color: var(--text-strong); }

.actions { margin-top: 26px; }
.body-offset { margin-top: 20px; }
.lead-wide { max-width: 58ch; }
.rule-sec { margin: var(--sec) 0; }
.rule-mid { margin: 44px 0; }
.rule-flush { margin-bottom: 0; }
.case-head { flex: 1; }
.case-tog .num { margin-top: 9px; }
.contact-details { margin-top: 24px; }
.split > div > .pair-media { margin-top: 26px; }
.sheet h2 { font-size: clamp(25px, 4vw, 40px); max-width: 20ch; }
.quote [data-slide] .quote-foot { margin-top: 22px; }
.e404-title { margin-top: 22px; max-width: 20ch; }
.e404 em { font-style: italic; color: var(--accent); }
.e404 .aims a { color: inherit; }
.e404 .aims a:hover { color: var(--accent); }
.cookie-more.inline { margin-top: 0; }
.contact-aside .body { max-width: 34ch; margin-top: 16px; }
.contact-details { margin-top: 30px; }
.dl a { color: var(--text-strong); background-image: linear-gradient(var(--accent), var(--accent)); background-size: 100% 1px; background-position: 0 100%; background-repeat: no-repeat; transition: color .25s; }
.dl a:hover { color: var(--accent); }
.contact-main > h3 { margin-bottom: 26px; }
.contact-main .form { max-width: 620px; }
@media (min-width: 900px) {
  .contact-layout { align-items: start; }
  .contact-layout > .contact-aside { grid-column: 1 / 5; }
  .contact-layout > .contact-main { grid-column: 6 / 13; }
  .contact-aside { position: sticky; top: 116px; }
}
