@font-face {
  font-family: "Barlow Condensed";
  src: url("assets/fonts/BarlowCondensed-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("assets/fonts/Manrope.ttf") format("truetype");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  --red: #ff0000;
  --red-ink: #c90000;
  --ink: #202323;
  --muted: #626663;
  --paper: #f3f3ef;
  --line: #d8dad4;
  --white: #fff;
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Manrope", Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font: 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  cursor: pointer;
}
button:disabled {
  cursor: not-allowed;
}
button {
  border-radius: 0;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
figure,
p,
h1,
h2,
h3,
dl {
  margin: 0;
}
p + p {
  margin-top: 18px;
}
p {
  text-wrap: pretty;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 600;
  line-height: 1.02;
}
h1 {
  font-size: clamp(64px, 7.2vw, 104px);
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
h2 {
  font-size: clamp(40px, 4.2vw, 60px);
  letter-spacing: -0.015em;
}
h3 {
  font-size: 29px;
}
address {
  font-style: normal;
}
::selection {
  background: var(--red);
  color: #fff;
}
:focus-visible {
  outline: 3px solid var(--red-ink);
  outline-offset: 5px;
}
.dark-section :focus-visible,
.site-footer :focus-visible,
.quality-feature :focus-visible {
  outline-color: #fff;
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1240px, calc(100% - 112px));
  margin-inline: auto;
}
.section-pad {
  padding-block: 100px;
}
.small-section {
  padding-block: 55px;
}
.soft-section {
  background: var(--paper);
}
.dark-section {
  color: #fff;
  background: var(--ink);
}
.dark-section p:not(.eyebrow),
.quality-feature p:not(.eyebrow) {
  color: #d5d8d3;
}
.dark-section .muted-light,
.quality-feature .muted-light {
  color: #b5bbb5;
}
.eyebrow,
.micro,
.hero-bottom,
.archive-caption,
figcaption,
.small-tag,
.contact-details dt,
.quality-standards {
  font-family: var(--body);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
.eyebrow {
  margin-bottom: 23px;
  font-size: 11px;
  letter-spacing: 0.13em;
}
.eyebrow .red-dash {
  display: inline-block;
  height: 2px;
  width: 24px;
  margin: 0 9px 3px 0;
  background: var(--red);
}
.lead {
  font-size: 21px;
  line-height: 1.55;
}
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  padding-block: 12px;
  border-bottom: 1px solid var(--ink);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    color 0.2s,
    border-color 0.2s;
}
.text-link > span[aria-hidden] {
  font-size: 23px;
  font-weight: 400;
}
.text-link:hover {
  color: var(--red-ink);
  border-color: var(--red-ink);
}
.text-link.light {
  border-color: #68706a;
  color: #fff;
}
.text-link.light:hover {
  border-color: #fff;
}
.button {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  gap: 27px;
  min-height: 54px;
  padding: 16px 23px;
  border: 1px solid transparent;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}
.button > span[aria-hidden] {
  font-size: 22px;
  line-height: 1;
  font-weight: 400;
}
.button-red {
  background: var(--red-ink);
  color: #fff;
}
.button-red:hover {
  background: #990000;
}
.button-white {
  background: #fff;
  color: var(--ink);
}
.button-white:hover {
  background: var(--ink);
  color: #fff;
}
.button-row {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 20;
  transform: translateY(-180%);
  padding: 12px 20px;
  background: #fff;
  color: var(--ink);
}
.skip-link:focus {
  transform: none;
}

/* Navigation: the logo is always the unmodified original image. */
.utility-bar {
  background: var(--ink);
  color: #d8dcd6;
}
.utility-bar .container {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  min-height: 32px;
  align-items: center;
  font-size: 9px;
  letter-spacing: 0.09em;
}
.utility-bar i {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  background: var(--red);
}
.utility-bar b {
  margin-inline: 15px;
  color: #788078;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  min-height: 96px;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
.brand {
  flex: 0 0 200px;
}
.brand img {
  width: 200px;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.4vw, 37px);
}
.site-nav > a {
  position: relative;
  padding-block: 15px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  content: "";
  height: 2px;
  background: var(--red);
  left: 0;
  right: 100%;
  bottom: 5px;
  transition: right 0.2s;
}
.site-nav > a:hover::after,
.site-nav > a[aria-current]::after {
  right: 0;
}
.site-nav > .nav-contact {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 12px 21px;
  background: var(--ink);
  color: #fff;
}
.nav-contact > span {
  font-size: 20px;
}
.site-nav > .nav-contact:hover,
.site-nav > .nav-contact[aria-current] {
  background: var(--red-ink);
}
.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: #fff;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  font-size: 12px;
}
.menu-bars {
  width: 18px;
  height: 10px;
  display: inline-block;
  border-top: 1px solid;
  border-bottom: 1px solid;
  position: relative;
}
.menu-toggle[aria-expanded="true"] .menu-bars {
  border: 0;
}
.menu-toggle[aria-expanded="true"] .menu-bars::before,
.menu-toggle[aria-expanded="true"] .menu-bars::after {
  content: "";
  position: absolute;
  height: 1px;
  background: currentColor;
  width: 18px;
  top: 4px;
  transform: rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-bars::after {
  transform: rotate(-45deg);
}

/* Opening composition: one strong image with restrained supporting elements. */
.hero {
  background: var(--paper);
  position: relative;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  padding-top: 66px;
  padding-bottom: 62px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 28px;
  letter-spacing: 0.09em;
}
.hero h1 {
  font-size: clamp(48px, 5.4vw, 72px);
  line-height: 0.99;
  letter-spacing: -0.022em;
}
.hero h1 > span {
  color: var(--red-ink);
}
.hero-tagline {
  margin-top: 24px;
  font-size: 20px;
  font-weight: 600;
}
.hero-description {
  margin-block: 27px 29px;
  max-width: 470px;
  font-size: 15px;
  line-height: 1.75;
  color: #5b605a;
}
.hero .button {
  padding-inline: 21px;
}
.hero .button-row {
  gap: 25px;
}
.hero-visual {
  position: relative;
  min-height: 462px;
  margin-top: 8px;
  overflow: hidden;
  background: var(--ink);
}
.hero-main-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
}
.hero-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-main-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 14px;
  background: rgb(255 255 255 / 90%);
  font-size: 8px;
}
.hero-main-photo figcaption > span:last-child {
  color: var(--red-ink);
  font-size: 16px;
}
.hero-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 19px;
  border-top: 1px solid var(--line);
  font-size: 8px;
  color: #6a7066;
}
.hero-bottom a {
  color: var(--ink);
  min-height: 26px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
}
.hero-bottom a span {
  font-size: 20px;
}

