:root {
  --background: #F5F1E8;
  --ink: #17212B;
  --muted: #66706F;
  --line: #DDD9CF;
  --panel: #FFFFFF;
  --panel-strong: #F5F1E8;
  --brand: #17624F;
  --brand-dark: #104A3C;
  --brand-hover: #104A3C;
  --accent: #D2762B;
  --accent-blue: #2779A7;
  --accent-lime: #A8C93A;
  --white: #FFFFFF;
  --shadow: 0 18px 42px rgba(23, 33, 43, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Homepage RFQ: one conversion panel without changing the shared form markup. */
.rfq-panel.home-rfq-panel {
  grid-template-columns: minmax(18rem, 0.78fr) minmax(0, 1.22fr);
  gap: 0;
  align-items: stretch;
  max-width: 1180px;
  margin-block: clamp(2.1rem, 5vw, 4.25rem);
  padding: 0;
  overflow: visible;
  border: 1px solid rgba(23, 98, 79, 0.12);
  border-radius: 1.25rem;
  background: var(--white);
  box-shadow: 0 1.35rem 3.5rem rgba(23, 33, 43, 0.12);
}

.home-rfq-panel > div:first-child {
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: 1.25rem 0 0 1.25rem;
  background: var(--brand-dark);
  color: var(--white);
}

.home-rfq-panel > div:first-child .eyebrow,
.home-rfq-panel > div:first-child h2,
.home-rfq-panel > div:first-child p {
  color: var(--white);
}

.home-rfq-panel > div:first-child p:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.home-rfq-panel .rfq-form {
  align-content: start;
  gap: 0.75rem;
  padding: clamp(1.25rem, 2.6vw, 2rem);
  border: 0;
  border-radius: 0 1.25rem 1.25rem 0;
  box-shadow: none;
}

[dir="rtl"] .home-rfq-panel > div:first-child {
  border-radius: 0 1.25rem 1.25rem 0;
}

[dir="rtl"] .home-rfq-panel .rfq-form {
  border-radius: 1.25rem 0 0 1.25rem;
}

.home-rfq-panel .rfq-form label,
.home-rfq-panel .form-label {
  gap: 0.4rem;
  font-size: 0.86rem;
}

.home-rfq-panel .rfq-form input,
.home-rfq-panel .rfq-form select,
.home-rfq-panel .rfq-form textarea,
.home-rfq-panel .color-select-toggle {
  min-height: 46px;
  border-color: var(--line);
  border-radius: 0.6rem;
  font-size: 0.9rem;
}

.home-rfq-panel .rfq-form input:focus-visible,
.home-rfq-panel .rfq-form select:focus-visible,
.home-rfq-panel .rfq-form textarea:focus-visible,
.home-rfq-panel .color-select-toggle:focus-visible {
  border-color: var(--brand);
  outline: 3px solid rgba(23, 98, 79, 0.18);
  outline-offset: 1px;
}

.home-rfq-panel .rfq-form textarea {
  min-height: 6.25rem;
}

.home-rfq-panel .form-submit {
  min-height: 48px;
  border-radius: 0.6rem;
  background: var(--brand);
}

.home-rfq-panel .form-submit:hover,
.home-rfq-panel .form-submit:focus-visible {
  background: var(--brand-dark);
}

@media (max-width: 640px) {
  .rfq-panel.home-rfq-panel {
    grid-template-columns: 1fr;
    margin-block: 1.8rem;
    margin-inline: 1rem;
    border-radius: 1.25rem;
  }

  .home-rfq-panel > div:first-child,
  [dir="rtl"] .home-rfq-panel > div:first-child {
    padding: 1.4rem 1.15rem;
    border-radius: 1.25rem 1.25rem 0 0;
  }

  .home-rfq-panel .rfq-form,
  [dir="rtl"] .home-rfq-panel .rfq-form {
    grid-template-columns: 1fr;
    gap: 0.65rem;
    padding: 1rem;
    border-radius: 0 0 1.25rem 1.25rem;
  }

  .home-rfq-panel .form-submit {
    width: 100%;
    justify-self: stretch;
  }

  .floating-actions.is-rfq-active {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-delay: 0s, 0s, 160ms;
  }
}

/* Global footer */
.site-footer.site-footer {
  position: relative;
  grid-template-columns: minmax(17rem, 1.6fr) repeat(4, minmax(9rem, 1fr));
  gap: 2rem clamp(1.5rem, 3vw, 3.25rem);
  padding: clamp(3.25rem, 6vw, 5rem) max(clamp(1.25rem, 5vw, 4.5rem), calc((100vw - 1380px) / 2 + 2rem)) 0;
  overflow: hidden;
  border-top: 0;
  border-radius: 1.5rem 1.5rem 0 0;
  background: #0f1a21;
  color: #d6dde0;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--brand) 0 34%, var(--accent-blue) 34% 58%, var(--accent) 58% 80%, var(--accent-lime) 80% 100%);
}

.site-footer > div {
  min-width: 0;
}

.site-footer strong {
  display: block;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-size: 0.95rem;
  line-height: 1.35;
}

.site-footer.site-footer p {
  margin: 0 0 0.85rem;
  color: #c7d0d4;
  line-height: 1.65;
}

.site-footer.site-footer a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: #d6dde0;
  text-underline-offset: 0.2em;
  transition: color 160ms ease, background-color 160ms ease;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: #b9dda9;
}

.site-footer a:focus-visible {
  border-radius: 0.25rem;
  outline: 2px solid #b9dda9;
  outline-offset: 3px;
}

.footer-brand {
  max-width: 23rem;
}

.site-footer .footer-logo {
  width: 10.5rem;
  margin-bottom: 1.15rem;
}

.footer-column > p {
  margin: 0;
}

.footer-bottom {
  grid-column: 1 / -1;
  margin-top: 0.75rem;
  padding: 1.25rem 0 1.4rem;
  border-top: 1px solid rgba(221, 217, 207, 0.18);
}

.footer-bottom p {
  margin: 0;
  color: #aeb9be;
  font-size: 0.88rem;
}

.floating-actions.is-footer-visible {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, 160ms;
}

@media (max-width: 900px) {
  .site-footer.site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 2rem;
    padding-inline: clamp(1.25rem, 5vw, 2.5rem);
  }

  .footer-brand,
  .footer-contact,
  .footer-legal,
  .footer-bottom {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .site-footer.site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem 1rem;
    padding: 2.8rem 1rem 0;
    border-radius: 1.5rem 1.5rem 0 0;
  }

  .footer-brand,
  .footer-contact,
  .footer-legal,
  .footer-bottom {
    grid-column: 1 / -1;
  }

  .footer-brand {
    max-width: none;
  }

  .site-footer strong {
    margin-bottom: 0.45rem;
  }

  .site-footer a {
    min-height: 44px;
  }

  .footer-bottom {
    margin-top: 0.25rem;
    padding-bottom: max(1.25rem, env(safe-area-inset-bottom));
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer a {
    transition: none;
  }
}

/* Global header and navigation */
html {
  scroll-padding-top: 5.25rem;
}

:target {
  scroll-margin-top: 5.25rem;
}

.site-header.site-header {
  min-height: 72px;
  gap: clamp(0.85rem, 1.8vw, 1.6rem);
  padding: 0.5rem clamp(1rem, 3vw, 2.25rem);
  border-bottom: 1px solid rgba(221, 217, 207, 0.72);
  background: rgba(250, 248, 242, 0.9);
  box-shadow: 0 0 0 rgba(23, 33, 43, 0);
  backdrop-filter: blur(16px) saturate(120%);
  transition: min-height 180ms ease, padding 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.site-header.site-header.is-scrolled {
  min-height: 64px;
  padding-block: 0.25rem;
  background: rgba(250, 248, 242, 0.96);
  box-shadow: 0 0.45rem 1.4rem rgba(23, 33, 43, 0.09);
}

.site-header .brand {
  min-width: 10.75rem;
}

.site-header .brand picture,
.site-header .brand img {
  width: 10.25rem;
  transition: width 180ms ease;
}

.site-header.is-scrolled .brand picture,
.site-header.is-scrolled .brand img {
  width: 9.75rem;
}

.site-header .site-nav {
  flex-wrap: nowrap;
  gap: clamp(0.15rem, 0.55vw, 0.5rem);
}

.site-header .site-nav > a,
.site-header .site-nav > .nav-group > .nav-dropdown-toggle {
  position: relative;
  min-height: 42px;
  padding-inline: clamp(0.58rem, 0.85vw, 0.82rem);
  border-radius: 0.65rem;
}

.site-header .site-nav > a::after,
.site-header .site-nav > .nav-group > .nav-dropdown-toggle::after {
  content: "";
  position: absolute;
  inset-inline: 0.65rem;
  bottom: 0.22rem;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 160ms ease, transform 160ms ease;
}

.site-header .site-nav > a:hover::after,
.site-header .site-nav > a:focus-visible::after,
.site-header .site-nav > .nav-group > .nav-dropdown-toggle:hover::after,
.site-header .site-nav > .nav-group > .nav-dropdown-toggle:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.site-header .site-nav > a[aria-current="page"],
.site-header .nav-group.is-active > .nav-dropdown-toggle {
  background: #e8f4ee;
  color: var(--brand-dark);
}

.site-header .site-nav > a:last-child {
  min-height: 42px;
  border: 1px solid var(--brand);
  background: transparent;
  color: var(--brand-dark);
}

.site-header .site-nav > a:last-child:hover,
.site-header .site-nav > a:last-child:focus-visible,
.site-header .site-nav > a:last-child[aria-current="page"] {
  background: #e8f4ee;
}

.site-header .site-nav a:focus-visible,
.site-header .nav-dropdown-toggle:focus-visible,
.site-header .menu-toggle:focus-visible,
.site-header .language-select:focus-visible {
  outline: 3px solid rgba(23, 98, 79, 0.2);
  outline-offset: 2px;
}

.site-header .language-select {
  min-height: 42px;
  min-width: 7rem;
  appearance: none;
  border-color: var(--line);
  border-radius: 0.65rem;
  padding-inline: 0.8rem 2.15rem;
  background-color: rgba(255, 255, 255, 0.9);
  background-image: linear-gradient(45deg, transparent 50%, var(--brand-dark) 50%), linear-gradient(135deg, var(--brand-dark) 50%, transparent 50%);
  background-position: calc(100% - 1rem) 50%, calc(100% - 0.72rem) 50%;
  background-size: 0.32rem 0.32rem, 0.32rem 0.32rem;
  background-repeat: no-repeat;
}

[dir="rtl"] .site-header .language-select {
  padding-inline: 2.15rem 0.8rem;
  background-position: 1rem 50%, 0.72rem 50%;
}

.site-header .menu-toggle {
  min-width: 48px;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.65rem;
  color: var(--ink);
}

.site-header .menu-toggle::after {
  content: "☰";
  color: var(--brand-dark);
  font-size: 1.15rem;
  line-height: 1;
}

.site-header .menu-toggle[aria-expanded="true"]::after {
  content: "×";
  font-size: 1.45rem;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1180px) and (min-width: 981px) {
  .site-header.site-header {
    gap: 0.55rem;
    padding-inline: 1rem;
  }

  .site-header .brand {
    min-width: 9.25rem;
  }

  .site-header .brand picture,
  .site-header .brand img {
    width: 9.15rem;
  }

  .site-header .site-nav > a,
  .site-header .site-nav > .nav-group > .nav-dropdown-toggle {
    padding-inline: 0.48rem;
    font-size: 0.91rem;
  }
}

@media (max-width: 980px) {
  .site-header.site-header {
    grid-template-columns: minmax(0, 1fr) auto auto;
    min-height: 72px;
    padding: 0.5rem 1rem;
  }

  .site-header.site-header.is-scrolled {
    min-height: 64px;
    padding-block: 0.25rem;
  }

  .site-header .brand {
    min-width: 0;
  }

  .site-header .brand picture,
  .site-header .brand img,
  .site-header.is-scrolled .brand picture,
  .site-header.is-scrolled .brand img {
    width: clamp(8.5rem, 24vw, 9.65rem);
  }

  .site-header .site-nav {
    position: absolute;
    inset: 100% 0 auto;
    display: none;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    grid-column: auto;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.25rem;
    padding: 0.85rem 1rem 1rem;
    border: 1px solid var(--line);
    border-inline: 0;
    border-radius: 0 0 1rem 1rem;
    background: var(--white);
    box-shadow: 0 1rem 2rem rgba(23, 33, 43, 0.14);
  }

  .site-header .site-nav.is-open {
    display: flex;
  }

  .site-header .site-nav > a,
  .site-header .site-nav > .nav-group > .nav-dropdown-toggle,
  .site-header .nav-dropdown a {
    width: 100%;
    min-height: 48px;
    justify-content: flex-start;
    padding: 0.65rem 0.85rem;
    border-radius: 0.65rem;
  }

  .site-header .site-nav > a::after,
  .site-header .site-nav > .nav-group > .nav-dropdown-toggle::after {
    display: none;
  }

  .site-header .nav-group {
    width: 100%;
  }

  .site-header .nav-group:not(.is-open) .nav-dropdown {
    display: none;
  }

  .site-header .nav-group.is-open .nav-dropdown {
    display: grid;
  }

  .site-header .nav-dropdown {
    position: static;
    min-width: 0;
    margin: 0.2rem 0 0.45rem;
    padding: 0.25rem 0.35rem 0.35rem;
    border: 0;
    border-inline-start: 2px solid #d7e8df;
    border-radius: 0;
    box-shadow: none;
  }

  .site-header .nav-dropdown a {
    color: var(--muted);
  }

  .site-header .site-nav > a:last-child {
    margin-top: 0.35rem;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .site-header.site-header {
    gap: 0.45rem;
    padding-inline: 0.75rem;
  }

  .site-header .brand picture,
  .site-header .brand img,
  .site-header.is-scrolled .brand picture,
  .site-header.is-scrolled .brand img {
    width: clamp(7.75rem, 34vw, 8.85rem);
  }

  .site-header .menu-toggle {
    min-width: 46px;
    min-height: 46px;
    padding-inline: 0.55rem;
    font-size: 0.88rem;
  }

  .site-header .language-select {
    min-width: 0;
    max-width: 7.1rem;
    min-height: 46px;
    padding-inline: 0.65rem 1.85rem;
    font-size: 0.9rem;
    background-position: calc(100% - 0.85rem) 50%, calc(100% - 0.58rem) 50%;
  }

  [dir="rtl"] .site-header .language-select {
    padding-inline: 1.85rem 0.65rem;
    background-position: 0.85rem 50%, 0.58rem 50%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-header.site-header,
  .site-header .brand picture,
  .site-header .brand img,
  .site-header .site-nav > a::after,
  .site-header .site-nav > .nav-group > .nav-dropdown-toggle::after {
    transition: none;
  }
}

/* Shared product-detail layout */
.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(22rem, 0.78fr);
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-top: clamp(2.4rem, 5vw, 4.2rem);
  padding-bottom: clamp(2rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}

.product-hero-copy h1 { max-width: 820px; font-size: clamp(2rem, 4vw, 3.6rem); }
.product-lead, .product-section-intro { max-width: 760px; color: var(--muted); }
.product-lead { font-size: 1.06rem; }
.product-hero-picture { display: block; width: 100%; min-height: 28rem; overflow: hidden; border: 1px solid var(--line); border-radius: 0.5rem; background: #f2f5f6; }
.product-hero-picture img { display: block; width: 100%; height: 100%; min-height: 28rem; max-height: 34rem; aspect-ratio: 4 / 3; object-fit: contain; }
.product-hero-points { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.65rem; margin-top: 1.35rem; }
.product-hero-points div { min-height: 4.5rem; padding: 0.75rem 0.85rem; border: 1px solid var(--line); border-radius: 0.45rem; background: var(--panel); }
.product-hero-points span, .product-hero-points strong { display: block; }
.product-hero-points span { margin-bottom: 0.25rem; color: var(--muted); font-size: 0.78rem; font-weight: 650; }
.product-hero-points strong { font-size: 0.95rem; }
.product-section { padding-top: clamp(2.1rem, 4vw, 3.6rem); padding-bottom: clamp(2.1rem, 4vw, 3.6rem); }
.product-section-intro { margin-bottom: 1.25rem; }
.product-key-grid, .product-application-grid { display: grid; gap: 0.8rem; }
.product-key-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.product-application-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-info-card { min-height: 100%; padding: 1rem; border: 1px solid var(--line); border-radius: 0.5rem; background: var(--white); }
.product-key-section .product-info-card { background: var(--panel); }
.product-info-card h3 { margin-bottom: 0.55rem; font-size: 1.02rem; }
.product-info-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }
.product-gallery-section { border-block: 1px solid var(--line); background: #f8fafb; }
.product-gallery-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.8rem; }
.product-gallery-grid.is-three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-media-card { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 0.5rem; background: var(--white); }
.product-gallery-picture { display: block; width: 100%; overflow: hidden; background: #eef3f5; }
.product-gallery-picture img { display: block; width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.product-gallery-picture.product-fit-contain img, .product-fit-contain img { object-fit: contain; }
.product-media-card figcaption { padding: 0.8rem 0.9rem; border-top: 1px solid var(--line); }
.product-media-card h3 { margin: 0; font-size: 0.92rem; }
.product-reference-heading { display: grid; grid-template-columns: minmax(0, 0.75fr) minmax(18rem, 1fr); gap: 1.5rem; align-items: end; margin-bottom: 1rem; }
.product-reference-heading h2, .product-reference-heading p { margin-bottom: 0; }
.product-reference-heading > p { color: var(--muted); }
.product-table-wrap table { min-width: 560px; }
.product-table-wrap th, .product-table-wrap td { padding: 0.78rem 0.95rem; }
.product-faq-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0.75rem; }
.product-faq-list .faq-item { align-self: start; margin: 0; }
@media (max-width: 980px) {
  .product-detail-hero { grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.7fr); }
  .product-key-grid, .product-gallery-grid, .product-gallery-grid.is-three { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  .product-detail-hero, .product-reference-heading { grid-template-columns: 1fr; }
  .product-detail-hero { padding-top: 2rem; padding-bottom: 2rem; }
  .product-hero-picture, .product-hero-picture img { min-height: 18rem; max-height: 25rem; }
  .product-application-grid, .product-faq-list { grid-template-columns: 1fr; }
}

@media (max-width: 430px) {
  .product-key-grid, .product-gallery-grid, .product-gallery-grid.is-three { grid-template-columns: 1fr; }
  .product-hero-points { gap: 0.5rem; }
  .product-hero-points div { min-height: 4.2rem; padding: 0.65rem; }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--background);
  line-height: 1.62;
}

a {
  color: inherit;
}

img,
svg {
  max-width: 100%;
}

img {
  height: auto;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 0.9rem;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  padding: 0.65rem clamp(1rem, 3vw, 2.25rem);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.brand {
  display: grid;
  text-decoration: none;
  line-height: 1.1;
  min-width: 11rem;
}

.brand picture,
.brand img {
  display: block;
  width: 9.5rem;
  height: auto;
}

.brand span {
  font-size: 1.35rem;
  font-weight: 800;
}

.brand small {
  color: var(--muted);
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.1rem;
}

.site-nav a,
.nav-dropdown-toggle {
  min-height: 2.5rem;
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.72rem;
  border-radius: 0.45rem;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 620;
  text-decoration: none;
  cursor: pointer;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-group.is-active .nav-dropdown-toggle,
.nav-dropdown-toggle:hover {
  color: var(--ink);
  background: var(--panel);
}

.nav-group {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.35rem);
  inset-inline-start: 0;
  min-width: 14rem;
  display: none;
  padding: 0.45rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  box-shadow: var(--shadow);
}

.nav-group:hover .nav-dropdown,
.nav-group.is-open .nav-dropdown {
  display: grid;
}

.nav-dropdown a {
  justify-content: flex-start;
  width: 100%;
}

.language-select,
input,
select,
textarea,
button {
  font: inherit;
}

.language-select {
  min-height: 2.45rem;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--ink);
  padding: 0 0.65rem;
  font-size: 0.96rem;
  font-weight: 600;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 0.45rem;
  padding: 0.55rem 0.75rem;
}

main {
  overflow: hidden;
}

section {
  padding: clamp(2.1rem, 5vw, 4.25rem) clamp(1rem, 3vw, 2.5rem);
  max-width: 1240px;
  margin: 0 auto;
}

/* Homepage rhythm: keep approved section layouts while aligning their outer spacing. */
.hero ~ section:not(.home-rfq-panel) {
  padding-top: clamp(4.5rem, 5vw, 5rem);
  padding-bottom: clamp(4.5rem, 5vw, 5rem);
}

.hero .button:focus-visible,
.hero ~ section a:focus-visible,
.hero ~ section button:focus-visible,
.hero ~ section summary:focus-visible {
  outline: 3px solid rgba(23, 98, 79, 0.3);
  outline-offset: 3px;
}

.hero {
  min-height: min(720px, calc(100vh - 4.5rem));
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(18rem, 0.95fr);
  gap: clamp(1.4rem, 4vw, 3.5rem);
  align-items: center;
}

.hero h1 {
  letter-spacing: -0.03em;
}

.hero .eyebrow {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.hero .eyebrow::before {
  content: "";
  width: 2.25rem;
  height: 0.16rem;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--brand);
}

.page-hero {
  padding-top: clamp(2.5rem, 6vw, 4.75rem);
  padding-bottom: clamp(1.5rem, 4vw, 2.75rem);
  border-bottom: 1px solid var(--line);
}

.page-hero p,
.hero p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
}

h1,
h2,
h3 {
  margin: 0 0 1rem;
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  max-width: 920px;
  font-size: clamp(2rem, 4.4vw, 4rem);
}

h2 {
  font-size: clamp(1.45rem, 2.5vw, 2.15rem);
}

h3 {
  font-size: 1.12rem;
}

p {
  margin: 0 0 1rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--brand);
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.4rem;
}

.button {
  min-height: 2.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--white);
  color: var(--ink);
  padding: 0.7rem 1rem;
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
  max-width: 100%;
  text-align: center;
}

.button.primary {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.button.ghost {
  border-color: var(--brand);
  color: var(--brand);
}

.text-link {
  color: var(--brand-dark);
  font-weight: 760;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.85fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
}

.card-grid,
.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.info-card,
.application-card,
.project-card,
.contact-card,
.notice-block {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
  padding: 1rem;
}

.info-card {
  background: var(--panel);
}

.info-card p,
.application-card p,
.project-card p {
  color: var(--muted);
}

.application-card {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  align-items: start;
}

.home-application-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr) minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 0.9rem;
  padding: 0.2rem 0 0.65rem;
}

