/* Athos Textile V2 — dependency-free responsive landing page */

:root {
  --navy: #0b2f52;
  --navy-deep: #071f35;
  --blue: #176fc2;
  --blue-dark: #105a9f;
  --blue-soft: #eaf3fb;
  --red: #ed2636;
  --ivory: #f6f2e8;
  --paper: #fffefa;
  --white: #ffffff;
  --ink: #132820;
  --text: #31423a;
  --muted: #69776f;
  --line: #dfe5e1;
  --line-blue: #cfe0ef;
  --success: #16855f;
  --shadow-sm: 0 4px 14px rgba(7, 31, 53, 0.07);
  --shadow-md: 0 12px 34px rgba(7, 31, 53, 0.11);
  --radius-sm: 3px;
  --radius-md: 5px;
  --radius-lg: 7px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

body {
  min-width: 0;
  margin: 0;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-is-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.sr-only {
  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 {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 200;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-180%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-container {
  width: min(1220px, calc(100% - 48px));
  margin-inline: auto;
}

.anchor-target {
  scroll-margin-top: 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
  transition:
    background-color 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(23, 111, 194, 0.22);
}

.button-primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 14px 28px rgba(23, 111, 194, 0.28);
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(7, 31, 53, 0.46);
  color: var(--white);
}

.button-ghost:hover {
  border-color: var(--white);
  background: rgba(7, 31, 53, 0.72);
}

.site-header {
  position: relative;
  z-index: 60;
  background: var(--white);
}

.utility-bar {
  min-height: 38px;
  background: var(--navy);
  color: var(--white);
}

.utility-inner {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  font-size: 12px;
}

.utility-contacts {
  display: flex;
  align-items: center;
  gap: 22px;
}

.utility-contacts a {
  transition: color 160ms ease;
}

.utility-contacts a:hover {
  color: #beddff;
}

.utility-contacts span,
.utility-inner > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}

.main-nav {
  position: relative;
  min-height: 88px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.98);
  transition:
    box-shadow 180ms ease,
    min-height 180ms ease;
}

.site-header.is-scrolled .main-nav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  min-height: 76px;
  box-shadow: var(--shadow-sm);
}

.site-header.is-scrolled {
  min-height: 126px;
}

.nav-inner {
  display: grid;
  min-height: inherit;
  grid-template-columns: minmax(240px, 1fr) auto minmax(240px, 1fr);
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 13px;
}

.brand img {
  width: 62px;
  height: 62px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 2px;
}

.brand strong {
  color: var(--navy-deep);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding: 32px 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 750;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  background: var(--red);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.search-jump,
.menu-button {
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
}

.search-jump:hover,
.menu-button:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.nav-quote {
  min-height: 46px;
  padding-inline: 18px;
}

.menu-button {
  display: none;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(7, 31, 53, 0.58);
}

.mobile-sheet {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  display: flex;
  width: min(92vw, 420px);
  height: 100dvh;
  overflow-y: auto;
  overscroll-behavior: contain;
  flex-direction: column;
  padding: 26px;
  padding-bottom: max(26px, env(safe-area-inset-bottom));
  background: var(--paper);
  box-shadow: -30px 0 80px rgba(7, 31, 53, 0.25);
  transform: translateX(104%);
  transition: transform 260ms var(--ease);
}

.mobile-sheet.is-open {
  transform: translateX(0);
}

.mobile-sheet-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.mobile-sheet-head small {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.mobile-sheet h2 {
  margin: 7px 0 0;
  color: var(--navy-deep);
  font-size: 25px;
  line-height: 1.05;
}

.menu-close {
  min-width: 66px;
  min-height: 46px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--white);
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.mobile-sheet nav {
  display: grid;
  margin: 22px 0 30px;
}

.mobile-sheet nav a {
  display: flex;
  min-height: 58px;
  align-items: center;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  color: var(--navy-deep);
  font-size: 17px;
  font-weight: 800;
}

.mobile-sheet nav a span {
  color: var(--blue);
  font-size: 11px;
}

.mobile-quote {
  width: 100%;
}

.mobile-sheet-contact {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--text);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: 610px;
  overflow: hidden;
  background: var(--navy-deep);
}

.hero-media {
  position: absolute;
  inset: 0;
  background: url("../assets/athos-v2-hero-team.jpg") center / cover no-repeat;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: rgba(7, 31, 53, 0.22);
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 610px;
  align-items: center;
}

.hero-copy {
  width: min(590px, 52%);
  padding: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  background: rgba(7, 31, 53, 0.86);
  color: var(--white);
  box-shadow: var(--shadow-md);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 520px;
  margin: 0;
  font-size: clamp(48px, 5.2vw, 74px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.hero-copy h1 span {
  display: block;
  margin-top: 9px;
  color: #c8ddf3;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.75em;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.04em;
}

.hero-copy > p:not(.eyebrow, .hero-note) {
  max-width: 520px;
  margin: 25px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
  line-height: 1.65;
}

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

.hero-resource-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.4;
  text-decoration: none;
}

.hero-resource-link span {
  color: #c8ddf3;
  font-weight: 650;
}

.hero-resource-link .hero-resource-title {
  color: var(--white);
  font-weight: 750;
}

.hero-description-mobile,
.mobile-product-preview {
  display: none;
}

.hero-resource-link:hover {
  border-color: var(--white);
}

.hero-resource-link:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 4px;
}

.hero-note {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
}

.image-disclaimer {
  position: absolute;
  right: 24px;
  bottom: 16px;
  z-index: 3;
  margin: 0;
  padding: 7px 10px;
  border-radius: 7px;
  background: rgba(7, 31, 53, 0.72);
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
}

.scope-strip {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.scope-grid article {
  display: flex;
  min-height: 138px;
  align-items: center;
  gap: 20px;
  padding: 30px;
  border-right: 1px solid var(--line);
}

.scope-grid article:first-child {
  border-left: 1px solid var(--line);
}

.scope-grid article > span {
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  font-style: italic;
}

.scope-grid h2 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 17px;
  line-height: 1.25;
}

.scope-grid p {
  max-width: 300px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.section {
  padding: 104px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 46px;
}

.section-heading h2,
.materials-heading h2,
.quote-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(38px, 4vw, 60px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.section-heading > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.sectors-section {
  background: var(--paper);
}

.sector-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.2fr;
  gap: 18px;
}

.sector-card {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.sector-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-md);
}

.sector-card img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  object-position: center;
  transition: transform 400ms var(--ease);
}

.sector-card:hover img {
  transform: scale(1.035);
}

.sector-card > span {
  display: grid;
  min-height: 90px;
  grid-template-columns: auto 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 17px 18px 18px;
  background: var(--white);
}

.sector-card small {
  grid-row: span 2;
  color: var(--blue);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-style: italic;
}

.sector-card strong {
  color: var(--navy-deep);
  font-size: 16px;
  line-height: 1.25;
}

.sector-card em {
  margin-top: 4px;
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
}

.catalogue-section {
  border-top: 1px solid var(--line);
  background: #f5f8fa;
}

.catalogue-heading {
  margin-bottom: 32px;
}

.catalogue-tools {
  display: grid;
  gap: 20px;
  margin-bottom: 20px;
}

.catalogue-search {
  display: grid;
  grid-template-columns: 1fr auto;
  max-width: 760px;
  padding: 6px;
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(7, 31, 53, 0.05);
}

.catalogue-search input {
  min-width: 0;
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  background: transparent;
  color: var(--navy-deep);
  font-size: 15px;
  outline: 0;
}

.catalogue-search input::placeholder {
  color: #64736b;
}

.catalogue-search button {
  min-width: 122px;
  min-height: 48px;
  padding: 0 18px;
  border: 0;
  border-radius: 8px;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  transition: background-color 160ms ease;
}

.catalogue-search button:hover {
  background: var(--blue);
}

.filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.filter-list button,
.reset-products {
  min-height: 44px;
  padding: 0 17px;
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy-deep);
  cursor: pointer;
  font-size: 13px;
  font-weight: 750;
  transition:
    background-color 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.filter-list button:hover,
.filter-list button.is-active {
  border-color: var(--blue);
  background: var(--blue);
  color: var(--white);
}

