@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/SourceSans3-400.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/SourceSans3-600.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/SourceSans3-700.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Source Sans 3";
  src: url("assets/fonts/SourceSans3-900.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --ink: #242529;
  --cream: #f7eadc;
  --red: #bc2328;
  --red-readable: #d47370;
  --gray: #8b847b;
  --dark: #141216;
  --dark-raised: color-mix(in srgb, var(--dark) 82%, var(--ink));
  --cream-muted: color-mix(in srgb, var(--cream) 76%, var(--gray));
  --line-dark: color-mix(in srgb, var(--gray) 38%, transparent);
  --line-light: color-mix(in srgb, var(--ink) 38%, transparent);
  --header-height: 78px;
  --page-gutter: clamp(18px, 3.6vw, 62px);
  --content-max: 1600px;
  --focus: var(--cream);
  --timeline-progress: 0%;
  font-family: "Source Sans 3", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--dark);
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--dark);
  color: var(--cream);
  font-family: "Source Sans 3", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
}

button,
input,
select,
textarea {
  border-radius: 0;
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--dark);
}

::selection {
  background: var(--red);
  color: var(--cream);
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2 {
  max-width: 22ch;
  margin-bottom: 0.55em;
  font-size: clamp(2rem, 3.5vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.98;
}

h3 {
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.08;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: -80px;
  left: 18px;
  padding: 12px 16px;
  background: var(--cream);
  color: var(--dark);
  font-weight: 900;
}

.skip-link:focus {
  top: 18px;
}

.edit-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 186px minmax(0, 1fr) 90px;
  background: var(--dark);
  border-bottom: 1px solid var(--gray);
}

.brand-lockup {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: 12px 17px;
  background: var(--cream);
  border-right: 1px solid var(--gray);
}

.brand-lockup img {
  width: 154px;
  height: auto;
}

.chapter-nav {
  min-width: 0;
  display: flex;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--gray) var(--dark);
}

.chapter-nav a {
  min-width: 112px;
  flex: 1 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-right: 1px solid var(--line-dark);
  color: var(--cream-muted);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
}

.chapter-nav time,
.edit-point,
.step-index,
.rate-time {
  color: var(--gray);
  font-variant-numeric: tabular-nums;
}

.chapter-nav a:hover,
.chapter-nav a[aria-current="location"] {
  background: var(--cream);
  color: var(--dark);
}

.chapter-nav a[aria-current="location"] time {
  color: var(--red);
}

.header-rates {
  display: grid;
  place-items: center;
  background: var(--red);
  color: var(--cream);
  font-weight: 900;
  text-decoration: none;
}

.header-rates:hover {
  background: var(--cream);
  color: var(--dark);
}

.timeline-progress {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: var(--timeline-progress);
  height: 3px;
  background: var(--red);
  pointer-events: none;
}

main {
  display: block;
}

.chapter {
  position: relative;
  width: 100%;
  min-height: min(980px, 100svh);
  padding: calc(var(--header-height) + clamp(34px, 5vw, 80px)) var(--page-gutter) clamp(56px, 7vw, 110px);
  scroll-margin-top: 0;
  border-bottom: 1px solid var(--gray);
}

.chapter > * {
  width: min(100%, var(--content-max));
  margin-right: auto;
  margin-left: auto;
}

.chapter-label {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  margin-bottom: 18px;
  color: var(--cream-muted);
  font-size: 0.86rem;
  font-weight: 600;
}

.chapter-label span {
  color: var(--red-readable);
  font-variant-numeric: tabular-nums;
  font-weight: 900;
}

