@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-400-600-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: Inter;
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url("../fonts/inter-400-600-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/barlow-condensed-600-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700-latin-ext.woff2") format("woff2");
  unicode-range:
    U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329,
    U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F,
    U+A720-A7FF;
}
@font-face {
  font-family: "Barlow Condensed";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/barlow-condensed-700-latin.woff2") format("woff2");
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
:root {
  --paper: #f1eee6;
  --ink: #131514;
  --red: #e63b24;
  --line: #c9c5ba;
  --muted: #666962;
  --white: #fff;
  --max: 1560px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, Arial, sans-serif;
  overflow-x: hidden;
}
body,
button,
a {
  font-synthesis: none;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.shell {
  max-width: var(--max);
  margin: auto;
  padding-inline: 28px;
}
.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
.skip-link:focus {
  position: fixed;
  z-index: 99;
  top: 10px;
  left: 10px;
  padding: 12px;
  background: var(--red);
  color: #fff;
}
.site-header {
  max-width: var(--max);
  height: 86px;
  margin: auto;
  padding: 0 28px;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: max-content;
  font:
    700 13px/1.05 "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.08em;
}
.brand-mark {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  letter-spacing: -0.04em;
}
.primary-nav .menu {
  display: flex;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.primary-nav a {
  display: block;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a {
  border-color: var(--red);
}
.header-cta {
  justify-self: end;
  font:
    700 17px "Barlow Condensed",
    sans-serif;
  letter-spacing: 0.04em;
}
.nav-toggle {
  display: none;
}

@media (max-width: 1320px) and (min-width: 1051px) {
  .primary-nav .menu {
    gap: 20px;
    font-size: 11px;
  }
}

.hero {
  max-width: var(--max);
  min-height: 790px;
  margin: auto;
  padding: 58px 28px 72px;
  display: grid;
  grid-template-columns: minmax(430px, 0.85fr) minmax(560px, 1.15fr) 88px;
  gap: 34px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 28px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
}
h1,
h2,
h3 {
  font-family: "Barlow Condensed", Impact, sans-serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: -0.045em;
}
h1 {
  font-size: clamp(82px, 8vw, 132px);
  line-height: 0.76;
}
h1 em {
  color: var(--red);
  font-style: normal;
}
.hero-lead {
  max-width: 580px;
  margin: 36px 0 0;
  font-size: 17px;
  line-height: 1.7;
  color: #555952;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 34px;
}
.button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 0 21px;
  border: 0;
  font:
    600 13px Inter,
    sans-serif;
  cursor: pointer;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover,
.button--accent:hover {
  background: var(--red);
}
.text-link {
  font-size: 12px;
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding: 7px 0;
}
.css-arrow {
  position: relative;
  display: inline-block;
  width: 17px;
  height: 10px;
}
.css-arrow:before {
  content: "";
  position: absolute;
  left: 0;
  right: 1px;
  top: 4px;
  height: 1.5px;
  background: currentColor;
}
.css-arrow:after {
  content: "";
  position: absolute;
  right: 1px;
  top: 1px;
  width: 6px;
  height: 6px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.hero-visual {
  height: 620px;
  margin: 0;
  position: relative;
  overflow: hidden;
  background: var(--line);
}
.hero-visual:after,
.machine-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0, 0, 0, 0.82));
}
.hero-visual figcaption {
  position: absolute;
  z-index: 1;
  left: 28px;
  right: 28px;
  bottom: 26px;
  color: #fff;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 25px;
}
.hero-visual figcaption b {
  font: 700 32px "Barlow Condensed";
  text-transform: uppercase;
}
.hero-visual figcaption span {
  max-width: 190px;
  font-size: 11px;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-rail {
  height: 620px;
  border-left: 1px solid var(--line);
  display: grid;
  grid-template-columns: 26px 1fr;
  align-content: center;
  gap: 38px 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font: 600 11px "Barlow Condensed";
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.hero-rail span {
  color: var(--red);
}
.signal-strip {
  background: var(--red);
  color: #fff;
  min-height: 86px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}
.signal-strip div {
  text-align: center;
  padding: 15px;
  border-right: 1px solid rgba(255, 255, 255, 0.3);
  font: 600 18px "Barlow Condensed";
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.machine-section,
.brands {
  max-width: var(--max);
  margin: auto;
  padding: 140px 28px;
}
.machine-section {
  padding-top: 52px;
}
.machine-section .section-head {
  display: block;
  margin-bottom: 54px;
}
.machine-section .section-head .eyebrow {
  margin-bottom: 30px;
}
.machine-section .section-head .use-claim--sentence {
  width: 100%;
  margin: 0;
}
.machine-section .section-head > p:last-child {
  max-width: none;
  margin: 28px 0 0;
}
@media (min-width: 1100px) {
  .machine-section .section-head > p:last-child {
    white-space: nowrap;
  }
}
.section-head {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr 1fr;
  align-items: end;
  gap: 65px;
  margin-bottom: 64px;
}
.section-head .eyebrow {
  align-self: start;
}
.section-head h2,
.service h2,
.brands h2,
.contact h2,
.page-hero h1 {
  font-size: clamp(58px, 6vw, 106px);
  line-height: 0.84;
}
.section-head > p:last-child {
  font-size: 16px;
  line-height: 1.75;
  color: var(--muted);
  max-width: 430px;
}
.machine-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 330px 330px;
  gap: 18px;
}
.machine-card {
  position: relative;
  overflow: hidden;
  background: #111;
}
.machine-card-main {
  grid-row: 1/3;
}
.machine-card > a {
  display: block;
  height: 100%;
}
.machine-card img {
  transition: transform 0.65s ease;
}
.machine-card:hover img {
  transform: scale(1.018);
}
.machine-card > div,
.machine-card a > div {
  position: absolute;
  z-index: 1;
  left: 26px;
  right: 26px;
  bottom: 25px;
  color: #fff;
}
.machine-card span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ff8c78;
}
.machine-card h3 {
  font-size: clamp(34px, 3vw, 52px);
  margin-top: 6px;
}
.machine-card p {
  max-width: 440px;
  margin: 7px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: #d6d7d3;
}
.service {
  background: var(--ink);
  color: #fff;
  padding: 130px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  gap: clamp(70px, 8vw, 145px);
  align-items: center;
}
.service-image {
  height: 720px;
  position: relative;
  overflow: hidden;
}
.image-index {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  background: var(--red);
  font: 700 16px "Barlow Condensed";
}
.service-copy > p:not(.eyebrow) {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.75;
  color: #b9bdb7;
  margin: 34px 0 50px;
}
.service ol {
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid #444844;
}
.service li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid #444844;
}
.service li > span {
  font: 600 12px "Barlow Condensed";
  color: var(--red);
}
.service li b {
  display: block;
  font: 600 23px "Barlow Condensed";
  text-transform: uppercase;
}
.service li small {
  display: block;
  margin-top: 5px;
  color: #9fa39e;
  line-height: 1.5;
}
.brand-list {
  margin-top: 68px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.brand-list span {
  padding: 24px 12px;
  text-align: center;
  border-right: 1px solid var(--line);
  font: 700 19px "Barlow Condensed";
  letter-spacing: 0.05em;
}
.contact {
  max-width: var(--max);
  margin: 0 auto 30px;
  background: var(--red);
  color: #fff;
  padding: 90px clamp(30px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
}
.contact .eyebrow {
  color: #431008;
}
.contact-card {
  background: #fff;
  color: var(--ink);
  padding: 35px;
}
.contact-card > p {
  margin: 0 0 25px;
  color: var(--muted);
  line-height: 1.65;
}
.contact-card > a {
  display: grid;
  grid-template-columns: 90px 1fr 18px;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.contact-card a span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.contact-card a b {
  font-size: 16px;
  overflow-wrap: anywhere;
}
footer {
  max-width: var(--max);
  min-height: 110px;
  margin: auto;
  padding: 25px 28px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  font-size: 11px;
  color: var(--muted);
}
footer p {
  text-align: center;
}
footer > a:last-child {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 8px;
}
.css-up {
  width: 9px;
  height: 13px;
  position: relative;
}
.css-up:before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 1px;
  height: 12px;
  background: currentColor;
}
.css-up:after {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  width: 6px;
  height: 6px;
  border-top: 1px solid currentColor;
  border-left: 1px solid currentColor;
  transform: rotate(45deg);
}
/* Production pages retain the PoC typography, rule lines and generous framing. */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding: 105px max(28px, calc((100vw - var(--max)) / 2 + 28px));
}
.page-hero p:not(.eyebrow) {
  max-width: 620px;
  color: #c9c5ba;
  line-height: 1.7;
}
.section {
  max-width: var(--max);
  margin: auto;
  padding: 100px 28px;
}
.catalog-filters {
  border-bottom: 1px solid var(--line);
  padding-bottom: 24px;
}
.button--ghost {
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
}
.machine-detail__intro {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 35px;
}
.machine-detail__intro h1 {
  font-size: clamp(60px, 7vw, 110px);
}
.gallery {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 12px;
}
.gallery__item {
  padding: 0;
  border: 0;
  background: #111;
  min-height: 190px;
  overflow: hidden;
  cursor: zoom-in;
}
.gallery__item--main {
  grid-row: span 2;
  min-height: 392px;
}
.machine-detail__content {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  padding-top: 65px;
}
.machine-specs,
.machine-enquiry,
.contact-form-wrap {
  padding: 32px;
  background: #fff;
}
.machine-specs dl > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding: 13px 0;
}
.machine-specs dd {
  margin: 0;
  text-align: right;
}
.entry-content {
  line-height: 1.75;
}
.lightbox {
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  max-width: 94vw;
}
.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.9);
}
.lightbox img {
  width: auto;
  max-width: 94vw;
  max-height: 90vh;
  object-fit: contain;
}
.lightbox button {
  position: absolute;
  border: 0;
  background: rgba(19, 21, 20, 0.75);
  color: #fff;
  width: 48px;
  height: 48px;
  font-size: 30px;
}
.lightbox__close,
.lightbox__next {
  right: 0;
}
.lightbox__close {
  top: 0;
}
.lightbox__prev {
  left: 0;
  top: 50%;
}
.lightbox__next {
  top: 50%;
}
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.brand-tile {
  padding: 38px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 700 28px "Barlow Condensed";
}
.feature-grid,
.two-column,
.contact-page {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
}
.feature-grid article,
.contact-page > div {
  background: var(--paper);
  padding: 35px;
}
.two-column {
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  background: transparent;
}
.statement {
  font: 700 clamp(52px, 6vw, 100px) / 0.85 "Barlow Condensed";
  text-transform: uppercase;
}
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: 0.6s;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1050px) {
  .header-inner {
    grid-template-columns: 1fr auto;
  }
  .primary-nav {
    display: none;
  }
  .nav-toggle {
    display: block;
    justify-self: end;
    margin-right: 15px;
    border: 0;
    background: none;
  }
  .nav-toggle span:not(.sr-only) {
    display: block;
    width: 25px;
    height: 2px;
    margin: 5px;
    background: var(--ink);
  }
  .primary-nav.is-open {
    display: block;
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    top: 86px;
    padding: 18px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }
  .primary-nav.is-open .menu {
    display: block;
  }
  .primary-nav.is-open li {
    border-bottom: 1px solid var(--line);
  }
  .hero {
    grid-template-columns: 1fr 1.1fr;
  }
  .hero-rail {
    display: none;
  }
  .section-head {
    grid-template-columns: 1fr 1.4fr;
  }
  .section-head > p:last-child {
    grid-column: 2;
  }
  .service {
    gap: 55px;
  }
  .brand-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .machine-detail__content {
    gap: 45px;
  }
}
@media (max-width: 700px) {
  .site-header {
    height: 71px;
    padding: 0 20px;
  }
  .brand-mark {
    width: 33px;
    height: 33px;
  }
  .header-cta {
    font-size: 15px;
  }
  .primary-nav.is-open {
    top: 71px;
    padding: 18px 20px;
  }
  .hero {
    min-height: 0;
    padding: 44px 20px 65px;
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .hero h1 {
    font-size: clamp(68px, 21vw, 91px);
  }
  .hero-lead {
    font-size: 15px;
    margin-top: 28px;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 27px;
  }
  .hero-visual {
    height: 420px;
  }
  .signal-strip {
    grid-template-columns: 1fr 1fr;
  }
  .signal-strip div {
    font-size: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  }
  .machine-section,
  .brands,
  .section {
    padding: 85px 20px;
  }
  .machine-section {
    padding-top: 36px;
  }
  .machine-section .section-head {
    margin-bottom: 35px;
  }
  .machine-section .section-head .eyebrow {
    margin-bottom: 22px;
  }
  .machine-section .section-head > p:last-child {
    margin-top: 22px;
  }
  .section-head {
    display: block;
    margin-bottom: 35px;
  }
  .section-head > p:last-child {
    margin-top: 25px;
  }
  .machine-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 440px 300px 300px;
    gap: 12px;
  }
  .machine-card-main {
    grid-row: auto;
  }
  .service {
    padding: 80px 20px;
    grid-template-columns: 1fr;
    gap: 55px;
  }
  .service-image {
    height: 430px;
  }
  .contact {
    margin: 0;
    padding: 70px 20px;
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .contact-card {
    padding: 24px 20px;
  }
  .contact-card > a {
    grid-template-columns: 65px 1fr 18px;
  }
  .gallery {
    grid-template-columns: 1fr 1fr;
  }
  .gallery__item--main {
    grid-column: 1/-1;
    grid-row: auto;
    min-height: 270px;
  }
  .machine-detail__intro,
  .machine-detail__content {
    grid-template-columns: 1fr;
    display: grid;
    gap: 30px;
  }
  .brand-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-grid,
  .contact-page,
  .two-column {
    grid-template-columns: 1fr;
  }
  .machine-detail__content {
    padding-top: 40px;
  }
  footer {
    grid-template-columns: 1fr auto;
    padding: 28px 20px;
  }
  footer p {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .machine-card img {
    transition: none;
  }
}
.button--orange {
  background: var(--red);
  color: #fff;
}
.contact-band {
  max-width: var(--max);
  margin: 0 auto 30px;
  background: var(--red);
  color: #fff;
  padding: 70px 28px;
}
.contact-band__inner {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  align-items: center;
}
.contact-band h2 {
  font: 700 clamp(42px, 5vw, 82px) / 1.02 "Barlow Condensed";
  text-transform: uppercase;
  margin: 0;
}
