/* =========================================================
   TOKENS
========================================================= */
:root{
  --ink: #17181A;
  --ink-soft: #24262A;
  --steel: #4B4F58;
  --steel-light: #8A8E96;
  --concrete: #E4E1DA;
  --paper: #F7F6F3;
  --hazard: #E8590C;
  --hazard-dim: #C24A0A;

  --display: 'Big Shoulders Display', sans-serif;
  --body: 'Inter', sans-serif;
  --mono: 'IBM Plex Mono', monospace;

  --gutter: clamp(24px, 5vw, 72px);
  --max: 1400px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, video{ max-width: 100%; display: block; }
a{ color: inherit; text-decoration: none; }
h1, h2{
  font-family: var(--display);
  font-weight: 700;
  text-transform: none;
  letter-spacing: -0.01em;
  line-height: 0.98;
  margin: 0 0 0.4em;
}
p{ color: var(--steel); max-width: 60ch; }

:focus-visible{
  outline: 2px solid var(--hazard);
  outline-offset: 3px;
}

/* corner registration marks, used as a section-edge motif instead of eyebrow labels */
.corner-mark{
  position: fixed;
  width: 22px; height: 22px;
  z-index: 50;
  pointer-events: none;
  opacity: 0.55;
}
.corner-mark::before, .corner-mark::after{
  content: '';
  position: absolute;
  background: var(--ink);
}
.corner-mark::before{ width: 100%; height: 1px; top: 50%; }
.corner-mark::after{ width: 1px; height: 100%; left: 50%; }
.corner-mark--tl{ top: 14px; left: 14px; }
.corner-mark--tr{ top: 14px; right: 14px; }

/* =========================================================
   NAV
========================================================= */
.nav{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 40;
  background: rgba(23,24,26,0.0);
  transition: background 0.35s ease, backdrop-filter 0.35s ease;
}
.nav.is-scrolled{
  background: rgba(23,24,26,0.92);
  backdrop-filter: blur(6px);
}
.nav__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px var(--gutter);
  display: flex;
  align-items: center;
  gap: 40px;
}
.nav__mark{ display: flex; flex-direction: column; margin-right: auto; }
.nav__mark-main{
  font-family: var(--display);
  font-weight: 800;
  font-size: 24px;
  color: var(--paper);
  letter-spacing: 0.02em;
}
.nav__mark-sub{
  font-family: var(--mono);
  font-size: 10px;
  color: var(--hazard);
  letter-spacing: 0.08em;
}
.nav__links{ display: flex; gap: 28px; }
.nav__links a{
  color: var(--paper);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.85;
  transition: opacity 0.2s ease;
}
.nav__links a:hover{ opacity: 1; }
.nav__actions{ display: flex; align-items: center; gap: 20px; }
.nav__phone{
  color: var(--paper);
  font-family: var(--mono);
  font-size: 13px;
  opacity: 0.85;
}
.nav__burger{ display: none; }

.btn{
  display: inline-flex;
  align-items: center;
  padding: 12px 22px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  border-radius: 2px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn--hazard{ background: var(--hazard); color: var(--paper); }
.btn--hazard:hover{ background: var(--hazard-dim); }
.btn--ghost-light{ border-color: rgba(247,246,243,0.4); color: var(--paper); }
.btn--ghost-light:hover{ border-color: var(--paper); }
.btn--ghost-dark{ border-color: rgba(23,24,26,0.3); color: var(--ink); }
.btn--ghost-dark:hover{ border-color: var(--ink); }

/* =========================================================
   HERO
========================================================= */
.hero{
  position: relative;
  height: 450vh;
  background: var(--ink);
}
.hero__pin{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
}
.hero__media{
  position: absolute; inset: 0;
}
.hero__video{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0;
}
.hero__video--a{ opacity: 1; }
.hero__scrim{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,24,26,0.55) 0%, rgba(23,24,26,0.25) 40%, rgba(23,24,26,0.65) 100%);
}