/* Shared editorial grids. */
.section-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: end;
  gap: 100px;
  margin-bottom: 45px;
}
.section-heading > p,
.section-heading > div > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 15px;
}
.section-heading > div > .text-link {
  margin-top: 20px;
}
.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 19px;
}
.activity-card {
  border: 1px solid var(--line);
  display: block;
  transition: border-color 0.2s;
}
.activity-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 3fr;
  align-items: center;
}
.image-placeholder {
  aspect-ratio: 350 / 263;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px;
  background: var(--paper);
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  text-align: center;
  font-size: 12px;
}
.image-placeholder > span:first-child {
  font: 40px/1 var(--display);
  color: var(--ink);
}
.activity-card:hover {
  border-color: var(--red-ink);
}
.card-image {
  position: relative;
  overflow: hidden;
}
.card-image img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  transition: transform 0.35s;
}
.activity-card:hover .card-image img {
  transform: scale(1.025);
}
.image-index {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  background: var(--ink);
  padding: 8px 13px;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}
.card-body {
  padding: 22px 17px 25px;
}
.card-body .micro {
  font-size: 8px;
  letter-spacing: 0.075em;
  color: var(--muted);
}
.card-body h3 {
  font-size: 26px;
  margin: 13px 0;
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.card-body h3 span {
  color: var(--red-ink);
  font-family: var(--body);
  font-size: 20px;
}
.card-body > p:last-child {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
.company-feature {
  background: var(--paper);
}
.company-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 100px;
  align-items: center;
}
.company-visual {
  position: relative;
  padding: 0 0 38px 30px;
}
.company-visual > img {
  width: 350px;
  margin-left: auto;
  aspect-ratio: 350 / 263;
  object-fit: cover;
}
.vertical-caption {
  position: absolute;
  left: 0;
  top: 0;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 8px;
  letter-spacing: 0.15em;
  color: #6a7066;
}
.company-location {
  position: relative;
  margin-top: -25px;
  background: #fff;
  padding: 24px 29px;
  border-left: 3px solid var(--red);
  width: 86%;
}
.company-location .micro {
  display: block;
  font-size: 8px;
}
.company-location strong {
  display: block;
  font-family: var(--display);
  font-size: 49px;
  line-height: 1.3;
}
.company-location > span:last-child {
  display: block;
  font-size: 11px;
  color: var(--muted);
}
.company-copy h2 {
  margin-bottom: 25px;
}
.company-copy > p:not(.eyebrow):not(.lead) {
  font-size: 15px;
  color: var(--muted);
}
.company-copy .text-link {
  margin-top: 27px;
}
.quality-feature {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.quality-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 100px;
}
.quality-grid > div:last-child {
  padding-top: 7px;
  font-size: 15px;
}
.quality-grid .text-link {
  margin-top: 20px;
}
.quality-standards {
  display: block;
  font-size: 8px;
  color: #bec4bc;
  margin-top: 20px;
  font-weight: 400;
}
.quality-watermark {
  position: absolute;
  font-family: var(--display);
  font-size: 220px;
  bottom: -72px;
  left: 4%;
  white-space: nowrap;
  color: #2d3230;
  pointer-events: none;
}
.careers-teaser .section-heading {
  margin-bottom: 0;
}
.contact-band {
  background: var(--red);
  color: #170000;
  padding-block: 65px;
}
.contact-band-inner {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}
.contact-band h2 {
  font-size: clamp(40px, 4vw, 58px);
}
.contact-band .eyebrow {
  margin-bottom: 17px;
  font-size: 9px;
}
.contact-band p:last-child {
  margin-top: 15px;
  font-size: 13px;
}
.contact-band .button {
  flex-shrink: 0;
}

/* Secondary pages. */
.page-intro {
  position: relative;
  overflow: hidden;
  background: var(--paper);
  padding-block: 68px 62px;
  border-bottom: 1px solid var(--line);
}
.page-intro .container {
  position: relative;
  z-index: 1;
}
.page-intro h1 {
  max-width: 950px;
  font-size: clamp(64px, 6.5vw, 92px);
}
.page-intro .eyebrow {
  color: var(--red-ink);
  margin-bottom: 25px;
}
.intro-text {
  max-width: 640px;
  margin-top: 27px;
  font-size: 16px;
  color: var(--muted);
}
.intro-mark {
  position: absolute;
  right: 7%;
  top: 65px;
  font: 120px/0.8 var(--display);
  color: #d9ddd3;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.story-grid h2 {
  margin-bottom: 26px;
}
.story-grid p:not(.eyebrow):not(.lead) {
  color: var(--muted);
  font-size: 15px;
}
.dark-section .story-grid p:not(.eyebrow):not(.lead) {
  color: #c7cdc5;
}
.framed-photo {
  padding: 32px;
  border: 1px solid var(--line);
  background: var(--paper);
  max-width: 416px;
  width: 100%;
  justify-self: end;
}
.framed-photo img {
  width: 350px;
  aspect-ratio: 350 / 263;
  object-fit: cover;
}
.framed-photo figcaption {
  font-size: 8px;
  letter-spacing: 0.07em;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 15px;
  color: var(--muted);
}
.principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 42px;
}
.principles-grid article {
  border-top: 1px solid #afb5aa;
  padding-top: 22px;
}
.large-index {
  font: 56px/1 var(--display);
  color: var(--red-ink);
}
.principles-grid h3 {
  margin-block: 24px 18px;
  font-size: 33px;
}
.principles-grid p {
  font-size: 14px;
  color: var(--muted);
}
.location-composition {
  background: var(--paper);
  padding: 35px;
  border-top: 3px solid var(--red);
}
.address-block h2 {
  font-size: 48px;
}
.address-block .text-link {
  margin-top: 12px;
}
.small-archive {
  display: flex;
  gap: 22px;
  align-items: end;
  margin-top: 33px;
  border-top: 1px solid var(--line);
  padding-top: 25px;
}
.small-archive img {
  width: 175px;
  flex-shrink: 0;
}
.small-archive figcaption {
  font-size: 9px;
  font-weight: 400;
  color: var(--muted);
}
.inline-note {
  font-size: 12px;
  color: var(--muted);
  padding: 18px 0 18px 20px;
  border-left: 2px solid var(--red-ink);
  margin-top: 28px;
}
.section-nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.section-nav .container {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.section-nav a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px 12px;
  font-size: 11px;
  font-weight: 600;
  border-right: 1px solid var(--line);
}
.section-nav a:first-child {
  border-left: 1px solid var(--line);
}
.section-nav a span {
  color: var(--red-ink);
  font-size: 10px;
}
.section-nav a:hover {
  background: var(--paper);
  color: var(--red-ink);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}
