:root {
  --ink: #171717;
  --graphite: #262b2d;
  --muted: #62676c;
  --line: #e2ded7;
  --paper: #f8f6f1;
  --white: #ffffff;
  --clay: #b85f38;
  --blue: #1d6687;
  --green: #4f6f5b;
  --amber: #d8a441;
  --shadow: 0 22px 70px rgba(18, 18, 18, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 16px;
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

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

h1 {
  margin-bottom: 22px;
  font-size: 64px;
  line-height: 1.02;
  font-weight: 900;
}

h2 {
  margin-bottom: 16px;
  font-size: 40px;
  line-height: 1.12;
  font-weight: 880;
}

h3 {
  margin-bottom: 10px;
  font-size: 23px;
  line-height: 1.2;
}

.eyebrow {
  margin-bottom: 13px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(248, 246, 241, 0.95);
  border-bottom: 1px solid rgba(23, 23, 23, 0.08);
  backdrop-filter: blur(18px);
}

.topline {
  display: flex;
  justify-content: flex-end;
  gap: 20px;
  padding: 7px max(20px, calc((100% - 1220px) / 2));
  color: var(--white);
  background: var(--graphite);
  font-size: 13px;
}

.topline a {
  font-weight: 800;
}

.navbar {
  width: min(1220px, calc(100% - 40px));
  min-height: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  width: 190px;
  flex: 0 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  white-space: nowrap;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--clay);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

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

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 23, 23, 0.14);
  border-radius: 8px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.button,
.nav-cta {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 850;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button.primary,
.nav-cta {
  color: var(--white);
  background: var(--ink);
}

.button.ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.08);
}

.hero-slider {
  position: relative;
  height: min(820px, calc(100vh - 120px));
  min-height: 640px;
  overflow: hidden;
  background: var(--ink);
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 700ms ease;
}

.slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.slide-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.58) 43%, rgba(0, 0, 0, 0.14) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.slide-content {
  position: absolute;
  inset: 0;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: var(--white);
}

.slide-content h1,
.slide-content h2 {
  max-width: 730px;
  color: var(--white);
}

.slide-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.slide-content .eyebrow {
  color: #f0b073;
}

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

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 3;
}

.slider-controls button {
  width: 44px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.slider-controls button.is-active {
  background: var(--white);
}

.home-intro,
.section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.home-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
  gap: 60px;
  align-items: end;
  padding: 88px 0 48px;
}

.home-intro p:last-child {
  color: var(--muted);
  font-size: 19px;
}

.section {
  padding: 88px 0;
}

.section-heading.wide {
  max-width: 840px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.feature-grid.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 15px 42px rgba(18, 18, 18, 0.08);
}

.feature-card.image {
  position: relative;
  color: var(--white);
}

.feature-card.image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.feature-card.image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08));
}

.feature-card:hover img {
  transform: scale(1.05);
}

.feature-card span,
.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
  margin-left: 24px;
  margin-right: 24px;
}

.feature-card span {
  margin-bottom: 8px;
  color: #f2b06f;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.feature-card h3 {
  margin-bottom: 26px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.82);
}

.feature-card.solid {
  padding: 24px;
  color: var(--white);
}

.feature-card.solid span,
.feature-card.solid h3,
.feature-card.solid p {
  margin-left: 0;
  margin-right: 0;
}

.feature-card.blue {
  background: var(--blue);
}

.feature-card.clay {
  background: var(--clay);
}

.split-band {
  display: grid;
  grid-template-columns: minmax(360px, 48%) minmax(0, 1fr);
  margin-top: 34px;
  background: var(--graphite);
  color: var(--white);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
}

.split-copy {
  align-self: center;
  padding: 80px min(8vw, 100px);
}

.split-copy p:not(.eyebrow),
.split-copy li {
  color: rgba(255, 255, 255, 0.78);
}

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

.check-list li {
  padding-left: 28px;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--amber);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 46px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.page-hero {
  position: relative;
  min-height: 520px;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.page-hero.compact {
  min-height: 430px;
}

.page-hero > img,
.page-hero > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.84), rgba(0, 0, 0, 0.2));
}