.home-application-grid .application-card {
  position: relative;
  display: flex;
  min-width: 0;
  overflow: hidden;
  flex-direction: column;
  gap: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  box-shadow: 0 0.6rem 1.6rem rgba(23, 33, 43, 0.09);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.home-application-grid .application-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 2;
  height: 3px;
  background: var(--brand);
}

.home-application-grid .application-card:nth-child(2)::before {
  background: var(--accent-blue);
}

.home-application-grid .application-card:nth-child(3)::before {
  background: var(--accent);
}

.home-application-grid .application-card:nth-child(4)::before {
  background: var(--accent-lime);
}

.home-application-grid .responsive-picture {
  display: block;
  width: 100%;
  overflow: hidden;
  background: transparent;
}

.home-application-grid .application-card .responsive-picture img {
  display: block;
  width: 100%;
  height: clamp(13rem, 18vw, 16.5rem);
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
  backface-visibility: hidden;
  will-change: transform;
  transition: transform 220ms ease;
}

.home-application-grid .application-card > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.9rem;
}

.home-application-grid .application-card h3 {
  margin-bottom: 0.35rem;
}

.home-application-grid .application-card p {
  margin: 0.25rem 0;
  font-size: 0.9rem;
}

.home-application-grid .application-card .text-link {
  display: inline-flex;
  min-height: 2.5rem;
  align-items: center;
  margin-top: auto;
  margin-inline: -0.45rem;
  padding: 0.5rem 0.45rem;
  border-radius: 0.45rem;
}