.results-count {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 13px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 31, 53, 0.05);
  transition:
    transform 220ms var(--ease),
    box-shadow 220ms var(--ease);
}

.product-card-link {
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100%;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

.product-card-link:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: -3px;
}

.product-card:hover,
.product-card:focus-within {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.product-card[hidden] {
  display: none;
}

.product-card figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #f7f8f7;
}

.product-card figure img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  transition: transform 360ms var(--ease);
}

.catalogue-product-card figure {
  background: var(--white);
}

.catalogue-product-card figure img {
  padding: clamp(24px, 3vw, 42px);
  object-fit: contain;
}

.product-card:hover figure img {
  transform: scale(1.035);
}

.product-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
}

.product-copy {
  display: grid;
  min-height: 170px;
  padding: 22px;
}

.product-copy p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 21px;
  line-height: 1.2;
}

.product-card-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: end;
  width: fit-content;
  max-width: 100%;
  margin-top: 24px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.35;
}

.product-card-action::after {
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 15px;
  line-height: 1;
  transition: transform 180ms var(--ease);
}

.product-card:hover .product-card-action,
.product-card:focus-within .product-card-action {
  border-color: var(--red);
  color: var(--red);
}

.product-card:hover .product-card-action::after,
.product-card:focus-within .product-card-action::after {
  transform: translateX(3px);
}

.empty-state {
  padding: 52px 24px;
  border: 1px solid var(--line-blue);
  border-radius: var(--radius-md);
  background: var(--white);
  text-align: center;
}

.empty-state strong {
  color: var(--navy-deep);
  font-size: 22px;
}

.empty-state p {
  margin: 10px 0 22px;
  color: var(--muted);
}

.confection-section {
  background: var(--paper);
}

.confection-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  align-items: stretch;
  gap: clamp(44px, 6vw, 84px);
}

.confection-media {
  position: relative;
  width: 100%;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ivory);
}

.confection-media img {
  /* Keep the image out of row sizing: the copy determines the desktop height. */
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.confection-media figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.confection-copy h2 {
  max-width: 720px;
  margin: 0;
  color: var(--navy-deep);
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
}

.confection-copy > p:not(.section-kicker):not(.customisation-note) {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.materials-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.75fr);
  align-items: end;
  gap: 72px;
  margin-bottom: 44px;
}

.materials-heading h2 {
  max-width: 720px;
  font-size: clamp(38px, 4vw, 58px);
}

.materials-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.materials-intro .text-action {
  display: inline-flex;
}

.material-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.material-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--white);
  transition:
    border-color 220ms var(--ease),
    box-shadow 220ms var(--ease),
    transform 220ms var(--ease);
}

.material-card:hover {
  border-color: #b8cada;
  box-shadow: 0 7px 20px rgba(7, 31, 53, 0.08);
  transform: translateY(-2px);
}

.material-card figure {
  position: relative;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  background: #edf0ed;
}

.material-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms var(--ease);
}

.material-card:hover img {
  transform: scale(1.015);
}

.material-card figcaption {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: 2px;
  background: rgba(7, 31, 53, 0.78);
  color: rgba(255, 255, 255, 0.82);
  font-size: 9px;
  font-weight: 700;
}

.material-card-copy {
  display: grid;
  min-height: 132px;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  padding: 22px;
}

.material-card-copy > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.material-card h3 {
  margin: -4px 0 7px;
  color: var(--navy-deep);
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.material-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.materials-note {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.text-action {
  width: max-content;
  margin-top: 30px;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--blue);
  color: var(--blue);
  font-size: 14px;
  font-weight: 850;
}

.text-action:hover {
  border-color: var(--red);
  color: var(--red);
}

.quote-section {
  padding-top: 18px;
  background: var(--paper);
}

.quote-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.88fr);
  gap: 64px;
  padding: 66px;
  overflow: hidden;
  border: 1px solid var(--line-blue);
  border-radius: 32px;
  background: #edf5fb;
  color: var(--navy-deep);
  box-shadow: 0 24px 70px rgba(7, 31, 53, 0.09);
}

.section-kicker--light {
  color: var(--blue);
}

.quote-copy h2 {
  max-width: 600px;
  color: var(--navy-deep);
  font-size: clamp(42px, 3.8vw, 56px);
}

.quote-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}

.quote-steps {
  display: grid;
  gap: 9px;
  max-width: 560px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.quote-steps li {
  display: flex;
  min-height: 50px;
  align-items: center;
  gap: 13px;
  padding: 8px 14px 8px 9px;
  border: 1px solid rgba(207, 224, 239, 0.92);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.72);
}

.quote-steps span {
  display: inline-flex;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 5px 14px rgba(7, 31, 53, 0.07);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 12px;
  font-style: italic;
}

.quote-steps strong {
  color: var(--navy-deep);
  font-size: 14px;
}

.quote-contact-list {
  display: grid;
  max-width: 560px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  font-size: 14px;
  font-style: normal;
}

.quote-contact-list > a,
.quote-contact-address {
  display: grid;
  gap: 5px;
  min-width: 0;
  padding: 13px 15px;
  border: 1px solid var(--line-blue);
  border-radius: 13px;
  background: var(--white);
}

.quote-contact-address {
  grid-column: 1 / -1;
}

.quote-contact-list small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-contact-list strong,
.quote-contact-address > span {
  color: var(--navy-deep);
  font-size: 13px;
  line-height: 1.45;
}

.quote-contact-list strong {
  overflow-wrap: anywhere;
  font-weight: 800;
}

.quote-contact-list > a {
  transition:
    border-color 160ms ease,
    transform 160ms ease,
    box-shadow 160ms ease;
}

.quote-contact-list > a:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(7, 31, 53, 0.08);
}

.quote-form {
  display: grid;
  align-self: center;
  gap: 20px;
  padding: 34px;
  border: 1px solid var(--line-blue);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(7, 31, 53, 0.1);
}

.quote-form-heading {
  padding-bottom: 2px;
}

.quote-form-heading p {
  margin: 0 0 7px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.quote-form-heading h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 27px;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.quote-form-heading span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.quote-form > div {
  display: grid;
  gap: 8px;
}

.quote-form label {
  color: var(--navy-deep);
  font-size: 12px;
  font-weight: 800;
}

.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid var(--line-blue);
  border-radius: 11px;
  background: #f8fbfd;
  color: var(--navy-deep);
  outline: 0;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 111, 194, 0.12);
}

.quote-form select {
  min-height: 54px;
  padding: 0 15px;
}

.quote-select {
  position: relative;
}

