:root {
  --bg: #faf8f3;
  --surface: #ffffff;
  --surface-soft: #eee8de;
  --text: #20201e;
  --muted: #68635b;
  --line: #ded6ca;
  --accent: #a96537;
  --accent-dark: #744121;
  --sage: #596b5d;
  --graphite: #20211f;
  --graphite-soft: #2b2d2a;
  --shadow: 0 22px 58px rgba(41, 34, 26, 0.14);
  --radius: 8px;
  --container: min(1180px, calc(100vw - 40px));
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

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

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(169, 101, 55, 0.42);
  outline-offset: 3px;
}

svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(29px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 9px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  font-size: 17px;
}

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

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

.skip-link:focus {
  z-index: 1000;
  top: 14px;
  left: 14px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--graphite);
  color: #fff;
}

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(222, 214, 202, 0.9);
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(250, 248, 243, 0.98);
  box-shadow: 0 14px 34px rgba(36, 30, 23, 0.1);
}

.site-header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
  width: min(1280px, calc(100vw - 32px));
  min-height: 76px;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand__mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 6px;
  background: var(--graphite);
  color: #fff;
  font-weight: 850;
  letter-spacing: 0;
}

.brand__text {
  display: grid;
  gap: 1px;
}

.brand__text strong {
  font-size: 15px;
  line-height: 1.1;
}

.brand__text small {
  color: var(--muted);
  font-size: 12px;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 4px;
}

.primary-nav a {
  border-radius: 6px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  padding: 10px 9px;
  transition: color 180ms ease, background 180ms ease;
}

.primary-nav a:hover,
.primary-nav a.is-active {
  color: var(--text);
  background: var(--surface-soft);
}

.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0 13px;
  background: var(--surface);
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.button:active {
  transform: translateY(0);
}

.button--primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 24px rgba(169, 101, 55, 0.2);
}

.button--primary:hover {
  background: var(--accent-dark);
}

.button--secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--text);
}

.button--secondary:hover {
  border-color: rgba(169, 101, 55, 0.5);
}

.button--light,
.button--ghost {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  backdrop-filter: blur(8px);
}

.button--light:hover,
.button--ghost:hover {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.16);
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.home-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(540px, calc(100svh - 150px), 660px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background: var(--graphite);
  color: #fff;
}

.home-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 18, 16, 0.86) 0%, rgba(18, 18, 16, 0.68) 42%, rgba(18, 18, 16, 0.2) 74%, rgba(18, 18, 16, 0.28) 100%),
    linear-gradient(180deg, rgba(18, 18, 16, 0.08) 0%, rgba(18, 18, 16, 0.5) 100%);
}

.home-hero__media {
  position: absolute;
  z-index: -2;
  inset: 0;
}

.home-hero__photo {
  object-position: center center;
  filter: saturate(0.96) contrast(0.98);
}

.home-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 770px) minmax(240px, 330px);
  align-items: end;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(78px, 9vw, 126px) 0 clamp(54px, 6vw, 86px);
}

.home-hero__copy {
  max-width: 770px;
}

.home-hero .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.home-hero h1 {
  max-width: 820px;
  margin-bottom: 24px;
  color: #fff;
  font-size: clamp(44px, 5vw, 72px);
}

.home-hero__copy > p:not(.eyebrow) {
  max-width: 660px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
}

.home-hero__panel {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(28, 29, 27, 0.56);
  color: #fff;
  backdrop-filter: blur(16px);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.22);
}

.home-hero__panel span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.home-hero__panel strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.1;
}

.home-hero__panel p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
}

.section {
  padding: 82px 0;
}

.section--tight {
  padding-top: 46px;
}

.section--intro {
  padding-top: 56px;
}

.section--band {
  background: var(--surface-soft);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 32px;
}

.section-heading p {
  margin-bottom: 0;
}

.section-heading__text p:last-child,
.cms-content p:last-child {
  margin-bottom: 0;
}

.cms-content {
  max-width: 860px;
}

.cms-content h2 {
  margin-bottom: 16px;
}

.cms-content a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.intro-grid,
.split-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 30px;
}

.split-heading .section-heading,
.intro-grid .section-heading {
  margin-bottom: 0;
}

.intro-note {
  max-width: 330px;
  border-left: 3px solid var(--sage);
  padding-left: 18px;
}

.intro-note strong {
  display: block;
  margin-bottom: 6px;
}

.intro-note p {
  margin-bottom: 0;
  font-size: 15px;
}

.category-grid,
.article-grid,
.reference-strip,
.product-grid,
.service-rail {
  display: grid;
  gap: 22px;
}