.hero__text{
  position: absolute;
  left: var(--gutter);
  bottom: 14vh;
  max-width: 720px;
  color: var(--paper);
  opacity: 0;
  transform: translateY(24px);
}
.hero__text h1, .hero__text h2{
  font-size: clamp(36px, 6vw, 76px);
  color: var(--paper);
}
.hero__text p{
  color: rgba(247,246,243,0.8);
  font-size: clamp(15px, 1.6vw, 19px);
  max-width: 46ch;
}
.hero__text--cta .hero__cta-row{
  display: flex; gap: 16px; margin-top: 12px;
}
#heroBeat1{ opacity: 1; transform: translateY(0); }

.hero__progress{
  position: absolute;
  left: var(--gutter); right: var(--gutter);
  bottom: 6vh;
  height: 2px;
  background: rgba(247,246,243,0.2);
}
.hero__progress-fill{
  display: block;
  height: 100%;
  width: 0%;
  background: var(--hazard);
}

/* =========================================================
   PILLARS
========================================================= */
.pillars{
  border-bottom: 1px solid rgba(23,24,26,0.12);
}
.pillars__row{
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.pillar{
  padding: 40px var(--gutter);
  border-left: 1px solid rgba(23,24,26,0.12);
  display: flex; flex-direction: column; gap: 10px;
  transition: background 0.2s ease;
}
.pillar:first-child{ border-left: none; padding-left: var(--gutter); }
.pillar:hover{ background: var(--concrete); }
.pillar__code{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  letter-spacing: 0.04em;
}
.pillar__title{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
}

/* =========================================================
   SPLIT BLOCKS
========================================================= */
.block{
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter);
}
.block--split{
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.block--reverse{ direction: rtl; }
.block--reverse > *{ direction: ltr; }
.block--narrow{ max-width: 800px; padding-top: 80px; padding-bottom: 80px; }

.block__media-frame{
  aspect-ratio: 4/3;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.block__media-tag{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--paper);
  opacity: 0.8;
}

.block__copy h2{ font-size: clamp(30px, 4vw, 46px); }
.spec-list{
  list-style: none;
  margin: 28px 0;
  padding: 0;
  border-top: 1px solid rgba(23,24,26,0.15);
}
.spec-list li{
  display: flex;
  gap: 24px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(23,24,26,0.15);
  font-size: 15px;
  color: var(--ink);
}
.spec-list li span{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  width: 90px;
  flex-shrink: 0;
  padding-top: 2px;
}
.text-link{
  font-weight: 600;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
}

/* =========================================================
   AUTOZONE
========================================================= */
.autozone{
  background: var(--ink);
  color: var(--paper);
}
.autozone__inner{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter);
}
.autozone__copy{ max-width: 620px; }
.autozone__mark{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--hazard);
  letter-spacing: 0.06em;
}
.autozone__copy h2{ color: var(--paper); font-size: clamp(30px, 4vw, 46px); margin-top: 10px; }
.autozone__copy p{ color: rgba(247,246,243,0.75); margin-bottom: 28px; }

/* =========================================================
   BRANCHES
========================================================= */
.branches{
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px var(--gutter) 100px;
}
.branches h2{ font-size: clamp(30px, 4vw, 46px); }
.branches__lead{ margin-bottom: 48px; }

.branch-list{
  border-top: 1px solid rgba(23,24,26,0.15);
  margin-bottom: 36px;
}
.branch-row{
  display: grid;
  grid-template-columns: 70px 160px 1fr 160px 110px;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(23,24,26,0.15);
}
.branch-row__code{
  font-family: var(--mono);
  color: var(--hazard);
  font-weight: 500;
}
.branch-row__name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 20px;
}
.branch-row__addr{ color: var(--steel); font-size: 14px; }
.branch-row__phone{ font-family: var(--mono); font-size: 13px; color: var(--steel); }
.branch-row__hours{ display: block; font-family: var(--mono); font-size: 12px; color: var(--steel-light); margin-top: 4px; }
.branch-row__dir{
  font-size: 13px;
  font-weight: 600;
  justify-self: end;
  border-bottom: 1px solid var(--ink);
  width: fit-content;
}

