@font-face {
  font-family: "IBM Plex Sans";
  src: url("/assets/fonts/ibm-plex-sans-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/assets/fonts/newsreader-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
}

:root {
  --clt-ink: #171815;
  --clt-paper: #f5f2eb;
  --clt-white: #fffefb;
  --clt-steel: #657078;
  --clt-line: #d8d5cc;
  --clt-brass: #a67c3a;
  --clt-red: #b43d2e;
  --clt-green: #1f4f3f;
  --clt-mist: #e8eceb;
  --clt-font-body: "IBM Plex Sans", "Segoe UI", sans-serif;
  --clt-font-display: "Newsreader", Georgia, serif;
}

html {
  scroll-behavior: smooth;
  background: var(--clt-paper);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--clt-ink);
  background: var(--clt-white);
  font-family: var(--clt-font-body);
  letter-spacing: 0;
}

body h1,
body h2,
body h3,
body h4,
body p,
body ul,
body ol {
  letter-spacing: 0;
}

body h1,
body h2,
.clt-display {
  font-family: var(--clt-font-display);
  font-weight: 500;
}

body img {
  color: transparent;
}

.clt-shell {
  width: min(100% - 40px, 1240px);
  margin-inline: auto;
}

.clt-band {
  padding-block: 88px;
}

.clt-band-tight {
  padding-block: 56px;
}

.clt-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 16px;
  color: var(--clt-brass);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.clt-kicker::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.clt-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(300px, 0.45fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 38px;
}

.clt-section-head h2 {
  max-width: 780px;
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
}

.clt-section-head p {
  margin: 0;
  color: #555b59;
  font-size: 16px;
  line-height: 1.7;
}

.clt-text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clt-ink);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--clt-brass);
  text-underline-offset: 5px;
}

.clt-button,
.clt-button:visited {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.clt-button-primary {
  color: #fff;
  background: var(--clt-red);
}

.clt-button-primary:hover {
  color: #fff;
  background: #963125;
}

.clt-button-dark {
  color: #fff;
  background: var(--clt-ink);
}

.clt-button-dark:hover {
  color: #fff;
  background: #343632;
}

.clt-button-light {
  color: var(--clt-ink);
  border-color: rgba(23, 24, 21, 0.25);
  background: rgba(255, 254, 251, 0.88);
}

.clt-button-light:hover {
  border-color: var(--clt-ink);
  background: var(--clt-white);
}

/* Header */
body > .bg-gray-900 {
  background: var(--clt-ink) !important;
}

body > .bg-gray-900 > div > div {
  height: 34px !important;
}

body > .bg-gray-900 a,
body > .bg-gray-900 span {
  font-family: var(--clt-font-body);
}

.site-header {
  border-bottom: 1px solid rgba(23, 24, 21, 0.12);
  background: rgba(255, 254, 251, 0.97) !important;
  box-shadow: none !important;
}

.site-header > nav {
  min-height: 74px;
  max-width: 1320px !important;
  padding-block: 12px !important;
}

.site-header .text-xl.font-bold {
  color: var(--clt-ink) !important;
  font-family: var(--clt-font-display);
  font-size: 23px !important;
  font-weight: 600 !important;
}

.site-header .text-xl.font-bold::after {
  display: block;
  color: var(--clt-brass);
  font-family: var(--clt-font-body);
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  content: "Packaging Works";
}

.site-header nav a,
.site-header nav button {
  font-family: var(--clt-font-body);
}

.site-header .hidden.xl\:flex > a,
.site-header .nav-item > button {
  color: #323531 !important;
  font-size: 13px !important;
}

.site-header .hidden.xl\:flex > a:hover,
.site-header .nav-item > button:hover {
  color: var(--clt-red) !important;
}

.nav-dropdown {
  border: 1px solid var(--clt-line) !important;
  border-radius: 6px !important;
  background: var(--clt-white) !important;
  box-shadow: 0 18px 46px rgba(23, 24, 21, 0.13) !important;
}

.nav-dropdown-col strong {
  color: var(--clt-brass) !important;
}

.nav-sub-link {
  border-radius: 3px !important;
  color: #454945 !important;
}

.nav-sub-link:hover {
  color: var(--clt-red) !important;
  background: #f1eee7 !important;
}

.nav-dropdown-cta {
  border-radius: 4px !important;
  background: var(--clt-paper) !important;
}

.nav-cta-btn {
  min-height: 42px !important;
  padding: 10px 16px !important;
  border-radius: 4px !important;
  color: #fff !important;
  background: var(--clt-red) !important;
}

.nav-cta-btn:hover {
  background: #963125 !important;
}

/* Hero */
.clt-home {
  background: var(--clt-white);
}

.clt-hero {
  position: relative;
  min-height: 690px;
  overflow: hidden;
  color: var(--clt-ink);
  background: #e9e3d8;
}

.clt-hero-media,
.clt-hero-media picture,
.clt-hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.clt-hero-media img {
  object-fit: cover;
  object-position: center;
}

.clt-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 254, 251, 0.98) 0%, rgba(255, 254, 251, 0.87) 33%, rgba(255, 254, 251, 0.13) 65%, rgba(255, 254, 251, 0) 100%);
  content: "";
}

