:root {
  --torox-red: #e52b20;
  --torox-black: #0b0d0e;
  --torox-charcoal: #15191c;
  --torox-grey: #6e7478;
  --torox-soft: #f2f2f0;
  --torox-white: #fff;
  --torox-border: #dadcdd;
  --container: 1500px;
  --gutter: clamp(20px, 4vw, 64px);
  --section: clamp(72px, 8vw, 140px);
  --sans: Arial, Helvetica, sans-serif;
  --serif: Georgia, 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--torox-white); color: var(--torox-black); font-family: var(--sans); line-height: 1.45; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font: inherit; }
.screen-reader-text { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.torox-container { width: min(calc(100% - (var(--gutter) * 2)), var(--container)); margin-inline: auto; }

.site-header { position: fixed; inset: 0 0 auto 0; z-index: 100; color: #fff; transition: background .25s ease, backdrop-filter .25s ease; }
.site-header.is-scrolled { background: rgba(10,13,15,.92); backdrop-filter: blur(12px); }
.site-header__inner { min-height: 92px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 36px; }
.brand { display: inline-flex; flex-direction: column; line-height: .82; font-weight: 800; letter-spacing: .06em; }
.brand__wordmark { font-size: 34px; }
.brand__wordmark span { color: var(--torox-red); }
.brand small { margin-top: 7px; font-size: 9px; letter-spacing: .5em; }
.custom-logo { max-height: 58px; width: auto; }
.primary-nav { justify-self: center; }
.primary-nav__menu, .footer-nav { list-style: none; margin: 0; padding: 0; display: flex; gap: clamp(18px, 2vw, 40px); align-items: center; }
.primary-nav a { color: #fff; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.nav-toggle { display: none; background: transparent; color: #fff; border: 0; }
.nav-toggle span:not(.screen-reader-text) { display: block; width: 28px; height: 2px; background: currentColor; margin: 6px 0; }

.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 26px; border: 1px solid transparent; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; font-weight: 800; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button--primary { color: #fff; background: var(--torox-red); }
.button--ghost { color: #fff; border-color: rgba(255,255,255,.7); background: rgba(0,0,0,.15); }
.text-link { display: inline-flex; gap: 10px; align-items: center; text-transform: uppercase; font-weight: 800; font-size: 12px; letter-spacing: .08em; border-bottom: 2px solid var(--torox-red); padding-bottom: 5px; }

.home-hero, .machine-hero, .page-hero { position: relative; min-height: 100svh; overflow: hidden; color: #fff; background: #101315; }
.home-hero__media, .machine-hero__media, .page-hero__media { position: absolute; inset: 0; }
.home-hero__media img, .home-hero__media video, .machine-hero__media img, .page-hero__media img { width: 100%; height: 100%; object-fit: cover; }
.home-hero__shade, .machine-hero__shade, .page-hero__shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.25) 55%, rgba(0,0,0,.08) 100%); }
.home-hero__content, .machine-hero__content, .page-hero__content { position: relative; z-index: 2; min-height: 100svh; display: flex; flex-direction: column; justify-content: center; align-items: flex-start; padding-top: 100px; }
.home-hero h1, .machine-hero h1, .page-hero h1 { max-width: 880px; margin: 12px 0 18px; font-family: var(--serif); font-size: clamp(58px, 7vw, 112px); font-weight: 400; letter-spacing: -.045em; line-height: .95; }
.home-hero__intro, .machine-hero__intro { max-width: 620px; margin: 0 0 28px; font-size: clamp(18px, 1.7vw, 26px); }
.home-hero__scroll { position: absolute; z-index: 3; left: var(--gutter); bottom: 34px; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.eyebrow { margin: 0; font-size: 11px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow::before { content: ''; display: inline-block; width: 28px; height: 3px; margin-right: 14px; vertical-align: middle; background: var(--torox-red); }
.eyebrow--dark { color: #565c60; }

.section { padding-block: var(--section); }
.section--light { background: #fff; }
.section--soft { background: var(--torox-soft); }
.split-heading { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 8vw, 140px); align-items: start; margin-bottom: 50px; }
.split-heading h2, .featured-machine h2, .machine-cta h2 { margin: 14px 0 0; font-size: clamp(42px, 5vw, 78px); line-height: .98; letter-spacing: -.04em; font-weight: 500; }
.split-heading__copy { max-width: 680px; font-size: 18px; }

.card-grid { display: grid; gap: 10px; }
.card-grid--2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.image-card { position: relative; min-height: 360px; overflow: hidden; background: #202427; color: #fff; }
.image-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.image-card:hover img { transform: scale(1.035); }
.image-card__shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.72), transparent 65%); }
.image-card__content { position: absolute; inset: auto 26px 24px; display: flex; justify-content: space-between; align-items: end; gap: 20px; font-family: var(--serif); font-size: clamp(26px, 2.5vw, 40px); }

.featured-machine { position: relative; overflow: hidden; min-height: 680px; color: #fff; background: #0a0c0d; }
.featured-machine__media, .featured-machine__shade { position: absolute; inset: 0; }
.featured-machine__media img { width: 100%; height: 100%; object-fit: cover; }
.featured-machine__shade { background: linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.4) 55%, rgba(0,0,0,.6)); }
.featured-machine__inner { position: relative; min-height: 680px; display: grid; grid-template-columns: 1fr .35fr; align-items: center; gap: 60px; }
.featured-machine__strapline, .machine-hero__strapline { font-size: clamp(22px, 2vw, 34px); margin: 18px 0 26px; }
.spec-stack { justify-self: end; width: min(100%, 300px); }
.spec-stack__item { padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.32); }
.spec-stack strong, .spec-bar__item strong { display: block; font-size: clamp(36px, 4vw, 60px); line-height: 1; }
.spec-stack span, .spec-bar__item span { display: block; margin-top: 8px; text-transform: uppercase; letter-spacing: .12em; font-size: 10px; }

.article-card, .machine-card { background: #fff; border: 1px solid var(--torox-border); }
.article-card img, .machine-card img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.article-card__body, .machine-card__body { padding: 24px; }
.article-card time { font-size: 10px; text-transform: uppercase; letter-spacing: .12em; color: #7b8083; }
.article-card h3, .machine-card h2 { margin: 12px 0 18px; font-size: 22px; }

.page-hero--compact { min-height: 480px; }
.page-hero--compact .torox-container { min-height: 480px; padding-top: 160px; }
.archive-page .page-hero--compact { display: flex; align-items: end; background: var(--torox-charcoal); }
.archive-page .page-hero--compact h1 { font-family: var(--serif); font-size: clamp(60px, 8vw, 110px); margin: 12px 0; font-weight: 400; }

.machine-hero h1 { font-size: clamp(54px, 6vw, 94px); }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.spec-bar { color: #fff; background: #0c0f10; }
.spec-bar__grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); }
.spec-bar__item { min-height: 150px; padding: 34px; border-right: 1px solid rgba(255,255,255,.18); display: flex; flex-direction: column; justify-content: center; }
.machine-overview__grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(40px, 6vw, 100px); align-items: center; }
.prose { font-size: 18px; }
.prose h2 { font-family: var(--serif); font-size: clamp(42px, 5vw, 72px); line-height: 1; font-weight: 400; letter-spacing: -.04em; }
.prose--wide { max-width: 980px; }
.video-panel { position: relative; min-height: 420px; background: #111; }
.video-panel img { width: 100%; height: 100%; object-fit: cover; }
.video-panel__play { position: absolute; inset: 50% auto auto 50%; translate: -50% -50%; width: 88px; height: 88px; border: 1px solid #fff; border-radius: 50%; display: grid; place-items: center; font-size: 28px; }
.machine-gallery__track { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(320px, 1fr); overflow-x: auto; gap: 8px; }
.machine-gallery img { width: 100%; aspect-ratio: 1.5; object-fit: cover; }
.machine-data__grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: clamp(30px, 5vw, 80px); }
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0 22px; }
.spec-table th, .spec-table td { padding: 14px 16px; border: 1px solid var(--torox-border); text-align: left; }
.spec-table th { width: 46%; font-weight: 600; background: #f7f7f6; }
.feature-list, .option-list { list-style: none; padding: 0; margin: 18px 0 0; }
.feature-list li, .option-list li { padding: 10px 0 10px 28px; position: relative; }
.feature-list li::before { content: '✓'; color: var(--torox-red); position: absolute; left: 0; font-weight: 900; }
.option-list li::before { content: '+'; position: absolute; left: 0; font-weight: 900; }
.machine-cta { color: #fff; background: #111517; }
.machine-cta__inner { display: flex; justify-content: space-between; gap: 40px; align-items: center; }

.site-footer { padding: 70px 0 24px; color: #fff; background: #0b0e0f; }
.site-footer__top { display: grid; grid-template-columns: 1fr auto auto; gap: 50px; align-items: center; }
.site-footer__strapline { max-width: 260px; text-transform: uppercase; letter-spacing: .18em; font-size: 10px; }
.site-footer__bottom { margin-top: 60px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.14); color: #a4aaad; }
.footer-nav a { font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

/* WooCommerce base styling — intentionally restrained for v0.1. */
.torox-shop { padding: 150px 0 100px; background: #f7f7f5; }
.woocommerce ul.products { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 26px; }
.woocommerce ul.products::before, .woocommerce ul.products::after { display: none; }
.woocommerce ul.products li.product { width: auto !important; margin: 0 !important; float: none !important; background: #fff; padding-bottom: 22px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title, .woocommerce ul.products li.product .price { padding-inline: 20px; }
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button { border-radius: 0; background: var(--torox-red); color: #fff; text-transform: uppercase; letter-spacing: .08em; font-size: 12px; }

@media (max-width: 980px) {
  .site-header__inner { grid-template-columns: auto auto auto; }
  .nav-toggle { display: block; justify-self: end; }
  .primary-nav { display: none; position: fixed; inset: 92px 0 auto 0; padding: 30px var(--gutter); background: rgba(10,13,15,.98); }
  .primary-nav.is-open { display: block; }
  .primary-nav__menu { align-items: stretch; flex-direction: column; gap: 0; }
  .primary-nav a { display: block; padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
  .header-enquire { justify-self: end; }
  .split-heading, .machine-overview__grid, .machine-data__grid, .featured-machine__inner, .site-footer__top { grid-template-columns: 1fr; }
  .spec-stack { justify-self: start; }
  .card-grid--3 { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .spec-bar__grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .woocommerce ul.products { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (max-width: 640px) {
  .site-header__inner { min-height: 76px; gap: 12px; }
  .custom-logo { max-height: 42px; }
  .brand__wordmark { font-size: 27px; }
  .brand small { font-size: 7px; }
  .header-enquire { min-height: 42px; padding: 0 13px; font-size: 10px; }
  .home-hero h1 { font-size: clamp(52px, 16vw, 78px); }
  .card-grid--2, .card-grid--3, .spec-bar__grid, .woocommerce ul.products { grid-template-columns: 1fr; }
  .image-card { min-height: 300px; }
  .machine-cta__inner { align-items: flex-start; flex-direction: column; }
  .site-footer__top { align-items: start; }
  .footer-nav { flex-wrap: wrap; }
}

/* v0.2 — TOROX brand system + homepage composition */
:root{
 --torox-orange:#F39200;
 --torox-black:#111111;
 --torox-ink:#17191b;
 --torox-soft:#f3f3f1;
 --torox-white:#fff;
 --torox-line:rgba(17,17,17,.14);
 --torox-display:"Bolts SF","Arial Black","Arial Narrow",sans-serif;
 --torox-secondary:Rockwell,"Rockwell Nova","Roboto Slab",Georgia,serif;
 --torox-body:Inter,Arial,Helvetica,sans-serif;
}
body{font-family:var(--torox-body);color:var(--torox-black)}
h1,h2{font-family:var(--torox-secondary);font-weight:400;letter-spacing:-.035em}
h3,.eyebrow,.button,.primary-nav,.image-card__content strong,.spec-stack{font-family:var(--torox-display)}
.button--primary{background:var(--torox-orange)!important;color:#111!important;border-color:var(--torox-orange)!important}
.button--primary:hover{background:#fff!important;border-color:#fff!important}
.text-link,.eyebrow:before{color:var(--torox-orange)}
.eyebrow:before{background:var(--torox-orange)!important}
.home-hero{min-height:calc(100svh - 0px);background:#0c0f10}
.home-hero__media img,.home-hero__media video{width:100%;height:100%;object-fit:cover}
.home-hero__shade{background:linear-gradient(90deg,rgba(5,7,8,.78) 0%,rgba(5,7,8,.48) 38%,rgba(5,7,8,.08) 72%),linear-gradient(0deg,rgba(5,7,8,.45),transparent 45%)}
.home-hero__content{padding-top:18vh;max-width:1440px}
.home-hero h1{font-size:clamp(3.6rem,6.3vw,7rem);max-width:780px;line-height:.94}
.home-hero__intro{font-size:clamp(1rem,1.35vw,1.3rem);max-width:520px;line-height:1.45;margin:1.5rem 0 2rem}
.site-header{background:linear-gradient(180deg,rgba(8,11,12,.72),transparent);border-bottom:0}
.site-header.is-scrolled{background:rgba(17,17,17,.96)}
.brand__wordmark span{color:var(--torox-orange)!important}
.intro-machinery{padding-top:clamp(5rem,8vw,8rem)}
.split-heading{align-items:end;margin-bottom:3rem}
.split-heading h2,.applications-copy h2,.knowledge-copy h2{font-size:clamp(2.7rem,4.5vw,5rem);line-height:1}
.image-card{min-height:330px;background:#222;overflow:hidden}
.image-card img{transition:transform .55s ease}
.image-card:hover img{transform:scale(1.035)}
.image-card__content{align-items:end;font-size:1.25rem}
.image-card__content small{display:block;font-family:var(--torox-body);font-size:.8rem;font-weight:400;line-height:1.35;margin-top:.45rem;max-width:240px}
.image-card--placeholder{background:linear-gradient(135deg,#25282a,#111)}
.featured-machine{min-height:620px;background:#101213}
.featured-machine--empty{min-height:460px;background:radial-gradient(circle at 70% 50%,#282b2c 0,#111 55%)}
.featured-machine__inner h2{font-family:var(--torox-display);font-size:clamp(3rem,5vw,5.5rem);letter-spacing:-.02em}
.spec-stack__item strong{font-size:clamp(2.4rem,4vw,4.2rem)}
.applications-layout,.knowledge-layout{display:grid;grid-template-columns:minmax(260px,.72fr) minmax(0,1.8fr);gap:4rem;align-items:center}
.applications-copy p,.knowledge-copy p{max-width:410px;line-height:1.65}
.knowledge-section{padding-top:6rem;padding-bottom:6rem}
.article-card--placeholder .article-card__image{aspect-ratio:16/9;background:linear-gradient(135deg,#d8d6d0,#aaa69e)}
.shop-teaser{background:var(--torox-orange);color:#111;padding:5.5rem 0}
.shop-teaser__inner{display:flex;align-items:end;justify-content:space-between;gap:3rem}
.shop-teaser h2{font-family:var(--torox-display);font-size:clamp(3rem,5vw,5.6rem);line-height:.92;margin:.6rem 0 1rem}
.shop-teaser .eyebrow:before{background:#111!important}.shop-teaser .eyebrow{color:#111}
.button--outline{border:1px solid #111;color:#111;background:transparent}
.button--outline:hover{background:#111;color:#fff}
.setup-hint{opacity:.6;font-size:.85rem}
@media(max-width:900px){.applications-layout,.knowledge-layout{grid-template-columns:1fr;gap:2.5rem}.shop-teaser__inner{align-items:flex-start;flex-direction:column}.home-hero__content{padding-top:24vh}.image-card{min-height:270px}}

/* v0.3 — brand accuracy + full navigation */
:root {
  --torox-orange: #F39200;
  --torox-black: #111111;
  --torox-charcoal: #1b1d1f;
  --torox-grey: #71767a;
  --torox-soft: #f3f3f1;
  --torox-white: #ffffff;
  --torox-border: #d9dcde;
  --torox-red: var(--torox-orange); /* legacy alias retained for older component rules */
  --torox-display: "Bolts SF", "Arial Black", "Arial Narrow", Arial, sans-serif;
  --torox-secondary: Rockwell, "Rockwell Nova", "Roboto Slab", Georgia, serif;
  --torox-body: Arial, Helvetica, sans-serif;
}

/* WordPress Custom Logo + TOROX fallback lockup */
.brand { color: #fff; flex: 0 0 auto; }
.brand__logo { display: block; line-height: 0; }
.brand__logo .custom-logo-link { display: block; }
.brand__logo .custom-logo { width: auto; height: auto; max-width: 190px; max-height: 64px; object-fit: contain; }
.brand__fallback { display: inline-flex; flex-direction: column; align-items: flex-start; line-height: .78; }
.brand__wordmark { font-family: var(--torox-display); font-size: 34px; font-weight: 900; letter-spacing: .02em; }
.brand__x { color: var(--torox-orange); }
.brand__descriptor { margin-top: 9px; padding-left: 2px; font-family: var(--torox-body); font-size: 8px; font-weight: 700; letter-spacing: .52em; }
.brand--footer .brand__logo .custom-logo { max-width: 210px; }

/* Header proportions modelled on the approved visual. */
.site-header__inner { min-height: 96px; grid-template-columns: minmax(190px,auto) 1fr auto; gap: clamp(24px,3vw,52px); }
.primary-nav { width: 100%; }
.primary-nav__menu { justify-content: center; }
.primary-nav__menu > li { position: relative; }
.primary-nav__menu > li > a { position: relative; display: flex; align-items: center; min-height: 96px; padding: 0 2px; font-family: var(--torox-display); font-size: 12px; font-weight: 700; letter-spacing: .055em; }
.primary-nav__menu > li > a::after { content: ''; position: absolute; left: 0; right: 100%; bottom: 27px; height: 2px; background: var(--torox-orange); transition: right .2s ease; }
.primary-nav__menu > li:hover > a::after,
.primary-nav__menu > li.current-menu-item > a::after,
.primary-nav__menu > li.current-menu-ancestor > a::after { right: 0; }
.primary-nav__menu > .menu-item-has-children > a { gap: 8px; }
.primary-nav__menu > .menu-item-has-children > a::before { content: ''; order: 2; width: 6px; height: 6px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor; transform: rotate(45deg) translateY(-2px); opacity: .75; }

/* Desktop dropdowns */
.primary-nav .sub-menu { position: absolute; top: calc(100% - 16px); left: -24px; z-index: 120; min-width: 270px; margin: 0; padding: 14px 0; list-style: none; background: rgba(17,17,17,.98); border-top: 3px solid var(--torox-orange); box-shadow: 0 18px 46px rgba(0,0,0,.25); opacity: 0; visibility: hidden; transform: translateY(8px); transition: opacity .18s ease, transform .18s ease, visibility .18s; }
.primary-nav li:hover > .sub-menu,
.primary-nav li:focus-within > .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.primary-nav .sub-menu li { margin: 0; }
.primary-nav .sub-menu a { display: flex; justify-content: space-between; gap: 20px; padding: 12px 24px; color: #fff; font-family: var(--torox-body); font-size: 13px; font-weight: 600; text-transform: none; letter-spacing: 0; border: 0; }
.primary-nav .sub-menu a:hover { color: var(--torox-orange); background: rgba(255,255,255,.04); }
.primary-nav .sub-menu__all { margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.12); }
.primary-nav .sub-menu__all a { color: var(--torox-orange); font-family: var(--torox-display); text-transform: uppercase; letter-spacing: .05em; font-size: 11px; }
.header-enquire { font-family: var(--torox-display); min-width: 126px; }
.button--primary { background: var(--torox-orange) !important; color: var(--torox-black) !important; border-color: var(--torox-orange) !important; }
.button--primary:hover { background: #fff !important; border-color: #fff !important; }

/* Make the brand orange the only hot accent in content. */
.eyebrow::before,
.text-link,
.feature-list li::before { color: var(--torox-orange); }
.eyebrow::before { background: var(--torox-orange); }
.text-link { border-bottom-color: var(--torox-orange); }
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button { background: var(--torox-orange); color: var(--torox-black); }

.site-footer__brand { display: flex; align-items: center; gap: 34px; }
.site-footer__strapline { margin: 0; padding-left: 34px; border-left: 1px solid rgba(255,255,255,.28); max-width: 250px; color: #fff; }

@media (max-width: 1100px) {
  .primary-nav__menu { gap: 18px; }
  .primary-nav__menu > li > a { font-size: 11px; }
  .site-header__inner { grid-template-columns: auto 1fr auto; gap: 20px; }
  .brand__logo .custom-logo { max-width: 165px; }
}

@media (max-width: 980px) {
  .site-header__inner { min-height: 80px; grid-template-columns: auto 1fr auto; }
  .brand__logo .custom-logo { max-height: 52px; max-width: 155px; }
  .nav-toggle { display: block; justify-self: end; order: 2; }
  .header-enquire { order: 3; }
  .primary-nav { position: fixed; inset: 80px 0 0 0; display: none; overflow-y: auto; padding: 18px var(--gutter) 34px; background: rgba(17,17,17,.99); }
  .primary-nav.is-open { display: block; }
  .primary-nav__menu { display: block; }
  .primary-nav__menu > li { border-bottom: 1px solid rgba(255,255,255,.13); }
  .primary-nav__menu > li > a { min-height: auto; padding: 18px 0; font-size: 13px; }
  .primary-nav__menu > li > a::after,
  .primary-nav__menu > .menu-item-has-children > a::before { display: none; }
  .primary-nav .sub-menu { position: static; display: block; min-width: 0; padding: 0 0 12px 14px; border-top: 0; box-shadow: none; background: transparent; opacity: 1; visibility: visible; transform: none; }
  .primary-nav .sub-menu a { padding: 9px 0; color: #c9cdcf; }
  .primary-nav .sub-menu__all { border: 0; margin: 4px 0 0; padding: 0; }
  body.nav-open { overflow: hidden; }
  .site-footer__brand { align-items: flex-start; flex-direction: column; gap: 22px; }
  .site-footer__strapline { padding: 0; border: 0; }
}

@media (max-width: 640px) {
  .site-header__inner { min-height: 74px; }
  .primary-nav { inset-top: 74px; }
  .brand__logo .custom-logo { max-width: 135px; max-height: 44px; }
  .brand__wordmark { font-size: 28px; }
  .brand__descriptor { font-size: 6px; }
  .header-enquire { min-width: 0; }
}

/* =========================================================
   TOROX v0.5 — Typography hierarchy + About TOROX
   Bolts SF = impact / major display headlines
   Rockwell = navigation / eyebrow / buttons / labels / secondary headings
   Sans-serif = body copy and technical information
   ========================================================= */

:root {
  --torox-display: "Bolts SF", "Arial Black", Impact, sans-serif;
  --torox-secondary: Rockwell, "Rockwell Nova", "Roboto Slab", Georgia, serif;
  --torox-body: Arial, Helvetica, sans-serif;
  --torox-orange: #F39200;
  --torox-black: #111111;
}

body { font-family: var(--torox-body); }

/* Primary display moments only. */
.home-hero h1,
.machine-hero h1,
.about-hero h1,
.hero-display,
.display-heading {
  font-family: var(--torox-display);
  font-weight: normal;
  letter-spacing: -.025em;
}

/* Everyday TOROX brand voice. */
.primary-nav__menu > li > a,
.primary-nav .sub-menu a,
.footer-nav a,
.eyebrow,
.button,
.text-link,
.machine-spec__label,
.spec-label,
.card-kicker,
.article-meta,
.shop-teaser .eyebrow {
  font-family: var(--torox-secondary);
  font-weight: 700;
  letter-spacing: .035em;
}

/* Keep section titles refined rather than shouting. */
.home-section h2,
.about-page h2,
.about-page h3,
.archive-title,
.card-title:not(.machine-model),
.section-heading {
  font-family: var(--torox-secondary);
}

/* Navigation refinements now that Rockwell is in use. */
.primary-nav__menu > li > a {
  font-size: 13px;
  letter-spacing: .025em;
  font-weight: 700;
}
.primary-nav .sub-menu a { font-size: 13px; letter-spacing: .01em; text-transform: none; }
.button { letter-spacing: .025em; }
.eyebrow { letter-spacing: .11em; }

/* ABOUT TOROX */
.about-page { background: #fff; }
.section-pad { padding-block: clamp(76px, 8vw, 138px); }
.section-dark { background: var(--torox-black); color: #fff; }

.about-hero {
  position: relative;
  min-height: min(82svh, 900px);
  display: flex;
  align-items: flex-end;
  color: #fff;
  background-color: #171a1c;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.about-hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.38) 52%, rgba(0,0,0,.12) 100%),
    linear-gradient(0deg, rgba(0,0,0,.42) 0%, rgba(0,0,0,0) 48%);
}
.about-hero__inner { position: relative; z-index: 2; padding-top: 160px; padding-bottom: clamp(70px, 9vw, 130px); }
.about-hero h1 { max-width: 950px; margin: .18em 0 .18em; font-size: clamp(64px, 8vw, 138px); line-height: .85; }
.about-hero__intro { max-width: 720px; margin: 0; font-size: clamp(18px, 1.65vw, 27px); line-height: 1.45; }
.eyebrow--light { color: #fff; }

.about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(54px, 9vw, 150px);
  align-items: start;
}
.about-intro h2,
.about-purpose h2,
.about-mission h2,
.about-values h2,
.about-cta h2 {
  margin: .25em 0 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 500;
}
.about-intro__copy { max-width: 720px; font-size: clamp(17px, 1.25vw, 21px); line-height: 1.72; }
.about-intro__copy p:first-child { margin-top: 0; }
.about-intro__copy strong { color: var(--torox-orange); }

.about-story-media { position: relative; min-height: clamp(520px, 62vw, 900px); overflow: hidden; background: #111; color: #fff; }
.about-story-media__image { width: 100%; height: 100%; min-height: inherit; object-fit: cover; }
.about-story-media::after { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.03) 65%); pointer-events: none; }
.about-story-media__statement { position: absolute; z-index: 2; left: 50%; bottom: clamp(44px, 6vw, 90px); transform: translateX(-50%); }
.about-story-media__statement p { max-width: 680px; margin: 0; font-family: var(--torox-display); font-size: clamp(48px, 6.5vw, 106px); line-height: .9; }
.about-story-media--placeholder { background: var(--torox-orange); color: #111; }
.about-story-media--placeholder::after { display: none; }
.about-story-media__placeholder { min-height: inherit; display: flex; flex-direction: column; justify-content: center; }
.about-story-media__placeholder p { font-size: 15px; opacity: .65; }
.about-bull-mark { font-family: var(--torox-display); font-size: clamp(100px, 25vw, 430px); line-height: .65; opacity: .13; }

.about-purpose__grid { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr); gap: clamp(50px, 8vw, 130px); align-items: center; }
.about-purpose__copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 34px; font-size: clamp(17px, 1.3vw, 21px); line-height: 1.7; }
.about-purpose__image { min-height: 560px; overflow: hidden; background: #e7e5e0; }
.about-purpose__image img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.about-purpose__placeholder { min-height: 560px; display: grid; place-items: center; background: linear-gradient(135deg,#ddd8cf,#aaa69e); color: #555; }

.about-mission__grid { display: grid; grid-template-columns: 1fr .8fr; gap: clamp(50px, 9vw, 160px); align-items: end; }
.about-mission__grid > p { max-width: 650px; margin: 0 0 6px; font-size: clamp(20px, 1.7vw, 28px); line-height: 1.55; color: rgba(255,255,255,.82); }
.about-mission h2 { color: #fff; }

.about-values__heading { max-width: 850px; margin-bottom: clamp(46px, 6vw, 82px); }
.about-values__grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid #d9d9d6; border-bottom: 1px solid #d9d9d6; }
.about-value { min-height: 310px; padding: 38px clamp(22px, 2.5vw, 42px) 42px; border-right: 1px solid #d9d9d6; }
.about-value:first-child { border-left: 1px solid #d9d9d6; }
.about-value__number { display: block; margin-bottom: 68px; font-family: var(--torox-secondary); font-size: 12px; font-weight: 700; color: var(--torox-orange); }
.about-value h3 { margin: 0 0 13px; font-size: 30px; }
.about-value p { margin: 0; line-height: 1.6; color: #555a5d; }

.about-editorial { padding-top: 0; }
.prose { max-width: 900px; font-size: 18px; line-height: 1.75; }
.prose h2, .prose h3 { margin-top: 1.5em; }

.about-cta { background: #15191c; color: #fff; }
.about-cta__inner { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; }
.about-cta h2 { color: #fff; }
.about-cta p:not(.eyebrow) { max-width: 620px; margin-bottom: 0; color: rgba(255,255,255,.72); font-size: 18px; }

@media (max-width: 980px) {
  .about-intro__grid,
  .about-purpose__grid,
  .about-mission__grid { grid-template-columns: 1fr; }
  .about-purpose__image, .about-purpose__image img, .about-purpose__placeholder { min-height: 420px; }
  .about-values__grid { grid-template-columns: repeat(2,1fr); }
  .about-value:nth-child(3) { border-left: 1px solid #d9d9d6; }
  .about-value:nth-child(-n+2) { border-bottom: 1px solid #d9d9d6; }
}

@media (max-width: 700px) {
  .about-hero { min-height: 72svh; }
  .about-hero__inner { padding-top: 130px; }
  .about-hero h1 { font-size: clamp(54px, 17vw, 82px); }
  .about-values__grid { grid-template-columns: 1fr; }
  .about-value { min-height: auto; border-left: 1px solid #d9d9d6; border-bottom: 1px solid #d9d9d6; }
  .about-value:last-child { border-bottom: 0; }
  .about-value__number { margin-bottom: 34px; }
  .about-cta__inner { flex-direction: column; align-items: flex-start; }
}




/* v0.5.2 — hero typography refinement */
.home-hero__content {
  max-width: 1500px;
}

.home-hero h1 {
  font-family: var(--torox-display);
  font-size: clamp(4rem, 5.3vw, 6.8rem);
  line-height: 1.06;
  letter-spacing: 0;
  max-width: 1380px;
  font-weight: normal;
  text-wrap: balance;
}

.home-hero .eyebrow {
  font-family: var(--torox-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .07em;
}

@media (max-width: 1100px) {
  .home-hero h1 {
    font-size: clamp(3.7rem, 7.5vw, 5.8rem);
    max-width: 1000px;
  }
}

@media (max-width: 700px) {
  .home-hero h1 {
    font-size: clamp(3rem, 13.5vw, 4.8rem);
    line-height: 1.02;
    max-width: 100%;
    text-wrap: pretty;
  }
}


/* v0.5.3 — Bolts SF native-weight correction */
.home-hero h1,
.machine-hero h1,
.about-hero h1,
.hero-display,
.display-heading {
  font-family: var(--torox-display);
  font-weight: normal;
}

.home-hero h1 {
  font-size: clamp(4rem, 5.3vw, 6.8rem);
  line-height: 1.06;
  letter-spacing: .01em;
  max-width: 1380px;
}
