:root {
  --ink: #111111;
  --coal: #191817;
  --muted: #6f6a63;
  --line: #e6e0d8;
  --paper: #fbfaf8;
  --soft: #f2eee8;
  --gold: #b9985a;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.14);
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
  letter-spacing: 0;
}

body.search-open,
body.menu-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 250, 248, 0.94);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
}

.topline {
  height: 26px;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  text-transform: uppercase;
}

.nav-shell {
  min-height: 68px;
  display: grid;
  grid-template-columns: 180px 1fr auto;
  align-items: center;
  gap: 24px;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 0 28px;
}

.brand img {
  width: 158px;
  height: auto;
}

.nav-links,
.nav-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  justify-content: center;
  font-size: 12px;
  text-transform: uppercase;
}

.nav-links a,
.text-link {
  position: relative;
}

.nav-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 180ms ease;
}

.nav-links a:hover::after,
.text-link:hover::after {
  width: 100%;
}

.nav-actions {
  justify-content: end;
}

.button,
.nav-tool,
.filter-chip {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid var(--ink);
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button:hover,
.nav-tool:hover,
.filter-chip:hover {
  transform: translateY(-1px);
}

.button-dark,
.filter-chip.active {
  background: var(--ink);
  color: var(--white);
}

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

.button-ghost-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.75);
}

.button-outline {
  border-color: var(--line);
}

.text-link {
  display: inline-flex;
  width: max-content;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.text-link.light {
  color: var(--white);
}

.text-link.muted {
  color: var(--muted);
}

.language-switch {
  display: inline-flex;
  border: 1px solid var(--line);
}

.language-switch button {
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
}

.language-switch button.active {
  background: var(--ink);
  color: var(--white);
}

.icon-button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle {
  display: none;
  position: relative;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 1px;
  background: var(--ink);
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.hero,
.page-hero,
.category-hero {
  position: relative;
  min-height: calc(100svh - 94px);
  display: flex;
  align-items: end;
  isolation: isolate;
  background: var(--coal);
  color: var(--white);
  overflow: hidden;
}

.hero::before,
.page-hero::before,
.category-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-position, center);
  transform: scale(1.01);
}

.hero::after,
.page-hero::after,
.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.18) 54%, rgba(0, 0, 0, 0.06));
}

.hero-home {
  min-height: calc(92svh - 94px);
}

.hero-content,
.page-hero > div,
.category-hero > div {
  width: min(760px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 86px;
}

.hero-content {
  margin-left: max(24px, calc((100vw - var(--max)) / 2 + 28px));
}

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

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 11px;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-weight: 500;
  line-height: 1.02;
}

h1 {
  max-width: 860px;
  font-size: clamp(42px, 7vw, 92px);
}

h2 {
  font-size: clamp(30px, 4vw, 58px);
}

h3 {
  font-size: 20px;
  font-weight: 500;
}

.hero p:not(.eyebrow),
.page-hero p:not(.eyebrow),
.category-hero p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 17px;
}

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

.section,
.section-tight {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 100px 28px;
}

.section-tight {
  padding: 34px 28px 0;
}

.section-grid.two,
.editorial,
.product-details-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 56px;
  align-items: center;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

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

.editorial {
  width: min(100%, var(--max));
}

.editorial-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.editorial-copy {
  padding-right: min(6vw, 80px);
}

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

.section-heading {
  max-width: 780px;
  margin-bottom: 36px;
}

.code-grid,
.category-grid,
.product-grid {
  display: grid;
  gap: 1px;
}

.code-grid {
  grid-template-columns: repeat(3, 1fr);
  background: var(--line);
  border: 1px solid var(--line);
}

.code-grid article {
  min-height: 230px;
  padding: 34px;
  background: var(--paper);
}

.code-grid p,
.category-card p,
.product-card p,
.product-card small {
  color: var(--muted);
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
  background: var(--line);
}

.category-card,
.product-card {
  background: var(--paper);
}

.category-media,
.product-media {
  display: block;
  position: relative;
  overflow: hidden;
  background: var(--soft);
}

.category-media {
  aspect-ratio: 4 / 5;
}

