.statement {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3.4rem, 10vw, 8.5rem);
  border-bottom: var(--rule-weight) solid var(--rule);
  position: relative;
  overflow: hidden;
}

.statement::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(6px, 1.4vw, 16px);
  background: var(--rust);
}

.statement__kicker {
  font-family: var(--font-mono);
  font-size: clamp(0.68rem, 0.64rem + 0.18vw, 0.82rem);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--oat);
  margin: 0 0 clamp(1.2rem, 3vw, 2.2rem);
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.statement__kicker span::after {
  content: "";
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.9rem;
  background: var(--rust);
  vertical-align: middle;
}

.statement__kicker span:last-child::after { display: none; }

.statement h1 {
  margin: 0 0 clamp(1.4rem, 3.2vw, 2.4rem);
  max-width: 17ch;
  text-wrap: balance;
}

.statement h1 em {
  font-style: normal;
  color: var(--rust-lift);
  display: block;
}

.statement__body {
  display: grid;
  gap: clamp(1.2rem, 3vw, 2.6rem);
  max-width: 62rem;
}

@media (min-width: 52rem) {
  .statement__body { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.statement__body p {
  font-size: var(--step-1);
  line-height: 1.5;
  margin: 0;
  color: var(--paper-soft);
}

.statement__body p:first-child { color: var(--paper); }

.statement__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: clamp(1.8rem, 4vw, 3rem);
}

.page-head {
  background: var(--ink);
  color: var(--paper);
  border-bottom: var(--rule-weight) solid var(--rule);
  padding-block: clamp(2.6rem, 7vw, 5.4rem);
  position: relative;
}

.page-head--rust { background: var(--rust); }
.page-head--oat { background: var(--oat); color: var(--ink); }

.page-head__crumb {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oat);
  margin: 0 0 1.2rem;
}

.page-head--oat .page-head__crumb { color: var(--rust-deep); }

.page-head__crumb a { color: inherit; text-decoration-color: currentColor; }

.page-head h1 {
  font-size: var(--step-4);
  margin: 0;
  max-width: 20ch;
  text-wrap: balance;
}

.page-head__sub {
  margin-top: clamp(1rem, 2.5vw, 1.7rem);
  font-size: var(--step-1);
  line-height: 1.5;
  max-width: 54ch;
  color: var(--paper-soft);
}

.page-head--oat .page-head__sub { color: var(--ink-soft); }

.page-head__meta {
  margin-top: clamp(1.4rem, 3vw, 2.2rem);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.page-head__meta b { color: var(--oat); font-weight: 700; }
.page-head--oat .page-head__meta b { color: var(--rust-deep); }

.proof-row {
  display: grid;
  gap: 0;
  border-top: 3px solid var(--paper-faint);
  border-bottom: 3px solid var(--paper-faint);
}

@media (min-width: 40rem) {
  .proof-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 68rem) {
  .proof-row { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

.proof-row__cell {
  padding: clamp(1.2rem, 2.8vw, 2rem) clamp(0.9rem, 2vw, 1.6rem);
  border-bottom: 1px solid var(--paper-faint);
}

@media (min-width: 40rem) {
  .proof-row__cell { border-right: 1px solid var(--paper-faint); }
  .proof-row__cell:nth-child(2n) { border-right: 0; }
}

@media (min-width: 68rem) {
  .proof-row__cell { border-bottom: 0; border-right: 1px solid var(--paper-faint); }
  .proof-row__cell:nth-child(2n) { border-right: 1px solid var(--paper-faint); }
  .proof-row__cell:last-child { border-right: 0; }
}

.proof-row__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(2rem, 1.2rem + 3.2vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
  display: block;
}

.proof-row__num sup {
  font-size: 0.4em;
  vertical-align: super;
  letter-spacing: 0.06em;
}

.proof-row__what {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.55;
  color: var(--paper-soft);
}

.proof-lead {
  font-size: var(--step-1);
  max-width: 46ch;
  margin: 0 0 clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.5;
}

.process-list {
  list-style: none;
  counter-reset: step;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 3px solid var(--rule);
}

@media (min-width: 56rem) {
  .process-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

.process-list > li {
  counter-increment: step;
  margin: 0;
  padding: clamp(1.4rem, 3vw, 2.4rem) clamp(0rem, 2vw, 1.8rem) clamp(1.4rem, 3vw, 2.4rem) 0;
  border-bottom: 3px solid var(--rule);
  display: grid;
  gap: 0.6rem;
  align-content: start;
}

@media (min-width: 56rem) {
  .process-list > li {
    border-bottom: 0;
    border-right: 3px solid var(--rule);
    padding-inline: clamp(1rem, 2.4vw, 2rem);
  }

  .process-list > li:first-child { padding-left: 0; }
  .process-list > li:last-child { border-right: 0; padding-right: 0; }
}

.process-list > li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 1.6rem + 3vw, 4rem);
  line-height: 0.9;
  color: var(--rust);
}

.process-list h3 {
  margin: 0;
  font-size: var(--step-1);
  letter-spacing: 0.05em;
}

.process-list p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 40ch;
}

.contact-block__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
}

