:root {
  --ink: #161a1d;
  --muted: #5b646b;
  --line: #dce2e6;
  --paper: #f7f9f7;
  --white: #ffffff;
  --forest: #12352f;
  --green: #1f8a70;
  --lime: #c8ef62;
  --coral: #ff6b4a;
  --blue: #2364aa;
  --shadow: 0 24px 80px rgba(18, 53, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 40px rgba(18, 53, 47, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border: 0;
  border-radius: 0;
  color: transparent;
  background: url("./assets/logo-mark.svg") center / contain no-repeat;
  font-size: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.7vw, 26px);
  color: inherit;
  font-size: 13px;
  font-weight: 700;
}

.desktop-nav a,
.footer-links a {
  opacity: 0.84;
}

.nav-dropdown {
  position: relative;
}

.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-trigger svg {
  width: 15px;
  height: 15px;
}

.nav-menu {
  position: absolute;
  top: calc(100% + 16px);
  left: 50%;
  z-index: 30;
  display: grid;
  min-width: 270px;
  padding: 10px;
  border: 1px solid rgba(220, 226, 230, 0.82);
  border-radius: 8px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

.nav-menu::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 0;
  right: 0;
  height: 18px;
}

.nav-menu a {
  display: block;
  padding: 12px 13px;
  border-radius: 6px;
  font-weight: 800;
  opacity: 1;
}

.nav-menu a:hover {
  color: var(--forest);
  background: var(--paper);
}

.nav-dropdown:hover .nav-menu,
.nav-dropdown:focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.desktop-nav a:hover,
.footer-links a:hover {
  opacity: 1;
}

.header-cta,
.button,
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.header-cta {
  padding: 0 18px;
  color: var(--ink);
  background: var(--lime);
}

.button {
  padding: 0 20px;
}

.button svg,
.header-cta svg,
.menu-toggle svg,
.service-list svg,
.buyer-grid svg,
.capability-grid svg,
.package-grid svg,
.contact-methods svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.button.primary {
  color: var(--ink);
  background: var(--lime);
}

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.13);
}

.button.whatsapp {
  color: var(--white);
  background: var(--green);
}

.button.full {
  width: 100%;
}

.menu-toggle {
  display: none;
  width: 46px;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
}

.site-header.is-scrolled .menu-toggle {
  background: var(--paper);
}

.mobile-nav {
  position: fixed;
  top: 72px;
  left: 16px;
  right: 16px;
  z-index: 19;
  display: none;
  grid-template-columns: 1fr;
  gap: 4px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  max-height: calc(100vh - 92px);
  overflow-y: auto;
}

.mobile-nav.is-open {
  display: grid;
}

.mobile-nav a {
  padding: 13px 12px;
  border-radius: 6px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-nav a:hover {
  background: var(--paper);
}

.hero {
  position: relative;
  min-height: 92vh;
  overflow: hidden;
  color: var(--white);
}

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

.hero img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 18, 16, 0.86), rgba(10, 18, 16, 0.3)),
    linear-gradient(0deg, rgba(10, 18, 16, 0.55), rgba(10, 18, 16, 0));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  min-height: 92vh;
  width: min(760px, calc(100% - 36px));
  padding: 120px 0 78px;
  margin-left: clamp(18px, 7vw, 96px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-heading.light .eyebrow {
  color: var(--lime);
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(54px, 9vw, 118px);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 5vw, 58px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.42;
}

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

.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--forest);
  color: var(--white);
}

.stats-band div {
  min-height: 132px;
  padding: 28px clamp(20px, 3vw, 42px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.stats-band strong {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-size: 20px;
}

.stats-band span {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.45;
}

.seo-answer-bar {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.seo-answer-bar div {
  padding: 24px clamp(18px, 4vw, 46px);
  background: var(--white);
}

.seo-answer-bar span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.seo-answer-bar strong {
  display: block;
  color: var(--forest);
  font-size: 17px;
  line-height: 1.45;
}

.section,
.split-section,
.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: 34px;
}

.section-heading p:not(.eyebrow),
.split-copy > p,
.contact-copy > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.category-strip,
.custom-matrix {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -12px 0 28px;
}

.category-strip span,
.custom-matrix span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--forest);
  background: var(--white);
  font-size: 13px;
  font-weight: 900;
}

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

.product-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 54px rgba(18, 53, 47, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 62px rgba(18, 53, 47, 0.14);
}

.product-card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}

.product-card div {
  position: relative;
  z-index: 1;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.product-card div {
  padding: 22px;
}

.product-card p {
  color: var(--muted);
  line-height: 1.55;
}

.product-card span {
  display: inline-block;
  color: var(--green);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.buyer-section {
  background: var(--paper);
}

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

.buyer-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.buyer-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  color: var(--green);
}

.buyer-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.keyword-section {
  background: var(--white);
}

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

.keyword-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, var(--white), #f7f9f7);
  box-shadow: 0 14px 44px rgba(18, 53, 47, 0.07);
}