.clt-hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 690px;
  flex-direction: column;
  justify-content: center;
  padding-block: 82px 126px;
}

.clt-hero-copy {
  width: min(600px, 52%);
}

.clt-hero h1 {
  margin: 0;
  font-size: 68px;
  line-height: 0.98;
}

.clt-hero-lead {
  max-width: 590px;
  margin: 24px 0 0;
  color: #4d524e;
  font-size: 18px;
  line-height: 1.7;
}

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

.clt-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 26px;
  margin-top: 28px;
  padding: 0;
  color: #3d413d;
  font-size: 13px;
  font-weight: 600;
  list-style: none;
}

.clt-hero-proof li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.clt-hero-proof svg {
  width: 17px;
  height: 17px;
  color: var(--clt-green);
}

.clt-hero-rail {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
  left: 0;
  border-top: 1px solid rgba(23, 24, 21, 0.13);
  background: rgba(255, 254, 251, 0.94);
  backdrop-filter: blur(12px);
}

.clt-hero-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clt-metric {
  min-height: 92px;
  padding: 20px 24px;
  border-left: 1px solid rgba(23, 24, 21, 0.12);
}

.clt-metric:last-child {
  border-right: 1px solid rgba(23, 24, 21, 0.12);
}

.clt-metric strong {
  display: block;
  font-family: var(--clt-font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.clt-metric span {
  display: block;
  margin-top: 7px;
  color: #656a66;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

/* Product families */
.clt-products-band {
  background: var(--clt-paper);
}

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

.clt-product-card {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(23, 24, 21, 0.12);
  border-radius: 6px;
  color: var(--clt-ink);
  background: var(--clt-white);
  text-decoration: none;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.clt-product-card:hover {
  border-color: rgba(180, 61, 46, 0.48);
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(23, 24, 21, 0.09);
}

.clt-product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
  transition: transform 260ms ease;
}

.clt-product-card:hover img {
  transform: scale(1.025);
}

.clt-product-card-body {
  min-height: 128px;
  padding: 18px;
  border-top: 1px solid rgba(23, 24, 21, 0.1);
}

.clt-product-card small {
  color: var(--clt-brass);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.clt-product-card h3 {
  margin: 8px 0 0;
  font-size: 19px;
  font-weight: 600;
  line-height: 1.2;
}

.clt-product-card p {
  margin: 8px 0 0;
  color: #666b67;
  font-size: 13px;
  line-height: 1.55;
}

/* Manufacturing narrative */
.clt-proof-band {
  background: var(--clt-ink);
  color: #fff;
}

.clt-proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  align-items: stretch;
}

.clt-proof-image {
  min-height: 620px;
}

.clt-proof-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.clt-proof-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 68px 64px;
}

.clt-proof-copy h2 {
  max-width: 590px;
  margin: 0;
  font-size: 50px;
  line-height: 1.04;
}

.clt-proof-copy > p {
  max-width: 600px;
  margin: 22px 0 0;
  color: #c8cdc9;
  font-size: 16px;
  line-height: 1.75;
}

.clt-proof-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  list-style: none;
}

.clt-proof-list li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.clt-proof-list strong {
  color: #d8b879;
  font-size: 13px;
}

.clt-proof-list span {
  color: #f4f4ef;
  font-size: 14px;
}

.clt-process-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--clt-line);
  border-bottom: 1px solid var(--clt-line);
}

.clt-process-step {
  min-height: 236px;
  padding: 28px 24px;
  border-right: 1px solid var(--clt-line);
}