.service-grid + .product-grid {
  margin-top: 40px;
}
.product-card {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  align-self: start;
}
.dark-section .product-card details > p {
  color: var(--muted);
}
.dark-section .product-card :focus-visible {
  outline-color: var(--red-ink);
}
.product-card img {
  width: 100%;
  aspect-ratio: 350 / 263;
  object-fit: cover;
}
.product-card summary {
  padding: 21px 23px;
  font: 28px/1.2 var(--display);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.product-card summary::-webkit-details-marker {
  display: none;
}
.product-card summary > span {
  color: var(--red-ink);
  font: 22px/1 var(--body);
  transition: transform 0.2s;
}
.product-card details[open] summary > span {
  transform: rotate(45deg);
}
.product-card summary:hover {
  color: var(--red-ink);
}
.product-card details > p {
  padding: 0 23px 23px;
  font-size: 14px;
  color: var(--muted);
}
.archive-caption {
  font-weight: 400;
  letter-spacing: 0;
  color: var(--muted);
  margin-top: 26px;
  font-size: 11px;
}
.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}
.service-copy h3 {
  font-size: 33px;
  margin-bottom: 20px;
}
.service-copy p {
  color: var(--muted);
  font-size: 15px;
}
.service-copy article + article {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.service-copy .text-link {
  margin-top: 24px;
}
.service-grid > .framed-photo:first-child {
  justify-self: start;
}
.dark-section .framed-photo {
  border-color: #4d554e;
  background: #2a2f2b;
}
.dark-section .framed-photo figcaption {
  color: #bbc2b9;
}
.technical-list {
  list-style: none;
  padding: 0;
  margin: 23px 0 0;
}
.technical-list li {
  border-bottom: 1px solid var(--line);
  padding: 11px 0;
  font-size: 13px;
  display: flex;
  gap: 13px;
}
.technical-list li::before {
  content: "+";
  color: var(--red-ink);
}

/* The supplied TÜV NORD mark stays intact, beside the certified company name. */
.certification-mark {
  display: flex;
  align-items: center;
  gap: 24px;
}
.certification-mark > a {
  display: block;
  flex: 0 0 180px;
  max-width: 180px;
}
.certification-mark img {
  width: 180px;
  height: auto;
}
.certification-mark figcaption {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.65;
}
.certification-mark strong {
  display: block;
  font-size: 16px;
}
.certification-mark a:hover {
  outline: 1px solid #8c9187;
  outline-offset: 6px;
}
.quality-grid .certification-mark {
  margin-top: 32px;
}
.certification-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 64px;
  align-items: center;
}
.certification-intro .certification-mark {
  flex-direction: column;
  gap: 18px;
  text-align: center;
}