@media (min-width: 62rem) {
  .contact-block__grid { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
}

.contact-facts {
  font-style: normal;
  display: grid;
  gap: 1.4rem;
}

.contact-facts__row {
  display: grid;
  gap: 0.3rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--paper-faint);
}

.contact-facts__row:last-child { border-bottom: 0; padding-bottom: 0; }

.contact-facts__key {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--oat);
}

.contact-facts__val {
  font-family: var(--font-mono);
  font-size: clamp(0.9rem, 0.84rem + 0.3vw, 1.08rem);
  line-height: 1.6;
}

.contact-facts__val a { text-decoration-color: var(--rust-lift); }

.hours-table caption { background: var(--rust); }

.hours-table td.closed { color: var(--rust); font-weight: 700; }

.item-section {
  border-top: 3px solid var(--rule);
  padding-top: clamp(2rem, 4.5vw, 3.4rem);
  margin-top: clamp(2.4rem, 5vw, 4rem);
}

.item-section:first-of-type { margin-top: 0; }

.item-section__head {
  display: grid;
  gap: 0.6rem 2rem;
  margin-bottom: clamp(1.4rem, 3vw, 2.2rem);
}

@media (min-width: 48rem) {
  .item-section__head {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }
}

.item-section__num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--rust);
  display: block;
  margin-bottom: 0.5rem;
}

.item-section h2 {
  margin: 0;
  font-size: var(--step-3);
}

.item-section__price {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(0.92rem, 0.86rem + 0.3vw, 1.12rem);
  color: var(--rust);
  white-space: nowrap;
}

.item-section__body {
  display: grid;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

@media (min-width: 56rem) {
  .item-section__body { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
  .item-section--flip .item-section__body > .figure { order: -1; }
}

.fact-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border: 3px solid var(--rule);
  margin: clamp(1.4rem, 3vw, 2.2rem) 0;
  background: var(--paper-dim);
}

.fact-strip__item {
  flex: 1 1 12rem;
  padding: 1rem 1.1rem;
  border-right: 1px solid var(--oat);
}

.fact-strip__item:last-child { border-right: 0; }

.fact-strip__k {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 0.35rem;
}

.fact-strip__v {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.4;
}

.refusal {
  border-left: clamp(6px, 1.2vw, 12px) solid var(--rust);
  background: var(--paper-dim);
  padding: clamp(1.3rem, 3vw, 2.2rem) clamp(1.2rem, 3vw, 2.4rem);
  margin: clamp(2rem, 4vw, 3rem) 0;
}

.refusal h3 {
  margin: 0 0 0.8rem;
  font-size: var(--step-2);
  color: var(--rust-deep);
}

.refusal p { max-width: 60ch; }

.pull {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-size: var(--step-3);
  line-height: 1.08;
  letter-spacing: 0.01em;
  margin: clamp(2rem, 4vw, 3.2rem) 0;
  max-width: 22ch;
  border-top: 3px solid currentColor;
  border-bottom: 3px solid currentColor;
  padding-block: clamp(1rem, 2.4vw, 1.6rem);
}

.pull em { font-style: normal; color: var(--rust); }

.legal-layout {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: start;
}

@media (min-width: 64rem) {
  .legal-layout { grid-template-columns: 15.5rem minmax(0, 1fr); }
}

.legal-index {
  border: 3px solid var(--rule);
  background: var(--paper-dim);
  padding: 1.1rem 1.1rem 1.3rem;
}

@media (min-width: 64rem) {
  .legal-index {
    position: sticky;
    top: 1.4rem;
    max-height: calc(100vh - 3rem);
    overflow-y: auto;
  }
}

.legal-index__head {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin: 0 0 0.8rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--oat);
}

.legal-index ol {
  list-style: none;
  counter-reset: lidx;
  margin: 0;
  padding: 0;
}

