:root {
  --paper: #fbf8f1;
  --paper-2: #f4efe6;
  --panel: #fffdf8;
  --ink: #191714;
  --muted: #6f685d;
  --line: #ded5c8;
  --line-dark: #c9bba9;
  --bronze: #8d683d;
  --coffee: #33261c;
  --black: #10100e;
  --white: #ffffff;
  --focus: #8d683d;
  --shadow: 0 18px 48px rgba(31, 25, 18, 0.09);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --top-offset: 144px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 20% 0%, rgba(141, 104, 61, 0.08), transparent 28rem),
    linear-gradient(180deg, var(--paper), #f8f4ed 62%, var(--paper));
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(25, 23, 20, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 23, 20, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 3px;
}

.section-pad {
  padding: 84px clamp(18px, 4vw, 64px);
}

.button,
button.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--ink);
  border-radius: 0;
  padding: 12px 20px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button.secondary {
  border-color: var(--line-dark);
  background: rgba(255, 253, 248, 0.72);
}

.button.primary:hover {
  background: var(--bronze);
  border-color: var(--bronze);
}

.button.secondary:hover {
  background: var(--paper-2);
  border-color: var(--bronze);
}

.commerce-topbar,
.promise-bar,
.site-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 50;
}

.commerce-topbar {
  top: 0;
  min-height: 32px;
  display: flex;
  justify-content: center;
  gap: 28px;
  padding: 7px 16px;
  background: var(--black);
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.promise-bar {
  top: 32px;
  min-height: 36px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.94);
  backdrop-filter: blur(16px);
}

.promise-bar span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 8px 14px;
  border-right: 1px solid var(--line);
  color: var(--coffee);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: center;
  text-transform: uppercase;
}

.promise-bar span:last-child {
  border-right: 0;
}

.scroll-progress {
  position: fixed;
  top: 68px;
  left: 0;
  z-index: 70;
  width: 0;
  height: 2px;
  background: var(--bronze);
}

.cursor-light {
  position: fixed;
  z-index: 1;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(141, 104, 61, 0.14), transparent 68%);
  transition: opacity 180ms ease;
}

body.has-pointer .cursor-light {
  opacity: 1;
}

.site-header {
  top: 68px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid rgba(222, 213, 200, 0.82);
  background: rgba(251, 248, 241, 0.92);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 32px rgba(24, 20, 16, 0.08);
  background: rgba(251, 248, 241, 0.97);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--black);
  transition: transform 360ms ease;
}

.brand:hover .brand-mark {
  transform: rotate(-2deg) scale(1.04);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: logoReveal 900ms ease both;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy > span {
  font-family: var(--serif);
  font-size: 1.22rem;
  line-height: 1;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav a {
  padding: 10px 12px;
  border-bottom: 1px solid transparent;
  color: var(--coffee);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.nav a:hover,
.nav a.is-active {
  border-color: var(--bronze);
  color: var(--black);
}

.nav .nav-whatsapp {
  margin-left: 8px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.76);
}

.language-switcher {
  position: relative;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
}

.language-switcher summary {
  min-width: 112px;
  cursor: pointer;
  list-style: none;
  padding: 10px 28px 10px 12px;
  color: var(--coffee);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.language-switcher summary::-webkit-details-marker {
  display: none;
}

.language-switcher summary::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.language-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 30;
  width: 190px;
  display: grid;
  padding: 6px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.98);
  box-shadow: 0 22px 45px rgba(22, 18, 12, 0.14);
}

.language-menu a {
  padding: 10px 11px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.03em;
}

.language-menu a.is-active,
.language-menu a:hover {
  background: var(--black);
  color: var(--paper);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: var(--panel);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 1px;
  display: block;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 160ms ease;
}

main {
  position: relative;
  z-index: 2;
}

.hero {
  min-height: calc(100vh - var(--top-offset));
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(420px, 1.3fr);
  gap: clamp(34px, 6vw, 84px);
  align-items: center;
  padding-top: calc(var(--top-offset) + 56px);
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  max-width: 620px;
}

.hero-copy h1,
.page-hero h1,
.detail-hero h1,
.section-heading h2,
.product-copy h1,
.contact-card h2,
.catalog-card strong {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.96;
}

.hero-copy h1 {
  margin: 0 0 26px;
  font-size: clamp(4.2rem, 9vw, 8.8rem);
}

.hero-lede {
  max-width: 440px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 1;
}

.hero-text {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
}

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

.hero-mini span {
  padding: 0 14px 0 0;
  border-right: 1px solid var(--line-dark);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-mini span:last-child {
  border-right: 0;
}

.hero-stage {
  position: relative;
  min-height: min(690px, 72vh);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
  box-shadow: var(--shadow);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 700ms ease, transform 900ms ease;
  transform: scale(1.02);
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 46%, rgba(16, 16, 14, 0.72));
}

.slide-caption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 2;
  color: var(--paper);
}

.slide-caption span {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.slide-caption strong {
  max-width: 520px;
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.7rem);
  font-weight: 400;
  line-height: 1.03;
}

.slide-caption p {
  max-width: 420px;
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.96rem;
  line-height: 1.5;
}

.hero-slide.is-active img {
  animation: heroImageDrift 7200ms ease-out both;
}