.clt-process-step:last-child {
  border-right: 0;
}

.clt-process-step b {
  color: var(--clt-brass);
  font-family: var(--clt-font-display);
  font-size: 25px;
  font-weight: 500;
}

.clt-process-step h3 {
  margin: 32px 0 0;
  font-size: 18px;
}

.clt-process-step p {
  margin: 10px 0 0;
  color: #676c68;
  font-size: 13px;
  line-height: 1.65;
}

.clt-split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 72px;
  align-items: center;
}

.clt-split-reverse .clt-split-media {
  order: 2;
}

.clt-split h2 {
  margin: 0;
  font-size: 48px;
  line-height: 1.05;
}

.clt-split p {
  margin: 20px 0 0;
  color: #5b605c;
  font-size: 16px;
  line-height: 1.72;
}

.clt-split-media {
  min-height: 470px;
  overflow: hidden;
  border-radius: 6px;
}

.clt-split-media img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.clt-checks {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.clt-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.5;
}

.clt-checks svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  color: var(--clt-green);
}

.clt-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--clt-line);
  border-bottom: 1px solid var(--clt-line);
}

.clt-compare {
  width: 100%;
  min-width: 780px;
  border-collapse: collapse;
}

.clt-compare th,
.clt-compare td {
  padding: 18px 20px;
  border-right: 1px solid var(--clt-line);
  border-bottom: 1px solid var(--clt-line);
  text-align: left;
  vertical-align: top;
}

.clt-compare th:last-child,
.clt-compare td:last-child {
  border-right: 0;
}

.clt-compare tr:last-child td {
  border-bottom: 0;
}

.clt-compare th {
  color: #fff;
  background: var(--clt-ink);
  font-size: 12px;
  text-transform: uppercase;
}

.clt-compare th:nth-child(2) {
  color: var(--clt-ink);
  background: #dcc28f;
}

.clt-compare td {
  color: #555a56;
  font-size: 13px;
  line-height: 1.55;
}

.clt-compare td:first-child {
  color: var(--clt-ink);
  font-weight: 700;
}

.clt-compare td:nth-child(2) {
  background: #f5eddd;
}

.clt-quote-grid,
.clt-guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.clt-quote,
.clt-guide-card {
  border: 1px solid var(--clt-line);
  border-radius: 6px;
  background: var(--clt-white);
}

.clt-quote {
  min-height: 280px;
  padding: 28px;
}

.clt-quote blockquote {
  margin: 0;
  font-family: var(--clt-font-display);
  font-size: 24px;
  line-height: 1.3;
}

.clt-quote footer {
  margin-top: 28px;
  color: #656a66;
  font-size: 12px;
  line-height: 1.6;
}

.clt-guide-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  padding: 24px;
  color: var(--clt-ink);
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease;
}

.clt-guide-card:hover {
  border-color: var(--clt-brass);
  transform: translateY(-2px);
}

.clt-guide-card small {
  color: var(--clt-brass);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.clt-guide-card h3 {
  margin: 20px 0 0;
  font-family: var(--clt-font-display);
  font-size: 25px;
  font-weight: 500;
  line-height: 1.15;
}

.clt-guide-card p {
  margin: 14px 0 24px;
  color: #686d69;
  font-size: 13px;
  line-height: 1.62;
}

.clt-guide-card span {
  margin-top: auto;
  font-size: 12px;
  font-weight: 700;
}

/* RFQ */
.clt-rfq-band {
  color: #fff;
  background: var(--clt-green);
}

.clt-rfq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(520px, 1.28fr);
  gap: 70px;
  align-items: start;
}

.clt-rfq-copy h2 {
  margin: 0;
  font-size: 52px;
  line-height: 1.02;
}

.clt-rfq-copy p {
  margin: 22px 0 0;
  color: #d4dfda;
  font-size: 16px;
  line-height: 1.72;
}

.clt-rfq-copy ul {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.clt-rfq-copy li {
  display: flex;
  gap: 10px;
  color: #eef4f1;
  font-size: 13px;
}

.clt-rfq-copy li svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  margin-top: 1px;
}

.clt-rfq-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
  background: #fffefb;
}

.clt-field {
  display: grid;
  gap: 7px;
}

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