.legal-index li { counter-increment: lidx; margin: 0; }

.legal-index a {
  display: flex;
  gap: 0.6rem;
  align-items: baseline;
  min-height: 40px;
  padding: 0.35rem 0;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  line-height: 1.4;
  text-decoration: none;
  border-bottom: 1px solid rgba(58, 50, 42, 0.16);
}

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

.legal-index a::before {
  content: counter(lidx, decimal-leading-zero);
  font-weight: 700;
  color: var(--rust);
  flex: none;
}

.legal-index a:hover,
.legal-index a.is-current { color: var(--rust); }

.legal-index a.is-current { font-weight: 700; }

.legal-doc { counter-reset: sec; max-width: 74ch; }

.legal-doc__meta {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  border: 3px solid var(--rule);
  background: var(--paper-dim);
  padding: 1rem 1.1rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.legal-sec {
  counter-increment: sec;
  padding-top: clamp(1.6rem, 3.4vw, 2.6rem);
  margin-top: clamp(1.6rem, 3.4vw, 2.6rem);
  border-top: 3px solid var(--rule);
  scroll-margin-top: 1.5rem;
}

.legal-sec:first-of-type { margin-top: 0; padding-top: 0; border-top: 0; }

.legal-sec > h2 {
  font-size: var(--step-2);
  display: grid;
  gap: 0.2rem 1rem;
  margin-bottom: 0.9rem;
}

@media (min-width: 34rem) {
  .legal-sec > h2 { grid-template-columns: 3.2rem minmax(0, 1fr); align-items: baseline; }
}

.legal-sec > h2::before {
  content: counter(sec, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--rust);
  letter-spacing: 0.12em;
}

.legal-sec h3 {
  font-size: var(--step-1);
  margin-top: 1.7em;
  color: var(--rust-deep);
}

.legal-sec p,
.legal-sec li { font-size: clamp(0.95rem, 0.92rem + 0.14vw, 1.04rem); }

.legal-callout {
  border: 3px solid var(--rust);
  padding: clamp(1rem, 2.4vw, 1.6rem);
  margin: 1.6rem 0;
  background: rgba(138, 75, 50, 0.06);
}

.legal-callout p:last-child { margin-bottom: 0; }

.legal-callout__tag {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  display: block;
  margin-bottom: 0.6rem;
}

.data-table { min-width: 40rem; }

.data-table caption { background: var(--moss); }

.data-table td:first-child,
.data-table th:first-child { white-space: nowrap; }

.data-table .sig {
  font-weight: 700;
  color: var(--rust-deep);
}

.faq { border-top: 3px solid var(--rule); margin-top: clamp(1.8rem, 4vw, 2.8rem); }

.faq__item { border-bottom: 3px solid var(--rule); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  text-align: left;
  min-height: 60px;
  padding: 1rem 0;
  background: none;
  border: 0;
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--step-1);
  letter-spacing: 0.02em;
  line-height: 1.2;
  color: inherit;
}

.faq__q:hover { color: var(--rust); }

.faq__sign {
  flex: none;
  width: 22px;
  height: 22px;
  position: relative;
}

.faq__sign::before,
.faq__sign::after {
  content: "";
  position: absolute;
  background: var(--rust);
  transition: transform 0.24s var(--ease), opacity 0.2s linear;
}

.faq__sign::before { left: 0; right: 0; top: 10px; height: 2px; }
.faq__sign::after { top: 0; bottom: 0; left: 10px; width: 2px; }

.faq__q[aria-expanded="true"] .faq__sign::after { transform: scaleY(0); opacity: 0; }

.faq__a {
  overflow: hidden;
  max-width: 68ch;
}

.faq__a[hidden] { display: none; }

.faq__a > div { padding: 0 0 1.4rem; }

.js .faq__a { transition: height 0.28s var(--ease); }

.contact-page__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

@media (min-width: 64rem) {
  .contact-page__grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr); }
}

.contact-side { display: grid; gap: clamp(1.6rem, 3vw, 2.4rem); }

.contact-card {
  border: 3px solid var(--rule);
  background: var(--paper-dim);
  padding: clamp(1.2rem, 2.6vw, 1.9rem);
}

.contact-card h2 {
  font-size: var(--step-1);
  margin: 0 0 0.9rem;
  letter-spacing: 0.05em;
}

.contact-card__lines {
  font-family: var(--font-mono);
  font-size: 0.88rem;
  line-height: 1.9;
  font-style: normal;
}