.hero-slide.is-active .slide-caption span,
.hero-slide.is-active .slide-caption strong,
.hero-slide.is-active .slide-caption p {
  animation: editorialRise 760ms ease both;
}

.hero-slide.is-active .slide-caption strong {
  animation-delay: 90ms;
}

.hero-slide.is-active .slide-caption p {
  animation-delay: 180ms;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.05) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.12) translate3d(-1.5%, -1%, 0);
  }
}

@keyframes editorialRise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slider-controls {
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  gap: 8px;
}

.slider-controls button {
  width: 32px;
  height: 3px;
  border: 0;
  background: rgba(255, 253, 248, 0.42);
  cursor: pointer;
}

.slider-controls button.is-active {
  background: var(--paper);
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.72);
}

.proof-strip div {
  padding: 28px clamp(18px, 4vw, 42px);
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1;
}

.proof-strip span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.28fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 64px);
  align-items: start;
  margin-bottom: 34px;
}

.section-number,
.micro-label,
.breadcrumb,
.collection-card-content span,
.product-card-row,
.product-card-meta,
.result-count,
.catalog-card span {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading h2 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 5.4rem);
}

.intro {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(28px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
}

.intro .section-heading {
  display: block;
  margin: 0;
}

.intro-text {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.06rem, 1.6vw, 1.3rem);
}

.market-marquee {
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--coffee);
  color: var(--paper);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 36px;
  padding: 18px 0;
  animation: marquee 34s linear infinite;
}

.marquee-track span {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.8vw, 3rem);
  white-space: nowrap;
}

.filter-bar,
.category-rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter,
.category-rail a,
.category-rail button {
  min-height: 40px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 253, 248, 0.74);
  padding: 10px 15px;
  color: var(--coffee);
  cursor: pointer;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.filter:hover,
.filter.is-active,
.category-rail a:hover,
.category-rail button:hover {
  background: var(--black);
  color: var(--paper);
  transform: translateY(-1px);
}

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

.collection-card,
.catalog-collection-card,
.design-card,
.catalog-card {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.8);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.collection-card:hover,
.catalog-collection-card:hover,
.design-card:hover,
.catalog-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: var(--bronze);
  box-shadow: 0 16px 32px rgba(28, 22, 17, 0.08);
}

.collection-card a,
.collection-card button {
  width: 100%;
  display: grid;
  border: 0;
  background: transparent;
  padding: 0;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.collection-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-card-content {
  padding: 18px;
}

.collection-card-content h3 {
  margin: 8px 0 8px;
  font-family: var(--serif);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1;
}

.collection-card-content p {
  margin: 0;
  color: var(--muted);
}

.spec-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.spec-row span {
  border: 1px solid var(--line);
  padding: 6px 8px;
  background: var(--paper);
  color: var(--coffee);
  font-size: 0.66rem;
  letter-spacing: 0.08em;
}

.design-rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.design-card {
  display: grid;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.design-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.design-card div {
  padding: 12px;
}

.design-card strong {
  display: block;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 400;
}

.design-card span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.production {
  background: var(--coffee);
  color: var(--paper);
}

.production .section-number,
.production .section-heading h2 {
  color: var(--paper);
}

.production-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.video-panel,
.production-photos {
  border: 1px solid rgba(251, 248, 241, 0.24);
  background: rgba(255, 255, 255, 0.04);
}

.video-panel video {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.video-panel div {
  padding: 22px;
}

.video-panel h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.video-panel p {
  margin: 0;
  color: rgba(251, 248, 241, 0.74);
}

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

.production-photos img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.trade,
.journey,
.catalogs,
.contact,
.collections,
.designs,
.related-section,
.product-info,
.detail-layout {
  border-bottom: 1px solid var(--line);
}

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

.trade-card,
.catalog-card,
.address-grid article {
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.8);
  padding: 24px;
}

.trade-card h3,
.address-grid span {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}

.trade-card p,
.address-grid p {
  margin: 0;
  color: var(--muted);
}

.catalog-card {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.catalog-card strong {
  margin-top: 34px;
  font-size: 2rem;
}

.contact-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: clamp(24px, 4vw, 46px);
}

.contact-card h2 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 4vw, 4.6rem);
}

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

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form label:has(textarea),
.lead-form button,
.form-note {
  grid-column: 1 / -1;
}

.lead-form span {
  color: var(--coffee);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form select,
.lead-form textarea,
.catalog-tools input,
.catalog-tools select {
  width: 100%;
  border: 1px solid var(--line-dark);
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 13px 14px;
}

.lead-form .checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border: 1px solid var(--line-dark);
  background: var(--white);
}

.lead-form .checkbox-line input {
  width: 18px;
  height: 18px;
  accent-color: var(--bronze);
}

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

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 4vw, 64px);
  background: var(--black);
  color: var(--paper);
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--paper);
  border-bottom: 1px solid rgba(251, 248, 241, 0.4);
}

.page-hero {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: calc(var(--top-offset) + 62px);
  padding-bottom: 48px;
  text-align: center;
}

.page-hero h1 {
  max-width: 920px;
  margin: 16px auto 18px;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
}

