:root {
  --ink: #11110f;
  --charcoal: #1a1a17;
  --cream: #f1eee5;
  --paper: #faf8f2;
  --white: #ffffff;
  --orange: #ff5a1f;
  --orange-dark: #df4510;
  --green: #20bd67;
  --muted: #6f6c64;
  --line: rgba(17, 17, 15, 0.16);
  --font-sans: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-mono: "Courier New", Courier, monospace;
  --header-height: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

body.modal-open {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

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

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

button,
select {
  cursor: pointer;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

:focus-visible {
  outline: 3px solid rgba(255, 90, 31, 0.6);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  z-index: 200;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
}

.site-header {
  position: sticky;
  z-index: 60;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
  padding: 0 clamp(20px, 4vw, 68px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(17, 17, 15, 0.96);
  color: var(--white);
  backdrop-filter: blur(12px);
}

.brand {
  display: inline-flex;
  flex: none;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  transform: skew(-7deg);
  place-items: center;
  padding-right: 4px;
  background: var(--orange);
  color: var(--white);
  font-size: 28px;
  font-style: italic;
  font-weight: 950;
  letter-spacing: -4px;
}

.brand-name {
  color: var(--white);
  font-size: 18px;
  font-weight: 850;
  line-height: 0.85;
  letter-spacing: -0.7px;
}

.brand-name small {
  display: block;
  margin-top: 7px;
  color: #b6b5ae;
  font-size: 9px;
  letter-spacing: 3.4px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 36px);
  color: #d2d0c9;
  font-size: 13px;
}

.desktop-nav a {
  transition: color 0.2s ease;
}

.desktop-nav a:hover {
  color: var(--orange);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-selection {
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #d2d0c9;
  font-size: 12px;
  font-weight: 750;
}

.header-selection span {
  display: inline-grid;
  min-width: 21px;
  height: 21px;
  margin-left: 7px;
  padding: 0 5px;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 10px;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 44px;
  padding: 0 17px;
  background: var(--orange);
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: transparent;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: var(--white);
}

.mobile-menu {
  position: fixed;
  z-index: 150;
  inset: 0;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  background: var(--ink);
  color: var(--white);
}

.mobile-menu > .brand {
  width: max-content;
}

.mobile-menu nav {
  display: grid;
  margin: auto 0;
}

.mobile-menu nav a {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: clamp(30px, 10vw, 48px);
  font-weight: 760;
  letter-spacing: -0.05em;
}

.mobile-menu nav span {
  color: var(--orange);
  font: 11px var(--font-mono);
  letter-spacing: 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 26px;
  color: #d4d1c7;
  font: 11px var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 2px;
  background: var(--orange);
}

.eyebrow-dark {
  color: #65635c;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: 680px;
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
}

.hero-copy {
  position: relative;
  align-content: center;
  padding: clamp(72px, 7vw, 112px) clamp(36px, 5vw, 80px) clamp(70px, 7vw, 112px)
    clamp(28px, 6vw, 100px);
}

.hero-copy::after {
  position: absolute;
  top: 8%;
  right: 5%;
  width: 150px;
  height: 150px;
  transform: rotate(22deg);
  border: 1px solid rgba(255, 255, 255, 0.09);
  content: "";
}

.hero h1 {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0;
  font-size: clamp(56px, 6.3vw, 102px);
  font-weight: 790;
  line-height: 0.88;
  letter-spacing: -0.07em;
}

.hero h1 em,
.section-heading h2 em,
.catalog-heading h2 em,
.integral-intro h2 em,
.location-copy h2 em,
.quote-copy h2 em,
.thanks-card h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 630px;
  margin: 34px 0 0;
  color: #b7b5ae;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  min-height: 52px;
  padding: 0 20px;
  border: 0;
  font-size: 13px;
  font-weight: 780;
  transition: transform 0.2s ease, background 0.2s ease;
}

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

.button-primary {
  background: var(--orange);
  color: var(--white);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.trust-row strong,
.trust-row span {
  display: block;
}

.trust-row strong {
  font-size: 13px;
}

.trust-row span {
  margin-top: 5px;
  color: #817f79;
  font-size: 11px;
}

.hero-gallery {
  position: relative;
  display: grid;
  grid-template-columns: 1.34fr 0.86fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  min-height: 680px;
  background: #2a2925;
}

.hero-photo {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  background: #f3f1eb;
}

.hero-photo-main {
  grid-row: 1 / 3;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.hero-photo-main img {
  object-position: 50% 50%;
}

.hero-photo-top img,
.hero-photo-bottom img {
  object-fit: contain;
}

.hero-photo:hover img {
  transform: scale(1.025);
}

.hero-photo figcaption {
  position: absolute;
  bottom: 18px;
  left: 20px;
  padding: 9px 12px;
  background: rgba(17, 17, 15, 0.84);
  color: var(--white);
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.hero-photo figcaption span {
  margin-right: 9px;
  color: var(--orange);
}

.hero-stamp {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 188px;
  min-height: 122px;
  padding: 22px;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  line-height: 1.35;
}

.hero-stamp strong {
  font-size: 17px;
}

.hero-stamp span {
  position: absolute;
  right: 18px;
  bottom: 15px;
  font-size: 20px;
}

.category-ribbon {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 18px;
  min-height: 62px;
  padding: 16px 4vw;
  overflow: hidden;
  background: var(--orange);
  color: var(--white);
  font-size: clamp(12px, 1.05vw, 15px);
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
}

.category-ribbon b {
  color: var(--ink);
}

.print-section {
  padding: clamp(82px, 8vw, 132px) clamp(20px, 5vw, 80px);
  background: var(--paper);
}

.print-heading {
  margin-bottom: 44px;
}

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

.print-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.print-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 42px rgba(25, 23, 18, 0.11);
}

.print-card-wide {
  display: grid;
  grid-column: span 2;
  grid-template-columns: minmax(0, 1.18fr) minmax(260px, 0.82fr);
}

.print-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e8e5dd;
}

.print-card-wide .print-card-image {
  height: 100%;
  min-height: 430px;
  aspect-ratio: auto;
}

.print-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.55s ease;
}

.print-card:hover .print-card-image img {
  transform: scale(1.035);
}

.print-card-image > span {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  background: rgba(17, 17, 15, 0.88);
  color: var(--white);
  font: 9px var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.print-card-copy {
  display: flex;
  min-height: 236px;
  flex: 1;
  flex-direction: column;
  padding: clamp(22px, 3vw, 38px);
}

.print-card-copy small {
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.print-card-copy h3 {
  margin: 12px 0;
  font-size: clamp(26px, 2.4vw, 38px);
  line-height: 0.98;
  letter-spacing: -0.05em;
}

.print-card-copy p {
  margin: 0 0 26px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.print-card-copy button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: auto;
  padding: 13px 0 8px;
  border: 0;
  border-top: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 780;
  text-align: left;
}

.print-card-copy button b {
  color: var(--orange);
  font-size: 17px;
}

.print-card-accent {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--white);
}

.print-card-accent .print-card-copy small,
.print-card-accent .print-card-copy button b {
  color: var(--ink);
}

.print-card-accent .print-card-copy p {
  color: rgba(255, 255, 255, 0.82);
}

.print-card-accent .print-card-copy button {
  border-color: var(--white);
  color: var(--white);
}

.technique-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.technique-strip > div {
  padding: 23px;
  border-right: 1px solid var(--line);
}

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

.technique-strip strong,
.technique-strip span {
  display: block;
}

.technique-strip strong {
  font-size: 13px;
}

.technique-strip span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 10px;
}

.family-section,
.catalog-section,
.print-section,
.location-section {
  scroll-margin-top: var(--header-height);
}

.family-section {
  padding: clamp(78px, 8vw, 130px) clamp(20px, 5vw, 80px);
  background: var(--cream);
}

.section-heading,
.catalog-heading {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 52px;
}

.section-heading h2,
.catalog-heading h2 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(42px, 5.2vw, 82px);
  line-height: 0.95;
  letter-spacing: -0.06em;
}

.section-heading > p,
.catalog-heading > p {
  max-width: 450px;
  margin: 0 0 7px;
  color: #65635c;
  font-size: 15px;
  line-height: 1.7;
}

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

.family-card {
  position: relative;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.12);
  background: var(--paper);
  text-align: left;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.family-card::after {
  position: absolute;
  right: -40px;
  bottom: -55px;
  width: 145px;
  height: 145px;
  transform: rotate(28deg);
  border: 1px solid rgba(17, 17, 15, 0.12);
  content: "";
}

.family-card:hover {
  transform: translateY(-4px);
  background: var(--ink);
  color: var(--white);
}

.family-card > span {
  position: absolute;
  top: 18px;
  left: 18px;
  color: var(--orange);
  font: 10px var(--font-mono);
}

.family-card > div {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.family-card strong {
  display: block;
  max-width: 220px;
  font-size: clamp(20px, 1.8vw, 28px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.family-card small {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid currentColor;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.family-card:hover small {
  color: #bbb8af;
}

.family-card small b {
  color: var(--orange);
}

.catalog-section {
  padding: clamp(80px, 8vw, 132px) clamp(20px, 5vw, 80px);
  background: var(--paper);
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 46px 0 18px;
}

.search-box {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 14px;
  max-width: 880px;
  height: 62px;
  padding: 0 20px;
  border: 1px solid var(--line);
  background: var(--white);
}

.search-box svg {
  flex: none;
  width: 22px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.8;
}

.search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 15px;
}

.search-box button {
  border: 0;
  background: transparent;
  color: #77746b;
  font-size: 23px;
}

.result-count {
  margin-left: auto;
  color: #76736a;
  font-size: 12px;
  white-space: nowrap;
}

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

.filter-strip {
  display: flex;
  gap: 7px;
  padding: 0 0 20px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.filter-strip button {
  flex: none;
  padding: 11px 13px;
  border: 1px solid var(--line);
  background: transparent;
  font-size: 11px;
  transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-strip button span {
  margin-left: 5px;
  color: #959188;
}

.filter-strip button:hover,
.filter-strip button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.filter-strip button.active span {
  color: var(--orange);
}

.advanced-filters {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  align-items: end;
  gap: 8px;
  margin-bottom: 25px;
  padding: 16px;
  border: 1px solid var(--line);
  background: var(--cream);
}

.advanced-filters label > span {
  display: block;
  margin: 0 0 7px;
  color: #6f6b63;
  font: 9px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.advanced-filters select {
  width: 100%;
  height: 42px;
  padding: 0 36px 0 12px;
  border: 1px solid rgba(17, 17, 15, 0.17);
  border-radius: 0;
  background: var(--white);
  font-size: 11px;
}

.reset-filters {
  height: 42px;
  padding: 0 15px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}

.reset-filters:hover {
  background: var(--ink);
  color: var(--white);
}

.active-filter-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: -8px 0 25px;
}

.active-filter-row > span {
  color: #757168;
  font: 9px var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.active-filter-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.active-filter-row button {
  padding: 7px 9px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
}

.active-filter-row button b {
  margin-left: 7px;
  color: var(--orange);
}

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 15, 0.08);
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 38px rgba(25, 23, 18, 0.1);
}

.product-open {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
}

.product-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #efeee9;
}

.product-image > img {
  width: 100%;
  height: 100%;
  padding: 7px;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s ease;
}

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

.product-expand {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  transform: translateY(-52px);
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 17px;
  transition: transform 0.25s ease;
}

.product-card:hover .product-expand {
  transform: translateY(0);
}

.image-count {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 6px 8px;
  background: rgba(17, 17, 15, 0.82);
  color: var(--white);
  font: 9px var(--font-mono);
}

.variant-count {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  background: var(--orange);
  color: var(--white);
  font: 9px var(--font-mono);
}

.product-placeholder {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  overflow: hidden;
  background: #dedbd2;
  color: var(--ink);
}

.product-placeholder::before,
.product-placeholder::after {
  position: absolute;
  width: 130px;
  height: 130px;
  transform: rotate(28deg);
  border: 1px solid rgba(17, 17, 15, 0.13);
  content: "";
}

.product-placeholder::before {
  top: -70px;
  right: -45px;
}

.product-placeholder::after {
  bottom: -82px;
  left: -40px;
}

.product-placeholder svg {
  width: 88px;
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.2;
}

.product-placeholder b {
  position: absolute;
  bottom: 14px;
  left: 14px;
  max-width: calc(100% - 28px);
  color: #68655d;
  font: 8px var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-meta {
  display: flex;
  min-height: 172px;
  flex-direction: column;
  padding: 18px 18px 14px;
}

.product-kicker {
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-title {
  display: -webkit-box;
  min-height: 2.35em;
  margin: 9px 0 8px;
  overflow: hidden;
  font-size: 16px;
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: -0.025em;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-spec {
  color: #77736b;
  font-size: 10px;
  line-height: 1.4;
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-top: auto;
  border-top: 1px solid #e7e3d9;
}

.product-actions button {
  min-height: 44px;
  border: 0;
  background: transparent;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-actions .card-details {
  padding-left: 0;
  text-align: left;
}

.product-actions .card-add {
  width: 48px;
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
  font-weight: 400;
}

.product-actions .card-add:hover,
.product-actions .card-add.added {
  background: var(--orange);
}

.load-more {
  display: flex;
  justify-content: center;
  gap: 18px;
  width: 100%;
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 13px;
  font-weight: 750;
}

.load-more:hover {
  background: var(--ink);
  color: var(--white);
}

.load-more span {
  color: #858178;
  font-weight: 450;
}

.empty-state {
  padding: 90px 20px;
  border: 1px solid var(--line);
  text-align: center;
}

.empty-state > span {
  color: var(--orange);
  font-size: 52px;
}

.empty-state h3 {
  margin: 8px 0;
  font-size: 32px;
}

.empty-state p {
  max-width: 530px;
  margin: 0 auto 24px;
  color: var(--muted);
  line-height: 1.6;
}

.empty-state button {
  padding: 0 0 6px;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  font-weight: 750;
}

.integral-section {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  padding: clamp(84px, 8vw, 130px) clamp(22px, 6vw, 100px);
  background: #24231f;
  color: var(--white);
}

.integral-intro {
  position: sticky;
  top: calc(var(--header-height) + 32px);
  align-self: start;
}

.integral-intro h2 {
  margin: 0;
  font-size: clamp(48px, 5vw, 76px);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.integral-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin-top: 28px;
  color: #aaa79f;
  line-height: 1.68;
}

.process-list {
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list article {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: start;
  gap: 24px;
  min-height: 150px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.process-list article > span {
  color: var(--orange);
  font: 11px var(--font-mono);
}

.process-list h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.04em;
}

.process-list p {
  max-width: 580px;
  margin: 0;
  color: #aaa79f;
  font-size: 13px;
  line-height: 1.6;
}

.process-list article > b {
  color: var(--orange);
  font-size: 19px;
}

.orange-cta {
  display: grid;
  min-height: 530px;
  align-content: center;
  justify-items: center;
  padding: 90px 7vw;
  background: var(--orange);
  color: var(--white);
  text-align: center;
}

.orange-cta > p {
  font: 10px var(--font-mono);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.orange-cta h2 {
  margin: 14px 0 36px;
  font-size: clamp(44px, 6vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.orange-cta a {
  display: flex;
  justify-content: space-between;
  min-width: min(100%, 350px);
  padding: 18px 20px;
  border: 1px solid var(--white);
  font-size: 13px;
  font-weight: 760;
}

.orange-cta a:hover {
  background: var(--white);
  color: var(--orange);
}

.location-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: center;
  padding: clamp(80px, 8vw, 132px) clamp(22px, 7vw, 115px);
  background: var(--cream);
}

.location-copy h2 {
  max-width: 620px;
  margin: 0;
  font-size: clamp(50px, 5.6vw, 86px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.location-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.location-copy address {
  margin: 0 0 30px;
  padding: 19px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-style: normal;
}

.location-copy address span,
.location-copy address strong {
  display: block;
}

.location-copy address span {
  margin-bottom: 10px;
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.location-copy address strong {
  font-size: 19px;
  line-height: 1.45;
}

.location-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 360px);
  min-height: 56px;
  padding: 0 18px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 780;
  transition: background 0.2s ease, transform 0.2s ease;
}

.location-button:hover {
  transform: translateY(-2px);
  background: var(--orange);
}

.map-card {
  position: relative;
  min-width: 0;
  padding: 10px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(25, 23, 18, 0.14);
}

.map-card iframe {
  display: block;
  filter: grayscale(0.25) contrast(1.03);
}

.map-card > div {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(17, 17, 15, 0.92);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.map-card > div span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
}

.map-card > div strong {
  font-size: 11px;
  text-align: right;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 7vw;
  padding: clamp(80px, 8vw, 135px) clamp(22px, 7vw, 115px);
  background: var(--ink);
  color: var(--white);
}

.quote-copy h2 {
  margin: 0;
  font-size: clamp(52px, 6.2vw, 94px);
  line-height: 0.9;
  letter-spacing: -0.065em;
}

.quote-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 28px 0 40px;
  color: #aaa79f;
  line-height: 1.7;
}

.contact-data {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-data > a,
.contact-data > div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.contact-data span {
  color: #77746d;
  font-size: 11px;
}

.contact-data strong {
  text-align: right;
  font-size: 12px;
}

.quote-form {
  padding: clamp(24px, 4vw, 56px);
  background: var(--cream);
  color: var(--ink);
}

.hidden-field {
  position: absolute;
  left: -10000px;
}

.form-selection-preview {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4px 18px;
  margin-bottom: 28px;
  padding: 17px;
  border-left: 4px solid var(--orange);
  background: var(--white);
}

.form-selection-preview > span {
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-selection-preview > strong {
  grid-column: 1;
  font-size: 13px;
}

.form-selection-preview > button {
  grid-column: 2;
  grid-row: 1 / 3;
  padding: 9px 11px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 10px;
  font-weight: 750;
}

.form-selection-lines {
  display: grid;
  grid-column: 1 / -1;
  gap: 0;
  margin-top: 12px;
  border-top: 1px solid var(--line);
}

.form-selection-lines article {
  display: grid;
  grid-template-columns: 25px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(17, 17, 15, 0.1);
}

.form-selection-lines article > span {
  color: var(--orange);
  font: 9px var(--font-mono);
}

.form-selection-lines article > div {
  display: grid;
  gap: 2px;
}

.form-selection-lines article strong {
  color: #77736b;
  font: 8px var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.form-selection-lines article b {
  font-size: 11px;
  line-height: 1.25;
}

.form-selection-lines article small {
  color: #77736b;
  font-size: 8px;
  line-height: 1.35;
}

.form-selection-lines article em {
  color: var(--orange-dark);
  font: 9px var(--font-mono);
  font-style: normal;
  white-space: nowrap;
}

.quote-form label {
  display: block;
  margin-bottom: 24px;
  color: #5e5a53;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form input:not([type="checkbox"]):not([type="file"]),
.quote-form select,
.quote-form textarea {
  width: 100%;
  margin-top: 9px;
  padding: 14px 0;
  border: 0;
  border-bottom: 1px solid #aaa69c;
  border-radius: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-bottom-color: var(--orange);
}

.quote-form textarea {
  resize: vertical;
}

.file-field {
  padding: 15px;
  border: 1px dashed #aaa69c;
}

.file-field > span {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}

.file-field small {
  color: #8b877e;
  font-size: 8px;
  font-weight: 500;
}

.file-field input {
  width: 100%;
  font-size: 11px;
  text-transform: none;
}

.consent-field {
  display: grid !important;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-size: 9px !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent-field input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--orange);
}

.form-submit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 58px;
  padding: 0 20px;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-weight: 800;
}

.form-submit:hover {
  background: var(--orange-dark);
}

.form-submit:disabled {
  cursor: wait;
  opacity: 0.68;
}

.quote-form > p:last-child {
  margin: 12px 0 0;
  color: #8b877e;
  font-size: 10px;
  text-align: center;
}

.thanks-popup-backdrop {
  position: fixed;
  z-index: 210;
  display: grid;
  padding: 22px;
  place-items: center;
  inset: 0;
  background: rgba(5, 5, 4, 0.86);
  backdrop-filter: blur(8px);
}

.thanks-popup-card {
  position: relative;
  width: min(560px, 100%);
  padding: clamp(32px, 6vw, 62px);
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  text-align: center;
}

.thanks-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 24px;
}

.thanks-popup-mark {
  display: grid;
  width: 66px;
  height: 66px;
  margin: 0 auto 22px;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 31px;
}

.thanks-popup-card > p:first-of-type {
  margin: 0 0 11px;
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.thanks-popup-card h2 {
  margin: 0;
  font-size: clamp(34px, 5vw, 52px);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.thanks-popup-card > p:last-of-type {
  margin: 23px auto 28px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.thanks-popup-card .button {
  width: 100%;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr auto;
  align-items: end;
  gap: 40px;
  padding: 44px clamp(22px, 5vw, 80px);
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  background: #080807;
  color: var(--white);
}

.site-footer > p {
  margin: 0;
  color: #77746d;
  font-size: 12px;
  line-height: 1.5;
}

.site-footer > p a:hover {
  color: var(--orange);
}

.site-footer > div {
  display: flex;
  gap: 18px;
  color: #aaa79f;
  font-size: 11px;
}

.site-footer > span {
  color: #5d5b56;
  font-size: 10px;
}

.modal-backdrop {
  position: fixed;
  z-index: 180;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 5, 4, 0.86);
  backdrop-filter: blur(8px);
}

.product-modal-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  width: min(1080px, 100%);
  height: min(790px, 94vh);
  max-height: min(790px, 94vh);
  align-items: stretch;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.45);
}

.modal-close {
  position: absolute;
  z-index: 5;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 25px;
  font-weight: 300;
}

.modal-gallery {
  position: relative;
  display: grid;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  background: #e9eaec;
  touch-action: pan-y;
}

.modal-image-stage {
  position: absolute;
  display: grid;
  padding: clamp(12px, 2vw, 24px);
  place-items: center;
  inset: 0;
}

.modal-main-image {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  opacity: 1;
  transition: opacity 0.22s ease;
}

.modal-image-stage.is-loading .modal-main-image {
  opacity: 0;
}

.modal-image-loader {
  position: absolute;
  z-index: 0;
  width: 42px;
  height: 42px;
  border: 3px solid rgba(17, 17, 15, 0.12);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: modal-image-spin 0.75s linear infinite;
}

.modal-image-stage:not(.is-loading) .modal-image-loader {
  display: none;
}

@keyframes modal-image-spin {
  to {
    transform: rotate(360deg);
  }
}

.modal-placeholder {
  min-height: 0;
  height: 100%;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  transform: translateY(-50%);
  place-items: center;
  border: 0;
  background: rgba(17, 17, 15, 0.9);
  color: var(--white);
  font-size: 20px;
}

.gallery-prev {
  left: 12px;
}

.gallery-next {
  right: 12px;
}

.gallery-progress {
  position: absolute;
  bottom: 14px;
  left: 50%;
  display: flex;
  width: min(210px, 56%);
  align-items: center;
  gap: 10px;
  transform: translateX(-50%);
}

.gallery-progress > span {
  position: relative;
  display: block;
  height: 4px;
  flex: 1;
  background: rgba(17, 17, 15, 0.28);
}

.gallery-progress i {
  display: block;
  height: 100%;
  background: var(--orange);
  transition: width 0.25s ease;
}

.gallery-progress b {
  padding: 5px 7px;
  background: rgba(17, 17, 15, 0.88);
  color: var(--white);
  font: 8px var(--font-mono);
  white-space: nowrap;
}

.modal-copy {
  min-height: 0;
  align-self: stretch;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding: clamp(34px, 5vw, 70px);
}

.modal-kicker {
  margin: 0 0 13px;
  color: var(--orange);
  font: 10px var(--font-mono);
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.modal-copy h2 {
  margin: 0;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 0.95;
  letter-spacing: -0.055em;
}

.modal-rule {
  display: block;
  width: 52px;
  height: 3px;
  margin: 25px 0;
  background: var(--orange);
}

.modal-description {
  color: #666259;
  font-size: 14px;
  line-height: 1.65;
}

.modal-note {
  margin: 14px 0 0;
  padding: 11px 13px;
  border-left: 3px solid var(--orange);
  background: var(--cream);
  color: #5f5b53;
  font-size: 11px;
  line-height: 1.5;
}

.modal-variants,
.modal-sizes,
.modal-techniques,
.modal-quantity-picker {
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.modal-variants header,
.modal-sizes header,
.modal-techniques header,
.modal-quantity-picker header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 3px 12px;
  margin-bottom: 11px;
}

.modal-variants header span,
.modal-sizes header span,
.modal-techniques header span,
.modal-quantity-picker header span {
  grid-column: 1;
  color: #79756d;
  font: 8px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.modal-variants header strong,
.modal-sizes header strong,
.modal-techniques header strong,
.modal-quantity-picker header strong {
  grid-column: 1;
  font-size: 14px;
}

.modal-variants header small,
.modal-sizes header small,
.modal-techniques header small,
.modal-quantity-picker header small {
  grid-column: 2;
  grid-row: 1 / 3;
  align-self: center;
  color: #77736b;
  font: 9px var(--font-mono);
}

.variant-carousel {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) 36px;
  align-items: stretch;
  gap: 7px;
}

.variant-options {
  display: grid;
  grid-auto-columns: 88px;
  grid-auto-flow: column;
  gap: 7px;
  overflow-x: auto;
  padding: 2px;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.variant-options::-webkit-scrollbar {
  display: none;
}

.variant-carousel-nav {
  min-width: 0;
  padding: 0;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 20px;
}

.variant-carousel-nav:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.variant-carousel-nav:disabled {
  cursor: default;
  opacity: 0.28;
}

.variant-option {
  display: grid;
  gap: 6px;
  min-width: 0;
  padding: 5px;
  border: 1px solid #d7d3ca;
  background: var(--white);
  scroll-snap-align: center;
  text-align: left;
}

.variant-option > span {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #ece8df;
}

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

.variant-option b {
  overflow: hidden;
  font-size: 8px;
  font-weight: 690;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.variant-option.active {
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.variant-hint {
  margin: 7px 43px 0;
  color: #8b877e;
  font-size: 8px;
}

.technique-options,
.quantity-options {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.technique-options button,
.quantity-options button {
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid #d0ccc2;
  background: var(--white);
  font-size: 9px;
  line-height: 1.2;
}

.technique-options button.active,
.quantity-options button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.quantity-options button {
  min-width: 43px;
  font-family: var(--font-mono);
}

.quantity-options .quantity-custom-trigger {
  min-width: 58px;
  border-color: var(--orange);
  color: var(--orange);
}

.quantity-options .quantity-custom-trigger.active {
  background: var(--orange);
  color: var(--white);
}

.custom-quantity {
  display: grid;
  gap: 7px;
  margin-top: 10px;
  color: #706c63;
  font: 8px var(--font-mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.custom-quantity input {
  width: 100%;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--orange);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 13px;
  text-transform: none;
}

.modal-quantity-picker > p {
  margin: 8px 0 0;
  color: #7b776e;
  font-size: 9px;
  line-height: 1.45;
}

.size-options {
  display: flex;
  max-height: 126px;
  flex-wrap: wrap;
  gap: 6px;
  overflow: auto;
  padding: 2px;
}

.size-options button {
  min-width: 40px;
  min-height: 34px;
  padding: 6px 9px;
  border: 1px solid #d0ccc2;
  background: var(--white);
  font: 9px var(--font-mono);
}

.size-options button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}

.size-options button:disabled {
  cursor: not-allowed;
  opacity: 0.34;
  text-decoration: line-through;
}

.modal-sizes > p {
  margin: 9px 0 0;
  color: #7b776e;
  font-size: 9px;
  line-height: 1.5;
}

.modal-specs {
  margin: 25px 0;
  border-top: 1px solid var(--line);
}

.modal-specs span {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}

.modal-specs b {
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.modal-quote-controls {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}

.modal-quote-controls label {
  display: grid;
  gap: 6px;
  color: #706c63;
  font: 8px var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.modal-quote-controls input {
  width: 100%;
  height: 44px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: var(--white);
  font-family: var(--font-sans);
  font-size: 12px;
  text-transform: none;
}

.modal-add {
  width: 100%;
}

.modal-whatsapp {
  display: block;
  margin-top: 13px;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 740;
  text-align: center;
}

.drawer-backdrop {
  position: fixed;
  z-index: 165;
  inset: 0;
  background: rgba(5, 5, 4, 0.55);
  backdrop-filter: blur(3px);
}

.selection-drawer {
  position: fixed;
  z-index: 170;
  top: 0;
  right: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(470px, 100%);
  height: 100dvh;
  transform: translateX(102%);
  background: var(--paper);
  box-shadow: -28px 0 70px rgba(0, 0, 0, 0.22);
  visibility: hidden;
  transition: transform 0.3s ease, visibility 0.3s ease;
}

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

.selection-drawer > header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  padding: 26px;
  border-bottom: 1px solid var(--line);
  background: var(--ink);
  color: var(--white);
}

.selection-drawer header p {
  margin: 0 0 7px;
  color: var(--orange);
  font: 9px var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.selection-drawer header h2 {
  margin: 0;
  font-size: 30px;
  letter-spacing: -0.05em;
}

.selection-drawer header h2 span {
  color: var(--orange);
}

.selection-drawer header button {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  font-size: 25px;
}

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

.selection-item {
  display: grid;
  grid-template-columns: 76px 1fr auto;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.selection-thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: #e7e3da;
}

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

.selection-thumb .product-placeholder svg {
  width: 42px;
}

.selection-thumb .product-placeholder b {
  display: none;
}

.selection-info small {
  color: var(--orange);
  font: 8px var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-info strong {
  display: block;
  margin: 5px 0 10px;
  font-size: 13px;
  line-height: 1.2;
}

.selection-info p {
  margin: -3px 0 9px;
  color: #6f6b63;
  font-size: 9px;
  line-height: 1.35;
}

.selection-info .selection-technique {
  margin-top: -4px;
  color: var(--orange-dark);
}

.selection-quantity {
  display: flex;
  width: max-content;
  border: 1px solid var(--line);
}

.selection-quantity button,
.selection-quantity input {
  width: 32px;
  height: 30px;
  padding: 0;
  border: 0;
  background: var(--white);
  text-align: center;
  appearance: textfield;
}

.selection-quantity input {
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  font-size: 10px;
}

.selection-remove {
  align-self: start;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid #9d9990;
  background: transparent;
  color: #77736b;
  font-size: 9px;
}

.selection-empty {
  align-self: center;
  padding: 46px;
  text-align: center;
}

.selection-empty > span {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 17px;
  place-items: center;
  background: var(--orange);
  color: var(--white);
  font-size: 28px;
}

.selection-empty h3 {
  margin: 0 0 8px;
  font-size: 30px;
  letter-spacing: -0.04em;
}

.selection-empty p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.selection-empty button {
  margin-top: 10px;
  padding: 12px 15px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 11px;
  font-weight: 750;
}

.drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
  background: var(--cream);
}

.drawer-footer > p {
  margin: 0 0 14px;
  color: #6f6b63;
  font-size: 11px;
}

.drawer-form-button,
.drawer-whatsapp {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 50px;
  padding: 0 15px;
  border: 0;
  background: var(--orange);
  color: var(--white);
  font-size: 12px;
  font-weight: 780;
}

.drawer-whatsapp {
  justify-content: center;
  margin-top: 7px;
  background: var(--green);
}

.drawer-clear {
  display: block;
  margin: 13px auto 0;
  padding: 0 0 4px;
  border: 0;
  border-bottom: 1px solid #8c887f;
  background: transparent;
  color: #6d6961;
  font-size: 9px;
}

.selection-float,
.floating-whatsapp {
  position: fixed;
  z-index: 90;
  right: 20px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  transition: transform 0.2s ease;
}

.selection-float:hover,
.floating-whatsapp:hover {
  transform: translateY(-3px);
}

.selection-float {
  bottom: 90px;
  background: var(--orange);
}

.selection-float svg {
  width: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}

.selection-float span {
  position: absolute;
  top: -4px;
  right: -3px;
  display: grid;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  place-items: center;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--ink);
  font-size: 9px;
}

.floating-whatsapp {
  bottom: 20px;
  background: var(--green);
}

.floating-whatsapp svg {
  width: 29px;
  fill: currentColor;
}

.toast {
  position: fixed;
  z-index: 220;
  bottom: 22px;
  left: 50%;
  max-width: min(440px, calc(100% - 32px));
  transform: translateX(-50%);
  padding: 13px 17px;
  background: var(--ink);
  color: var(--white);
  font-size: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 24px;
  background: var(--ink);
}

.thanks-card {
  width: min(860px, 100%);
  padding: clamp(34px, 7vw, 90px);
  background: var(--cream);
}

.thanks-card .brand {
  margin-bottom: 70px;
}

.thanks-card .brand-name {
  color: var(--ink);
}

.thanks-card h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(48px, 8vw, 92px);
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.thanks-card > p:not(.eyebrow) {
  max-width: 580px;
  margin: 28px 0 36px;
  color: var(--muted);
  line-height: 1.7;
}

.thanks-card > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.thanks-card .button-ghost {
  border-color: var(--ink);
  color: var(--ink);
}

@media (max-width: 1180px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: block;
  }

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

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

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

@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-gallery {
    min-height: 540px;
  }

  .section-heading,
  .catalog-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .print-card-wide {
    grid-column: span 2;
  }

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

  .reset-filters {
    grid-column: 1 / -1;
  }

  .integral-section,
  .quote-section,
  .location-section {
    grid-template-columns: 1fr;
  }

  .location-section {
    gap: 55px;
  }

  .integral-intro {
    position: static;
  }

  .product-modal-card {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(300px, 44vh) minmax(0, 1fr);
    height: min(860px, 94vh);
  }

  .modal-gallery,
  .modal-placeholder {
    min-height: 0;
    max-height: none;
  }
}

@media (max-width: 720px) {
  :root {
    --header-height: 70px;
  }

  .site-header {
    padding: 0 15px;
  }

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

  .header-selection,
  .header-cta {
    display: none;
  }

  .hero-copy {
    padding: 66px 22px 50px;
  }

  .hero h1 {
    font-size: clamp(46px, 13.5vw, 62px);
  }

  .hero-lead {
    font-size: 15px;
  }

  .hero-actions {
    display: grid;
  }

  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
    margin-top: 38px;
  }

  .trust-row > div:last-child {
    grid-column: 1 / -1;
  }

  .trust-row strong {
    font-size: 11px;
  }

  .trust-row span {
    font-size: 9px;
  }

  .hero-gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1.25fr 0.75fr;
    min-height: 380px;
  }

  .hero-photo-main {
    grid-area: 1 / 1 / auto / 3;
  }

  .hero-photo-top,
  .hero-photo-bottom {
    grid-row: 2;
  }

  .hero-stamp {
    width: 142px;
    min-height: 92px;
    padding: 14px;
  }

  .hero-stamp strong {
    font-size: 14px;
  }

  .category-ribbon {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

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

  .print-card-wide {
    display: flex;
    grid-column: auto;
  }

  .print-card-wide .print-card-image {
    min-height: 0;
    aspect-ratio: 4 / 3;
  }

  .technique-strip {
    grid-template-columns: 1fr 1fr;
  }

  .technique-strip > div:nth-child(2) {
    border-right: 0;
  }

  .technique-strip > div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .map-card iframe {
    height: 390px;
  }

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

  .family-card {
    min-height: 180px;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    margin-top: 30px;
  }

  .catalog-section {
    padding-right: 12px;
    padding-left: 12px;
  }

  .search-box {
    height: 54px;
    padding: 0 14px;
  }

  .filter-strip {
    margin-right: -12px;
    margin-left: -12px;
    padding-right: 12px;
    padding-left: 12px;
  }

  .result-count {
    margin-left: 0;
  }

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

  .product-card {
    display: flex;
    flex-direction: column;
  }

  .product-open,
  .product-image {
    height: auto;
  }

  .product-image {
    min-height: 0;
    aspect-ratio: 4 / 5;
  }

  .product-image > img {
    padding: 5px;
  }

  .product-meta {
    min-height: 165px;
    padding: 13px 12px 10px;
  }

  .product-title {
    min-height: 0;
    font-size: 14px;
    line-height: 1.12;
    -webkit-line-clamp: 3;
  }

  .product-kicker {
    font-size: 8px;
  }

  .product-expand {
    display: none;
  }

  .product-actions .card-details {
    padding-left: 0;
    font-size: 9px;
  }

  .product-actions .card-add {
    width: 40px;
  }

  .image-count {
    display: none;
  }

  .variant-count {
    right: 7px;
    bottom: 7px;
    padding: 5px 6px;
    font-size: 8px;
  }

  .integral-section {
    gap: 50px;
  }

  .process-list article {
    grid-template-columns: 36px 1fr auto;
    gap: 12px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-data > a,
  .contact-data > div {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .contact-data strong {
    text-align: left;
  }

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

  .modal-backdrop {
    align-items: end;
    padding: 0;
  }

  .product-modal-card {
    grid-template-rows: minmax(330px, 52dvh) minmax(0, 1fr);
    width: 100%;
    height: 100dvh;
    max-height: 100dvh;
    overflow: hidden;
  }

  .modal-gallery,
  .modal-placeholder {
    min-height: 0;
    max-height: none;
  }

  .modal-image-stage {
    padding: 12px 14px 16px;
  }

  .modal-copy {
    align-self: stretch;
    overflow-y: auto;
    padding: 28px 20px calc(34px + env(safe-area-inset-bottom));
  }

  .modal-copy h2 {
    padding-right: 20px;
    font-size: clamp(31px, 9vw, 43px);
  }

  .modal-rule {
    margin: 18px 0;
  }

  .modal-description {
    font-size: 13px;
    line-height: 1.55;
  }

  .modal-close {
    top: 10px;
    right: 10px;
  }

  .variant-options {
    grid-auto-columns: 82px;
  }

  .variant-carousel {
    grid-template-columns: 34px minmax(0, 1fr) 34px;
    gap: 5px;
  }

  .variant-hint {
    margin-right: 39px;
    margin-left: 39px;
  }

  .modal-specs {
    margin: 20px 0;
  }

  .selection-float,
  .floating-whatsapp {
    right: 14px;
  }
}

@media (max-width: 480px) {
  .brand-name {
    font-size: 16px;
  }

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

  .technique-strip {
    grid-template-columns: 1fr;
  }

  .technique-strip > div,
  .technique-strip > div:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .technique-strip > div:last-child {
    border-bottom: 0;
  }

  .map-card > div {
    flex-direction: column;
    gap: 6px;
  }

  .map-card > div strong {
    text-align: left;
  }

  .family-card {
    min-height: 160px;
  }

  .family-card strong {
    font-size: 19px;
  }

  .family-card small {
    font-size: 8px;
  }

  .advanced-filters {
    grid-template-columns: 1fr 1fr;
    padding: 12px;
  }

  .reset-filters {
    grid-column: 1 / -1;
  }

  .product-spec {
    display: none;
  }

  .product-meta {
    min-height: 158px;
  }

  .product-actions button {
    min-height: 40px;
  }

  .modal-quote-controls {
    grid-template-columns: 1fr;
  }

  .active-filter-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .form-selection-preview {
    grid-template-columns: 1fr;
  }

  .form-selection-preview > button {
    grid-column: 1;
    grid-row: auto;
    margin-top: 7px;
  }

  .selection-drawer > header,
  .drawer-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .selection-items {
    padding-right: 16px;
    padding-left: 16px;
  }

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

  .selection-remove {
    grid-column: 2;
    width: max-content;
  }

  .selection-empty {
    padding: 34px 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* R34: navbar search with product previews, promotional page only. */
.textile-nav-search { position: relative; display: flex; align-items: center; gap: 6px; flex: 1 1 440px; min-width: 0; max-width: 560px; margin: 0 22px; padding: 4px 4px 4px 12px; background: #fff; border: 1px solid #ddd; border-radius: 4px; color: #151515; }
.textile-nav-search:focus-within { outline: 2px solid var(--orange); outline-offset: 2px; }
.textile-nav-search input { width: 100%; flex: 1; min-width: 0; padding: 7px 0; background: #fff; color: #151515; border: 0; outline: 0; font: inherit; font-size: 16px; }
.textile-nav-search input::placeholder { color: #666; opacity: 1; }
.textile-nav-search > button { display: flex; align-items: center; gap: 6px; flex: none; min-height: 36px; padding: 8px 12px; background: #222; color: #fff; border: 0; border-radius: 2px; font-size: 12px; font-weight: 800; cursor: pointer; }
.textile-search-results { position: absolute; top: calc(100% + 8px); left: -1px; right: -1px; max-height: min(480px, 65dvh); overflow-y: auto; overscroll-behavior: contain; background: #fff; color: #151515; border: 1px solid #ddd; border-radius: 4px; box-shadow: 0 14px 35px #0004; }
.textile-search-results[hidden] { display: none; }
.textile-search-results ul { list-style: none; margin: 0; padding: 0; }
.textile-search-result { display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 12px; color: #151515; background: #fff; border: 0; border-bottom: 1px solid #eee; text-align: left; cursor: pointer; }
.textile-search-result:hover, .textile-search-result:focus-visible { background: #f5eee3; outline: 2px solid var(--orange); outline-offset: -2px; }
.textile-search-photo { display: grid; place-items: center; width: 48px; height: 48px; flex: 0 0 48px; background: #f2f0eb; color: #888; }
.textile-search-photo img { display: block; width: 100%; height: 100%; object-fit: contain; }
.textile-search-result strong { display: block; font-size: 12px; line-height: 1.4; }
.textile-search-result small { display: block; margin-top: 3px; color: #777; font-size: 11px; }
.textile-search-all { width: 100%; padding: 13px; border: 0; background: #f6f3ee; color: #b63c12; font-size: 12px; font-weight: 800; cursor: pointer; }
.textile-search-empty { padding: 16px; margin: 0; font-size: 13px; }
.catalog-toolbar { scroll-margin-top: calc(var(--header-height) + 18px); }

.site-header > .desktop-nav { flex: none; gap: 12px; }
@media (max-width: 1100px) { .textile-nav-search { margin: 0 12px; } }
@media (max-width: 720px) {
  :root { --header-height: 128px; }
  .site-header { flex-wrap: wrap; align-content: center; gap: 10px; }
  .textile-nav-search { order: 3; flex: 0 0 100%; max-width: none; margin: 0; box-sizing: border-box; }
  .textile-search-results { max-height: 55dvh; }
}

/* R36: prevent browser anchoring from moving the page while filtering. */
html { overflow-anchor: none; }
.catalog-section { min-height: 100svh; }
.active-filter-row { min-height: 30px; }
.active-filter-row[hidden] { display: flex !important; visibility: hidden; }
.active-filter-row > div { min-width: 0; }
.active-filter-row button { max-width: 100%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
