:root {
  --warm-white: #f6f1e9;
  --paper: #fffaf2;
  --black: #11100e;
  --muted: #746f67;
  --line: rgba(17, 16, 14, 0.12);
  --glass: rgba(255, 250, 242, 0.54);
  --gold: #b89a65;
  --gold-soft: #d6c49f;
  --shadow: 0 28px 80px rgba(17, 16, 14, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--warm-white);
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: 0.16;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 20;
  width: min(1180px, calc(100% - 32px));
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px 0 18px;
  transform: translateX(-50%);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(246, 241, 233, 0.62);
  box-shadow: 0 18px 60px rgba(17, 16, 14, 0.08);
  backdrop-filter: blur(24px) saturate(120%);
}

.brand,
.nav-links,
.header-actions {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.brand-stack {
  display: flex;
  flex-direction: column;
  gap: 2px;
  line-height: 1;
}

.brand-stack strong {
  font-size: 12px;
  letter-spacing: 0.13em;
}

.brand-stack small {
  color: rgba(17, 16, 14, 0.58);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-mark {
  width: 18px;
  height: 18px;
  border: 1px solid var(--black);
  border-radius: 50%;
  box-shadow: inset 0 0 0 5px var(--gold-soft);
}

.nav-links {
  gap: 28px;
  color: rgba(17, 16, 14, 0.68);
  font-size: 13px;
  font-weight: 600;
}

.nav-links a {
  transition: color 220ms ease;
}

.nav-links a:hover {
  color: var(--black);
}

.header-actions {
  justify-content: flex-end;
  gap: 10px;
}

.locale {
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  color: rgba(17, 16, 14, 0.72);
  cursor: pointer;
}

.glass-button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.48);
  box-shadow: 0 18px 44px rgba(17, 16, 14, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.64);
  backdrop-filter: blur(18px);
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.glass-button::after,
.category-card::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -65%;
  width: 42%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.72), transparent);
  transform: skewX(-18deg);
  transition: left 700ms ease;
  z-index: -1;
}

.glass-button:hover,
.category-card:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 32px 86px rgba(17, 16, 14, 0.18);
}

.glass-button:hover::after,
.category-card:hover::after {
  left: 128%;
}

.glass-button.compact {
  min-height: 38px;
  padding: 0 16px;
  font-size: 13px;
}

.glass-button.dark {
  border-color: rgba(17, 16, 14, 0.82);
  background: rgba(17, 16, 14, 0.92);
  color: var(--paper);
}

.text-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  color: rgba(17, 16, 14, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.text-link::after {
  content: "";
  width: 42px;
  height: 1px;
  margin-left: 14px;
  background: var(--gold);
  transform-origin: left;
  transition: transform 220ms ease;
}

.text-link:hover::after {
  transform: scaleX(1.28);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 120px clamp(20px, 6vw, 84px) 42px;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 108%;
  object-fit: cover;
  object-position: center;
  transform: translate3d(0, 0, 0) scale(1.02);
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(246, 241, 233, 0.92), rgba(246, 241, 233, 0.68) 34%, rgba(246, 241, 233, 0.1) 68%),
    linear-gradient(0deg, rgba(246, 241, 233, 0.76), transparent 34%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  padding-top: 38px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: Newsreader, Georgia, serif;
  font-weight: 600;
  line-height: 0.98;
}

h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(72px, 13vw, 184px);
}