/* Document area: original PDFs and first-page previews. */
.certificates {
  display: grid;
  gap: 32px;
}
.certificate-card {
  border: 1px solid var(--line);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
}
.document-preview {
  background: var(--paper);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.document-preview > .micro {
  font-size: 9px;
  color: var(--muted);
  align-self: start;
}
.document-preview img {
  width: 245px;
  border: 1px solid var(--line);
  box-shadow: 8px 8px 0 #e4e6de;
}
.document-preview:hover .preview-caption {
  color: var(--red-ink);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.preview-caption {
  font-size: 10px;
  color: var(--muted);
}
.certificate-copy {
  padding: 38px 42px;
}
.certificate-title {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin-block: 23px 17px;
}
.certificate-title .small-tag {
  font-size: 16px;
}
.small-tag {
  display: inline-block;
  color: var(--red-ink);
  background: #fff0ed;
  padding: 6px 9px;
  font-size: 8px;
}
.certificate-copy h2 {
  font-size: 40px;
  margin: 0;
}
.certificate-copy > p {
  color: var(--muted);
  font-size: 14px;
}
.certificate-meta {
  margin-block: 23px;
  border-top: 1px solid var(--line);
}
.certificate-meta > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  padding-block: 10px;
  font-size: 12px;
}
.certificate-meta dt {
  color: var(--muted);
}
.certificate-meta dd {
  margin: 0;
}
.document-links {
  border-top: 1px solid #b8bfb1;
}
.document-links > a {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 29px 0;
  border-bottom: 1px solid #b8bfb1;
}
.document-links > a > span:last-child {
  margin-left: auto;
  font-size: 30px;
  color: var(--red-ink);
}
.document-links a:hover h3 {
  color: var(--red-ink);
}
.document-links h3 {
  font-size: 29px;
  margin-bottom: 8px;
}
.document-links p {
  font-size: 12px;
  color: var(--muted);
}
.pdf-icon {
  border: 1px solid #b8bfb1;
  min-width: 44px;
  min-height: 54px;
  display: grid;
  place-items: center;
  font-size: 10px;
  color: var(--red-ink);
}

/* Forms stay local; visible labels and native inputs retain keyboard support. */
.form-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 85px;
  align-items: start;
}
.form-aside h2 {
  font-size: 49px;
  margin-bottom: 25px;
}
.form-aside > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
}
.form-panel {
  background: var(--paper);
  border-top: 3px solid var(--red);
  padding: 38px;
  min-width: 0;
}
.form-panel-heading {
  margin-bottom: 30px;
}
.form-panel-heading h2 {
  font-size: 42px;
  margin-block: 20px 16px;
}
.form-panel-heading > p {
  font-size: 13px;
  color: var(--muted);
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 20px;
}
.field {
  min-width: 0;
}
.full {
  grid-column: 1 / -1;
}
.field label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
  font-weight: 600;
}
.field label > span[aria-hidden] {
  color: var(--red-ink);
}
.optional {
  font-size: 10px;
  font-weight: 400;
  color: var(--muted);
}
input:not([type="checkbox"]):not([type="file"]),
select,
textarea {
  width: 100%;
  background: #fff;
  border: 1px solid #7b8275;
  border-radius: 0;
  padding: 12px 13px;
  color: var(--ink);
  font-size: 14px;
  min-height: 48px;
}
input:not([type="checkbox"]):not([type="file"]):hover,
select:hover,
textarea:hover {
  border-color: #5f6955;
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--red-ink);
  outline-offset: 2px;
}
textarea {
  resize: vertical;
  min-height: 145px;
  line-height: 1.65;
}
input::placeholder,
textarea::placeholder {
  color: #777c71;
  font-size: 12px;
  opacity: 1;
}
select {
  padding-right: 28px;
}
input:user-invalid,
select:user-invalid,
textarea:user-invalid {
  border-color: var(--red-ink);
}
.privacy-area {
  margin-top: 6px;
  border-top: 1px solid var(--line);
  padding-top: 19px;
}
.privacy-area details {
  margin-bottom: 18px;
}
.privacy-area summary {
  font-size: 12px;
  padding-block: 7px;
}
.privacy-area summary .small-tag {
  margin-left: 7px;
  font-size: 7px;
}
.privacy-area details p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 13px;
}
.checkbox-label {
  display: flex;
  gap: 12px;
  align-items: start;
  font-size: 11px;
  cursor: pointer;
  padding-block: 6px;
}
input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  flex: 0 0 18px;
  accent-color: var(--red-ink);
}
.form-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid var(--line);
  padding-top: 23px;
}
.form-submit p {
  font-size: 10px;
  color: var(--muted);
}
.form-submit .button {
  font-size: 12px;
  padding-inline: 17px;
  gap: 20px;
}
.form-status:empty {
  display: none;
}
.form-status {
  background: #fff;
  border: 1px solid #64735c;
  border-left-width: 3px;
  padding: 19px;
  margin-top: 24px;
  font-size: 14px;
  color: #304727;
}
.upload-box {
  border: 1px dashed #8a927f;
  background: #fff;
  padding: 23px;
  text-align: center;
}
.upload-box > strong {
  font-size: 13px;
  display: block;
  margin-top: 8px;
}
.upload-box > p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 6px;
}
.upload-icon {
  font-size: 26px;
  color: var(--red-ink);
}
input[type="file"] {
  width: 100%;
  font-size: 11px;
  padding: 10px 0;
  margin-top: 9px;
  color: var(--muted);
}
input[type="file"]::file-selector-button {
  border: 1px solid var(--line);
  background: var(--paper);
  padding: 10px 12px;
  margin-right: 12px;
  color: var(--ink);
  font: 11px var(--body);
  cursor: pointer;
}
input[type="file"]::file-selector-button:hover {
  border-color: var(--ink);
}
.upload-box > .file-status {
  overflow-wrap: anywhere;
}
.file-status[data-error="true"] {
  color: var(--red-ink);
}
.aside-photo {
  margin-top: 35px;
  max-width: 350px;
}
.aside-photo img {
  aspect-ratio: 350 / 263;
  object-fit: cover;
}
.aside-photo figcaption {
  margin-top: 13px;
  font-size: 8px;
  color: var(--muted);
}
.aside-note {
  border-left: 2px solid var(--red-ink);
  padding-left: 18px;
  margin-top: 32px;
}
.aside-note .micro {
  font-size: 9px;
}
.aside-note p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 8px;
}
.aside-note p a {
  text-decoration: underline;
  text-underline-offset: 3px;
  color: var(--ink);
}
.contact-details {
  margin-top: 30px;
  margin-bottom: 12px;
}
.contact-details > div {
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}
.contact-details dt {
  font-size: 9px;
  color: var(--muted);
  margin-bottom: 7px;
}
.contact-details dd {
  margin: 0;
  font-size: 19px;
  line-height: 1.5;
}
.contact-details dd address {
  font-size: 17px;
}
.contact-details a:hover {
  color: var(--red-ink);
}
.contact-details dd span {
  color: var(--red-ink);
  margin-left: 10px;
}
.form-aside > .text-link {
  font-size: 12px;
}
.compact-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.compact-cta h2 {
  font-size: 40px;
}
.location-strip {
  background: var(--paper);
  border-block: 1px solid var(--line);
  padding-block: 52px;
}
.location-strip .container {
  display: flex;
  align-items: center;
  gap: 37px;
}
.location-marker {
  font: 72px/1 var(--display);
  color: var(--red-ink);
}
.location-strip h2 {
  font-size: 43px;
  margin-bottom: 12px;
}
.location-strip .eyebrow {
  font-size: 9px;
  margin-bottom: 12px;
}
.location-strip p:last-child {
  font-size: 13px;
  color: var(--muted);
}
.location-code {
  margin-left: auto;
  font: 85px/0.85 var(--display);
  padding-left: 45px;
  border-left: 1px solid var(--line);
}
.location-code span {
  font: 9px/1 var(--body);
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Footer */
.site-footer {
  background: #1c1f1d;
  color: #d0d5cd;
  padding-top: 65px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr;
  gap: 45px;
  padding-bottom: 53px;
}
.footer-brand {
  display: block;
  background: #fff;
  width: 175px;
  margin-bottom: 21px;
}
.footer-brand img {
  width: 175px;
}
.footer-identity p {
  font-size: 11px;
  line-height: 1.6;
}
.footer-identity .micro {
  display: block;
  font-size: 7px;
  margin-top: 17px;
  color: #b5beb0;
}
.footer-grid h2 {
  font: 600 12px/1.5 var(--body);
  color: #fff;
  margin-bottom: 23px;
}
.footer-grid a:not(.footer-brand),
.footer-grid address {
  font-size: 12px;
}
.footer-grid a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}
.footer-links {
  display: grid;
  gap: 9px;
}
.footer-small-link {
  display: inline-block;
  margin-top: 20px;
}
.footer-email {
  display: block;
  font-size: 17px !important;
  margin-top: 11px;
  color: #fff;
}
.footer-fax {
  font-size: 10px;
  margin-top: 15px;
  color: #b5beb0;
}
.footer-bottom {
  border-top: 1px solid #3b423b;
  padding-block: 23px;
  display: flex;
  align-items: start;
  gap: 26px;
  font-size: 9px;
  color: #b5beb0;
}
.footer-bottom > span {
  margin-right: auto;
}
.footer-bottom > a {
  white-space: nowrap;
  padding-block: 3px;
}
.footer-privacy {
  max-width: 380px;
}
.footer-privacy summary {
  padding-block: 3px;
}
.footer-privacy p {
  font-size: 11px;
  padding-block: 15px 5px;
  line-height: 1.65;
}