.chapter-intro > p:last-of-type {
  max-width: 52ch;
  margin-bottom: 0;
  color: var(--cream-muted);
  font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.opening {
  min-height: 110svh;
  background: var(--dark);
}

.opening-plate {
  min-height: clamp(450px, 63svh, 680px);
  display: grid;
  grid-template-columns: minmax(290px, 0.84fr) minmax(205px, 0.42fr) minmax(300px, 1fr);
  border: 1px solid var(--gray);
  background: var(--ink);
}

.identity-frame {
  display: grid;
  min-width: 0;
  place-items: center;
  padding: clamp(18px, 3vw, 48px);
  overflow: hidden;
  background: var(--cream);
  border-right: 1px solid var(--dark);
}

.identity-frame img {
  width: min(100%, 420px);
  height: 100%;
  object-fit: contain;
}

.output-strip {
  margin: 0;
  padding: 0;
  list-style: none;
  border-right: 1px solid var(--gray);
}

.output-strip li {
  min-height: 25%;
  display: grid;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 700;
}

.output-strip li:last-child {
  border-bottom: 0;
}

.output-strip time {
  color: var(--red-readable);
  font-size: 0.76rem;
  font-variant-numeric: tabular-nums;
}

.frame-window {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  background: var(--dark-raised);
}

.frame-window::before,
.frame-window::after {
  content: "";
  position: absolute;
  z-index: 0;
  border: 1px solid var(--gray);
}

.frame-window::before {
  inset: 9% 7%;
}

.frame-window::after {
  top: 50%;
  right: 0;
  left: 0;
}

.frame-window img {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: min(68%, 420px);
  transform: translate(-50%, -50%);
}

.window-cut {
  position: absolute;
  z-index: 1;
  background: var(--red);
}

.cut-one {
  top: 10%;
  right: 0;
  width: 38%;
  height: 18%;
}

.cut-two {
  bottom: 16%;
  left: 0;
  width: 54%;
  height: 7%;
}

.cut-three {
  right: 20%;
  bottom: 0;
  width: 1px;
  height: 32%;
  background: var(--cream);
}

.opening-copy {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(34px, 8vw, 150px);
  padding: clamp(34px, 4.5vw, 74px) 0;
  border-bottom: 1px solid var(--line-dark);
}

.opening-copy h1 {
  margin-bottom: 0;
}

.hero-lede {
  max-width: 68ch;
  margin-bottom: 28px;
  color: var(--cream-muted);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 22px;
}

.action-primary,
.action-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 2px solid currentColor;
  font-weight: 900;
  text-decoration: none;
}

.action-primary {
  border-color: var(--red);
  background: var(--red);
  color: var(--cream);
}

.action-primary:hover {
  border-color: var(--cream);
  background: var(--cream);
  color: var(--dark);
}

.action-secondary {
  color: var(--cream);
}

.action-secondary:hover {
  background: var(--cream);
  color: var(--dark);
}

.proofline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.proofline span {
  min-height: 58px;
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line-dark);
  font-weight: 700;
}

.proofline span:last-child {
  border-right: 0;
}

.services {
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(250px, 0.58fr);
  align-items: start;
  gap: clamp(38px, 5vw, 86px);
  background: var(--ink);
}

.services > * {
  width: 100%;
}

.service-cutlist {
  grid-column: 1;
  grid-row: 1;
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
}

.service-track {
  display: grid;
  grid-template-columns: minmax(180px, 0.38fr) 1fr;
  border-bottom: 1px solid var(--gray);
}

.service-track:last-child {
  border-bottom: 0;
}

.service-track > header {
  padding: 20px;
  border-right: 1px solid var(--gray);
  background: var(--dark);
}

.service-track > header span {
  color: var(--red-readable);
  font-size: 0.8rem;
  font-weight: 900;
}

.service-track > header h3 {
  margin: 54px 0 0;
}

.service-track ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-track li {
  min-height: 120px;
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  padding: 19px;
  border-bottom: 1px solid var(--line-dark);
}

.service-track .edit-point {
  color: var(--cream-muted);
}

.service-track li:last-child {
  border-bottom: 0;
}

.service-track h4 {
  margin: 0 0 5px;
  font-size: 1.15rem;
  line-height: 1.15;
}

.service-track li p {
  max-width: 52ch;
  margin: 0;
  color: var(--cream-muted);
}