.category-media img,
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.category-card:hover img,
.product-card:hover img {
  transform: scale(1.04);
}

.category-card > div {
  padding: 24px;
}

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

.product-card {
  min-width: 0;
}

.product-media {
  aspect-ratio: 1 / 0.78;
}

.product-media img {
  object-fit: contain;
  padding: 8%;
  background: #f7f6f4;
}

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

.product-card h3 {
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 18px;
}

.product-card small {
  display: block;
  min-height: 22px;
  font-size: 11px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}

.image-placeholder {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, rgba(185, 152, 90, 0.16), transparent 45%),
    var(--soft);
  color: var(--gold);
  text-transform: uppercase;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr minmax(320px, 420px);
  gap: 48px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.contact-band p {
  color: rgba(255, 255, 255, 0.74);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
}

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 56px max(28px, calc((100vw - var(--max)) / 2 + 28px));
  background: var(--coal);
  color: var(--white);
}

.site-footer img {
  width: 170px;
  filter: invert(1);
  margin-bottom: 20px;
}

.site-footer p,
.site-footer span,
.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px) auto;
  gap: 18px;
  align-items: center;
}

.filter-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-search,
.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  background: var(--white);
  padding: 0 14px;
}

.catalog-search input,
.search-input-wrap input {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  text-align: right;
}

.empty-state {
  text-align: center;
  color: var(--muted);
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: start center;
  padding: 7vh 24px;
  background: rgba(17, 17, 17, 0.58);
}

.search-overlay[hidden] {
  display: none;
}

.search-panel {
  position: relative;
  width: min(1080px, 100%);
  max-height: 86vh;
  overflow: hidden;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.search-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-size: 28px;
  line-height: 1;
}

.search-input-wrap {
  margin: 28px;
  margin-right: 76px;
}

.search-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
  min-height: 520px;
  border-top: 1px solid var(--line);
}

.search-results {
  overflow: auto;
  padding: 12px;
}

.search-result {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease;
}

.search-result:hover {
  background: var(--soft);
}

.search-thumb {
  aspect-ratio: 1.35 / 1;
  background: #f7f6f4;
}

.search-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-result small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.search-preview {
  display: grid;
  align-content: end;
  background: var(--soft);
  padding: 28px;
}

.search-preview img {
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-hero {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: 30px;
  align-items: stretch;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 72px 28px 42px;
}

.product-hero.layout-2 {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.82fr);
}

.product-hero.layout-2 .product-hero-copy {
  order: 2;
}

.product-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 560px;
}

.product-hero-copy p:not(.eyebrow) {
  color: var(--muted);
}

.product-hero-media {
  min-height: 560px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f7f6f4;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 7%;
  transition: transform 450ms ease;
}

.zoom-frame:hover img {
  transform: scale(1.08);
}

.product-gallery-section {
  padding-top: 0;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 1px;
  background: var(--line);
}

.gallery-thumbs button {
  aspect-ratio: 1 / 0.75;
  border: 0;
  background: #f7f6f4;
  cursor: pointer;
  padding: 8px;
}

.gallery-thumbs button.active {
  outline: 2px solid var(--gold);
  outline-offset: -2px;
}

.gallery-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.variant-list,
.spec-list {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.variant-row,
.spec-list > div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  background: var(--paper);
  padding: 14px;
}

.variant-thumb {
  aspect-ratio: 1 / 0.7;
  background: #f7f6f4;
}

.variant-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.variant-row span,
.spec-list dd {
  color: var(--muted);
}

.spec-list {
  margin: 0;
}

.spec-list > div {
  grid-template-columns: minmax(120px, 0.42fr) 1fr;
}

.spec-list dt {
  text-transform: uppercase;
  font-size: 11px;
  color: var(--muted);
}

.spec-list dd {
  margin: 0;
}

.b2b-panel {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  background: var(--ink);
  color: var(--white);
  width: 100%;
  max-width: none;
  padding-left: max(28px, calc((100vw - var(--max)) / 2 + 28px));
  padding-right: max(28px, calc((100vw - var(--max)) / 2 + 28px));
}

