/* ==========================================================================
   PT Asai Metal
   Tooling · Metal Stamping · Industrial Automation
   Design: technical document. White paper, hairline rules, hard edges,
   red used as a marking colour only.
   ========================================================================== */

/* --- Tokens ------------------------------------------------------------- */
:root {
  --black:      #111111;
  --ink:        #1A1A1A;
  --paper:      #FFFFFF;
  --paper-2:    #F4F4F4;
  --rule:       #D5D5D5;
  --rule-dark:  #333333;
  --muted:      #5E5E5E;
  --muted-2:    #9B9B9B;
  --red:        #FE0000;   /* matches the logo */
  --red-dk:     #C10000;   /* for small text and links on white */

  --font-display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --font-body: "Barlow", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;

  --wrap: 1180px;
  --gut: clamp(18px, 4.5vw, 48px);
}

/* --- Reset -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: 0;
  margin: 0 0 .45em;
  color: var(--black);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.8vw, 2.9rem); }
h3 { font-size: clamp(1.25rem, 1.9vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { margin: 0 0 1.05em; }
p:last-child { margin-bottom: 0; }

/* --- Layout ------------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: clamp(52px, 7vw, 92px); }
.section--tight { padding-block: clamp(36px, 4.5vw, 60px); }
.section--alt { background: var(--paper-2); }
.section--dark { background: var(--black); color: #E9E9E9; }
.section--dark h1, .section--dark h2, .section--dark h3, .section--dark h4 { color: #fff; }
.section--dark p, .section--dark .lead { color: #B4B4B4; }
.section + .section:not(.section--alt):not(.section--dark) { border-top: 1px solid var(--rule); }

.grid { display: grid; gap: clamp(18px, 2.4vw, 30px); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4.5vw, 64px); align-items: start; }
.split--lead { grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); }

/* --- Type helpers ------------------------------------------------------- */
.eyebrow {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-dk);
  margin: 0 0 .7rem;
}
.section--dark .eyebrow { color: var(--red); }
.lead { font-size: clamp(1.05rem, 1.4vw, 1.18rem); color: var(--muted); }
.mono { font-family: var(--font-display); letter-spacing: .04em; }
.measure { max-width: 62ch; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .72rem 1.5rem;
  border: 2px solid transparent;
  border-radius: 0;
  text-decoration: none;
  cursor: pointer;
  transition: background .14s linear, color .14s linear, border-color .14s linear;
}
.btn--primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn--primary:hover { background: var(--red-dk); border-color: var(--red-dk); }
.btn--ghost { border-color: var(--black); color: var(--black); background: transparent; }
.btn--ghost:hover { background: var(--black); color: #fff; }
.section--dark .btn--ghost, .cta .btn--ghost { border-color: #fff; color: #fff; }
.section--dark .btn--ghost:hover, .cta .btn--ghost:hover { background: #fff; color: var(--black); }
.btn--lg { padding: .88rem 1.8rem; font-size: 1.1rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: .7rem; }
.arw { font-weight: 400; }

/* --- Header ------------------------------------------------------------- */
.site-head {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--paper);
  border-bottom: 1px solid var(--rule);
}
.site-head__in { display: flex; align-items: center; gap: 1.5rem; height: 80px; }
.brand { display: flex; align-items: center; gap: .8rem; text-decoration: none; flex: none; }
.brand__mark { width: auto; height: 46px; flex: none; }
.brand__txt { display: flex; flex-direction: column; line-height: 1; }
.brand__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--black);
}
.brand__sub {
  font-family: var(--font-display);
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .17em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .28rem;
}
.nav { margin-left: auto; display: flex; align-items: center; gap: 1.6rem; }
.nav a {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--black);
  text-decoration: none;
  padding-block: .3rem;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
}
.nav a:hover { border-bottom-color: var(--rule); }
.nav a[aria-current="page"] { border-bottom-color: var(--red); }
.nav .btn { border-bottom-width: 2px; }
.nav .btn:hover { border-bottom-color: var(--red-dk); }
.nav .btn[aria-current="page"] { border-bottom-color: var(--red); }

