:root {
  font:
    17px/1.65 Arial,
    Helvetica,
    sans-serif;
  color: #252b30;
  background: #f6f3ed;
  --paper: #f6f3ed;
  --ink: #252b30;
  --line: #cecac2;
  --rust: #a33317;
  --muted: #585e62;
}
* {
  box-sizing: border-box;
}
body,
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.1;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(2.5rem, 5.7vw, 5.6rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(1.7rem, 3.1vw, 2.9rem);
  font-weight: 500;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
p {
  margin-bottom: 1.2rem;
  overflow-wrap: anywhere;
}
a {
  color: inherit;
  text-underline-offset: 5px;
}
a:hover {
  color: var(--rust);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
summary,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure {
  min-width: 0;
}
figcaption,
.note {
  font-size: 0.83rem;
  color: var(--muted);
}
figcaption {
  padding: 0.8rem 0;
}
.shell {
  max-width: 1336px;
  margin: auto;
  padding: 0 44px;
}
.skip {
  position: fixed;
  left: 15px;
  top: -100px;
  padding: 12px;
  background: white;
  z-index: 100;
}
.skip:focus {
  top: 10px;
}
:focus-visible {
  outline: 3px solid var(--rust);
  outline-offset: 4px;
}
header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  min-height: 110px;
}
.brand {
  display: flex;
  gap: 15px;
  align-items: center;
  text-decoration: none;
  line-height: 1.1;
}
.brand b {
  display: grid;
  place-items: center;
  background: var(--rust);
  color: white;
  width: 59px;
  height: 59px;
  font-size: 1.3rem;
  letter-spacing: -0.12em;
}
.brand span {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.brand small {
  display: block;
  font-size: 0.58rem;
  font-weight: 400;
  margin-top: 8px;
  letter-spacing: 0.13em;
}
nav {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
nav a {
  text-decoration: none;
}
nav a:last-child {
  font-weight: 700;
  color: var(--rust);
}
.kicker {
  font-family: monospace;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.075em;
  color: var(--rust);
  margin-bottom: 1.5rem;
}
.hero {
  padding: 65px 0 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 50px;
}
.hero h1 {
  max-width: 850px;
}
.hero .lead {
  max-width: 720px;
  margin: 24px 0;
}
.lead {
  font-size: 1.14rem;
  color: #4a535a;
  max-width: 860px;
}
.hero-summary {
  display: flex;
  flex-direction: column;
  gap: 20px;
  border-left: 1px solid var(--line);
  padding-left: 26px;
  padding-bottom: 30px;
  font-family: monospace;
  font-size: 0.72rem;
  letter-spacing: 0.03em;
}
.hero-foot {
  font-family: monospace;
  font-size: 0.64rem;
  letter-spacing: 0.07em;
  margin: 20px 0 0;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  background: var(--rust);
  color: #fff;
  padding: 12px 20px;
  border: 1px solid var(--rust);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  text-align: center;
  line-height: 1.45;
}
.button:hover {
  color: white;
  background: #7d260f;
}
.button.outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.button.outline:hover {
  background: #ebe5d9;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.text-link {
  display: inline-block;
  margin: 1.5rem 0;
  font-weight: 700;
}
.anatomy {
  display: grid;
  grid-template-columns: 1.7fr 1fr;
  background: #e8e2d6;
  border: 1px solid #c5bcad;
  margin: 25px 0 75px;
}
.anatomy-picture {
  position: relative;
  padding: 18px 0;
}
.anatomy-picture img {
  width: 100%;
}
.drawing-note {
  display: block;
  font-family: monospace;
  font-size: 0.62rem;
  letter-spacing: 0.035em;
  margin: 0 24px 12px;
  color: #585046;
}
.anatomy-panel {
  background: #282f34;
  color: #f8f5ed;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.anatomy-panel .kicker {
  color: #f3b28d;
}
.anatomy-buttons {
  display: flex;
  flex-direction: column;
}
.anatomy-buttons button {
  background: none;
  border: 0;
  border-top: 1px solid #596167;
  color: #f8f5ed;
  display: flex;
  gap: 16px;
  padding: 18px 8px;
  text-align: left;
  font-size: 0.9rem;
}
.anatomy-buttons button:last-child {
  border-bottom: 1px solid #596167;
}
.anatomy-buttons button[aria-pressed="true"] {
  color: #ffbc90;
}
.anatomy-buttons button span {
  font-family: monospace;
  font-size: 0.7rem;
}
.anatomy-buttons button b {
  margin-left: auto;
}
#machine-detail {
  margin-top: 32px;
}
#machine-detail h2 {
  font-size: 1.35rem;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
#machine-detail p {
  font-size: 0.88rem;
  color: #d1d6d9;
}
#machine-detail a {
  font-size: 0.8rem;
  color: #ffbc90;
}
.section-title {
  margin-bottom: 28px;
}
.section-title .kicker {
  margin-bottom: 14px;
}
.block {
  padding: 55px 0;
  border-top: 1px solid var(--line);
}
.connections {
  padding: 15px 0 60px;
}
.process-ribbon {
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 32px 0;
  counter-reset: step;
}
.process-ribbon li {
  padding: 20px;
  border: 1px solid var(--line);
  font-size: 0.84rem;
  counter-increment: step;
}
.process-ribbon li:before {
  content: "0" counter(step);
  display: block;
  font-family: monospace;
  font-size: 0.7rem;
  margin-bottom: 12px;
  color: var(--muted);
}
.process-ribbon .current {
  background: var(--rust);
  color: #fff;
  border-color: var(--rust);
}
.process-ribbon .current:before {
  color: #f6d3c7;
}
.connection-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.connection-choice article {
  border-left: 3px solid var(--rust);
  padding: 5px 22px;
}
.connection-choice .kicker {
  display: block;
  margin-bottom: 12px;
}
.connection-choice h3 {
  margin-bottom: 18px;
  font-size: 1.8rem;
  font-weight: 500;
}
.connections > .note {
  margin-top: 28px;
  max-width: 980px;
}
.parts {
  border-top: 1px solid var(--ink);
}
.parts article {
  display: grid;
  grid-template-columns: 55px 1fr auto;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
  align-items: start;
}
.part-number {
  font-family: monospace;
  font-size: 0.8rem;
  color: var(--rust);
}
.parts h3 {
  margin-bottom: 15px;
}
.parts h3 a {
  text-decoration: none;
}
.parts p {
  max-width: 850px;
  font-size: 0.93rem;
  margin-bottom: 0;
}
.part-link {
  font-size: 0.8rem;
  white-space: nowrap;
}
.trial-intro {
  max-width: 850px;
}
.trial-intro .button {
  margin-right: 18px;
}
.page-title {
  padding: 54px 0 45px;
}
.page-title h1 {
  font-size: clamp(2.2rem, 4.6vw, 4.2rem);
  max-width: 1060px;
  margin: 24px 0;
}
.crumb {
  font-size: 0.75rem;
  color: var(--muted);
}
.component-lead {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 44px;
  align-items: center;
  margin-bottom: 55px;
}
.component-lead figure {
  border: 1px solid var(--line);
  background: #e8e2d6;
}
.component-lead figcaption {
  padding: 10px 18px;
}
.component-lead img {
  width: 100%;
}
.scroll-table {
  overflow-x: auto;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
table {
  border-collapse: collapse;
  width: 100%;
  font-size: 0.92rem;
}
th,
td {
  text-align: left;
  vertical-align: top;
  padding: 20px;
  border-bottom: 1px solid var(--line);
  min-width: 160px;
}
thead {
  background: #e7e2d9;
}
tbody th {
  font-weight: 600;
  width: 25%;
}
.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 80px;
  margin-bottom: 30px;
}
.article-layout section {
  padding: 22px 0 34px;
  border-top: 1px solid var(--line);
}
.article-layout section h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.article-layout section .kicker {
  display: block;
  margin-bottom: 15px;
}
.article-layout aside {
  background: #eae4d8;
  padding: 25px;
  align-self: start;
}
.article-layout aside h2 {
  font-size: 1.6rem;
  margin-bottom: 28px;
}
.article-layout aside p {
  font-size: 0.85rem;
  margin-top: 22px;
}
.next-bar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 34px 0;
  font-size: 0.87rem;
  font-weight: 700;
}
.tool {
  background: #ebe6dc;
  padding: 32px;
  margin-bottom: 35px;
}
.fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  margin-bottom: 26px;
}
label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.86rem;
  margin-bottom: 22px;
}
.fields label {
  margin-bottom: 0;
}
input,
select,
textarea {
  width: 100%;
  max-width: 100%;
  border: 1px solid #8a8881;
  border-radius: 0;
  background: #fff;
  color: var(--ink);
  padding: 12px;
  font-size: 0.94rem;
  min-height: 47px;
}
textarea {
  resize: vertical;
}
.result {
  background: #fffaf2;
  padding: 24px;
  margin: 24px 0 0;
  border-left: 3px solid var(--rust);
}
.result h2 {
  font-size: 1.6rem;
  margin-bottom: 20px;
}
.result li {
  margin-bottom: 10px;
}
.result .button {
  margin: 14px 14px 0 0;
}
.result p:last-child {
  margin-bottom: 0;
}
.rate-number {
  display: block;
  font-size: 2.8rem;
  line-height: 1.2;
  margin-bottom: 10px;
}
.tool > .note {
  margin-top: 20px;
}
.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(0, 2fr);
  gap: 60px;
  margin-bottom: 65px;
}
.enquiry-layout aside h2 {
  margin-bottom: 26px;
}
.enquiry-layout aside p {
  font-size: 0.93rem;
}
.enquiry-layout aside a {
  overflow-wrap: anywhere;
}
.enquiry {
  padding: 30px;
  background: #eae4d8;
}
.enquiry details {
  border-top: 1px solid #b6aea1;
  padding: 22px 0;
}
.enquiry summary {
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 22px;
}
.consent {
  flex-direction: row;
  align-items: flex-start;
  gap: 12px;
}
.consent input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 5px;
  flex-shrink: 0;
}
.trap {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}
#form-status {
  font-size: 0.88rem;
  margin: 20px 0;
}
[data-receipt-notice] {
  background: #fff8ed;
  border: 1px solid #b6aea1;
  padding: 20px;
  margin-bottom: 25px;
}
[data-new-project] {
  margin-top: 15px;
  padding: 10px;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
}
.reference-list {
  padding-left: 22px;
}
.reference-list li {
  margin-bottom: 20px;
}
.legacy-diagram {
  max-width: 540px;
  background: #153c34;
  padding: 20px;
}
.legacy-diagram figcaption {
  color: #ecf4e7;
}
footer {
  background: #272e33;
  color: #f6f3ed;
  padding: 55px 0 0;
  margin-top: 30px;
}
footer .kicker {
  color: #ffbc90;
}
footer .note {
  color: #c9d0d5;
  font-size: 0.8rem;
  max-width: 450px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 0.7fr;
  gap: 45px;
  padding-bottom: 45px;
}
.footer-grid h2 {
  font-size: 2.3rem;
  margin-bottom: 25px;
}
.footer-grid h3 {
  font-size: 0.95rem;
  letter-spacing: 0;
  margin-bottom: 24px;
}
.footer-grid > div:not(:first-child) a {
  display: block;
  font-size: 0.83rem;
  margin-bottom: 12px;
}
.footer-base {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0;
  border-top: 1px solid #626a6f;
  font-size: 0.73rem;
}
footer a:hover {
  color: #ffbc90;
}
@media (max-width: 1000px) {
  .hero-summary {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
  }
  .anatomy {
    grid-template-columns: 1.2fr 1fr;
  }
  .anatomy-panel {
    padding: 23px;
  }
  .parts article {
    grid-template-columns: 40px 1fr;
  }
  .part-link {
    grid-column: 2;
  }
  .article-layout {
    gap: 35px;
    grid-template-columns: minmax(0, 1fr) 260px;
  }
  .enquiry-layout {
    gap: 30px;
    grid-template-columns: 1fr 1.7fr;
  }
  .header-inner {
    gap: 30px;
  }
  nav {
    gap: 20px;
  }
}
@media (max-width: 720px) {
  :root {
    font-size: 16px;
  }
  .shell {
    padding: 0 20px;
  }
  .header-inner {
    display: block;
    padding-top: 20px;
    padding-bottom: 18px;
    min-height: 0;
  }
  .brand b {
    width: 42px;
    height: 42px;
    font-size: 1rem;
  }
  .brand span {
    font-size: 0.85rem;
  }
  nav {
    margin-top: 22px;
    gap: 13px 22px;
    font-size: 0.78rem;
  }
  .hero {
    padding: 38px 0 15px;
  }
  .hero h1 {
    font-size: 3rem;
  }
  .lead {
    font-size: 1.04rem;
  }
  .hero-foot {
    font-size: 0.56rem;
  }
  .anatomy {
    display: block;
    margin-bottom: 45px;
  }
  .anatomy-picture {
    padding: 0;
  }
  .drawing-note {
    font-size: 0.54rem;
    margin: 0 16px 18px;
  }
  .anatomy-panel {
    padding: 22px;
  }
  .anatomy-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .anatomy-buttons button {
    font-size: 0.77rem;
    gap: 9px;
    padding: 17px 5px;
  }
  .anatomy-buttons button:nth-child(3) {
    border-bottom: 1px solid #596167;
  }
  .anatomy-panel .kicker {
    margin-bottom: 18px;
  }
  .process-ribbon {
    grid-template-columns: 1fr 1fr;
  }
  .process-ribbon li {
    padding: 16px;
  }
  .connection-choice {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .connection-choice article {
    padding-left: 18px;
  }
  .block {
    padding: 35px 0;
  }
  .parts article {
    gap: 10px;
    padding: 24px 0;
    grid-template-columns: 25px 1fr;
  }
  .parts h3 {
    font-size: 1.2rem;
  }
  .part-link {
    white-space: normal;
  }
  .component-lead {
    display: block;
  }
  .component-lead > div {
    margin-top: 25px;
  }
  .page-title {
    padding: 30px 0;
  }
  .article-layout {
    display: block;
  }
  .article-layout aside {
    margin-bottom: 32px;
  }
  .next-bar {
    flex-direction: column;
  }
  .tool {
    padding: 20px;
  }
  .fields {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .result {
    padding: 18px;
  }
  .result ol {
    padding-left: 22px;
  }
  .result .button {
    width: 100%;
    margin-right: 0;
  }
  .enquiry-layout {
    display: block;
  }
  .enquiry {
    padding: 20px;
    margin-top: 35px;
  }
  table {
    font-size: 0.85rem;
  }
  th,
  td {
    padding: 15px;
    min-width: 170px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-grid h2 {
    font-size: 2rem;
  }
  .footer-grid > div:first-child {
    border-bottom: 1px solid #626a6f;
    padding-bottom: 20px;
  }
  .footer-base {
    display: block;
  }
  .footer-base a {
    display: block;
    margin-top: 15px;
  }
  footer {
    padding-top: 38px;
  }
  .kicker {
    font-size: 0.65rem;
  }
  .connection-choice h3 {
    font-size: 1.55rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
}
@media print {
  header,
  footer,
  button,
  .button {
    display: none;
  }
  .shell {
    padding: 0;
  }
  body {
    background: white;
  }
  .tool,
  .result {
    background: white;
  }
  .fields {
    display: block;
  }
  .result {
    border: 1px solid #888;
  }
}