.b2b-panel p {
  color: rgba(255, 255, 255, 0.74);
}

.packaging-note {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: 150px auto auto;
  }

  .menu-toggle {
    display: block;
    justify-self: end;
  }

  .nav-links {
    position: fixed;
    inset: 94px 0 auto 0;
    display: none;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 24px 28px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
  }

  .nav-links.open {
    display: grid;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .nav-actions {
    gap: 8px;
  }

  .nav-actions .button {
    display: none;
  }

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

  .code-grid,
  .catalog-toolbar,
  .product-hero,
  .product-hero.layout-2,
  .product-details-grid,
  .search-layout {
    grid-template-columns: 1fr;
  }

  .product-hero.layout-2 .product-hero-copy {
    order: initial;
  }

  .search-preview {
    display: none;
  }
}

@media (max-width: 760px) {
  .topline {
    font-size: 9px;
  }

  .nav-shell {
    min-height: 62px;
    padding: 0 16px;
    grid-template-columns: 112px auto auto;
    gap: 10px;
  }

  .brand img {
    width: 108px;
  }

  .nav-actions {
    gap: 6px;
  }

  .nav-tool {
    width: 38px;
    min-height: 38px;
    padding: 0;
  }

  .nav-tool span:last-child {
    display: none;
  }

  .language-switch button {
    width: 30px;
    height: 36px;
    font-size: 10px;
  }

  .hero,
  .page-hero,
  .category-hero {
    min-height: 620px;
  }

  .hero-content,
  .page-hero > div,
  .category-hero > div {
    width: calc(100% - 32px);
    padding-bottom: 54px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  .section,
  .section-tight {
    padding: 64px 16px;
  }

  .section-tight {
    padding-top: 24px;
  }

  .section-grid.two,
  .editorial,
  .contact-band,
  .site-footer,
  .product-grid,
  .category-grid {
    grid-template-columns: 1fr;
  }

  .editorial-copy {
    padding-right: 0;
  }

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

  .product-card-copy {
    padding: 18px;
  }

  .contact-band,
  .b2b-panel {
    padding-left: 16px;
    padding-right: 16px;
  }

  .site-footer {
    padding: 44px 16px;
  }

  .search-overlay {
    padding: 0;
  }

  .search-panel {
    width: 100%;
    min-height: 100svh;
    max-height: none;
  }

  .search-input-wrap {
    margin: 72px 16px 16px;
  }

  .search-result {
    grid-template-columns: 86px 1fr;
  }

  .product-hero {
    padding: 42px 16px 24px;
  }

  .product-hero-copy,
  .product-hero-media {
    min-height: auto;
  }

  .product-hero-media {
    aspect-ratio: 1 / 0.85;
  }

  .gallery-thumbs {
    grid-template-columns: repeat(4, 1fr);
  }

  .variant-row,
  .spec-list > div {
    grid-template-columns: 82px 1fr;
  }

  .b2b-panel {
    display: grid;
  }
}

/* Round 2 visual refinement */
.hero-home {
  min-height: calc(96svh - 94px);
  background: #050505;
}

.hero-home::before {
  filter: saturate(0.9) brightness(0.68);
  opacity: 0.94;
  transform: scale(1.02);
}

.hero-home::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.38) 42%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 42%);
}

.category-hero::before,
.page-hero::before {
  filter: saturate(0.9) brightness(0.72);
}

.category-hero::after,
.page-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 54%, rgba(0, 0, 0, 0.12)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), transparent 48%);
}

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

.intro-band,
.catalog-list,
.featured-section,
.category-products,
.related-products {
  background: var(--white);
}

.code-grid,
.category-grid,
.product-grid,
.gallery-thumbs,
.variant-list,
.spec-list {
  gap: 18px;
  background: transparent;
  border: 0;
}

.code-grid article,
.category-card,
.product-card,
.variant-row,
.spec-list > div {
  background: var(--white);
  border: 1px solid var(--line);
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  align-items: stretch;
}

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  transition: border-color 180ms ease, box-shadow 220ms ease, transform 220ms ease;
}

.product-card:hover {
  border-color: rgba(185, 152, 90, 0.55);
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.08);
  transform: translateY(-2px);
}