/* =========================================================
   WHY / INDUSTRIES
========================================================= */
.why{
  background: var(--concrete);
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.why__col{
  padding: 100px var(--gutter);
}
.why__col:first-child{ border-right: 1px solid rgba(23,24,26,0.15); }
.why__col h2{ font-size: clamp(28px, 3.4vw, 38px); margin-bottom: 32px; }
.why__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}
.why__list li{
  font-size: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(23,24,26,0.15);
}
.why__list--check li{ position: relative; padding-left: 26px; }
.why__list--check li::before{
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  background: var(--hazard);
}

/* =========================================================
   FOOTER / CONTACT
========================================================= */
.footer{
  background: var(--ink);
  color: var(--paper);
}
.footer__top{
  max-width: 720px;
  margin: 0 auto;
  padding: 120px var(--gutter) 80px;
  text-align: left;
}
.footer__top h2{ color: var(--paper); font-size: clamp(30px, 4vw, 46px); }
.footer__top p{ color: rgba(247,246,243,0.75); margin-bottom: 40px; }

.footer__form{
  display: grid;
  gap: 14px;
  margin-bottom: 28px;
}
.footer__form select,
.footer__form input{
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(247,246,243,0.3);
  color: var(--paper);
  font-family: var(--body);
  font-size: 15px;
  padding: 12px 4px;
}
.footer__form select option{ color: var(--ink); }
.footer__form button{ justify-self: start; margin-top: 10px; }

.footer__whatsapp{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--hazard);
  border-bottom: 1px solid var(--hazard);
  width: fit-content;
  display: inline-block;
}

.footer__bottom{
  border-top: 1px solid rgba(247,246,243,0.15);
  padding: 32px var(--gutter);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__mark{ font-size: 18px; }
.footer__bottom p{ color: rgba(247,246,243,0.6); font-size: 13px; margin: 0; }
.footer__copy{ margin-left: auto !important; }

/* =========================================================
   REVEAL (non-hero scroll entrances, used once per section)
========================================================= */
[data-reveal]{
  opacity: 0;
  transform: translateY(28px);
}
[data-reveal].is-visible{
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  .hero{ height: auto; }
  .hero__pin{ position: relative; height: 100vh; }
  .hero__text{ opacity: 1 !important; transform: none !important; position: static; margin-bottom: 24px; }
  .hero__text--cta{ margin-bottom: 0; }
  [data-reveal]{ opacity: 1; transform: none; }
}

/* =========================================================
   PAGE HERO (static banner used on every subpage)
========================================================= */
.page-hero{
  background: var(--ink);
  color: var(--paper);
  padding: 180px var(--gutter) 90px;
}
.page-hero__inner{ max-width: 760px; }
.page-hero h1{
  color: var(--paper);
  font-size: clamp(38px, 5.6vw, 64px);
}
.page-hero p{
  color: rgba(247,246,243,0.78);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 56ch;
}
.page-hero__frame{
  margin-top: 40px;
  aspect-ratio: 21/8;
  background: var(--ink-soft);
  border: 1px solid rgba(247,246,243,0.15);
  display: flex;
  align-items: flex-end;
  padding: 18px 20px;
}
.page-hero__tag{
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247,246,243,0.6);
}

/* =========================================================
   CATALOG ROWS (Equipment, Parts, Services, Industries)
========================================================= */
.catalog{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter);
}
.catalog__head{ max-width: 640px; margin-bottom: 56px; }
.catalog__head h2{ font-size: clamp(28px, 3.6vw, 42px); }
.catalog-list{ border-top: 1px solid rgba(23,24,26,0.15); }
.catalog-row{
  display: grid;
  grid-template-columns: 80px 220px 1fr 180px;
  gap: 24px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(23,24,26,0.15);
  align-items: start;
}
.catalog-row__code{
  font-family: var(--mono);
  color: var(--hazard);
  font-size: 13px;
  padding-top: 5px;
}
.catalog-row__name{
  font-family: var(--display);
  font-weight: 700;
  font-size: 24px;
}
.catalog-row__desc{ color: var(--steel); max-width: 58ch; }
.catalog-row__spec{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel-light);
  text-align: right;
}