.clt-field label {
  color: #4f554f;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.clt-field input,
.clt-field select,
.clt-field textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid #c8c9c2;
  border-radius: 3px;
  color: var(--clt-ink);
  background: #fff;
  font-family: var(--clt-font-body);
  font-size: 14px;
}

.clt-field textarea {
  min-height: 116px;
  resize: vertical;
}

.clt-field input:focus,
.clt-field select:focus,
.clt-field textarea:focus {
  border-color: var(--clt-brass);
  outline: 2px solid rgba(166, 124, 58, 0.18);
}

.clt-rfq-submit {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.clt-rfq-submit p {
  margin: 0;
  color: #747973;
  font-size: 11px;
  line-height: 1.5;
}

/* Catalog and contact */
.clt-catalog,
.clt-contact-page,
.clt-pdp {
  background: var(--clt-paper);
}

.clt-page-hero {
  padding-block: 64px 50px;
  border-bottom: 1px solid var(--clt-line);
  background: var(--clt-white);
}

.clt-page-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: 58px;
  line-height: 1;
}

.clt-page-hero p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #606560;
  font-size: 16px;
  line-height: 1.7;
}

.clt-filter-bar {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding-block: 22px;
  scrollbar-width: thin;
}

.clt-filter-pill {
  flex: 0 0 auto;
  padding: 9px 13px;
  border: 1px solid #c8c7c0;
  border-radius: 3px;
  color: #4d514d;
  background: var(--clt-white);
  font-size: 12px;
  font-weight: 700;
}

.clt-filter-pill[aria-current="page"] {
  color: #fff;
  border-color: var(--clt-ink);
  background: var(--clt-ink);
}

.clt-catalog-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 72px;
}

.clt-catalog-card {
  overflow: hidden;
  border: 1px solid var(--clt-line);
  border-radius: 6px;
  color: var(--clt-ink);
  background: var(--clt-white);
  text-decoration: none;
}

.clt-catalog-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #fff;
}

.clt-catalog-card-body {
  min-height: 145px;
  padding: 17px;
  border-top: 1px solid var(--clt-line);
}

.clt-catalog-card h2,
.clt-catalog-card h3 {
  margin: 0;
  font-family: var(--clt-font-body);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.clt-catalog-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 16px;
  color: #686d68;
  font-size: 11px;
}

.clt-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 48px;
  align-items: start;
}

.clt-contact-panel {
  padding: 30px;
  border: 1px solid var(--clt-line);
  border-radius: 6px;
  background: var(--clt-white);
}

.clt-contact-panel h2,
.clt-contact-panel h3 {
  margin-top: 0;
}

.clt-contact-details {
  display: grid;
  gap: 0;
  padding: 0;
  list-style: none;
}

.clt-contact-details li {
  padding: 16px 0;
  border-bottom: 1px solid var(--clt-line);
  font-size: 14px;
  line-height: 1.55;
}

/* Category pages */
.clt-category-page {
  background: var(--clt-white);
}

.clt-category-breadcrumb {
  border-bottom: 1px solid var(--clt-line);
  background: var(--clt-paper);
}

.clt-category-breadcrumb .clt-shell {
  display: flex;
  min-height: 46px;
  align-items: center;
  gap: 9px;
  overflow: hidden;
  color: #696e69;
  font-size: 12px;
  white-space: nowrap;
}

.clt-category-breadcrumb a:hover {
  color: var(--clt-red);
}

.clt-category-hero {
  border-bottom: 1px solid var(--clt-line);
  background: var(--clt-white);
}

.clt-category-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 1.06fr);
  gap: 70px;
  align-items: center;
  min-height: 610px;
  padding-block: 62px;
}

.clt-category-hero-copy h1 {
  max-width: 720px;
  margin: 0;
  font-size: 56px;
  line-height: 1.01;
}

.clt-category-lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #555b56;
  font-size: 16px;
  line-height: 1.74;
}

.clt-category-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  border-top: 1px solid var(--clt-line);
  border-bottom: 1px solid var(--clt-line);
  list-style: none;
}

.clt-category-proof li {
  min-height: 92px;
  padding: 18px 16px;
  border-right: 1px solid var(--clt-line);
}

.clt-category-proof li:first-child {
  padding-left: 0;
}

.clt-category-proof li:last-child {
  border-right: 0;
}

.clt-category-proof strong,
.clt-category-proof span {
  display: block;
}

