:root {
  --carbon: #171815;
  --carbon-soft: #252620;
  --porcelain: #f3f0ea;
  --chalk: #fcfbf8;
  --mist: #d8d3c9;
  --stone: #77736c;
  --forest: #2f463b;
  --brass: #a68d63;
  --white: #ffffff;
  --color-bg-base: var(--porcelain);
  --color-bg-surface: var(--chalk);
  --color-bg-inverse: var(--carbon);
  --color-bg-brand: var(--forest);
  --color-bg-accent: var(--brass);
  --color-text-primary: var(--carbon);
  --color-text-secondary: var(--stone);
  --color-text-inverse: var(--white);
  --color-border-default: var(--mist);
  --color-border-accent: var(--brass);
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-6: 24px;
  --space-8: 32px;
  --space-12: 48px;
  --space-18: 72px;
  --space-28: 112px;
  --radius-none: 0;
  --radius-control: 2px;
  --radius-card: 6px;
  --max: 1240px;
  --motion-ui: 220ms;
  --motion-reveal: 620ms;
  --motion-ease: cubic-bezier(.22,1,.36,1);
}

* { box-sizing: border-box; letter-spacing: 0; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}
body {
  margin: 0;
  color: var(--carbon);
  background: var(--porcelain);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
section[id] { scroll-margin-top: 86px; }
button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 3px;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.24);
  transition: min-height var(--motion-ui) ease, color var(--motion-ui) ease, background var(--motion-ui) ease, border-color var(--motion-ui) ease, box-shadow var(--motion-ui) ease;
}
.site-header.is-scrolled {
  min-height: 70px;
  color: var(--carbon);
  background: rgba(252,251,248,.96);
  border-color: rgba(24,32,27,.12);
  box-shadow: 0 8px 28px rgba(24,32,27,.07);
  backdrop-filter: blur(14px);
}
.site-header .desktop-nav a[aria-current="page"] { opacity: 1; }
.site-header .desktop-nav a[aria-current="page"]::after { display: block; width: 100%; height: 1px; margin-top: 5px; background: currentColor; content: ""; }
html[data-page="catalog"] .site-header {
  min-height: 70px;
  color: var(--carbon);
  background: rgba(252,251,248,.97);
  border-color: rgba(24,32,27,.12);
  box-shadow: 0 8px 28px rgba(24,32,27,.05);
  backdrop-filter: blur(14px);
}
html[data-page="catalog"] .site-header .brand-lockup-image { filter: none; }
html[data-page="catalog"] .site-header .button-small { color: var(--white); background: var(--forest); }
.site-header.is-scrolled .button-small {
  color: var(--white);
  background: var(--forest);
}
.brand { display: inline-flex; align-items: center; color: inherit; }
.brand-lockup-image {
  display: block;
  width: 220px;
  height: auto;
  filter: brightness(0) invert(1);
  transition: filter var(--motion-ui) ease;
}
.site-header.is-scrolled .brand-lockup-image { filter: none; }
.desktop-nav { display: flex; align-items: center; gap: 30px; font-size: 13px; font-weight: 500; }
.desktop-nav a { transition: opacity .18s ease; }
.desktop-nav a:hover { opacity: .66; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.selection-header-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 10px;
  color: inherit;
  background: transparent;
  border: 0;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}