.nav-toggle {
  display: none;
  margin-left: auto;
  background: transparent;
  border: 2px solid var(--black);
  border-radius: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 20px; height: 2px;
  background: var(--black);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after  { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { transform: rotate(-45deg) translateY(-2px); }

/* --- Hero --------------------------------------------------------------- */
.home { --wrap: 1380px; }
.hero { padding-block: clamp(28px, 4vw, 56px) 0; }
.hero__layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr); gap: clamp(24px, 4vw, 56px); align-items: stretch; padding-bottom: 40px; }
.hero__copy { padding-block: 16px; align-self: center; }
.hero .eyebrow { margin-bottom: 24px; }
.hero h1 { font-size: clamp(3rem, 5.3vw, 4.75rem); line-height: 1; letter-spacing: -.025em; margin-bottom: 24px; }
.hero h1 span { color: var(--red-dk); }
.hero__lead { font-size: 1.125rem; color: var(--muted); max-width: 42ch; margin-bottom: 28px; }
.hero .btn-row { align-items: center; gap: 16px 24px; }
.hero__link { font-size: .9375rem; text-underline-offset: 5px; font-weight: 500; }
.hero__link span { margin-left: 4px; }
.hero__image { margin: 0; display: flex; flex-direction: column; border-top: 4px solid var(--red); background: var(--black); }
.hero__image img { width: 100%; height: 420px; flex: 1; min-height: 0; object-fit: cover; object-position: 58% center; }
.hero__image figcaption { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 20px; padding: 16px 20px; color: #fff; font-size: .8125rem; }
.hero__image figcaption a { color: #fff; text-underline-offset: 4px; }
@media (prefers-reduced-motion: no-preference) {
  .home .btn span, .home .hero__link span, .home .capability-index a span { display: inline-block; transition: transform .18s ease-out; }
  .home .btn:hover span, .home .btn:focus-visible span { transform: translateX(3px); }
  .home .hero__link:hover span, .home .hero__link:focus-visible span,
  .home .capability-index a:hover span, .home .capability-index a:focus-visible span { transform: translate(2px, -2px); }
}
.hero .stat { padding: 24px; }
.hero .stat:first-child { padding-left: 0; }
.hero .stat__n { font-size: 2.75rem; }
.hero .stat__n span { font-size: .45em; color: var(--red-dk); }
.customer-strip { margin-top: 32px; border-bottom: 1px solid var(--rule); padding-bottom: 28px; }
.customer-strip__in { display: flex; align-items: center; gap: 32px; }
.customer-strip p { margin: 0; font-size: .8125rem; line-height: 1.4; color: var(--muted); }
.customer-strip ul { list-style: none; padding: 0; margin: 0; flex: 1; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 16px 24px; }
.customer-strip li { font-family: var(--font-display); font-weight: 600; font-size: 1.375rem; }
.customer-strip a { font-size: .8125rem; color: var(--muted); text-underline-offset: 4px; }

@media (max-width: 900px) {
  .hero__layout { grid-template-columns: minmax(0, 1fr); gap: 24px; padding-bottom: 28px; }
  .hero__copy { padding-block: 0; }
  .hero h1 { font-size: clamp(3rem, 8vw, 4.5rem); }
  .hero__lead { max-width: 52ch; }
  .hero__image img { flex: none; height: auto; aspect-ratio: 16 / 9; }
  .hero .stat { padding: 20px; }
  .hero .stat:nth-child(odd) { padding-left: 0; }
  .customer-strip__in { flex-wrap: wrap; gap: 20px; }
  .customer-strip ul { justify-content: flex-start; }
}
@media (max-width: 560px) {
  .hero .eyebrow { font-size: .8125rem; margin-bottom: 20px; }
  .hero h1 { font-size: clamp(2.75rem, 10.5vw, 3.75rem); }
  .hero__lead { font-size: 1rem; }
  .hero .btn-row { gap: 20px; }
  .hero__image figcaption { padding: 12px 16px; }
  .hero .stat__n { font-size: 2.25rem; }
  .hero .stat__l { font-size: .75rem; letter-spacing: .06em; }
  .customer-strip ul { flex-basis: 100%; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
  .customer-strip p br { display: none; }
}

/* --- Homepage capability index and supporting sections ----------------- */
.capabilities-layout { display: grid; grid-template-columns: minmax(0, .85fr) minmax(0, 1.3fr); gap: clamp(32px, 6vw, 88px); }
.capabilities-intro h2 { font-size: clamp(2.25rem, 3.8vw, 3.25rem); }
.capabilities-intro .lead { max-width: 36ch; }
.capabilities-photo { margin-top: 32px; }
.capabilities-photo img { aspect-ratio: 4 / 3; object-fit: cover; }
.capability-index { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--black); }
.capability-index li { display: grid; grid-template-columns: 24px minmax(0, 1fr); gap: 24px; padding: 20px 0; border-bottom: 1px solid var(--rule); }
.capability-index__n { color: var(--red-dk); font-family: var(--font-display); font-size: .9375rem; padding-top: 3px; }
.capability-index h3 { font-size: 1.5rem; margin-bottom: 8px; }
.capability-index a { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; text-decoration: none; }
.capability-index a span { font-family: var(--font-body); font-size: 1.125rem; color: var(--red-dk); }
.capability-index a:hover { color: var(--red-dk); }
.capability-index p { color: var(--muted); font-size: 1rem; max-width: 59ch; }
.production-note { margin-top: 40px; padding: 24px 28px; background: var(--paper-2); border-left: 3px solid var(--red); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.production-note p { margin: 0; max-width: 74ch; font-size: 1rem; color: var(--muted); }
.production-note strong { color: var(--black); }
.production-note a { flex-shrink: 0; text-underline-offset: 4px; font-size: .9375rem; }
.ev-feature { border-top: 4px solid var(--red); }
.ev-feature .eyebrow { color: #FF7373; }
.ev-feature h2 { font-size: clamp(2.25rem, 3.8vw, 3.25rem); }
.ev-feature__intro { margin-bottom: 48px; }
.text-link { display: inline-block; padding-block: 8px; font-weight: 500; text-underline-offset: 5px; }
.ev-phases { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; }
.ev-phases > div { border-top: 1px solid #696969; padding-top: 24px; }
.ev-phases .ev-phases__label { color: #FF7373; font-family: var(--font-display); text-transform: uppercase; letter-spacing: .1em; font-size: .9375rem; margin-bottom: 16px; }
.ev-phases h3 { font-size: 1.75rem; }
.ev-phases p { max-width: 52ch; }
.ev-phases__note { display: block; color: #B4B4B4; font-size: .875rem; margin-top: 24px; }
.home .home-spec { min-width: 0; }
.home-spec td { font-variant-numeric: tabular-nums; }
.quality-link { margin-top: 24px; padding-block: 16px; border-block: 1px solid var(--rule); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px 24px; text-decoration: none; font-size: .9375rem; font-weight: 600; }
.quality-link span { font-size: .875rem; color: var(--muted); font-weight: 400; text-decoration: underline; text-underline-offset: 4px; }
.process-intro { display: flex; justify-content: space-between; align-items: end; gap: 32px; margin-bottom: 40px; }
.process-intro h2 { margin-bottom: 0; }
.process-intro > p { max-width: 32ch; }
.process-line { list-style: none; counter-reset: process; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.process-line li { counter-increment: process; border-top: 2px solid var(--black); padding: 20px 24px 0 0; }
.process-line li::before { content: counter(process, decimal-leading-zero); display: block; color: var(--red-dk); font-family: var(--font-display); font-size: .9375rem; margin-bottom: 20px; }
.process-line h3 { font-size: 1.5rem; }
.process-line p { font-size: 1rem; color: var(--muted); }
.home .btn--primary { color: var(--black); }
.home .btn--primary:hover { color: #fff; }
.home .nav .btn--primary:hover { color: #fff; }
.home .wa-float { background: var(--red-dk); }
.home .wa-float:hover { background: var(--black); }
.home .site-foot { border-top: 1px solid var(--rule-dark); }
.home .nav-toggle { flex-shrink: 0; }
.home .cta h2 { font-size: clamp(2.5rem, 5vw, 4rem); }

@media (max-width: 900px) {
  .capabilities-layout { grid-template-columns: minmax(0, 1fr); }
  .capabilities-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 0 32px; align-items: start; }
  .capabilities-intro .eyebrow, .capabilities-intro h2, .capabilities-intro .lead { grid-column: 1; }
  .capabilities-photo { grid-column: 2; grid-row: 1 / 4; margin-top: 0; }
  .production-note { align-items: start; flex-direction: column; gap: 16px; }
  .ev-phases { gap: 32px; }
  .process-intro { flex-direction: column; align-items: start; gap: 16px; }
  .process-intro > p { max-width: none; }
  .process-line { grid-template-columns: minmax(0, 1fr); }
  .process-line li { display: grid; grid-template-columns: 32px 140px minmax(0, 1fr); gap: 16px; padding: 20px 0; border-top: 1px solid var(--rule); }
  .process-line li:first-child { border-top: 2px solid var(--black); }
  .process-line li::before { margin-bottom: 0; }
}
@media (max-width: 560px) {
  .capabilities-intro { display: block; }
  .capabilities-photo { margin-top: 24px; }
  .capabilities-photo img { aspect-ratio: 16 / 9; }
  .capability-index li { gap: 16px; }
  .production-note { padding: 20px; }
  .ev-phases { grid-template-columns: minmax(0, 1fr); }
  .process-line li { grid-template-columns: 24px minmax(0, 1fr); gap: 8px 16px; }
  .process-line p { grid-column: 2; }
  .home .wa-float { bottom: 16px; }
}
@media (max-width: 360px) {
  .home .site-head__in { gap: 8px; }
  .home .site-head .brand { gap: 8px; }
  .home .site-head .brand__sub { font-size: .55rem; letter-spacing: .08em; }
}

/* Key-figure bar — hairline separated, not boxed */
.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 2px solid var(--black);
  border-bottom: 1px solid var(--rule);
}
.stat { padding: 1.15rem 1.4rem 1.25rem 0; border-right: 1px solid var(--rule); }
.stat:last-child { border-right: 0; }
.stat__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1;
  color: var(--black);
  margin-bottom: .45rem;
}
.stat__n span { font-size: .5em; color: var(--red); margin-left: .15em; font-weight: 600; }
.stat__l {
  font-family: var(--font-display);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1.45;
}
.section--dark .stats { border-top-color: #fff; border-bottom-color: var(--rule-dark); }
.section--dark .stat { border-right-color: var(--rule-dark); }
.section--dark .stat__n { color: #fff; }
.section--dark .stat__l { color: var(--muted-2); }

/* --- Page banner (interior pages) --------------------------------------- */
.pagehead {
  padding-block: clamp(34px, 4.5vw, 58px) clamp(34px, 4.5vw, 56px);
  border-bottom: 2px solid var(--black);
}
.pagehead h1 { max-width: 19ch; margin-bottom: .4em; }
.pagehead p { max-width: 60ch; color: var(--muted); font-size: clamp(1.02rem, 1.4vw, 1.16rem); }
.crumb {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1.5rem;
}
.crumb a { color: var(--muted); text-decoration: none; }
.crumb a:hover { color: var(--red-dk); }

/* --- Panels (were cards) ------------------------------------------------ */
.card {
  background: transparent;
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: clamp(1.25rem, 2.1vw, 1.75rem);
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.card__num {
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--red-dk);
  margin-bottom: .5rem;
}
.card h3 { margin-bottom: .25rem; }
.card p { color: var(--muted); font-size: .98rem; }
.card__more {
  margin-top: auto;
  padding-top: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red-dk);
  text-decoration: none;
  display: inline-flex;
  gap: .4rem;
  align-items: center;
  border-bottom: 2px solid transparent;
  align-self: flex-start;
}
.card__more:hover { border-bottom-color: var(--red); }
.section--dark .card { border-color: var(--rule-dark); }
.section--dark .card p { color: #B4B4B4; }
.section--dark .card__num, .section--dark .card__more { color: var(--red); }

/* Index rows — the capability list reads as a contents page, not cards */
.rows { list-style: none; margin: 0; padding: 0; border-top: 2px solid var(--black); }
.rows > li {
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 4fr) minmax(0, 7fr);
  gap: clamp(12px, 2.5vw, 36px);
  padding-block: clamp(18px, 2.4vw, 30px);
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.rows__n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--red);
}
.rows h3 { margin: 0; }
.rows p { color: var(--muted); margin: 0 0 .7rem; font-size: .99rem; }
.rows a {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--red-dk);
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
.rows a:hover { border-bottom-color: var(--red); }

/* --- Spec tables -------------------------------------------------------- */
.spec-wrap { position: relative; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.spec { width: 100%; border-collapse: collapse; font-size: .97rem; min-width: 520px; }
.spec caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: .7rem;
  border-bottom: 2px solid var(--black);
  margin-bottom: 0;
}
.spec th, .spec td {
  text-align: left;
  padding: .72rem 1rem .72rem 0;
  border-bottom: 1px solid var(--rule);
  vertical-align: top;
}
.spec thead th {
  font-family: var(--font-display);
  font-size: .86rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 1px solid var(--black);
}
.spec tbody th { font-weight: 600; }
.spec td.num { font-variant-numeric: tabular-nums; }
.section--dark .spec caption { color: #fff; border-bottom-color: #fff; }
.section--dark .spec th, .section--dark .spec td { border-bottom-color: var(--rule-dark); color: #E9E9E9; }
.section--dark .spec thead th { color: var(--muted-2); border-bottom-color: var(--muted-2); }

/* --- Lists -------------------------------------------------------------- */
.ticks { list-style: none; margin: 0; padding: 0; }
.ticks li {
  position: relative;
  padding: .5rem 0 .5rem 1.5rem;
  border-bottom: 1px solid var(--rule);
  font-size: .98rem;
  color: var(--muted);
}
.ticks li:first-child { border-top: 1px solid var(--rule); }
.ticks li::before {
  content: "";
  position: absolute;
  left: 0; top: .95em;
  width: 8px; height: 2px;
  background: var(--red);
}
.ticks li strong { color: var(--black); font-weight: 600; }
.section--dark .ticks li { color: #B4B4B4; border-bottom-color: var(--rule-dark); }
.section--dark .ticks li:first-child { border-top-color: var(--rule-dark); }
.section--dark .ticks li strong { color: #fff; }

/* --- Numbered process --------------------------------------------------- */
.steps { counter-reset: step; margin: 0; padding: 0; border-top: 2px solid var(--black); }
.steps li {
  counter-increment: step;
  list-style: none;
  display: grid;
  grid-template-columns: 3.2rem minmax(0, 1fr);
  gap: clamp(12px, 2.5vw, 32px);
  padding-block: clamp(16px, 2.2vw, 26px);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .08em;
  color: var(--red);
  padding-top: .18rem;
}
.steps h3 { margin-bottom: .2rem; }
.steps p { color: var(--muted); font-size: .98rem; margin: 0; }
.section--dark .steps { border-top-color: #fff; }
.section--dark .steps li { border-bottom-color: var(--rule-dark); }
.section--dark .steps p { color: #B4B4B4; }

/* --- Customer list ------------------------------------------------------ */
.clients {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(215px, minmax(0, 1fr)));
  border-top: 2px solid var(--black);
}
.client {
  padding: .95rem 1.2rem .95rem 0;
  border-bottom: 1px solid var(--rule);
  border-right: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: .12rem;
}
.client__name { font-family: var(--font-display); font-weight: 600; font-size: 1.16rem; color: var(--black); line-height: 1.2; }
.client__tag {
  font-family: var(--font-display);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}

/* --- Callout ------------------------------------------------------------ */
.callout {
  border-left: 3px solid var(--red);
  padding: .1rem 0 .1rem 1.3rem;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.1vw, 1.75rem);
  font-weight: 600;
  line-height: 1.22;
  color: var(--black);
}
.section--dark .callout { color: #fff; }

/* --- Photographs -------------------------------------------------------- */
.shot { margin: 0; }
.shot img { width: 100%; height: auto; border: 1px solid var(--rule); }
.shot figcaption {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .55rem;
  margin-top: .55rem;
  border-top: 1px solid var(--rule);
}
.section--dark .shot img { border-color: var(--rule-dark); }
.section--dark .shot figcaption { color: var(--muted-2); border-top-color: var(--rule-dark); }

/* --- Photo slots -------------------------------------------------------- */
.media {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.2rem;
}
.media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.media__hint {
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted-2);
  line-height: 1.7;
  margin: 0;
}
.media--wide { aspect-ratio: 16 / 9; }
.section--dark .media { background: #191919; border-color: var(--rule-dark); }

/* --- Closing bar -------------------------------------------------------- */
.cta { background: var(--black); color: #fff; padding-block: clamp(40px, 5vw, 64px); }
.cta h2 { color: #fff; max-width: 22ch; margin-bottom: .3em; }
.cta p { color: #B4B4B4; max-width: 56ch; }
.cta__in { display: flex; flex-wrap: wrap; gap: 1.8rem 2.5rem; align-items: center; justify-content: space-between; }

/* --- Forms -------------------------------------------------------------- */
.form { display: grid; gap: 1rem; }
.field { display: grid; gap: .3rem; }
.field label {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: .7rem .8rem;
  width: 100%;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: -1px;
  border-color: var(--red);
}
.field--row { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1rem; }
.form__note { font-size: .88rem; color: var(--muted); }
.form__note a { color: var(--red-dk); }

/* --- Contact rail ------------------------------------------------------- */
.contact-list { margin: 0; padding: 0; border-top: 2px solid var(--black); }
.contact-item {
  display: grid;
  grid-template-columns: minmax(0, 8rem) minmax(0, 1fr);
  gap: 1rem;
  padding-block: .9rem;
  border-bottom: 1px solid var(--rule);
}
.contact-item dt {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  padding-top: .18rem;
}
.contact-item dd { margin: 0; font-size: 1rem; line-height: 1.55; }
.contact-item a { text-decoration: none; border-bottom: 1px solid var(--rule); }
.contact-item a:hover { border-bottom-color: var(--red); color: var(--red-dk); }

/* --- Footer ------------------------------------------------------------- */
.site-foot { background: var(--black); color: #A8A8A8; padding-block: clamp(40px, 5vw, 64px) 0; font-size: .95rem; }
.site-foot .brand__name { color: #fff; }
.site-foot .brand__sub { color: var(--muted-2); }
.foot-grid { display: grid; grid-template-columns: 1.7fr minmax(0, 1fr) minmax(0, 1fr) 1.4fr; gap: clamp(22px, 3.5vw, 44px); }
.foot-grid h4 {
  font-family: var(--font-display);
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .9rem;
  padding-bottom: .5rem;
  border-bottom: 1px solid var(--rule-dark);
}
.foot-links { list-style: none; margin: 0; padding: 0; display: grid; gap: .5rem; }
.foot-links a { text-decoration: none; color: #A8A8A8; }
.foot-links a:hover { color: var(--red); }
.foot-brand .brand { margin-bottom: 1rem; }
.foot-brand p { max-width: 36ch; line-height: 1.65; }
.foot-bottom {
  margin-top: clamp(30px, 4vw, 48px);
  border-top: 1px solid var(--rule-dark);
  padding-block: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .8rem 1.5rem;
  justify-content: space-between;
  font-family: var(--font-display);
  font-size: .85rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* --- WhatsApp tab ------------------------------------------------------- */
.wa-float {
  position: fixed;
  right: 0;
  bottom: clamp(20px, 6vh, 64px);
  z-index: 70;
  background: var(--red);
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .7rem 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wa-float:hover { background: var(--black); }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; }

/* --- Map ---------------------------------------------------------------- */
.map { position: relative; width: 100%; aspect-ratio: 21 / 9; min-height: 300px; border: 1px solid var(--rule); overflow: hidden; background: var(--paper-2); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* --- Utility ------------------------------------------------------------ */
.skip { position: absolute; left: -9999px; background: var(--red); color: #fff; padding: .7rem 1.1rem; z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.mt-2 { margin-top: 1.7rem; }
.mt-3 { margin-top: 2.4rem; }
.mb-3 { margin-bottom: clamp(28px, 4vw, 48px); }
.tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  border-bottom: 2px solid var(--rule);
  padding-bottom: .2rem;
  margin-bottom: .2rem;
}
.tag--accent { color: var(--red-dk); border-bottom-color: var(--red); }
.section--dark .tag { color: var(--muted-2); border-bottom-color: var(--rule-dark); }
.section--dark .tag--accent { color: var(--red); border-bottom-color: var(--red); }

:focus-visible { outline: 2px solid var(--red); outline-offset: 2px; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }


/* --- Machine stock ------------------------------------------------------ */
.stock-toolbar {
  background: var(--paper);
  padding-block: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
  display: grid; grid-template-columns: minmax(220px, 320px) minmax(0, 1fr); gap: .8rem 1.5rem; align-items: end;
}
.stock-search { display: grid; gap: .3rem; }
.stock-search span {
  font-family: var(--font-display); font-size: .85rem; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase; color: var(--muted);
}
.stock-search input {
  font: inherit; font-size: 1rem; padding: .6rem .75rem;
  border: 1px solid var(--black); border-radius: 0; background: var(--paper); width: 100%;
}
.stock-search input:focus { outline: 2px solid var(--red); outline-offset: -1px; }
.stock-chips { display: flex; flex-wrap: wrap; gap: .4rem; min-width: 0; }
.stock-toolbar > * { min-width: 0; }
.chip {
  font-family: var(--font-display); font-weight: 600; font-size: .95rem; letter-spacing: .04em;
  padding: .45rem .7rem; border: 1px solid var(--rule); background: var(--paper); color: var(--ink);
  border-radius: 0; cursor: pointer; white-space: nowrap;
}
.chip span { color: var(--muted); font-weight: 500; margin-left: .2rem; }
.chip:hover { border-color: var(--black); }
.chip[aria-pressed="true"] { background: var(--black); border-color: var(--black); color: #fff; }
.chip[aria-pressed="true"] span { color: #bdbdbd; }
.stock-count {
  grid-column: 1 / -1; margin: 0;
  font-family: var(--font-display); font-size: .9rem; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}

.stock-group { margin-bottom: clamp(36px, 5vw, 60px); }
.stock-group h2 {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  padding-bottom: .5rem; margin-bottom: 0;
  border-bottom: 2px solid var(--black);
  scroll-margin-top: 100px;
}
.stock-group h2 span { color: var(--red-dk); font-size: .6em; vertical-align: middle; margin-left: .3rem; }

.stock-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) 190px;
  gap: clamp(16px, 2.5vw, 32px);
  padding-block: clamp(16px, 2vw, 24px);
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.stock-item__photo { margin: 0; aspect-ratio: 4 / 3; background: var(--paper-2); border: 1px solid var(--rule); overflow: hidden; display: grid; place-items: center; }
.stock-item__photo img { width: 100%; height: 100%; object-fit: cover; }
.stock-item__nophoto { font-family: var(--font-display); font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted-2); }
.stock-item__type {
  margin: 0 0 .2rem;
  font-family: var(--font-display); font-size: .9rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}
.stock-item__ref { color: var(--red-dk); margin-right: .6rem; }
.stock-item h3 { font-size: clamp(1.35rem, 2vw, 1.65rem); margin-bottom: .6rem; }
.stock-item__key { display: flex; flex-wrap: wrap; gap: .3rem 1.6rem; margin: 0 0 .7rem; }
.stock-item__key div { display: grid; }
.stock-item__key dt { font-family: var(--font-display); font-size: .78rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.stock-item__key dd { margin: 0; font-weight: 600; font-variant-numeric: tabular-nums; }
.stock-item__more summary {
  cursor: pointer; display: inline-block;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red-dk); border-bottom: 2px solid transparent;
}
.stock-item__more summary:hover { border-bottom-color: var(--red); }
.stock-item__more[open] summary { margin-bottom: .9rem; }
.stock-item__detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 1.4rem; }
.stock-spec { min-width: 0; font-size: .92rem; }
.stock-spec th, .stock-spec td { padding-block: .4rem; }
.stock-item__nospec { color: var(--muted); font-size: .95rem; }
.stock-item__gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .5rem; align-content: start; }
.stock-item__gallery a { display: block; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--rule); }
.stock-item__gallery a:hover { border-color: var(--black); }
.stock-item__gallery img { width: 100%; height: 100%; object-fit: cover; }
.stock-item__side { display: grid; gap: .7rem; justify-items: stretch; text-align: right; }
.stock-item__qty { font-size: .95rem; color: var(--muted); }
.stock-item__qty strong { color: var(--black); font-family: var(--font-display); font-size: 1.3rem; }
.stock-item__side .btn { justify-content: center; }
.stock-empty { padding: 1.4rem; background: var(--paper-2); border-left: 3px solid var(--red); }
.stock-note { margin-top: 1rem; font-size: .92rem; color: var(--muted); max-width: 70ch; }
.stock-new { min-width: 720px; }
.stock-new__link {
  font-family: var(--font-display); font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--red-dk); text-decoration: none; border-bottom: 2px solid transparent; white-space: nowrap;
}
.stock-new__link:hover { border-bottom-color: var(--red); }

@media (max-width: 900px) {
  .stock-toolbar { grid-template-columns: minmax(0, 1fr); }
  .stock-item { grid-template-columns: 150px minmax(0, 1fr); }
  .stock-item__side { grid-column: 1 / -1; grid-template-columns: minmax(0, 1fr) auto; align-items: center; text-align: left; }
  .stock-item__detail { grid-template-columns: minmax(0, 1fr); }
}
@media (max-width: 560px) {
  .stock-item { grid-template-columns: minmax(0, 1fr); }
  .stock-item__photo { aspect-ratio: 16 / 10; }
}

/* --- AMR ---------------------------------------------------------------- */
.amr-hero { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(26px, 4.5vw, 64px); align-items: center; }
.amr-hero .shot img { aspect-ratio: 1; object-fit: cover; }
.amr-offer { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0; border-top: 2px solid var(--black); }
.amr-offer > div { padding: clamp(20px, 3vw, 36px) clamp(0px, 3vw, 36px) clamp(20px, 3vw, 36px) 0; }
.amr-offer > div + div { border-left: 1px solid var(--rule); padding-left: clamp(18px, 3vw, 36px); }
.amr-offer .tag { margin-bottom: .6rem; }
.amr-gallery { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: clamp(8px, 1.4vw, 16px); }
.amr-gallery img { aspect-ratio: 1; object-fit: cover; }
.video-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(16px, 2.5vw, 32px); }
.video-embed { position: relative; aspect-ratio: 16 / 9; background: var(--black); border: 1px solid var(--rule-dark); }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid figcaption {
  font-family: var(--font-display); font-size: .88rem; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted-2); padding-top: .55rem;
}
@media (max-width: 900px) {
  .amr-hero, .amr-offer, .video-grid { grid-template-columns: minmax(0, 1fr); }
  .amr-offer > div + div { border-left: 0; border-top: 1px solid var(--rule); padding-left: 0; }
  .amr-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* --- Responsive --------------------------------------------------------- */
@media (max-width: 1320px) {
  .nav { gap: 1.05rem; }
  .nav a { font-size: .95rem; letter-spacing: .04em; }
}
@media (max-width: 1100px) {
  .nav-toggle { display: grid; }
  .nav {
    position: fixed;
    inset: 80px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 2px solid var(--black);
    padding: 0 var(--gut) 1.4rem;
    margin: 0;
    max-height: calc(100dvh - 80px);
    overflow-y: auto;
    display: none;
  }
  .nav.open { display: flex; }
  .nav a { padding-block: .95rem; border-bottom: 1px solid var(--rule); font-size: 1.15rem; }
  .nav a[aria-current="page"] { color: var(--red-dk); border-bottom-color: var(--rule); }
  .nav .btn { margin-top: 1.1rem; justify-content: center; border-bottom-width: 2px; }
}
@media (max-width: 1040px) {
  .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .foot-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
}
@media (max-width: 900px) {
  .grid--3, .grid--2 { grid-template-columns: minmax(0, 1fr); }
  .split, .split--lead { grid-template-columns: minmax(0, 1fr); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--rule); }
  .rows > li { grid-template-columns: 2.4rem minmax(0, 1fr); }
  .rows > li > :last-child { grid-column: 2; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .brand__mark { height: 38px; }
  .brand__name { font-size: 1.25rem; }
  .brand__sub { font-size: .6rem; letter-spacing: .13em; }
  .site-head__in { height: 68px; }
  .nav { inset-block-start: 68px; max-height: calc(100dvh - 68px); }
  .grid--4 { grid-template-columns: minmax(0, 1fr); }
  .foot-grid { grid-template-columns: minmax(0, 1fr); }
  .field--row { grid-template-columns: minmax(0, 1fr); }
  .steps li, .rows > li { grid-template-columns: minmax(0, 1fr); gap: .35rem; }
  .steps li::before, .rows__n { padding-top: 0; }
  .rows > li > :last-child { grid-column: auto; }
  .contact-item { grid-template-columns: minmax(0, 1fr); gap: .15rem; }
  .cta__in { flex-direction: column; align-items: flex-start; }
  .client { border-right: 0; }
  .wa-float { padding: .65rem .8rem; font-size: .9rem; }
}

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

@media print {
  .site-head, .wa-float, .cta, .nav-toggle, .map { display: none !important; }
  body { color: #000; background: #fff; font-size: 10.5pt; }
  .section, .section--alt, .section--dark { background: #fff !important; color: #000 !important; padding-block: 12pt; }
  .section--dark h1, .section--dark h2, .section--dark h3, .section--dark p,
  .section--dark .spec th, .section--dark .spec td, .section--dark .ticks li { color: #000 !important; }
  .site-foot { background: #fff !important; color: #000 !important; }
  a { text-decoration: none; }
}