.product-media {
  aspect-ratio: 1 / 0.86;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.product-image-stack {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
  background: #fff;
}

.product-media img,
.product-image-stack img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10%;
  background: #fff;
  opacity: 0;
  transform: scale(1);
  transition: opacity 520ms ease, transform 720ms ease;
}

.product-media .card-img-1 {
  opacity: 1;
}

.product-card:hover .product-media img {
  transform: scale(1.035);
}

.image-count-2:hover .card-img-1,
.image-count-3:hover .card-img-1 {
  animation: productCycleOne 6.8s infinite;
}

.image-count-2:hover .card-img-2 {
  animation: productCycleTwo 6.8s infinite;
}

.image-count-3:hover .card-img-2 {
  animation: productCycleTwoThree 8.8s infinite;
}

.image-count-3:hover .card-img-3 {
  animation: productCycleThree 8.8s infinite;
}

@keyframes productCycleOne {
  0%, 38%, 100% { opacity: 1; }
  48%, 88% { opacity: 0; }
}

@keyframes productCycleTwo {
  0%, 38%, 100% { opacity: 0; }
  48%, 88% { opacity: 1; }
}

@keyframes productCycleTwoThree {
  0%, 27%, 72%, 100% { opacity: 0; }
  36%, 63% { opacity: 1; }
}

@keyframes productCycleThree {
  0%, 58%, 100% { opacity: 0; }
  69%, 92% { opacity: 1; }
}

.media-hint {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 5px 8px;
  background: rgba(17, 17, 17, 0.82);
  color: #fff;
  font-size: 9px;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-card:hover .media-hint {
  opacity: 1;
}

.product-card-copy {
  position: relative;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 22px;
  background: #fff;
}

.product-card-description {
  min-height: 70px;
  margin-bottom: 14px;
  color: var(--muted);
}

.product-card-material {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: 12px;
  text-transform: uppercase;
}

.product-card-meta {
  display: grid;
  gap: 6px;
  margin-top: auto;
}

.product-card-meta span {
  color: var(--muted);
}

.product-card small {
  min-height: 0;
  line-height: 1.5;
}

.product-card-tooltip {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: calc(100% + 12px);
  z-index: 5;
  display: grid;
  gap: 6px;
  padding: 14px;
  background: rgba(17, 17, 17, 0.92);
  color: #fff;
  opacity: 0;
  pointer-events: none;
  transform: translateY(6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card-tooltip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.product-card:hover .product-card-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.tag {
  letter-spacing: 0.04em;
}

.contact-panel a,
.contact-panel span {
  color: rgba(255, 255, 255, 0.88);
  overflow-wrap: anywhere;
}

.contact-panel strong,
.site-footer strong {
  color: #fff;
  font-weight: 500;
}

.innova-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 132px;
  min-height: 48px;
  padding: 10px 16px;
  border: 1px solid rgba(185, 152, 90, 0.7);
  color: #fff;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

.site-footer {
  grid-template-columns: minmax(260px, 1.1fr) minmax(180px, 0.7fr) minmax(280px, 1fr);
  background: #0d0d0d;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 190px;
  min-height: 76px;
  margin-bottom: 20px;
  padding: 12px 18px;
  background: #fff;
}

.site-footer .footer-logo-box img {
  width: 160px;
  margin: 0;
  filter: none;
}

.site-footer .innova-wordmark {
  margin-bottom: 16px;
}

.site-footer address {
  color: rgba(255, 255, 255, 0.72);
  font-style: normal;
  margin-top: 10px;
}

.catalog-toolbar {
  border-bottom: 1px solid var(--line);
}

.category-context,
.packaging-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: center;
}

.category-context-media,
.packaging-showcase img {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
}

.category-context-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.category-stat-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.category-stat-row span {
  display: grid;
  gap: 4px;
  padding: 18px;
  border: 1px solid var(--line);
  color: var(--muted);
}

.category-stat-row strong {
  color: var(--ink);
  font-size: 26px;
  font-weight: 500;
}

.category-materials {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 28px;
  align-items: start;
  padding-top: 0;
  padding-bottom: 54px;
}

.category-materials h2 {
  font-size: clamp(30px, 3.4vw, 48px);
}

.category-products {
  padding-top: 54px;
}

.material-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-content: start;
}

.material-chip-list span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  padding: 0 12px;
  background: #fff;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
}

