:root {
  --red: #b30713;
  --red-dark: #87000a;
  --red-soft: #f7e8e9;
  --ink: #101820;
  --ink-2: #222c35;
  --muted: #64717d;
  --line: #dfe3e7;
  --surface: #f5f6f7;
  --white: #fff;
  --yellow: #ffc400;
  --shadow: 0 20px 60px rgba(16, 24, 32, .12);
  --radius: 18px;
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 94px; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.locked { overflow: hidden; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.container { width: var(--container); margin-inline: auto; }

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 10px 16px;
  color: #fff;
  background: var(--ink);
  border-radius: 8px;
}

.topbar {
  color: rgba(255, 255, 255, .88);
  background: var(--ink);
  font-size: 12px;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 36px;
}

.topbar p { margin: 0; letter-spacing: .04em; }
.topbar-links { display: flex; gap: 24px; }
.topbar-links a { display: inline-flex; align-items: center; gap: 7px; }
.topbar-links a:hover { color: #fff; }
.topbar svg { width: 14px; height: 14px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(255, 255, 255, .97);
  border-bottom: 1px solid rgba(16, 24, 32, .08);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  min-height: 80px;
  gap: 28px;
}

.brand { flex: 0 0 210px; }
.brand img { width: 210px; height: auto; }

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-left: auto;
}

.main-nav a {
  position: relative;
  padding: 29px 0 26px;
  color: #3e4851;
  font-size: 14px;
  font-weight: 700;
}

.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav a:hover,
.main-nav a.active { color: var(--red); }

.main-nav a:hover::after,
.main-nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.cart-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 0 13px 0 15px;
  color: var(--white);
  background: var(--ink);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, background .2s ease;
}

.cart-button:hover { background: var(--red); transform: translateY(-1px); }
.cart-button svg { width: 18px; height: 18px; }

.cart-button strong {
  display: grid;
  width: 23px;
  height: 23px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-size: 11px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 11px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: 690px;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay { position: absolute; inset: 0; }

.hero-image {
  background: url("assets/images/hero-equipe-epi.jpg") center center / cover no-repeat;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 25, .95) 0%, rgba(10, 18, 25, .83) 33%, rgba(10, 18, 25, .2) 66%, rgba(10, 18, 25, .04) 100%),
    linear-gradient(0deg, rgba(10, 18, 25, .36), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  align-self: center;
  padding-block: 90px 70px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 17px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  line-height: 1.4;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: currentColor;
}

.eyebrow.light { color: var(--yellow); }

.hero h1,
.section h2,
.contact-section h2,
.modal h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1.05;
}

.hero h1 { max-width: 710px; font-size: clamp(50px, 6vw, 78px); }
.hero h1 span { color: var(--yellow); }

.hero-copy {
  max-width: 630px;
  margin: 27px 0 31px;
  color: rgba(255, 255, 255, .82);
  font-size: 18px;
  line-height: 1.7;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; height: 18px; }
.button-primary { color: var(--white); background: var(--red); box-shadow: 0 10px 25px rgba(179, 7, 19, .24); }
.button-primary:hover { background: var(--red-dark); box-shadow: 0 15px 32px rgba(179, 7, 19, .3); }
.button-primary:disabled { opacity: .65; cursor: wait; transform: none; }
.button-ghost { color: var(--white); background: rgba(255, 255, 255, .07); border-color: rgba(255, 255, 255, .42); backdrop-filter: blur(10px); }
.button-ghost:hover { background: rgba(255, 255, 255, .15); }
.button-dark { color: #fff; background: var(--ink); }
.button-full { width: 100%; }

.hero-reassurance {
  display: flex;
  gap: 0;
  margin-top: 70px;
}

.hero-reassurance div {
  display: grid;
  min-width: 195px;
  padding: 0 27px;
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.hero-reassurance div:first-child { padding-left: 0; border-left: 0; }
.hero-reassurance strong { color: var(--white); font-size: 15px; text-transform: uppercase; }
.hero-reassurance span { color: rgba(255, 255, 255, .62); font-size: 12px; }

.trust-strip { color: var(--white); background: var(--red); }

.trust-inner {
  display: flex;
  align-items: center;
  min-height: 86px;
  gap: 40px;
}

.trust-inner > p {
  flex: 0 0 205px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  line-height: 1.3;
}

.sector-list {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-left: 40px;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.sector-list span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.sector-list svg { width: 24px; height: 24px; color: var(--yellow); }

.section { padding: 110px 0; }
.section-heading { margin-bottom: 48px; }
.section-heading h2, .company-copy h2 { font-size: clamp(38px, 5vw, 58px); }

.split-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  align-items: end;
  gap: 70px;
}

.split-heading > p { margin: 0 0 4px; color: var(--muted); }
.section-categories { background: var(--surface); }

.category-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  grid-template-rows: 280px 280px;
  gap: 18px;
}

.category-card {
  position: relative;
  min-width: 0;
  padding: 0;
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  text-align: left;
}

.category-card-large { grid-row: span 2; }
.category-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s cubic-bezier(.2, .8, .2, 1); }
.category-shade { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8, 15, 21, .92) 0%, rgba(8, 15, 21, .1) 72%); }
.category-card:hover img { transform: scale(1.05); }