.home-application-grid .application-card:hover,
.home-application-grid .application-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 0.85rem 2rem rgba(23, 33, 43, 0.13);
}

.home-application-grid .application-card:hover img,
.home-application-grid .application-card:focus-within img {
  transform: scale(1.03);
}

.home-supply-support {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(28rem, 1.14fr);
  grid-template-areas:
    "heading media"
    "copy media";
  align-items: center;
  column-gap: clamp(2.5rem, 6vw, 6rem);
  row-gap: 0.85rem;
  position: relative;
}

.home-supply-support::before,
.home-shipment-support::before {
  content: "";
  position: absolute;
  width: 3.75rem;
  height: 3px;
  border-radius: 999px;
}

.home-supply-support::before {
  top: 1.1rem;
  left: max(1rem, calc((100% - 1160px) / 2));
  background: var(--accent-orange);
}

.home-supply-heading {
  grid-area: heading;
  align-self: end;
}

.home-supply-copy {
  grid-area: copy;
  align-self: start;
  max-width: 38rem;
}

.home-supply-copy .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  margin-top: 0.35rem;
}

.home-supply-support > .responsive-picture {
  grid-area: media;
  position: relative;
  overflow: hidden;
  height: clamp(25rem, 38vw, 32rem);
  border-radius: 2rem 10rem 2rem 10rem;
  box-shadow: 0 1rem 2.4rem rgba(23, 33, 43, 0.13);
}