.hero-copy {
  max-width: 520px;
  margin-bottom: 34px;
  color: rgba(17, 16, 14, 0.72);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.hero-metrics {
  position: absolute;
  right: clamp(20px, 6vw, 84px);
  bottom: 42px;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(96px, 1fr));
  gap: 1px;
  width: min(480px, calc(100% - 40px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  background: rgba(246, 241, 233, 0.54);
  backdrop-filter: blur(22px);
}

.hero-metrics div {
  min-height: 104px;
  display: grid;
  align-content: center;
  padding: 18px;
  background: rgba(255, 250, 242, 0.34);
}

.metric-value {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 800;
  line-height: 1.1;
}

.metric-label {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
}

.category-band,
.catalog-products,
.editorial-section,
.showcase,
.buyer-panel {
  padding: clamp(84px, 12vw, 160px) clamp(20px, 6vw, 84px);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 40px;
  align-items: end;
  max-width: 1180px;
  margin: 0 auto 42px;
}

.section-heading h2,
.editorial-copy h2,
.showcase-copy h2,
.buyer-copy h2 {
  margin-bottom: 0;
  font-size: clamp(44px, 7vw, 96px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  max-width: 1360px;
  margin: 0 auto;
}

.category-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 460px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: var(--radius);
  background: var(--glass);
  box-shadow: 0 20px 70px rgba(17, 16, 14, 0.09);
  backdrop-filter: blur(24px) saturate(116%);
  cursor: pointer;
  transition: transform 320ms ease, box-shadow 320ms ease;
}

.category-card:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.card-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  opacity: 0.88;
}

.card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(17, 16, 14, 0.58), transparent 56%);
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 72% center;
  filter: saturate(0.82) contrast(0.98);
  transform: scale(1.05);
  transition: transform 700ms ease, filter 320ms ease;
}

.position-two img {
  object-position: 55% center;
}

.position-three img {
  object-position: 82% center;
}

.position-four img {
  object-position: 63% bottom;
}

.category-card:hover .card-media img {
  filter: saturate(0.96) contrast(1.02);
  transform: scale(1.1);
}

.catalog-products {
  background: var(--paper);
}

.catalog-toolbar {
  max-width: 1360px;
  margin: 0 auto 24px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.catalog-search {
  max-width: 1360px;
  margin: -16px auto 20px;
}

.catalog-search label {
  display: block;
  margin-bottom: 10px;
  color: rgba(17, 16, 14, 0.62);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-control {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.search-control input {
  min-height: 48px;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.62);
  color: var(--black);
  padding: 0 16px;
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.58);
}

.search-control input:focus {
  border-color: rgba(184, 154, 101, 0.62);
  box-shadow: 0 0 0 4px rgba(184, 154, 101, 0.12);
}

.category-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-bottom: 6px;
}

.filter-pill {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 233, 0.58);
  color: rgba(17, 16, 14, 0.68);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.filter-pill:hover,
.filter-pill.active {
  border-color: rgba(17, 16, 14, 0.78);
  background: var(--black);
  color: var(--paper);
}

.filter-pill:hover {
  transform: translateY(-1px);
}

.catalog-count {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.product-grid {
  max-width: 1360px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.catalog-end {
  max-width: 1360px;
  margin: 56px auto 0;
  display: grid;
  justify-items: center;
  gap: 22px;
}

.catalog-end span {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(17, 16, 14, 0.12),
    rgba(184, 154, 101, 0.34),
    rgba(17, 16, 14, 0.12),
    transparent
  );
}

.catalog-end .glass-button {
  min-width: 210px;
  justify-content: center;
}

.product-card {
  overflow: visible;
  border: 1px solid rgba(17, 16, 14, 0.08);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.68);
  box-shadow: 0 18px 54px rgba(17, 16, 14, 0.06);
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.product-card:hover {
  transform: translateY(-4px);
  border-color: rgba(184, 154, 101, 0.38);
  box-shadow: 0 28px 72px rgba(17, 16, 14, 0.12);
}

.product-image-link {
  display: grid;
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: var(--radius) var(--radius) 0 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  font: inherit;
  text-align: inherit;
  -webkit-touch-callout: none;
  user-select: none;
}

.product-media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: visible;
  background: #efe8dc;
  -webkit-touch-callout: none;
  user-select: none;
}

.product-badge {
  position: absolute;
  z-index: 6;
  top: -11px;
  right: -10px;
  max-width: calc(100% - 20px);
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 6px;
  background: linear-gradient(135deg, #cf2f25 0%, #a71916 58%, #f0c268 100%);
  box-shadow: 0 16px 34px rgba(122, 28, 20, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.55);
  color: #fffaf0;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
  transform: rotate(6deg);
  transform-origin: center;
}

.product-badge::before,
.product-badge::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.88);
  transform: translateY(-50%);
}