.page-hero > div {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.page-hero h1,
.page-hero p {
  max-width: 760px;
}

.page-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1fr);
  gap: 70px;
}

.rich-text p {
  color: var(--muted);
  font-size: 18px;
}

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto 24px;
  overflow: hidden;
  border-radius: 8px;
  background: var(--line);
}

.stats-band div {
  padding: 30px;
  background: var(--white);
}

.stats-band strong {
  display: block;
  color: var(--blue);
  font-size: 42px;
  line-height: 1;
}

.stats-band span {
  color: var(--muted);
  font-weight: 800;
}

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

.values article,
.certificate-grid article,
.process-grid article {
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(23, 23, 23, 0.08);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.07);
}

.values p,
.certificate-grid p,
.process-grid p {
  color: var(--muted);
}

.certificate-grid span,
.process-grid strong,
.product-list span {
  display: block;
  margin-bottom: 10px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-list {
  display: grid;
  gap: 24px;
}

.product-list article {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 34px;
  align-items: center;
  padding: 20px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(18, 18, 18, 0.07);
}

.product-list img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.product-list p {
  max-width: 690px;
  color: var(--muted);
}

.product-showcases {
  display: grid;
  gap: 88px;
}

.product-showcase {
  scroll-margin-top: 130px;
}

.product-copy {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr);
  column-gap: 56px;
  align-items: end;
  margin-bottom: 28px;
}

.product-copy span {
  grid-column: 1;
  margin-bottom: 8px;
  color: var(--clay);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.product-copy h2 {
  grid-column: 1;
  margin-bottom: 0;
}

.product-copy p,
.product-copy .text-link {
  grid-column: 2;
}

.product-copy p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 18px;
}

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

.product-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.1);
}

.text-link {
  color: var(--blue);
  font-weight: 900;
}

.video-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background: var(--ink);
}

.video-hero video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.76;
}

.video-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.24));
}

.video-hero div {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
}

.video-hero h1,
.video-hero p {
  max-width: 760px;
}

.video-hero p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

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

.production-section .section-heading p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
}

.production-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.production-gallery img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(18, 18, 18, 0.1);
}

.product-gallery img,
.production-gallery img {
  cursor: zoom-in;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-gallery img:hover,
.production-gallery img:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 34px rgba(18, 18, 18, 0.16);
}

.product-gallery img:focus-visible,
.production-gallery img:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