.product-hero {
  gap: 40px;
  align-items: start;
  padding-top: 52px;
  padding-bottom: 40px;
}

.product-hero-copy {
  min-height: auto;
}

.product-hero-media {
  min-height: 600px;
  background: #fff;
  border: 1px solid var(--line);
}

.product-hero-media img {
  background: #fff;
  padding: 6%;
}

.selected-variant-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 24px 0 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.selected-variant-card div {
  padding: 14px;
  background: #fff;
}

.selected-variant-card dt {
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
}

.selected-variant-card dd {
  margin: 4px 0 0;
}

.gallery-header {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 24px;
}

.gallery-header p:last-child {
  color: var(--muted);
}

.gallery-thumbs {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.gallery-thumbs button {
  background: #fff;
  border: 1px solid var(--line);
}

.product-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 52px;
  align-items: start;
}

.product-story-grid p {
  color: var(--muted);
}

.source-note {
  margin-top: 18px;
  font-size: 12px;
  text-transform: uppercase;
}

.variant-list {
  gap: 10px;
}

.variant-row {
  width: 100%;
  cursor: pointer;
  text-align: left;
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.variant-row:hover,
.variant-row.active {
  border-color: var(--gold);
  background: #fffdf9;
}

.variant-row.active {
  transform: translateX(4px);
}

.variant-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.variant-thumb {
  background: #fff;
  border: 1px solid var(--line);
}

.spec-list {
  gap: 10px;
}

.spec-list > div {
  padding: 16px;
}

.category-mini-panel {
  margin-top: 24px;
  padding: 22px;
  border: 1px solid var(--line);
  background: #fff;
}

.category-mini-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  text-transform: uppercase;
  font-size: 11px;
}

.category-mini-panel p {
  color: var(--muted);
}

.innova-b2b-panel {
  background: #0d0d0d;
}

.innova-contact-line {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.innova-contact-line a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.packaging-showcase {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

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

.packaging-showcase img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  padding: 14px;
}

.search-panel {
  background: #fff;
}

.search-result {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  border: 1px solid transparent;
}

.search-result:hover {
  border-color: var(--line);
}

.search-result-main {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 18px;
  align-items: center;
}

.search-mini-gallery {
  display: flex;
  gap: 8px;
  padding-left: 126px;
}

.search-mini-thumb {
  width: 44px;
  height: 34px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 2px;
  cursor: pointer;
}

.search-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.search-preview {
  background: #f8f7f5;
}

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

.search-preview small {
  color: var(--muted);
}

@media (hover: none) {
  .image-count-2 .card-img-1,
  .image-count-3 .card-img-1 {
    animation: productCycleOne 7.4s infinite;
  }

  .image-count-2 .card-img-2 {
    animation: productCycleTwo 7.4s infinite;
  }

  .image-count-3 .card-img-2 {
    animation: productCycleTwoThree 9.4s infinite;
  }

  .image-count-3 .card-img-3 {
    animation: productCycleThree 9.4s infinite;
  }
}

@media (max-width: 1100px) {
  .category-context,
  .category-materials,
  .packaging-showcase,
  .product-story-grid,
  .gallery-header {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .category-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  }
}

@media (max-width: 760px) {
  .hero-home {
    min-height: 680px;
  }

  .hero-home::before {
    background-position: 66% center;
  }

  .hero-home::after {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.74), rgba(0, 0, 0, 0.42)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.44), transparent 52%);
  }

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

  .product-grid,
  .category-grid,
  .gallery-thumbs {
    grid-template-columns: 1fr;
  }

  .product-media {
    aspect-ratio: 1 / 0.78;
  }

  .product-card-description {
    min-height: 0;
  }

  .product-card-tooltip,
  .media-hint {
    display: none;
  }

  .category-stat-row,
  .selected-variant-card,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .product-hero-copy {
    min-height: auto;
  }

  .product-hero-media {
    min-height: 360px;
  }

  .variant-row {
    transform: none;
  }

  .search-result-main {
    grid-template-columns: 82px 1fr;
  }

  .search-mini-gallery {
    padding-left: 100px;
  }
}