.home-supply-support > .responsive-picture::after {
  content: "";
  position: absolute;
  right: 1.35rem;
  bottom: 1.35rem;
  width: 4.5rem;
  height: 4.5rem;
  border-right: 3px solid var(--accent-blue);
  border-bottom: 3px solid var(--accent-blue);
  border-radius: 0 0 1.25rem 0;
  pointer-events: none;
}

.home-supply-support > .responsive-picture img,
.home-shipment-support .home-shipment-strip .responsive-picture img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
  transition: transform 180ms ease;
}

.home-shipment-support {
  position: relative;
}

.home-shipment-support::before {
  top: 1.1rem;
  right: max(1rem, calc((100% - 1160px) / 2));
  background: var(--accent-blue);
}

.home-shipment-support .home-shipment-strip {
  grid-template-columns: minmax(0, 1.45fr) repeat(2, minmax(0, 0.78fr));
  height: clamp(18rem, 28vw, 23rem);
  gap: 0.9rem;
}

.home-shipment-support .home-shipment-strip .responsive-picture {
  height: 100%;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 0.55rem 1.35rem rgba(23, 33, 43, 0.1);
}

.home-supply-support > .responsive-picture:hover img,
.home-supply-support > .responsive-picture:focus-within img,
.home-shipment-support .home-shipment-strip .responsive-picture:hover img,
.home-shipment-support .home-shipment-strip .responsive-picture:focus-within img {
  transform: scale(1.03);
}

.home-quality-section {
  position: relative;
  isolation: isolate;
}

.home-quality-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--white);
}

.home-quality-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-quality-heading h2 {
  margin-bottom: 0;
}

.home-quality-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 0.5rem;
}

.home-quality-grid {
  counter-reset: quality-card;
  margin-top: 1.35rem;
  align-items: stretch;
}

.home-quality-grid .info-card {
  counter-increment: quality-card;
  position: relative;
  min-height: 14rem;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  padding: 1.25rem;
  box-shadow: 0 0.5rem 1.4rem rgba(23, 33, 43, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-quality-grid .info-card::after {
  content: counter(quality-card, decimal-leading-zero);
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(23, 33, 43, 0.16);
  font-size: 1.6rem;
  font-weight: 760;
  line-height: 1;
}

[dir="rtl"] .home-quality-grid .info-card::after {
  right: auto;
  left: 1rem;
}

.quality-icon {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  place-items: center;
  margin-bottom: 1rem;
  border: 1px solid rgba(23, 98, 79, 0.24);
  border-radius: 50%;
  color: var(--brand);
  background: rgba(23, 98, 79, 0.06);
}

.home-quality-grid .info-card:nth-child(2) .quality-icon {
  border-color: rgba(39, 121, 167, 0.25);
  color: var(--accent-blue);
  background: rgba(39, 121, 167, 0.06);
}

.home-quality-grid .info-card:nth-child(3) .quality-icon {
  border-color: rgba(210, 118, 43, 0.25);
  color: var(--accent-orange);
  background: rgba(210, 118, 43, 0.06);
}

.quality-icon svg {
  width: 1.45rem;
  height: 1.45rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-quality-grid .info-card:hover,
.home-quality-grid .info-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(23, 98, 79, 0.5);
  box-shadow: 0 0.8rem 1.8rem rgba(23, 33, 43, 0.11);
}

.home-quality-grid .info-card:nth-child(2):hover,
.home-quality-grid .info-card:nth-child(2):focus-within {
  border-color: rgba(39, 121, 167, 0.55);
}

.home-quality-grid .info-card:nth-child(3):hover,
.home-quality-grid .info-card:nth-child(3):focus-within {
  border-color: rgba(210, 118, 43, 0.55);
}

.home-quality-notice {
  display: flex;
  align-items: center;
  min-height: 3.75rem;
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(23, 98, 79, 0.18);
  border-inline-start: 3px solid var(--brand);
  border-radius: 0.75rem;
  background: rgba(23, 98, 79, 0.045);
  line-height: 1.55;
}

.home-project-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.home-project-heading h2 {
  margin-bottom: 0;
}

.home-project-entry,
.home-project-grid .project-card .text-link {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0.5rem 0.45rem;
  border-radius: 0.5rem;
}

.home-project-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(24rem, 0.8fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.35rem;
  align-items: stretch;
}

.home-project-grid .project-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--white);
  padding: 0;
  box-shadow: 0 0.55rem 1.5rem rgba(23, 33, 43, 0.08);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-project-grid .project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  z-index: 2;
  height: 3px;
  background: var(--brand);
}

.home-project-grid .project-card:nth-child(2)::before {
  background: var(--accent-blue);
}

.home-project-grid .project-card:nth-child(3)::before {
  background: var(--accent-orange);
}

.home-project-grid .project-card:first-child {
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
}

.home-project-grid .project-card:not(:first-child) {
  display: grid;
  grid-template-columns: minmax(12rem, 0.88fr) minmax(0, 1.12fr);
}

.home-project-grid .responsive-picture {
  height: 100%;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
}

.home-project-grid .project-card:first-child .responsive-picture {
  height: clamp(23rem, 34vw, 30rem);
  flex: 0 0 auto;
}

.home-project-grid .project-card .responsive-picture img {
  width: 100%;
  height: 100%;
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
  transition: transform 180ms ease;
}

.home-project-grid .project-card:nth-child(1) img {
  object-position: 50% 52%;
}

.home-project-grid .project-card:nth-child(2) img {
  object-position: 50% 46%;
}

.home-project-grid .project-card:nth-child(3) img {
  object-position: 50% 40%;
}

.home-project-card-copy {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  padding: 1rem 1.1rem 1.1rem;
}

.home-project-card-copy h3 {
  margin: 0 0 0.45rem;
}

.home-project-card-copy p {
  margin: 0.25rem 0;
  line-height: 1.5;
}

.home-project-card-copy .text-link {
  align-self: flex-start;
  margin-top: auto;
  margin-inline-start: -0.45rem;
}

.home-project-grid .project-card:hover,
.home-project-grid .project-card:focus-within {
  transform: translateY(-3px);
  border-color: rgba(23, 98, 79, 0.42);
  box-shadow: 0 0.85rem 1.9rem rgba(23, 33, 43, 0.12);
}

.home-project-grid .project-card:hover img,
.home-project-grid .project-card:focus-within img {
  transform: scale(1.03);
}

.home-faq-preview {
  display: grid;
  grid-template-columns: minmax(15rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  position: relative;
  isolation: isolate;
}

.home-faq-preview::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: #eef7f5;
}

.home-faq-copy {
  position: sticky;
  top: 6rem;
}

.home-faq-copy .eyebrow {
  margin-bottom: 0.55rem;
}

.home-faq-copy h2 {
  margin-bottom: 1.2rem;
}

.home-faq-copy .actions {
  width: auto;
}

.home-faq-copy .button.primary {
  width: auto;
  min-height: 2.75rem;
  padding: 0.65rem 1rem;
  background: var(--brand);
  color: var(--white);
}

.home-faq-copy .button.primary:hover,
.home-faq-copy .button.primary:focus-visible {
  background: var(--brand-dark);
}

.home-faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.home-faq-list .faq-item {
  align-self: start;
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--white);
  box-shadow: 0 0.35rem 1rem rgba(23, 33, 43, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.home-faq-list .faq-item summary {
  display: flex;
  min-height: 3.5rem;
  align-items: center;
  justify-content: space-between;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  cursor: pointer;
  color: var(--ink);
  font-weight: 680;
  line-height: 1.35;
  list-style: none;
}

.home-faq-list .faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-list .faq-item summary::after {
  content: "+";
  display: grid;
  width: 1.6rem;
  height: 1.6rem;
  flex: 0 0 1.6rem;
  place-items: center;
  border: 1px solid rgba(23, 98, 79, 0.25);
  border-radius: 50%;
  color: var(--brand);
  font-size: 1.15rem;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease;
}

.home-faq-list .faq-item[open] summary::after {
  transform: rotate(45deg);
}

.home-faq-list .faq-item p {
  margin: 0;
  padding: 0 0.9rem 0.9rem;
  color: var(--muted);
}

.home-faq-list .faq-item:hover,
.home-faq-list .faq-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(23, 98, 79, 0.48);
  background: #f4faf7;
  box-shadow: 0 0.55rem 1.25rem rgba(23, 98, 79, 0.09);
}

.home-faq-list .faq-item summary:focus-visible {
  outline: 3px solid rgba(39, 121, 167, 0.28);
  outline-offset: -3px;
}