.contact-card__lines a { display: inline-block; min-height: 32px; }

.callout-strip {
  background: var(--rust);
  color: var(--paper);
  border-block: var(--rule-weight) solid var(--rule);
  padding-block: clamp(2rem, 4.5vw, 3.4rem);
}

.callout-strip__inner {
  display: grid;
  gap: 1.6rem 3rem;
  align-items: center;
}

@media (min-width: 56rem) {
  .callout-strip__inner { grid-template-columns: minmax(0, 1fr) auto; }
}

.callout-strip h2 {
  margin: 0 0 0.6rem;
  font-size: var(--step-2);
}

.callout-strip p {
  margin: 0;
  max-width: 56ch;
  color: var(--paper-soft);
  font-size: 1rem;
}

.gallery-strip {
  display: grid;
  gap: clamp(1rem, 2.4vw, 1.8rem);
}

@media (min-width: 48rem) {
  .gallery-strip--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.wide-figure {
  margin: 0;
  border-block: var(--rule-weight) solid var(--rule);
  background: var(--ink);
}

.wide-figure img {
  width: 100%;
  max-height: clamp(18rem, 46vh, 34rem);
  object-fit: cover;
}

.wide-figure figcaption {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--paper-soft);
  padding: 0.8rem var(--gutter);
  max-width: var(--shell-max);
  margin-inline: auto;
}

.team-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 3px solid var(--rule);
}

.team-list > li {
  margin: 0;
  padding: clamp(0.9rem, 2.2vw, 1.4rem) 0;
  border-bottom: 1px solid var(--oat);
  display: grid;
  gap: 0.3rem 1.6rem;
}

@media (min-width: 44rem) {
  .team-list > li { grid-template-columns: 5rem minmax(0, 12rem) minmax(0, 1fr); align-items: baseline; }
}

.team-list__count {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--rust);
  line-height: 1;
}

.team-list__role {
  font-family: var(--font-display);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: var(--step-1);
}

.team-list__note {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  border-left: 3px solid var(--rule);
}

.timeline > li {
  position: relative;
  margin: 0;
  padding: 0 0 clamp(1.6rem, 3vw, 2.4rem) clamp(1.2rem, 3vw, 2.2rem);
}

.timeline > li::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 0.55em;
  width: 15px;
  height: 15px;
  background: var(--rust);
}

.timeline__year {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: var(--rust);
  display: block;
  margin-bottom: 0.35rem;
}

.timeline h3 { margin: 0 0 0.4rem; font-size: var(--step-1); }

.timeline p { margin: 0; max-width: 58ch; }

.error-scene {
  min-height: clamp(24rem, 68vh, 44rem);
  background: var(--ink);
  color: var(--paper);
  display: flex;
  align-items: center;
  border-bottom: var(--rule-weight) solid var(--rule);
  padding-block: clamp(3rem, 8vw, 6rem);
}

.error-scene__code {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: clamp(4.5rem, 2rem + 14vw, 13rem);
  line-height: 0.86;
  letter-spacing: -0.04em;
  color: var(--rust);
  margin: 0 0 1.2rem;
  display: block;
}

.error-scene h1 { font-size: var(--step-3); margin: 0 0 1rem; }

.error-scene p { max-width: 48ch; color: var(--paper-soft); }

.error-scene__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.section-title {
  display: grid;
  gap: 0.5rem 2rem;
  margin-bottom: clamp(1.6rem, 3.4vw, 2.6rem);
}

@media (min-width: 52rem) {
  .section-title { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: end; }
}

.section-title h2 { margin: 0; }

.section-title p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 48ch;
}

.rule-heavy {
  height: var(--rule-weight);
  background: var(--rule);
  border: 0;
  margin: 0;
}

.inline-note {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--ink-soft);
  border-top: 2px solid var(--oat);
  padding-top: 0.9rem;
  margin-top: 1.4rem;
}

.block--ink .inline-note,
.block--rust .inline-note {
  color: var(--paper-soft);
  border-top-color: var(--paper-faint);
}

@media (min-width: 120rem) {
  :root { --shell-max: 1320px; }
  .statement h1 { max-width: 16ch; }
}

@media (max-width: 23.5rem) {
  .offer-row__price { font-size: 0.78rem; }
  .fact-strip__item { flex-basis: 100%; border-right: 0; border-bottom: 1px solid var(--oat); }
  .fact-strip__item:last-child { border-bottom: 0; }
}