html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

.nav-shell,
.section,
.section-tight,
.product-hero {
  max-width: 100%;
}

.hero-home::before {
  background-position: var(--hero-position, center 34%);
}

.category-card .category-media,
.product-media,
.product-image-stack,
.search-thumb,
.search-preview {
  background: #f8f8f6;
}

.category-card[data-category="aspirational"] .category-media,
.category-card[data-category="fashion-drops"] .category-media {
  background: #f7f6f3;
}

.category-card[data-category="aspirational"] .category-media img,
.category-card[data-category="fashion-drops"] .category-media img {
  object-fit: contain;
  object-position: center;
  background: #f7f6f3;
}

.category-card[data-category="iconic"] .category-media img {
  object-position: center 48%;
}

.product-grid {
  grid-template-columns: repeat(auto-fill, minmax(330px, 1fr));
}

.featured-grid {
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
}

.product-card {
  background: #fff;
}

.product-media {
  aspect-ratio: 1.16 / 1;
}

.product-media img,
.product-image-stack img {
  padding: 6%;
  background: #f8f8f6;
}

.product-card-copy {
  padding: 24px;
}

.product-card-tooltip,
.media-hint {
  display: none;
}

.product-hero {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
  gap: 44px;
  padding-top: 54px;
}

.product-hero.layout-2 {
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1.28fr);
}

.product-hero-copy {
  justify-content: flex-start;
  min-height: auto;
  padding-top: 18px;
}

.product-hero-media {
  min-height: 640px;
  background: #f8f8f6;
  border: 1px solid var(--line);
}

.product-hero-media img {
  padding: 4%;
  background: #f8f8f6;
}

.variant-select-shell {
  position: relative;
  z-index: 12;
  margin-top: 22px;
}

.variant-select-toggle,
.variant-option {
  width: 100%;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) 28px;
  gap: 18px;
  align-items: center;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.variant-select-toggle {
  min-height: 112px;
  padding: 14px 16px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.variant-select-toggle:hover,
.variant-select-toggle[aria-expanded="true"] {
  border-color: var(--gold);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.08);
}

.variant-select-thumb,
.variant-option-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1.35 / 1;
  border: 1px solid var(--line);
  background: #f8f8f6;
  overflow: hidden;
}

.variant-select-thumb img,
.variant-option-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.variant-select-copy,
.variant-option-copy {
  min-width: 0;
}

.variant-select-copy span,
.variant-option-copy em {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.variant-select-copy strong,
.variant-option-copy strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.25;
}

.variant-select-copy small,
.variant-option-copy small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  overflow-wrap: anywhere;
}

.variant-select-icon {
  width: 12px;
  height: 12px;
  justify-self: center;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  transform: rotate(45deg) translateY(-3px);
}

.variant-select-toggle[aria-expanded="true"] .variant-select-icon {
  transform: rotate(225deg) translateY(-2px);
}

.variant-select-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 20;
  max-height: 390px;
  overflow: auto;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 26px 70px rgba(17, 17, 17, 0.16);
}

.variant-select-menu[hidden] {
  display: none;
}

.variant-option {
  grid-template-columns: 108px minmax(0, 1fr);
  padding: 14px 18px;
  border: 0;
  border-bottom: 1px solid var(--line);
  transition: background 160ms ease, box-shadow 160ms ease;
}

.variant-option:hover,
.variant-option.active {
  background: #fffdf8;
}

.variant-option.active {
  box-shadow: inset 3px 0 0 var(--gold);
}

.zoom-frame {
  position: relative;
  cursor: zoom-in;
  touch-action: pan-y;
}

.zoom-frame:hover img {
  transform: none;
}

.zoom-frame img {
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: transform 90ms ease-out;
  will-change: transform;
}

.zoom-frame.is-zooming img {
  transform: scale(2.85);
}