@media (min-width: 1600px) {
  .hero-grid {
    padding-block: 85px;
  }
}
@media (max-width: 1150px) {
  .container {
    width: calc(100% - 72px);
  }
  .header-inner {
    gap: 24px;
  }
  .brand,
  .brand img {
    width: 175px;
    flex-basis: 175px;
  }
  .site-nav {
    gap: 20px;
  }
  .site-nav > a {
    font-size: 11px;
  }
  .site-nav > .nav-contact {
    padding-inline: 16px;
    gap: 18px;
  }
  .hero-grid {
    gap: 26px;
    grid-template-columns: 1.1fr 1fr;
  }
  .hero h1 {
    font-size: clamp(42px, 5.3vw, 68px);
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-copy .red-dash {
    display: none;
  }
  .hero .button-row {
    gap: 15px;
  }
  .hero .button {
    padding-inline: 15px;
    font-size: 11px;
    gap: 12px;
  }
  .hero .text-link {
    font-size: 11px;
    gap: 14px;
  }
  .hero-visual {
    min-height: 435px;
  }
  .section-heading,
  .quality-grid,
  .company-grid,
  .story-grid,
  .service-grid {
    gap: 55px;
  }
  .activity-grid {
    gap: 12px;
  }
  .card-body {
    padding-inline: 13px;
  }
  .card-body h3 {
    font-size: 23px;
  }
  .form-layout {
    gap: 48px;
  }
  .form-panel {
    padding: 28px;
  }
  .form-aside h2 {
    font-size: 43px;
  }
  .footer-grid {
    gap: 30px;
  }
}
@media (max-width: 900px) {
  html {
    scroll-padding-top: 100px;
  }
  .container {
    width: calc(100% - 48px);
  }
  .section-pad {
    padding-block: 70px;
  }
  .header-inner {
    min-height: 82px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand,
  .brand img {
    width: 170px;
    flex-basis: 170px;
  }
  .menu-toggle:not([hidden]) {
    display: inline-flex;
  }
  .site-nav {
    width: 100%;
    display: grid;
    gap: 0;
    padding-block: 10px 22px;
  }
  .site-nav > a {
    font-size: 14px;
    padding: 15px 8px;
    border-bottom: 1px solid var(--line);
  }
  .site-nav > a:not(.nav-contact)::after {
    display: none;
  }
  .site-nav > a[aria-current] {
    color: var(--red-ink);
  }
  .site-nav > .nav-contact {
    margin-top: 15px;
    justify-content: space-between;
    color: #fff;
    padding: 13px 17px;
  }
  .js .site-nav {
    display: none;
  }
  .js .site-nav.is-open {
    display: grid;
    max-height: calc(100dvh - 82px);
    overflow-y: auto;
  }
  .utility-bar .container {
    font-size: 8px;
  }
  .utility-bar .container > span:first-child {
    max-width: 58%;
    font-size: 7px;
  }
  .hero-grid {
    grid-template-columns: 1.12fr 1fr;
    padding-top: 55px;
    padding-bottom: 40px;
    gap: 25px;
  }
  .hero h1 {
    font-size: clamp(34px, 4.9vw, 44px);
  }
  .hero-copy .eyebrow {
    font-size: 7px;
    line-height: 1.8;
  }
  .hero-description {
    font-size: 13px;
    margin-block: 22px;
  }
  .hero .button-row {
    gap: 12px;
  }
  .hero-visual {
    min-height: 355px;
  }
  .hero-main-photo figcaption {
    font-size: 6px;
    padding: 6px;
  }
  .hero-bottom {
    font-size: 6px;
  }
  .section-heading {
    gap: 30px;
  }
  h2 {
    font-size: 43px;
  }
  .section-heading > p,
  .section-heading > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .activity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
  }
  .card-body h3 {
    font-size: 29px;
  }
  .card-body {
    padding: 24px;
  }
  .card-body .micro {
    font-size: 9px;
  }
  .company-grid,
  .story-grid,
  .service-grid {
    gap: 35px;
  }
  .company-visual {
    padding-left: 20px;
  }
  .company-location {
    width: 94%;
    padding: 20px;
  }
  .company-location .micro {
    font-size: 7px;
  }
  .company-location > span:last-child {
    font-size: 10px;
  }
  .company-copy p:not(.eyebrow):not(.lead) {
    font-size: 13px;
  }
  .lead {
    font-size: 18px;
  }
  .quality-grid {
    gap: 40px;
  }
  .contact-band-inner {
    gap: 28px;
  }
  .contact-band .button {
    max-width: 250px;
  }
  .framed-photo {
    padding: 20px;
  }
  .certification-intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 32px;
  }
  .certification-intro .certification-mark {
    flex-direction: row;
    text-align: left;
  }
  .page-intro {
    padding-block: 55px;
  }
  .page-intro h1 {
    font-size: 72px;
  }
  .principles-grid {
    gap: 25px;
  }
  .principles-grid p {
    font-size: 13px;
  }
  .location-composition {
    padding: 25px;
  }
  .address-block h2 {
    font-size: 40px;
  }
  .small-archive {
    flex-wrap: wrap;
    gap: 15px;
  }
  .section-nav a {
    gap: 6px;
    font-size: 9px;
    padding-inline: 7px;
  }
  .product-grid {
    gap: 22px;
  }
  .product-card summary {
    padding: 18px;
    font-size: 24px;
  }
  .certificate-copy {
    padding: 30px;
  }
  .certificate-copy h2 {
    font-size: 35px;
  }
  .certificate-meta > div {
    flex-wrap: wrap;
    gap: 5px 20px;
  }
  .certificate-copy .button-row {
    gap: 12px;
  }
  .form-layout {
    gap: 30px;
    grid-template-columns: 0.7fr 1fr;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 19px;
  }
  .form-panel {
    padding: 25px;
  }
  .form-submit {
    align-items: start;
    flex-direction: column;
  }
  .form-submit .button {
    width: 100%;
  }
  .form-aside h2 {
    font-size: 39px;
  }
  .footer-grid {
    grid-template-columns: 1.1fr 1fr;
    gap: 40px 65px;
  }
  .footer-bottom {
    flex-wrap: wrap;
  }
  .footer-bottom > span {
    flex-basis: 100%;
  }
  .footer-bottom > a {
    margin-left: auto;
  }
}
@media (max-width: 650px) {
  html {
    scroll-padding-top: 86px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section-pad {
    padding-block: 58px;
  }
  .utility-bar .container {
    min-height: 26px;
    font-size: 7px;
  }
  .utility-bar .container > span:first-child {
    font-size: 0;
  }
  .utility-bar .container > span:first-child::after {
    content: "A.E.E. / SULBIATE, ITALIA";
    font-size: 7px;
  }
  .utility-bar b {
    margin-inline: 8px;
  }
  .utility-bar i {
    width: 4px;
    height: 4px;
    margin-right: 6px;
  }
  .header-inner {
    min-height: 77px;
  }
  .brand,
  .brand img {
    width: 161px;
    flex-basis: 161px;
  }
  .menu-toggle {
    padding: 11px 12px;
    font-size: 11px;
  }
  .hero-grid {
    display: block;
    padding-block: 39px 36px;
  }
  .hero-copy .eyebrow {
    font-size: 7px;
    max-width: 305px;
    margin-bottom: 22px;
  }
  .hero h1 {
    font-size: clamp(34px, 9.7vw, 58px);
  }
  .hero-description {
    font-size: 14px;
    max-width: 420px;
    line-height: 1.7;
    margin-block: 23px;
  }
  .hero .button-row {
    gap: 18px;
  }
  .hero .button {
    font-size: 11px;
    padding-inline: 16px;
    min-height: 50px;
  }
  .hero .text-link {
    font-size: 11px;
    gap: 12px;
  }
  .hero-visual {
    margin: 44px auto 0;
    min-height: 365px;
    max-width: 430px;
    width: calc(100% - 8px);
  }
  .hero-main-photo figcaption {
    font-size: 7px;
    padding-inline: 9px;
  }
  .hero-bottom {
    font-size: 7px;
    padding-block: 17px;
  }
  .hero-bottom > span:last-child {
    display: none;
  }
  .hero-bottom a {
    font-size: 7px;
    gap: 12px;
  }
  h2 {
    font-size: clamp(38px, 9.5vw, 48px);
  }
  .eyebrow {
    font-size: 9px;
    margin-bottom: 20px;
  }
  .section-heading,
  .company-grid,
  .quality-grid,
  .story-grid,
  .service-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 27px;
  }
  .section-heading {
    margin-bottom: 30px;
  }
  .section-heading > p,
  .section-heading > div > p:not(.eyebrow) {
    font-size: 14px;
  }
  .activity-grid {
    gap: 13px;
  }
  .activity-card-wide {
    grid-template-columns: 1fr 1.4fr;
  }
  .card-body {
    padding: 16px 12px 20px;
  }
  .card-body .micro {
    font-size: 7px;
    letter-spacing: 0.04em;
  }
  .card-body h3 {
    font-size: 23px;
    margin-block: 11px;
    gap: 5px;
  }
  .card-body h3 span {
    font-size: 16px;
  }
  .card-body > p:last-child {
    font-size: 11px;
  }
  .image-index {
    padding: 5px 9px;
    font-size: 8px;
  }
  .company-grid {
    gap: 35px;
  }
  .company-visual {
    max-width: 390px;
    padding-bottom: 0;
  }
  .company-copy h2 {
    margin-bottom: 20px;
  }
  .company-copy p:not(.eyebrow):not(.lead) {
    font-size: 14px;
  }
  .company-copy .text-link {
    margin-top: 20px;
  }
  .quality-grid {
    gap: 20px;
  }
  .quality-grid > div:last-child {
    font-size: 14px;
  }
  .quality-watermark {
    font-size: 155px;
    bottom: -46px;
    left: 0;
  }
  .quality-grid .text-link {
    margin-top: 15px;
  }
  .contact-band {
    padding-block: 45px;
  }
  .contact-band-inner {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }
  .contact-band .button {
    max-width: 100%;
  }
  .contact-band p:last-child {
    font-size: 12px;
  }
  .page-intro {
    padding-block: 42px;
  }
  .page-intro h1 {
    font-size: clamp(51px, 11.8vw, 75px);
  }
  .page-intro .eyebrow {
    font-size: 9px;
    margin-bottom: 23px;
  }
  .intro-text {
    margin-top: 23px;
    font-size: 14px;
  }
  .intro-mark {
    right: 5%;
    top: 20px;
    font-size: 70px;
  }
  .story-grid h2 {
    margin-bottom: 22px;
  }
  .story-grid p:not(.eyebrow):not(.lead) {
    font-size: 14px;
  }
  .framed-photo {
    max-width: 390px;
    justify-self: center;
  }
  .framed-photo figcaption {
    font-size: 7px;
  }
  .principles-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .principles-grid article {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px 17px;
  }
  .principles-grid h3 {
    margin: 5px 0 0;
  }
  .principles-grid p {
    grid-column: 2;
    font-size: 14px;
  }
  .large-index {
    font-size: 46px;
  }
  .location-composition {
    padding: 26px;
  }
  .small-archive {
    gap: 17px;
    flex-wrap: nowrap;
  }
  .small-archive figcaption {
    font-size: 8px;
  }
  .small-archive img {
    max-width: 55%;
    height: auto;
  }
  .section-nav .container {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section-nav a {
    padding: 16px 10px;
    justify-content: start;
    gap: 9px;
    font-size: 10px;
    border-bottom: 1px solid var(--line);
  }
  .section-nav a:first-child {
    border-left: 0;
  }
  .section-nav a:last-child {
    grid-column: 1 / -1;
    justify-content: center;
  }
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 15px;
  }
  .product-card summary {
    font-size: 22px;
    padding: 16px 13px;
    gap: 5px;
  }
  .product-card details > p {
    font-size: 12px;
    padding: 0 13px 16px;
  }
  .archive-caption {
    font-size: 10px;
    line-height: 1.7;
  }
  .service-grid {
    gap: 30px;
  }
  .service-copy p {
    font-size: 14px;
  }
  .service-grid > .framed-photo:first-child {
    justify-self: center;
  }
  .service-copy h3 {
    font-size: 31px;
  }
  .certificate-card {
    grid-template-columns: 1fr;
  }
  .document-preview {
    padding: 23px;
    gap: 20px;
  }
  .certificate-copy {
    padding: 25px;
  }
  .certificate-copy h2 {
    font-size: 35px;
  }
  .certificate-copy > p {
    font-size: 13px;
  }
  .certificate-meta > div {
    font-size: 11px;
  }
  .certificate-copy .button {
    font-size: 11px;
    padding-inline: 16px;
  }
  .document-links > a {
    gap: 16px;
    padding-block: 23px;
  }
  .document-links h3 {
    font-size: 25px;
  }
  .document-links p {
    font-size: 10px;
  }
  .document-links > a > span:last-child {
    font-size: 23px;
  }
  .pdf-icon {
    min-width: 35px;
    min-height: 44px;
    font-size: 9px;
  }
  .form-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-panel {
    padding: 25px 22px;
  }
  .form-panel-heading h2 {
    font-size: 38px;
  }
  .form-panel-heading p {
    font-size: 12px;
  }
  .form-grid {
    gap: 21px;
  }
  input:not([type="checkbox"]):not([type="file"]),
  select,
  textarea {
    font-size: 16px;
  }
  .field label {
    font-size: 12px;
  }
  .upload-box {
    padding: 20px 15px;
  }
  .form-submit {
    gap: 18px;
  }
  .form-submit .button {
    font-size: 12px;
    min-height: 52px;
  }
  .privacy-area summary {
    font-size: 11px;
  }
  .privacy-area .small-tag {
    font-size: 6px;
    margin-left: 3px;
  }
  .checkbox-label {
    font-size: 11px;
  }
  .aside-photo {
    max-width: 300px;
  }
  .form-aside h2 {
    font-size: 43px;
  }
  .contact-details {
    margin-top: 20px;
  }
  .contact-details dd {
    font-size: 21px;
  }
  .compact-cta {
    flex-direction: column;
    align-items: start;
    gap: 18px;
  }
  .compact-cta h2 {
    font-size: 36px;
  }
  .location-strip {
    padding-block: 36px;
  }
  .location-strip .container {
    gap: 20px;
  }
  .location-marker {
    font-size: 52px;
  }
  .location-strip h2 {
    font-size: 32px;
  }
  .location-strip p:last-child {
    font-size: 11px;
  }
  .location-code {
    display: none;
  }
  .site-footer {
    padding-top: 45px;
  }
  .footer-grid {
    gap: 32px 24px;
    padding-bottom: 40px;
  }
  .footer-brand,
  .footer-brand img {
    width: 145px;
  }
  .footer-identity p {
    font-size: 10px;
  }
  .footer-identity .micro {
    font-size: 6px;
  }
  .footer-grid h2 {
    font-size: 11px;
    margin-bottom: 18px;
  }
  .footer-grid a:not(.footer-brand),
  .footer-grid address {
    font-size: 11px;
  }
  .footer-email {
    font-size: 15px !important;
  }
  .footer-fax {
    font-size: 9px;
  }
  .footer-bottom {
    gap: 17px;
    font-size: 8px;
  }
  .footer-privacy {
    max-width: 72%;
  }
  .footer-privacy p {
    font-size: 10px;
  }
}
@media (max-width: 360px) {
  .certification-mark,
  .certification-intro .certification-mark {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 32px;
  }
  .hero .button-row {
    gap: 11px;
  }
  .hero .text-link {
    font-size: 10px;
    gap: 8px;
  }
  .hero .button {
    font-size: 10px;
    gap: 10px;
    padding-inline: 11px;
  }
  .hero-visual {
    min-height: 327px;
  }
  .activity-grid {
    gap: 10px;
  }
  .card-body {
    padding-inline: 10px;
  }
  .card-body h3 {
    font-size: 21px;
  }
  .card-body .micro {
    font-size: 6px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-card summary {
    font-size: 25px;
    padding-inline: 18px;
  }
  .form-panel {
    padding-inline: 17px;
  }
  .footer-grid {
    gap: 30px 18px;
  }
  .footer-brand,
  .footer-brand img {
    width: 128px;
  }
}
/* Readability: keep labels and supporting text legible across every page. */
:is(
  .utility-bar .container,
  .eyebrow,
  .micro,
  .hero-bottom,
  .archive-caption,
  figcaption,
  .preview-caption,
  .small-tag,
  .contact-details dt,
  .quality-standards,
  .vertical-caption,
  .section-nav a,
  .image-index,
  .pdf-icon,
  .optional,
  .form-submit p,
  .footer-fax,
  .footer-bottom,
  .footer-privacy p
) {
  font-size: 11px;
}
@media (max-width: 650px) {
  :is(
    .utility-bar .container,
    .eyebrow,
    .micro,
    .hero-bottom,
    .archive-caption,
    figcaption,
    .preview-caption,
    .small-tag,
    .contact-details dt,
    .quality-standards,
    .vertical-caption,
    .section-nav a,
    .image-index,
    .pdf-icon,
    .optional,
    .form-submit p,
    .footer-fax,
    .footer-bottom,
    .footer-privacy p
  ) {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
}
@media print {
  .utility-bar,
  .menu-toggle,
  .button,
  .footer-privacy,
  .skip-link {
    display: none !important;
  }
  .site-header {
    position: static;
  }
  .container {
    width: 100%;
  }
  .section-pad {
    padding-block: 25px;
  }
  body {
    font-size: 12px;
  }
  .dark-section,
  .site-footer,
  .quality-feature {
    background: #fff;
    color: #000;
  }
  .dark-section p,
  .quality-feature p {
    color: #000 !important;
  }
}