.product-badge::before {
  left: -4px;
}

.product-badge::after {
  right: -4px;
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(17, 16, 14, 0.48);
  backdrop-filter: blur(20px) saturate(116%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms cubic-bezier(0.22, 1, 0.36, 1), backdrop-filter 380ms ease;
}

.product-lightbox.open {
  opacity: 1;
  pointer-events: auto;
}

.product-lightbox figure {
  position: relative;
  width: min(86vw, 760px);
  max-height: 88vh;
  margin: 0;
  display: grid;
  gap: 12px;
  justify-items: center;
  opacity: 0;
  transform: translate3d(var(--origin-x, 0), var(--origin-y, 18px), 0) scale(var(--origin-scale, 0.86));
  transform-origin: center;
  transition: transform 560ms cubic-bezier(0.22, 1, 0.36, 1), opacity 240ms ease;
  will-change: transform, opacity;
}

.product-lightbox.open figure {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-lightbox-frame {
  position: relative;
  display: inline-grid;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
  -webkit-touch-callout: none;
  user-select: none;
  background: rgba(255, 250, 242, 0.08);
}

.product-lightbox img {
  position: relative;
  z-index: 1;
  max-width: 100%;
  max-height: min(76vh, 860px);
  object-fit: contain;
  border-radius: inherit;
  -webkit-user-drag: none;
  user-select: none;
  opacity: 1;
  transform: scale(1);
  transition: opacity 260ms ease, transform 420ms cubic-bezier(0.22, 1, 0.36, 1), filter 260ms ease;
  will-change: opacity, transform, filter;
}

.product-lightbox.loading img {
  filter: blur(1.4px) saturate(0.98);
  opacity: 0.9;
  transform: scale(1.002);
}

.product-lightbox.image-ready img {
  filter: none;
  opacity: 1;
  transform: scale(1);
}

.product-lightbox-loader {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity 180ms ease;
}

.product-lightbox-loader::after {
  content: "";
  width: 34px;
  height: 34px;
  border: 2px solid rgba(255, 250, 242, 0.38);
  border-top-color: rgba(255, 250, 242, 0.92);
  border-radius: 999px;
  animation: lightboxSpin 780ms linear infinite;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.24));
}

.product-lightbox.delayed-loading .product-lightbox-loader {
  opacity: 1;
}

@keyframes lightboxSpin {
  to {
    transform: rotate(360deg);
  }
}

.image-save-guard {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: block;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
  touch-action: manipulation;
}

.lightbox-watermark {
  position: absolute;
  inset: -18%;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(210px, 1fr));
  gap: 38px 24px;
  align-items: center;
  justify-items: center;
  pointer-events: none;
  transform: rotate(-24deg);
  opacity: 0.46;
}

.lightbox-watermark span {
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(13px, 3.2vw, 28px);
  font-weight: 900;
  letter-spacing: 0;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  -webkit-text-stroke: 1px rgba(17, 16, 14, 0.34);
  white-space: nowrap;
}

.product-lightbox-contact {
  width: min(100%, 760px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(255, 250, 242, 0.14);
  color: rgba(255, 250, 242, 0.94);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px) saturate(122%);
}

.product-lightbox-contact strong {
  color: #fffaf2;
}

.product-lightbox-contact span {
  color: rgba(255, 250, 242, 0.84);
  text-align: right;
}

.product-lightbox figcaption {
  color: rgba(255, 250, 242, 0.9);
  font-size: 14px;
  font-weight: 800;
  text-align: center;
}

@media (max-width: 560px) {
  .product-lightbox-contact {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding: 10px 12px;
    font-size: 13px;
  }

  .product-lightbox-contact span {
    text-align: left;
  }
}