.services-intro {
  position: sticky;
  grid-column: 2;
  grid-row: 1;
  top: calc(var(--header-height) + 32px);
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.text-link {
  display: inline-block;
  margin-top: 28px;
  font-weight: 900;
}

.process {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(250px, 0.68fr);
  align-items: start;
  gap: clamp(38px, 6vw, 110px);
  background: var(--cream);
  color: var(--dark);
}

.process > * {
  width: 100%;
}

.process-sequence {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
  list-style: none;
}

.process-sequence li {
  min-height: 160px;
  display: grid;
  grid-template-columns: minmax(72px, 0.22fr) minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
}

.process-sequence li:last-child {
  border-bottom: 0;
}

.process-sequence h3 {
  margin: 0 0 8px;
}

.process-sequence p {
  max-width: 54ch;
  margin: 0;
}

.process-sequence strong {
  min-width: 100px;
  padding: 5px 8px;
  background: var(--dark);
  color: var(--cream);
  font-size: 0.8rem;
  text-align: center;
}

.process-sequence .step-index {
  color: var(--ink);
}

.process-intro {
  position: sticky;
  grid-column: 2;
  grid-row: 1;
  top: calc(var(--header-height) + 32px);
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.process .chapter-label,
.process .chapter-intro > p:last-of-type,
.start .chapter-label,
.start .chapter-intro > p:last-of-type,
.rates-main .chapter-label {
  color: color-mix(in srgb, var(--ink) 72%, var(--gray));
}

.process .chapter-label span,
.start .chapter-label span {
  color: var(--red);
}

.proof {
  display: flex;
  flex-direction: column;
  background: var(--dark);
}

.exhibit-live {
  order: 1;
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(320px, 0.92fr);
  border: 1px solid var(--gray);
}

.exhibit-plate {
  min-height: 590px;
  display: grid;
  grid-template-rows: 1fr auto;
  padding: clamp(24px, 4vw, 64px);
  overflow: hidden;
  background: var(--cream);
  color: var(--dark);
  border-right: 1px solid var(--gray);
}

.exhibit-mark {
  position: relative;
  display: grid;
  place-items: center;
}

.exhibit-mark::before,
.exhibit-mark::after {
  content: "";
  position: absolute;
  background: var(--red);
}

.exhibit-mark::before {
  top: 8%;
  right: -14%;
  width: 44%;
  height: 18%;
}

.exhibit-mark::after {
  bottom: 10%;
  left: -14%;
  width: 58%;
  height: 7%;
}

.exhibit-mark img {
  position: relative;
  z-index: 1;
  width: min(68%, 380px);
}

.exhibit-plate ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0;
  padding: 14px 0 0;
  border-top: 4px solid var(--dark);
  list-style: none;
  font-size: 0.82rem;
  font-weight: 700;
}

.exhibit-plate li {
  padding: 6px 10px;
  border-right: 1px solid var(--dark);
}

.exhibit-plate li:last-child {
  border-right: 0;
}

.exhibit-copy {
  padding: clamp(26px, 4vw, 62px);
}

.exhibit-copy > h3 {
  margin: 0 0 20px;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

.exhibit-copy > p {
  color: var(--cream-muted);
  font-size: 1.08rem;
}

.exhibit-facts {
  margin: 36px 0;
  border-top: 1px solid var(--gray);
}

.exhibit-facts div {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}

.exhibit-facts dt {
  color: var(--gray);
}

.exhibit-facts dd {
  margin: 0;
  font-weight: 700;
}

details {
  border-top: 1px solid var(--gray);
  border-bottom: 1px solid var(--gray);
}

summary {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 2px;
  cursor: pointer;
  font-weight: 700;
}

summary::after {
  content: "+";
  color: var(--red);
  font-size: 1.4rem;
}

details[open] summary::after {
  content: "−";
}

details > div,
.faq-list details > p {
  max-width: 68ch;
  padding: 5px 0 18px;
  color: var(--cream-muted);
}

.proof-support {
  order: 2;
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  gap: clamp(38px, 6vw, 100px);
  padding-top: clamp(50px, 7vw, 104px);
}

.proof-intro {
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.showcase-queue {
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
}

.showcase-queue article {
  display: grid;
  grid-template-columns: 110px minmax(130px, 1fr) minmax(140px, 0.7fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 86px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-dark);
}

.showcase-queue article:last-child {
  border-bottom: 0;
}

.showcase-queue article > span {
  color: var(--red-readable);
  font-size: 0.82rem;
  font-weight: 700;
}

.showcase-queue h3,
.showcase-queue p {
  margin: 0;
}

.showcase-queue p {
  color: var(--cream-muted);
}

.showcase-queue strong {
  color: var(--gray);
  font-size: 0.8rem;
}

.rules {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(260px, 0.55fr);
  gap: clamp(38px, 7vw, 120px);
  background: var(--ink);
}

.rules > * {
  width: 100%;
}

.principle-list {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  padding: 0;
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
  list-style: none;
}

.principle-list li {
  min-height: 78px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  font-weight: 700;
}

.principle-list li:last-child {
  border-bottom: 0;
}

.principle-list b {
  color: var(--red-readable);
  font-size: 0.8rem;
}

.rules-intro {
  grid-column: 2;
  grid-row: 1;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.faq {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: clamp(38px, 7vw, 120px);
  background: var(--dark);
}

.faq > * {
  width: 100%;
}

.faq-list {
  grid-column: 1;
  grid-row: 1;
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
}

.faq-list details {
  border-top: 0;
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  min-height: 72px;
  font-size: 1.08rem;
}

.faq-list details > p {
  margin: 0;
}

.faq-intro {
  grid-column: 2;
  grid-row: 1;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.start {
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.55fr);
  align-items: start;
  gap: clamp(38px, 6vw, 100px);
  background: var(--cream);
  color: var(--dark);
}

.start > * {
  width: 100%;
}

.project-form {
  grid-column: 1;
  grid-row: 1;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-group {
  position: relative;
  min-height: 116px;
  padding: 16px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
}

.field-group:nth-child(2n) {
  border-right: 0;
}

.field-wide {
  grid-column: 1 / -1;
  border-right: 0;
}

.field-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
}

.field-group label span {
  color: var(--ink);
  font-weight: 400;
}

.field-group input,
.field-group select,
.field-group textarea {
  width: 100%;
  min-height: 46px;
  margin-top: 8px;
  padding: 9px 2px;
  border: 0;
  border-bottom: 2px solid var(--gray);
  background: transparent;
  color: var(--dark);
}

.field-group input::placeholder,
.field-group textarea::placeholder {
  color: color-mix(in srgb, var(--ink) 76%, var(--gray));
  opacity: 1;
}

.field-group textarea {
  min-height: 108px;
  resize: vertical;
}

.field-group select {
  background-color: var(--cream);
}

.field-group input:focus,
.field-group select:focus,
.field-group textarea:focus {
  border-bottom-color: var(--red);
}

.field-group [aria-invalid="true"] {
  border-bottom-color: var(--red);
}

.field-error {
  display: block;
  min-height: 1.25em;
  margin-top: 4px;
  color: var(--red);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-actions {
  padding: 22px 16px;
}

.form-actions button {
  border-radius: 0;
}

.form-status {
  margin: 0;
  font-weight: 700;
}

.form-note {
  flex-basis: 100%;
  max-width: 72ch;
  margin: 0;
  color: color-mix(in srgb, var(--ink) 72%, var(--gray));
  font-size: 0.82rem;
}

.start-intro {
  position: sticky;
  grid-column: 2;
  grid-row: 1;
  top: calc(var(--header-height) + 32px);
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.site-footer {
  min-height: 190px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  gap: clamp(24px, 6vw, 90px);
  padding: clamp(34px, 5vw, 70px) var(--page-gutter);
  background: var(--dark);
  color: var(--cream);
}

.footer-brand {
  width: min(220px, 100%);
  background: var(--cream);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.site-footer nav a,
.footer-contact a {
  font-weight: 700;
}

.footer-contact {
  display: grid;
  justify-items: end;
}

.footer-contact span {
  color: var(--gray);
}

.noscript-note {
  margin: 0;
  padding: 16px var(--page-gutter);
  background: var(--red);
  color: var(--cream);
  text-align: center;
}

/* Secondary pages use the same edit language without a home section rail. */
.page-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: 186px 1fr auto;
  align-items: stretch;
  border-bottom: 1px solid var(--gray);
  background: var(--dark);
}

.page-header nav {
  display: flex;
  align-items: stretch;
}

.page-header nav a,
.page-header > .start-project-link {
  min-height: var(--header-height);
  display: grid;
  place-items: center;
  padding: 12px clamp(14px, 2vw, 28px);
  border-right: 1px solid var(--line-dark);
  font-weight: 700;
  text-decoration: none;
}

.page-header nav a:hover,
.page-header nav a[aria-current="page"] {
  background: var(--cream);
  color: var(--dark);
}

.page-header > .start-project-link {
  min-width: 150px;
  border-right: 0;
  background: var(--red);
  color: var(--cream);
  font-weight: 900;
}

.secondary-page main {
  min-height: calc(100svh - var(--header-height));
}

.page-hero {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  align-items: end;
  gap: clamp(36px, 8vw, 150px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 110px) var(--page-gutter);
}

.page-hero > p {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--cream-muted);
  font-size: 1.1rem;
}

.page-hero h1 {
  margin-bottom: 0;
}

.secondary-label {
  margin-bottom: 16px;
  color: var(--red-readable);
  font-size: 0.86rem;
  font-weight: 900;
}

.rates-main {
  background: var(--dark);
}

.rates-opening {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: clamp(36px, 7vw, 120px);
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(54px, 7vw, 100px) var(--page-gutter);
}

.rates-overview {
  margin: 0;
  padding: 0;
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
  list-style: none;
}

.rates-overview li {
  min-height: 82px;
  display: grid;
  grid-template-columns: 78px 1fr auto;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line-dark);
}

.rates-overview li:last-child {
  border-bottom: 0;
}

.rates-overview strong {
  color: var(--red-readable);
}

.rates-opening-copy {
  align-self: start;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.rates-opening-copy > p:last-child {
  color: var(--cream-muted);
}

.rate-intro {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(34px, 7vw, 120px);
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) var(--page-gutter);
  background: var(--cream);
  color: var(--dark);
}

.rate-intro h2 {
  margin-bottom: 0;
}

.rate-intro .secondary-label {
  color: var(--red);
}

.rate-intro > div:last-child {
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}

.rate-intro > div:last-child p {
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-light);
  font-size: 1.08rem;
  font-weight: 700;
}

.rate-intro > div:last-child p:last-child {
  border-bottom: 0;
}

.rate-track {
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(64px, 8vw, 120px) var(--page-gutter);
}

.rate-track:nth-of-type(odd) {
  background: var(--ink);
}

.rate-track-header {
  display: grid;
  grid-template-columns: minmax(250px, 0.7fr) minmax(0, 1.3fr);
  align-items: end;
  gap: clamp(34px, 7vw, 120px);
  margin-bottom: 40px;
}

.rate-track-header h2 {
  margin-bottom: 0;
}

.rate-track-header > p {
  max-width: 58ch;
  margin-bottom: 0;
  color: var(--cream-muted);
}

.rate-list {
  margin: 0;
  padding: 0;
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
  list-style: none;
}

.rate-item {
  min-height: 116px;
  display: grid;
  grid-template-columns: 58px minmax(180px, 0.6fr) minmax(250px, 1.2fr) minmax(150px, 0.42fr);
  align-items: center;
  gap: 22px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-dark);
}

.rate-item:last-child {
  border-bottom: 0;
}

.rate-item > span {
  color: var(--red-readable);
  font-size: 0.82rem;
  font-weight: 900;
}

.rate-item h3,
.rate-item p {
  margin: 0;
}

.rate-item p {
  color: var(--cream-muted);
}

.rate-item strong {
  justify-self: end;
  color: var(--cream);
  text-align: right;
}

.rates-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  width: min(100%, var(--content-max));
  margin: 0 auto;
  padding: clamp(48px, 7vw, 90px) var(--page-gutter);
  background: var(--cream);
  color: var(--dark);
}

.rates-cta h2 {
  margin-bottom: 10px;
}

.rates-cta p {
  max-width: 66ch;
  margin-bottom: 0;
}

.legal-main {
  background: var(--dark);
}

.legal-opening {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(38px, 7vw, 120px);
  margin: 0 auto;
  padding: clamp(54px, 7vw, 100px) var(--page-gutter);
}

.legal-opening nav {
  border-top: 4px solid var(--cream);
  border-bottom: 4px solid var(--cream);
}

.legal-opening nav a {
  min-height: 52px;
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  padding: 8px 2px;
  border-bottom: 1px solid var(--line-dark);
  font-weight: 700;
  text-decoration: none;
}

.legal-opening nav a::before {
  content: attr(data-index);
  color: var(--red-readable);
  font-size: 0.78rem;
}

.legal-opening nav a:last-child {
  border-bottom: 0;
}

.legal-hero {
  align-self: end;
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.legal-hero > p:last-child {
  max-width: 56ch;
  margin-bottom: 0;
  color: var(--cream-muted);
  font-size: 1.1rem;
}

.legal-layout {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1.55fr);
  gap: clamp(38px, 7vw, 120px);
  margin: 0 auto;
  padding: clamp(56px, 7vw, 100px) var(--page-gutter);
  background: var(--cream);
  color: var(--dark);
}

.legal-index {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  border-top: 4px solid var(--dark);
  border-bottom: 4px solid var(--dark);
}

.legal-index a {
  display: block;
  padding: 11px 2px;
  border-bottom: 1px solid var(--line-light);
  font-weight: 700;
  text-decoration: none;
}

.legal-index a:last-child {
  border-bottom: 0;
}

.legal-copy {
  max-width: 78ch;
}

.legal-copy > p:first-child {
  margin-bottom: 50px;
  padding-bottom: 14px;
  border-bottom: 4px solid var(--dark);
  font-weight: 900;
}

.legal-copy section {
  scroll-margin-top: calc(var(--header-height) + 22px);
  padding: 12px 0 34px;
  border-top: 1px solid var(--line-light);
}

.legal-copy section:first-of-type {
  border-top: 0;
}

.legal-copy h2 {
  max-width: none;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.legal-copy li + li {
  margin-top: 8px;
}

.not-found {
  width: min(100%, var(--content-max));
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: clamp(38px, 8vw, 150px);
  margin: 0 auto;
  padding: clamp(50px, 7vw, 100px) var(--page-gutter);
}

.not-found-plate {
  position: relative;
  min-height: min(62svh, 620px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--cream);
  color: var(--dark);
  border: 1px solid var(--gray);
  font-size: 2.4rem;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  letter-spacing: -0.09em;
  line-height: 0.7;
}

.not-found-plate::before,
.not-found-plate::after {
  content: "";
  position: absolute;
  width: 24%;
  height: 48%;
  border: 4px solid var(--dark);
  pointer-events: none;
}

.not-found-plate::before {
  transform: translate(-86%, -8%);
  border-right-color: transparent;
}

.not-found-plate::after {
  transform: translate(86%, 8%);
  border-left-color: transparent;
}

.not-found-copy {
  padding-left: 18px;
  border-left: 4px solid var(--red);
}

.not-found-copy > p:nth-of-type(2) {
  max-width: 50ch;
  color: var(--cream-muted);
}

.not-found-copy .action-primary {
  margin-top: 18px;
}

.not-found .secondary-label {
  color: var(--red-readable);
}

.js .opening.is-active .frame-window img {
  animation: cut-mark 420ms steps(3, end) both;
}

.js .opening.is-active .cut-one {
  animation: cut-strip 360ms steps(2, end) 100ms both;
}

@keyframes cut-mark {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0);
  }
}

