:root {
  --ink: #16212a;
  --ink-soft: #273640;
  --ivory: #f5f2eb;
  --ivory-deep: #ebe5da;
  --white: #ffffff;
  --bronze: #9a6a35;
  --bronze-dark: #755027;
  --sage: #dfe6e1;
  --muted: #5d6970;
  --line: #d3d5d1;
  --line-dark: rgba(255,255,255,.17);
  --display: "Segoe UI Variable Display", "Segoe UI", Arial, Helvetica, sans-serif;
  --body: "Segoe UI Variable Text", "Segoe UI", Arial, Helvetica, sans-serif;
  --shadow: 0 30px 80px rgba(13,24,32,.12);
  --shadow-small: 0 12px 34px rgba(13,24,32,.075);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
:focus-visible { outline: 3px solid #d4a66d; outline-offset: 4px; }

.shell { width: min(1200px, calc(100% - 48px)); margin-inline: auto; }
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 18px;
  z-index: 100;
  padding: 11px 16px;
  color: var(--white);
  background: var(--bronze-dark);
  border-radius: 2px;
  font-weight: 700;
}
.skip-link:focus { top: 14px; }

.site-header {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--bronze);
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  gap: 34px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.025em;
}
.brand::before {
  content: "W";
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  color: #d4b187;
  background: transparent;
  border: 1px solid #b98d58;
  border-radius: 1px;
  font: 550 15px/1 var(--display);
}
.brand small {
  margin-left: -4px;
  color: var(--bronze-dark);
  font: 700 10px/1 var(--body);
  letter-spacing: .16em;
  text-transform: uppercase;
}
.site-header .brand { color: var(--white); }
.site-header .brand small { color: #cfb28e; }
.primary-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-left: auto;
}
.primary-nav a {
  position: relative;
  padding: 12px 0;
  color: #e4e7e8;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .025em;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: #c59b69;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}
.primary-nav a:hover,
.primary-nav a:focus-visible,
.primary-nav a[aria-current="page"] { color: var(--white); }
.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 10px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: 50%;
}
.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 6px 0;
  background: currentColor;
}
.header-phone {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  padding: 10px 17px;
  color: var(--white);
  background: transparent;
  border: 1px solid #bd9462;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition: color .2s ease, background .2s ease;
}
.header-phone:hover,
.header-phone:focus-visible {
  color: var(--ink);
  background: #c8a16f;
}

h1, h2, h3 {
  margin-top: 0;
  color: inherit;
  letter-spacing: -.028em;
}
h1, h2 {
  font-family: var(--display);
  font-weight: 560;
  line-height: 1.04;
}
h1 { margin-bottom: 24px; font-size: clamp(48px, 5.7vw, 78px); }
h2 { max-width: 840px; margin-bottom: 22px; font-size: clamp(35px, 4vw, 54px); }
h3 { margin-bottom: 12px; font-size: 22px; font-weight: 650; line-height: 1.22; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  margin: 0 0 19px;
  color: #d1ae82;
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
}
.eyebrow.dark { color: var(--bronze-dark); }

