:root {
  --color-ink: #17211b;
  --color-muted: #5b6a60;
  --color-line: #d8e0da;
  --color-surface: #f7faf7;
  --color-paper: #ffffff;
  --color-primary: #17643a;
  --color-primary-dark: #0d4025;
  --color-accent: #b88727;
  --color-steel: #263a43;
  --shadow-soft: 0 18px 45px rgba(23, 33, 27, 0.09);
  --container: 1180px;
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--color-ink);
  background: var(--color-paper);
  line-height: 1.5;
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow-x: hidden;
  overflow-y: visible;
}

html.nav-open,
body.nav-open {
  overflow: hidden;
}

html.lightbox-open,
body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 20;
  padding: 0.75rem 1rem;
  background: var(--color-primary-dark);
  color: #ffffff;
  border-radius: var(--radius);
  text-decoration: none;
  transition: top 160ms ease;
}

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

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

.top-bar .container,
.site-header .container {
  width: min(100% - 2rem, 1440px);
}

.top-bar {
  border-bottom: 1px solid var(--color-line);
  background: var(--color-surface);
  color: var(--color-muted);
  font-size: 0.88rem;
}

.top-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.5rem 0;
}

.top-bar__link {
  flex: 0 0 auto;
  padding: 0.4rem 0.7rem;
  border-radius: 4px;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  text-decoration: none;
}

.top-bar__link:hover,
.top-bar__link:focus-visible {
  background: var(--color-primary-dark);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--color-line);
  backdrop-filter: blur(12px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  min-width: 150px;
  color: var(--color-ink);
  text-decoration: none;
}

.brand__name {
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: 0;
}

.brand__tagline {
  color: var(--color-muted);
  font-size: 0.78rem;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
  color: var(--color-ink);
  cursor: pointer;
}

.menu-toggle__bar,
.menu-toggle__bar::before,
.menu-toggle__bar::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
}

.menu-toggle__bar {
  position: relative;
}

.menu-toggle__bar::before {
  position: absolute;
  top: -7px;
}

.menu-toggle__bar::after {
  position: absolute;
  top: 7px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-link,
.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 0.72rem;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  font-size: 0.93rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
}

.nav-link:hover,
.nav-link:focus-visible,
.dropdown-toggle:hover,
.dropdown-toggle:focus-visible,
.nav-link[aria-current="page"] {
  background: var(--color-surface);
  color: var(--color-primary-dark);
  outline: none;
}