.clt-category-proof strong {
  font-family: var(--clt-font-display);
  font-size: 22px;
  font-weight: 500;
}

.clt-category-proof span {
  margin-top: 5px;
  color: #6a6f6a;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.clt-category-hero-media {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--clt-line);
  border-radius: 6px;
  background: #fff;
}

.clt-category-hero-media img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.clt-category-hero-media figcaption {
  padding: 13px 16px;
  border-top: 1px solid var(--clt-line);
  color: #686d68;
  font-size: 11px;
}

.clt-category-spec-band {
  color: #f5f3ed;
  background: var(--clt-ink);
}

.clt-category-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clt-category-spec-grid > div {
  min-height: 124px;
  padding: 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.clt-category-spec-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.clt-category-spec-grid span,
.clt-category-spec-grid strong {
  display: block;
}

.clt-category-spec-grid span {
  color: #d8b879;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.clt-category-spec-grid strong {
  margin-top: 12px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.55;
}

.clt-category-products,
.clt-category-process {
  background: var(--clt-paper);
}

.clt-category-products .clt-catalog-grid {
  padding-bottom: 0;
}

.clt-category-empty {
  padding: 42px;
  border: 1px solid var(--clt-line);
  background: var(--clt-white);
}

.clt-category-empty h3 {
  margin: 0;
  font-family: var(--clt-font-display);
  font-size: 30px;
  font-weight: 500;
}

.clt-category-empty p {
  max-width: 690px;
  margin: 12px 0 24px;
  color: #626762;
  line-height: 1.7;
}

.clt-category-cap-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--clt-line);
  border-bottom: 1px solid var(--clt-line);
}

.clt-category-cap-grid article {
  min-height: 300px;
  padding: 30px;
  border-right: 1px solid var(--clt-line);
}

.clt-category-cap-grid article:last-child {
  border-right: 0;
}

.clt-category-cap-grid article > span {
  color: var(--clt-brass);
  font-family: var(--clt-font-display);
  font-size: 25px;
}

.clt-category-cap-grid h3 {
  margin: 45px 0 18px;
  font-size: 19px;
}

.clt-category-cap-grid ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  color: #626762;
  font-size: 13px;
  line-height: 1.55;
  list-style: none;
}

.clt-category-cap-grid li::before {
  margin-right: 8px;
  color: var(--clt-brass);
  content: "+";
}

.clt-category-faq {
  background: var(--clt-white);
}

.clt-category-faq-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(500px, 1.28fr);
  gap: 78px;
  align-items: start;
}

.clt-category-faq-grid h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.04;
}

.clt-category-faq-grid > div:first-child > p:last-child {
  margin-top: 20px;
  color: #626762;
  line-height: 1.7;
}

.clt-category-faq-list {
  border-top: 1px solid var(--clt-line);
}

.clt-category-faq-list details {
  border-bottom: 1px solid var(--clt-line);
}

.clt-category-faq-list summary {
  position: relative;
  padding: 22px 44px 22px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  list-style: none;
}

.clt-category-faq-list summary::-webkit-details-marker {
  display: none;
}

.clt-category-faq-list summary::after {
  position: absolute;
  top: 20px;
  right: 2px;
  color: var(--clt-brass);
  font-family: var(--clt-font-display);
  font-size: 24px;
  content: "+";
}

.clt-category-faq-list details[open] summary::after {
  content: "-";
}

.clt-category-faq-list details p {
  margin: -4px 0 22px;
  color: #5e635e;
  font-size: 14px;
  line-height: 1.72;
}

.clt-category-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.clt-category-cta h2 {
  max-width: 760px;
  margin: 0;
  font-size: 42px;
  line-height: 1.04;
}

.clt-category-cta > div > p:last-child {
  max-width: 720px;
  margin: 12px 0 0;
  color: #d4dfda;
  line-height: 1.65;
}

/* Footer */
body > footer {
  padding: 0 0 34px;
  color: #d9dcd8;
  background: #151714;
}

body > footer.clt-footer-has-whatsapp {
  padding-bottom: 104px;
}

body > footer .container {
  width: min(100% - 40px, 1240px);
  max-width: none;
}

body > footer .footer-grid {
  gap: 38px;
  padding-block: 62px 42px;
}

body > footer .footer-brand {
  font-family: var(--clt-font-display);
  font-size: 27px;
  font-weight: 500;
}

