
:root {
  --red: #e21b2d;
  --red-dark: #a90f1e;
  --black: #090a0b;
  --coal: #111416;
  --graphite: #1d2124;
  --steel: #9ca2a6;
  --mist: #d6d8d8;
  --white: #ffffff;
  --offwhite: #f2f2ef;
  --line-dark: rgba(255, 255, 255, 0.17);
  --line-light: rgba(9, 10, 11, 0.17);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--black);
  font-family: var(--font-body), Arial, sans-serif;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { display: block; }

.content-wide {
  margin-inline: auto;
  max-width: 1540px;
  padding-inline: clamp(24px, 5vw, 82px);
}

.site-header {
  background: rgba(9, 10, 11, 0.97);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 50;
}

.utility-bar {
  align-items: center;
  border-bottom: 1px solid var(--line-dark);
  color: #a8adaf;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: 0.14em;
  min-height: 32px;
  padding: 0 5vw;
  text-transform: uppercase;
}

.utility-bar span:first-child {
  color: var(--white);
  position: relative;
  padding-left: 18px;
}

.utility-bar span:first-child::before {
  background: var(--red);
  content: "";
  height: 7px;
  left: 0;
  position: absolute;
  top: 3px;
  width: 7px;
}

.utility-bar a { color: var(--white); }
.utility-bar a:hover { color: var(--red); }

.nav-shell {
  align-items: center;
  display: grid;
  grid-template-columns: minmax(340px, 1fr) auto minmax(220px, 1fr);
  min-height: 88px;
  padding: 0 5vw;
}

.brand {
  align-items: center;
  display: flex;
  gap: 13px;
  width: fit-content;
}

.brand-mark { height: 56px; width: 72px; }
.logo-shell { fill: var(--red); }
.logo-chamber { fill: var(--black); }
.logo-jaw { fill: var(--white); }
.logo-rock { fill: var(--red); }

.brand-type {
  display: grid;
  line-height: 1;
}

.brand-type strong {
  font-family: var(--font-display), Arial, sans-serif;
  font-size: 25px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: 0.015em;
}

.brand-type strong i {
  color: var(--red);
  font-style: normal;
}

.brand-type strong b {
  border: 1px solid #575c5e;
  color: #aeb2b4;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 8px;
  letter-spacing: .08em;
  margin-left: 5px;
  padding: 3px 4px;
  vertical-align: 5px;
}

.brand-type small {
  color: #888e91;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin-top: 8px;
  text-transform: uppercase;
}

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 35px 0;
  position: relative;
  text-transform: uppercase;
}

.desktop-nav a::after {
  background: var(--red);
  bottom: 23px;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .18s ease;
  width: 100%;
}

.desktop-nav a:hover::after { transform: scaleX(1); }

.header-cta,
.button {
  align-items: center;
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
  gap: 24px;
  justify-content: space-between;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.header-cta {
  background: var(--red);
  justify-self: end;
  min-width: 175px;
  padding: 16px 18px;
}

.header-cta:hover,
.button.red:hover { background: var(--red-dark); }

.header-cta svg,
.button svg,
.crushing-heading a svg,
.equipment-copy a svg,
.service-list svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-linejoin: miter;
  stroke-width: 1.8;
  width: 19px;
}

.mobile-menu { display: none; }

.hero {
  background-image: url("/images/hero-crusher-v2.webp");
  background-position: center;
  background-size: cover;
  color: var(--white);
  min-height: 760px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(3,4,5,.98) 0%, rgba(3,4,5,.9) 30%, rgba(3,4,5,.44) 54%, rgba(3,4,5,.05) 78%),
    linear-gradient(0deg, rgba(3,4,5,.82) 0%, transparent 32%);
  content: "";
  inset: 0;
  position: absolute;
}

.hero::after {
  background: var(--red);
  content: "";
  height: 190px;
  position: absolute;
  right: -48px;
  top: -80px;
  transform: rotate(38deg);
  width: 28px;
}