.category-grid,
.article-grid,
.reference-strip,
.product-grid--three,
.service-rail {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.category-card,
.product-card,
.reference-card,
.article-card,
.feature-list article,
.service-grid article,
.service-rail article,
.inquiry-panel,
.download-panel,
.contact-form,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.category-card,
.product-card,
.reference-card,
.article-card {
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.category-card__image,
.product-card__image,
.reference-card__image,
.article-card__image,
.page-hero__media,
.two-column-media figure,
.gallery-strip figure {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--surface-soft);
}

.category-card__image,
.product-card__image,
.reference-card__image,
.article-card__image {
  display: block;
}

.category-card__image {
  aspect-ratio: 1.18 / 1;
}

.product-card__image {
  aspect-ratio: 1.3 / 1;
}

.reference-card__image {
  aspect-ratio: 1.35 / 1;
}

.article-card__image {
  aspect-ratio: 1.42 / 1;
}

.category-card__body,
.product-card__body,
.reference-card__body,
.article-card__body {
  padding: 22px;
}

.category-card__body p,
.product-card__body p,
.reference-card__body p,
.article-card__body p {
  margin-bottom: 0;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 18px;
  color: var(--accent-dark);
  font-size: 15px;
  font-weight: 850;
}

.text-link svg {
  width: 17px;
  height: 17px;
  transition: transform 180ms ease;
}

.text-link:hover svg {
  transform: translateX(3px);
}

.meta-line {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.why-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(36px, 6vw, 80px);
}

.why-list {
  display: grid;
  gap: 16px;
}

.why-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}

.why-item > span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: rgba(169, 101, 55, 0.12);
  color: var(--accent-dark);
}

.why-item p,
.feature-list p,
.service-grid p,
.service-rail p {
  margin-bottom: 0;
}

.page-hero {
  padding: 58px 0 54px;
}

.page-hero__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(420px, 1.12fr);
  align-items: center;
  gap: clamp(32px, 5vw, 70px);
}

.page-hero__copy p {
  max-width: 650px;
  margin-bottom: 30px;
  font-size: 19px;
}

.page-hero__media {
  aspect-ratio: 1.55 / 1;
  margin: 0;
  box-shadow: var(--shadow);
}

.manufacturer-strip {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(300px, 1.2fr);
  align-items: center;
  gap: 34px;
}

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

.manufacturer-list span {
  display: grid;
  min-height: 82px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--graphite);
  font-size: 20px;
  font-weight: 850;
}

.two-column-media,
.detail-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.two-column-media figure {
  aspect-ratio: 1.05 / 1;
  margin: 0;
}

.check-list,
.benefit-grid {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0 0 26px;
  list-style: none;
}

.check-list li,
.benefit-grid li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.check-list svg,
.benefit-grid svg {
  flex: 0 0 auto;
  margin-top: 3px;
  color: var(--accent-dark);
}

.feature-list,
.download-panel,
.contact-details,
.contact-form {
  display: grid;
  gap: 14px;
}

.feature-list article,
.service-grid article,
.service-rail article,
.inquiry-panel,
.download-panel,
.contact-form,
.contact-details {
  padding: 24px;
}

.inquiry-panel,
.download-panel {
  position: sticky;
  top: 100px;
}

.download-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--accent-dark);
  font-weight: 850;
}

.gallery-strip {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 18px;
}

.gallery-strip figure {
  aspect-ratio: 1.2 / 1;
  margin: 0;
}

.gallery-strip figure:first-child {
  aspect-ratio: 1.55 / 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-bar button {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 16px;
  background: var(--surface);
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.filter-bar button.is-active {
  border-color: var(--graphite);
  background: var(--graphite);
  color: #fff;
}

.filter-bar button:hover {
  transform: translateY(-1px);
  border-color: rgba(32, 33, 31, 0.38);
}

.reference-card.is-hidden {
  display: none;
}

.contact-details > a,
.contact-details > span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 800;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  background: var(--surface);
  font-weight: 850;
}

.map-placeholder {
  display: grid;
  min-height: 260px;
  place-content: center;
  gap: 6px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(89, 107, 93, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(89, 107, 93, 0.12) 1px, transparent 1px),
    #ece6dc;
  background-size: 42px 42px;
  text-align: center;
}

.map-placeholder span {
  color: var(--accent-dark);
  font-weight: 850;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 13px;
  background: var(--bg);
  color: var(--text);
  font-size: 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(169, 101, 55, 0.72);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(169, 101, 55, 0.11);
  outline: none;
}

.contact-form textarea {
  resize: vertical;
}

.form-message {
  border: 1px solid rgba(89, 107, 93, 0.28);
  border-radius: 6px;
  padding: 12px;
  background: rgba(89, 107, 93, 0.1);
  color: var(--sage);
  font-weight: 750;
}

.contact-cta {
  padding: 72px 0;
  background: var(--graphite);
  color: #fff;
}

.contact-cta p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.contact-cta__inner > div:first-child {
  max-width: 700px;
}

.contact-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  background: #1f201f;
  color: #fff;
}