.zoom-frame.touch-zooming img {
  transform: scale(1.9);
  transform-origin: 50% 50%;
}

.product-gallery-section {
  padding-top: 26px;
  padding-bottom: 54px;
}

.gallery-thumbs {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 10px;
  background: transparent;
}

.gallery-thumbs button {
  border: 1px solid var(--line);
  background: #f8f8f6;
  aspect-ratio: 1.35 / 1;
}

.contact-band {
  background: #0d0d0d;
  color: #fff;
}

.contact-band h2,
.contact-band strong {
  color: #fff;
}

.contact-band p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-panel {
  color: #fff;
}

.site-footer p,
.site-footer span,
.site-footer a,
.site-footer address {
  color: rgba(255, 255, 255, 0.78);
}

@media (max-width: 1100px) {
  .product-grid,
  .featured-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .product-hero,
  .product-hero.layout-2 {
    grid-template-columns: 1fr;
  }

  .product-hero.layout-2 .product-hero-copy {
    order: initial;
  }

  .product-hero-media {
    min-height: 520px;
  }
}

@media (max-width: 760px) {
  .nav-shell {
    width: 100%;
    grid-template-columns: 108px 40px minmax(0, auto);
  }

  .nav-actions {
    min-width: 0;
  }

  .language-switch {
    flex: 0 0 auto;
  }

  .hero-actions,
  .card-actions {
    width: 100%;
  }

  .hero-actions .button,
  .card-actions .text-link {
    max-width: 100%;
  }

  .product-grid,
  .featured-grid,
  .category-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .product-hero {
    padding: 34px 16px 22px;
    gap: 24px;
  }

  .product-hero-media {
    min-height: auto;
    aspect-ratio: 1 / 0.82;
  }

  .variant-select-shell {
    margin-top: 18px;
  }

  .variant-select-toggle {
    grid-template-columns: 78px minmax(0, 1fr) 20px;
    min-height: 96px;
    gap: 12px;
    padding: 12px;
  }

  .variant-select-copy strong,
  .variant-option-copy strong {
    font-size: 15px;
  }

  .variant-select-menu {
    position: static;
    max-height: 320px;
    margin-top: 8px;
    box-shadow: none;
  }

  .variant-option {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 12px;
    padding: 12px;
  }

  .zoom-frame {
    cursor: default;
  }

  .zoom-frame.is-zooming img {
    transform: none;
  }

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

  .search-mini-gallery {
    max-width: 100%;
    overflow-x: auto;
    padding-left: 98px;
  }
}

/* Final round: favicon-ready layout, category cards, inventory panel */
.category-card .category-media {
  aspect-ratio: 4 / 5;
  min-height: 0;
  background: #f7f6f3;
}

.category-card .category-media img,
.category-card[data-category="aspirational"] .category-media img,
.category-card[data-category="fashion-drops"] .category-media img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  background: #f7f6f3;
}

.category-card[data-category="aspirational"] .category-media img {
  object-position: center 47%;
}

.category-card[data-category="fashion-drops"] .category-media img {
  object-position: center 44%;
}

.product-hero,
.product-hero.layout-2 {
  grid-template-columns: minmax(0, 1.58fr) minmax(360px, 0.86fr);
  gap: 34px;
  align-items: start;
}

.product-hero-copy {
  max-width: 620px;
  padding-top: 18px;
}

.product-hero-copy h1 {
  font-size: clamp(44px, 5vw, 76px);
}

.product-hero-copy > p:not(.eyebrow) {
  max-width: 560px;
  font-size: 15px;
}

.product-hero-media {
  min-height: 720px;
  overflow: hidden;
}

.product-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 2.5%;
}

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

.product-media {
  position: relative;
}

.inventory-badge,
.product-status-pill,
.inventory-admin-status,
.search-result em {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-size: 10px;
  font-style: normal;
  text-transform: uppercase;
}

.inventory-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 4;
}

.inventory-badge-soldout,
.product-status-soldout,
.inventory-soldout .inventory-admin-status {
  background: #111;
  border-color: #111;
  color: #fff;
}