@media (prefers-reduced-motion: reduce) {
  .home-application-grid .application-card,
  .home-application-grid .application-card .responsive-picture img {
    transition: none;
  }

  .home-application-grid .application-card:hover,
  .home-application-grid .application-card:focus-within,
  .home-application-grid .application-card:hover img,
  .home-application-grid .application-card:focus-within img {
    transform: none;
  }

  .home-supply-support > .responsive-picture img,
  .home-shipment-support .home-shipment-strip .responsive-picture img {
    transition: none;
  }

  .home-supply-support > .responsive-picture:hover img,
  .home-supply-support > .responsive-picture:focus-within img,
  .home-shipment-support .home-shipment-strip .responsive-picture:hover img,
  .home-shipment-support .home-shipment-strip .responsive-picture:focus-within img {
    transform: none;
  }

  .home-quality-grid .info-card {
    transition: none;
  }

  .home-quality-grid .info-card:hover,
  .home-quality-grid .info-card:focus-within {
    transform: none;
  }

  .home-project-grid .project-card,
  .home-project-grid .project-card .responsive-picture img {
    transition: none;
  }

  .home-project-grid .project-card:hover,
  .home-project-grid .project-card:focus-within,
  .home-project-grid .project-card:hover img,
  .home-project-grid .project-card:focus-within img {
    transform: none;
  }

  .home-faq-list .faq-item,
  .home-faq-list .faq-item summary::after {
    transition: none;
  }

  .home-faq-list .faq-item:hover,
  .home-faq-list .faq-item:focus-within,
  .home-faq-list .faq-item[open] summary::after {
    transform: none;
  }
}

.image-placeholder {
  width: 100%;
  min-height: 14rem;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px dashed #aab7bf;
  border-radius: 0.5rem;
  background:
    linear-gradient(135deg, rgba(31, 111, 91, 0.08), rgba(199, 115, 43, 0.08)),
    repeating-linear-gradient(45deg, #f5f8f9 0 12px, #edf2f4 12px 24px);
}

.responsive-picture {
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
  background: var(--panel);
}

.responsive-picture img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 14rem;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.image-strip .responsive-picture img,
.gallery .responsive-picture img,
.project-card .responsive-picture img,
.application-card .responsive-picture img,
.support-media-grid .responsive-picture img {
  object-fit: contain;
  background: #eef3f5;
}

.split > .responsive-picture img {
  object-fit: contain;
  background: #eef3f5;
}

.hero > .responsive-picture {
  position: relative;
  overflow: visible;
  border-radius: 10rem 1.5rem 10rem 1.5rem;
  background: transparent;
}

.hero > .responsive-picture::before {
  content: "";
  position: absolute;
  inset: 1rem -0.75rem -0.75rem 1rem;
  z-index: 0;
  border-radius: 10rem 1.5rem 10rem 1.5rem;
  background: rgba(39, 121, 167, 0.1);
}

.hero > .responsive-picture img {
  position: relative;
  z-index: 1;
  min-height: 22rem;
  object-fit: cover;
  border-radius: 10rem 1.5rem 10rem 1.5rem;
  background: transparent;
}

.hero-carousel {
  position: relative;
  min-width: 0;
  border-radius: 10rem 1.5rem 10rem 1.5rem;
}

.hero-carousel::before {
  content: "";
  position: absolute;
  inset: 1rem -0.75rem -0.75rem 1rem;
  border-radius: inherit;
  background: rgba(39, 121, 167, 0.1);
}

.hero-carousel-stage {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  min-height: 22rem;
  overflow: hidden;
  border-radius: inherit;
  background: var(--panel);
  box-shadow: 0 1rem 2.4rem rgba(23, 33, 43, 0.13);
  touch-action: pan-y;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 600ms ease, visibility 0s linear 600ms;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.hero-slide picture,
.hero-slide img {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slide img {
  min-height: 0;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: var(--hero-position-desktop, center);
  background: transparent;
}

.hero-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: grid;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0.3rem 0.9rem rgba(23, 33, 43, 0.18);
  transform: translateY(-50%);
  cursor: pointer;
}

.hero-carousel-control:hover,
.hero-carousel-control:focus-visible {
  color: var(--white);
  background: var(--brand);
}

.hero-carousel-control.previous {
  left: 0.8rem;
}

.hero-carousel-control.next {
  right: 0.8rem;
}

.hero-carousel-control svg {
  width: 1.3rem;
  height: 1.3rem;
}

.hero-carousel-dots {
  position: absolute;
  right: 0;
  bottom: 0.85rem;
  left: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 0.45rem;
}

.hero-carousel-dot {
  width: 0.65rem;
  height: 0.65rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(23, 33, 43, 0.45);
  box-shadow: 0 0.1rem 0.35rem rgba(23, 33, 43, 0.25);
  cursor: pointer;
}

.hero-carousel-dot.is-active {
  background: var(--brand);
  transform: scale(1.18);
}

@media (prefers-reduced-motion: reduce) {
  .hero-slide,
  .hero-slide.is-active {
    transition: none;
  }
}

.image-strip,
.color-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1rem;
}

.home-color-showcase {
  position: relative;
  isolation: isolate;
  color: var(--white);
}

.home-color-showcase::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: #104A3C;
}

.home-color-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.2rem;
}

.home-color-heading h2 {
  margin: 0;
  color: var(--white);
}

.home-color-heading-actions,
.home-color-controls {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.home-color-showcase .button {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--brand-dark);
  background: var(--white);
}

.home-color-showcase .button:hover,
.home-color-showcase .button:focus-visible {
  color: var(--white);
  background: transparent;
}

.home-color-controls button {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.home-color-controls button:hover,
.home-color-controls button:focus-visible {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.17);
}

.home-color-controls svg {
  width: 1.25rem;
  height: 1.25rem;
}

.home-color-browser {
  position: relative;
  margin-inline: -1rem;
  overflow: hidden;
}

.home-color-browser::before,
.home-color-browser::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 1rem;
  pointer-events: none;
}