.hero {
  position: relative;
  height: min(820px, calc(100svh - 88px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: #0c1821;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(.86) contrast(1.04);
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,18,26,.98) 0%, rgba(8,18,26,.9) 34%, rgba(8,18,26,.5) 59%, rgba(8,18,26,.08) 82%),
    linear-gradient(0deg, rgba(8,18,26,.36), transparent 45%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-block: clamp(40px, 7vh, 72px);
}
.hero-content > * { max-width: 680px; }
.hero h1 { max-width: 700px; font-size: clamp(49px, 5vw, 70px); }
.hero-lead {
  max-width: 625px;
  margin-bottom: 28px;
  color: #d7dcde;
  font-size: clamp(17px, 1.35vw, 19px);
  line-height: 1.5;
}
.actions { display: flex; gap: 13px; flex-wrap: wrap; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 1px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .085em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.button-primary {
  color: var(--white);
  background: var(--bronze-dark);
  border-color: var(--bronze-dark);
}
.button-primary:hover,
.button-primary:focus-visible { background: #5f3f1f; border-color: #5f3f1f; }
.button-secondary {
  color: var(--white);
  background: transparent;
  border-color: rgba(255,255,255,.48);
}
.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}
.button-outline { color: var(--ink); background: transparent; border-color: var(--ink); }
.hero-points {
  display: flex;
  gap: 30px;
  max-width: 680px;
  padding: 22px 0 0;
  margin: 31px 0 0;
  color: #c9d1d4;
  border-top: 1px solid rgba(255,255,255,.2);
  list-style: none;
  font-size: 10px;
  font-weight: 720;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.hero-points li { padding: 0; }
.hero-points li::before { content: ""; display: inline-block; width: 5px; height: 5px; margin: 0 9px 1px 0; background: #c7a274; }

.section { padding-block: 96px; }
.section-soft { background: var(--ivory); }
.section-intro {
  max-width: 760px;
  margin: 0 0 38px;
  color: var(--muted);
  font-size: 18px;
}
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: stretch;
}
.machine-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 26px rgba(13,24,32,.055);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.machine-card:hover { border-color: #bca789; box-shadow: var(--shadow-small); }
.machine-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter: saturate(.82) contrast(1.02);
}
.machine-card > div { position: relative; padding: 27px 27px 29px; }
.machine-card > div::before {
  content: "";
  position: absolute;
  top: 0;
  left: 30px;
  width: 46px;
  height: 2px;
  background: var(--bronze);
}
.machine-card h3 { font-family: var(--display); font-weight: 620; font-size: 23px; }
.machine-card p { color: var(--muted); }
.machine-card a,
.text-link {
  color: var(--bronze-dark);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: .055em;
  text-transform: uppercase;
  text-underline-offset: 5px;
  text-decoration-thickness: 1px;
}
.split-layout {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  align-items: center;
  gap: 74px;
}
.split-layout-reverse { grid-template-columns: .92fr 1.08fr; }
.feature-figure {
  position: relative;
  margin: 0;
  background: var(--white);
  box-shadow: var(--shadow);
}
.feature-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(.72);
}
.feature-figure figcaption {
  padding: 19px 23px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 13px;
}
.reason-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.reason-grid article {
  min-height: 178px;
  padding: 23px;
  background: rgba(255,255,255,.75);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.reason-grid span {
  color: var(--bronze-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1em;
}
.reason-grid h3 { margin: 15px 0 8px; font-family: var(--display); font-weight: 650; }
.reason-grid p { margin: 0; color: var(--muted); font-size: 15px; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  counter-reset: steps;
}
.steps-grid article {
  position: relative;
  min-height: 238px;
  padding: 29px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 2px solid var(--bronze);
}
.steps-grid article::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -21px;
  width: 14px;
  height: 1px;
  background: var(--line);
}
.steps-grid article:last-child::after { display: none; }
.steps-grid span {
  display: block;
  margin-bottom: 29px;
  color: var(--bronze-dark);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: .1em;
  line-height: 1;
}
.steps-grid h3 { font-family: var(--display); font-size: 21px; font-weight: 650; }
.steps-grid p { margin-bottom: 0; color: var(--muted); }
.center-link { margin: 34px 0 0; text-align: center; }
.dark-panel {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}
.dark-panel::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.dark-copy p:not(.eyebrow) { color: #ced5d7; font-size: 18px; }
.rounded-image {
  width: 100%;
  min-height: 410px;
  object-fit: cover;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 28px 70px rgba(0,0,0,.24);
  filter: saturate(.82);
}
.faq-list {
  display: grid;
  gap: 0;
  max-width: 930px;
  border-top: 1px solid var(--line);
}
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 23px 55px 23px 0;
  font-family: var(--display);
  font-size: 20px;
  font-weight: 620;
}
.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 17px;
  right: 2px;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: var(--bronze-dark);
  border: 1px solid var(--line);
  border-radius: 50%;
  font: 400 23px/1 var(--display);
}
.faq-list details[open] summary::after { content: "−"; color: var(--white); background: var(--bronze-dark); }
.faq-list details p { max-width: 820px; margin: 0; padding: 0 0 24px; color: var(--muted); }
.quote-section { background: linear-gradient(135deg, var(--ivory), #ece8df); }
.quote-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 68px;
  align-items: start;
}
.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 35px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.field { display: grid; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label,
.consent {
  color: #35434c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .025em;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 12px;
  color: var(--ink);
  background: #fbfaf7;
  border: 1px solid #aeb5b6;
  border-radius: 2px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  background: var(--white);
  border-color: var(--bronze-dark);
  box-shadow: 0 0 0 3px rgba(154,106,53,.16);
}
.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 500;
  line-height: 1.55;
}
.consent input { margin-top: 5px; }
.consent a { color: var(--bronze-dark); font-weight: 700; }
.hp-field { position: absolute; left: -9999px; }
.tick-list { padding: 0; list-style: none; }
.tick-list li { position: relative; margin: 14px 0; padding-left: 29px; }
.tick-list li::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 16px;
  height: 1px;
  background: var(--bronze-dark);
}
.cta-band {
  color: var(--white);
  background: var(--bronze-dark);
  padding-block: 62px;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 35px; }
.cta-inner h2 { margin-bottom: 10px; font-size: clamp(35px, 4vw, 50px); }
.cta-inner p { max-width: 700px; margin: 0; color: #e9ded2; }
.cta-inner .eyebrow { color: #ead7c0; }
.button-light {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
  white-space: nowrap;
}
.button-light:hover,
.button-light:focus-visible { background: var(--ivory); }

.site-footer {
  position: relative;
  color: #cdd3d5;
  background: #101920;
  padding: 70px 0 27px;
  border-top: 4px solid var(--bronze);
}
.footer-grid { display: grid; grid-template-columns: 1.55fr 1fr 1.2fr 1fr; gap: 38px; }
.footer-grid h2 {
  color: #d2af84;
  font-family: var(--body);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.footer-grid a:not(.brand) {
  display: block;
  margin: 8px 0;
  color: #cdd3d5;
  text-underline-offset: 3px;
}
.footer-grid a:hover { color: var(--white); }
.footer-grid p { max-width: 300px; }
.brand-light { color: var(--white); }
.brand-light small { color: #cfb28e; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 21px;
  border-top: 1px solid var(--line-dark);
  color: #9eaaae;
  font-size: 12px;
}
.footer-bottom p { margin: 0; }

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 25%, rgba(154,106,53,.2), transparent 27%),
    var(--ink);
  padding-block: 78px 86px;
}
.page-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 8%;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.page-hero-image {
  min-height: 500px;
  display: flex;
  align-items: center;
}
.page-hero-image > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.8) contrast(1.02);
}
.page-hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15,27,36,.98) 0%, rgba(15,27,36,.92) 40%, rgba(15,27,36,.56) 63%, rgba(15,27,36,.15));
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content h1 { max-width: 820px; font-size: clamp(44px, 5vw, 68px); }
.page-hero-image .page-hero-content { max-width: 760px; padding-right: 0; }
.page-hero-content > p:not(.eyebrow) { max-width: 720px; color: #d1d8da; font-size: 19px; }
.breadcrumbs {
  display: flex;
  gap: 9px;
  align-items: center;
  margin-bottom: 42px;
  color: #9eaaae;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.breadcrumbs a { color: #d1ad80; }
.intro-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 74px; align-items: start; }
.intro-grid .section-intro { margin-bottom: 16px; }
.availability-note {
  padding: 19px 21px;
  color: #37454d;
  background: var(--sage);
  border-left: 2px solid var(--bronze-dark);
}
.category-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 29px; }
.category-card {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
  scroll-margin-top: 30px;
}
.category-card img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
  filter: saturate(.74);
}
.category-card > div { padding: 30px; }
.category-card h2 { font-size: 31px; }
.category-card p { color: var(--muted); }
.category-card ul { padding-left: 19px; color: #455159; }
.card-kicker {
  color: var(--bronze-dark) !important;
  font-size: 10px !important;
  font-weight: 750;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.spec-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 74px; }
.data-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.data-list li {
  display: grid;
  grid-template-columns: 165px 1fr;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.data-list strong { color: var(--ink); }
.data-list span { color: var(--muted); }
.data-list.compact li { grid-template-columns: 1fr; gap: 2px; }
.process-list { display: grid; gap: 0; max-width: 980px; border-top: 1px solid var(--line); }
.process-list article {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 30px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
}
.process-list article > span {
  color: var(--bronze-dark);
  font-family: var(--display);
  font-size: 21px;
  font-weight: 650;
}
.process-list h3 { margin-bottom: 8px; font-family: var(--display); font-weight: 650; }
.process-list p { margin: 0; color: var(--muted); font-size: 17px; }
.content-stack { display: grid; gap: 15px; }
.content-card {
  padding: 27px;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 24px rgba(22,33,42,.055);
}
.content-card h3 { font-family: var(--display); font-weight: 650; }
.content-card p { margin-bottom: 0; color: var(--muted); }

.industry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 29px; }
.industry-grid article {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-small);
}
.industry-grid article > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(.72);
}
.industry-grid article > div { padding: 30px; }
.industry-grid h2 { font-size: 32px; }
.industry-grid h3 {
  margin: 25px 0 6px;
  color: var(--bronze-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.industry-grid p { color: var(--muted); }
.contact-layout { display: grid; grid-template-columns: .78fr 1.22fr; gap: 64px; align-items: start; }
.contact-sidebar { position: sticky; top: 25px; }
.contact-cards { display: grid; gap: 12px; margin: 31px 0; }
.contact-cards a {
  display: grid;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  text-decoration: none;
  box-shadow: 0 7px 22px rgba(22,33,42,.05);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-cards a:hover { border-color: #b38a5a; }
.contact-cards span {
  color: var(--bronze-dark);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.contact-cards strong { color: var(--ink); font-family: var(--display); font-size: 20px; font-weight: 620; }
.contact-cards small { color: var(--muted); }
.brief-box {
  padding: 27px;
  color: var(--white);
  background: var(--ink);
  border-top: 3px solid var(--bronze);
}
.brief-box h3 { font-family: var(--display); font-weight: 650; }
.brief-box .tick-list li { color: #d3dadd; font-size: 14px; }
.brief-box .tick-list li::before { background: #c8a06d; }
.contact-form { grid-template-columns: 1fr 1fr; }
.form-help { margin: 0; color: var(--muted); font-size: 13px; }
.form-notice {
  margin-bottom: 16px;
  padding: 16px 18px;
  color: #772617;
  background: #fff2ee;
  border-left: 3px solid #a6442c;
}

.legal-hero { padding-block: 74px; }
.legal-content { max-width: 880px; }
.legal-content h2 { margin-top: 50px; font-size: 31px; }
.legal-content p,
.legal-content li { color: #4d5960; font-size: 17px; }
.legal-content a { color: var(--bronze-dark); font-weight: 700; }
.last-updated {
  display: inline-block;
  padding: 7px 10px;
  color: #3b474e !important;
  background: var(--ivory);
  border-left: 2px solid var(--bronze);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.message-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background:
    radial-gradient(circle at 78% 18%, rgba(154,106,53,.18), transparent 25%),
    var(--ivory);
}
.message-card {
  width: min(740px, 100%);
  padding: clamp(30px, 6vw, 65px);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.message-card .brand { margin-bottom: 52px; }
.message-card h1 { font-size: clamp(39px, 6vw, 61px); }
.message-card .actions { margin: 29px 0; }
.message-help { padding-top: 25px; color: var(--muted); border-top: 1px solid var(--line); }
.message-help a { color: var(--bronze-dark); font-weight: 700; }

@media (max-width: 1100px) {
  .header-inner { gap: 18px; }
  .primary-nav { gap: 18px; }
  .hero-content { padding-right: 0; }
  .category-card { grid-template-columns: 1fr; }
  .category-card img { min-height: 260px; aspect-ratio: 16 / 10; }
}

@media (max-width: 900px) {
  .js .nav-toggle { display: block; margin-left: auto; }
  .primary-nav { gap: 11px; }
  .js .primary-nav {
    display: none;
    position: absolute;
    top: 84px;
    right: 0;
    left: 0;
    margin: 0;
    padding: 23px 24px;
    background: #111b22;
    border-top: 1px solid rgba(255,255,255,.1);
    border-bottom: 2px solid var(--bronze);
    flex-direction: column;
    align-items: stretch;
  }
  .js .primary-nav.is-open { display: flex; }
  .js .primary-nav a { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.12); }
  .header-phone { margin-left: auto; }
  .js .header-phone { margin-left: 0; }
  .hero { height: min(820px, calc(100svh - 88px)); align-items: center; }
  .hero-image,
  .hero-shade { inset: 0; width: 100%; }
  .hero-shade { background: linear-gradient(90deg, rgba(8,18,26,.97), rgba(8,18,26,.78) 58%, rgba(8,18,26,.32)); }
  .hero-content { padding: 58px 0; }
  .hero-content > * { max-width: 650px; }
  .card-grid { grid-template-columns: 1fr; }
  .split-layout,
  .split-layout-reverse,
  .quote-layout,
  .intro-grid,
  .spec-grid,
  .contact-layout { grid-template-columns: 1fr; gap: 42px; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .steps-grid article::after { display: none; }
  .dark-panel::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cta-inner { align-items: flex-start; flex-direction: column; }
  .page-hero-image > img { width: 100%; }
  .page-hero-shade { background: linear-gradient(90deg, rgba(22,33,42,.98), rgba(22,33,42,.7)); }
  .page-hero-image .page-hero-content { padding-right: 0; padding-top: 105px; }
  .category-grid,
  .industry-grid { grid-template-columns: 1fr; }
  .contact-sidebar { position: static; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 28px, 1200px); }
  .site-header .brand { font-size: 22px; }
  .site-header .brand::before { width: 29px; height: 29px; font-size: 15px; }
  .header-phone { padding: 9px 12px; font-size: 0; }
  .header-phone::after { content: "Call"; font-size: 12px; }
  h1 { font-size: clamp(40px, 11vw, 54px); }
  h2 { font-size: clamp(33px, 9vw, 45px); }
  .hero { height: auto; min-height: calc(100svh - 88px); max-height: none; align-items: end; }
  .hero-image { object-position: 62% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(8,18,26,.99) 0%, rgba(8,18,26,.9) 60%, rgba(8,18,26,.36)); }
  .hero-content { padding: 64px 0 46px; }
  .hero h1 { font-size: clamp(39px, 10.8vw, 52px); }
  .hero-lead { margin-bottom: 23px; font-size: 16.5px; line-height: 1.45; }
  .actions { flex-direction: column; align-items: stretch; }
  .hero-points { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 24px; padding-top: 18px; font-size: 9px; line-height: 1.45; }
  .hero-points li::before { display: block; margin: 0 0 8px; }
  .section { padding-block: 68px; }
  .card-grid,
  .reason-grid,
  .steps-grid,
  .footer-grid { grid-template-columns: 1fr; }
  .enquiry-form { grid-template-columns: 1fr; padding: 23px; }
  .field-full { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .rounded-image { min-height: 285px; box-shadow: 0 22px 55px rgba(0,0,0,.25); }
  .page-hero { padding-block: 68px 74px; }
  .page-hero-image { min-height: 500px; }
  .page-hero-image .page-hero-content { padding-top: 86px; }
  .process-list article { grid-template-columns: 52px 1fr; gap: 15px; }
  .data-list li { grid-template-columns: 1fr; gap: 2px; }
  .contact-form { grid-template-columns: 1fr; }
  .contact-form .field-full { grid-column: auto; }
}

@media (max-height: 650px) and (min-width: 901px) {
  .hero-content { padding-block: 30px; }
  .hero h1 { margin-bottom: 18px; font-size: clamp(43px, 4.4vw, 58px); }
  .hero-lead { margin-bottom: 20px; font-size: 16px; }
  .hero-points { margin-top: 22px; padding-top: 17px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { transition-duration: .01ms !important; }
}