.keyword-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--forest);
  font-weight: 900;
  line-height: 1.3;
}

.keyword-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.keyword-grid a {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  color: var(--green);
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: center;
  background: var(--white);
}

.split-media img {
  width: 100%;
  min-height: 560px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.service-list {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.service-list > div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
}

.service-list svg {
  width: 42px;
  height: 42px;
  padding: 10px;
  border-radius: 8px;
  color: var(--forest);
  background: var(--lime);
}

.service-list p {
  color: var(--muted);
  line-height: 1.58;
}

.custom-matrix {
  margin: 28px 0 0;
}

.custom-matrix span {
  border-color: rgba(31, 138, 112, 0.28);
  background: #eff8f4;
}

.fabric-section,
.packaging-section,
.resources-section {
  background: var(--paper);
}

.fabric-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 18px;
}

.fabric-panel {
  min-height: 340px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.fabric-panel.dark {
  color: var(--white);
  background: var(--forest);
}

.fabric-panel ul {
  display: grid;
  gap: 14px;
  padding-left: 20px;
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.58;
}

.fabric-panel.dark ul {
  color: rgba(255, 255, 255, 0.78);
}

.fabric-specs {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.fabric-specs article {
  padding: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.fabric-specs span,
.resource-grid span {
  display: block;
  margin-bottom: 9px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fabric-specs strong {
  color: var(--forest);
  line-height: 1.45;
}

.service-band {
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(18, 53, 47, 0.96), rgba(35, 100, 170, 0.82)),
    url("./assets/images/retail-packaging-shipment.jpg");
  background-position: center;
  background-size: cover;
}

.section-heading.light p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.8);
}

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

.capability-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(14px);
}

.capability-grid svg {
  width: 38px;
  height: 38px;
  margin-bottom: 26px;
  color: var(--lime);
}

.capability-grid p {
  color: rgba(255, 255, 255, 0.76);
  line-height: 1.58;
}

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

.package-grid article,
.resource-grid article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.package-grid svg {
  width: 40px;
  height: 40px;
  margin-bottom: 26px;
  color: var(--green);
}

.package-grid p,
.resource-grid p,
.answer-grid p,
.quality-checks p,
.project-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.quality-section {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 76px);
  align-items: start;
  color: var(--white);
  background: var(--forest);
}

.quality-copy p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
}

.quality-checks {
  display: grid;
  gap: 14px;
}

.quality-checks article {
  display: grid;
  grid-template-columns: 54px 1fr;
  column-gap: 20px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.quality-checks span {
  grid-row: span 2;
  color: var(--lime);
  font-weight: 900;
}

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

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

.process article {
  min-height: 270px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.process span {
  display: block;
  margin-bottom: 42px;
  color: var(--coral);
  font-size: 14px;
  font-weight: 900;
}

.process p {
  color: var(--muted);
  line-height: 1.58;
}

.project-section {
  background: var(--white);
}

.visual-proof-section {
  background: var(--white);
}

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

.visual-proof-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(18, 53, 47, 0.08);
}

.visual-proof-grid img {
  width: 100%;
  height: clamp(220px, 22vw, 320px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 220ms ease;
}

.visual-proof-grid article:hover img {
  transform: scale(1.035);
}

.visual-proof-grid div {
  padding: 22px 24px 24px;
}

.visual-proof-grid span {
  display: block;
  margin-bottom: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.visual-proof-grid h3 {
  margin-bottom: 0;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.18;
}

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

.project-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.project-grid img {
  width: 100%;
  height: clamp(190px, 18vw, 240px);
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.project-grid div {
  padding: 24px;
}

.lookbook {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 10px;
  padding: 0 clamp(18px, 5vw, 72px) clamp(64px, 9vw, 118px);
}

.lookbook img {
  width: 100%;
  height: clamp(280px, 36vw, 520px);
  object-fit: cover;
  border-radius: 8px;
}

.aeo-section {
  background: var(--white);
}

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

.answer-grid article {
  padding: 26px;
  border-top: 4px solid var(--green);
  border-radius: 8px;
  background: var(--paper);
}

.faq-section {
  background: var(--paper);
}

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

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 72px;
  padding: 18px 22px;
  color: var(--forest);
  font-weight: 900;
  cursor: pointer;
}

.faq-list summary::after {
  content: "+";
  color: var(--green);
  font-size: 24px;
  line-height: 1;
}

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

.faq-list p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
  line-height: 1.62;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 560px);
  gap: clamp(30px, 7vw, 96px);
  align-items: start;
  background: var(--white);
}

.contact-methods {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-methods a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  color: var(--forest);
  font-weight: 900;
}

.quote-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 36px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.quote-form label {
  display: grid;
  gap: 8px;
  color: var(--forest);
  font-size: 13px;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: var(--white);
  font: inherit;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: 3px solid rgba(31, 138, 112, 0.2);
  border-color: var(--green);
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  padding: 36px clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.site-footer .brand {
  margin-bottom: 12px;
  color: var(--white);
}

.site-footer p {
  max-width: 520px;
  margin-bottom: 0;
  line-height: 1.55;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--white);
  font-weight: 800;
}

.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 18;
  display: grid;
  gap: 10px;
}