@keyframes cut-strip {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@media (max-width: 1100px) {
  .edit-header {
    grid-template-columns: 166px minmax(0, 1fr) 74px;
  }

  .brand-lockup {
    padding: 12px;
  }

  .opening-plate {
    grid-template-columns: minmax(260px, 0.8fr) minmax(200px, 0.44fr) minmax(250px, 0.8fr);
  }

  .services,
  .process,
  .start {
    grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.55fr);
  }

  .service-track {
    grid-template-columns: 160px 1fr;
  }

  .service-track li {
    grid-template-columns: 48px 1fr;
  }

  .showcase-queue article {
    grid-template-columns: 100px 1fr auto;
  }

  .showcase-queue article p {
    grid-column: 2;
  }

  .rate-item {
    grid-template-columns: 48px minmax(160px, 0.58fr) minmax(210px, 1fr) minmax(130px, 0.42fr);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 104px;
  }

  .edit-header {
    grid-template-columns: 150px minmax(0, 1fr) 72px;
    grid-template-rows: 56px 48px;
  }

  .edit-header .brand-lockup {
    grid-row: 1;
  }

  .chapter-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    border-top: 1px solid var(--gray);
  }

  .chapter-nav a {
    min-width: 112px;
    padding: 7px 10px;
  }

  .header-rates {
    grid-column: 3;
    grid-row: 1;
  }

  .opening-plate {
    min-height: 660px;
    grid-template-columns: minmax(220px, 0.8fr) minmax(240px, 1fr);
    grid-template-rows: 1fr auto;
  }

  .identity-frame {
    border-right: 1px solid var(--dark);
  }

  .output-strip {
    grid-column: 1 / -1;
    grid-row: 2;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--gray);
    border-right: 0;
  }

  .output-strip li {
    min-height: 108px;
    display: block;
    border-right: 1px solid var(--line-dark);
    border-bottom: 0;
  }

  .output-strip li:last-child {
    border-right: 0;
  }

  .output-strip time {
    display: block;
    margin-bottom: 8px;
  }

  .opening-copy,
  .services,
  .process,
  .proof-support,
  .rules,
  .faq,
  .start,
  .rates-opening,
  .legal-opening {
    grid-template-columns: 1fr;
  }

  .opening-copy {
    gap: 16px;
  }

  .services-intro,
  .process-intro,
  .start-intro {
    position: static;
    grid-column: 1;
    grid-row: 2;
  }

  .service-cutlist,
  .process-sequence,
  .project-form {
    grid-row: 1;
  }

  .service-track {
    grid-template-columns: minmax(150px, 0.42fr) 1fr;
  }

  .exhibit-live {
    grid-template-columns: 1fr;
  }

  .exhibit-plate {
    min-height: 520px;
    border-right: 0;
    border-bottom: 1px solid var(--gray);
  }

  .proof-intro,
  .rules-intro,
  .faq-intro {
    grid-column: 1;
  }

  .proof-intro {
    grid-row: 1;
  }

  .rules-intro,
  .faq-intro {
    grid-row: 2;
  }

  .showcase-queue,
  .principle-list,
  .faq-list {
    grid-row: 1;
  }

  .page-header {
    grid-template-columns: 160px 1fr auto;
  }

  .page-header nav a {
    padding-right: 14px;
    padding-left: 14px;
  }

  .page-header > .start-project-link {
    min-width: 120px;
  }

  .rates-overview {
    grid-row: 1;
  }

  .rates-opening-copy {
    grid-row: 2;
  }

  .rate-item {
    grid-template-columns: 48px 1fr auto;
  }

  .rate-item p {
    grid-column: 2 / -1;
  }

  .legal-opening nav {
    grid-row: 1;
  }

  .legal-hero {
    grid-row: 2;
  }

  .not-found {
    grid-template-columns: minmax(220px, 0.7fr) minmax(260px, 1fr);
  }
}