body > footer .footer-title {
  color: #d8b879;
  font-size: 11px;
  text-transform: uppercase;
}

body > footer a:hover {
  color: #fff;
}

.clt-whatsapp-widget {
  position: fixed;
  right: calc(20px + env(safe-area-inset-right));
  bottom: calc(20px + env(safe-area-inset-bottom));
  z-index: 40;
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  font-family: var(--clt-font-body);
}

.clt-whatsapp-widget.is-open {
  z-index: 60;
}

.clt-whatsapp-symbols {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.clt-whatsapp-panel {
  position: absolute;
  right: 0;
  bottom: 76px;
  width: min(360px, calc(100vw - 32px - env(safe-area-inset-left) - env(safe-area-inset-right)));
  max-height: min(620px, calc(100vh - 118px));
  max-height: min(620px, calc(100dvh - 118px));
  overflow-y: auto;
  border: 1px solid rgba(23, 24, 21, 0.18);
  border-radius: 8px;
  visibility: hidden;
  opacity: 0;
  color: var(--clt-ink);
  background: var(--clt-white);
  box-shadow: 0 22px 60px rgba(23, 24, 21, 0.24);
  transform: translateY(12px) scale(0.98);
  transform-origin: right bottom;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.clt-whatsapp-widget.is-open .clt-whatsapp-panel {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.clt-whatsapp-panel-head {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 12px;
  padding: 18px;
  color: #fff;
  background: #173f32;
}

.clt-whatsapp-brand-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #173f32;
  background: #dff5e7;
}

.clt-whatsapp-brand-icon svg,
.clt-whatsapp-send svg,
.clt-whatsapp-launcher svg {
  fill: currentColor;
}

.clt-whatsapp-brand-icon svg {
  width: 24px;
  height: 24px;
}

.clt-whatsapp-panel-head p {
  margin: 0 0 2px;
  color: #cfe1d9;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.clt-whatsapp-panel-head h2 {
  margin: 0;
  color: #fff;
  font-family: var(--clt-font-body);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.25;
}

.clt-whatsapp-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.clt-whatsapp-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.clt-whatsapp-panel-body {
  padding: 18px;
}

.clt-whatsapp-intro {
  margin: 0;
  color: #525852;
  font-size: 14px;
  line-height: 1.55;
}

.clt-whatsapp-response {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 12px 0 16px;
  color: #315448;
  font-size: 12px;
  font-weight: 700;
}

.clt-whatsapp-response > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.14);
}

.clt-whatsapp-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.clt-whatsapp-field {
  display: grid;
  gap: 6px;
  min-width: 0;
}

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

.clt-whatsapp-field > span {
  color: #333833;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.clt-whatsapp-field strong {
  color: var(--clt-red);
}

.clt-whatsapp-field input,
.clt-whatsapp-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  box-sizing: border-box;
  padding: 10px 11px;
  border: 1px solid #c9cec9;
  border-radius: 4px;
  outline: 0;
  color: var(--clt-ink);
  background: #fff;
  font: inherit;
  font-size: 14px;
  line-height: 1.4;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}

.clt-whatsapp-field textarea {
  min-height: 82px;
  resize: vertical;
}

.clt-whatsapp-field input:focus,
.clt-whatsapp-field textarea:focus {
  border-color: #1d6f53;
  box-shadow: 0 0 0 3px rgba(29, 111, 83, 0.14);
}

.clt-whatsapp-field input[aria-invalid="true"],
.clt-whatsapp-field textarea[aria-invalid="true"] {
  border-color: var(--clt-red);
  box-shadow: 0 0 0 3px rgba(180, 61, 46, 0.12);
}

.clt-whatsapp-error {
  min-height: 18px;
  margin: 8px 0 0;
  color: #9a3025;
  font-size: 12px;
  line-height: 1.4;
}

.clt-whatsapp-widget .clt-whatsapp-send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 46px;
  padding: 11px 16px;
  border: 1px solid #128c4f;
  border-radius: 4px;
  color: #fff;
  background: #128c4f;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background 150ms ease, border-color 150ms ease, transform 150ms ease;
}

.clt-whatsapp-widget .clt-whatsapp-send:hover {
  border-color: #0d7541;
  background: #0d7541;
}

.clt-whatsapp-widget .clt-whatsapp-send:active {
  transform: translateY(1px);
}