/* =========================================================
   TIMELINE (About Us, a genuine sequence)
========================================================= */
.timeline{ border-top: 1px solid rgba(23,24,26,0.15); }
.timeline-row{
  display: grid;
  grid-template-columns: 70px 200px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(23,24,26,0.15);
}
.timeline-row__code{ font-family: var(--mono); color: var(--hazard); }
.timeline-row__label{ font-family: var(--display); font-weight: 700; font-size: 20px; }
.timeline-row__desc{ color: var(--steel); max-width: 58ch; }

/* =========================================================
   FOOTER LINKS ROW
========================================================= */
.footer__links{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
}
.footer__links a{
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.02em;
  color: rgba(247,246,243,0.6);
}
.footer__links a:hover{ color: var(--paper); }

/* =========================================================
   FULL CONTACT PAGE
========================================================= */
.contact-page{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.contact-page__direct{ border-top: 1px solid rgba(23,24,26,0.15); margin-top: 36px; }
.contact-page__direct-row{
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(23,24,26,0.15);
  font-size: 14px;
}
.contact-page__direct-row span:first-child{ font-family: var(--display); font-weight: 700; }
.contact-page__direct-row span:last-child{ font-family: var(--mono); color: var(--steel); }

.contact-form{ display: grid; gap: 16px; }
.contact-form label{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  display: block;
  margin-bottom: 6px;
}
.contact-form select,
.contact-form input,
.contact-form textarea{
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(23,24,26,0.25);
  padding: 12px 4px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--ink);
  resize: vertical;
}
.contact-form button{ justify-self: start; margin-top: 10px; }

/* =========================================================
   ABOUT — LEDGER / ALTERNATING BANDS
========================================================= */
.pullquote{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter) 60px;
}
.pullquote p{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 52px);
  color: var(--ink);
  line-height: 1.08;
  max-width: 16ch;
}

.editorial-band{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.editorial-band__media{
  aspect-ratio: 4/3;
  background: var(--ink);
  display: flex; align-items: flex-end; padding: 20px;
}
.editorial-band__copy{ padding: 80px var(--gutter); max-width: 520px; }
.editorial-band--reverse{ direction: rtl; }
.editorial-band--reverse > *{ direction: ltr; }
.editorial-band--dark{ background: var(--ink); color: var(--paper); }
.editorial-band--dark .editorial-band__copy h2{ color: var(--paper); }
.editorial-band--dark .editorial-band__copy p{ color: rgba(247,246,243,0.75); }

.ledger{
  max-width: 900px;
  margin: 0 auto;
  padding: 110px var(--gutter);
  position: relative;
}
.ledger::before{
  content: '';
  position: absolute;
  left: calc(var(--gutter) + 39px);
  top: 110px; bottom: 110px;
  width: 1px;
  background: rgba(23,24,26,0.18);
}
.ledger-item{
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 28px;
  padding: 26px 0;
  position: relative;
}
.ledger-item__dot{
  width: 9px; height: 9px;
  background: var(--hazard);
  margin-top: 8px;
  justify-self: end;
  position: relative;
  z-index: 1;
}
.ledger-item__body h3{
  font-family: var(--display);
  font-weight: 700;
  font-size: 22px;
  margin: 0 0 6px;
}
.ledger-item__body p{ color: var(--steel); margin: 0; }
.ledger-item__year{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--hazard);
  display: block;
  margin-bottom: 4px;
}