.product-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 101;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  background: rgba(255, 250, 242, 0.78);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.72);
  color: var(--black);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(14px);
}

body.lightbox-open {
  overflow: hidden;
}

.product-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  transition: transform 520ms ease, filter 240ms ease;
  -webkit-user-drag: none;
  user-select: none;
}

.product-card:hover .product-media img {
  filter: saturate(1.02) contrast(1.02);
  transform: scale(1.055);
}

.product-info {
  min-height: 196px;
  display: grid;
  grid-template-rows: minmax(48px, auto) 22px 30px 42px;
  gap: 9px;
  padding: 18px;
}

.product-info h3 {
  margin: 0;
  color: var(--black);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.28;
  align-self: start;
}

.product-info strong {
  color: rgba(17, 16, 14, 0.76);
  font-size: 16px;
  align-self: center;
}

.product-availability {
  margin: 0;
  color: rgba(17, 16, 14, 0.6);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.product-availability b {
  display: block;
  color: var(--gold);
  font-weight: 900;
}

.product-availability span {
  display: block;
  margin-top: 2px;
}

.product-whatsapp {
  position: relative;
  isolation: isolate;
  display: flex;
  width: 100%;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background: rgba(255, 250, 242, 0.48);
  box-shadow: 0 12px 34px rgba(17, 16, 14, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px) saturate(120%);
  color: var(--black);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.12;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-whatsapp::after {
  content: "";
  position: absolute;
  inset: -45% auto -45% -65%;
  width: 46%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.78), transparent);
  transform: skewX(-18deg);
  transition: left 620ms ease;
  z-index: -1;
}

.product-whatsapp:hover {
  transform: translateY(-2px);
  border-color: rgba(184, 154, 101, 0.36);
  box-shadow: 0 18px 44px rgba(17, 16, 14, 0.12);
}

.product-whatsapp:hover::after {
  left: 126%;
}

.card-copy {
  min-height: 194px;
  padding: 24px;
  color: var(--paper);
}

.card-copy span {
  display: block;
  margin-bottom: 20px;
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 700;
}

.card-copy h3,
.capability-item h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.card-copy p,
.capability-item p,
.editorial-copy p,
.showcase-copy p {
  margin-bottom: 0;
  color: rgba(255, 250, 242, 0.76);
  line-height: 1.65;
}

.editorial-section {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
  background: var(--black);
  color: var(--paper);
}

.editorial-copy {
  position: sticky;
  top: 124px;
}

.editorial-copy p:last-child {
  max-width: 620px;
  margin-top: 28px;
  color: rgba(255, 250, 242, 0.7);
  font-size: 18px;
}

.capability-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 242, 0.12);
  border-radius: var(--radius);
}

.capability-item {
  min-height: 210px;
  padding: 34px;
  background: rgba(255, 250, 242, 0.055);
}

.capability-item span {
  display: block;
  width: 36px;
  height: 2px;
  margin-bottom: 42px;
  background: var(--gold);
}

.showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: center;
}

.showcase-image-wrap {
  overflow: hidden;
  min-height: min(72vw, 780px);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.showcase-image {
  width: 100%;
  height: 100%;
  min-height: min(72vw, 780px);
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.showcase-copy h2 {
  margin-bottom: 28px;
  font-size: clamp(42px, 4.6vw, 60px);
}

.buyer-copy h2 {
  font-size: clamp(42px, 4.8vw, 64px);
}

.showcase-copy .eyebrow,
.buyer-copy .eyebrow {
  color: var(--gold);
}

.product-lines {
  display: grid;
  margin-top: 54px;
  border-top: 1px solid var(--line);
}

.product-lines a {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-bottom: 1px solid var(--line);
  color: rgba(17, 16, 14, 0.78);
  transition: padding 220ms ease, color 220ms ease;
}

.product-lines a:hover {
  padding-left: 12px;
  color: var(--black);
}

.product-lines strong {
  color: var(--gold);
  font-size: 14px;
  white-space: nowrap;
}

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

.quote-banner {
  position: relative;
  isolation: isolate;
  max-width: 1180px;
  min-height: 0;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: var(--radius);
  background: #ead6bd;
  box-shadow: var(--shadow);
}

.quote-banner img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.quote-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(255, 250, 242, 0.92), rgba(255, 250, 242, 0.74) 42%, rgba(255, 250, 242, 0.08) 74%);
}