.page-hero p:not(.breadcrumb) {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
}

.breadcrumb {
  display: inline-flex;
  gap: 6px;
  margin: 0;
}

.shop-page-hero {
  border-bottom: 1px solid var(--line);
}

.shop-page-hero .category-rail {
  justify-content: center;
  margin-top: 28px;
}

.catalog-browser {
  padding-top: 0;
}

.catalog-tools {
  position: sticky;
  top: var(--top-offset);
  z-index: 25;
  display: grid;
  grid-template-columns: 1.55fr 1fr 1fr 0.9fr 0.85fr auto;
  gap: 10px;
  align-items: end;
  margin: 0 calc(clamp(18px, 4vw, 64px) * -1) 28px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(251, 248, 241, 0.96);
  backdrop-filter: blur(18px);
}

.catalog-tools label {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.catalog-tools span {
  color: var(--coffee);
  font-size: 0.66rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.catalog-tools input,
.catalog-tools select {
  min-height: 44px;
  padding: 10px 12px;
  appearance: none;
}

.catalog-tools .compact-action {
  min-height: 44px;
  padding-inline: 18px;
}

.listing-summary {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
}

.listing-summary p {
  margin: 0;
}

.result-count {
  color: var(--ink);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

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

.product-card {
  min-width: 0;
  border: 1px solid transparent;
  background: transparent;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.product-card-link {
  display: grid;
  height: 100%;
  color: inherit;
}

.product-card-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--paper-2);
}

.product-card-media img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 360ms ease;
}

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

.card-badge,
.quick-view {
  position: absolute;
  z-index: 2;
}

.card-badge {
  top: 12px;
  left: 12px;
  padding: 5px 8px;
  background: rgba(255, 253, 248, 0.92);
  color: var(--coffee);
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-view {
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  background: rgba(16, 16, 14, 0.86);
  color: var(--paper);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .quick-view,
.product-card:focus-within .quick-view {
  opacity: 1;
  transform: translateY(0);
}

.shop-card-copy,
.product-card-copy {
  display: grid;
  gap: 9px;
  padding: 14px 2px 0;
}

.product-card-row,
.product-card-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--bronze);
}

.product-card-row span,
.product-card-meta span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.25rem, 1.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.06;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card-meta {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
}

.detail-hero {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding-top: calc(var(--top-offset) + 64px);
  border-bottom: 1px solid var(--line);
}

.detail-hero h1 {
  margin: 16px 0 18px;
  font-size: clamp(3.5rem, 7vw, 7rem);
}

.detail-hero p:not(.breadcrumb) {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.12rem;
}

.detail-hero figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--paper-2);
}

.detail-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.detail-layout {
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 34px;
}

.detail-layout h2,
.product-info h2,
.related-section h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.4rem);
  font-weight: 400;
  line-height: 1;
}

.detail-specs {
  display: grid;
  border-top: 1px solid var(--line);
}

.detail-specs div {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 0.58fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.detail-specs dt {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.detail-specs dd {
  margin: 0;
  color: var(--ink);
}

.product-detail.pdp-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: clamp(26px, 4vw, 64px);
  align-items: start;
  padding-top: calc(var(--top-offset) + 38px);
  border-bottom: 1px solid var(--line);
}

.pdp-gallery {
  min-width: 0;
}

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

.pdp-media-tile {
  position: relative;
  min-height: 0;
  border: 0;
  padding: 0;
  background: var(--paper-2);
  cursor: zoom-in;
  overflow: hidden;
}

.pdp-media-tile:first-child {
  grid-row: span 2;
}

.pdp-media-tile img {
  width: 100%;
  height: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform 280ms ease, filter 280ms ease;
}

.pdp-media-tile:hover img {
  transform: scale(1.025);
  filter: saturate(1.03);
}

.mobile-main-image {
  display: none;
}

.thumb-strip {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.thumb-strip button {
  flex: 0 0 76px;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 0;
  cursor: pointer;
}

.thumb-strip img {
  width: 76px;
  height: 104px;
  object-fit: cover;
}

.pdp-buybox {
  position: sticky;
  top: calc(var(--top-offset) + 22px);
  border: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.9);
  padding: clamp(22px, 3vw, 34px);
  box-shadow: var(--shadow);
}

.pdp-status-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin: 18px 0 16px;
}

.pdp-status-row > span:last-child {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-copy h1 {
  margin: 0 0 16px;
  font-size: clamp(2.45rem, 4vw, 4.5rem);
}

.product-summary {
  max-height: 8.7em;
  overflow: hidden;
  color: var(--muted);
}

.pdp-option-block {
  margin: 26px 0;
}

.pdp-option-block h2 {
  margin: 0 0 12px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.size-pills span {
  min-height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-dark);
  background: var(--white);
  color: var(--coffee);
  font-size: 0.78rem;
  font-weight: 750;
  text-align: center;
}

.quote-button {
  flex: 1 1 210px;
}

.pdp-accordions {
  margin-top: 26px;
  border-top: 1px solid var(--line);
}

.pdp-accordions details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}