.home-color-browser::before {
  left: 0;
  background: linear-gradient(90deg, #104A3C, rgba(16, 74, 60, 0));
}

.home-color-browser::after {
  right: 0;
  background: linear-gradient(270deg, #104A3C, rgba(16, 74, 60, 0));
}

.home-color-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(8.75rem, 11.5vw, 10.25rem);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
  overflow-x: auto;
  margin-inline: 1rem;
  padding: 0.2rem 0 0.85rem;
  scroll-padding-inline: 0;
  scroll-snap-type: inline mandatory;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.home-color-track::-webkit-scrollbar {
  display: none;
}

.home-color-card {
  min-width: 0;
  overflow: hidden;
  border-radius: 0.875rem;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 0.45rem 1.2rem rgba(0, 0, 0, 0.13);
  scroll-snap-align: start;
}

.home-color-card picture,
.home-color-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.home-color-card img {
  height: auto;
  object-fit: cover;
}

.home-color-card p {
  display: grid;
  gap: 0.08rem;
  min-height: 3.35rem;
  margin: 0;
  padding: 0.55rem 0.65rem 0.62rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.25;
}

.home-color-card p strong {
  color: var(--brand);
  font-size: 0.76rem;
}

.home-color-card p span {
  overflow-wrap: anywhere;
}

.supply-system-section {
  position: relative;
  isolation: isolate;
}

.supply-system-section::before {
  content: "";
  position: absolute;
  inset: 0 calc(50% - 50vw);
  z-index: -1;
  background: var(--white);
}

.supply-system-section .card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.supply-system-section .info-card {
  border-top: 3px solid var(--brand);
  background: var(--white);
  box-shadow: 0 0.45rem 1.25rem rgba(23, 33, 43, 0.07);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.supply-system-section .info-card:nth-child(2) {
  border-top-color: var(--accent-blue);
}

.supply-system-section .info-card:nth-child(3) {
  border-top-color: var(--accent);
}

.supply-system-section .info-card:nth-child(4) {
  border-top-color: var(--accent-lime);
}

.supply-system-section .info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.7rem 1.5rem rgba(23, 33, 43, 0.1);
}

.supply-system-section .image-strip {
  grid-template-columns: minmax(0, 1.45fr) minmax(0, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  height: clamp(26rem, 46vw, 34rem);
  min-height: 0;
}

.supply-system-section .image-strip .responsive-picture {
  height: 100%;
}

.supply-system-section .image-strip .responsive-picture:first-child {
  grid-row: 1 / 3;
}

.supply-system-section .image-strip .responsive-picture img {
  min-height: 0;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: transparent;
}

.color-preview .responsive-picture img,
.color-card .responsive-picture img {
  min-height: 0;
  aspect-ratio: 1 / 1;
}

.placeholder-mark {
  max-width: 82%;
  color: #3f4b55;
  font-size: 0.9rem;
  font-weight: 760;
  text-align: center;
  overflow-wrap: anywhere;
}

.image-placeholder figcaption {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 0.7rem;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 0.78rem;
}

.image-placeholder figcaption span {
  display: block;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 520px;
}

th,
td {
  padding: 0.9rem 1rem;
  border-bottom: 1px solid var(--line);
  text-align: start;
  vertical-align: top;
}

th {
  width: 34%;
  background: var(--panel);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

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

.color-card {
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  padding: 1rem;
  background: var(--white);
}

.color-card .responsive-picture {
  margin-bottom: 0.9rem;
}

.swatch {
  height: 7rem;
  border-radius: 0.4rem;
  border: 1px solid rgba(23, 33, 43, 0.16);
  background: var(--swatch);
  margin-bottom: 0.9rem;
}

.color-card p {
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.notice,
.notice-block {
  color: var(--muted);
}

.notice-block {
  background: var(--panel);
}

.rfq-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  background: var(--panel);
  max-width: none;
  padding-left: max(clamp(0.85rem, 3vw, 2.2rem), calc((100vw - 1240px) / 2 + 2.2rem));
  padding-right: max(clamp(0.85rem, 3vw, 2.2rem), calc((100vw - 1240px) / 2 + 2.2rem));
}

.rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.58rem;
  padding: clamp(0.65rem, 1.25vw, 0.95rem);
  border: 1px solid var(--line);
  border-radius: 0.42rem;
  background: var(--white);
  box-shadow: 0 12px 28px rgba(23, 33, 43, 0.08);
}

.form-section {
  display: grid;
  gap: 0.45rem;
}

.form-section h3 {
  margin: 0;
  padding-bottom: 0.26rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.86rem;
  line-height: 1.25;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 0.58rem;
}

.rfq-form label,
.form-label {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  color: var(--ink);
  font-weight: 650;
  font-size: 0.82rem;
  line-height: 1.22;
}

.rfq-form input,
.rfq-form select,
.rfq-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 0.34rem;
  padding: 0.44rem 0.58rem;
  background: var(--white);
  color: var(--ink);
  min-height: 2.22rem;
  font: inherit;
  font-weight: 500;
}

.field-help {
  margin-top: -0.1rem;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 500;
  line-height: 1.35;
}

.rfq-form textarea {
  min-height: 5.15rem;
  resize: vertical;
}

.color-requirement {
  display: grid;
  gap: 0.35rem;
}

.color-select-toggle {
  width: 100%;
  min-height: 2.22rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border: 1px solid var(--line);
  border-radius: 0.34rem;
  background: var(--white);
  padding: 0.42rem 0.58rem;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
}

.color-select-toggle span {
  color: var(--muted);
  font-weight: 650;
  font-size: 0.82rem;
}

.color-select-toggle strong {
  min-width: 0;
  overflow: hidden;
  color: var(--brand-dark);
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-weight: 700;
}

.color-choice-panel {
  margin-top: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 0.38rem;
  background: var(--panel);
  padding: 0.45rem;
}

.color-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.34rem;
  max-height: 9.4rem;
  overflow: auto;
  padding: 0.1rem;
}

.color-choice {
  position: relative;
  display: block;
  cursor: pointer;
}

.color-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.color-choice span {
  min-height: 2.05rem;
  display: flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 0.34rem;
  background: var(--white);
  color: var(--muted);
  padding: 0.28rem 0.42rem;
  font-size: 0.76rem;
  font-weight: 700;
}

.choice-swatch {
  width: 1.25rem;
  height: 1.25rem;
  flex: 0 0 auto;
  display: inline-block;
  border: 1px solid rgba(23, 33, 43, 0.28);
  border-radius: 0.28rem;
  background: var(--choice);
  margin-inline-end: 0.45rem;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.choice-swatch.is-light {
  border-color: rgba(23, 33, 43, 0.42);
  box-shadow: inset 0 0 0 1px rgba(23, 33, 43, 0.08);
}

.color-clear {
  margin-top: 0.35rem;
  border: 0;
  background: transparent;
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.8rem;
  cursor: pointer;
}

.color-choice input:checked + span,
.color-choice.is-selected span {
  border-color: var(--brand);
  background: #e8f4ee;
  color: var(--brand-dark);
}

.color-choice input:focus-visible + span {
  outline: 2px solid var(--brand);
  outline-offset: 2px;
}

.required-mark {
  color: #b42318;
  margin-inline-start: 0.2rem;
}

.form-submit {
  justify-self: start;
  min-width: 9rem;
  min-height: 2.28rem;
  padding-top: 0.48rem;
  padding-bottom: 0.48rem;
}

.span-2 {
  grid-column: 1 / -1;
}

.form-success {
  margin: 0;
  padding: 0.62rem;
  border-radius: 0.45rem;
  background: #e8f4ee;
  color: var(--brand-dark);
  font-weight: 700;
  font-size: 0.86rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.9fr);
  gap: 1rem;
  align-items: stretch;
}

.terms {
  margin-top: 1rem;
}

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

.support-copy-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: start;
}

.support-copy-grid article {
  border: 1px solid var(--line);
  border-radius: 0.45rem;
  background: var(--white);
  padding: 1rem;
}

.support-copy-grid h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
  font-size: 1rem;
}

.support-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.support-media-grid img {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-hero-picture img {
  object-fit: cover;
  background: #eef3f5;
}

.about-media-sections {
  display: grid;
  gap: 0.75rem;
}

.about-media-section {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.about-media-section h2 {
  margin-bottom: 0.4rem;
}

.about-section-intro {
  max-width: 52rem;
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.about-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.about-media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
}

.about-media-picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef3f5;
}

.about-media-picture img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.about-fit-cover img {
  object-fit: cover;
}

.about-fit-contain img {
  object-fit: contain;
}

.about-media-card figcaption {
  padding: 0.72rem 0.82rem 0.78rem;
}

.about-media-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.supply-intro-split {
  grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
  align-items: center;
}

.supply-intro-split > div {
  min-width: 0;
}

.supply-intro-cards-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem) 1.2rem;
}

.supply-intro-cards {
  gap: 0.75rem;
}

.supply-intro-cards .info-card {
  padding: 0.82rem;
}

.supply-hero-picture img {
  min-height: 20rem;
  object-fit: contain;
  background: #eef3f5;
}

.supply-media-sections {
  display: grid;
  gap: 0.75rem;
}

.supply-media-section {
  padding-top: 2.4rem;
  padding-bottom: 2.4rem;
}

.supply-media-section h2 {
  margin-bottom: 0.4rem;
}

.supply-section-intro {
  max-width: 54rem;
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.supply-media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.supply-media-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  background: var(--white);
}

.supply-media-picture {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #eef3f5;
}

.supply-media-picture img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
}

.supply-fit-cover img {
  object-fit: cover;
}

.supply-fit-contain img {
  object-fit: contain;
}

.supply-media-card figcaption {
  padding: 0.72rem 0.82rem 0.78rem;
}

.supply-media-card h3 {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.35;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  padding: 2rem clamp(1rem, 4vw, 3rem);
  border-top: 1px solid var(--line);
  background: #111b22;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #cbd6dc;
}

.footer-contact a[href^="mailto:"] {
  overflow-wrap: anywhere;
}

.footer-logo {
  display: block;
  width: 10rem;
  height: auto;
  margin-bottom: 1rem;
}

.floating-actions {
  position: fixed;
  z-index: 9;
  right: 1rem;
  bottom: var(--floating-contact-bottom, 1rem);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.55rem;
  transition: bottom 180ms ease, opacity 180ms ease, visibility 0s linear 0s;
}

.floating-actions.is-unavailable {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, 160ms;
}

.contact-menu-items {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.65rem);
  display: grid;
  width: 13.75rem;
  padding: 0.4rem;
  gap: 0.15rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  background: var(--white);
  box-shadow: 0 1rem 2.5rem rgba(23, 33, 43, 0.16);
  transform: translateY(0.4rem) scale(0.98);
  transform-origin: bottom right;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 0s linear 180ms;
}

.floating-actions.is-open .contact-menu-items {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  transition-delay: 0s;
}

.float-button {
  border: 0;
  border-radius: 0.45rem;
  min-width: 3rem;
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 0.9rem;
  text-decoration: none;
  font-weight: 800;
  box-shadow: var(--shadow);
  cursor: pointer;
}

.float-button[hidden] {
  display: none;
}