.quote-content {
  width: min(480px, 58%);
  padding: clamp(28px, 5vw, 58px);
}

.quote-content h2 {
  margin-bottom: 16px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.98;
}

.quote-content p {
  margin-bottom: 22px;
  color: rgba(17, 16, 14, 0.72);
  font-size: 17px;
  line-height: 1.5;
}

.quote-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border-radius: var(--radius);
  background: rgba(17, 16, 14, 0.94);
  color: var(--paper);
  font-weight: 800;
  box-shadow: 0 18px 44px rgba(17, 16, 14, 0.16);
}

.access-form {
  display: grid;
  gap: 14px;
}

.access-form label {
  display: grid;
  gap: 10px;
  color: rgba(17, 16, 14, 0.66);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.access-form input,
.access-form select {
  width: 100%;
  min-height: 58px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(246, 241, 233, 0.72);
  color: var(--black);
  padding: 0 16px;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.access-form input:focus,
.access-form select:focus {
  border-color: rgba(184, 154, 101, 0.7);
  box-shadow: 0 0 0 4px rgba(184, 154, 101, 0.12);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 6vw, 84px);
  border-top: 1px solid var(--line);
  color: rgba(17, 16, 14, 0.58);
  font-size: 13px;
}

.reveal {
  opacity: 0;
  filter: blur(18px);
  transform: translateY(28px);
  transition: opacity 900ms ease, filter 900ms ease, transform 900ms ease;
}

.reveal.visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.floating {
  animation: float 8s ease-in-out infinite alternate;
}

@keyframes float {
  from {
    transform: scale(1.02) translate3d(0, -8px, 0);
  }
  to {
    transform: scale(1.035) translate3d(0, 12px, 0);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    align-items: end;
    padding-bottom: 190px;
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(246, 241, 233, 0.96), rgba(246, 241, 233, 0.62) 48%, rgba(246, 241, 233, 0.12)),
      linear-gradient(90deg, rgba(246, 241, 233, 0.66), transparent);
  }

  .hero-metrics {
    left: 20px;
    right: 20px;
    bottom: 28px;
    width: auto;
  }

  .section-heading,
  .editorial-section,
  .showcase,
  .buyer-panel {
    grid-template-columns: 1fr;
  }

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

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

  .editorial-copy {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 10px;
    width: calc(100% - 24px);
    height: 54px;
    padding: 0 10px 0 12px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
    font-size: 13px;
  }

  .brand .brand-stack {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand-stack strong,
  .brand-stack small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .locale {
    display: none;
  }

  .glass-button.compact {
    min-height: 36px;
    padding: 0 14px;
  }

  .hero {
    min-height: 100svh;
    align-items: end;
    padding: 96px 18px 112px;
  }

  .hero-image {
    height: 100%;
    object-position: 64% center;
    transform: translate3d(0, 0, 0) scale(1.05);
  }

  .hero-vignette {
    background:
      linear-gradient(0deg, rgba(246, 241, 233, 0.98) 0%, rgba(246, 241, 233, 0.88) 28%, rgba(246, 241, 233, 0.36) 62%, rgba(246, 241, 233, 0.08) 100%),
      linear-gradient(90deg, rgba(246, 241, 233, 0.82), rgba(246, 241, 233, 0.18) 72%);
  }

  .hero-content {
    width: 100%;
    padding-top: 0;
    padding-bottom: 12px;
  }

  h1 {
    max-width: 360px;
    margin-bottom: 18px;
    font-size: clamp(54px, 17vw, 78px);
    line-height: 0.98;
  }

  .hero-copy {
    max-width: 340px;
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.5;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 8px;
    width: 100%;
  }

  .hero-actions .glass-button,
  .hero-actions .text-link {
    min-height: 44px;
    justify-content: center;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .text-link::after {
    display: none;
  }

  .hero-metrics {
    left: 18px;
    right: 18px;
    bottom: 14px;
    width: auto;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    backdrop-filter: blur(18px) saturate(120%);
  }

  .hero-metrics div {
    min-height: 78px;
    padding: 11px 12px;
    align-content: start;
  }

  .metric-value {
    font-size: 13px;
    line-height: 1.15;
  }

  .metric-label {
    margin-top: 6px;
    font-size: 9.5px;
    line-height: 1.18;
  }

  .category-band,
  .catalog-products,
  .editorial-section,
  .showcase,
  .buyer-panel {
    padding: 74px 18px;
  }

  .category-band {
    padding-top: 44px;
    padding-bottom: 36px;
  }

  .catalog-products {
    padding-top: 32px;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 22px;
  }

  .category-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .category-card {
    min-height: 190px;
  }

  .card-copy {
    min-height: 112px;
    padding: 15px 22px;
  }

  .card-copy span {
    margin-bottom: 8px;
  }

  .card-copy h3 {
    margin-bottom: 6px;
    font-size: 22px;
  }

  .card-copy p {
    max-width: 310px;
    font-size: 14px;
    line-height: 1.35;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
    margin-top: 0;
    margin-bottom: 18px;
  }

  .catalog-search {
    margin: -10px auto 16px;
  }

  .search-control {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .search-control input,
  .search-control .glass-button {
    min-height: 44px;
  }

  .catalog-count {
    order: -1;
  }

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

  .catalog-end {
    margin-top: 42px;
    gap: 18px;
  }

  .catalog-end .glass-button {
    width: 100%;
    max-width: 260px;
  }

  .product-info {
    min-height: 178px;
    grid-template-rows: minmax(44px, auto) 22px 30px 42px;
    gap: 8px;
    padding: 14px;
  }

  .product-info h3 {
    font-size: 14px;
  }

  .product-info strong {
    font-size: 15px;
  }

  .product-availability {
    font-size: 11px;
  }

  .product-availability b {
    white-space: nowrap;
  }

  .section-heading h2,
  .editorial-copy h2,
  .showcase-copy h2,
  .buyer-copy h2 {
    font-size: clamp(38px, 12vw, 56px);
    line-height: 1;
  }

  .editorial-copy p:last-child {
    margin-top: 20px;
    font-size: 16px;
  }

  .capability-item {
    min-height: 176px;
    padding: 26px;
  }

  .capability-item span {
    margin-bottom: 30px;
  }

  .showcase-image-wrap,
  .showcase-image {
    min-height: 430px;
  }

  .product-lines {
    margin-top: 34px;
  }

  .product-lines a {
    min-height: 76px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }

  .access-form input,
  .access-form select,
  .access-form .glass-button {
    min-height: 54px;
  }

  .site-footer {
    display: grid;
    padding: 26px 18px;
    gap: 10px;
  }

  .quote-banner {
    min-height: 0;
  }

  .quote-banner::after {
    background: linear-gradient(0deg, rgba(255, 250, 242, 0.95), rgba(255, 250, 242, 0.82) 48%, rgba(255, 250, 242, 0.08));
  }

  .quote-banner img {
    object-position: 62% center;
  }

  .quote-content {
    width: 100%;
    padding: 30px 28px 34px;
  }

  .quote-content h2 {
    max-width: 310px;
    font-size: clamp(38px, 12vw, 54px);
  }

  .quote-content p {
    max-width: 310px;
    font-size: 15px;
  }

  .quote-button {
    width: min(100%, 300px);
  }
}

@media (max-width: 380px) {
  .brand span:last-child {
    max-width: 128px;
  }

  h1 {
    font-size: clamp(50px, 16.5vw, 68px);
  }

  .hero-actions {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

  .hero {
    padding-bottom: 112px;
  }
}

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