body.lightbox-open {
  overflow: hidden;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.lightbox[hidden] {
  display: none;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(10, 10, 10, 0.92);
  cursor: zoom-out;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 18px;
  align-items: center;
  width: min(1220px, 94vw);
  max-height: 92vh;
}

.lightbox figure {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  margin: 0;
}

.lightbox figure img {
  display: block;
  max-width: 100%;
  max-height: calc(92vh - 64px);
  object-fit: contain;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.lightbox figcaption {
  max-width: calc(100% - 100px);
  overflow: hidden;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.lightbox-counter {
  position: absolute;
  right: 0;
  bottom: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.lightbox-close,
.lightbox-nav {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: var(--white);
  background: rgba(20, 20, 20, 0.72);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  border-color: rgba(255, 255, 255, 0.7);
  outline: none;
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-close {
  position: absolute;
  top: -8px;
  right: 0;
  z-index: 2;
  transform: translateY(-100%);
  font-size: 34px;
  line-height: 1;
}

.lightbox-nav {
  font-size: 42px;
  line-height: 1;
}

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

.sector-card {
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  text-align: center;
  box-shadow: 0 10px 26px rgba(18, 18, 18, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sector-card:hover {
  transform: translateY(-4px);
  border-color: rgba(23, 23, 23, 0.22);
  box-shadow: 0 16px 34px rgba(18, 18, 18, 0.1);
}

.sector-card svg {
  width: 46px;
  height: 46px;
  color: var(--clay);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.sector-card:nth-child(4n + 2) svg {
  color: var(--blue);
}

.sector-card:nth-child(4n + 3) svg {
  color: var(--green);
}

.sector-card:nth-child(4n + 4) svg {
  color: #a8791f;
}

.sector-card h2 {
  max-width: 190px;
  margin: 0;
  font-size: 21px;
  line-height: 1.2;
}

.contact-section {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(360px, 1fr);
  gap: 60px;
  padding: 90px 0;
}

.contact-info {
  align-self: start;
  display: grid;
  gap: 14px;
}

.contact-info a,
.contact-info span {
  display: block;
  padding: 18px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid var(--line);
  font-weight: 850;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: #34373c;
  font-size: 14px;
  font-weight: 850;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  border: 1px solid #d8d2c9;
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfaf7;
}

.quote-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--green);
  font-weight: 850;
}

.footer {
  display: grid;
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 1fr));
  gap: 34px;
  padding: 72px max(20px, calc((100% - 1220px) / 2)) 30px;
  background: #ebe7df;
  border-top: 1px solid var(--line);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 18px;
}

.footer p {
  color: var(--muted);
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 15px;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin: 8px 0;
  color: var(--muted);
  font-weight: 750;
}

.copyright {
  grid-column: 1 / -1;
  margin: 22px 0 0;
  padding-top: 22px;
  border-top: 1px solid rgba(23, 23, 23, 0.1);
  font-size: 14px;
}

@media (max-width: 1140px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 112px 20px auto;
    display: none;
    max-height: calc(100vh - 132px);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    overflow: auto;
    padding: 10px;
    border: 1px solid rgba(23, 23, 23, 0.1);
    border-radius: 8px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 12px;
    white-space: normal;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 6px;
  }

  .feature-grid,
  .feature-grid.three-up,
  .process-grid,
  .production-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .split-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .split-image img {
    min-height: 360px;
  }

  .values,
  .certificate-grid {
    grid-template-columns: 1fr;
  }

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

  .product-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .topline {
    display: none;
  }

  .navbar,
  .slide-content,
  .home-intro,
  .section,
  .page-hero > div,
  .video-hero div,
  .contact-section,
  .stats-band {
    width: min(100% - 28px, 1220px);
  }

  .navbar {
    min-height: 74px;
  }

  .brand {
    width: 162px;
  }

  .nav-links {
    inset: 86px 14px auto;
    max-height: calc(100vh - 104px);
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 31px;
  }

  .hero-slider {
    height: 720px;
    min-height: 720px;
  }

  .slide-content p:not(.eyebrow),
  .page-hero p:not(.eyebrow),
  .video-hero p:not(.eyebrow),
  .home-intro p:last-child {
    font-size: 17px;
  }

  .hero-actions,
  .cta-panel,
  .home-intro,
  .two-column,
  .stats-band,
  .feature-grid,
  .product-list article,
  .process-grid,
  .production-gallery,
  .contact-section,
  .footer {
    grid-template-columns: 1fr;
  }

  .feature-grid.three-up,
  .product-copy {
    grid-template-columns: 1fr;
  }

  .product-copy {
    gap: 0;
  }

  .product-copy span,
  .product-copy h2,
  .product-copy p,
  .product-copy .text-link {
    grid-column: 1;
  }

  .product-copy h2 {
    margin-bottom: 16px;
  }

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

  .lightbox {
    padding: 16px;
  }

  .lightbox-dialog {
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    gap: 6px;
    width: 100%;
  }

  .lightbox figure img {
    max-height: calc(88vh - 60px);
  }

  .lightbox-close,
  .lightbox-nav {
    width: 42px;
    height: 42px;
  }

  .lightbox-close {
    top: 8px;
    right: 8px;
    transform: none;
  }

  .lightbox figcaption {
    max-width: calc(100% - 54px);
    font-size: 12px;
  }

  .sector-page {
    gap: 12px;
  }

  .sector-card {
    gap: 14px;
    padding: 16px;
  }

  .sector-card svg {
    width: 38px;
    height: 38px;
  }

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

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section,
  .home-intro,
  .contact-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .page-hero.compact,
  .page-hero {
    min-height: 520px;
  }

  .feature-card {
    min-height: 320px;
  }

  .split-copy {
    padding: 60px 20px;
  }

  .cta-panel,
  .quote-form {
    padding: 24px;
  }

  .product-list article {
    padding: 14px;
  }

  .product-list img {
    height: 220px;
  }

  .stats-band div {
    padding: 24px;
  }

  .footer {
    padding-top: 54px;
  }
}

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

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