.clt-whatsapp-send svg {
  width: 20px;
  height: 20px;
}

.clt-whatsapp-number {
  margin: 10px 0 0;
  color: #687068;
  font-size: 12px;
  text-align: center;
}

.clt-whatsapp-number a {
  color: #315448;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.clt-whatsapp-widget .clt-whatsapp-launcher {
  position: relative;
  display: inline-grid;
  grid-template-columns: 46px minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: auto;
  min-width: 222px;
  height: 68px;
  padding: 0 18px 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  color: #fff;
  background: #087a45;
  box-shadow: 0 16px 38px rgba(7, 72, 43, 0.38), 0 0 0 4px rgba(37, 211, 102, 0.2);
  box-sizing: border-box;
  appearance: none;
  cursor: pointer;
  transition: background 150ms ease, transform 150ms ease, box-shadow 150ms ease;
}

.clt-whatsapp-widget .clt-whatsapp-launcher:hover {
  background: #06683a;
  box-shadow: 0 18px 42px rgba(7, 72, 43, 0.44), 0 0 0 5px rgba(37, 211, 102, 0.25);
  transform: translateY(-2px);
}

.clt-whatsapp-widget .clt-whatsapp-launcher:active {
  transform: translateY(0) scale(0.99);
}

.clt-whatsapp-launcher-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #087a45;
  background: #fff;
  box-shadow: 0 4px 12px rgba(4, 54, 31, 0.2);
}

.clt-whatsapp-launcher-icon::after {
  position: absolute;
  right: 1px;
  bottom: 1px;
  width: 10px;
  height: 10px;
  border: 2px solid #087a45;
  border-radius: 50%;
  background: #b8f36b;
  content: '';
}

.clt-whatsapp-launcher-icon svg {
  width: 27px;
  height: 27px;
}

.clt-whatsapp-launcher-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
  color: #fff;
  text-align: left;
  white-space: nowrap;
}

.clt-whatsapp-launcher-copy strong {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
}

.clt-whatsapp-launcher-copy span {
  color: #d9fbe5;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.clt-whatsapp-launcher:focus-visible,
.clt-whatsapp-close:focus-visible,
.clt-whatsapp-send:focus-visible,
.clt-whatsapp-number a:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #111;
}

@media (max-width: 640px) {
  body > footer.clt-footer-has-whatsapp {
    padding-bottom: 96px;
  }

  .clt-whatsapp-widget {
    right: calc(12px + env(safe-area-inset-right));
    bottom: calc(12px + env(safe-area-inset-bottom));
  }

  .clt-whatsapp-panel {
    bottom: 76px;
    width: min(360px, calc(100vw - 24px - env(safe-area-inset-left) - env(safe-area-inset-right)));
    max-height: calc(100vh - 102px);
    max-height: calc(100dvh - 102px);
  }

  .clt-whatsapp-panel-head,
  .clt-whatsapp-panel-body {
    padding: 16px;
  }

  .clt-whatsapp-widget .clt-whatsapp-launcher {
    display: inline-flex;
    width: 64px;
    min-width: 64px;
    height: 64px;
    padding: 0;
    border-radius: 50%;
  }

  .clt-whatsapp-launcher-icon {
    width: 44px;
    height: 44px;
  }

  .clt-whatsapp-launcher-icon svg {
    width: 26px;
    height: 26px;
  }

  .clt-whatsapp-launcher-copy {
    display: none;
  }
}

@media (max-width: 360px) {
  .clt-whatsapp-fields {
    grid-template-columns: 1fr;
  }

  .clt-whatsapp-field-full {
    grid-column: auto;
  }

  .clt-whatsapp-panel-head {
    grid-template-columns: 40px minmax(0, 1fr) 44px;
    gap: 10px;
  }

  .clt-whatsapp-brand-icon {
    width: 40px;
    height: 40px;
  }
}

@media (max-height: 680px) {
  .clt-whatsapp-panel-head,
  .clt-whatsapp-panel-body {
    padding-block: 14px;
  }

  .clt-whatsapp-field textarea {
    min-height: 64px;
  }
}

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