.inventory-badge-lowstock,
.product-status-lowstock,
.inventory-lowstock .inventory-admin-status {
  background: #fff8e8;
  border-color: var(--gold);
  color: #765927;
}

.inventory-badge-hidden,
.product-status-hidden,
.inventory-hidden .inventory-admin-status {
  background: #f1efea;
  color: #5d5850;
}

.product-status-pill {
  margin-bottom: 16px;
}

.product-card.inventory-soldout .product-image-stack {
  opacity: 0.82;
}

.search-result em {
  margin-top: 5px;
}

.admin-access-overlay,
.inventory-admin-overlay {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 17, 17, 0.54);
}

.admin-access-overlay[hidden],
.inventory-admin-overlay[hidden] {
  display: none;
}

.admin-access-card,
.inventory-admin-panel {
  width: min(100%, 520px);
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
  box-shadow: 0 36px 90px rgba(17, 17, 17, 0.24);
}

.admin-access-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 34px;
}

.admin-access-close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.admin-access-card h2,
.inventory-admin-head h2 {
  font-size: clamp(28px, 4vw, 44px);
}

.admin-access-card input,
.inventory-admin-export {
  width: 100%;
  border: 1px solid var(--line);
  background: #fbfaf8;
  padding: 14px;
  color: var(--ink);
}

.admin-access-card small,
.inventory-admin-message {
  min-height: 20px;
  color: #8a2f1d;
}

.inventory-admin-panel {
  width: min(1180px, calc(100vw - 32px));
  max-height: calc(100svh - 32px);
  display: grid;
  grid-template-rows: auto auto auto minmax(0, 1fr) auto;
}

.inventory-admin-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.inventory-admin-head p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
}

.inventory-admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 16px 26px;
  border-bottom: 1px solid var(--line);
}

.inventory-admin-message {
  margin: 0;
  padding: 0 26px 12px;
}

.inventory-admin-list {
  overflow: auto;
  padding: 0 26px 26px;
}

.inventory-admin-row {
  display: grid;
  grid-template-columns: 20px 92px minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  min-height: 112px;
  border: 1px solid var(--line);
  margin-bottom: 10px;
  padding: 12px;
  background: #fff;
  cursor: pointer;
}

.inventory-admin-row:has(input:checked) {
  border-color: var(--gold);
  box-shadow: inset 3px 0 0 var(--gold);
}

.inventory-admin-thumb {
  display: grid;
  place-items: center;
  aspect-ratio: 1.35 / 1;
  background: #f8f8f6;
  border: 1px solid var(--line);
  overflow: hidden;
}

.inventory-admin-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

.inventory-admin-copy {
  min-width: 0;
}

.inventory-admin-copy strong,
.inventory-admin-copy small {
  display: block;
}

.inventory-admin-copy small {
  color: var(--muted);
  overflow-wrap: anywhere;
}

.inventory-admin-export {
  min-height: 180px;
  margin: 0;
  border-width: 1px 0 0;
  font-family: Consolas, monospace;
  font-size: 12px;
  resize: vertical;
}

@media (max-width: 1100px) {
  .product-hero,
  .product-hero.layout-2 {
    grid-template-columns: 1fr;
  }

  .product-hero-media {
    min-height: 560px;
  }
}

@media (max-width: 760px) {
  .category-card .category-media {
    aspect-ratio: 4 / 4.6;
  }

  .product-hero {
    padding-left: 16px;
    padding-right: 16px;
  }

  .product-hero-media {
    min-height: auto;
    aspect-ratio: 1 / 0.82;
  }

  .product-hero-copy h1 {
    font-size: clamp(42px, 14vw, 62px);
  }

  .inventory-admin-overlay,
  .admin-access-overlay {
    padding: 10px;
  }

  .inventory-admin-panel {
    width: calc(100vw - 20px);
    max-height: calc(100svh - 20px);
  }

  .inventory-admin-head,
  .inventory-admin-actions,
  .inventory-admin-list {
    padding-left: 14px;
    padding-right: 14px;
  }

  .inventory-admin-row {
    grid-template-columns: 20px 74px minmax(0, 1fr);
  }

  .inventory-admin-status {
    grid-column: 3;
  }
}