.float-button.contact-action {
  width: 100%;
  min-width: 0;
  min-height: 2.75rem;
  padding: 0.5rem 0.65rem;
  gap: 0.65rem;
  justify-content: flex-start;
  border-radius: 0.65rem;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  font-size: 0.92rem;
  font-weight: 650;
  transition: background-color 180ms ease;
}

.float-button.whatsapp {
  color: var(--ink);
}

.float-button.email {
  color: var(--ink);
}

.float-button.back-to-top {
  background: var(--ink);
  color: var(--white);
  font-size: 1.2rem;
}

.float-button.quote {
  color: var(--ink);
}

.float-button.whatsapp:hover,
.float-button.whatsapp:focus-visible {
  background: rgba(23, 98, 79, 0.08);
}

.float-button.email:hover,
.float-button.email:focus-visible {
  background: rgba(39, 121, 167, 0.08);
}

.float-button.quote:hover,
.float-button.quote:focus-visible {
  background: rgba(210, 118, 43, 0.09);
}

.contact-action-icon {
  display: grid;
  flex: 0 0 1.35rem;
  width: 1.35rem;
  height: 1.35rem;
  place-items: center;
}

.contact-action-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.whatsapp .contact-action-icon {
  color: var(--brand);
}

.email .contact-action-icon {
  color: var(--accent-blue);
}

.quote .contact-action-icon {
  color: var(--accent);
}

.float-button.contact-toggle,
.float-button.back-to-top {
  width: 3.25rem;
  min-width: 3.25rem;
  min-height: 3.25rem;
  padding: 0;
  border-radius: 999px;
}

.float-button.contact-toggle {
  background: var(--brand);
  color: var(--white);
  transition: background-color 160ms ease, transform 180ms ease;
}

.float-button.contact-toggle:hover {
  background: var(--brand-hover);
}

.floating-actions.is-open .contact-toggle {
  background: var(--brand-hover);
}

.float-button svg {
  width: 1.6rem;
  height: 1.6rem;
}

.contact-toggle-icon {
  position: absolute;
  transition: opacity 180ms ease, transform 180ms ease;
}