.quote-select.is-enhanced > select {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.quote-select-trigger {
  display: flex;
  width: 100%;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border: 1px solid var(--line-blue);
  border-radius: 13px;
  background: #f8fbfd;
  color: var(--navy-deep);
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: 0;
  transition:
    border-color 160ms ease,
    background-color 160ms ease,
    box-shadow 160ms ease,
    transform 160ms ease;
}

.quote-select-trigger:hover {
  border-color: #a9c7df;
  background: var(--white);
}

.quote-select-trigger:focus-visible,
.quote-select.is-open .quote-select-trigger {
  border-color: var(--blue);
  background: var(--white);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(23, 111, 194, 0.12);
}

.quote-select-value {
  min-width: 0;
  overflow: hidden;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quote-select-chevron {
  width: 9px;
  height: 9px;
  flex: 0 0 auto;
  margin: -4px 3px 0 0;
  border-right: 2px solid var(--navy-deep);
  border-bottom: 2px solid var(--navy-deep);
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.quote-select.is-open .quote-select-chevron {
  margin-top: 5px;
  transform: rotate(225deg);
}

.quote-select-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 9px);
  right: 0;
  left: 0;
  display: grid;
  gap: 4px;
  max-height: min(390px, calc(100vh - 150px));
  padding: 8px;
  overflow-y: auto;
  overscroll-behavior: contain;
  border: 1px solid var(--line-blue);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 22px 52px rgba(7, 31, 53, 0.18);
  transform-origin: top center;
  animation: quote-select-in 150ms ease-out;
}

.quote-select-menu[hidden] {
  display: none;
}

.quote-select-option {
  display: grid;
  width: 100%;
  min-height: 63px;
  grid-template-columns: 38px minmax(0, 1fr) 24px;
  align-items: center;
  gap: 11px;
  padding: 9px 10px;
  border: 0;
  border-radius: 11px;
  background: transparent;
  color: var(--navy-deep);
  font: inherit;
  text-align: left;
  cursor: pointer;
  outline: 0;
  transition:
    background-color 140ms ease,
    box-shadow 140ms ease;
}

.quote-select-option:hover,
.quote-select-option:focus-visible {
  background: #f1f7fb;
  outline: 2px solid rgba(23, 111, 194, 0.62);
  outline-offset: -2px;
  box-shadow: inset 0 0 0 1px rgba(23, 111, 194, 0.12);
}

.quote-select-option.is-selected {
  background: rgba(23, 111, 194, 0.09);
}

.quote-select-number {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid var(--line-blue);
  border-radius: 50%;
  background: var(--white);
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.04em;
}

.quote-select-option-copy {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.quote-select-option-copy strong {
  font-size: 14px;
  line-height: 1.3;
}

.quote-select-option-copy small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}

.quote-select-check {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  opacity: 0;
  transform: scale(0.75);
  transition:
    opacity 140ms ease,
    transform 140ms ease;
}

.quote-select-option.is-selected .quote-select-check {
  opacity: 1;
  transform: scale(1);
}

@keyframes quote-select-in {
  from {
    opacity: 0;
    transform: translateY(-5px) scale(0.985);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.quote-form textarea {
  min-height: 138px;
  resize: vertical;
  padding: 15px;
  line-height: 1.6;
}

.quote-form .button-primary {
  min-height: 54px;
  background: var(--success);
  box-shadow: 0 12px 26px rgba(22, 133, 95, 0.2);
}

.quote-form .button-primary:hover {
  background: #106d4e;
  box-shadow: 0 15px 30px rgba(22, 133, 95, 0.26);
}

.quote-form > p {
  margin: -7px 0 0;
  color: var(--muted);
  font-size: 11px;
  text-align: center;
}

.site-footer {
  padding: 70px 0 30px;
  background: var(--navy);
  color: var(--white);
}

.footer-main {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.footer-brand {
  display: flex;
  max-width: 520px;
  align-items: center;
  gap: 20px;
}

.footer-brand > a {
  flex: 0 0 auto;
}

.footer-brand img {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  object-fit: contain;
}

.footer-brand strong {
  font-size: 20px;
  text-transform: uppercase;
}

.footer-brand p {
  max-width: 420px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.65;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
}

.footer-main nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-weight: 750;
}

.footer-main nav a:hover {
  color: var(--white);
}

.legal-identifiers {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.legal-identifiers div {
  display: flex;
  justify-content: center;
  gap: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.13);
}

.legal-identifiers div:last-child {
  border-right: 0;
}

.legal-identifiers dt {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 900;
}

.legal-identifiers dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom p:nth-child(2) {
  text-align: center;
}

.footer-bottom a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-self: end;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
}

.whatsapp-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 50;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: var(--success);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(15, 81, 59, 0.28);
  font-size: 13px;
  font-weight: 850;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.whatsapp-fab:hover {
  transform: translateY(-3px);
}

.whatsapp-fab.is-hidden {
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
}

html.reveal-ready [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms var(--ease) var(--reveal-delay, 0ms),
    transform 620ms var(--ease) var(--reveal-delay, 0ms);
}

html.reveal-ready [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .site-container {
    width: min(100% - 38px, 1040px);
  }

  .nav-inner {
    grid-template-columns: minmax(220px, 1fr) auto minmax(190px, 1fr);
    gap: 18px;
  }

  .desktop-nav {
    gap: 19px;
  }

  .search-jump {
    display: none;
  }

  .hero-copy {
    width: min(610px, 58%);
  }

  .sector-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sector-card {
    min-height: 460px;
  }

  .sector-card img {
    height: 370px;
  }

  .product-card figure img {
    height: 410px;
  }

  .quote-panel {
    gap: 46px;
    padding: 58px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 90px;
  }

  .utility-inner > p {
    display: none;
  }

  .utility-inner {
    justify-content: center;
  }

  .desktop-nav,
  .nav-quote {
    display: none;
  }

  .main-nav,
  .site-header.is-scrolled .main-nav {
    min-height: 80px;
  }

  .site-header.is-scrolled {
    min-height: 118px;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }

  .brand img {
    width: 55px;
    height: 55px;
  }

  .brand strong {
    font-size: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-copy {
    width: min(660px, 78%);
  }

  .scope-grid {
    grid-template-columns: 1fr;
  }

  .scope-grid article {
    min-height: 112px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .section {
    padding: 84px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 38px;
  }

  .section-heading > p {
    max-width: 640px;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-card figure img {
    height: 380px;
  }

  .quote-panel {
    grid-template-columns: 1fr;
  }

  .materials-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .material-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-panel {
    gap: 42px;
  }
}

@media (max-width: 680px) {
  .site-container {
    width: min(100% - 28px, 600px);
  }

  .utility-bar,
  .utility-inner {
    min-height: 34px;
  }

  .utility-contacts {
    width: 100%;
    justify-content: space-between;
    gap: 14px;
    font-size: 11px;
  }

  .utility-contacts a:nth-child(2) {
    display: none;
  }

  .main-nav,
  .site-header.is-scrolled .main-nav {
    min-height: 72px;
  }

  .site-header.is-scrolled {
    min-height: 106px;
  }

  .brand {
    gap: 9px;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 12px;
  }

  .brand small {
    display: none;
  }

  .menu-button {
    min-height: 46px;
    padding-inline: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .hero-media::after {
    background: rgba(7, 31, 53, 0.5);
  }

  .hero-inner {
    align-items: flex-end;
    padding-bottom: 34px;
  }

  .hero-copy {
    width: 100%;
    padding: 30px 24px;
    border-radius: 15px;
    background: rgba(7, 31, 53, 0.9);
  }

  .hero-copy h1 {
    font-size: clamp(41px, 13vw, 58px);
  }

  .hero-copy > p:not(.eyebrow, .hero-note) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .image-disclaimer {
    display: none;
  }

  .scope-grid article {
    padding: 24px 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .materials-heading h2,
  .quote-copy h2 {
    font-size: clamp(34px, 10vw, 46px);
  }

  .sector-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .sector-card,
  .sector-card img {
    min-height: 0;
  }

  .sector-card img {
    height: 310px;
  }

  .catalogue-search {
    grid-template-columns: 1fr;
  }

  .catalogue-search button {
    min-height: 46px;
  }

  .filter-list {
    flex-wrap: nowrap;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .filter-list::-webkit-scrollbar {
    display: none;
  }

  .filter-list button {
    flex: 0 0 auto;
  }

  .product-card figure img {
    height: min(520px, calc(100vw - 28px));
  }

  .materials-heading {
    margin-bottom: 32px;
  }

  .material-grid {
    grid-template-columns: 1fr;
  }

  .material-card-copy {
    min-height: 0;
  }

  .quote-panel {
    gap: 36px;
    padding: 38px 22px;
    border-radius: 18px;
  }

  .quote-contact-list {
    grid-template-columns: 1fr;
  }

  .quote-contact-address {
    grid-column: auto;
  }

  .quote-form {
    padding: 24px 20px;
    border-radius: 18px;
  }

  .footer-main {
    display: grid;
    gap: 34px;
  }

  .footer-main nav {
    justify-content: flex-start;
  }

  .legal-identifiers {
    grid-template-columns: repeat(2, 1fr);
  }

  .legal-identifiers div {
    min-height: 46px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .legal-identifiers div:nth-child(even) {
    border-right: 0;
  }

  .legal-identifiers div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom p:nth-child(2) {
    text-align: left;
  }

  .footer-bottom a {
    justify-self: start;
  }

  .whatsapp-fab {
    right: 14px;
    bottom: 14px;
    min-height: 46px;
    padding-inline: 16px;
  }
}

@media (max-width: 1100px) {
  .desktop-nav,
  .nav-quote {
    display: none;
  }

  .nav-inner {
    display: flex;
    justify-content: space-between;
  }

  .menu-button {
    display: block;
  }
}

@media (max-width: 420px) {
  .utility-contacts span {
    display: none;
  }

  .utility-contacts {
    justify-content: flex-start;
  }

  .hero,
  .hero-inner {
    min-height: 720px;
  }

  .hero-copy {
    padding: 27px 20px;
  }

  .hero-copy h1 {
    font-size: 39px;
  }

  .section {
    padding: 64px 0;
  }

  .sector-card img {
    height: 270px;
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 62px;
    height: 62px;
  }
}

/* Product studio: clear Face / Dos working views. */
.customizer-side-switch {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: #f4f7f6;
}

.customizer-side-switch button {
  display: grid;
  min-height: 58px;
  place-content: center;
  gap: 2px;
  padding: 9px 14px;
  border: 0;
  border-right: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  color: #596b62;
  cursor: pointer;
  font: inherit;
  text-align: center;
  transition: background-color 150ms ease, color 150ms ease, box-shadow 150ms ease;
}

.customizer-side-switch button:last-child {
  border-right: 0;
}

.customizer-side-switch button:hover {
  background: #eaf3fb;
  color: var(--navy-deep);
}

.customizer-side-switch button[aria-pressed="true"] {
  background: var(--navy);
  box-shadow: inset 0 -3px 0 var(--blue);
  color: var(--white);
}

.customizer-side-switch button:focus-visible {
  position: relative;
  z-index: 1;
  outline: 3px solid rgba(23, 111, 194, 0.36);
  outline-offset: -3px;
}

.customizer-side-switch span {
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.03em;
  line-height: 1.25;
}

.customizer-side-switch small {
  color: inherit;
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.3;
  opacity: 0.76;
}

@media (max-width: 680px) {
  .customizer-side-switch button {
    min-height: 52px;
    padding-inline: 8px;
  }

  .customizer-side-switch small {
    font-size: 9px;
  }
}

@media (max-width: 580px) {
  .filter-list {
    flex-wrap: wrap;
    overflow-x: visible;
  }

  .filter-list button {
    flex: 1 1 auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  html.reveal-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

/* Executive refinement: restrained, readable and deliberately low-decoration. */

body {
  line-height: 1.6;
}

.button {
  min-height: 50px;
  padding-inline: 23px;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 750;
}

.button:hover,
.whatsapp-fab:hover {
  transform: none;
}

.button-primary,
.button-primary:hover,
.quote-form .button-primary,
.quote-form .button-primary:hover {
  box-shadow: none;
}

.main-nav {
  border-bottom-color: #d3dcd7;
}

.site-header.is-scrolled .main-nav {
  box-shadow: 0 3px 14px rgba(7, 31, 53, 0.08);
}

.brand strong {
  font-weight: 850;
}

.brand small {
  font-size: 10px;
}

.desktop-nav a {
  font-size: 15px;
  font-weight: 700;
}

.search-jump,
.menu-button,
.menu-close {
  min-height: 48px;
  border-radius: 4px;
  font-size: 14px;
}

.hero-copy {
  border-radius: 4px;
  border-left: 4px solid var(--red);
  background: rgba(7, 31, 53, 0.9);
  box-shadow: none;
}

.hero-copy h1 {
  font-size: clamp(46px, 4.9vw, 68px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.01;
}

.hero-copy > p:not(.eyebrow, .hero-note) {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

.eyebrow,
.section-kicker {
  font-size: 12px;
  letter-spacing: 0.13em;
}

.image-disclaimer,
.product-card figcaption,
.material-card figcaption {
  border-radius: 2px;
}

.scope-grid article > span,
.sector-card small {
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.scope-grid p {
  font-size: 14px;
}

.section-heading h2,
.materials-heading h2,
.quote-copy h2 {
  font-size: clamp(36px, 3.7vw, 54px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.section-heading > p,
.materials-intro > p,
.quote-copy > p:not(.section-kicker) {
  font-size: 17px;
  line-height: 1.7;
}

.sector-grid {
  gap: 14px;
}

.sector-card {
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(7, 31, 53, 0.06);
}

.sector-card:hover {
  border-color: #b8cada;
  box-shadow: 0 7px 20px rgba(7, 31, 53, 0.09);
  transform: translateY(-2px);
}

.sector-card:hover img,
.product-card:hover figure img {
  transform: scale(1.015);
}

.sector-card > span {
  min-height: 96px;
  padding: 19px 20px;
}

.sector-card strong {
  font-size: 17px;
}

.sector-card em {
  font-size: 13px;
}

.catalogue-search {
  padding: 4px;
  border-color: #bfd1df;
  border-radius: 4px;
  box-shadow: none;
}

.catalogue-search input {
  min-height: 50px;
  font-size: 16px;
}

.catalogue-search button {
  min-height: 50px;
  border-radius: 2px;
  font-size: 14px;
}

.filter-list {
  gap: 8px;
}

.filter-list button,
.reset-products {
  min-height: 46px;
  padding-inline: 18px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
}

.results-count {
  font-size: 14px;
}

.product-grid {
  gap: 18px;
}

.product-card {
  border-radius: 4px;
  box-shadow: 0 3px 12px rgba(7, 31, 53, 0.05);
}

.product-card:hover,
.product-card:focus-within {
  border-color: #b8cada;
  box-shadow: 0 7px 20px rgba(7, 31, 53, 0.08);
  transform: translateY(-2px);
}

.product-card figcaption {
  font-size: 10px;
}

.product-copy p {
  font-size: 11px;
}

.product-copy h3 {
  font-size: 22px;
}

.product-card-action,
.text-action {
  font-size: 14px;
}

.empty-state {
  border-radius: 5px;
  box-shadow: none;
}

.quote-panel {
  border-radius: 6px;
  box-shadow: none;
}

.quote-steps {
  gap: 0;
  border-top: 1px solid var(--line-blue);
}

.quote-steps li {
  min-height: 58px;
  padding: 10px 0;
  border: 0;
  border-bottom: 1px solid var(--line-blue);
  border-radius: 0;
  background: transparent;
}

.quote-steps span {
  border-radius: 3px;
  background: var(--navy);
  color: var(--white);
  box-shadow: none;
  font-family: inherit;
  font-style: normal;
  font-weight: 800;
}

.quote-steps strong {
  font-size: 15px;
}

.quote-contact-list > a,
.quote-contact-address {
  border-radius: 4px;
}

.quote-contact-list > a:hover {
  box-shadow: none;
  transform: none;
}

.quote-contact-list small {
  font-size: 10px;
}

.quote-contact-list strong,
.quote-contact-address > span {
  font-size: 14px;
}

.quote-form {
  border-radius: 5px;
  box-shadow: 0 7px 24px rgba(7, 31, 53, 0.08);
}

.quote-form label {
  font-size: 14px;
}

.quote-form select,
.quote-form textarea,
.quote-select-trigger {
  border-radius: 4px;
  font-size: 16px;
}

.quote-select-trigger {
  min-height: 60px;
}

.quote-select-menu {
  border-radius: 4px;
  box-shadow: 0 12px 32px rgba(7, 31, 53, 0.14);
}

.quote-select-option {
  border-radius: 2px;
}

.quote-select-number {
  border-radius: 3px;
}

.quote-form > p {
  font-size: 12px;
}

.whatsapp-fab {
  min-height: 50px;
  border-radius: 4px;
  box-shadow: 0 7px 20px rgba(15, 81, 59, 0.2);
  font-size: 14px;
  font-weight: 750;
}

/* B2B catalogue expansion. */

.catalogue-download-nav {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  padding: 0 4px;
  border-bottom: 2px solid var(--blue);
  color: var(--navy-deep);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.nav-quote {
  white-space: nowrap;
}

.catalogue-download-nav:hover {
  color: var(--blue-dark);
}

.mobile-catalogue-download {
  margin-top: -16px;
  border-color: var(--line-blue);
  background: var(--white);
  color: var(--navy-deep);
}

.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 24px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  line-height: 1.45;
  list-style: none;
}

.hero-assurances li {
  position: relative;
  padding-left: 17px;
}

.hero-assurances li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--red);
  content: "";
  transform: translateY(-50%);
}

.scope-grid {
  grid-template-columns: repeat(4, 1fr);
}

.scope-grid article {
  min-height: 148px;
  padding: 28px 22px;
}

.categories-section {
  background: #f3f6f7;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.category-card {
  display: grid;
  min-height: 218px;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  padding: 26px;
  border: 1px solid #d6e0dc;
  border-top: 3px solid var(--blue);
  border-radius: 4px;
  background: var(--white);
  color: var(--navy-deep);
  transition: border-color 160ms ease, background-color 160ms ease;
}

.category-card:hover,
.category-card:focus-visible {
  border-color: #9fbfd8;
  background: #fafdff;
}

.category-card > span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.category-card h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.25;
}

.category-card p {
  margin: 9px 0 0;
  color: #5c6f65;
  font-size: 15px;
  line-height: 1.6;
}

.category-card > strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue-dark);
  font-size: 13px;
}

.category-card > strong::after {
  content: "→";
  font-family: Arial, sans-serif;
  font-size: 16px;
}

.category-card--service {
  border-top-color: var(--red);
  background: var(--navy);
  color: var(--white);
}

.category-card--service:hover,
.category-card--service:focus-visible {
  border-color: #375d7e;
  border-top-color: var(--red);
  background: #0d385f;
}

.category-card--service > span,
.category-card--service > strong {
  color: #cce4fb;
}

.category-card--service p {
  color: rgba(255, 255, 255, 0.76);
}

.catalogue-filter-groups {
  display: grid;
  gap: 16px;
  padding-top: 4px;
}

.filter-group {
  display: grid;
  gap: 9px;
}

.filter-group-label {
  color: #5e7167;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.catalogue-help-link {
  justify-self: start;
  border-bottom: 1px solid currentColor;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 750;
}

.customisation-methods {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid #cad7d1;
}

.customisation-methods article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #dce4e0;
}

.customisation-methods article > span {
  color: var(--blue-dark);
  font-size: 11px;
  font-weight: 850;
}

.customisation-methods h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 17px;
}

.customisation-methods p {
  margin: 4px 0 0;
  color: #5b6e64;
  font-size: 14px;
  line-height: 1.55;
}

.customisation-note {
  margin: 18px 0 0;
  padding-left: 14px;
  border-left: 3px solid var(--red);
  color: #54675d;
  font-size: 13px;
  line-height: 1.6;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 24px;
}

.process-section {
  border-top: 1px solid var(--line);
  background: #f3f6f7;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 0;
  border-top: 1px solid #cfdad5;
  list-style: none;
}

.process-grid li {
  display: grid;
  min-height: 185px;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 16px;
  padding: 26px 22px;
  border-right: 1px solid #cfdad5;
  border-bottom: 1px solid #cfdad5;
  background: rgba(255, 255, 255, 0.58);
}

.process-grid li:nth-child(3n + 1) {
  border-left: 1px solid #cfdad5;
}

.process-grid li > span {
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
}

.process-grid h3 {
  margin: 0;
  color: var(--navy-deep);
  font-size: 19px;
}

.process-grid p {
  margin: 8px 0 0;
  color: #5b6e64;
  font-size: 14px;
  line-height: 1.6;
}

.trust-section {
  background: var(--paper);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 48px;
  align-items: start;
}

.trust-copy h2 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: var(--navy-deep);
  font-size: clamp(36px, 3.7vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.trust-copy > p:not(.section-kicker) {
  max-width: 760px;
  margin: 0;
  color: #52665c;
  font-size: 17px;
  line-height: 1.7;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  border-top: 1px solid #cfdbd5;
  list-style: none;
}

.trust-list li {
  display: grid;
  gap: 5px;
  padding: 18px 20px 18px 0;
  border-bottom: 1px solid #cfdbd5;
}

.trust-list li:nth-child(odd) {
  border-right: 1px solid #cfdbd5;
}

.trust-list li:nth-child(even) {
  padding-left: 20px;
}

.trust-list strong {
  color: var(--navy-deep);
  font-size: 15px;
}

.trust-list span {
  color: #63766c;
  font-size: 13px;
  line-height: 1.55;
}

.catalogue-resource {
  display: grid;
  gap: 16px;
  padding: 34px;
  border-top: 4px solid var(--red);
  border-radius: 4px;
  background: var(--navy);
  color: var(--white);
}

.catalogue-resource > p {
  margin: 0;
  color: #bddcfa;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalogue-resource h3 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
}

.catalogue-resource > span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.65;
}

.catalogue-resource .button-primary {
  justify-content: flex-start;
  margin-top: 4px;
  background: var(--white);
  color: var(--navy-deep);
}

.catalogue-resource .button-primary:hover {
  background: var(--blue-soft);
}

.catalogue-resource small {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  line-height: 1.55;
}

.quote-form-row {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px !important;
}

.quote-form-row > div {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.quote-form label span {
  color: #728078;
  font-size: 12px;
  font-weight: 500;
}

.quote-form input {
  width: 100%;
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--line-blue);
  border-radius: 4px;
  background: #f8fbfd;
  font-size: 16px;
}

.quote-form input:focus {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(23, 111, 194, 0.12);
}

.quote-product-context {
  margin: -2px 0 0 !important;
  padding: 12px 14px;
  border-left: 3px solid var(--red);
  background: #eef5fb;
  color: var(--navy-deep) !important;
  font-size: 14px !important;
  line-height: 1.5;
  text-align: left !important;
}

.quote-select-menu {
  max-height: min(440px, 70vh);
  overflow-y: auto;
}

.footer-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
  margin-bottom: 52px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.footer-cta p {
  margin: 0 0 6px;
  color: #bcd8f0;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-cta h2 {
  max-width: 680px;
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
}

.footer-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(140px, 1fr));
  gap: 10px;
}

.footer-whatsapp {
  border-color: rgba(255, 255, 255, 0.52);
  color: var(--white);
}

.footer-whatsapp:hover {
  border-color: var(--white);
  background: var(--white);
  color: var(--navy-deep);
}

.footer-catalogue-link {
  grid-column: 1 / -1;
  justify-self: center;
  border-bottom: 1px solid currentColor;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  font-weight: 750;
}

@media (max-width: 1500px) {
  .catalogue-download-nav {
    display: none;
  }
}

@media (max-width: 1220px) {

  .desktop-nav {
    gap: 16px;
  }
}

@media (max-width: 1000px) {
  .confection-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .confection-media img {
    position: static;
    height: auto;
    aspect-ratio: 4 / 3;
  }

  .scope-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .scope-grid article:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .category-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid li:nth-child(3n + 1) {
    border-left: 0;
  }

  .process-grid li:nth-child(odd) {
    border-left: 1px solid #cfdad5;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .catalogue-resource {
    max-width: 720px;
  }

  .footer-cta {
    grid-template-columns: 1fr;
  }

  .footer-cta-actions {
    max-width: 520px;
  }
}

@media (max-width: 680px) {
  .confection-grid {
    gap: 34px;
  }

  .confection-copy h2 {
    font-size: clamp(31px, 10vw, 40px);
  }

  .hero-assurances {
    display: grid;
    gap: 9px;
    margin-top: 20px;
    padding-top: 15px;
    font-size: 12px;
  }

  .scope-grid,
  .category-grid,
  .process-grid,
  .trust-list,
  .quote-form-row {
    grid-template-columns: 1fr;
  }

  .scope-grid article:nth-child(n) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .category-card {
    min-height: 0;
    padding: 22px 20px;
  }

  .catalogue-filter-groups {
    gap: 18px;
  }

  .filter-group {
    min-width: 0;
  }

  .filter-list {
    padding-bottom: 5px;
  }

  .catalogue-help-link {
    font-size: 12px;
    line-height: 1.55;
  }

  .section-actions {
    display: grid;
  }

  .section-actions .button,
  .section-actions .text-action {
    width: 100%;
  }

  .process-grid li:nth-child(n) {
    min-height: 0;
    border-right: 1px solid #cfdad5;
    border-left: 1px solid #cfdad5;
  }

  .trust-list li:nth-child(n) {
    padding: 16px 0;
    border-right: 0;
  }

  .catalogue-resource {
    padding: 26px 22px;
  }

  .catalogue-resource .button-primary {
    justify-content: center;
  }

  .quote-form-row {
    gap: 16px !important;
  }

  .footer-cta {
    gap: 24px;
    margin-bottom: 38px;
    padding-bottom: 32px;
  }

  .footer-cta-actions {
    grid-template-columns: 1fr;
  }

  .footer-catalogue-link {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .whatsapp-fab {
    min-height: 44px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* Desktop catalogue refinement: compact decision tools and denser product cards. */

.product-card-meta {
  display: block;
  margin-top: 10px;
  color: #586a61;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

@media (min-width: 1101px) {
  .catalogue-section {
    padding-block: 76px 96px;
  }

  .catalogue-heading {
    align-items: center;
    gap: 54px;
    margin-bottom: 24px;
  }

  .catalogue-heading h2 {
    font-size: clamp(40px, 3.35vw, 50px);
  }

  .catalogue-tools {
    display: grid;
    grid-template-columns: minmax(340px, 0.82fr) minmax(0, 1.18fr);
    grid-template-areas:
      "search filters"
      "help filters";
    align-items: start;
    gap: 12px 28px;
    margin-bottom: 16px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-top: 3px solid var(--navy);
    border-radius: 4px;
    background: var(--white);
    box-shadow: 0 4px 14px rgba(7, 31, 53, 0.04);
  }

  .catalogue-search {
    grid-area: search;
    max-width: none;
    border-radius: 3px;
  }

  .catalogue-search input {
    min-height: 44px;
    font-size: 15px;
  }

  .catalogue-search button {
    min-width: 108px;
    min-height: 44px;
    font-size: 13px;
  }

  .catalogue-filter-groups {
    grid-area: filters;
    gap: 10px;
    padding-top: 0;
  }

  .filter-group {
    grid-template-columns: 78px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
  }

  .filter-group-label {
    margin: 0;
    font-size: 11px;
  }

  .filter-list {
    gap: 7px;
  }

  .filter-list button,
  .reset-products {
    min-height: 40px;
    padding-inline: 12px;
    border-radius: 3px;
    font-size: 13px;
  }

  .catalogue-help-link {
    grid-area: help;
    align-self: center;
    font-size: 13px;
    line-height: 1.45;
  }

  .results-count {
    margin-bottom: 14px;
    color: #4e6258;
    font-size: 14px;
    font-weight: 750;
  }

  .catalogue-product-card figure img {
    height: 210px;
    padding: 22px;
  }

  .catalogue-product-card .product-copy {
    min-height: 176px;
    padding: 18px 20px 20px;
  }

  .catalogue-product-card .product-copy p {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .catalogue-product-card .product-copy h3 {
    font-size: 19px;
    line-height: 1.25;
  }

  .catalogue-product-card .product-card-meta {
    margin-top: 8px;
    font-size: 13px;
  }

  .catalogue-product-card .product-card-action {
    margin-top: 14px;
    font-size: 13px;
  }
}

/* Quotation: a short, product-aware brief before the WhatsApp conversation. */
.quote-panel {
  overflow: visible;
}

.quote-select.opens-up .quote-select-menu {
  top: auto;
  bottom: calc(100% + 9px);
  transform-origin: bottom center;
}

.quote-form .quote-product-context {
  display: grid;
  grid-template-columns: 60px minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  margin: 0 !important;
  padding: 10px 12px;
  border-left-color: var(--blue);
}

.quote-product-context img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  border: 1px solid var(--line);
  background: var(--white);
}

.quote-product-context > div {
  display: grid;
  gap: 2px;
}

.quote-product-context span {
  color: #4c6071;
  font-size: 12px;
}

.quote-product-context strong {
  font-size: 16px;
  line-height: 1.35;
}

.quote-product-context a {
  justify-self: start;
  color: var(--blue-dark);
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.quote-form .quote-field-help {
  margin: -4px 0 0;
  color: #4c6071;
  font-size: 13px;
  line-height: 1.5;
  text-align: left;
}

.quote-details-panel {
  min-width: 0;
  border-block: 1px solid var(--line-blue);
}

.quote-details-panel summary {
  min-height: 48px;
  padding: 13px 2px;
  color: var(--navy-deep);
  font-size: 14px;
  font-weight: 750;
  cursor: pointer;
}

.quote-details-panel summary #quote-details-state {
  margin-left: 8px;
  color: #4c6071;
  font-size: 12px;
  font-weight: 500;
}

.quote-details-panel summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
}

.quote-details-panel > div {
  display: grid;
  gap: 8px;
  padding: 0 0 16px;
}

.quote-details-panel textarea {
  min-height: 96px;
  padding: 12px 14px;
  resize: vertical;
}

.quote-submit-area .button {
  min-height: 52px;
  gap: 12px;
}

.quote-submit-area p {
  margin: 0;
  color: #4c6071;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.quote-form-heading span {
  color: #4c6071;
}

.quote-copy > .quote-contact-intro {
  margin-top: 24px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 650;
}

@media (min-width: 981px) {
  .quote-panel {
    grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
    align-items: start;
    gap: 36px;
    padding: 28px;
    scroll-margin-top: -28px;
  }

  .quote-copy {
    padding: 16px 8px;
  }

  .quote-copy h2 {
    max-width: 370px;
    font-size: clamp(30px, 2.6vw, 40px);
    line-height: 1.15;
  }

  .quote-copy > p:not(.section-kicker) {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }

  .quote-copy .section-kicker {
    margin-bottom: 12px;
  }

  .quote-steps {
    margin-top: 20px;
  }

  .quote-steps li {
    min-height: 46px;
    padding-block: 7px;
    gap: 10px;
  }

  .quote-steps span {
    width: 28px;
    height: 28px;
    background: transparent;
    color: var(--blue);
  }

  .quote-steps strong {
    font-size: 14px;
  }

  .quote-contact-list {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 12px;
  }

  .quote-contact-list > a,
  .quote-contact-address {
    gap: 3px;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .quote-contact-list > a strong {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .quote-form {
    align-self: start;
    gap: 14px;
    padding: 24px;
    box-shadow: none;
  }

  .quote-form-heading h3 {
    font-size: 26px;
  }

  .quote-form-heading span {
    margin-top: 5px;
  }

  .quote-form input,
  .quote-select-trigger,
  .quote-form select {
    min-height: 50px;
  }

  .quote-form-row > div {
    align-content: start;
  }

  .quote-form label span {
    white-space: nowrap;
  }
}

@media (max-width: 680px) {
  .quote-product-context strong {
    font-size: 15px;
  }

  .quote-details-panel summary #quote-details-state {
    display: block;
    margin: 4px 0 0 18px;
  }
}

/* Mobile arrival: a concise offer, usable actions and genuine catalogue previews. */
@media (max-width: 680px), (max-width: 980px) and (max-height: 500px) and (pointer: coarse) {
  .home-page .utility-bar,
  .home-page .utility-inner {
    min-height: 44px;
  }

  .home-page .utility-contacts {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .home-page .utility-contacts a:nth-child(2) {
    display: none;
  }

  .home-page .utility-contacts a:first-child {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    font-size: 14px;
    font-weight: 650;
    white-space: nowrap;
  }

  .home-page .utility-contacts span {
    display: inline;
    font-size: 12px;
    white-space: nowrap;
  }

  .home-page .main-nav,
  .home-page .site-header.is-scrolled .main-nav {
    min-height: 68px;
  }

  .home-page .site-header.is-scrolled {
    min-height: 113px;
  }

  .home-page .brand strong {
    font-size: 14px;
  }

  .hero,
  .hero-inner {
    min-height: 0;
  }

  .hero-media {
    display: none;
    background-image: none;
  }

  .hero-inner {
    display: block;
    padding-block: 24px;
  }

  .hero-copy {
    width: 100%;
    padding: 0;
    border: 0;
    background: transparent;
  }

  .hero-copy .eyebrow {
    margin-bottom: 12px;
    color: #b8d6f4;
    font-size: 11px;
    letter-spacing: 0.07em;
    line-height: 1.5;
  }

  .hero-copy h1 {
    max-width: none;
    font-size: clamp(28px, 8.4vw, 36px);
    letter-spacing: -0.025em;
    line-height: 1.12;
  }

  .hero-copy h1 span {
    margin-top: 5px;
    font-family: inherit;
    font-size: 0.8em;
    font-style: normal;
    font-weight: 650;
    letter-spacing: -0.02em;
  }

  .hero-copy > p.hero-description {
    margin-top: 14px;
    color: #edf4fb;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-description-desktop {
    display: none;
  }

  .hero-description-mobile {
    display: inline;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
  }

  .hero-actions .button {
    min-height: 52px;
    padding: 10px 8px;
    font-size: 14px;
    line-height: 1.35;
    text-align: center;
  }

  .hero-resource-link {
    display: grid;
    width: max-content;
    max-width: 100%;
    min-height: 48px;
    gap: 3px;
    align-content: center;
    margin-top: 14px;
    padding-block: 4px;
    border: 0;
    font-size: 13px;
    line-height: 1.4;
  }

  .hero-resource-title {
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .hero-resource-meta {
    white-space: nowrap;
  }

  .hero-assurances {
    display: block;
    margin-top: 12px;
    padding-top: 12px;
    font-size: 13px;
  }

  .hero-assurances li:not(:last-child) {
    display: none;
  }

  .mobile-product-preview {
    display: block;
    padding-block: 18px 22px;
    border-bottom: 1px solid var(--line);
    background: #f4f7f9;
  }

  .mobile-product-preview h2 {
    margin: 0 0 12px;
    color: var(--navy-deep);
    font-size: 16px;
    line-height: 1.3;
  }

  .mobile-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .mobile-preview-grid li {
    min-width: 0;
  }

  .mobile-preview-grid a {
    display: grid;
    height: 100%;
    align-content: start;
    gap: 8px;
    color: var(--navy-deep);
  }

  .mobile-preview-grid img {
    width: 100%;
    height: clamp(92px, 27vw, 130px);
    padding: 9px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: var(--white);
    object-fit: contain;
  }

  .mobile-preview-grid span {
    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
    overflow-wrap: anywhere;
  }

  .mobile-preview-grid a:hover img,
  .mobile-preview-grid a:focus-visible img {
    border-color: var(--blue);
  }

  #devis {
    scroll-margin-top: 12px;
  }
}

@media (max-width: 350px) {
  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .home-page .brand strong {
    font-size: 12px;
  }

  .hero-inner {
    padding-block: 20px;
  }
}

/* Keep the landing page compact without removing any catalogue products. */
.catalogue-disclosure {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  overflow-anchor: none;
}

.catalogue-disclosure p {
  margin: 0;
  color: #4e6258;
  font-size: 15px;
  line-height: 1.5;
}

.catalogue-show-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 12px 24px;
  border: 1px solid var(--blue);
  border-radius: 3px;
  background: var(--white);
  color: var(--blue-dark);
  font-size: 16px;
  font-weight: 750;
  line-height: 1.4;
  cursor: pointer;
  touch-action: manipulation;
}

.catalogue-show-more:hover {
  background: var(--blue-soft);
}

.catalogue-show-more svg {
  flex-shrink: 0;
}

.catalogue-show-more[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

@media (max-width: 680px) {
  .catalogue-disclosure {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
  }

  .catalogue-show-more { width: 100%; }
}

/* Mobile catalogue: show the range first, reveal filters only when needed. */
.catalogue-mobile-intro,
.catalogue-search-icon,
.catalogue-filter-toggle,
.catalogue-mobile-filters,
.catalogue-active-filters,
.catalogue-mobile-help {
  display: none;
}

@media (max-width: 980px) {
  .catalogue-section {
    padding-block: 40px 48px;
  }

  .catalogue-heading {
    gap: 12px;
    margin-bottom: 20px;
  }

  .catalogue-heading .section-kicker {
    margin-bottom: 12px;
    font-size: 11px;
  }

  .catalogue-heading h2 {
    font-size: clamp(27px, 7vw, 32px);
    line-height: 1.15;
    letter-spacing: -0.025em;
  }

  .catalogue-heading .catalogue-desktop-intro {
    display: none;
  }

  .catalogue-heading .catalogue-mobile-intro {
    display: block;
    margin: 0;
    color: #4e6258;
    font-size: 16px;
    line-height: 1.5;
  }

  .catalogue-tools {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px 8px;
    margin-bottom: 16px;
  }

  .catalogue-search {
    grid-template-columns: minmax(0, 1fr) 44px;
    width: 100%;
    padding: 3px;
  }

  .catalogue-search:focus-within {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
  }

  .catalogue-search input {
    min-height: 44px;
    padding-inline: 9px;
    font-size: 16px;
  }

  .catalogue-search button {
    display: grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0;
  }

  .catalogue-search-label {
    display: none;
  }

  .catalogue-search-icon {
    display: block;
  }

  .catalogue-filter-toggle:not([hidden]) {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    min-height: 52px;
    padding: 0 12px;
    border: 1px solid #bfd1df;
    border-radius: 3px;
    background: var(--white);
    color: var(--navy-deep);
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
  }

  .catalogue-filter-toggle[aria-expanded="true"] {
    border-color: var(--blue);
    background: #eaf3fb;
  }

  .catalogue-filter-count:not([hidden]) {
    display: grid;
    place-items: center;
    min-width: 20px;
    min-height: 22px;
    border-radius: 2px;
    background: var(--blue);
    color: var(--white);
    font-size: 12px;
  }

  .catalogue-tools.is-enhanced .catalogue-filter-groups,
  .catalogue-tools .catalogue-help-link {
    display: none;
  }

  .catalogue-filter-groups,
  .catalogue-mobile-filters,
  .catalogue-active-filters {
    grid-column: 1 / -1;
  }

  .catalogue-mobile-filters:not([hidden]) {
    display: grid;
    gap: 16px;
    padding: 16px;
    border: 1px solid #bfd1df;
    border-top: 3px solid var(--blue);
    border-radius: 3px;
    background: var(--white);
  }

  .catalogue-select-fields {
    display: grid;
    gap: 14px;
  }

  .catalogue-select-fields label {
    display: grid;
    gap: 6px;
    min-width: 0;
    color: var(--navy-deep);
    font-size: 14px;
    font-weight: 750;
  }

  .catalogue-select-fields select {
    width: 100%;
    min-height: 48px;
    padding: 8px 10px;
    border: 1px solid #aebfca;
    border-radius: 3px;
    background: var(--white);
    color: var(--navy-deep);
    font: inherit;
    font-size: 16px;
    font-weight: 500;
  }

  .catalogue-apply-filters {
    min-height: 48px;
    padding: 10px 16px;
    border: 1px solid var(--blue);
    border-radius: 3px;
    background: var(--blue);
    color: var(--white);
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    cursor: pointer;
  }

  .catalogue-active-filters:not([hidden]) {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .catalogue-active-filters button {
    max-width: 100%;
    min-height: 44px;
    padding: 8px 10px;
    border: 1px solid #bfd1df;
    border-radius: 3px;
    background: var(--white);
    color: var(--navy-deep);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
    overflow-wrap: anywhere;
    text-align: left;
    cursor: pointer;
  }

  .catalogue-active-filters .catalogue-clear-all {
    border-color: transparent;
    background: transparent;
    color: var(--blue);
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .catalogue-section .results-count {
    margin-bottom: 12px;
    color: #4e6258;
    font-size: 14px;
    font-weight: 700;
  }

  .catalogue-section .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .catalogue-product-card .product-card-link {
    grid-template-columns: minmax(96px, 34%) minmax(0, 1fr);
    grid-template-rows: 1fr;
    min-height: 182px;
  }

  .catalogue-product-card figure {
    display: grid;
    place-items: center;
    border-right: 1px solid #edf0f2;
  }

  .catalogue-product-card figure img {
    width: 100%;
    height: 160px;
    padding: 10px;
    object-fit: contain;
  }

  .catalogue-product-card figcaption {
    display: none;
  }

  .catalogue-product-card .product-copy {
    min-width: 0;
    min-height: 0;
    padding: 16px 14px;
    align-content: start;
  }

  .catalogue-product-card .product-copy p {
    margin-bottom: 6px;
    font-size: 10px;
    letter-spacing: 0.055em;
    line-height: 1.4;
  }

  .catalogue-product-card .product-copy h3 {
    font-size: 18px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .catalogue-product-card .product-card-meta {
    margin-top: 8px;
    color: #4e6258;
    font-size: 13px;
    font-weight: 500;
  }

  .catalogue-product-card .product-card-action {
    margin-top: 12px;
    padding-bottom: 2px;
    font-size: 13px;
    line-height: 1.4;
  }

  .catalogue-product-card:hover,
  .catalogue-product-card:focus-within {
    transform: none;
  }

  .catalogue-section .empty-state {
    padding: 24px 16px;
  }

  .catalogue-mobile-help {
    display: grid;
    gap: 4px;
    margin: 24px 0 0;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: #4e6258;
    font-size: 14px;
  }

  .catalogue-mobile-help a {
    display: flex;
    align-items: center;
    min-height: 44px;
    width: fit-content;
    color: var(--blue);
    font-weight: 750;
    text-decoration: underline;
    text-underline-offset: 3px;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .catalogue-section .product-grid,
  .catalogue-select-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Phone quotation fields: a short brief with the device's native choice picker. */
@media (max-width: 980px) {
  .quote-panel { padding: 24px 12px; }
  .quote-form {
    min-width: 0;
    gap: 16px;
    padding: 18px 14px;
    border-radius: 4px;
    box-shadow: none;
    scroll-margin-top: 12px;
  }
  .quote-form:focus:not(:focus-visible) { outline: none; }
  .quote-form:focus-visible { outline: 2px solid var(--blue); outline-offset: 3px; }
  .quote-form-heading h3 { font-size: 24px; line-height: 1.2; }
  .quote-form-heading span { margin-top: 7px; font-size: 14px; line-height: 1.45; }
  .quote-form .quote-product-context {
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 10px;
  }
  .quote-product-context img { width: 48px; height: 48px; }
  .quote-product-context span { font-size: 12px; }
  .quote-product-context strong { font-size: 15px; line-height: 1.35; overflow-wrap: anywhere; }
  .quote-product-context a { display: inline-flex; min-height: 44px; align-items: center; font-size: 14px; }
  .quote-form label { font-size: 15px; line-height: 1.4; }
  .quote-form label span { display: none; }
  .quote-form input,
  .quote-form select,
  .quote-form textarea {
    min-height: 50px;
    padding: 12px;
    border-radius: 4px;
    font-size: 16px;
    line-height: 1.4;
    scroll-margin-block: 100px 20px;
  }
  .quote-form select { padding-right: 26px; }
  .quote-form input::placeholder,
  .quote-form textarea::placeholder { color: #5c6d7a; opacity: 1; }
  .quote-form-row { gap: 16px !important; }
  .quote-form .quote-field-help { font-size: 13px; line-height: 1.45; }
  .quote-details-panel summary { min-height: 50px; padding-block: 14px; font-size: 15px; line-height: 1.4; }
  .quote-details-panel summary #quote-details-state { margin: 5px 0 0 18px; font-size: 13px; }
  .quote-details-panel summary #quote-details-state:not(.has-details) { display: none; }
  .quote-details-panel summary #quote-details-state.has-details { display: block; color: #28577c; }
  .quote-details-panel textarea { min-height: 145px; }
  .quote-submit-area .button {
    min-height: 54px;
    width: 100%;
    padding: 13px 12px;
    justify-content: space-between;
    gap: 8px;
    font-size: 16px;
    line-height: 1.4;
    scroll-margin-block: 100px 20px;
  }
  .quote-submit-area p { font-size: 13px; line-height: 1.5; text-align: left; }
  .quote-form :is(button, summary, a) { touch-action: manipulation; }
}

@media (min-width: 700px) and (max-width: 980px) and (max-height: 500px) {
  .quote-form { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quote-form > :is(header, div, p, details) { grid-column: 1 / -1; }
  .quote-form:has(#quote-product-context:not([hidden])) .quote-form-heading { grid-column: 1; grid-row: 1; }
  .quote-form .quote-product-context { grid-column: 2; grid-row: 1; }
}

/* Selected mobile journey: concise offer → sector shortcuts → real catalogue. */
.journey-mobile-copy,
.sector-shortcuts,
.catalogue-clear-sector {
  display: none;
}

.catalogue-sector-selection {
  display: contents;
}

@media (max-width: 680px), (max-width: 980px) and (max-height: 500px) and (pointer: coarse) {
  .home-page .utility-bar,
  .home-page .hero .eyebrow,
  .home-page .hero-resource-link,
  .home-page .hero-assurances,
  .home-page .hero-actions .button-ghost,
  .home-page .mobile-product-preview,
  .home-page .journey-desktop-copy,
  .home-page .sectors-section .section-kicker,
  .home-page .sectors-section.is-compact-ready .sector-grid,
  .home-page .catalogue-heading .section-kicker,
  .home-page .catalogue-heading .catalogue-mobile-intro {
    display: none;
  }

  .home-page .site-header,
  .home-page .site-header.is-scrolled {
    min-height: 68px;
  }

  .home-page .journey-mobile-copy {
    display: inline;
  }

  .home-page .hero-inner {
    padding-block: 24px;
  }

  .home-page .hero-inner,
  .home-page .sectors-section > .site-container,
  .home-page .catalogue-section > .site-container {
    width: calc(100% - 36px);
  }

  .home-page .hero-copy h1 {
    font-size: clamp(26px, 7vw, 30px);
    line-height: 1.16;
    letter-spacing: -0.025em;
  }

  .home-page .hero-copy h1 span {
    margin-top: 4px;
    color: #d5e5f6;
    font-size: 1em;
    font-weight: 750;
    line-height: inherit;
  }

  .home-page .hero-copy > p.hero-description {
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .home-page .hero-actions {
    display: flex;
    margin-top: 20px;
  }

  .home-page .hero-actions .button-primary {
    flex: none;
    width: auto;
    max-width: 100%;
    min-height: 50px;
    padding: 12px 22px;
    font-size: 16px;
    box-shadow: none;
  }

  .home-page .sectors-section {
    padding-block: 22px 20px;
    background: var(--white);
    border-bottom: 1px solid #e3e9ed;
  }

  .home-page .sectors-section .section-heading {
    display: block;
    margin-bottom: 16px;
  }

  .home-page .sectors-section h2,
  .home-page .catalogue-heading h2 {
    margin: 0;
    font-size: 20px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: -0.02em;
  }

  .home-page .sectors-section .section-heading > p {
    max-width: none;
    margin: 8px 0 0;
    color: #596573;
    font-size: 15px;
    line-height: 1.5;
  }

  .home-page .sector-shortcuts:not([hidden]) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .home-page .sector-shortcuts button {
    min-width: 0;
    min-height: 48px;
    padding: 10px 8px;
    border: 1px solid #9aaebf;
    border-radius: 3px;
    background: var(--white);
    color: var(--navy-deep);
    font-size: 16px;
    font-weight: 750;
    line-height: 1.35;
    cursor: pointer;
    touch-action: manipulation;
  }

  .home-page .sector-shortcuts button:hover {
    border-color: var(--blue);
    background: var(--blue-soft);
  }

  .home-page .sector-shortcuts button[aria-pressed="true"] {
    border-color: var(--blue);
    background: var(--blue);
    color: var(--white);
  }

  .home-page .catalogue-section {
    padding-block: 24px 40px;
  }

  .home-page .catalogue-heading {
    margin-bottom: 16px;
  }

  .home-page .catalogue-tools {
    row-gap: 6px;
    margin-bottom: 12px;
  }

  .home-page .catalogue-search {
    padding: 0;
  }

  .home-page .catalogue-search :is(input, button) {
    min-height: 46px;
  }

  .home-page .catalogue-search button {
    border-radius: 0 3px 3px 0;
  }

  .home-page .catalogue-filter-toggle:not([hidden]) {
    min-height: 48px;
  }

  .home-page .catalogue-section .results-count {
    margin-bottom: 8px;
  }

  .home-page .catalogue-active-filters.has-only-sector .catalogue-clear-all {
    display: none;
  }

  .home-page .catalogue-sector-selection:not([hidden]) {
    display: flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
  }

  .home-page .catalogue-sector-selection button {
    min-height: 44px;
    border-color: transparent;
    background: transparent;
    color: var(--blue-dark);
    font-size: 15px;
    font-weight: 650;
  }

  .home-page .catalogue-clear-sector {
    display: inline-flex;
    align-items: center;
    text-decoration: underline;
    text-underline-offset: 3px;
  }

  .home-page .catalogue-product-card .product-card-meta {
    font-size: 14px;
  }

  .home-page .catalogue-product-card .product-card-action {
    font-size: 14px;
  }
}
