/* ==========================================================================
   Three Threads: Woven Precision design system
   Palette + type locked by the corporate identity. Editorial grid, decisive
   navy and white fields, restrained teal accents, hairline rules. No rounded
   card defaults, no gradients, no decorative motifs.
   ========================================================================== */

/* ---- Fonts (self-hosted, SIL OFL: see fonts/montserrat/OFL.txt) ---- */
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat/montserrat-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat/montserrat-medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat/montserrat-semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Montserrat';
  src: url('/assets/fonts/montserrat/montserrat-bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- Tokens ---- */
:root {
  --navy: #032662;
  --teal: #018D8F;
  --grey: #868687;
  --ink: #0B172A;
  --white: #FFFFFF;
  --cloud: #F4F7F8;
  --mist: #E7F2F2;
  --amber: #F4A300;      /* functional only: PPE, warnings */
  --rule: #D5DCDD;
  --teal-dark: #016B6D;  /* teal for small text: passes 4.5:1 on white */
  --navy-soft: #0A3573;

  --font: 'Montserrat', Arial, Helvetica, sans-serif;
  --max-width: 1200px;
  --gutter: 24px;
  --section-pad: 72px;
}

/* ---- Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.625;              /* 16/26 */
  color: var(--ink);
  background: var(--white);
  font-feature-settings: 'kern';
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4 { margin: 0 0 16px; color: var(--navy); }
h1 { font-size: 32px; line-height: 1.25; font-weight: 700; }   /* 32/40 */
h2 { font-size: 24px; line-height: 1.333; font-weight: 600; }  /* 24/32 */
h3 { font-size: 19px; line-height: 1.35; font-weight: 600; }
h4 { font-size: 16px; line-height: 1.4; font-weight: 600; }

p { margin: 0 0 16px; }
p:last-child { margin-bottom: 0; }

a { color: var(--teal-dark); text-decoration: none; }
a:hover, a:focus { text-decoration: underline; }

ul, ol { margin: 0 0 16px; padding-left: 22px; }

.display {
  font-size: 44px;                  /* 44/52 */
  line-height: 1.18;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.lede { font-size: 18px; line-height: 1.6; }

.caption {
  font-size: 14px;                  /* 14/20 */
  line-height: 1.43;
  font-weight: 500;
}

.label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.muted { color: #5A6572; }

/* ---- Layout ---- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section { padding: var(--section-pad) 0; }
.section--cloud { background: var(--cloud); }
.section--mist { background: var(--mist); }
.section--navy { background: var(--navy); color: var(--white); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }
.section--navy a { color: var(--mist); }
.section--tight { padding: 44px 0; }

.rule { border: 0; border-top: 1px solid var(--rule); margin: 0; }

.kicker {
  display: block;
  color: var(--teal-dark);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section--navy .kicker { color: var(--mist); }

.grid { display: grid; gap: 28px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

@media (max-width: 960px) {
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 32px; }
  .display { font-size: 34px; }
  :root { --section-pad: 52px; }
}

@media (max-width: 600px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .display { font-size: 28px; }
  h1 { font-size: 26px; }
  h2 { font-size: 21px; }
  :root { --section-pad: 40px; }
}

/* ---- Buttons ---- */
.btn {
  display: inline-block;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 13px 28px;
  border: 1px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.btn:hover, .btn:focus { text-decoration: none; }

.btn--primary { background: var(--navy); color: var(--white); }
.btn--primary:hover, .btn--primary:focus { background: var(--navy-soft); color: var(--white); }

.btn--teal { background: var(--teal); color: var(--white); }
.btn--teal:hover, .btn--teal:focus { background: var(--teal-dark); color: var(--white); }

.btn--outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover, .btn--outline:focus { background: var(--navy); color: var(--white); }

.btn--outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn--outline-white:hover, .btn--outline-white:focus { background: var(--white); color: var(--navy); }

.btn--ghost { background: transparent; color: var(--teal-dark); border: 0; padding: 13px 8px; }

.btn--small { padding: 8px 16px; font-size: 13px; }

.btn--danger { background: transparent; color: #A03000; border-color: #A03000; }
.btn--danger:hover, .btn--danger:focus { background: #A03000; color: var(--white); }

/* ---- Header ---- */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 76px;
}

.site-header__logo { display: flex; align-items: center; flex-shrink: 0; }
.site-header__logo img { height: 44px; width: auto; }
.site-header__logo .logo-nodesc { display: none; height: 40px; }

.site-nav { display: flex; align-items: center; gap: 28px; }

.site-nav a {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}
.site-nav a:hover, .site-nav a:focus { text-decoration: none; border-bottom-color: var(--teal); }
.site-nav a.is-active { border-bottom-color: var(--teal); }

.site-nav__basket {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white) !important;
  padding: 9px 18px !important;
  border-bottom: 0 !important;
}
.site-nav__basket:hover { background: var(--navy-soft); }
.site-nav__basket .count {
  background: var(--teal);
  color: var(--white);
  font-size: 12px;
  line-height: 1;
  padding: 4px 8px;
  font-weight: 700;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--navy);
  padding: 9px 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--navy);
  margin: 4px 0;
}

@media (max-width: 1060px) {
  .site-header__logo .logo-full { display: none; }
  .site-header__logo .logo-nodesc { display: block; }
  .site-nav { gap: 18px; }
}

@media (max-width: 880px) {
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--rule);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a {
    padding: 13px var(--gutter);
    border-bottom: 1px solid var(--cloud);
  }
  .site-nav a.is-active { border-left: 3px solid var(--teal); border-bottom-color: var(--cloud); }
  .site-nav__basket { margin: 12px var(--gutter) 0; justify-content: center; }
}

/* ---- Footer ---- */
.site-footer { background: var(--navy); color: var(--white); }
.site-footer a { color: var(--mist); }
.site-footer__main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
  padding: 56px 0 40px;
}
.site-footer__logo img { height: 52px; width: auto; margin-bottom: 18px; }
.site-footer h4 {
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin-bottom: 9px; font-size: 14px; }
.site-footer p { font-size: 14px; line-height: 1.6; }
.site-footer__legal {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  padding: 20px 0;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.site-footer__legal a { color: rgba(255, 255, 255, 0.75); }

@media (max-width: 880px) {
  .site-footer__main { grid-template-columns: 1fr 1fr; padding: 40px 0 28px; }
}
@media (max-width: 560px) {
  .site-footer__main { grid-template-columns: 1fr; }
}

/* ---- Hero ---- */
.hero { background: var(--navy); color: var(--white); overflow: hidden; }
.hero__inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 64px 0;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero p { font-size: 18px; line-height: 1.6; color: rgba(255, 255, 255, 0.92); }
.hero__actions { display: flex; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 880px) {
  .hero__inner { grid-template-columns: 1fr; padding: 44px 0; }
}

/* ---- Product cards (sharp editorial tiles) ---- */
.product-card {
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  transition: border-color 0.15s ease;
}
.product-card:hover { border-color: var(--teal); }
.product-card__media {
  background: var(--cloud);
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.product-card__media img { width: 100%; height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.product-card__body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 4px; }
.product-card__code { font-size: 12px; color: var(--grey); letter-spacing: 0.06em; }
.product-card__name { font-size: 15px; font-weight: 600; line-height: 1.35; margin: 0; }
.product-card__name a { color: var(--navy); }
.product-card__meta { font-size: 13px; color: #5A6572; margin-top: auto; padding-top: 8px; }

.badge-ppe {
  display: inline-block;
  background: var(--amber);
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
}

/* ---- Range tiles ---- */
.range-tile {
  position: relative;
  display: block;
  border: 1px solid var(--rule);
  background: var(--white);
  overflow: hidden;
}
.range-tile:hover { text-decoration: none; border-color: var(--teal); }
.range-tile__media { aspect-ratio: 16 / 9; overflow: hidden; background: var(--cloud); }
.range-tile__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
.range-tile:hover .range-tile__media img { transform: scale(1.03); }
.range-tile__body { padding: 20px 22px 22px; }
.range-tile__thread { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; color: var(--teal-dark); text-transform: uppercase; }
.range-tile__name { color: var(--navy); font-size: 18px; font-weight: 600; margin: 6px 0 8px; line-height: 1.3; }
.range-tile__desc { color: #5A6572; font-size: 14px; line-height: 1.55; margin: 0; }
.range-tile__count { display: inline-block; margin-top: 12px; font-size: 13px; font-weight: 600; color: var(--teal-dark); }

/* ---- Product detail ---- */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.product-detail__media { background: var(--cloud); border: 1px solid var(--rule); padding: 24px; position: sticky; top: 100px; }
.product-detail__media img { width: 100%; object-fit: contain; mix-blend-mode: multiply; }
.illustrative {
  font-size: 12px;
  color: var(--grey);
  margin-top: 10px;
  text-align: right;
  letter-spacing: 0.04em;
}
.spec-table { width: 100%; border-collapse: collapse; margin: 20px 0; }
.spec-table th, .spec-table td {
  text-align: left;
  padding: 11px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  vertical-align: top;
}
.spec-table th { color: var(--navy); font-weight: 600; width: 38%; padding-right: 18px; }

@media (max-width: 880px) {
  .product-detail { grid-template-columns: 1fr; gap: 28px; }
  .product-detail__media { position: static; }
}

/* ---- Forms ---- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 24px; }
.form-grid .form-field--full { grid-column: 1 / -1; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13.5px; font-weight: 600; color: var(--navy); }
.form-field .hint { font-size: 12.5px; color: #5A6572; }

input[type="text"], input[type="email"], input[type="tel"], input[type="password"],
input[type="number"], input[type="date"], select, textarea {
  font-family: var(--font);
  font-size: 15px;
  color: var(--ink);
  padding: 11px 14px;
  border: 1px solid var(--rule);
  background: var(--white);
  width: 100%;
}
input:focus, select:focus, textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: -1px;
  border-color: var(--teal);
}
textarea { min-height: 110px; resize: vertical; }

.field-error { color: #A03000; font-size: 13px; }
.form-field.has-error input, .form-field.has-error select, .form-field.has-error textarea {
  border-color: #A03000;
}

.checkbox-row { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; }
.checkbox-row input { width: auto; margin-top: 4px; }

/* Honeypot: visually removed, still in the DOM for bots */
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ---- Flash messages ---- */
.flash { padding: 14px 18px; margin-bottom: 20px; font-size: 14.5px; border-left: 3px solid; }
.flash--success { background: var(--mist); border-color: var(--teal); color: var(--ink); }
.flash--error { background: #FBEFE9; border-color: #A03000; color: #5C1D00; }
.flash--warning { background: #FDF3DF; border-color: var(--amber); color: #5C4300; }

/* ---- Basket / order tables ---- */
.basket-table { width: 100%; border-collapse: collapse; }
.basket-table th {
  text-align: left;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  border-bottom: 2px solid var(--navy);
  padding: 10px 12px;
}
.basket-table td {
  padding: 16px 12px;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  vertical-align: top;
}
.basket-table .qty-input { width: 84px; }
.basket-line__product { display: flex; gap: 14px; align-items: flex-start; }
.basket-line__thumb {
  width: 64px; height: 64px; flex-shrink: 0;
  background: var(--cloud); border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: center;
}
.basket-line__thumb img { max-width: 100%; max-height: 100%; object-fit: contain; mix-blend-mode: multiply; }
.basket-line__name { font-weight: 600; color: var(--navy); }
.basket-line__config { font-size: 13px; color: #5A6572; margin-top: 3px; line-height: 1.5; }

@media (max-width: 720px) {
  .basket-table thead { display: none; }
  .basket-table, .basket-table tbody, .basket-table tr, .basket-table td { display: block; width: 100%; }
  .basket-table tr { border-bottom: 1px solid var(--rule); padding: 14px 0; }
  .basket-table td { border: 0; padding: 6px 0; }
}

/* ---- Status timeline (tracking + emails-lite) ---- */
.timeline { list-style: none; padding: 0; margin: 24px 0; }
.timeline li {
  position: relative;
  padding: 0 0 24px 30px;
  border-left: 2px solid var(--rule);
  margin-left: 8px;
}
.timeline li:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline li::before {
  content: '';
  position: absolute;
  left: -7px;
  top: 2px;
  width: 12px;
  height: 12px;
  background: var(--white);
  border: 2px solid var(--teal);
}
.timeline li.is-done::before { background: var(--teal); }
.timeline .when { font-size: 12.5px; color: var(--grey); display: block; }
.timeline .what { font-weight: 600; color: var(--navy); }

.status-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  background: var(--cloud);
  color: var(--navy);
  border: 1px solid var(--rule);
}
.status-pill--new { background: var(--mist); border-color: var(--teal); color: var(--teal-dark); }
.status-pill--quoted { background: #FDF3DF; border-color: var(--amber); color: #5C4300; }
.status-pill--confirmed, .status-pill--in_production, .status-pill--ready { background: var(--navy); border-color: var(--navy); color: var(--white); }
.status-pill--delivered, .status-pill--closed { background: var(--cloud); color: var(--ink); }
.status-pill--cancelled, .status-pill--declined { background: #FBEFE9; border-color: #A03000; color: #5C1D00; }

/* ---- Process steps ---- */
.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0; border-top: 1px solid var(--rule); }
.step { padding: 24px 18px 8px; border-left: 1px solid var(--rule); }
.step:first-child { border-left: 0; }
.step__num { font-size: 13px; font-weight: 700; color: var(--teal-dark); letter-spacing: 0.08em; }
.step__name { font-weight: 600; color: var(--navy); margin: 6px 0 8px; }
.step p { font-size: 13.5px; color: #5A6572; line-height: 1.55; }
@media (max-width: 960px) { .steps { grid-template-columns: repeat(3, 1fr); } .step { border-top: 1px solid var(--rule); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } .step { border-left: 0; padding-left: 0; } }

/* ---- Value / pillar blocks ---- */
.pillar-block { border: 1px solid var(--rule); padding: 30px 28px; background: var(--white); display: flex; flex-direction: column; }
.pillar-block h3 { letter-spacing: 0.1em; text-transform: uppercase; font-size: 16px; }
.pillar-block ul { list-style: none; padding: 0; margin: 0 0 18px; }
.pillar-block li { padding: 8px 0; border-bottom: 1px solid var(--cloud); font-size: 14.5px; }
.pillar-block li:last-child { border-bottom: 0; }
.pillar-block .btn { margin-top: auto; align-self: flex-start; }

/* ---- Editorial media band ---- */
.media-band img { width: 100%; max-height: 480px; object-fit: cover; }

/* ---- Breadcrumbs ---- */
.breadcrumbs { font-size: 13px; color: var(--grey); padding: 18px 0 0; }
.breadcrumbs a { color: var(--teal-dark); }
.breadcrumbs span { margin: 0 6px; color: var(--rule); }

/* ---- Pagination ---- */
.pagination { display: flex; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.pagination a, .pagination span {
  display: inline-block;
  min-width: 40px;
  text-align: center;
  padding: 9px 12px;
  border: 1px solid var(--rule);
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.pagination a:hover { border-color: var(--teal); text-decoration: none; }
.pagination .is-current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ---- Catalogue filter bar ---- */
.filter-bar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--rule);
  margin-bottom: 32px;
}
.filter-bar select { width: auto; min-width: 180px; }
.filter-bar input[type="text"] { width: auto; flex: 1; min-width: 180px; }
.filter-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.filter-chips a {
  font-size: 13px;
  font-weight: 600;
  padding: 7px 14px;
  border: 1px solid var(--rule);
  color: var(--navy);
}
.filter-chips a.is-active { background: var(--navy); color: var(--white); border-color: var(--navy); }
.filter-chips a:hover { border-color: var(--teal); text-decoration: none; }

/* ---- WhatsApp floating button ---- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 12px 18px;
  box-shadow: 0 2px 10px rgba(11, 23, 42, 0.25);
}
.wa-float:hover { background: var(--teal-dark); color: var(--white); text-decoration: none; }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
@media (max-width: 600px) {
  .wa-float span { display: none; }
  .wa-float { padding: 14px; }
}

/* ---- Reference panel (order submitted) ---- */
.reference-panel {
  background: var(--mist);
  border: 1px solid var(--teal);
  padding: 28px 30px;
  margin: 24px 0;
}
.reference-panel .ref {
  font-size: 30px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}

/* ---- Content prose pages ---- */
.prose { max-width: 780px; }
.prose h2 { margin-top: 40px; }
.prose h3 { margin-top: 28px; }

.values-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.values-list li { border-top: 3px solid var(--teal); padding-top: 14px; }
.values-list .v-name { font-weight: 700; color: var(--navy); display: block; margin-bottom: 6px; }
.values-list p { font-size: 13.5px; color: #5A6572; line-height: 1.55; }
@media (max-width: 960px) { .values-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-list { grid-template-columns: 1fr; } }

.industry-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--rule); border: 1px solid var(--rule); }
.industry-grid div { background: var(--white); padding: 24px 22px; }
.industry-grid .i-name { font-weight: 600; color: var(--navy); display: block; margin-bottom: 6px; }
.industry-grid p { font-size: 13.5px; color: #5A6572; margin: 0; line-height: 1.55; }
@media (max-width: 880px) { .industry-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .industry-grid { grid-template-columns: 1fr; } }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 56px; align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card { border: 1px solid var(--rule); padding: 26px 28px; margin-bottom: 20px; }
.contact-card h3 { margin-bottom: 10px; }
.contact-card p { font-size: 14.5px; }

/* ---- Utility ---- */
.mt-0 { margin-top: 0; } .mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; }
.mb-8 { margin-bottom: 8px; } .mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.text-center { text-align: center; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

.skip-link {
  position: absolute;
  left: -9999px;
  background: var(--navy);
  color: var(--white);
  padding: 10px 18px;
  z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

.empty-state {
  border: 1px dashed var(--rule);
  padding: 48px 32px;
  text-align: center;
  color: #5A6572;
}