.site-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.9fr 0.9fr;
  gap: 34px;
  padding: 58px 0 38px;
}

.site-footer h2,
.site-footer h3 {
  margin-bottom: 12px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer a,
.site-footer span {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .social-row a {
  background: rgba(255, 255, 255, 0.04);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 24px;
  color: rgba(255, 255, 255, 0.62);
}

[data-reveal] {
  transform: translateY(12px);
  opacity: 0;
  transition: transform 420ms ease, opacity 420ms ease;
}

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

@media (hover: hover) {
  .category-card:hover,
  .product-card:hover,
  .reference-card:hover,
  .article-card:hover {
    transform: translateY(-4px);
    border-color: rgba(169, 101, 55, 0.32);
    box-shadow: 0 18px 44px rgba(42, 36, 29, 0.11);
  }

  .category-card__image img,
  .product-card__image img,
  .reference-card__image img,
  .article-card__image img,
  .gallery-strip img,
  .page-hero__media img {
    transition: transform 420ms ease, filter 240ms ease;
  }

  .category-card:hover img,
  .product-card:hover img,
  .reference-card:hover img,
  .article-card:hover img {
    transform: scale(1.035);
  }

  .page-hero__media:hover img,
  .gallery-strip figure:hover img {
    transform: scale(1.02);
  }
}

@media (max-width: 1120px) {
  .site-header__inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: grid;
  }

  .primary-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 76px);
    padding: 14px 20px 24px;
    border-bottom: 1px solid var(--line);
    background: var(--bg);
    overflow: auto;
    box-shadow: 0 18px 34px rgba(36, 30, 23, 0.12);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 12px;
    font-size: 17px;
  }

  .header-call {
    justify-self: end;
  }

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

@media (max-width: 900px) {
  .home-hero__inner,
  .page-hero__grid,
  .why-layout,
  .manufacturer-strip,
  .two-column-media,
  .detail-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: clamp(520px, calc(100svh - 142px), 620px);
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(18, 18, 16, 0.88) 0%, rgba(18, 18, 16, 0.7) 58%, rgba(18, 18, 16, 0.34) 100%),
      linear-gradient(180deg, rgba(18, 18, 16, 0.14) 0%, rgba(18, 18, 16, 0.56) 100%);
  }

  .home-hero__panel {
    max-width: 380px;
  }

  .category-grid,
  .article-grid,
  .reference-strip,
  .reference-grid,
  .product-grid,
  .product-grid--three,
  .service-rail,
  .site-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid,
  .contact-cta__inner,
  .split-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-cta__actions {
    justify-content: flex-start;
  }

  .inquiry-panel,
  .download-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(calc(100vw - 28px), 430px);
  }

  .site-header__inner {
    width: min(100vw - 24px, 1280px);
    min-height: 68px;
    gap: 10px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__text strong {
    max-width: 132px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand__text small {
    display: none;
  }

  .header-call {
    width: 42px;
    padding: 0;
  }

  .header-call span {
    display: none;
  }

  .primary-nav {
    inset: 68px 0 auto 0;
    max-height: calc(100vh - 68px);
  }

  .home-hero {
    min-height: 0;
  }

  .home-hero__inner {
    padding: 52px 0 44px;
  }

  .home-hero__panel {
    display: none;
  }

  .home-hero::before {
    background:
      linear-gradient(90deg, rgba(18, 18, 16, 0.9) 0%, rgba(18, 18, 16, 0.76) 58%, rgba(18, 18, 16, 0.48) 100%),
      linear-gradient(180deg, rgba(18, 18, 16, 0.18) 0%, rgba(18, 18, 16, 0.58) 100%);
  }

  h1 {
    max-width: 100%;
    overflow-wrap: break-word;
    font-size: clamp(34px, 9vw, 40px);
    line-height: 1.04;
  }

  .home-hero h1 {
    font-size: clamp(38px, 11vw, 48px);
    line-height: 1.02;
  }

  h2 {
    font-size: 30px;
  }

  p,
  .home-hero__copy > p:not(.eyebrow),
  .page-hero__copy p {
    font-size: 16px;
  }

  .section,
  .page-hero {
    padding: 58px 0;
  }

  .section--intro {
    padding-top: 42px;
  }

  .category-grid,
  .article-grid,
  .reference-strip,
  .reference-grid,
  .product-grid,
  .product-grid--three,
  .service-grid,
  .service-rail,
  .manufacturer-list,
  .gallery-strip,
  .site-footer__top {
    grid-template-columns: 1fr;
  }

  .gallery-strip figure,
  .gallery-strip figure:first-child {
    aspect-ratio: 1.25 / 1;
  }

  .button,
  .contact-form .button {
    width: 100%;
  }

  .button-row,
  .contact-cta__actions {
    width: 100%;
  }

  .site-footer__bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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