@media (max-width: 620px) {
  :root {
    --header-height: 100px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 12px);
  }

  body {
    font-size: 0.98rem;
  }

  .edit-header {
    grid-template-columns: 132px 1fr 66px;
    grid-template-rows: 54px 46px;
  }

  .edit-header .brand-lockup {
    padding: 9px 12px;
  }

  .chapter-nav a {
    min-width: 102px;
    font-size: 0.72rem;
  }

  .chapter {
    min-height: auto;
    padding-top: calc(var(--header-height) + 44px);
    padding-bottom: 64px;
  }

  .opening {
    min-height: 100svh;
  }

  .opening-plate {
    min-height: 600px;
    grid-template-columns: 0.82fr 1.18fr;
  }

  .identity-frame {
    padding: 9px;
  }

  .identity-frame img {
    width: 100%;
  }

  .frame-window img {
    width: 78%;
  }

  .output-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .output-strip li {
    min-height: 82px;
    padding: 12px;
    border-bottom: 1px solid var(--line-dark);
  }

  .output-strip li:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .proofline {
    grid-template-columns: 1fr;
  }

  .proofline span {
    min-height: 48px;
    justify-items: start;
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .proofline span:last-child {
    border-bottom: 0;
  }

  .service-track {
    grid-template-columns: 1fr;
  }

  .service-track > header {
    padding: 14px;
    border-right: 0;
    border-bottom: 1px solid var(--gray);
  }

  .service-track > header h3 {
    margin-top: 10px;
  }

  .service-track li {
    min-height: 112px;
    padding-right: 10px;
    padding-left: 10px;
  }

  .process-sequence li {
    grid-template-columns: 66px 1fr;
    gap: 14px;
  }

  .process-sequence strong {
    grid-column: 2;
    justify-self: start;
  }

  .exhibit-plate {
    min-height: 420px;
  }

  .exhibit-plate ol {
    grid-template-columns: 1fr;
  }

  .exhibit-plate li {
    padding: 5px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line-light);
  }

  .exhibit-plate li:last-child {
    border-bottom: 0;
  }

  .exhibit-facts div {
    grid-template-columns: 80px 1fr;
  }

  .showcase-queue article {
    grid-template-columns: 82px 1fr;
    gap: 8px 14px;
    padding: 16px 0;
  }

  .showcase-queue article p,
  .showcase-queue article strong {
    grid-column: 2;
  }

  .showcase-queue article strong {
    justify-self: start;
  }

  .field-grid {
    grid-template-columns: 1fr;
  }

  .field-group,
  .field-group:nth-child(2n),
  .field-wide {
    grid-column: 1;
    border-right: 0;
  }

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 28px;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .footer-contact {
    justify-items: start;
  }

  .page-header {
    grid-template-columns: 134px 1fr;
    min-height: 104px;
  }

  .page-header .brand-lockup {
    min-height: 54px;
    padding: 9px 12px;
  }

  .page-header nav {
    min-width: 0;
    overflow-x: auto;
  }

  .page-header nav a {
    min-height: 54px;
    flex: 1 0 auto;
    padding: 8px 11px;
    font-size: 0.82rem;
  }

  .page-header > .start-project-link {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 50px;
  }

  .page-hero,
  .rate-intro,
  .rate-track-header,
  .legal-layout,
  .not-found {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .rates-opening,
  .rate-track,
  .rates-cta,
  .legal-opening,
  .legal-layout,
  .not-found {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .page-hero {
    gap: 20px;
  }

  .rates-overview li {
    grid-template-columns: 62px 1fr;
    padding: 12px 0;
  }

  .rates-overview strong {
    grid-column: 2;
  }

  .rate-intro {
    padding-right: var(--page-gutter);
    padding-left: var(--page-gutter);
  }

  .rate-track-header {
    gap: 20px;
  }

  .rate-item {
    grid-template-columns: 38px 1fr;
    gap: 8px 14px;
    padding: 18px 0;
  }

  .rate-item p,
  .rate-item strong {
    grid-column: 2;
  }

  .rate-item strong {
    justify-self: start;
    text-align: left;
  }

  .rates-cta {
    grid-template-columns: 1fr;
  }

  .rates-cta .action-primary {
    justify-self: start;
  }

  .legal-layout {
    gap: 50px;
  }

  .legal-index {
    position: static;
  }

  .not-found-plate {
    min-height: 360px;
    font-size: 2.4rem;
  }

  .not-found-copy {
    margin-top: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .frame-window img,
  .window-cut {
    animation: none !important;
  }
}

@media (prefers-reduced-transparency: reduce) {
  :root {
    --line-dark: var(--gray);
    --line-light: var(--ink);
  }
}

@media (forced-colors: active) {
  :root {
    forced-color-adjust: auto;
  }

  :focus-visible {
    outline-color: Highlight;
    box-shadow: none;
  }

  .window-cut,
  .timeline-progress,
  .exhibit-mark::before,
  .exhibit-mark::after {
    background: Highlight;
  }
}

@media print {
  .edit-header,
  .page-header,
  .hero-actions,
  .project-form,
  .site-footer {
    display: none;
  }

  body,
  .chapter,
  .process,
  .start,
  .rate-intro,
  .legal-layout {
    background: var(--cream);
    color: var(--dark);
  }

  .chapter {
    min-height: 0;
    break-inside: avoid;
    padding-top: 32px;
  }
}