@media (max-width: 1100px) {
  .clt-product-grid,
  .clt-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clt-proof-grid,
  .clt-split,
  .clt-rfq-grid,
  .clt-contact-grid {
    grid-template-columns: 1fr;
  }

  .clt-category-hero-grid,
  .clt-category-faq-grid {
    grid-template-columns: 1fr;
  }

  .clt-category-hero-grid {
    gap: 42px;
  }

  .clt-category-hero-media {
    width: min(100%, 720px);
  }

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

  .clt-category-spec-grid > div {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .clt-category-spec-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .clt-category-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .clt-proof-copy {
    padding: 62px 40px;
  }

  .clt-split-reverse .clt-split-media {
    order: initial;
  }

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

  .clt-process-step:nth-child(3) {
    border-right: 0;
  }

  .clt-process-step:nth-child(n + 4) {
    border-top: 1px solid var(--clt-line);
  }
}

@media (max-width: 760px) {
  .clt-shell {
    width: min(100% - 28px, 1240px);
  }

  .clt-band {
    padding-block: 64px;
  }

  .clt-section-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .clt-section-head h2,
  .clt-split h2,
  .clt-proof-copy h2,
  .clt-rfq-copy h2 {
    font-size: 39px;
  }

  .clt-hero,
  .clt-hero-content {
    min-height: 670px;
  }

  .clt-hero::after {
    background: linear-gradient(180deg, rgba(255, 254, 251, 0.98) 0%, rgba(255, 254, 251, 0.9) 46%, rgba(255, 254, 251, 0.18) 78%, rgba(255, 254, 251, 0) 100%);
  }

  .clt-hero-media img {
    object-position: 63% center;
  }

  .clt-hero-content {
    justify-content: flex-start;
    padding-top: 62px;
  }

  .clt-hero-copy {
    width: 100%;
  }

  .clt-hero h1 {
    max-width: 520px;
    font-size: 48px;
  }

  .clt-hero-lead {
    max-width: 520px;
    font-size: 16px;
  }

  .clt-hero-proof {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

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

  .clt-metric {
    min-height: 74px;
    padding: 14px;
    border-bottom: 1px solid rgba(23, 24, 21, 0.12);
  }

  .clt-metric strong {
    font-size: 23px;
  }

  .clt-product-grid,
  .clt-catalog-grid,
  .clt-quote-grid,
  .clt-guide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .clt-proof-image,
  .clt-split-media,
  .clt-split-media img {
    min-height: 360px;
  }

  .clt-proof-copy {
    padding: 52px 24px;
  }

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

  .clt-process-step,
  .clt-process-step:nth-child(3) {
    min-height: 0;
    border-right: 0;
    border-top: 1px solid var(--clt-line);
  }

  .clt-rfq-form {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .clt-field-full,
  .clt-rfq-submit {
    grid-column: 1;
  }

  .clt-rfq-submit {
    align-items: stretch;
    flex-direction: column;
  }

  .clt-page-hero h1 {
    font-size: 43px;
  }

  .clt-category-hero-grid {
    min-height: 0;
    padding-block: 48px;
  }

  .clt-category-hero-copy h1,
  .clt-category-faq-grid h2,
  .clt-category-cta h2 {
    font-size: 39px;
  }

  .clt-category-proof {
    grid-template-columns: 1fr;
  }

  .clt-category-proof li,
  .clt-category-proof li:first-child {
    min-height: 0;
    padding: 14px 0;
    border-right: 0;
    border-bottom: 1px solid var(--clt-line);
  }

  .clt-category-proof li:last-child {
    border-bottom: 0;
  }

  .clt-category-cap-grid {
    grid-template-columns: 1fr;
  }

  .clt-category-cap-grid article {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid var(--clt-line);
  }

  .clt-category-cap-grid article:last-child {
    border-bottom: 0;
  }

  .clt-category-cap-grid h3 {
    margin-top: 22px;
  }
}

@media (max-width: 480px) {
  .clt-hero-actions,
  .clt-hero-actions .clt-button {
    width: 100%;
  }

  .clt-hero-proof,
  .clt-product-grid,
  .clt-catalog-grid,
  .clt-quote-grid,
  .clt-guide-grid {
    grid-template-columns: 1fr;
  }

  .clt-product-card-body {
    min-height: 112px;
  }

  .clt-split {
    gap: 38px;
  }

  .clt-category-spec-grid {
    grid-template-columns: 1fr;
  }

  .clt-category-spec-grid > div,
  .clt-category-spec-grid > div:nth-child(2) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }

  .clt-category-empty {
    padding: 28px 20px;
  }
}