/* =========================================================
   EQUIPMENT — BENTO BOARD
========================================================= */
.bento{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter);
}
.bento__grid{
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2px;
  background: rgba(23,24,26,0.15);
}
.bento-tile{
  background: var(--paper);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 220px;
  grid-column: span 3;
}
.bento-tile--wide{ grid-column: span 4; }
.bento-tile--narrow{ grid-column: span 2; }
.bento-tile--dark{ background: var(--ink); color: var(--paper); }
.bento-tile--dark .bento-tile__desc{ color: rgba(247,246,243,0.7); }
.bento-tile--dark .bento-tile__code{ color: var(--hazard); }
.bento-tile__code{
  font-family: var(--mono);
  font-size: 13px;
  color: var(--hazard);
}
.bento-tile__name{
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 34px);
  margin: 14px 0 10px;
}
.bento-tile__desc{ color: var(--steel); font-size: 14px; max-width: 40ch; margin: 0; }
.bento-tile__spec{
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel-light);
  margin-top: 18px;
}

/* =========================================================
   PARTS — LOOKUP TABLE
========================================================= */
.lookup{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
}
.lookup__nav{ position: sticky; top: 120px; align-self: start; }
.lookup__nav-title{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--steel);
  margin-bottom: 16px;
  display: block;
}
.lookup__nav a{
  display: block;
  padding: 10px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(23,24,26,0.12);
  color: var(--steel);
}
.lookup__nav a:hover{ color: var(--ink); }

.lookup table{
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.lookup thead th{
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--steel);
  font-weight: 500;
  padding: 0 0 14px;
  border-bottom: 1px solid var(--ink);
}
.lookup tbody td{
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid rgba(23,24,26,0.12);
  vertical-align: top;
}
.lookup tbody tr:hover{ background: var(--concrete); }
.lookup td.lu-code{ font-family: var(--mono); color: var(--hazard); white-space: nowrap; }
.lookup td.lu-name{ font-family: var(--display); font-weight: 700; font-size: 17px; white-space: nowrap; }
.lookup td.lu-desc{ color: var(--steel); }
.lookup td.lu-spec{ font-family: var(--mono); font-size: 12px; color: var(--steel-light); white-space: nowrap; }

/* =========================================================
   SERVICES — CONNECTED FLOW
========================================================= */
.flow{
  max-width: 900px;
  margin: 0 auto;
  padding: 110px var(--gutter);
  position: relative;
}
.flow::before{
  content: '';
  position: absolute;
  left: 50%; top: 110px; bottom: 110px;
  width: 1px;
  background: rgba(23,24,26,0.18);
  transform: translateX(-50%);
}
.flow-step{
  position: relative;
  width: 46%;
  padding: 28px 30px;
  border: 1px solid rgba(23,24,26,0.18);
  background: var(--paper);
  margin-bottom: 60px;
}
.flow-step:nth-child(odd){ margin-right: 54%; }
.flow-step:nth-child(even){ margin-left: 54%; }
.flow-step::after{
  content: '';
  position: absolute;
  top: 32px;
  width: 8px; height: 8px;
  background: var(--hazard);
}
.flow-step:nth-child(odd)::after{ right: -34px; }
.flow-step:nth-child(even)::after{ left: -34px; }
.flow-step__code{ font-family: var(--mono); font-size: 12px; color: var(--hazard); }
.flow-step__title{ font-family: var(--display); font-weight: 700; font-size: 21px; margin: 8px 0; }
.flow-step__desc{ color: var(--steel); font-size: 14px; margin: 0; }