.category-content {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  padding: 30px;
}

.category-content small { margin-bottom: 7px; color: var(--yellow); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.category-content strong { font-family: Georgia, "Times New Roman", serif; font-size: 27px; line-height: 1.15; }
.category-card-large .category-content strong { font-size: 36px; }
.category-content > span { max-width: 430px; margin-top: 6px; color: rgba(255, 255, 255, .7); font-size: 13px; }
.category-content b { display: inline-flex; align-items: center; gap: 10px; margin-top: 18px; font-size: 12px; text-transform: uppercase; }
.category-content i { color: var(--yellow); font-size: 18px; font-style: normal; }

.catalogue-section { background: #fff; }

.catalogue-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.search-box { position: relative; width: min(100%, 330px); }
.search-box svg { position: absolute; top: 50%; left: 17px; width: 19px; height: 19px; color: var(--muted); transform: translateY(-50%); }
.search-box input {
  width: 100%;
  height: 50px;
  padding: 0 16px 0 48px;
  color: var(--ink);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 9px;
  outline: none;
}
.search-box input:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(179, 7, 19, .1); }

.filter-bar {
  display: flex;
  gap: 8px;
  margin-bottom: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}

.filter-bar::-webkit-scrollbar { display: none; }
.filter-button {
  flex: 0 0 auto;
  min-height: 41px;
  padding: 0 17px;
  color: #515d67;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.filter-button:hover,
.filter-button.active { color: #fff; background: var(--ink); border-color: var(--ink); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card:hover {
  border-color: transparent;
  box-shadow: 0 18px 45px rgba(16, 24, 32, .11);
  transform: translateY(-5px);
}

.product-visual { position: relative; aspect-ratio: 1.1; overflow: hidden; background: var(--surface); }
.product-visual img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-visual img { transform: scale(1.04); }

.product-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  padding: 6px 9px;
  color: #fff;
  background: var(--red);
  border-radius: 5px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.product-info { display: flex; flex: 1; flex-direction: column; padding: 20px; }
.product-category { margin: 0 0 7px; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .09em; text-transform: uppercase; }
.product-info h3 { margin: 0; color: var(--ink); font-size: 19px; line-height: 1.2; }
.product-info p { margin: 11px 0; color: var(--muted); font-size: 14px; }
.product-standard { display: inline-flex; align-items: center; gap: 8px; margin-top: auto; color: #51606d; font-size: 12px; font-weight: 700; }
.product-standard svg { width: 16px; height: 16px; color: var(--red); }
.product-action-row { display: flex; align-items: center; justify-content: space-between; gap: 15px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line); }
.quote-label { display: grid; }
.quote-label small { color: var(--muted); font-size: 11px; }
.quote-label strong { color: var(--ink); font-size: 15px; }
.add-to-cart { display: grid; width: 45px; height: 45px; place-items: center; color: #fff; background: var(--red); border: 0; border-radius: 12px; cursor: pointer; }
.add-to-cart svg { width: 20px; height: 20px; }
.empty-products { padding: 36px; color: var(--muted); text-align: center; background: var(--surface); border-radius: 16px; }

.process-section { color: #fff; background: var(--ink); }
.process-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; align-items: start; }
.process-intro p { color: rgba(255, 255, 255, .7); }
.process-intro h2 { color: #fff; font-size: clamp(38px, 5vw, 56px); }
.text-link { display: inline-flex; gap: 8px; margin-top: 20px; color: var(--red); font-weight: 900; }
.light-link { color: var(--yellow); }
.process-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 18px; padding: 22px; background: rgba(255, 255, 255, .07); border: 1px solid rgba(255, 255, 255, .12); border-radius: 16px; }
.process-list span { display: grid; width: 52px; height: 52px; place-items: center; color: var(--ink); background: var(--yellow); border-radius: 14px; font-family: Georgia, "Times New Roman", serif; font-weight: 900; }
.process-list strong { color: #fff; font-size: 18px; }
.process-list p { margin: 4px 0 0; color: rgba(255, 255, 255, .66); }

.company-layout,
.contact-layout,
.checkout-layout {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 70px;
  align-items: center;
}

.company-visual { position: relative; overflow: hidden; border-radius: 24px; box-shadow: var(--shadow); }
.company-visual img { width: 100%; min-height: 520px; object-fit: cover; }
.company-badge { position: absolute; right: 24px; bottom: 24px; display: grid; padding: 18px 22px; color: #fff; background: var(--red); border-radius: 16px; }
.company-copy p { color: var(--muted); }
.commitment-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
.commitment-grid div { padding: 20px; background: var(--surface); border-radius: 16px; }
.commitment-grid svg { width: 26px; height: 26px; color: var(--red); }
.commitment-grid strong, .commitment-grid span { display: block; }
.commitment-grid strong { margin-top: 10px; color: var(--ink); }
.commitment-grid span { margin-top: 4px; color: var(--muted); font-size: 13px; }

.contact-section { padding: 95px 0; color: #fff; background: linear-gradient(135deg, var(--red), var(--ink)); }
.contact-section h2 { color: #fff; font-size: clamp(38px, 5vw, 58px); }
.contact-copy p { color: rgba(255, 255, 255, .75); }
.contact-details { display: grid; gap: 14px; margin-top: 28px; }
.contact-details a { display: flex; align-items: center; gap: 13px; padding: 15px; background: rgba(255, 255, 255, .09); border: 1px solid rgba(255, 255, 255, .14); border-radius: 14px; }
.contact-details svg { width: 24px; height: 24px; color: var(--yellow); }
.contact-details small, .contact-details strong { display: block; }
.contact-details small { color: rgba(255, 255, 255, .58); }

.contact-card,
.modal-panel {
  color: var(--ink);
  background: #fff;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-card { padding: 34px; }
.form-heading { margin-bottom: 22px; }
.form-heading span { color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.form-heading h3 { margin: 4px 0 0; font-family: Georgia, "Times New Roman", serif; font-size: 32px; line-height: 1.1; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
label { display: grid; gap: 7px; color: #334052; font-size: 13px; font-weight: 900; }
input, select, textarea { width: 100%; padding: 13px 14px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 12px; outline: 0; }
input:focus, select:focus, textarea:focus { border-color: var(--red); box-shadow: 0 0 0 4px rgba(179, 7, 19, .1); }
textarea { min-height: 115px; resize: vertical; }
.full-width { grid-column: 1 / -1; }
.form-note, .consent { color: var(--muted); font-size: 12px; }
.consent { display: flex; align-items: flex-start; gap: 10px; margin: 18px 0; font-weight: 700; }
.consent input { width: auto; margin-top: 4px; }
.form-status { display: none; margin-top: 14px; padding: 12px 14px; border-radius: 12px; font-size: 13px; font-weight: 800; }
.form-status.show { display: block; }
.form-status.success { color: #116536; background: #e8f8ef; }
.form-status.error { color: #8a1118; background: #fde9ea; }
.email-fallback { width: 100%; margin-top: 12px; color: var(--red); background: transparent; border: 0; cursor: pointer; font-weight: 900; }

.site-footer { padding: 64px 0 26px; color: rgba(255, 255, 255, .72); background: #0b1117; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .75fr .9fr .9fr; gap: 42px; }
.footer-logo img { width: 210px; margin-bottom: 16px; filter: brightness(0) invert(1); }
.footer-grid h3 { margin: 0 0 14px; color: #fff; }
.footer-grid a, .footer-grid p { display: block; margin: 7px 0; color: rgba(255, 255, 255, .72); }
.footer-grid a:hover, .footer-bottom a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .11); font-size: 13px; }
.footer-bottom p { margin: 0; }
.footer-bottom div { display: flex; flex-wrap: wrap; gap: 18px; }

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 89;
  background: rgba(0, 0, 0, .45);
}

.cart-drawer {
  position: fixed;
  z-index: 90;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  width: min(100%, 430px);
  height: 100vh;
  padding: 24px;
  background: #fff;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .18);
  transform: translateX(105%);
  transition: transform .32s ease;
}

.cart-drawer.open { transform: translateX(0); }
.cart-header { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.cart-header p { margin: 0; color: var(--red); font-size: 11px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.cart-header h2 { margin: 3px 0 0; font-size: 26px; }
.icon-button { display: grid; width: 42px; height: 42px; place-items: center; background: var(--surface); border: 0; border-radius: 12px; cursor: pointer; }
.icon-button svg { width: 22px; height: 22px; }
.cart-items { overflow: auto; padding: 18px 0; }
.cart-item { display: grid; grid-template-columns: 86px 1fr; gap: 14px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-item img { width: 86px; height: 86px; object-fit: cover; border-radius: 12px; }
.cart-item-top { display: flex; gap: 10px; justify-content: space-between; }
.cart-item h3 { margin: 0; font-size: 15px; line-height: 1.25; }
.cart-item p { margin: 4px 0 12px; color: var(--muted); font-size: 12px; }
.remove-item { color: var(--muted); background: transparent; border: 0; cursor: pointer; }
.remove-item svg { width: 18px; height: 18px; }
.quantity-control { display: inline-flex; align-items: center; overflow: hidden; border: 1px solid var(--line); border-radius: 999px; }
.quantity-control button { width: 34px; height: 31px; background: #fff; border: 0; cursor: pointer; }
.quantity-control span { min-width: 30px; text-align: center; font-weight: 900; }
.cart-empty { display: grid; place-items: center; align-content: center; gap: 12px; min-height: 430px; text-align: center; }
.empty-icon { display: grid; width: 74px; height: 74px; place-items: center; color: var(--red); background: var(--red-soft); border-radius: 24px; }
.empty-icon svg { width: 34px; height: 34px; }
.cart-empty h3 { margin: 8px 0 0; }
.cart-empty p { max-width: 280px; margin: 0 0 8px; color: var(--muted); }
.cart-footer { padding-top: 18px; border-top: 1px solid var(--line); }
.cart-summary { display: flex; justify-content: space-between; margin-bottom: 10px; font-weight: 900; }
.cart-footer p { margin: 0 0 18px; color: var(--muted); font-size: 13px; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  padding: 24px;
}

.modal.open { display: grid; place-items: center; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(0, 0, 0, .55); }
.modal-panel { position: relative; z-index: 1; width: min(100%, 1000px); max-height: min(92vh, 820px); overflow: auto; padding: 36px; }
.modal-close { position: absolute; top: 16px; right: 16px; }
.checkout-intro p { color: var(--muted); }
.checkout-preview { display: grid; gap: 10px; margin-top: 22px; }
.checkout-preview-item { display: flex; justify-content: space-between; gap: 20px; padding: 12px 14px; background: var(--surface); border-radius: 12px; }

.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 340px;
  padding: 14px 18px;
  color: #fff;
  background: var(--ink);
  border-radius: 14px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
}

.toast.show { opacity: 1; transform: translateY(0); }

@media (max-width: 1040px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .company-layout, .contact-layout, .checkout-layout, .process-layout { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .topbar { display: none; }
  .header-inner { min-height: 74px; }
  .menu-toggle { display: block; margin-left: auto; }
  .main-nav {
    position: absolute;
    top: 74px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 14px; }
  .main-nav a::after { display: none; }
  .cart-button span { display: none; }
  .hero { min-height: 610px; }
  .hero-overlay { background: linear-gradient(90deg, rgba(10, 18, 25, .95), rgba(10, 18, 25, .68)); }
  .hero h1 { font-size: 46px; }
  .hero-reassurance { flex-direction: column; gap: 16px; margin-top: 42px; }
  .hero-reassurance div { padding: 0 0 0 18px; border-left: 2px solid rgba(255, 255, 255, .24); }
  .trust-inner, .sector-list { flex-direction: column; align-items: flex-start; }
  .sector-list { padding-left: 0; border-left: 0; }
  .split-heading, .category-grid, .catalogue-heading { grid-template-columns: 1fr; }
  .category-grid { grid-template-rows: none; }
  .category-card { min-height: 280px; }
  .category-card-large { grid-row: auto; }
  .catalogue-heading { display: grid; align-items: start; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .commitment-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  :root { --container: min(100% - 28px, 1180px); }
  .brand { flex-basis: 168px; }
  .brand img { width: 168px; }
  .hero h1 { font-size: 39px; }
  .section { padding: 76px 0; }
  .product-grid, .form-grid, .commitment-grid, .footer-grid { grid-template-columns: 1fr; }
  .contact-card, .modal-panel { padding: 24px; }
  .footer-bottom { flex-direction: column; }
  .cart-drawer { width: 100%; }
}