.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  width: 0.45rem;
  height: 0.45rem;
  margin-left: 0.45rem;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  content: "";
  transform: rotate(45deg) translateY(-2px);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.4rem);
  left: 0;
  display: grid;
  min-width: 290px;
  margin: 0;
  padding: 0.5rem;
  list-style: none;
  background: var(--color-paper);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.is-open .dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.dropdown-menu .nav-link {
  width: 100%;
  justify-content: flex-start;
  white-space: normal;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-header__inner,
.site-nav,
.nav-list,
.header-actions {
  min-width: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 0.95rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.button--primary {
  background: var(--color-primary);
  color: #ffffff;
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-primary-dark);
}

.button--ghost {
  border-color: var(--color-line);
  color: var(--color-primary-dark);
  background: var(--color-paper);
}

.button--ghost:hover,
.button--ghost:focus-visible {
  border-color: var(--color-primary);
}

.button--light {
  background: #ffffff;
  color: var(--color-primary-dark);
}

.button--light:hover,
.button--light:focus-visible {
  background: var(--color-surface);
}

.button--outline-light {
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
  background: transparent;
}

.button--outline-light:hover,
.button--outline-light:focus-visible {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.page-shell {
  min-height: 52vh;
  padding: 4.5rem 0;
  background: linear-gradient(180deg, rgba(247, 250, 247, 0.9), rgba(255, 255, 255, 0.96));
}

.page-kicker {
  margin: 0 0 0.6rem;
  color: var(--color-accent);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.page-title {
  max-width: 820px;
  margin: 0;
  font-size: 3.6rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.page-intro {
  max-width: 760px;
  margin: 1.1rem 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.structure-note {
  margin-top: 2rem;
  padding: 1rem;
  border: 1px dashed var(--color-line);
  border-radius: var(--radius);
  color: var(--color-muted);
  background: rgba(255, 255, 255, 0.72);
}

.home-hero {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  isolation: isolate;
}

.home-hero__image,
.home-hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero picture {
  display: contents;
}

.home-hero__image {
  object-fit: cover;
  object-position: 68% center;
  z-index: -2;
}

.home-hero__shade {
  z-index: -1;
  background: linear-gradient(90deg, rgba(11, 32, 23, 0.88) 0%, rgba(11, 32, 23, 0.72) 50%, rgba(11, 32, 23, 0.28) 100%);
}

.home-hero__content {
  align-self: center;
  padding: 6.5rem 0 5.8rem;
}

.home-hero .page-kicker {
  color: #d9b25a;
}

.home-hero__title {
  max-width: 850px;
  margin: 0;
  font-size: 4.1rem;
  line-height: 1.04;
  letter-spacing: 0;
}

.home-hero__intro {
  max-width: 840px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.16rem;
}

.trust-line {
  max-width: 760px;
  margin: 1.25rem 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 700;
}

.section {
  padding: 4.75rem 0;
}

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

.section--deep {
  background: var(--color-steel);
  color: #ffffff;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 2rem;
}

.section-heading--split {
  display: flex;
  max-width: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
}

.section-title {
  margin: 0;
  font-size: 2.45rem;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-copy,
.section-heading p:not(.page-kicker) {
  max-width: 720px;
  color: var(--color-muted);
}

.section--deep .page-kicker {
  color: #d9b25a;
}

.section--deep .section-title,
.section--deep .section-copy,
.section--deep .section-heading p:not(.page-kicker) {
  color: #ffffff;
}

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

.serve-card,
.partner-item {
  min-height: 190px;
  padding: 1.35rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.serve-card h3,
.partner-item h3,
.collection-card h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.25;
}

.serve-card p,
.partner-item p,
.collection-card p {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.serve-card--accent {
  border-color: rgba(184, 135, 39, 0.48);
  background: #fffaf0;
}

.feature-list {
  display: grid;
  gap: 0.55rem;
  margin: 0.9rem 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--color-accent);
  color: var(--color-primary-dark);
  font-weight: 700;
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1.1rem;
}

.collection-card {
  scroll-margin-top: 7.5rem;
  display: flex;
  height: 100%;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
}

.collection-card[data-card-link] {
  cursor: pointer;
}

.collection-card__media {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 230px;
  padding: 0.9rem;
  border-bottom: 1px solid var(--color-line);
  background: #f6f8f5;
}

.collection-card__media-link {
  display: flex;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  align-items: center;
  justify-content: center;
  border-radius: calc(var(--radius) - 2px);
}

.collection-card img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: contain;
  object-position: center;
}

.collection-card__title-link {
  color: inherit;
  text-decoration: none;
}

.collection-card__media-link:hover,
.collection-card__media-link:focus-visible,
.collection-card__title-link:hover,
.collection-card__title-link:focus-visible {
  color: var(--color-primary);
}

.collection-card picture,
.gallery-item picture {
  display: block;
}

.collection-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1.1rem;
}

.collection-card--text-only {
  background: var(--color-paper);
}

.collection-card--accessories {
  border-top: 1px solid var(--color-line);
  background: var(--color-paper);
}

.collection-card__eyebrow {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 0.75rem;
  padding: 0.28rem 0.5rem;
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.collection-card dl {
  display: grid;
  gap: 0.75rem;
  margin: 1rem 0;
}

.collection-card dt {
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-card dd {
  margin: 0.15rem 0 0;
  color: var(--color-muted);
}

.collection-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.collection-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: auto;
}

.collection-card__actions .button {
  margin-top: 0;
}

.collection-card--text-only .button {
  margin-top: 0.2rem;
}

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

.partner-item {
  min-height: 150px;
  border-left: 4px solid var(--color-primary);
}

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

.gallery-item {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 14px 30px rgba(6, 19, 13, 0.18);
}

.gallery-item__media {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: rgba(255, 255, 255, 0.08);
}

.trust-gallery-media {
  width: 100%;
  max-height: 240px;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

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

.trust-gallery-media .gallery-focus--production {
  object-position: 50% 58%;
}

.trust-gallery-media .gallery-focus--product-stock {
  object-position: 50% 50%;
}

.trust-gallery-media .gallery-focus--warehouse {
  object-position: 50% 58%;
}

.trust-gallery-media .gallery-focus--container {
  object-position: 50% 38%;
}

.gallery-item figcaption {
  display: flex;
  min-height: 48px;
  align-items: center;
  padding: 0.75rem 0.85rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.sample-band {
  background: #f5f7f0;
}

.sample-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.sample-band .section-title {
  max-width: 780px;
}

.rfq-band {
  background: var(--color-primary-dark);
  color: #ffffff;
}

.rfq-band__inner {
  max-width: 860px;
}

.rfq-band .page-kicker {
  color: #d9b25a;
}

.rfq-band p {
  color: rgba(255, 255, 255, 0.84);
}

.subpage-hero {
  padding: 5rem 0 4.5rem;
  background: linear-gradient(180deg, #f7faf7 0%, #ffffff 100%);
}

.subpage-hero--b2b {
  background: linear-gradient(180deg, #f5f7f0 0%, #ffffff 100%);
}

.content-grid,
.two-column-section,
.process-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 2.5rem;
  align-items: start;
}

.rich-copy {
  color: var(--color-muted);
  font-size: 1.02rem;
}

.rich-copy p {
  margin: 0;
}

.rich-copy p + p {
  margin-top: 1rem;
}

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

.comparison-card,
.b2b-card,
.option-grid article {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.comparison-card {
  padding: 1.2rem;
}

.comparison-card h3,
.b2b-card h3,
.option-grid h3,
.process-list h3 {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.comparison-card p,
.b2b-card p,
.option-grid p,
.process-list p {
  margin: 0.7rem 0 0;
  color: var(--color-muted);
}

.table-wrap {
  max-width: 100%;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.spec-guide {
  overflow-x: hidden;
}

.spec-table {
  width: 100%;
  min-width: 0;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 0.86rem;
}

.spec-table th,
.spec-table td {
  overflow-wrap: anywhere;
  padding: 0.78rem 0.68rem;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
  vertical-align: top;
  word-break: normal;
}

.spec-table th {
  background: var(--color-primary-dark);
  color: #ffffff;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: normal;
}

.spec-table tr:last-child td {
  border-bottom: 0;
}

.spec-table td:first-child {
  color: var(--color-primary-dark);
  font-weight: 800;
}

.spec-table th:nth-child(1),
.spec-table td:nth-child(1) {
  width: 14%;
}

.spec-table th:nth-child(2),
.spec-table td:nth-child(2) {
  width: 11%;
}

.spec-table th:nth-child(3),
.spec-table td:nth-child(3) {
  width: 16%;
}

.spec-table th:nth-child(4),
.spec-table td:nth-child(4) {
  width: 14%;
}

.spec-table th:nth-child(5),
.spec-table td:nth-child(5) {
  width: 10%;
}

.spec-table th:nth-child(6),
.spec-table td:nth-child(6) {
  width: 16%;
}

.spec-table th:nth-child(7),
.spec-table td:nth-child(7) {
  width: 19%;
}

.table-cta {
  margin-top: 1.15rem;
  padding: 1.1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.table-cta p {
  max-width: 820px;
  margin: 0;
  color: var(--color-muted);
}

.table-cta .cta-row {
  margin-top: 1rem;
}

.spec-guide .spec-card-list {
  display: none !important;
}

@media (min-width: 769px) {
  .spec-guide .table-wrap {
    display: block !important;
  }

  .spec-guide .spec-card-list {
    display: none !important;
  }
}

@media (min-width: 769px) and (max-width: 1080px) {
  .spec-table {
    font-size: 0.8rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 0.66rem 0.5rem;
  }

  .spec-table th {
    font-size: 0.68rem;
  }
}

@media (max-width: 768px) {
  .spec-guide .table-wrap {
    display: none !important;
  }

  .spec-guide .spec-card-list {
    display: grid !important;
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .spec-guide .spec-card {
    overflow: hidden;
    border: 1px solid var(--color-line);
    border-radius: var(--radius);
    background: var(--color-paper);
    box-shadow: 0 8px 20px rgba(23, 33, 27, 0.05);
  }

  .spec-guide .spec-card h3 {
    margin: 0;
    padding: 0.95rem 1rem;
    border-bottom: 1px solid var(--color-line);
    background: var(--color-surface);
    color: var(--color-primary-dark);
    font-weight: 800;
    font-size: 1.04rem;
    line-height: 1.25;
  }

  .spec-guide .spec-card dl {
    display: grid;
    gap: 0;
    margin: 0;
  }

  .spec-guide .spec-card dl > div {
    padding: 0.78rem 1rem;
    border-bottom: 1px solid var(--color-line);
  }

  .spec-guide .spec-card dl > div:last-child {
    margin: 0.15rem 0.75rem 0.75rem;
    padding: 0.75rem;
    border: 0;
    border-left: 3px solid var(--color-primary);
    border-radius: 6px;
    background: var(--color-surface);
  }

  .spec-guide .spec-card dl > div:nth-last-child(2) {
    border-bottom: 0;
  }

  .spec-guide .spec-card dt {
    color: var(--color-primary-dark);
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
  }

  .spec-guide .spec-card dd {
    margin: 0.18rem 0 0;
    color: var(--color-muted);
  }

  .spec-guide .table-cta {
    margin-top: 1rem;
    padding: 1rem;
  }

  .spec-guide {
    padding-bottom: 4rem;
  }

  body {
    padding-bottom: 2.8rem;
  }

  .floating-whatsapp {
    right: 0.55rem;
    bottom: 0.55rem;
    min-height: 40px;
    padding: 0 0.7rem;
    font-size: 0.84rem;
  }
}

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

.b2b-card {
  min-height: 220px;
  padding: 1.2rem;
}

.b2b-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.1rem;
  height: 2.1rem;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  font-weight: 800;
}

.check-list {
  display: grid;
  gap: 0.65rem;
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  padding: 0.8rem 0.9rem;
  border-left: 4px solid var(--color-primary);
  background: var(--color-paper);
  color: var(--color-primary-dark);
  font-weight: 700;
}

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

.option-grid article {
  padding: 1.2rem;
}

.process-list {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: process;
}

.process-list li {
  position: relative;
  padding: 1.2rem 1.2rem 1.2rem 4rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  counter-increment: process;
}

.process-list li::before {
  position: absolute;
  left: 1.1rem;
  top: 1.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #ffffff;
  color: var(--color-primary-dark);
  content: counter(process);
  font-weight: 800;
}

.process-list h3,
.process-list p {
  color: #ffffff;
}

.process-list p {
  color: rgba(255, 255, 255, 0.82);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 2rem;
  align-items: start;
}

.form-panel,
.support-card,
.gallery-placeholder,
.info-panel {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.form-panel {
  padding: 1.4rem;
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.06);
}

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

.form-field {
  display: grid;
  gap: 0.4rem;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--color-primary-dark);
  font-size: 0.88rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 44px;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--color-ink);
  font: inherit;
}

.form-field textarea {
  min-height: 132px;
  resize: vertical;
}

.form-note {
  margin: 0 0 1rem;
  color: var(--color-muted);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

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

.support-card {
  min-height: 210px;
  padding: 1.25rem;
}

.support-card h3,
.gallery-placeholder h3,
.info-panel h3 {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.25;
}

.support-card p,
.gallery-placeholder p,
.info-panel p {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.support-card__marker {
  display: inline-block;
  width: 2.2rem;
  height: 0.28rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--color-accent);
}

.info-panel {
  padding: 1.25rem;
}

.gallery-section-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}

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

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(23, 33, 27, 0.07);
}

.gallery-placeholder__media {
  flex: 0 0 auto;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.gallery-placeholder__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-placeholder__body {
  display: flex;
  flex: 1;
  min-height: 112px;
  flex-direction: column;
  padding: 0.85rem 1rem 1rem;
}

.gallery-placeholder__body h3 {
  font-size: 1.05rem;
}

.gallery-placeholder__body p {
  margin: 0.45rem 0 0;
  font-size: 0.92rem;
  line-height: 1.45;
}

.gallery-focus--production {
  object-position: 50% 48%;
}

.gallery-focus--warehouse {
  object-position: 50% 55%;
}

.gallery-focus--loading {
  object-position: 50% 50%;
}

.gallery-focus--container {
  object-position: 50% 43%;
}

.gallery-note {
  max-width: 820px;
  margin: 0 0 2rem;
  color: var(--color-muted);
}

.product-detail-groups {
  display: grid;
  gap: 2rem;
}

.product-detail-group {
  scroll-margin-top: 7.5rem;
  display: grid;
  gap: 1rem;
}

.product-detail-group__heading {
  max-width: none;
}

.product-detail-group__heading h3 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1.3rem;
}

.product-detail-group__heading p {
  max-width: 760px;
  margin: 0.45rem 0 0;
  color: var(--color-muted);
}

.product-detail-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 1rem 0 0;
}

.product-detail-meta div {
  padding: 0.85rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.product-detail-meta dt {
  color: var(--color-primary-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-detail-meta dd {
  margin: 0.28rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

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

.product-detail-tile {
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.product-detail-tile__media {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 280px;
  padding: 0.8rem;
  border-bottom: 1px solid var(--color-line);
  background: #ffffff;
}

.product-detail-tile__media img {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
  object-fit: contain;
  object-position: center;
}

.product-detail-tile__media img:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 4px;
}

.product-detail-tile figcaption {
  padding: 0.7rem 0.85rem;
  color: var(--color-primary-dark);
  font-size: 0.9rem;
  font-weight: 800;
}

.product-lightbox {
  position: fixed;
  z-index: 3000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 2rem);
  background: rgba(4, 14, 10, 0.86);
}

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

.product-lightbox__panel {
  position: relative;
  display: grid;
  max-width: 90vw;
  max-height: 92vh;
  gap: 0.75rem;
  justify-items: center;
}

.product-lightbox__image {
  display: block;
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  background: #ffffff;
  object-fit: contain;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.35);
}

.product-lightbox__caption {
  max-width: min(760px, 88vw);
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.product-lightbox__close {
  position: absolute;
  top: -0.75rem;
  right: -0.75rem;
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: var(--color-paper);
  color: var(--color-primary-dark);
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.product-lightbox__close:focus-visible {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.lightbox-open .floating-whatsapp {
  display: none;
}

.product-detail-actions {
  margin-top: 0.15rem;
}

.about-strength-media {
  margin: 0 0 1.25rem;
}

.about-strength-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  background: var(--color-line);
}

.about-strength-media figcaption {
  margin-top: 0.65rem;
  color: var(--color-muted);
  font-size: 0.88rem;
}

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

.about-card {
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
  box-shadow: 0 10px 24px rgba(23, 33, 27, 0.05);
}

.about-card h3 {
  margin: 0;
  color: var(--color-primary-dark);
  font-size: 1.08rem;
  line-height: 1.28;
}

.about-card p {
  margin: 0.75rem 0 0;
  color: var(--color-muted);
}

.about-photo-grid {
  margin-top: 1.5rem;
}

.about-photo-card {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.about-photo-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-line);
}

.about-photo-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-photo-card figcaption {
  padding: 0.8rem 0.95rem;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
}

.about-process-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(165px, 1fr));
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-process-list li {
  min-height: 180px;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-primary);
  border-radius: var(--radius);
  background: var(--color-paper);
}

.about-process-list span {
  display: block;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1.25;
}

.about-process-list p {
  margin: 0.65rem 0 0;
  color: var(--color-muted);
  font-size: 0.92rem;
}

.product-list-grid,
.contact-info-grid {
  display: grid;
  gap: 1rem;
}

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

.product-pill {
  min-height: 92px;
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
  color: var(--color-primary-dark);
  font-weight: 800;
}

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

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

.contact-detail {
  padding: 1rem;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
}

.contact-detail dt {
  color: var(--color-primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-detail dd {
  margin: 0.25rem 0 0;
  color: var(--color-ink);
  overflow-wrap: anywhere;
}

.contact-detail a {
  color: var(--color-primary-dark);
  font-weight: 800;
  text-decoration: none;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-paper);
  overflow: hidden;
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 58px;
  padding: 1rem;
  border: 0;
  background: transparent;
  color: var(--color-ink);
  font: inherit;
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  flex: 0 0 auto;
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
  transition: transform 160ms ease;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(225deg);
}

.faq-answer {
  display: none;
  padding: 0 1rem 1rem;
  color: var(--color-muted);
}

.faq-answer.is-open {
  display: block;
}

.faq-answer p {
  margin: 0;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 30;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #178a46;
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(23, 33, 27, 0.22);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--color-primary-dark);
}

.site-footer {
  border-top: 1px solid var(--color-line);
  background: var(--color-primary-dark);
  color: #ffffff;
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 1fr) minmax(180px, 0.65fr);
  align-items: start;
  gap: 3rem;
  padding: 3rem 0 2.5rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.site-footer a {
  color: #ffffff;
  text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.site-footer__name {
  display: inline-block;
  font-size: 1.45rem;
  font-weight: 900;
}

.site-footer__brand > p {
  max-width: 34rem;
  margin: 0.45rem 0 1.25rem;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__contact {
  display: grid;
  gap: 0.5rem;
  font-style: normal;
}

.site-footer__contact span {
  overflow-wrap: anywhere;
}

.site-footer__heading {
  margin: 0 0 0.9rem;
  color: #ffffff;
  font-size: 1rem;
}

.site-footer__links {
  display: grid;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__bottom {
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.84rem;
}

@media (min-width: 1381px) and (max-width: 1500px) {
  .site-header__inner {
    gap: 0.75rem;
  }

  .brand {
    min-width: 120px;
  }

  .brand__name {
    font-size: 1.32rem;
  }

  .brand__tagline {
    font-size: 0.72rem;
  }

  .site-nav {
    flex: 1 1 auto;
    gap: 0.45rem;
  }

  .nav-list {
    justify-content: flex-end;
    gap: 0;
  }

  .nav-link,
  .dropdown-toggle {
    min-height: 40px;
    padding-inline: 0.38rem;
    font-size: 0.84rem;
  }

  .dropdown-toggle::after {
    margin-left: 0.25rem;
  }

  .header-actions {
    flex: 0 1 172px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.35rem;
  }

  .header-actions .button {
    flex: 1 1 100%;
    min-height: 36px;
    padding-inline: 0.55rem;
    font-size: 0.82rem;
  }
}

@media (max-width: 1380px) {
  .menu-toggle {
    display: inline-flex;
  }

  .site-header__inner {
    min-height: 68px;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: calc(100dvh - 68px);
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.75rem 1rem 1rem;
    background: var(--color-paper);
    border-bottom: 1px solid var(--color-line);
    box-shadow: var(--shadow-soft);
    -webkit-overflow-scrolling: touch;
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
  }

  .nav-link,
  .dropdown-toggle {
    width: 100%;
    justify-content: space-between;
    min-height: 46px;
  }

  .dropdown-menu {
    position: static;
    display: none;
    min-width: 100%;
    margin: 0.25rem 0 0.5rem;
    padding: 0.25rem;
    box-shadow: none;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .dropdown.is-open .dropdown-menu {
    display: grid;
  }

  .header-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.6rem;
    padding-top: 0.75rem;
  }

  .site-nav .button {
    width: 100%;
  }
}

@media (max-width: 980px) {
  .site-footer__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .home-hero {
    min-height: 560px;
  }

  .home-hero__shade {
    background: rgba(11, 32, 23, 0.72);
  }

  .home-hero__title {
    font-size: 3.2rem;
  }

  .section-title {
    font-size: 2.05rem;
  }

  .section-heading--split,
  .sample-band__inner {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }

  .section-heading--split {
    display: grid;
  }

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

  .content-grid,
  .two-column-section,
  .process-layout,
  .form-layout {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .comparison-grid,
  .about-capability-grid,
  .about-photo-grid,
  .b2b-grid,
  .support-grid,
  .gallery-section-grid,
  .product-detail-grid,
  .product-detail-meta,
  .product-list-grid,
  .contact-info-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .trust-gallery-media {
    height: 220px;
    max-height: 220px;
    aspect-ratio: auto;
  }

  .collection-card__media {
    height: 220px;
  }

  .product-detail-tile__media {
    height: 260px;
  }
}

@media (max-width: 680px) {
  .top-bar__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .site-footer__brand {
    grid-column: auto;
  }

  .brand__tagline {
    display: none;
  }

  .page-shell {
    padding: 3rem 0;
  }

  .page-title {
    font-size: 2.2rem;
  }

  .page-intro {
    font-size: 1rem;
  }

  .home-hero {
    min-height: 620px;
  }

  .home-hero__content {
    padding: 4.5rem 0;
  }

  .home-hero__title {
    font-size: 2.55rem;
  }

  .home-hero__intro {
    font-size: 1rem;
  }

  .section {
    padding: 3.25rem 0;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .trust-gallery-media {
    height: 220px;
    max-height: 220px;
  }

  .collection-card__media {
    height: 210px;
    padding: 0.75rem;
  }

  .product-detail-tile__media {
    height: 240px;
    padding: 0.65rem;
  }

  .cta-row,
  .header-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cta-row .button {
    width: 100%;
  }

  .serve-grid,
  .collection-grid,
  .partner-grid,
  .comparison-grid,
  .about-capability-grid,
  .about-photo-grid,
  .b2b-grid,
  .option-grid,
  .support-grid,
  .gallery-section-grid,
  .product-detail-grid,
  .product-detail-meta,
  .product-list-grid,
  .contact-info-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

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

  .collection-card .button,
  .collection-card__actions .button,
  .sample-band .button,
  .section-heading--split .button,
  .form-actions .button {
    width: 100%;
  }

  .collection-card--accessories {
    grid-column: auto;
  }

  .collection-card--accessories .collection-card__body {
    max-width: none;
  }

  .about-process-list {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 0.55rem;
    bottom: 0.55rem;
    min-height: 40px;
    padding: 0 0.7rem;
    font-size: 0.84rem;
  }
}