/* =========================================================
   INDUSTRIES — FULL WIDTH ALTERNATING BANDS WITH WATERMARK
========================================================= */
.sector-band{
  position: relative;
  border-bottom: 1px solid rgba(23,24,26,0.12);
  padding: 70px var(--gutter);
  overflow: hidden;
}
.sector-band:nth-child(even){ background: var(--concrete); }
.sector-band__num{
  position: absolute;
  right: var(--gutter);
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(90px, 14vw, 220px);
  color: rgba(23,24,26,0.05);
  line-height: 1;
  pointer-events: none;
}
.sector-band__inner{ max-width: var(--max); margin: 0 auto; position: relative; }
.sector-band__inner{ display: grid; grid-template-columns: 200px 1fr 220px; gap: 32px; align-items: center; }
.sector-band__code{ font-family: var(--mono); font-size: 13px; color: var(--hazard); }
.sector-band__name{ font-family: var(--display); font-weight: 700; font-size: clamp(26px, 3vw, 38px); margin: 0; }
.sector-band__desc{ color: var(--steel); margin: 0; max-width: 52ch; }
.sector-band__tag{ font-family: var(--mono); font-size: 12px; color: var(--steel-light); text-align: right; }

/* =========================================================
   BRANCHES — MANIFEST WITH ROUTE LINE
========================================================= */
.manifest{
  max-width: var(--max);
  margin: 0 auto;
  padding: 100px var(--gutter);
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 40px;
}
.manifest__rail{ position: relative; }
.manifest__rail svg{ position: sticky; top: 140px; }
.manifest-entry{
  padding: 34px 0;
  border-bottom: 1px solid rgba(23,24,26,0.15);
  display: grid;
  grid-template-columns: 90px 1fr 220px 120px;
  gap: 24px;
  align-items: start;
}
.manifest-entry:first-child{ padding-top: 0; }
.manifest-entry__code{ font-family: var(--mono); color: var(--hazard); font-size: 14px; padding-top: 4px; }
.manifest-entry__name{ font-family: var(--display); font-weight: 700; font-size: 26px; }
.manifest-entry__addr{ color: var(--steel); font-size: 14px; margin-top: 6px; }
.manifest-entry__hours{ font-family: var(--mono); font-size: 12px; color: var(--steel-light); margin-top: 8px; display: block; }
.manifest-entry__phone{ font-family: var(--mono); font-size: 14px; color: var(--ink); }
.manifest-entry__dir{ font-size: 13px; font-weight: 600; border-bottom: 1px solid var(--ink); width: fit-content; justify-self: end; }

/* =========================================================
   AUTOZONE — RETAIL EXCEPTION (brand red is deliberate here only)
========================================================= */
.retail-hero{
  background: #0F0F10;
  color: var(--paper);
  padding: 200px var(--gutter) 100px;
  position: relative;
  overflow: hidden;
}
.retail-hero__word{
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(60px, 11vw, 160px);
  color: #E2231A;
  line-height: 0.85;
  margin: 0 0 20px;
}
.retail-hero p{ color: rgba(247,246,243,0.75); max-width: 50ch; }

.retail-strip{
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px var(--gutter);
}
.retail-chip{
  font-family: var(--mono);
  font-size: 13px;
  border: 1px solid rgba(23,24,26,0.25);
  padding: 10px 18px;
}