.floating-contact a {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: var(--green);
  box-shadow: 0 14px 34px rgba(18, 53, 47, 0.22);
}

.floating-contact a:last-child {
  background: var(--forest);
}

.floating-contact svg {
  width: 22px;
  height: 22px;
}

.product-page .site-header {
  color: var(--white);
}

.product-page .site-header.is-scrolled {
  color: var(--ink);
}

.product-hero {
  position: relative;
  display: grid;
  min-height: 64vh;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(18px, 5vw, 72px) 72px;
  color: var(--white);
  background: var(--forest);
}

.product-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.48;
}

.product-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 18, 16, 0.88), rgba(10, 18, 16, 0.24)),
    linear-gradient(0deg, rgba(10, 18, 16, 0.54), rgba(10, 18, 16, 0));
}

.product-hero-content {
  position: relative;
  z-index: 1;
  width: min(920px, 100%);
}

.product-hero h1 {
  margin-bottom: 18px;
  font-size: clamp(46px, 7vw, 92px);
}

.product-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.55;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  font-weight: 800;
}

.breadcrumb a {
  color: var(--lime);
}

.catalog-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.catalog-tabs a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  color: var(--white);
  font-weight: 900;
}

.catalog-tabs a[aria-current="page"],
.catalog-tabs a:hover {
  color: var(--ink);
  background: var(--lime);
  border-color: var(--lime);
}

.product-listing {
  background: var(--paper);
}

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

.sku-card {
  overflow: hidden;
  scroll-margin-top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 44px rgba(18, 53, 47, 0.08);
}

.sku-card img {
  width: 100%;
  height: clamp(220px, 24vw, 300px);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.sku-card div {
  padding: 22px;
}

.sku-card ul,
.product-detail-list {
  display: grid;
  gap: 9px;
  padding-left: 18px;
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-system {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(24px, 5vw, 68px);
  align-items: start;
  background: var(--white);
}

.product-system-panel {
  position: sticky;
  top: 102px;
}

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

.product-system-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-system-grid span {
  display: block;
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(36px, 6vw, 70px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--forest);
}

.product-cta p {
  max-width: 780px;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.6;
}

.product-cta h2 {
  margin-bottom: 10px;
}

.product-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

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

  .product-grid,
  .buyer-grid,
  .keyword-grid,
  .capability-grid,
  .visual-proof-grid,
  .fabric-specs,
  .package-grid,
  .process,
  .project-grid,
  .answer-grid,
  .resource-grid,
  .faq-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-band,
  .seo-answer-bar {
    grid-template-columns: repeat(2, 1fr);
  }

  .split-section,
  .contact-section,
  .quality-section,
  .product-system,
  .product-cta {
    grid-template-columns: 1fr;
  }

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

  .product-system-panel {
    position: static;
  }

  .product-cta-actions {
    justify-content: flex-start;
  }

  .split-media img {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    min-height: 88vh;
    margin-left: 18px;
    padding-top: 100px;
  }

  .hero h1 {
    font-size: 44px;
    line-height: 0.98;
  }

  .product-hero h1 {
    font-size: 40px;
    line-height: 1;
  }

  .hero-actions,
  .site-footer,
  .footer-links {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .stats-band,
  .seo-answer-bar,
  .product-grid,
  .buyer-grid,
  .keyword-grid,
  .capability-grid,
  .sku-grid,
  .product-system-grid,
  .fabric-layout,
  .fabric-specs,
  .package-grid,
  .process,
  .visual-proof-grid,
  .project-grid,
  .answer-grid,
  .resource-grid,
  .lookbook,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .stats-band div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .split-media img {
    min-height: 320px;
  }

  .capability-grid article,
  .process article {
    min-height: auto;
  }

  .quality-checks article {
    grid-template-columns: 1fr;
  }

  .quality-checks span {
    grid-row: auto;
    margin-bottom: 12px;
  }

  .lookbook img {
    height: 260px;
  }

  .visual-proof-grid img {
    height: 240px;
  }

  .floating-contact {
    right: 12px;
    bottom: 12px;
  }
}