.hero-shade {
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 100% 72px;
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-content {
  align-content: center;
  display: grid;
  min-height: 650px;
  padding-bottom: 110px;
  padding-top: 85px;
  position: relative;
  z-index: 2;
}

.overline {
  align-items: center;
  color: #d3d6d7;
  display: flex;
  font-size: 10px;
  font-weight: 800;
  gap: 11px;
  letter-spacing: .17em;
  margin: 0 0 26px;
  text-transform: uppercase;
}

.overline span {
  background: var(--red);
  height: 9px;
  width: 9px;
}

.hero h1,
.crushing-heading h2,
.equipment-heading h2,
.services-title h2,
.process-title h2,
.north-grid h2,
.contact-grid h2 {
  font-family: var(--font-display), Impact, sans-serif;
  font-weight: 900;
  letter-spacing: -.025em;
  line-height: .84;
  margin: 0;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(74px, 9vw, 142px);
  max-width: 1000px;
  text-shadow: 0 4px 22px rgba(0,0,0,.32);
}

.hero h1 strong {
  color: var(--red);
  display: block;
}

.hero-copy {
  color: #c4c8ca;
  font-size: 18px;
  line-height: 1.55;
  margin: 34px 0 0;
  max-width: 680px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 30px;
  margin-top: 36px;
}

.button { padding: 18px 20px; }
.button.red { background: var(--red); color: var(--white); min-width: 225px; }

.text-link {
  border-bottom: 1px solid rgba(255,255,255,.45);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .05em;
  padding-bottom: 6px;
}

.text-link:hover { color: var(--red); }

.hero-rail {
  background: rgba(9,10,11,.88);
  border-top: 1px solid rgba(255,255,255,.22);
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  left: 0;
  min-height: 110px;
  position: absolute;
  right: 0;
  z-index: 3;
}

.hero-rail div {
  align-content: center;
  border-right: 1px solid rgba(255,255,255,.16);
  display: grid;
  gap: 8px;
  padding: 20px 5vw;
}

.hero-rail div:last-child { border-right: 0; }
.hero-rail b { color: var(--red); font-size: 9px; letter-spacing: .15em; }
.hero-rail span { font-size: 14px; font-weight: 700; }

.impact-strip {
  align-items: center;
  background: var(--red);
  color: var(--white);
  display: grid;
  grid-template-columns: 1fr auto 50px auto 1fr;
  min-height: 82px;
  padding: 0 5vw;
}

.impact-strip span {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.impact-strip span:last-child { justify-self: end; }

.impact-strip strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: 29px;
  letter-spacing: .01em;
}

.impact-strip i {
  background: var(--white);
  height: 2px;
  justify-self: center;
  width: 22px;
}

.section-index {
  align-items: center;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  gap: 14px;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.section-index::after {
  background: var(--black);
  content: "";
  height: 1px;
  width: 70px;
}

.section-index.light { color: #aeb2b4; }
.section-index.light::after { background: #777d80; }

.crushing-section {
  background: var(--offwhite);
  padding-bottom: 130px;
  padding-top: 120px;
}

.crushing-heading,
.equipment-heading,
.services-title,
.process-title {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.35fr .65fr;
  margin-top: 52px;
}

.crushing-heading h2,
.equipment-heading h2,
.services-title h2,
.process-title h2 {
  font-size: clamp(58px, 7vw, 108px);
}

.crushing-heading h2 span,
.equipment-heading h2 span,
.services-title h2 span,
.process-title h2 span { color: var(--red); }

.crushing-heading > div > p,
.equipment-heading > p,
.services-title > p,
.process-title > p {
  color: #5b6164;
  font-size: 16px;
  line-height: 1.65;
  margin: 0;
}

.crushing-heading a {
  align-items: center;
  display: inline-flex;
  font-size: 10px;
  font-weight: 800;
  gap: 22px;
  letter-spacing: .1em;
  margin-top: 24px;
  text-transform: uppercase;
}

.crushing-heading a:hover { color: var(--red); }

.action-grid {
  display: grid;
  grid-template-columns: 1.55fr .45fr;
  margin-top: 72px;
  min-height: 510px;
}

.action-image { display: block; overflow: hidden; position: relative; }

.action-image::after {
  background: linear-gradient(0deg, rgba(0,0,0,.6), transparent 45%);
  content: "";
  inset: 0;
  position: absolute;
}

.action-image img {
  height: 100%;
  object-fit: cover;
  object-position: 65% center;
  width: 100%;
}

.action-image > span,
.equipment-photo > span {
  background: var(--red);
  bottom: 22px;
  color: var(--white);
  font-size: 8px;
  font-weight: 800;
  left: 22px;
  letter-spacing: .14em;
  padding: 8px 10px;
  position: absolute;
  text-transform: uppercase;
  z-index: 2;
}

.action-stat {
  align-content: center;
  background: var(--black);
  color: var(--white);
  display: grid;
  padding: 45px;
}

.action-stat small {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.action-stat strong {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(43px, 4vw, 62px);
  line-height: .9;
  margin: 34px 0;
}

.action-stat p {
  color: #aeb3b5;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.equipment-section {
  background: var(--coal);
  color: var(--white);
  padding: 130px 0 120px;
}

.equipment-heading > p { color: #aab0b2; }

.equipment-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
}

.equipment-card {
  background: var(--graphite);
  border: 1px solid rgba(255,255,255,.15);
}

.equipment-card.large {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 1.45fr .55fr;
}

.equipment-photo {
  background: #262a2c;
  min-height: 340px;
  overflow: hidden;
  position: relative;
}

.equipment-card.large .equipment-photo { min-height: 480px; }

.equipment-photo::after {
  background: linear-gradient(0deg, rgba(0,0,0,.38), transparent 55%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.equipment-photo img {
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  width: 100%;
}

.equipment-photo-product img {
  background: #f2f2f0;
  object-fit: contain;
  padding: 22px;
}

.equipment-card:hover .equipment-photo img { transform: scale(1.025); }

.equipment-copy { padding: 32px; }

.equipment-card.large .equipment-copy {
  align-content: center;
  display: grid;
  padding: 48px;
}

.equipment-copy > div {
  align-items: center;
  display: flex;
  justify-content: space-between;
}

.equipment-copy small {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .14em;
}

.equipment-copy > div b {
  color: #6f7578;
  font-family: var(--font-display), sans-serif;
  font-size: 26px;
}

.equipment-copy h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 38px;
  line-height: .95;
  margin: 45px 0 18px;
  text-transform: uppercase;
}

.equipment-copy p {
  color: #abb0b2;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.equipment-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
}

.equipment-copy li {
  border: 1px solid #54595c;
  color: #bfc3c5;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .1em;
  padding: 6px 8px;
  text-transform: uppercase;
}

.equipment-copy a {
  align-items: center;
  border-top: 1px solid #484d4f;
  color: #d8dbdc;
  display: flex;
  font-size: 9px;
  font-weight: 800;
  justify-content: space-between;
  letter-spacing: .1em;
  margin-top: 34px;
  padding-top: 17px;
  text-transform: uppercase;
}

.equipment-copy a:hover { color: var(--red); }

.equipment-note {
  color: #747a7d;
  font-size: 9px;
  letter-spacing: .04em;
  margin: 20px 0 0;
}

.services-section {
  background: var(--offwhite);
  padding-bottom: 130px;
  padding-top: 120px;
}

.service-list {
  border-top: 2px solid var(--black);
  margin-top: 74px;
}

.service-list article {
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  display: grid;
  gap: 30px;
  grid-template-columns: 60px .7fr 1fr 30px;
  min-height: 120px;
  transition: background .15s ease, color .15s ease;
}

.service-list article:hover {
  background: var(--red);
  color: var(--white);
  padding-inline: 22px;
}

.service-list article > span {
  color: var(--red);
  font-size: 10px;
  font-weight: 800;
}

.service-list article:hover > span,
.service-list article:hover p { color: var(--white); }

.service-list h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 31px;
  margin: 0;
  text-transform: uppercase;
}

.service-list p {
  color: #62686b;
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}

.service-list svg { justify-self: end; }

.process-section {
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    var(--black);
  background-size: 54px 54px;
  color: var(--white);
  padding: 125px 0 135px;
}

.process-title > p { color: #aab0b2; }

.route-block {
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 35px;
  grid-template-columns: 180px 1fr;
  margin-top: 58px;
  padding-top: 34px;
}

.route-block + .route-block { margin-top: 62px; }

.route-label b {
  align-items: center;
  background: var(--red);
  display: flex;
  font-family: var(--font-display), sans-serif;
  font-size: 32px;
  height: 52px;
  justify-content: center;
  width: 52px;
}

.route-label span {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.5;
  margin-top: 15px;
  max-width: 140px;
  text-transform: uppercase;
}

.route-flow { display: grid; }
.route-flow.six { grid-template-columns: repeat(6, 1fr); }
.route-flow.four { grid-template-columns: repeat(4, 1fr); }

.route-flow article {
  border-left: 1px solid var(--line-dark);
  min-height: 190px;
  padding: 19px;
  position: relative;
}

.route-flow article:last-child { border-right: 1px solid var(--line-dark); }

.route-flow article:not(:last-child)::after {
  border-right: 2px solid var(--red);
  border-top: 2px solid var(--red);
  content: "";
  height: 7px;
  position: absolute;
  right: -4px;
  top: 24px;
  transform: rotate(45deg);
  width: 7px;
  z-index: 2;
}

.route-flow article > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
}

.route-flow h3 {
  font-family: var(--font-display), sans-serif;
  font-size: 24px;
  line-height: 1;
  margin: 65px 0 10px;
  text-transform: uppercase;
}

.route-flow p {
  color: #858c8f;
  font-size: 11px;
  line-height: 1.45;
  margin: 0;
}

.north-section {
  background: var(--red);
  color: var(--white);
  padding: 95px 0;
}

.faq-section {
  background: var(--offwhite);
  padding: 115px 0 125px;
}

.faq-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.35fr .65fr;
  margin-top: 48px;
}

.faq-heading h2 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(58px, 7vw, 105px);
  line-height: .84;
  margin: 0;
}

.faq-heading h2 span { color: var(--red); }

.faq-heading > p {
  color: #5d6366;
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.faq-list {
  border-top: 2px solid var(--black);
  margin-top: 66px;
}

.faq-list details { border-bottom: 1px solid var(--line-light); }

.faq-list summary {
  align-items: center;
  cursor: pointer;
  display: grid;
  font-family: var(--font-display), sans-serif;
  font-size: 27px;
  font-weight: 700;
  gap: 25px;
  grid-template-columns: 45px 1fr 30px;
  list-style: none;
  padding: 27px 4px;
  text-transform: uppercase;
}

.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--red); font-family: var(--font-body), sans-serif; font-size: 9px; }
.faq-list summary b { color: var(--red); font-family: var(--font-body), sans-serif; font-size: 25px; justify-self: end; }
.faq-list details[open] summary b { transform: rotate(45deg); }

.faq-list details > p {
  color: #52585b;
  font-size: 15px;
  line-height: 1.7;
  margin: -4px 70px 0;
  max-width: 900px;
  padding: 0 0 30px;
}

.conversion-banner {
  background: var(--offwhite);
  border-bottom: 1px solid var(--line-light);
  padding: 92px 0;
}

.conversion-grid {
  align-items: center;
  display: grid;
  gap: 5vw;
  grid-template-columns: 1.25fr .65fr auto;
}

.conversion-grid > div:first-child > span {
  color: var(--red);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .15em;
}

.conversion-grid h2 {
  font-family: var(--font-display), Impact, sans-serif;
  font-size: clamp(48px, 5vw, 76px);
  line-height: .87;
  margin: 17px 0 0;
}

.conversion-grid h2 strong {
  color: var(--red);
  display: block;
}

.conversion-grid > p {
  color: #5d6366;
  font-size: 14px;
  line-height: 1.65;
  margin: 0;
}

.conversion-actions {
  align-items: stretch;
  display: grid;
  gap: 13px;
  min-width: 245px;
}

.button.dark { background: var(--black); color: var(--white); }
.button.dark:hover { background: var(--red); }

.conversion-actions > a:last-child {
  border: 1px solid var(--black);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  padding: 14px 18px;
  text-align: center;
  text-transform: uppercase;
}

.conversion-actions > a:last-child:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.north-grid {
  align-items: center;
  display: grid;
  gap: 5vw;
  grid-template-columns: 120px 1fr .55fr;
}

.north-mark {
  align-items: center;
  background: var(--black);
  display: flex;
  height: 110px;
  justify-content: center;
  width: 120px;
}

.north-mark .brand-mark { height: 72px; width: 88px; }
.north-grid .overline { color: rgba(255,255,255,.74); }
.north-grid .overline span { background: var(--white); }
.north-grid h2 { font-size: clamp(55px, 6vw, 92px); }
.north-grid h2 strong { color: var(--black); }

.north-grid > p {
  border-left: 1px solid rgba(255,255,255,.38);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  padding-left: 35px;
}

.contact-section {
  background: var(--coal);
  color: var(--white);
  padding: 130px 0;
}

.contact-grid {
  display: grid;
  gap: 10vw;
  grid-template-columns: 1fr .8fr;
}

.contact-grid h2 { font-size: clamp(68px, 8vw, 122px); }
.contact-grid h2 strong { color: var(--red); }

.contact-lede {
  color: #aeb3b5;
  font-size: 17px;
  line-height: 1.65;
  margin: 40px 0 0;
  max-width: 610px;
}

.contact-panel { border-top: 2px solid var(--red); }

.contact-panel > div {
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  gap: 25px;
  grid-template-columns: 90px 1fr;
  padding: 26px 0;
}

.contact-panel > div > span {
  color: var(--red);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
  padding-top: 6px;
}

.contact-panel a,
.contact-panel address {
  font-size: 18px;
  font-style: normal;
  line-height: 1.45;
}

.contact-panel > div a:hover { color: var(--red); }
.contact-panel .contact-button { margin-top: 28px; width: 100%; }

footer {
  background: var(--black);
  color: var(--white);
}

.footer-main {
  align-items: center;
  display: grid;
  gap: 50px;
  grid-template-columns: 1fr 1fr auto;
  min-height: 185px;
}

.footer-main > p {
  color: #82898c;
  font-size: 13px;
  line-height: 1.6;
  margin: 0;
  max-width: 410px;
}

.footer-top {
  border-bottom: 1px solid #777d80;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .1em;
  padding-bottom: 6px;
  text-transform: uppercase;
}

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  color: #6d7477;
  display: flex;
  font-size: 8px;
  font-weight: 700;
  justify-content: space-between;
  letter-spacing: .12em;
  padding-bottom: 27px;
  padding-top: 27px;
  text-transform: uppercase;
}

@media (max-width: 1120px) {
  .nav-shell { grid-template-columns: 1fr auto; }
  .desktop-nav, .header-cta { display: none; }
  .mobile-menu { display: block; justify-self: end; position: relative; }
  .mobile-menu summary {
    background: var(--red);
    cursor: pointer;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .12em;
    list-style: none;
    padding: 13px 16px;
    text-transform: uppercase;
  }
  .mobile-menu nav {
    background: var(--black);
    border: 1px solid #3d4244;
    display: grid;
    min-width: 220px;
    position: absolute;
    right: 0;
    top: 45px;
  }
  .mobile-menu nav a { border-bottom: 1px solid #33383a; font-size: 12px; padding: 16px; }
  .hero { min-height: 720px; }
  .hero-content { min-height: 610px; }
  .hero h1 { font-size: clamp(70px, 10vw, 115px); max-width: 820px; }
  .action-grid { grid-template-columns: 1.25fr .75fr; }
  .equipment-card.large { grid-template-columns: 1.1fr .9fr; }
  .route-flow.six { grid-template-columns: repeat(3, 1fr); }
  .route-flow.six article:nth-child(n+4) { border-top: 1px solid var(--line-dark); }
  .route-flow.four { grid-template-columns: repeat(2, 1fr); }
  .route-flow.four article:nth-child(n+3) { border-top: 1px solid var(--line-dark); }
  .north-grid { grid-template-columns: 100px 1fr; }
  .north-grid > p { grid-column: 2; }
  .conversion-grid { grid-template-columns: 1fr 1fr; }
  .conversion-actions { grid-column: 2; }
  .faq-heading { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .utility-bar { display: none; }
  .nav-shell { min-height: 82px; padding: 0 20px; }
  .brand { gap: 8px; }
  .brand-mark { height: 44px; width: 55px; }
  .brand-type strong { font-size: 19px; }
  .brand-type strong b { display: none; }
  .brand-type small { font-size: 6px; letter-spacing: .13em; }
  .hero { background-position: 62% center; min-height: 710px; }
  .hero::before {
    background: linear-gradient(90deg, rgba(3,4,5,.94), rgba(3,4,5,.54)), linear-gradient(0deg, rgba(3,4,5,.96) 0%, rgba(3,4,5,.15) 52%);
  }
  .hero-content { align-content: start; min-height: 590px; padding-bottom: 125px; padding-top: 80px; }
  .hero h1 { font-size: clamp(58px, 18vw, 82px); line-height: .86; }
  .hero-copy { font-size: 15px; line-height: 1.5; margin-top: 25px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 19px; margin-top: 28px; }
  .hero-rail { grid-template-columns: 1fr 1fr; min-height: 120px; }
  .hero-rail div { gap: 4px; min-height: 60px; padding: 10px 20px; }
  .hero-rail div:nth-child(2) { border-right: 0; }
  .hero-rail div:nth-child(n+3) { border-top: 1px solid rgba(255,255,255,.16); }
  .hero-rail span { font-size: 11px; }
  .impact-strip { grid-template-columns: 1fr 32px 1fr; min-height: 70px; padding: 0 20px; }
  .impact-strip span { display: none; }
  .impact-strip strong { font-size: 23px; }
  .crushing-section, .services-section { padding-bottom: 85px; padding-top: 80px; }
  .equipment-section, .process-section, .contact-section { padding-bottom: 85px; padding-top: 80px; }
  .crushing-heading, .equipment-heading, .services-title, .process-title { gap: 30px; grid-template-columns: 1fr; margin-top: 38px; }
  .crushing-heading h2, .equipment-heading h2, .services-title h2, .process-title h2 { font-size: 57px; }
  .action-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .action-image { min-height: 330px; }
  .action-image img { object-position: 69% center; }
  .action-stat { min-height: 350px; padding: 32px; }
  .equipment-grid { grid-template-columns: 1fr; margin-top: 50px; }
  .equipment-card.large { display: block; grid-column: auto; }
  .equipment-card.large .equipment-photo, .equipment-photo { min-height: 280px; }
  .equipment-card.large .equipment-copy, .equipment-copy { padding: 28px; }
  .equipment-copy h3 { font-size: 34px; margin-top: 35px; }
  .service-list { margin-top: 50px; }
  .service-list article { align-items: start; gap: 10px 20px; grid-template-columns: 35px 1fr 22px; min-height: 0; padding: 23px 0; }
  .service-list article:hover { padding-inline: 12px; }
  .service-list h3 { font-size: 26px; }
  .service-list p { grid-column: 2 / -1; }
  .service-list svg { grid-column: 3; grid-row: 1; }
  .route-block { gap: 28px; grid-template-columns: 1fr; margin-top: 45px; }
  .route-label { align-items: center; display: flex; gap: 16px; }
  .route-label span { margin-top: 0; max-width: none; }
  .route-flow.six, .route-flow.four { grid-template-columns: 1fr; }
  .route-flow article, .route-flow.six article:nth-child(n+4), .route-flow.four article:nth-child(n+3) { border: 1px solid var(--line-dark); border-bottom: 0; min-height: 130px; }
  .route-flow article:last-child { border-bottom: 1px solid var(--line-dark); }
  .route-flow article:not(:last-child)::after { bottom: -4px; right: 25px; top: auto; transform: rotate(135deg); }
  .route-flow h3 { margin-top: 32px; }
  .north-section { padding: 75px 0; }
  .north-grid { gap: 35px; grid-template-columns: 1fr; }
  .north-mark { height: 90px; width: 100px; }
  .north-grid h2 { font-size: 56px; }
  .north-grid > p { border-left: 0; border-top: 1px solid rgba(255,255,255,.38); grid-column: 1; padding-left: 0; padding-top: 25px; }
  .conversion-banner { padding: 75px 0; }
  .conversion-grid { gap: 30px; grid-template-columns: 1fr; }
  .conversion-grid h2 { font-size: 53px; }
  .conversion-actions { grid-column: 1; }
  .faq-section { padding: 80px 0 85px; }
  .faq-heading { gap: 28px; grid-template-columns: 1fr; margin-top: 36px; }
  .faq-heading h2 { font-size: 56px; }
  .faq-list { margin-top: 45px; }
  .faq-list summary { font-size: 22px; gap: 13px; grid-template-columns: 28px 1fr 22px; padding: 22px 0; }
  .faq-list details > p { font-size: 14px; margin: 0 0 0 41px; padding-bottom: 25px; }
  .contact-grid { gap: 55px; grid-template-columns: 1fr; }
  .contact-grid h2 { font-size: 67px; }
  .contact-panel > div { grid-template-columns: 1fr; }
  .contact-panel a, .contact-panel address { font-size: 16px; }
  .footer-main { align-items: start; grid-template-columns: 1fr; min-height: 0; padding-bottom: 60px; padding-top: 60px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .equipment-photo img { transition: none; }
}