.selection-header-button svg { width: 17px; height: 17px; }
.selection-header-button strong { display: grid; place-items: center; min-width: 20px; height: 20px; padding: 0 5px; color: var(--white); background: var(--forest); border-radius: 50%; font-size: 9px; }
.selection-header-button:not(.has-items) strong { color: var(--stone); background: var(--mist); }
.icon-button {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: pointer;
}
.icon-button svg { width: 20px; height: 20px; stroke-width: 1.7; }
.menu-button { display: none; }
.mobile-nav { display: none; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button svg { width: 17px; height: 17px; stroke-width: 1.8; }
.button-small { min-height: 44px; padding: 0 18px; color: var(--carbon); background: var(--chalk); }
.button-accent { color: var(--carbon); background: var(--brass); }
.button-accent:hover { filter: brightness(.94); }
.button-dark { color: var(--white); background: var(--carbon); }
.button-dark:hover { background: var(--forest); }
.full-button { width: 100%; }
.center-button { display: flex; width: max-content; max-width: 100%; margin: 42px auto 0; }
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 0 7px;
  color: var(--white);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.text-link svg { width: 16px; height: 16px; stroke-width: 1.8; }
.text-link.light { color: var(--white); }

.hero {
  position: relative;
  min-height: 760px;
  height: min(92vh, 920px);
  color: var(--white);
  overflow: hidden;
  background: var(--carbon);
}
.hero-image, .hero-overlay { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-image { object-fit: cover; object-position: center 57%; }
.hero-overlay { background: rgba(17,20,17,.43); }
.hero-content {
  position: relative;
  z-index: 2;
  width: min(1040px, calc(100% - 48px));
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-top: 174px;
}
.eyebrow {
  margin: 0 0 22px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow.dark { color: var(--forest); }
.hero h1 {
  max-width: 1000px;
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: 68px;
  font-weight: 400;
  line-height: 1.06;
  text-wrap: balance;
}
.hero-copy {
  max-width: 590px;
  margin: 27px 0 32px;
  color: rgba(255,255,255,.82);
  font-size: 16px;
  line-height: 1.65;
}
.hero-actions { display: flex; align-items: center; gap: 26px; flex-wrap: wrap; }
.availability-strip {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  background: rgba(23,24,21,.94);
  border-top: 1px solid rgba(255,255,255,.18);
}
.availability-strip div { min-height: 94px; padding: 22px 30px; border-left: 1px solid rgba(255,255,255,.16); }
.availability-strip div:last-child { border-right: 1px solid rgba(255,255,255,.16); }
.availability-strip strong, .availability-strip span { display: block; }
.availability-strip strong { margin-bottom: 5px; font-size: 14px; font-weight: 600; }
.availability-strip span { color: rgba(255,255,255,.6); font-size: 11px; }

.section-shell { width: min(var(--max), calc(100% - 48px)); margin: 0 auto; padding: 104px 0; }
.section-heading { display: grid; grid-template-columns: 1.35fr .65fr; gap: 64px; align-items: end; }
.section-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -34px; }
.section-heading h1, .section-heading h2, .value-content h2, .pro-copy h2, .final-cta h2 {
  margin: 0;
  font-family: "Prata", Georgia, serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.08;
}
.section-heading > p:last-child { margin: 0; color: var(--stone); font-size: 14px; line-height: 1.7; }
.section-heading.compact { display: block; }
.section-heading.compact .eyebrow { margin-bottom: 18px; }
.section-heading.compact h2 { max-width: 660px; }

.catalog-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 58px; }
.catalog-page-request { display: none; }
.catalog-preview .catalog-toolbar, .catalog-preview .catalog-controls, .catalog-preview .filter-row { display: none; }
.catalog-preview .product-grid { margin-top: 48px; }
html[data-page="catalog"] main > :not(#collection) { display: none; }
html[data-page="catalog"] .catalog-page { min-height: calc(100dvh - 180px); padding-top: 154px; }
html[data-page="catalog"] .catalog-page .section-heading { grid-template-columns: minmax(0, 1fr); gap: 0; }
html[data-page="catalog"] .catalog-page .section-heading .eyebrow { margin-bottom: 18px; }
html[data-page="catalog"] .catalog-page .section-heading h1 { max-width: 900px; }
html[data-page="catalog"] .catalog-preview-link { display: none; }
html[data-page="catalog"] .catalog-page-request { display: flex; }
.catalog-search { display: flex; align-items: center; gap: 12px; width: min(560px, 100%); min-height: 54px; padding: 0 14px 0 16px; background: var(--chalk); border: 1px solid var(--mist); border-radius: var(--radius-control); transition: border-color .18s ease, box-shadow .18s ease; }
.catalog-search:focus-within { border-color: var(--forest); box-shadow: 0 0 0 3px rgba(33,56,45,.08); }
.catalog-search svg { flex: 0 0 auto; width: 17px; height: 17px; color: var(--stone); }
.catalog-search input { min-width: 0; width: 100%; padding: 0; color: var(--carbon); background: transparent; border: 0; outline: 0; font-size: 13px; }
.catalog-search input::placeholder { color: var(--stone); opacity: .82; }
.catalog-search input::-webkit-search-cancel-button { display: none; -webkit-appearance: none; appearance: none; }
.catalog-search-clear { display: inline-grid; place-items: center; flex: 0 0 auto; width: 34px; height: 34px; padding: 0; color: var(--stone); background: transparent; border: 0; cursor: pointer; }
.catalog-search-clear[hidden] { display: none; }
.catalog-search-clear svg { width: 16px; height: 16px; }
#catalog-result-count { flex: 0 0 auto; color: var(--stone); font-size: 11px; font-weight: 500; }
.catalog-controls { position: relative; z-index: 6; display: grid; grid-template-columns: minmax(340px, 1fr) minmax(150px, auto) minmax(250px, .7fr); gap: 8px; margin: 14px 0 0; }
.catalog-native-select { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.catalog-segments { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); min-width: 0; min-height: 50px; padding: 4px; background: rgba(251,250,246,.82); border: 1px solid var(--mist); border-radius: var(--radius-control); }
.catalog-segments > button { min-width: 0; padding: 0 12px; overflow: hidden; color: var(--stone); background: transparent; border: 0; border-radius: 3px; font: 600 10.5px/1.3 "Manrope", sans-serif; text-overflow: ellipsis; white-space: nowrap; cursor: pointer; transition: color .18s ease, background .18s ease; }
.catalog-segments > button:hover { color: var(--carbon); background: rgba(33,56,45,.05); }
.catalog-segments > button.active { color: var(--white); background: var(--forest); }
.catalog-segments > button:focus-visible, .catalog-popover-trigger:focus-visible, .catalog-popover-menu button:focus-visible { outline: 2px solid rgba(33,56,45,.5); outline-offset: 2px; }
.catalog-popover { position: relative; min-width: 0; }
.catalog-popover-trigger { position: relative; display: grid; align-content: center; width: 100%; min-height: 50px; padding: 7px 38px 7px 13px; color: var(--carbon); background: rgba(251,250,246,.82); border: 1px solid var(--mist); border-radius: var(--radius-control); text-align: left; cursor: pointer; transition: border-color .18s ease, box-shadow .18s ease; }
.catalog-popover-trigger:hover, .catalog-popover.open .catalog-popover-trigger { border-color: rgba(33,56,45,.48); }
.catalog-popover.open .catalog-popover-trigger { box-shadow: 0 0 0 3px rgba(33,56,45,.07); }
.catalog-popover-trigger span { color: var(--stone); font-size: 8px; font-weight: 600; line-height: 1.2; text-transform: uppercase; }
.catalog-popover-trigger strong { margin-top: 4px; overflow: hidden; font-size: 11px; font-weight: 500; text-overflow: ellipsis; white-space: nowrap; }
.catalog-popover-trigger > svg { position: absolute; top: 50%; right: 13px; width: 15px; height: 15px; color: var(--stone); transform: translateY(-50%); transition: transform .18s ease; }
.catalog-popover.open .catalog-popover-trigger > svg { transform: translateY(-50%) rotate(180deg); }
.catalog-popover-menu { position: absolute; z-index: 10; top: calc(100% + 6px); left: 0; width: max(100%, 260px); max-height: 320px; padding: 6px; overflow-y: auto; background: var(--chalk); border: 1px solid var(--mist); border-radius: 5px; box-shadow: 0 18px 48px rgba(24,32,27,.14); }
.catalog-popover-menu[hidden] { display: none; }
.catalog-popover-menu button { display: flex; align-items: center; justify-content: space-between; gap: 14px; width: 100%; min-height: 42px; padding: 0 11px; color: var(--carbon); background: transparent; border: 0; border-radius: 3px; font: 500 11px/1.35 "Manrope", sans-serif; text-align: left; cursor: pointer; }
.catalog-popover-menu button:hover { background: rgba(33,56,45,.06); }
.catalog-popover-menu button.active { color: var(--forest); background: rgba(33,56,45,.08); font-weight: 600; }
.catalog-popover-menu button svg { width: 14px; height: 14px; opacity: 0; }
.catalog-popover-menu button.active svg { opacity: 1; }
.catalog-filters-toggle { display: flex; align-items: center; justify-content: center; gap: 9px; min-height: 50px; padding: 0 16px; color: var(--forest); background: rgba(251,250,246,.82); border: 1px solid rgba(33,56,45,.28); border-radius: var(--radius-control); font-size: 10.5px; font-weight: 600; cursor: pointer; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.catalog-filters-toggle:hover, .catalog-filters-toggle[aria-expanded="true"] { color: var(--white); background: var(--forest); border-color: var(--forest); }
.catalog-filters-toggle svg { width: 15px; height: 15px; }
.catalog-filters-toggle svg:last-child { margin-left: 2px; transition: transform .18s ease; }
.catalog-filters-toggle[aria-expanded="true"] svg:last-child { transform: rotate(180deg); }
.catalog-filters-toggle strong { display: grid; place-items: center; min-width: 19px; height: 19px; padding: 0 5px; color: var(--forest); background: var(--white); border-radius: 50%; font-size: 9px; }
.catalog-filters-toggle strong[hidden] { display: none; }
.catalog-filter-panel { position: relative; z-index: 5; display: grid; grid-template-columns: minmax(230px, 1.15fr) repeat(4, minmax(150px, .85fr)); gap: 8px; margin-top: 8px; padding: 14px; background: rgba(251,250,246,.72); border: 1px solid var(--mist); border-radius: var(--radius-card); box-shadow: 0 14px 38px rgba(24,32,27,.04); }
.catalog-filter-panel[hidden] { display: none; }
.catalog-filter-panel-header, .catalog-filter-panel-footer { display: none; }
.catalog-price-filter { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; min-width: 0; margin: 0; padding: 0; border: 0; }
.catalog-price-filter legend { grid-column: 1 / -1; margin: 0 0 5px; padding: 0; color: var(--stone); font-size: 8px; font-weight: 600; text-transform: uppercase; }
.catalog-price-filter label { display: flex; align-items: center; gap: 6px; min-width: 0; min-height: 50px; padding: 0 10px; background: var(--chalk); border: 1px solid var(--mist); border-radius: var(--radius-control); }
.catalog-price-filter label:focus-within { border-color: rgba(33,56,45,.48); box-shadow: 0 0 0 3px rgba(33,56,45,.07); }
.catalog-price-filter label span { color: var(--stone); font-size: 9px; }
.catalog-price-filter input { min-width: 0; width: 100%; padding: 0; color: var(--carbon); background: transparent; border: 0; outline: 0; font: 500 11px/1.3 "Manrope", sans-serif; }
.catalog-price-filter input::-webkit-inner-spin-button { display: none; }
.catalog-filter-toggles { display: grid; grid-template-columns: 1fr 1fr; grid-column: 1 / -2; gap: 8px; }
.catalog-filter-reset { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 50px; padding: 0 14px; color: var(--stone); background: transparent; border: 0; font-size: 10px; font-weight: 600; cursor: pointer; }
.catalog-filter-reset:hover { color: var(--carbon); }
.catalog-filter-reset svg { width: 14px; height: 14px; }
.catalog-discount-toggle { display: flex; align-items: stretch; cursor: pointer; }
.catalog-discount-toggle input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; }
.catalog-discount-toggle span { display: flex; align-items: center; justify-content: center; gap: 8px; min-width: 164px; min-height: 50px; padding: 0 15px; color: var(--forest); border: 1px solid rgba(33,56,45,.28); border-radius: var(--radius-control); font-size: 10.5px; font-weight: 600; transition: color .18s ease, background .18s ease, border-color .18s ease; }
.catalog-discount-toggle svg { width: 15px; height: 15px; }
.catalog-discount-toggle input:checked + span { color: var(--white); background: var(--forest); border-color: var(--forest); }
.catalog-discount-toggle input:focus-visible + span { box-shadow: 0 0 0 3px rgba(33,56,45,.12); }
.filter-row { display: flex; gap: 24px; margin: 20px 0 30px; overflow-x: auto; border-bottom: 1px solid var(--mist); scrollbar-width: none; }
.filter-row::-webkit-scrollbar { display: none; }
.filter-button {
  flex: 0 0 auto;
  min-height: 48px;
  padding: 0 2px;
  color: var(--stone);
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  font-size: 12.5px;
  font-weight: 500;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease;
}
.filter-button:hover { color: var(--carbon); }
.filter-button.active { color: var(--carbon); background: transparent; border-bottom-color: var(--forest); }
.filter-button small { margin-left: 5px; font-size: 9px; opacity: .68; }
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 18px; }
.catalog-loading { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 18px; }
.catalog-loading-card { overflow: hidden; background: var(--chalk); border: 1px solid rgba(24,32,27,.08); border-radius: var(--radius-card); }
.catalog-loading-media { aspect-ratio: 4 / 3; background: var(--mist); animation: catalog-loading-pulse 1.35s ease-in-out infinite alternate; }
.catalog-loading-body { display: grid; gap: 15px; padding: 24px 22px 28px; }
.catalog-loading-body span { display: block; height: 12px; background: var(--mist); animation: catalog-loading-pulse 1.35s ease-in-out infinite alternate; }
.catalog-loading-body span:first-child { width: 34%; height: 9px; }
.catalog-loading-body span:nth-child(2) { width: 76%; height: 24px; }
.catalog-loading-body span:last-child { width: 52%; }
.catalog-loading-card:nth-child(2) .catalog-loading-media,
.catalog-loading-card:nth-child(2) .catalog-loading-body span { animation-delay: .15s; }
.catalog-loading-card:nth-child(3) .catalog-loading-media,
.catalog-loading-card:nth-child(3) .catalog-loading-body span { animation-delay: .3s; }
html[data-catalog-state="loading"] .catalog-toolbar,
html[data-catalog-state="loading"] .catalog-controls,
html[data-catalog-state="loading"] .filter-row { visibility: hidden; pointer-events: none; }
html[data-catalog-state="ready"] .catalog-loading,
html[data-catalog-state="error"] .catalog-loading { display: none; }
.catalog-load-error { margin: 0; padding: 76px 24px; color: var(--stone); background: rgba(251,250,246,.54); border: 1px solid var(--mist); text-align: center; }
.catalog-load-error[hidden] { display: none; }
.catalog-load-error > svg { width: 30px; height: 30px; margin: 0 auto 20px; color: var(--forest); stroke-width: 1.4; }
.catalog-load-error h3 { margin: 0; color: var(--carbon); font-family: "Prata", Georgia, serif; font-size: 28px; font-weight: 400; }
.catalog-load-error p { margin: 10px 0 22px; font-size: 13px; }
.catalog-load-error .dark-link { color: var(--carbon); }
@keyframes catalog-loading-pulse { from { opacity: .48; } to { opacity: .9; } }
.product-card { display: grid; grid-template-rows: auto 1fr; min-width: 0; background: var(--chalk); border: 1px solid rgba(24,32,27,.08); border-radius: var(--radius-card); overflow: hidden; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.product-card:hover { border-color: rgba(24,32,27,.2); box-shadow: 0 14px 34px rgba(24,32,27,.07); transform: translateY(-2px); }
.product-card[hidden] { display: none; }
.product-media { position: relative; aspect-ratio: 4 / 3; width: 100%; overflow: hidden; background: var(--mist); }
.product-open-media { display: block; width: 100%; height: 100%; padding: 0; background: transparent; border: 0; cursor: pointer; }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product-card:hover .product-media img { transform: scale(1.015); }
.stock-label {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 30px;
  padding: 0 10px;
  color: var(--carbon);
  background: rgba(252,251,248,.94);
  border-radius: 2px;
  font-size: 10.5px;
  font-weight: 600;
}
.stock-label svg { width: 13px; height: 13px; color: var(--forest); }
.product-outlet-badge { position: absolute; top: 56px; right: 14px; min-height: 30px; padding: 8px 10px 0; color: var(--white); background: rgba(33,56,45,.94); border-radius: 2px; font-size: 9.5px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.product-favorite-button { position: absolute; z-index: 2; top: 14px; right: 14px; display: grid; place-items: center; width: 34px; height: 34px; padding: 0; color: var(--carbon); background: rgba(252,251,248,.94); border: 1px solid rgba(24,32,27,.12); border-radius: 50%; cursor: pointer; transition: color .18s ease, background .18s ease, transform .18s ease; }
.product-favorite-button:hover { transform: scale(1.04); }
.product-favorite-button.selected { color: var(--white); background: var(--forest); border-color: var(--forest); }
.product-favorite-button svg { width: 16px; height: 16px; }
.product-favorite-button.selected svg { fill: currentColor; }
.product-gallery-size {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  color: var(--white);
  background: rgba(24,32,27,.8);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 600;
}
.product-gallery-size svg { width: 13px; height: 13px; stroke-width: 1.7; }
.product-body { display: grid; grid-template-rows: auto auto 1fr auto; align-content: start; padding: 20px 20px 18px; }
.product-kind-line { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; }
.product-kind-line > span { color: var(--stone); font-size: 9.5px; font-weight: 500; text-transform: uppercase; }
.product-kind { margin: 0 0 8px; color: var(--forest); font-size: 11px; font-weight: 600; text-transform: uppercase; }
.product-body h3 { display: -webkit-box; min-height: 58px; margin: 0 0 14px; overflow: hidden; font-family: "Prata", Georgia, serif; font-size: 21px; font-weight: 400; line-height: 1.3; -webkit-box-orient: vertical; -webkit-line-clamp: 2; }
.product-title-button { padding: 0; color: inherit; background: transparent; border: 0; font: inherit; line-height: inherit; text-align: left; cursor: pointer; }
.product-title-button:hover { color: var(--forest); }
.product-card-facts { display: grid; align-content: start; min-height: 91px; margin: 0 0 18px; }
.product-card-facts > div { display: grid; grid-template-columns: 82px minmax(0, 1fr); gap: 12px; padding: 9px 0; border-top: 1px solid rgba(24,32,27,.08); }
.product-card-facts dt { color: var(--forest); font-size: 9.5px; font-weight: 600; line-height: 1.45; text-transform: uppercase; }
.product-card-facts dd {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--stone);
  font-size: 12px;
  line-height: 1.55;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.product-card-footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; padding-top: 15px; border-top: 1px solid rgba(23,24,21,.1); }
.product-card-price { display: grid; gap: 2px; }
.product-card-price span { color: var(--stone); font-size: 9.5px; font-weight: 500; text-transform: uppercase; }
.product-card-price del { color: var(--stone); font-size: 10px; line-height: 1.2; }
.product-card-price strong { font-family: "Prata", Georgia, serif; font-size: 18px; font-weight: 400; line-height: 1.25; }
.product-card-price small { max-width: 140px; color: var(--stone); font-size: 9.5px; line-height: 1.4; }
.product-card-actions { display: flex; align-items: center; gap: 12px; }
.product-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 0 3px;
  color: var(--carbon);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-size: 11.5px;
  font-weight: 600;
  cursor: pointer;
}
.product-action svg { width: 14px; height: 14px; stroke-width: 1.7; }
.selection-add-button { display: inline-grid; place-items: center; width: 34px; height: 34px; padding: 0; color: var(--carbon); background: transparent; border: 1px solid rgba(24,32,27,.24); border-radius: 50%; cursor: pointer; }
.selection-add-button:hover, .selection-add-button.selected { color: var(--white); background: var(--forest); border-color: var(--forest); }
.selection-add-button svg { width: 15px; height: 15px; }
.button-quiet { color: var(--forest); background: transparent; border-color: transparent; }
.button-quiet:hover, .button-quiet.selected { color: var(--white); background: var(--forest); border-color: var(--forest); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--motion-reveal) var(--motion-ease), transform var(--motion-reveal) var(--motion-ease);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes hero-enter {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: hero-enter 700ms var(--motion-ease) both;
}
.hero-content > :nth-child(1) { animation-delay: 90ms; }
.hero-content > :nth-child(2) { animation-delay: 170ms; }
.hero-content > :nth-child(3) { animation-delay: 250ms; }
.hero-content > :nth-child(4) { animation-delay: 330ms; }
.catalog-load-more { margin: 32px auto 0; color: var(--carbon); background: transparent; border-color: var(--carbon); }
.catalog-load-more[hidden] { display: none; }
.catalog-empty { margin: 0; padding: 76px 24px; color: var(--stone); background: rgba(251,250,246,.54); border: 1px solid var(--mist); text-align: center; }
.catalog-empty[hidden] { display: none; }
.catalog-empty > svg { width: 30px; height: 30px; margin: 0 auto 20px; color: var(--forest); stroke-width: 1.4; }
.catalog-empty h3 { margin: 0; color: var(--carbon); font-family: "Prata", Georgia, serif; font-size: 28px; font-weight: 400; }
.catalog-empty p { margin: 10px 0 22px; font-size: 13px; }
.catalog-empty .dark-link { color: var(--carbon); }

.product-dialog {
  width: min(1180px, calc(100% - 32px));
  max-width: none;
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: hidden;
  color: var(--carbon);
  background: var(--chalk);
  border: 0;
  border-radius: var(--radius-card);
}
.product-dialog::backdrop { background: rgba(15,16,14,.82); }
.product-detail { position: relative; display: grid; grid-template-columns: minmax(0, 1.14fr) minmax(420px, .86fr); height: min(820px, calc(100dvh - 32px)); max-height: calc(100dvh - 32px); }
.product-detail-close { position: absolute; z-index: 4; top: 12px; right: 12px; color: var(--carbon); background: rgba(251,250,246,.92); }
.product-gallery { display: grid; grid-template-rows: minmax(0, 1fr) auto; min-width: 0; min-height: 680px; padding: 18px; background: var(--porcelain); }
.product-gallery-stage { position: relative; min-height: 0; overflow: hidden; background: #e6e3db; }
.product-gallery-stage > img { width: 100%; height: 100%; object-fit: contain; }
.product-gallery-control {
  position: absolute;
  top: 50%;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: var(--carbon);
  background: rgba(251,250,246,.9);
  border: 0;
  border-radius: 2px;
  transform: translateY(-50%);
  cursor: pointer;
}
.product-gallery-control[hidden] { display: none; }
.product-gallery-control.previous { left: 14px; }
.product-gallery-control.next { right: 14px; }
.product-gallery-control svg { width: 20px; height: 20px; }
.product-gallery-counter { position: absolute; right: 14px; bottom: 14px; min-width: 48px; padding: 7px 9px; color: var(--white); background: rgba(24,32,27,.82); font-size: 10px; text-align: center; }
.product-thumbnails { display: flex; gap: 8px; min-width: 0; padding-top: 12px; overflow-x: auto; scrollbar-width: thin; }
.product-thumbnails[hidden] { display: none; }
.product-thumbnails button { flex: 0 0 82px; width: 82px; aspect-ratio: 4 / 3; padding: 0; overflow: hidden; background: transparent; border: 1px solid transparent; cursor: pointer; opacity: .58; }
.product-thumbnails button.active { border-color: var(--forest); opacity: 1; }
.product-thumbnails img { width: 100%; height: 100%; object-fit: cover; }
.product-detail-content { min-width: 0; padding: 52px 46px 44px; overflow-y: auto; overscroll-behavior: contain; }
.product-detail-overline { display: flex; align-items: baseline; justify-content: space-between; gap: 20px; margin: 0 0 13px; padding-right: 38px; }
.product-detail-kind { margin: 0; color: var(--forest); font-size: 10.5px; font-weight: 600; text-transform: uppercase; }
.product-detail-content h2 { margin: 0; font-family: "Prata", Georgia, serif; font-size: clamp(32px, 2.7vw, 40px); font-weight: 400; line-height: 1.1; overflow-wrap: anywhere; }
.product-detail-content h2.is-long { font-size: clamp(29px, 2.35vw, 35px); line-height: 1.12; }
.product-detail-content h2.is-very-long { font-size: clamp(27px, 2.1vw, 32px); }
.product-detail-sku { flex: 0 0 auto; margin: 0; color: var(--stone); font-size: 9.5px; text-transform: uppercase; }
.product-detail-description { max-width: 58ch; margin: 24px 0 27px; color: #69665f; font-size: 14.5px; line-height: 1.75; }
.product-detail-availability { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 18px 0; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); font-size: 12.5px; }
.product-detail-availability span { display: inline-flex; align-items: center; gap: 7px; color: var(--forest); font-weight: 600; }
.product-detail-availability svg { width: 15px; height: 15px; }
.product-detail-availability strong { max-width: 56%; font-size: 12.5px; font-weight: 500; text-align: right; }
.product-detail-section-title { margin: 31px 0 6px; color: var(--carbon); font-size: 10.5px; font-weight: 700; letter-spacing: 0; text-transform: uppercase; }
.product-detail-section-title[hidden] { display: none; }
.product-detail-highlights { margin: 0; }
.product-detail-highlights[hidden] { display: none; }
.product-detail-highlights > div { display: grid; grid-template-columns: minmax(130px, .76fr) minmax(0, 1.24fr); gap: 22px; padding: 16px 0; border-bottom: 1px solid var(--mist); }
.product-detail-highlights span { color: var(--forest); font-size: 10px; font-weight: 650; line-height: 1.5; text-transform: uppercase; }
.product-detail-highlights p { margin: 0; color: #69665f; font-size: 13px; line-height: 1.7; }
.product-dimensions, .product-specifications { margin: 0; }
.product-dimensions[hidden], .product-materials[hidden], .product-specifications[hidden] { display: none; }
.product-dimensions > div { display: grid; grid-template-columns: minmax(120px, .78fr) minmax(0, 1.22fr); gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--mist); font-size: 13px; line-height: 1.55; }
.product-dimensions dt { color: var(--stone); }
.product-dimensions dd { display: grid; gap: 4px; margin: 0; font-variant-numeric: tabular-nums; text-align: right; }
.product-dimensions dd span { display: block; }
.product-materials { display: grid; margin: 0; }
.product-materials > div { display: grid; grid-template-columns: minmax(140px, .82fr) minmax(0, 1.18fr); gap: 22px; padding: 15px 0; border-bottom: 1px solid var(--mist); }
.product-materials strong { color: var(--forest); font-size: 11px; font-weight: 650; line-height: 1.5; }
.product-materials span { color: #69665f; font-size: 12.5px; line-height: 1.65; }
.product-specifications div { display: grid; grid-template-columns: minmax(120px, .86fr) minmax(0, 1.14fr); gap: 22px; padding: 14px 0; border-bottom: 1px solid var(--mist); font-size: 13px; line-height: 1.55; }
.product-specifications dt { color: var(--stone); }
.product-specifications dd { margin: 0; text-align: right; }
.product-detail-full { margin-top: 22px; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.product-detail-full[hidden] { display: none; }
.product-detail-full summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 15px 0; font-size: 10px; font-weight: 600; text-transform: uppercase; cursor: pointer; list-style: none; }
.product-detail-full summary::-webkit-details-marker { display: none; }
.product-detail-full summary svg { width: 15px; height: 15px; transition: transform .2s ease; }
.product-detail-full[open] summary svg { transform: rotate(180deg); }
.product-detail-full > div { max-width: 62ch; padding: 4px 0 24px; color: #69665f; font-size: 13.5px; line-height: 1.82; }
.product-detail-full h4 { margin: 22px 0 8px; color: var(--carbon); font-size: 11px; font-weight: 600; line-height: 1.45; text-transform: uppercase; }
.product-detail-full h4:first-child { margin-top: 4px; }
.product-detail-full p { margin: 0 0 16px; }
.product-detail-full p:last-child { margin-bottom: 0; }
.product-detail-full .product-description-point { position: relative; padding-left: 17px; color: var(--carbon); }
.product-detail-full .product-description-point::before { position: absolute; top: .78em; left: 0; width: 5px; height: 5px; background: var(--forest); border-radius: 50%; content: ""; }
.product-detail-purchase { margin-top: 26px; padding: 21px 0 24px; border-top: 1px solid var(--mist); border-bottom: 1px solid var(--mist); }
.product-detail-price { display: flex; align-items: baseline; gap: 10px; margin: 0 0 5px; }
.product-detail-price span { margin-right: auto; color: var(--stone); font-size: 10px; text-transform: uppercase; }
.product-detail-price strong { font-family: "Prata", Georgia, serif; font-size: 26px; font-weight: 400; }
.product-detail-price del { color: var(--stone); font-size: 11px; }
.product-detail-price em { padding: 4px 7px; color: var(--forest); background: rgba(33,56,45,.08); font-size: 9px; font-style: normal; font-weight: 700; text-transform: uppercase; }
.product-detail-price-note { margin: 0 0 17px; color: var(--stone); font-size: 10.5px; line-height: 1.5; }
.product-detail-actions { display: grid; gap: 9px; }
.button-outline { color: var(--carbon); background: transparent; border: 1px solid rgba(24,32,27,.3); }
.button-outline:hover, .button-outline.selected { color: var(--white); background: var(--forest); border-color: var(--forest); }
.product-detail-assurance { display: grid; gap: 0; margin-top: 26px; border-top: 1px solid var(--mist); }
.product-detail-assurance > div { display: flex; align-items: flex-start; gap: 12px; padding: 15px 0; border-bottom: 1px solid var(--mist); }
.product-detail-assurance svg { flex: 0 0 auto; width: 18px; height: 18px; margin-top: 2px; color: var(--forest); stroke-width: 1.6; }
.product-detail-assurance span { display: grid; gap: 3px; }
.product-detail-assurance strong { font-size: 11px; font-weight: 600; }
.product-detail-assurance small { color: var(--stone); font-size: 10px; }

.visualization-section { display: grid; grid-template-columns: 1.08fr .92fr; align-items: stretch; color: var(--white); background: var(--forest); }
.visualization-media { position: relative; min-height: 720px; overflow: hidden; }
.visualization-media img { width: 100%; height: 100%; object-fit: cover; }
.visualization-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  min-height: 32px;
  padding: 8px 11px;
  color: var(--carbon);
  background: rgba(252,251,248,.92);
  border-radius: 2px;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
}
.visualization-form { display: flex; flex-direction: column; justify-content: center; padding: 76px max(40px, calc((100vw - var(--max)) / 2)); padding-left: 72px; }
.visualization-form h2 { margin: 0; font-family: "Prata", Georgia, serif; font-size: 50px; font-weight: 400; line-height: 1.08; }
.visualization-form > p:not(.eyebrow, .visualization-note) { max-width: 560px; margin: 25px 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
.upload-control {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 78px;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2px;
  cursor: pointer;
  transition: border-color .18s ease, background .18s ease;
}
.upload-control:hover { border-color: var(--brass); background: rgba(255,255,255,.04); }
.upload-control input { position: absolute; width: 1px; height: 1px; overflow: hidden; opacity: 0; pointer-events: none; }
.upload-control svg { flex: 0 0 auto; width: 22px; height: 22px; color: var(--brass); }
.upload-control span { display: grid; gap: 4px; min-width: 0; }
.upload-control strong { font-size: 12px; font-weight: 600; }
.upload-control small { overflow: hidden; color: rgba(255,255,255,.56); font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
.field-label { display: grid; gap: 7px; margin-top: 15px; font-size: 10px; font-weight: 600; }
.visualization-form select, .visualization-form input:not([type="file"], [type="hidden"], [type="checkbox"]) {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  color: var(--white);
  background: transparent;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 2px;
  outline: 0;
}
.visualization-form select { color-scheme: dark; }
.visualization-form select:focus, .visualization-form input:focus { border-color: var(--brass); }
.visualization-form .consent { align-items: center; color: rgba(255,255,255,.74); line-height: 1.45; }
.visualization-form .consent input { flex: 0 0 auto; width: 16px; height: 16px; min-height: 0; padding: 0; accent-color: var(--brass); }
.visualization-form .consent a { color: var(--white); text-underline-offset: 2px; }
.visualization-form .button { margin-top: 20px; color: var(--carbon); background: var(--brass); }
.visualization-note { margin: 12px 0 0; color: rgba(255,255,255,.52); font-size: 10px; text-align: center; }

.value-band { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 680px; color: var(--white); background: var(--carbon-soft); }
.value-image-wrap { min-height: 520px; }
.value-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.value-content { display: flex; flex-direction: column; justify-content: center; padding: 80px max(40px, calc((100vw - var(--max)) / 2)); padding-left: 80px; }
.value-content > p:not(.eyebrow) { max-width: 560px; margin: 27px 0; color: rgba(255,255,255,.72); font-size: 14px; line-height: 1.7; }
.check-list { display: grid; gap: 15px; margin: 0 0 28px; padding: 0; list-style: none; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; }
.check-list svg { flex: 0 0 auto; width: 18px; color: var(--brass); }
.check-list span { font-size: 13px; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin: 64px 0 0; padding: 0; border-top: 1px solid var(--mist); list-style: none; }
.process-grid li { min-height: 258px; padding: 30px 34px 30px 0; border-right: 1px solid var(--mist); }
.process-grid li + li { padding-left: 34px; }
.process-grid li:last-child { border-right: 0; }
.process-grid span { color: var(--forest); font-size: 11px; font-weight: 600; }
.process-grid h3 { margin: 58px 0 10px; font-family: "Prata", Georgia, serif; font-size: 27px; font-weight: 400; }
.process-grid p { max-width: 290px; margin: 0; color: var(--stone); font-size: 13px; }

.pro-band { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; background: var(--mist); }
.pro-band img { width: 100%; height: 100%; min-height: 560px; object-fit: cover; }
.pro-copy { display: flex; flex-direction: column; justify-content: center; padding: 80px max(40px, calc((100vw - var(--max)) / 2)); padding-right: 80px; }
.pro-copy p:not(.eyebrow) { max-width: 520px; margin: 25px 0; font-size: 14px; line-height: 1.7; }
.pro-copy .button { align-self: flex-start; }
.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 92px max(24px, calc((100vw - var(--max)) / 2));
  color: var(--white);
  background: var(--carbon);
}
.final-cta h2 { max-width: 760px; }
.final-copy { max-width: 680px; margin: 18px 0 0; color: rgba(255,255,255,.68); font-size: 13px; line-height: 1.7; }

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1.5fr auto;
  align-items: center;
  gap: 30px;
  padding: 30px max(24px, calc((100vw - var(--max)) / 2));
  color: rgba(255,255,255,.58);
  background: var(--carbon);
  font-size: 10px;
}
.site-footer p { margin: 0; }
.site-footer .brand-lockup-image { width: 220px; filter: brightness(0) invert(1); }

.lead-dialog { width: min(520px, calc(100% - 32px)); padding: 0; border: 0; border-radius: var(--radius-card); background: var(--porcelain); }
.lead-dialog::backdrop { background: rgba(15,16,14,.78); }
.selection-dialog { width: min(720px, calc(100% - 32px)); max-height: calc(100dvh - 32px); padding: 0; border: 0; border-radius: var(--radius-card); background: var(--porcelain); }
.selection-dialog::backdrop { background: rgba(15,16,14,.78); }
.selection-panel { display: grid; grid-template-rows: auto minmax(0,1fr) auto; max-height: calc(100dvh - 32px); }
.selection-panel > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; padding: 34px 34px 25px; border-bottom: 1px solid var(--mist); }
.selection-panel h2 { margin: 0; font-family: "Prata", Georgia, serif; font-size: 34px; font-weight: 400; }
.selection-panel .eyebrow { margin-bottom: 10px; }
.selection-intro { max-width: 510px; margin: 12px 0 0; color: var(--stone); font-size: 12px; line-height: 1.6; }
.selection-items { min-height: 0; padding: 0 34px; overflow-y: auto; }
.selection-items[hidden], .selection-empty[hidden] { display: none; }
.selection-item { display: grid; grid-template-columns: 92px minmax(0,1fr) 38px; align-items: center; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--mist); }
.selection-item-media { width: 92px; aspect-ratio: 4 / 3; padding: 0; overflow: hidden; background: var(--mist); border: 0; cursor: pointer; }
.selection-item-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.selection-item-media:hover img { transform: scale(1.025); }
.selection-item > div { display: grid; gap: 4px; }
.selection-item span { color: var(--forest); font-size: 9px; font-weight: 600; text-transform: uppercase; }
.selection-item-title { justify-self: start; padding: 0; color: var(--carbon); background: transparent; border: 0; font-family: "Prata", Georgia, serif; font-size: 17px; font-weight: 400; line-height: 1.3; text-align: left; cursor: pointer; }
.selection-item-title:hover { color: var(--forest); }
.selection-item small { color: var(--stone); font-size: 10px; }
.selection-item em { color: var(--carbon); font-size: 10px; font-style: normal; font-weight: 600; }
.selection-empty { display: grid; place-items: center; align-content: center; min-height: 280px; padding: 40px; color: var(--stone); text-align: center; }
.selection-empty svg { width: 28px; height: 28px; margin-bottom: 14px; color: var(--forest); }
.selection-empty p { max-width: 340px; margin: 0; font-size: 13px; line-height: 1.7; }
.selection-panel > footer { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; padding: 22px 34px 28px; color: var(--carbon); background: var(--chalk); border-top: 1px solid var(--mist); }
.selection-summary { display: grid; gap: 7px; min-width: 0; }
.selection-summary > p { max-width: 390px; margin: 0; color: var(--stone); font-size: 9.5px; line-height: 1.5; }
.selection-total { display: grid; gap: 4px; }
.selection-total span { color: var(--stone); font-size: 9px; text-transform: uppercase; }
.selection-total strong { font-family: "Prata", Georgia, serif; font-size: 20px; font-weight: 400; }
.selection-footer-actions { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.selection-clear { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; padding: 0; color: var(--stone); background: transparent; border: 0; font-size: 10px; font-weight: 600; cursor: pointer; }
.selection-clear:hover { color: var(--carbon); }
.selection-clear[hidden] { display: none; }
.selection-clear svg { width: 15px; height: 15px; }
.favorites-footer { align-items: center !important; justify-content: space-between; }
.favorites-dialog .selection-item { grid-template-columns: 92px minmax(0,1fr) 78px; }
.favorite-item-actions { display: flex !important; align-items: center; grid-auto-flow: column; gap: 7px !important; }
.favorite-item-cart { display: grid; place-items: center; width: 34px; height: 34px; padding: 0; color: var(--forest); background: transparent; border: 1px solid rgba(33,56,45,.26); border-radius: 50%; cursor: pointer; }
.favorite-item-cart:hover, .favorite-item-cart.selected { color: var(--white); background: var(--forest); border-color: var(--forest); }
.favorite-item-cart svg { width: 14px; height: 14px; }
.lead-form { position: relative; padding: 40px; }
.lead-form h2 { margin: 0; font-family: "Prata", Georgia, serif; font-size: 40px; font-weight: 400; line-height: 1.1; }
.form-intro { margin: 14px 0 26px; color: var(--stone); font-size: 13px; }
.close-button { position: absolute; top: 12px; right: 12px; }
.lead-form label:not(.consent) { display: grid; gap: 6px; margin: 0 0 14px; font-size: 11px; font-weight: 600; }
.lead-form input:not([type="checkbox"]), .lead-form select {
  width: 100%;
  min-height: 50px;
  padding: 0 13px;
  color: var(--carbon);
  background: var(--chalk);
  border: 1px solid var(--mist);
  border-radius: 2px;
  outline: 0;
}
.lead-form input:focus, .lead-form select:focus { border-color: var(--brass); box-shadow: 0 0 0 2px rgba(166,141,99,.16); }
.consent { display: flex; gap: 9px; align-items: flex-start; margin: 18px 0; color: var(--stone); font-size: 10px; }
.consent input { margin-top: 2px; }
.consent a { color: inherit; text-underline-offset: 2px; }
.button:disabled { opacity: .58; cursor: not-allowed; }
.button[aria-busy="true"] { cursor: wait; }
.form-note { margin: 11px 0 0; color: var(--stone); font-size: 9px; text-align: center; }
.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: 390px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--forest);
  border-radius: 2px;
  transform: translateY(150%);
  transition: transform .24s ease;
  font-size: 12px;
}
.toast.show { transform: translateY(0); }