.contact-toggle .icon-chat {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

.contact-toggle .icon-close {
  opacity: 0;
  transform: scale(0.7) rotate(-45deg);
}

.floating-actions.is-open .contact-toggle .icon-chat {
  opacity: 0;
  transform: scale(0.7) rotate(45deg);
}

.floating-actions.is-open .contact-toggle .icon-close {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

[dir="rtl"] .floating-actions {
  right: auto;
  left: 1rem;
}

[dir="rtl"] .contact-menu-items {
  right: auto;
  left: 0;
  transform-origin: bottom left;
}

@media (prefers-reduced-motion: reduce) {
  .floating-actions,
  .contact-menu-items,
  .float-button.contact-action,
  .contact-toggle-icon {
    transition: none;
  }
}

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

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    grid-column: 1 / -1;
    justify-content: flex-start;
    border-top: 1px solid var(--line);
    padding-top: 0.7rem;
  }

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

  .nav-group {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown {
    position: static;
    box-shadow: none;
    margin: 0.2rem 0 0.5rem;
  }

  .hero,
  .split,
  .rfq-panel,
  .contact-grid,
  .support-copy-grid,
  .support-media-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .project-grid,
  .color-grid,
  .image-strip,
  .color-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .supply-intro-split {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {

  .hero ~ section:not(.home-rfq-panel) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .home-faq-preview {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .home-faq-copy {
    position: static;
  }

  .home-faq-copy .actions,
  .home-faq-copy .button.primary {
    width: 100%;
  }

  .home-faq-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.65rem;
  }

  .home-faq-list .faq-item summary {
    min-height: 3.5rem;
    padding: 0.75rem 0.85rem;
  }

  .home-project-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .home-project-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 0.15rem 0 0.8rem;
  }

  .home-project-grid::-webkit-scrollbar {
    display: none;
  }

  .home-project-grid .project-card,
  .home-project-grid .project-card:first-child,
  .home-project-grid .project-card:not(:first-child) {
    display: flex;
    height: 37rem;
    flex: 0 0 min(86vw, 21rem);
    flex-direction: column;
    scroll-snap-align: start;
  }

  .home-project-grid .project-card .responsive-picture,
  .home-project-grid .project-card:first-child .responsive-picture {
    width: 100%;
    height: 15rem;
    flex: 0 0 15rem;
  }

  .home-project-card-copy {
    width: 100%;
  }

  .home-quality-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  .home-quality-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 0.15rem 0 0.75rem;
  }

  .home-quality-grid::-webkit-scrollbar {
    display: none;
  }

  .home-quality-grid .info-card {
    flex: 0 0 min(84vw, 20rem);
    min-height: 13rem;
    scroll-snap-align: start;
  }

  .home-quality-notice {
    align-items: flex-start;
  }

  .home-supply-support {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "heading"
      "media"
      "copy";
    gap: 1rem;
  }

  .home-supply-support::before,
  .home-shipment-support::before {
    top: 0.75rem;
  }

  .home-supply-support > .responsive-picture {
    height: auto;
    min-height: 0;
    aspect-ratio: 4 / 3;
    border-radius: 1.25rem 4.5rem 1.25rem 4.5rem;
  }

  .home-supply-copy {
    max-width: none;
  }

  .home-shipment-support .home-shipment-strip {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 20rem);
    grid-template-columns: none;
    height: auto;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
    padding: 0.15rem 0.1rem 0.7rem;
  }

  .home-shipment-support .home-shipment-strip::-webkit-scrollbar {
    display: none;
  }

  .home-shipment-support .home-shipment-strip .responsive-picture {
    height: auto;
    aspect-ratio: 4 / 3;
    scroll-snap-align: start;
  }
  body {
    padding-bottom: 5.25rem;
  }

  .hero > .responsive-picture,
  .hero > .responsive-picture img,
  .hero > .responsive-picture::before {
    border-radius: 1rem;
  }

  .hero > .responsive-picture::before {
    inset: 0.55rem -0.35rem -0.35rem 0.55rem;
  }

  .hero {
    row-gap: 0.9rem;
    padding-top: 2.15rem;
  }

  .hero-copy {
    display: contents;
  }

  .hero .eyebrow {
    order: 1;
    margin-bottom: 0;
  }

  .hero h1 {
    order: 2;
    margin-bottom: 0;
  }

  .hero-carousel {
    order: 3;
    border-radius: 1rem;
  }

  .hero-copy > p:not(.eyebrow) {
    order: 4;
    margin: 0;
  }

  .hero-copy > .actions {
    order: 5;
    margin-top: 0;
  }

  .hero-carousel::before {
    inset: 0.5rem -0.3rem -0.3rem 0.5rem;
  }

  .hero-carousel-stage {
    width: 100%;
    height: clamp(14.5rem, 64vw, 16rem);
    min-height: 0;
    aspect-ratio: auto;
    border-radius: 1rem;
  }

  .hero-slide img {
    object-position: var(--hero-position-mobile, center);
  }

  .hero-carousel-control {
    width: 2.45rem;
    height: 2.45rem;
  }

  .hero-carousel-control.previous {
    left: 0.55rem;
  }

  .hero-carousel-control.next {
    right: 0.55rem;
  }

  .contact-menu-items {
    width: min(17.5rem, calc(100vw - 2rem));
  }

  .home-color-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
  }

  .home-color-heading-actions {
    width: 100%;
    justify-content: space-between;
  }

  .home-color-showcase .button {
    width: auto;
    min-height: 2.5rem;
    padding: 0.55rem 0.75rem;
    font-size: 0.88rem;
  }

  .home-color-controls button {
    width: 2.5rem;
    height: 2.5rem;
  }

  .home-color-track {
    grid-auto-columns: min(42vw, 9rem);
    grid-template-rows: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .floating-actions.is-hero-visible {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition-delay: 0s, 0s, 180ms;
  }

  .site-header {
    gap: 0.55rem;
  }

  .brand {
    min-width: 0;
  }

  .brand small {
    display: none;
  }

  .language-select {
    max-width: 8.5rem;
  }

  section {
    padding: 1.75rem 1rem;
  }

  h1 {
    font-size: clamp(1.72rem, 9vw, 2.15rem);
  }

  h2 {
    font-size: clamp(1.28rem, 6.5vw, 1.65rem);
  }

  h3 {
    font-size: 1rem;
  }

  p,
  li {
    font-size: 0.95rem;
  }

  .page-hero p,
  .hero p {
    font-size: 0.98rem;
  }

  .actions {
    width: 100%;
    gap: 0.55rem;
  }

  .actions .button {
    width: 100%;
    min-height: 2.55rem;
    padding: 0.58rem 0.78rem;
    font-size: 0.92rem;
  }

  .card-grid,
  .project-grid,
  .color-grid,
  .gallery,
  .image-strip,
  .color-preview,
  .form-grid,
  .terms .card-grid,
  .rfq-form {
    grid-template-columns: 1fr;
  }

  .supply-system-section .card-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding: 0.15rem 0 0.8rem;
    scroll-padding-inline: 0.1rem;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .supply-system-section .card-grid::-webkit-scrollbar {
    display: none;
  }

  .supply-system-section .info-card {
    flex: 0 0 min(82vw, 19rem);
    scroll-snap-align: start;
  }

  .supply-system-section .image-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto auto;
    height: auto;
    min-height: 0;
  }

  .supply-system-section .image-strip .responsive-picture {
    height: auto;
  }

  .supply-system-section .image-strip .responsive-picture:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .supply-system-section .image-strip .responsive-picture:first-child img {
    aspect-ratio: 16 / 10;
  }

  .supply-system-section .image-strip .responsive-picture:not(:first-child) img {
    aspect-ratio: 1 / 1;
  }

  .color-choice-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 10.8rem;
  }

  .choice-swatch {
    width: 1.35rem;
    height: 1.35rem;
  }

  .rfq-form {
    gap: 0.5rem;
    padding: 0.72rem;
  }

  .application-card {
    grid-template-columns: 1fr;
  }

  .home-application-grid {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: min(82vw, 20rem);
    grid-template-columns: none;
    gap: 0.8rem;
    overflow-x: auto;
    margin-inline: -1rem;
    padding: 0.2rem 1rem 0.9rem;
    scroll-padding-inline: 1rem;
    scroll-snap-type: inline mandatory;
    overscroll-behavior-inline: contain;
    scrollbar-width: none;
  }

  .home-application-grid::-webkit-scrollbar {
    display: none;
  }

  .home-application-grid .application-card {
    scroll-snap-align: start;
  }

  .home-application-grid .responsive-picture img {
    height: 14.5rem;
  }

  .about-media-section {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .about-media-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .supply-media-section {
    padding-top: 1.8rem;
    padding-bottom: 1.8rem;
  }

  .supply-media-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .supply-hero-picture img {
    min-height: 0;
  }

  .span-2,
  .rfq-form fieldset {
    grid-column: auto;
  }

  .floating-actions {
    left: auto;
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: var(--floating-contact-bottom, max(0.75rem, env(safe-area-inset-bottom)));
    gap: 0.5rem;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  [dir="rtl"] .floating-actions {
    right: auto;
    left: max(0.75rem, env(safe-area-inset-left));
  }

  .float-button {
    min-height: 3rem;
    padding: 0.55rem 0.6rem;
    font-size: 0.86rem;
    white-space: nowrap;
  }

  .float-button.contact-action {
    width: auto;
    min-width: min(11.5rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
  }

  .float-button svg {
    width: 1.55rem;
    height: 1.55rem;
  }
}
/* Cookie consent */
.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;
}

body.cookie-banner-visible {
  padding-bottom: var(--cookie-banner-height, 0px);
}

body.cookie-modal-open {
  overflow: hidden;
}

.cookie-banner[hidden],
.cookie-modal-backdrop[hidden] {
  display: none;
}

.cookie-banner {
  position: fixed;
  z-index: 1200;
  inset: auto max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 2rem;
  align-items: center;
  max-width: 1180px;
  margin-inline: auto;
  padding: 1.15rem 1.25rem;
  color: #17212b;
  background: #fff;
  border: 1px solid #ddd9cf;
  border-radius: 16px;
  box-shadow: 0 18px 44px rgba(15, 26, 33, 0.18);
}

.cookie-banner h2,
.cookie-modal h2,
.cookie-category h3 {
  margin: 0;
  color: #17212b;
  letter-spacing: 0;
}

.cookie-banner h2 {
  font-size: 1.1rem;
}

.cookie-banner p,
.cookie-category p {
  margin: 0.35rem 0 0;
  color: #66706f;
  line-height: 1.5;
}

.cookie-banner a,
.footer-cookie-settings,
.cookie-text-button {
  color: #17624f;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.cookie-banner-actions,
.cookie-modal-actions {
  display: flex;
  gap: 0.65rem;
  align-items: center;
  flex-wrap: wrap;
}

.cookie-banner .button,
.cookie-modal .button,
.cookie-text-button,
.cookie-close,
.footer-cookie-settings {
  min-height: 44px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner .button,
.cookie-modal .button {
  padding: 0.65rem 1rem;
  border-radius: 8px;
}

.cookie-text-button,
.cookie-close,
.footer-cookie-settings {
  padding: 0.45rem 0.3rem;
  background: transparent;
  border: 0;
}

.cookie-banner button:focus-visible,
.cookie-modal button:focus-visible,
.cookie-banner a:focus-visible,
.footer-cookie-settings:focus-visible {
  outline: 3px solid rgba(23, 98, 79, 0.3);
  outline-offset: 3px;
}

.cookie-modal-backdrop {
  position: fixed;
  z-index: 1300;
  inset: 0;
  display: grid;
  place-items: center;
  padding: max(1rem, env(safe-area-inset-top)) max(1rem, env(safe-area-inset-right)) max(1rem, env(safe-area-inset-bottom)) max(1rem, env(safe-area-inset-left));
  background: rgba(15, 26, 33, 0.58);
}

.cookie-modal {
  width: min(100%, 680px);
  max-height: min(86vh, 760px);
  overflow: auto;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid #ddd9cf;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(15, 26, 33, 0.24);
}

.cookie-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid #ddd9cf;
}

.cookie-modal-header h2 {
  font-size: 1.35rem;
}

.cookie-close {
  width: 44px;
  flex: 0 0 44px;
  font-size: 1.75rem;
  line-height: 1;
  color: #17212b;
  text-decoration: none;
}

.cookie-category-list {
  display: grid;
}

.cookie-category {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eeeae2;
}

.cookie-category h3 {
  font-size: 1rem;
}

.cookie-category p {
  font-size: 0.92rem;
}

.cookie-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 44px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-switch-control {
  position: relative;
  width: 46px;
  height: 26px;
  flex: 0 0 auto;
  background: #c8cecb;
  border: 1px solid #adb5b1;
  border-radius: 999px;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.cookie-switch-control::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(15, 26, 33, 0.28);
  transition: transform 180ms ease;
}

[dir="rtl"] .cookie-switch-control::after {
  right: 3px;
  left: auto;
}

.cookie-switch input:checked + .cookie-switch-control {
  background: #17624f;
  border-color: #17624f;
}

.cookie-switch input:checked + .cookie-switch-control::after {
  transform: translateX(20px);
}

[dir="rtl"] .cookie-switch input:checked + .cookie-switch-control::after {
  transform: translateX(-20px);
}

.cookie-switch input:focus-visible + .cookie-switch-control {
  outline: 3px solid rgba(23, 98, 79, 0.3);
  outline-offset: 3px;
}

.cookie-always-active {
  max-width: 7rem;
  color: #17624f;
  font-size: 0.78rem;
  font-weight: 700;
}

.cookie-modal-actions {
  padding-top: 1rem;
}

.footer-cookie-settings {
  display: inline-flex;
  align-items: center;
  color: inherit;
}

.cookie-status {
  position: fixed;
  z-index: 1400;
  inset: auto 1rem max(1rem, env(safe-area-inset-bottom)) auto;
  max-width: min(24rem, calc(100vw - 2rem));
  padding: 0.8rem 1rem;
  color: #fff;
  background: #17624f;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(15, 26, 33, 0.2);
  opacity: 0;
  transform: translateY(0.5rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.cookie-status.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[dir="rtl"] .cookie-status {
  right: auto;
  left: 1rem;
}

@media (max-width: 700px) {
  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 0.85rem;
    padding: 1rem;
    max-height: min(72vh, 560px);
    overflow-y: auto;
  }

  .cookie-banner-actions,
  .cookie-modal-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .cookie-banner .cookie-text-button,
  .cookie-modal .cookie-text-button {
    grid-column: 1 / -1;
  }

  .cookie-banner .button,
  .cookie-modal .button {
    width: 100%;
  }

  .cookie-modal {
    max-height: calc(100dvh - 2rem - env(safe-area-inset-top) - env(safe-area-inset-bottom));
    padding: 1rem;
  }

  .cookie-category {
    gap: 0.75rem;
  }

  .cookie-switch {
    flex-direction: column;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cookie-switch-control,
  .cookie-switch-control::after,
  .cookie-status {
    transition: none;
  }
}