.pdp-accordions summary {
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pdp-accordions .detail-specs {
  margin-top: 14px;
}

.product-info {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 34px;
}

.rich-text {
  color: var(--muted);
  font-size: 1rem;
}

.rich-text p:first-child {
  margin-top: 0;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  background: var(--panel);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

th,
td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

th {
  background: var(--paper-2);
  color: var(--coffee);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 0.9rem;
}

.image-dialog {
  width: min(1120px, calc(100vw - 28px));
  border: 1px solid rgba(255, 253, 248, 0.35);
  background: var(--black);
  color: var(--paper);
  padding: 18px;
}

.image-dialog::backdrop {
  background: rgba(16, 16, 14, 0.76);
  backdrop-filter: blur(8px);
}

.image-dialog img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  background: #0b0b0a;
}

.image-dialog p {
  margin: 12px 0 0;
  color: rgba(251, 248, 241, 0.76);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  border: 1px solid rgba(251, 248, 241, 0.38);
  background: rgba(16, 16, 14, 0.82);
  color: var(--paper);
  padding: 9px 12px;
  cursor: pointer;
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes logoReveal {
  from {
    opacity: 0;
    transform: scale(0.86);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1180px) {
  :root {
    --top-offset: 136px;
  }

  .promise-bar {
    min-height: 32px;
  }

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

  .hero,
  .product-detail.pdp-detail,
  .detail-hero,
  .detail-layout,
  .product-info,
  .contact-card,
  .production-layout,
  .intro {
    grid-template-columns: 1fr;
  }

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

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

  .catalog-tools .wide {
    grid-column: span 2;
  }

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

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

  .pdp-buybox {
    position: static;
  }
}

@media (max-width: 820px) {
  :root {
    --top-offset: 118px;
  }

  .commerce-topbar {
    gap: 12px;
    justify-content: space-between;
    font-size: 0.62rem;
  }

  .commerce-topbar span:last-child {
    display: none;
  }

  .promise-bar {
    grid-template-columns: 1fr;
  }

  .promise-bar span {
    display: none;
  }

  .promise-bar span:first-child {
    display: flex;
  }

  .scroll-progress {
    top: 64px;
  }

  .site-header {
    top: 64px;
    padding: 10px 16px;
  }

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

  .brand-copy small {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--top-offset);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 18px 40px rgba(28, 22, 17, 0.12);
  }

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

  body.nav-open .nav-toggle span:first-child {
    transform: translateY(5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child {
    transform: translateY(-5px) rotate(-45deg);
  }

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

  .nav .nav-whatsapp {
    margin: 14px 0 0;
    justify-content: center;
    text-align: center;
  }

  .section-pad {
    padding: 54px 16px;
  }

  .hero,
  .page-hero,
  .detail-hero,
  .product-detail.pdp-detail {
    padding-top: calc(var(--top-offset) + 32px);
  }

  .hero-copy h1,
  .page-hero h1,
  .detail-hero h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

  .hero-stage {
    min-height: 460px;
  }

  .proof-strip,
  .trade-grid,
  .catalog-layout,
  .address-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    font-size: clamp(2.4rem, 12vw, 3.8rem);
  }

  .catalog-tools {
    position: static;
    grid-template-columns: 1fr;
    margin: 0 0 24px;
    padding: 14px;
    border: 1px solid var(--line);
  }

  .catalog-tools .wide {
    grid-column: auto;
  }

  .listing-summary {
    display: block;
  }

  .product-grid,
  .collection-grid,
  .generated-collection-grid,
  .design-rail,
  .compact-grid,
  .production-photos {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pdp-media-grid {
    grid-template-columns: 1fr;
  }

  .pdp-media-tile:first-child {
    grid-row: span 1;
  }

  .pdp-media-tile:nth-child(n + 5) {
    display: none;
  }

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

  .product-info {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .product-info > * {
    min-width: 0;
  }

  .lead-form label:has(textarea),
  .lead-form button,
  .form-note {
    grid-column: auto;
  }
}

.design-story-section {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.design-story {
  columns: 2 360px;
  column-gap: clamp(28px, 5vw, 72px);
}

.design-story p {
  break-inside: avoid;
  margin: 0 0 1.15rem;
  color: var(--coffee);
  line-height: 1.82;
}

@media (max-width: 560px) {
  .product-grid,
  .collection-grid,
  .generated-collection-grid,
  .design-rail,
  .compact-grid,
  .production-photos {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .hero-mini,
  .category-rail {
    flex-direction: column;
  }

  .hero-actions .button,
  .category-rail a,
  .category-rail button {
    width: 100%;
  }

  .product-card-media img {
    aspect-ratio: 4 / 5;
  }

  .detail-specs div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .pdp-buybox {
    padding: 18px;
  }

  .site-footer {
    display: grid;
  }
}

@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;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Mockup-faithful B2B catalog refinements */
:root {
  --paper: #fffdf9;
  --paper-2: #f7f2ea;
  --panel: #ffffff;
  --line: #ddd1c3;
  --line-dark: #c9b9a8;
  --top-offset: 150px;
}

body {
  background: #fffdf9;
}

body::before {
  opacity: 0.12;
}

.commerce-topbar {
  min-height: 28px;
  padding: 6px 28px;
  gap: 12px;
  background: #050505;
  color: #fff;
  font-size: 0.66rem;
}

.commerce-topbar span {
  padding-inline: 12px;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
}

.commerce-topbar span:last-child {
  margin-left: auto;
  border-right: 0;
}

.promise-bar {
  top: 28px;
  min-height: 46px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.promise-bar span {
  display: grid;
  justify-items: center;
  gap: 2px;
  padding: 8px 12px;
  font-size: 0.66rem;
  color: var(--black);
}

.promise-bar b {
  font-weight: 850;
}

.promise-bar small {
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
}

.scroll-progress {
  top: 74px;
}

.site-header {
  top: 74px;
  min-height: 76px;
  display: grid;
  grid-template-columns: 230px 1fr;
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 1px 0 rgba(221, 209, 195, 0.75);
}

.brand-mark {
  width: 72px;
  height: 52px;
  background: transparent;
}

.brand-mark img {
  object-fit: contain;
}

.brand-copy > span {
  font-size: 1.42rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.nav {
  justify-self: end;
}

.nav a {
  font-size: 0.72rem;
  color: #191714;
}

.selection-nav {
  min-height: 38px;
  border: 1px solid var(--line-dark);
  background: #fff;
  padding: 9px 12px;
  cursor: pointer;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-nav span {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  margin-left: 6px;
  place-items: center;
  background: #050505;
  color: #fff;
  border-radius: 999px;
  font-size: 0.65rem;
}

.nav .nav-whatsapp {
  border-color: #050505;
  border-radius: 10px;
  background: #050505;
  color: #fff;
}

.shop-hero {
  min-height: 260px;
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(360px, 1.28fr);
  align-items: stretch;
  margin-top: var(--top-offset);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background: linear-gradient(90deg, #fffdf9 0%, #fffaf3 48%, #eee5da 100%);
}

.shop-hero-copy {
  display: grid;
  align-content: center;
  padding: clamp(34px, 5vw, 58px) clamp(24px, 4vw, 58px);
}

.shop-hero h1 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 5.5vw, 5.8rem);
  font-weight: 400;
  line-height: 0.98;
}

.shop-hero p {
  max-width: 560px;
  margin: 0;
  color: #393631;
  font-size: 1.05rem;
}

.shop-hero figure {
  margin: 0;
  position: relative;
}

.shop-hero figure::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fffdf9, rgba(255, 253, 249, 0.08) 42%, transparent);
  z-index: 1;
}

.shop-hero img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
}

.browse-band {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 24px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.browse-band > span {
  flex: 0 0 auto;
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.browse-band .category-rail {
  flex-wrap: nowrap;
  overflow-x: auto;
}

.category-rail a,
.category-rail button {
  border-radius: 999px;
  background: #fff;
  color: #2d2924;
  font-size: 0.68rem;
  white-space: nowrap;
}

.category-rail a:hover,
.category-rail button:hover {
  background: #050505;
  color: #fff;
}

.catalog-browser {
  padding-top: 20px;
  background: #fffdf9;
}

.catalog-tools {
  top: var(--top-offset);
  margin-bottom: 18px;
  background: #fff;
}

.catalog-tools input,
.catalog-tools select {
  border-radius: 4px;
  background: #fff;
}

.listing-summary {
  margin-bottom: 16px;
  padding-inline: 2px;
}

.product-grid {
  gap: 22px;
}

.product-card {
  position: relative;
  border: 1px solid var(--line);
  background: #fff;
}

.product-card:hover {
  transform: none;
  box-shadow: 0 16px 40px rgba(20, 17, 14, 0.08);
}

.wishlist-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 8;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  font-size: 1.08rem;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease;
}

.wishlist-button:hover {
  transform: scale(1.08);
  background: #050505;
  color: #fff;
}

.product-card-media {
  margin: 10px 10px 0;
}

.product-card-media img {
  aspect-ratio: 3 / 4.08;
}

.quick-view {
  left: 22px;
  right: 22px;
  bottom: 16px;
  min-height: 34px;
  border-radius: 3px;
  background: rgba(5, 5, 5, 0.9);
  color: #fff;
  opacity: 1;
  transform: translateY(0);
  font-size: 0.63rem;
}

.shop-card-copy,
.product-card-copy {
  padding: 12px 16px 14px;
}

.product-card-row {
  display: block;
  color: var(--bronze);
  font-size: 0.62rem;
}

.product-card h3 {
  font-size: 1.08rem;
  line-height: 1.22;
}

.product-card p {
  color: #5b554e;
  font-size: 0.82rem;
}

.product-card-meta {
  display: none;
}

.card-size-note {
  color: #6b5e50;
  font-size: 0.78rem;
}

.product-detail.pdp-detail {
  grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
  padding-top: calc(var(--top-offset) + 34px);
  background: #fffdf9;
}

.pdp-media-grid {
  gap: 14px;
}

.pdp-media-tile {
  border: 1px solid var(--line);
  background: #f6f0e8;
}

.pdp-media-tile:first-child {
  grid-row: span 1;
}

.pdp-media-tile img {
  aspect-ratio: 1 / 1.28;
}

.pdp-buybox {
  border: 0;
  border-left: 1px solid var(--line);
  box-shadow: none;
  background: transparent;
  padding-top: 4px;
}

.product-copy h1 {
  font-size: clamp(3rem, 4.8vw, 5.2rem);
}

.pdp-status-row {
  margin-top: 8px;
}

.product-summary {
  display: none;
}

.option-heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.option-heading span {
  color: var(--muted);
  font-size: 0.72rem;
}

.design-swatch-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  max-height: 228px;
  overflow: auto;
  padding-right: 3px;
}

.design-swatch {
  display: grid;
  gap: 5px;
  border: 1px solid var(--line);
  padding: 4px;
  background: #fff;
  text-align: center;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.design-swatch.is-current,
.design-swatch:hover {
  border-color: #050505;
  box-shadow: inset 0 0 0 1px #050505;
}

.design-swatch img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.design-swatch span {
  overflow: hidden;
  color: #3d3831;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.size-pills {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.size-choice {
  display: grid;
  min-height: 58px;
  place-items: center;
  gap: 4px;
  border: 1px solid var(--line-dark);
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  padding: 7px 6px;
  color: #1d1a16;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.size-choice.is-selected,
.size-choice:hover {
  background: #050505;
  border-color: #050505;
  color: #fff;
  transform: translateY(-1px);
}

.size-choice .size-graphic {
  width: 54px;
  height: 54px;
  display: block;
  object-fit: contain;
  filter: saturate(0.86) contrast(1.02);
  mix-blend-mode: multiply;
}

.size-choice:hover .size-graphic,
.size-choice.is-selected .size-graphic {
  filter: invert(1) grayscale(1) contrast(1.35);
  mix-blend-mode: screen;
}

.size-shape {
  width: calc(28px * var(--ratio, 0.67));
  min-width: 16px;
  max-width: 34px;
  height: 22px;
  display: block;
  border: 1px solid currentColor;
  background: linear-gradient(135deg, transparent 48%, currentColor 49%, currentColor 51%, transparent 52%);
}

.custom-shape {
  width: 28px;
  border-style: dashed;
}

.size-choice span:last-child {
  min-height: auto;
  display: block;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.68rem;
  font-weight: 750;
}

[dir="rtl"] body {
  font-family: "Inter", "Tahoma", "Arial", sans-serif;
}

[dir="rtl"] .product-card,
[dir="rtl"] .collection-card,
[dir="rtl"] .site-footer,
[dir="rtl"] .pdp-buybox,
[dir="rtl"] .page-hero {
  text-align: right;
}

[dir="rtl"] th,
[dir="rtl"] td {
  text-align: right;
}

/* Homepage navigation and footer expansion */
.home-taxonomy {
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.home-taxonomy.compact-band,
.buyer-advantages {
  background: var(--paper-2);
}

.section-kicker {
  width: min(760px, 100%);
  margin: -20px 0 28px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.home-nav-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.home-nav-card {
  min-height: 100%;
  display: grid;
  grid-template-rows: auto 1fr;
  border: 1px solid var(--line);
  background: var(--panel);
  color: inherit;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.home-nav-card:hover {
  transform: translateY(-3px);
  border-color: var(--line-dark);
  box-shadow: 0 20px 45px rgba(28, 22, 17, 0.11);
}

.home-nav-card figure {
  margin: 0;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #eee5da;
}

.home-nav-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 500ms ease;
}

.home-nav-card:hover img {
  transform: scale(1.045);
}

.home-nav-card div {
  display: grid;
  align-content: start;
  gap: 9px;
  padding: 18px;
}

.home-nav-card span,
.process-card span,
.site-footer span {
  color: var(--bronze);
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-nav-card strong {
  font-family: var(--serif);
  color: var(--ink);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1;
}

.home-nav-card p,
.process-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.color-grid .home-nav-card figure {
  aspect-ratio: 5 / 3;
}

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

.order-process {
  border-top: 1px solid var(--line);
  background: #17130f;
  color: var(--paper);
}

.order-process .section-heading h2,
.order-process .process-card h3 {
  color: var(--paper);
}

.order-process .section-kicker,
.order-process .process-card p {
  color: rgba(255, 253, 248, 0.7);
}

.process-card {
  min-height: 225px;
  display: grid;
  align-content: start;
  gap: 18px;
  border: 1px solid rgba(191, 161, 121, 0.35);
  background: rgba(255, 253, 248, 0.055);
  padding: clamp(20px, 3vw, 30px);
}

.buyer-advantages .process-card {
  border-color: var(--line);
  background: var(--panel);
}

.process-card h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.15rem);
  line-height: 1.05;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(240px, 0.85fr) minmax(0, 1.9fr);
  gap: clamp(28px, 6vw, 78px);
  border-top: 1px solid var(--line);
  background: #17130f;
  color: var(--paper);
  padding: clamp(42px, 7vw, 78px) clamp(18px, 5vw, 72px);
}

.footer-brand strong {
  display: block;
  margin-bottom: 16px;
  font-family: var(--serif);
  font-size: clamp(2rem, 3vw, 3.6rem);
  font-weight: 500;
}

.footer-brand p,
.site-footer p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 253, 248, 0.68);
  line-height: 1.7;
}

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

.footer-columns nav,
.footer-columns div {
  display: grid;
  align-content: start;
  gap: 10px;
}

.site-footer a {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.9rem;
}

.site-footer a:hover {
  color: var(--paper);
}

@media (max-width: 1180px) {
  .home-nav-grid,
  .process-grid,
  .collection-nav-grid,
  .footer-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .language-switcher {
    margin-top: 10px;
  }

  .language-switcher summary {
    width: 100%;
  }

  .language-menu {
    position: static;
    width: 100%;
    box-shadow: none;
  }

  .section-kicker {
    margin-top: 0;
  }

  .home-nav-grid,
  .process-grid,
  .collection-nav-grid,
  .footer-columns {
    grid-template-columns: 1fr;
  }
}

.size-help {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.76rem;
}

.button.dark {
  background: #050505;
  color: #fff;
}

.pdp-accordions summary {
  display: flex;
  justify-content: space-between;
}

.pdp-accordions summary::after {
  content: "+";
  font-size: 1rem;
}

.product-info {
  background: #fffdf9;
}

.selection-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 90;
  width: min(440px, 92vw);
  height: 100vh;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  border-left: 1px solid var(--line);
  background: #fffdf9;
  box-shadow: -24px 0 70px rgba(16, 16, 14, 0.16);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

body.selection-open .selection-drawer {
  transform: translateX(0);
}

.selection-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  background: rgba(5, 5, 5, 0.24);
}

body.selection-open .selection-backdrop {
  display: block;
}

.selection-drawer-header,
.selection-actions {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.selection-drawer-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.selection-drawer-header span {
  color: var(--bronze);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.selection-drawer-header strong {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.selection-drawer-header button,
.selection-item button {
  border: 1px solid var(--line-dark);
  background: #fff;
  cursor: pointer;
  padding: 8px 10px;
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-items {
  overflow: auto;
  padding: 12px 20px;
}

.selection-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.selection-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  background: var(--paper-2);
}

.selection-item strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.12;
}

.selection-item span,
.selection-item small,
.empty-selection,
.selection-note {
  color: var(--muted);
  font-size: 0.78rem;
}

.selection-actions {
  display: grid;
  gap: 10px;
  border-top: 1px solid var(--line);
  border-bottom: 0;
}

.selection-note {
  margin: 0;
  padding: 0 20px 20px;
}

.buyer-desk {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(153, 110, 65, 0.08) 1px, transparent 1px),
    linear-gradient(180deg, rgba(153, 110, 65, 0.06), rgba(255, 253, 248, 0));
  background-size: 72px 100%, auto;
}

.buyer-desk-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  border: 1px solid var(--line);
  background: var(--line);
}

.buyer-desk-card {
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 253, 248, 0.92);
}

.buyer-desk-card span {
  display: inline-block;
  margin-bottom: 42px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.buyer-desk-card h3 {
  margin: 0 0 14px;
  font-family: var(--serif);
  font-size: clamp(1.45rem, 2vw, 2.4rem);
  font-weight: 400;
  line-height: 1.02;
}

.buyer-desk-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.journal-hero {
  border-bottom: 1px solid var(--line);
}

.journal-cover {
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(28, 27, 25, 0.05) 1px, transparent 1px),
    var(--paper);
  background-size: 92px 100%;
}

.journal-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  gap: 32px;
  align-items: end;
  padding: 28px 0 34px;
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--line-dark);
}

.journal-masthead span,
.journal-briefing > p,
.magazine-card span,
.article-sidebar span,
.related-reading p {
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-masthead h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(4rem, 10vw, 10rem);
  font-weight: 400;
  line-height: 0.86;
}

.journal-masthead p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.journal-front {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);
  gap: 1px;
  margin-top: 30px;
  border: 1px solid var(--line);
  background: var(--line);
}

.journal-feature,
.journal-briefing {
  background: var(--paper);
}

.journal-feature a {
  display: grid;
  grid-template-columns: minmax(280px, 0.86fr) minmax(260px, 0.64fr);
  min-height: 520px;
  color: inherit;
  text-decoration: none;
}

.journal-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.journal-feature span,
.journal-feature h2,
.journal-feature p {
  grid-column: 2;
  margin-left: 34px;
  margin-right: 34px;
}

.journal-feature span {
  align-self: end;
  margin-top: auto;
  margin-bottom: 18px;
  color: var(--bronze);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journal-feature h2 {
  margin-top: 0;
  margin-bottom: 18px;
  font-family: var(--serif);
  font-size: clamp(2.6rem, 5vw, 5.4rem);
  font-weight: 400;
  line-height: 0.92;
}

.journal-feature p {
  align-self: start;
  margin-top: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.journal-briefing {
  padding: 26px;
}

.journal-briefing a,
.related-reading a {
  display: block;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
}

.journal-briefing a strong,
.related-reading a strong {
  display: block;
  margin-top: 8px;
  font-family: var(--serif);
  font-size: 1.24rem;
  font-weight: 400;
  line-height: 1.08;
}

.journal-briefing small {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.journal-categories {
  padding-top: 0;
  padding-bottom: 0;
  border-bottom: 1px solid var(--line);
}

.category-paper {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  background: var(--line);
}

.category-paper a {
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background: var(--paper);
  color: inherit;
  text-decoration: none;
}

.category-paper span {
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.category-paper strong {
  color: var(--bronze);
  font-size: 0.78rem;
}

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

.magazine-card {
  background: var(--paper);
}

.magazine-card a {
  display: grid;
  min-height: 100%;
  color: inherit;
  text-decoration: none;
}

.magazine-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 380ms ease, filter 380ms ease;
}

.magazine-card a:hover img {
  transform: scale(1.025);
  filter: saturate(1);
}

.magazine-card span,
.magazine-card h2,
.magazine-card p {
  margin-right: 22px;
  margin-left: 22px;
}

.magazine-card span {
  margin-top: 22px;
}

.magazine-card h2 {
  margin-top: 14px;
  margin-bottom: 14px;
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.6vw, 2.55rem);
  font-weight: 400;
  line-height: 1;
}

.magazine-card p {
  margin-top: 0;
  margin-bottom: 26px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.56;
}

.journal-index .section-heading {
  margin-bottom: 24px;
}

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

.blog-card {
  background: var(--paper);
}

.blog-card a {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: background 180ms ease, transform 180ms ease;
}

.blog-card a:hover {
  background: #fbf6ee;
  transform: translateY(-2px);
}

.blog-card span,
.journal-article header span,
.article-meta {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bronze);
}

.blog-card h2 {
  margin: auto 0 0;
  font-family: var(--serif);
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 500;
  line-height: 1.02;
}

.blog-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.journal-article {
  max-width: 980px;
  margin: 0 auto;
}

.journal-article.magazine-article {
  max-width: 1240px;
}

.journal-article header,
.article-masthead {
  padding: 52px 0 34px;
  border-bottom: 1px solid var(--line);
}

.journal-article h1 {
  max-width: 880px;
  margin: 18px 0;
  font-family: var(--serif);
  font-size: clamp(3rem, 7vw, 6.8rem);
  font-weight: 500;
  line-height: 0.94;
}

.journal-article header p {
  max-width: 700px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.65;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.article-photo {
  margin: 28px 0 0;
  border: 1px solid var(--line);
  background: var(--panel);
}

.article-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-photo figcaption {
  margin: 0;
  padding: 11px 14px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}

.article-body {
  columns: 2 320px;
  column-gap: 54px;
  padding: 42px 0;
  font-family: var(--serif);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 44px;
  align-items: start;
}

.article-layout .article-body {
  columns: 2 330px;
}

.article-sidebar {
  position: sticky;
  top: calc(var(--top-offset) + 24px);
  display: grid;
  gap: 14px;
  margin-top: 42px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.article-sidebar p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.related-reading {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}

.article-body p {
  break-inside: avoid;
  margin: 0 0 1.25rem;
  font-size: 1.18rem;
  line-height: 1.72;
}

.article-body p:first-child::first-letter {
  float: left;
  padding: 0.1em 0.12em 0 0;
  font-size: 4.8rem;
  line-height: 0.72;
  color: var(--ink);
}

.article-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

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

  .shop-hero,
  .product-detail.pdp-detail {
    grid-template-columns: 1fr;
  }

  .pdp-buybox {
    border-left: 0;
  }

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

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

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

  .journal-front,
  .journal-feature a,
  .article-layout {
    grid-template-columns: 1fr;
  }

  .journal-feature a {
    min-height: auto;
  }

  .journal-feature img {
    aspect-ratio: 16 / 10;
    height: auto;
  }

  .journal-feature span,
  .journal-feature h2,
  .journal-feature p {
    grid-column: 1;
  }

  .article-sidebar {
    position: static;
    margin-top: 0;
  }

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

@media (max-width: 820px) {
  :root {
    --top-offset: 104px;
  }

  .commerce-topbar span:nth-child(2),
  .commerce-topbar span:nth-child(3) {
    display: none;
  }

  .promise-bar {
    top: 28px;
    min-height: 30px;
    grid-template-columns: 1fr;
  }

  .promise-bar span:first-child {
    display: grid;
  }

  .promise-bar small {
    display: none;
  }

  .scroll-progress {
    top: 58px;
  }

  .site-header {
    top: 58px;
  }

  .shop-hero {
    margin-top: var(--top-offset);
  }

  .browse-band {
    display: grid;
    gap: 12px;
  }

  .product-card-media img {
    aspect-ratio: 3 / 3.8;
  }

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

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

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

  .journal-masthead {
    grid-template-columns: 1fr;
  }

  .buyer-desk-grid,
  .category-paper,
  .magazine-grid {
    grid-template-columns: 1fr;
  }

  .buyer-desk-card {
    min-height: 210px;
  }

  .journal-feature h2 {
    font-size: clamp(2.2rem, 12vw, 3.8rem);
  }

  .article-body,
  .article-layout .article-body {
    columns: 1;
  }
}

@media (max-width: 560px) {
  .shop-hero-copy {
    padding: 30px 16px;
  }

  .shop-hero h1 {
    font-size: 3.3rem;
  }

  .shop-hero figure {
    min-height: 190px;
  }

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

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

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

  .blog-card a {
    min-height: 190px;
  }

  .selection-item {
    grid-template-columns: 54px 1fr;
  }

  .selection-item button {
    grid-column: 2;
    justify-self: start;
  }
}