@media (max-width: 1080px) {
  .desktop-nav { gap: 18px; }
  .hero h1 { font-size: 60px; }
  .product-grid, .catalog-loading { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-controls { grid-template-columns: minmax(0, 1fr) minmax(150px, auto); }
  .catalog-segments { grid-column: 1 / -1; }
  .catalog-filter-panel { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-price-filter { grid-column: 1 / -1; }
  .catalog-filter-toggles { grid-column: 1 / -1; }
  .catalog-discount-toggle span { width: 100%; }
  .catalog-loading-card:last-child { display: none; }
  .visualization-form, .value-content { padding-left: 52px; }
}

@media (max-width: 900px) {
  .desktop-nav, .desktop-cta { display: none; }
  .menu-button { display: inline-grid; }
  .mobile-nav {
    position: absolute;
    top: 86px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0;
    padding: 18px 32px 28px;
    color: var(--white);
    background: rgba(23,24,21,.98);
    border-bottom: 1px solid rgba(255,255,255,.16);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a { padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.12); font-size: 14px; }
  .mobile-nav .button { margin-top: 20px; }
  .hero { min-height: 760px; height: 94vh; }
  .hero-content { padding-top: 160px; }
  .hero h1 { font-size: 58px; }
  .availability-strip { grid-template-columns: 1fr 1fr; }
  .availability-strip div { min-height: 96px; padding: 20px; }
  .availability-strip div:last-child { display: none; }
  .section-heading { grid-template-columns: 1fr; gap: 22px; }
  .section-heading .eyebrow { margin-bottom: -5px; }
  .section-heading h1, .section-heading h2, .value-content h2, .pro-copy h2, .final-cta h2 { font-size: 46px; }
  .visualization-section, .value-band, .pro-band { grid-template-columns: 1fr; }
  .visualization-media { min-height: 520px; }
  .visualization-form { padding: 72px 32px; }
  .visualization-form h2 { font-size: 46px; }
  .value-image-wrap { min-height: 460px; }
  .value-content, .pro-copy { padding: 72px 32px; }
  .pro-band img { min-height: 420px; }
  .final-cta { align-items: flex-start; flex-direction: column; }
  .site-footer { grid-template-columns: 1fr; }
  .product-detail { grid-template-columns: 1fr; height: calc(100dvh - 32px); overflow-y: auto; }
  .product-gallery { display: block; height: min(calc(75vw + 110px), 700px); min-height: 0; }
  .product-gallery-stage { aspect-ratio: 4 / 3; }
  .product-detail-content { overflow: visible; }
}

@media (max-width: 640px) {
  html { scroll-padding-top: 72px; }
  section[id] { scroll-margin-top: 72px; }
  .site-header { min-height: 72px; padding: 0 16px; }
  .brand { gap: 10px; }
  .brand-lockup-image { width: 176px; }
  .selection-header-button { width: 40px; padding: 0; justify-content: center; }
  .selection-header-button > span { display: none; }
  .selection-header-button strong { position: absolute; margin: -25px 0 0 25px; }
  .mobile-nav { top: 72px; padding: 12px 16px 24px; }
  .hero { min-height: 720px; }
  .hero-image { object-position: 62% center; }
  .hero-overlay { background: rgba(17,20,17,.58); }
  .hero-content { width: calc(100% - 32px); margin-left: 16px; padding-top: 130px; }
  .eyebrow { margin-bottom: 17px; font-size: 10px; }
  .hero h1 { font-size: 36px; line-height: 1.1; }
  .hero-copy { margin: 20px 0 24px; font-size: 14px; line-height: 1.6; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 8px; }
  .hero-actions .button { width: 100%; }
  .availability-strip { padding: 0 16px; }
  .availability-strip div { padding: 17px 10px; }
  .availability-strip strong { font-size: 12px; }
  .availability-strip span { font-size: 9px; }
  .section-shell { width: calc(100% - 32px); padding: 82px 0; }
  .section-heading h1, .section-heading h2, .visualization-form h2, .value-content h2, .pro-copy h2, .final-cta h2 { font-size: 38px; }
  html[data-page="catalog"] .catalog-page { width: calc(100% - 32px); padding-top: 118px; }
  html[data-page="catalog"] .catalog-page .section-heading h1 { max-width: 100%; font-size: 34px; line-height: 1.14; }
  .catalog-preview .product-grid { margin-top: 36px; }
  .filter-row { margin-top: 36px; }
  .catalog-toolbar { align-items: stretch; flex-direction: column; gap: 10px; margin-top: 36px; }
  .catalog-search { width: 100%; }
  .catalog-controls { grid-template-columns: 1fr 1fr; gap: 8px; }
  .catalog-segments { grid-column: auto; min-height: 48px; }
  .catalog-segments { grid-column: 1 / -1; }
  .catalog-segments > button { padding: 0 8px; font-size: 9.5px; }
  .catalog-filters-toggle { min-width: 0; min-height: 48px; }
  .catalog-popover-trigger { min-height: 48px; }
  .catalog-popover-menu { position: fixed; z-index: 95; top: auto; right: 10px; bottom: 10px; left: 10px; width: auto; max-height: min(72dvh, 520px); padding: 10px; border-radius: 6px; box-shadow: 0 24px 80px rgba(15,16,14,.28); }
  .catalog-popover-menu button { min-height: 48px; font-size: 12px; }
  .catalog-discount-toggle span { min-height: 50px; }
  .catalog-filter-panel { position: fixed; z-index: 100; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: 1fr; align-content: start; width: 100%; max-height: 85dvh; margin: 0; padding: 0 14px 92px; overflow-y: auto; background: var(--chalk); border: 0; border-radius: 8px 8px 0 0; box-shadow: 0 -22px 70px rgba(15,16,14,.25); }
  .catalog-price-filter, .catalog-filter-toggles { grid-column: auto; }
  .catalog-filter-toggles { grid-template-columns: 1fr; }
  .catalog-filter-reset { min-height: 44px; }
  .catalog-filter-panel-header { position: sticky; z-index: 2; top: 0; display: flex; align-items: center; justify-content: space-between; margin: 0 -14px 8px; padding: 18px 14px 14px; background: var(--chalk); border-bottom: 1px solid var(--mist); }
  .catalog-filter-panel-header > div { display: grid; gap: 3px; }
  .catalog-filter-panel-header span { color: var(--stone); font-size: 8px; font-weight: 600; text-transform: uppercase; }
  .catalog-filter-panel-header strong { font-family: "Prata", Georgia, serif; font-size: 26px; font-weight: 400; }
  .catalog-filter-panel-footer { position: fixed; z-index: 102; right: 0; bottom: 0; left: 0; display: grid; grid-template-columns: auto 1fr; gap: 10px; padding: 12px 14px calc(12px + env(safe-area-inset-bottom)); background: rgba(251,250,246,.98); border-top: 1px solid var(--mist); }
  .catalog-filter-panel-footer .button { min-height: 48px; }
  .catalog-filter-panel > #catalog-filter-reset { display: none; }
  .filter-row { margin-top: 14px; }
  .product-grid, .catalog-loading { grid-template-columns: 1fr; gap: 16px; }
  .catalog-loading-card:not(:first-child) { display: none; }
  .product-body { padding: 20px; }
  .product-body h3 { min-height: 0; font-size: 25px; }
  .product-card-facts { min-height: 0; }
  .product-card-footer { align-items: center; }
  .catalog-empty, .catalog-load-error { padding: 58px 18px; }
  .product-dialog { width: 100%; max-height: 100dvh; margin: 0; border-radius: 0; }
  .product-detail { height: 100dvh; max-height: 100dvh; }
  .product-gallery { height: calc(75vw + 90px); padding: 0 0 10px; }
  .product-thumbnails { padding: 10px 16px 0; }
  .product-thumbnails button { flex-basis: 70px; width: 70px; }
  .product-gallery-control { width: 40px; height: 40px; }
  .product-detail-content { padding: 34px 20px 30px; }
  .product-detail-overline { padding-right: 40px; }
  .product-detail-content h2 { padding-right: 38px; font-size: 34px; }
  .product-detail-content h2.is-long { font-size: 30px; }
  .product-detail-content h2.is-very-long { font-size: 28px; }
  .product-detail-highlights > div { grid-template-columns: 1fr; gap: 6px; }
  .product-dimensions > div, .product-materials > div { grid-template-columns: 1fr; gap: 5px; }
  .product-dimensions dd { text-align: left; }
  .product-detail-section-title { margin-top: 25px; }
  .product-detail-close { position: fixed; }
  .visualization-media { min-height: 360px; }
  .visualization-form, .value-content, .pro-copy { padding: 62px 20px; }
  .upload-control { min-height: 72px; }
  .process-grid { grid-template-columns: 1fr; margin-top: 46px; }
  .process-grid li, .process-grid li + li { min-height: auto; padding: 25px 0 30px; border-right: 0; border-bottom: 1px solid var(--mist); }
  .process-grid h3 { margin: 26px 0 8px; }
  .pro-band img { min-height: 360px; }
  .pro-copy .button { width: 100%; }
  .final-cta { padding: 70px 20px; }
  .final-cta .button { width: 100%; }
  .center-button { width: 100%; }
  .lead-form { padding: 36px 20px 24px; }
  .lead-form h2 { font-size: 34px; }
  .selection-dialog { width: 100vw; max-width: none; height: 100dvh; max-height: none; margin: 0; border-radius: 0; }
  .selection-panel { min-height: 100dvh; max-height: 100dvh; }
  .selection-panel > header { padding: 26px 20px 20px; }
  .selection-panel h2 { font-size: 29px; }
  .selection-items { padding: 0 20px; }
  .selection-item { grid-template-columns: 72px minmax(0,1fr) 34px; gap: 12px; }
  .favorites-dialog .selection-item { grid-template-columns: 72px minmax(0,1fr) 74px; }
  .selection-item-media { width: 72px; }
  .selection-panel > footer { align-items: stretch; flex-direction: column; gap: 16px; padding: 20px; }
  .selection-footer-actions { align-items: stretch; flex-direction: column-reverse; gap: 10px; }
  .selection-panel > footer .button { width: 100%; }
  .selection-clear { justify-content: center; }
  .favorites-footer { align-items: stretch !important; flex-direction: column-reverse !important; }
  .toast { right: 16px; left: 16px; bottom: 16px; }
}

@media (prefers-reduced-motion: reduce) {
  .catalog-loading-media,
  .catalog-loading-body span { animation: none; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
  .hero-content > * { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

.form-honeypot { position:absolute !important; left:-10000px !important; width:1px !important; height:1px !important; opacity:0 !important; pointer-events:none !important; }
.turnstile-slot { min-height:65px; max-width:100%; overflow:hidden; }
.messenger-dock { position:fixed; z-index:70; right:20px; bottom:20px; display:grid; gap:8px; }
.messenger-button { width:132px; min-height:44px; padding:0 13px; border:1px solid rgba(255,255,255,.26); border-radius:2px; color:var(--white); display:flex; align-items:center; gap:9px; justify-content:flex-start; box-shadow:0 8px 24px rgba(16,23,18,.2); cursor:pointer; font-size:12px; font-weight:600; }
.messenger-button[hidden] { display:none; }
.messenger-button svg { width:17px; height:17px; flex:none; }
.messenger-button.whatsapp, .messenger-button.telegram, .messenger-button.phone { background:var(--forest); }
.messenger-button:focus-visible { outline:3px solid rgba(185,150,86,.45); outline-offset:2px; }
.consent-banner { position:fixed; z-index:90; left:20px; right:20px; bottom:20px; max-width:920px; margin:auto; padding:16px 18px; border:1px solid var(--mist); background:var(--chalk); color:var(--carbon); box-shadow:0 16px 46px rgba(16,23,18,.2); display:flex; align-items:center; justify-content:space-between; gap:20px; }
.consent-banner[hidden] { display:none; }
.consent-banner p { margin:0; max-width:620px; font-size:12px; line-height:1.55; }
.consent-banner a { color:inherit; }
.consent-banner div { display:flex; gap:8px; flex:none; }
.consent-banner button { min-height:38px; padding:0 12px; border:1px solid var(--forest); border-radius:2px; background:transparent; color:var(--forest); cursor:pointer; font:600 11px/1 "Manrope",sans-serif; }
.consent-banner button:last-child { background:var(--forest); color:var(--white); }
.legal-page { background:var(--porcelain); color:var(--carbon); }
.legal-header { min-height:72px; padding:0 clamp(20px,5vw,72px); border-bottom:1px solid var(--mist); display:flex; align-items:center; justify-content:space-between; }
.legal-header a { color:inherit; text-decoration:none; font-size:13px; }
.legal-header a:first-child img { display:block; width:190px; height:auto; }
.legal-document { width:min(820px,calc(100% - 40px)); margin:72px auto 120px; }
.legal-document h1 { max-width:700px; margin:12px 0 34px; font:400 clamp(38px,5vw,62px)/1.08 "Prata",serif; letter-spacing:0; }
.legal-document h2 { margin:38px 0 10px; font:400 22px/1.3 "Prata",serif; }
.legal-document p { color:var(--stone); font-size:15px; line-height:1.75; }
.legal-version { margin-top:56px; padding-top:20px; border-top:1px solid var(--mist); font-size:12px !important; }
@media (max-width:680px) { .messenger-dock { right:12px; bottom:12px; display:flex; } .messenger-button { width:48px; min-height:48px; padding:0; justify-content:center; } .messenger-button span { display:none; } .consent-banner { left:10px; right:10px; bottom:10px; padding:14px; align-items:stretch; flex-direction:column; } .consent-banner div { width:100%; } .consent-banner button { flex:1; white-space:normal; } }