.retail-stores{
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter) 100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.retail-store{
  border: 1px solid rgba(23,24,26,0.2);
  padding: 30px;
}
.retail-store__code{ font-family: var(--mono); font-size: 12px; color: #E2231A; }
.retail-store__name{ font-family: var(--display); font-weight: 700; font-size: 24px; margin: 10px 0; }
.retail-store__addr{ color: var(--steel); font-size: 14px; }
.retail-store__phone{ font-family: var(--mono); font-size: 13px; color: var(--steel); margin-top: 10px; display: block; }

/* =========================================================
   CONTACT — WORK ORDER TICKET
========================================================= */
.ticket{
  max-width: var(--max);
  margin: 0 auto 100px;
  padding: 0 var(--gutter);
}
.ticket__frame{
  border: 1px solid var(--ink);
  display: grid;
  grid-template-columns: 1fr 1.3fr;
}
.ticket__stub{
  background: var(--ink);
  color: var(--paper);
  padding: 56px 44px;
  position: relative;
}
.ticket__stub-id{
  font-family: var(--mono);
  font-size: 12px;
  color: var(--hazard);
  margin-bottom: 40px;
  display: block;
}
.ticket__stub h2{ color: var(--paper); font-size: clamp(26px, 3vw, 34px); }
.ticket__stub-list{ margin-top: 40px; border-top: 1px solid rgba(247,246,243,0.2); }
.ticket__stub-row{
  display: flex; justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid rgba(247,246,243,0.2);
  font-size: 14px;
}
.ticket__stub-row span:last-child{ font-family: var(--mono); color: rgba(247,246,243,0.7); }
.ticket__perf{
  border-left: 1px dashed rgba(23,24,26,0.3);
}
.ticket__form{ padding: 56px 44px; }
.ticket__form-title{ font-family: var(--mono); font-size: 12px; color: var(--steel); margin-bottom: 24px; display: block; }

/* =========================================================
   RESPONSIVE — NEW PAGE LAYOUTS
========================================================= */
@media (max-width: 900px){
  .nav__links, .nav__phone{ display: none; }
  .nav__burger{
    display: flex; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 6px; cursor: pointer;
  }
  .nav__burger span{ width: 22px; height: 2px; background: var(--paper); }

  .block--split, .block--reverse{
    grid-template-columns: 1fr;
    direction: ltr;
  }
  .pillars__row{ grid-template-columns: 1fr 1fr; }
  .pillar:nth-child(2){ border-left: 1px solid rgba(23,24,26,0.12); }
  .pillar:nth-child(3){ border-left: none; padding-left: var(--gutter); }

  .branch-row{
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .branch-row__dir{ justify-self: start; margin-top: 6px; }

  .why{ grid-template-columns: 1fr; }
  .why__col:first-child{ border-right: none; border-bottom: 1px solid rgba(23,24,26,0.15); }

  .catalog-row{ grid-template-columns: 1fr; gap: 8px; }
  .catalog-row__spec{ text-align: left; }
  .timeline-row{ grid-template-columns: 1fr; gap: 6px; }
  .contact-page{ grid-template-columns: 1fr; gap: 56px; }

  .editorial-band, .editorial-band--reverse{ grid-template-columns: 1fr; direction: ltr; }
  .editorial-band__copy{ padding: 48px var(--gutter); }
  .ledger::before{ left: 24px; }
  .ledger-item{ grid-template-columns: 40px 1fr; }

  .bento__grid{ grid-template-columns: 1fr 1fr; }
  .bento-tile, .bento-tile--wide, .bento-tile--narrow{ grid-column: span 2; }

  .lookup{ grid-template-columns: 1fr; }
  .lookup__nav{ position: static; display: flex; flex-wrap: wrap; gap: 12px 20px; }
  .lookup__nav a{ border-bottom: none; }
  .lookup table, .lookup thead, .lookup tbody, .lookup th, .lookup td, .lookup tr{ display: block; }
  .lookup thead{ display: none; }
  .lookup tbody tr{ padding: 18px 0; border-bottom: 1px solid rgba(23,24,26,0.12); }
  .lookup tbody td{ padding: 4px 0; border: none; }

  .flow::before{ left: 6px; transform: none; }
  .flow-step{ width: calc(100% - 40px); margin-left: 40px !important; margin-right: 0 !important; }
  .flow-step::after{ left: -26px !important; right: auto !important; }

  .sector-band__inner{ grid-template-columns: 1fr; gap: 12px; }
  .sector-band__tag{ text-align: left; }
  .sector-band__num{ display: none; }

  .manifest{ grid-template-columns: 1fr; }
  .manifest__rail{ display: none; }
  .manifest-entry{ grid-template-columns: 60px 1fr; }
  .manifest-entry__phone{ grid-column: 2; }
  .manifest-entry__dir{ grid-column: 2; justify-self: start; }

  .retail-stores{ grid-template-columns: 1fr; }

  .ticket__frame{ grid-template-columns: 1fr; }
  .ticket__perf{ border-left: none; border-top: 1px dashed rgba(23,24,26,0.3); }
}
