@font-face {
  font-family: "Sackers Gothic";
  src: url("assets/fonts/Sackers-Gothic-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sackers Gothic";
  src: url("assets/fonts/Sackers-Gothic-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --black: #0b0b0b;
  --gold: #714435;
  --logo: #714435;
  --heading: #816760;
  --button: #5b493b;
  --ivory: #ffffff;
  --stone: #f6f2ef;
  --taupe: #b8aa9a;
  --ink: #60413a;
  --muted: #816760;
  --line: rgba(96, 65, 58, 0.12);
  --shadow: 0 24px 70px rgba(96, 65, 58, 0.12);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: Inter, "Helvetica Neue", Arial, sans-serif;
  --sackers: "Sackers Gothic", Inter, "Helvetica Neue", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 30;
  background: var(--button);
  color: white;
  padding: 0.75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.announcement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: var(--button);
  color: var(--ivory);
  text-align: center;
  padding: 0.55rem 1rem;
  font-size: 0.69rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.site-header {
  position: fixed;
  top: 32px;
  left: 0;
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: 92px;
  padding: 0.9rem clamp(1rem, 3.2vw, 3rem);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(96, 65, 58, 0.12);
  box-shadow: 0 16px 44px rgba(96, 65, 58, 0);
  backdrop-filter: blur(16px);
  transition: min-height 240ms ease, padding 240ms ease, box-shadow 240ms ease, background 240ms ease;
}
.site-header.is-scrolled {
  min-height: 72px;
  padding-top: 0.55rem;
  padding-bottom: 0.55rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 16px 44px rgba(96, 65, 58, 0.12);
}
.brand {
  display: grid;
  place-items: center;
  padding: 0;
}
.brand img {
  width: clamp(158px, 17vw, 245px);
  height: 54px;
  object-fit: contain;
  object-position: left center;
  transition: width 240ms ease, height 240ms ease;
}
.site-header.is-scrolled .brand img {
  width: clamp(136px, 14vw, 205px);
  height: 44px;
}
.site-nav {
  display: flex;
  justify-content: center;
  gap: clamp(0.9rem, 2vw, 1.9rem);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.site-nav a, .text-link { position: relative; color: var(--ink); }
.site-nav a:hover, .site-nav a.active, .text-link:hover { color: var(--logo); }
.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
.text-link { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.search-pill {
  min-width: 126px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background: rgba(96, 65, 58, 0.08);
  color: var(--ink);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.search-pill:hover {
  background: rgba(96, 65, 58, 0.14);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.85rem 1.25rem;
  border: 1px solid var(--button);
  background: var(--button);
  color: var(--ivory);
  cursor: pointer;
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); background: #4b3d32; color: var(--ivory); }
.button.small { min-height: 38px; padding: 0.65rem 0.9rem; }
.site-header .button.small {
  background: var(--button);
  color: var(--ivory);
  border-color: var(--button);
}
.site-header .button.small:hover {
  background: #4b3d32;
  color: var(--ivory);
  border-color: #4b3d32;
}
.button.ghost { background: transparent; color: var(--button); }
.button.ghost:hover { background: var(--button); color: var(--ivory); }
.button.light { background: var(--ivory); color: var(--button); border-color: var(--ivory); }
.button.ghost.light {
  background: var(--button);
  color: var(--ivory);
  border-color: var(--button);
}
.button.ghost.light:hover {
  background: #4b3d32;
  color: var(--ivory);
  border-color: #4b3d32;
}
.button-row { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button-row.centered { justify-content: center; }

.page { display: none; }
.page.active { display: block; }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.64), rgba(11, 11, 11, 0.08) 58%, rgba(11, 11, 11, 0.28));
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: clamp(12rem, 22vw, 17rem) clamp(1rem, 7vw, 6rem) clamp(4rem, 8vw, 7rem);
  color: white;
}
.hero h1, .page-hero h1, .collection-banner h1 {
  margin: 0;
  font-family: var(--sackers);
  font-size: clamp(1.85rem, 3.9vw, 4.2rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(1.85rem, 3.9vw, 4.2rem);
}
.hero p:not(.eyebrow), .page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 1.7rem 0 2.2rem;
  font-size: clamp(1.05rem, 1.65vw, 1.28rem);
}
.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--logo);
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.section {
  padding: clamp(3.4rem, 6vw, 6rem) clamp(1rem, 6vw, 6rem);
}
.section.soft { background: #f6f2ef; }
.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: end;
  margin-bottom: 1.4rem;
}
h2 {
  margin: 0;
  font-family: var(--sackers);
  font-size: clamp(1.25rem, 2.25vw, 2.55rem);
  line-height: 1.08;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
}
h3 {
  margin: 0 0 0.65rem;
  font-family: var(--sackers);
  font-size: 0.86rem;
  font-weight: 300;
  line-height: 1.24;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
}
p { color: var(--muted); }

.intro {
  background: var(--ivory);
  padding-bottom: clamp(1.4rem, 2.8vw, 2.8rem);
}
.intro-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.intro-panel > div {
  padding-right: clamp(1.4rem, 4vw, 4rem);
  border-right: 1px solid var(--line);
}
.intro-panel > p {
  max-width: 620px;
  margin: 0;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  color: var(--ink);
  line-height: 1.55;
}

.trade-pathway {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 6vw, 6rem);
  background: #f6f2ef;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pathway-copy { max-width: 640px; }
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.pathway-grid article {
  min-height: 260px;
  padding: 1.5rem;
  background: var(--ivory);
}
.pathway-grid span {
  display: block;
  margin-bottom: 4rem;
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.feature-split.reverse { grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.2fr); }
.feature-split.reverse img { order: 2; }
.feature-split img {
  width: 100%;
  aspect-ratio: 1.32;
  object-fit: cover;
  background: var(--stone);
}
.feature-split p { max-width: 560px; }

.launch-collections {
  background: var(--ivory);
  padding-top: clamp(3.4rem, 6vw, 6rem);
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.launch-card {
  display: grid;
  grid-template-rows: auto 1fr;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.launch-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.18;
  object-fit: cover;
}
.launch-card > div {
  min-height: 300px;
  padding: clamp(1.1rem, 2.1vw, 1.8rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.launch-card h2 {
  font-size: clamp(1rem, 1.55vw, 1.65rem);
}
.launch-card p:not(.eyebrow) {
  max-width: 620px;
}
.launch-card .button {
  margin-top: auto;
}

.material-edit {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  background: var(--ivory);
}
.material-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.material-grid figure {
  margin: 0;
  background: #f6f2ef;
  border: 1px solid var(--line);
}
.material-grid img {
  width: 100%;
  height: 360px;
  padding: 1rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.material-grid figcaption {
  padding: 0 1.2rem 1.2rem;
  color: var(--muted);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  background: transparent;
  border: 0;
}
.category-card {
  position: relative;
  min-height: 380px;
  overflow: hidden;
  background: var(--black);
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 500ms ease, opacity 300ms ease;
}
.category-card:hover img { transform: scale(1.04); opacity: 1; }
.category-card span {
  position: absolute;
  left: 1.25rem;
  bottom: 1.1rem;
  color: white;
  font-family: var(--sackers);
  font-size: 0.92rem;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.product-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: end;
  margin-bottom: 1rem;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  background: var(--ivory);
  border: 1px solid var(--line);
}
.product-intro h2 {
  max-width: 640px;
}
.product-intro > p:last-child {
  max-width: 680px;
  margin: 0;
  color: var(--ink);
}
.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.product-card figure {
  margin: 0;
  padding: 1rem;
  min-height: 360px;
  display: grid;
  place-items: center;
  background: #f6f2ef;
}
.product-card img {
  width: 100%;
  height: 310px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.product-card .product-body { padding: 1.2rem; display: grid; gap: 0.4rem; }
.product-card h3 { margin-bottom: 0.15rem; }
.product-meta {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.product-card .button { margin-top: 0.65rem; width: max-content; }

.editorial {
  position: relative;
  min-height: 640px;
  display: grid;
  align-items: end;
  color: white;
  background: var(--black);
  overflow: hidden;
}
.editorial img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
.editorial::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,11,0.68), rgba(11,11,11,0.12)); }
.editorial > div { position: relative; z-index: 1; max-width: 650px; }
.editorial p { color: rgba(255,255,255,0.82); }

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.benefit-grid.two { grid-template-columns: repeat(2, 1fr); }
.benefit-grid article {
  min-height: 180px;
  padding: 1.7rem;
  background: var(--ivory);
}
.benefit-grid p { margin-bottom: 0; }

.trade-cta {
  text-align: center;
  background: var(--stone);
  color: var(--ink);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.trade-cta p { max-width: 720px; margin: 1rem auto 2rem; color: var(--muted); }

.page-hero {
  position: relative;
  min-height: 560px;
  padding: clamp(5rem, 9vw, 9rem) clamp(1rem, 6vw, 6rem);
  display: grid;
  align-items: end;
  background: var(--stone);
  overflow: hidden;
}
.page-hero.compact {
  min-height: 420px;
  background: #f6f2ef;
}
.page-hero.collections-hero {
  min-height: 360px;
  padding-top: clamp(8rem, 13vw, 10rem);
  padding-bottom: clamp(2.2rem, 5vw, 4rem);
  background: var(--ivory);
  border-bottom: 1px solid var(--line);
}
.page-hero.collections-hero h1 {
  font-family: var(--sackers);
  font-size: clamp(1.6rem, 3vw, 3.05rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
}
.page-hero.collections-hero p:not(.eyebrow) {
  max-width: 720px;
  margin: 1.2rem 0 0;
  font-size: clamp(0.98rem, 1.45vw, 1.14rem);
}
.page-hero.product-hero {
  min-height: 280px;
  padding-top: clamp(7.5rem, 12vw, 10rem);
  padding-bottom: clamp(2rem, 4vw, 3.5rem);
}
.page-hero.product-hero h1 {
  font-family: var(--sackers);
  font-size: clamp(1.6rem, 3vw, 3.05rem);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--heading);
}
.page-hero.product-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 1rem 0 0;
  font-size: clamp(0.95rem, 1.3vw, 1.08rem);
}
.page-hero.about-hero { color: white; background: var(--black); }
.page-hero.about-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.62; }
.page-hero.about-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 11, 11, 0.7), rgba(11, 11, 11, 0.18));
}
.page-hero.about-hero > div { position: relative; z-index: 1; }

.collections-showcase {
  padding-top: clamp(2.4rem, 4.5vw, 4rem);
}
.collections-intro {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: end;
  margin-bottom: clamp(1.4rem, 3vw, 2.4rem);
}
.collections-intro h2 {
  max-width: 760px;
}
.collections-intro > p {
  max-width: 700px;
  margin: 0;
  color: var(--ink);
}
.collection-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  align-items: stretch;
}
.collection-card {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--ivory);
  border: 1px solid var(--line);
}
.collection-card img {
  width: 100%;
  aspect-ratio: 1.2;
  height: auto;
  object-fit: cover;
  mix-blend-mode: normal;
}
.collection-card > div {
  min-height: 340px;
  padding: clamp(1.4rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.collection-card h2 {
  font-size: clamp(1.35rem, 2.35vw, 2.65rem);
}
.collection-card p:not(.eyebrow) {
  max-width: 620px;
}
.collection-card .button {
  margin-top: auto;
}
.collection-tile {
  position: relative;
  min-height: clamp(520px, 62vw, 720px);
  overflow: hidden;
  background: var(--black);
  color: var(--ivory);
}
.collection-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 11, 0.02), rgba(11, 11, 11, 0.74));
}
.collection-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  transition: transform 700ms ease;
}
.collection-tile:hover img {
  transform: scale(1.035);
}
.collection-tile > div {
  position: relative;
  z-index: 1;
  min-height: 100%;
  padding: clamp(1.4rem, 3.4vw, 3rem);
  justify-content: flex-end;
}
.collection-tile h2 {
  max-width: 660px;
  color: var(--ivory);
}
.collection-tile p {
  color: rgba(255, 255, 255, 0.82);
}
.collection-tile .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}
.collection-tile .button {
  margin-top: 1.8rem;
}

.collection-banner {
  position: relative;
  min-height: 720px;
  display: grid;
  align-items: end;
  padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 5rem);
  color: white;
  overflow: hidden;
  background: var(--black);
}
.collection-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.66; }
.collection-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,11,11,0.72), transparent); }
.collection-banner > div { position: relative; z-index: 1; max-width: 780px; }
.finish-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.finish-grid article {
  background: #f6f2ef;
  border: 1px solid var(--line);
  padding: 1.5rem;
}
.finish-grid img { height: 360px; width: 100%; object-fit: contain; mix-blend-mode: multiply; }

.filters {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 0.8rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 1.1rem;
  background: #f6f2ef;
  border: 1px solid var(--line);
}
label { display: grid; gap: 0.45rem; color: var(--muted); font-size: 0.82rem; letter-spacing: 0.06em; text-transform: uppercase; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--ivory);
  color: var(--ink);
  padding: 0.82rem;
  outline: none;
}
input:focus, select:focus, textarea:focus { border-color: var(--logo); box-shadow: 0 0 0 3px rgba(113, 68, 53, 0.14); }

.content-stack {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.content-stack article {
  padding: clamp(1.5rem, 4vw, 3rem);
  background: var(--ivory);
}
.content-stack article p:not(.eyebrow) {
  max-width: 760px;
  margin: 1rem 0 0;
  color: var(--ink);
}
.content-stack article p:not(.eyebrow) + p:not(.eyebrow) {
  margin-top: 0.85rem;
}

.trade-layout, .contact-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}
.trade-form, .contact-form, .contact-card {
  padding: clamp(1.5rem, 3vw, 2.2rem);
  background: #f6f2ef;
  border: 1px solid var(--line);
  box-shadow: none;
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.full { grid-column: 1 / -1; }
.consent {
  display: flex;
  align-items: start;
  gap: 0.65rem;
  margin: 1rem 0;
  text-transform: none;
  letter-spacing: 0;
}
.consent input { width: auto; margin-top: 0.3rem; }
.form-message { min-height: 1.5rem; color: var(--ink); }

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}

.product-modal[hidden] { display: none; }
.product-modal { position: fixed; inset: 0; z-index: 50; display: grid; place-items: center; padding: 1rem; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(11, 11, 11, 0.62); }
.modal-panel {
  position: relative;
  width: min(1100px, 100%);
  max-height: min(92vh, 900px);
  overflow: auto;
  background: var(--ivory);
  box-shadow: var(--shadow);
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--ivory);
  cursor: pointer;
  font-size: 1.6rem;
}
.detail-layout {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  padding: clamp(1rem, 3vw, 2rem);
}
.detail-gallery {
  display: grid;
  gap: 1rem;
}
.zoom-trigger {
  position: relative;
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: zoom-in;
}
.zoom-trigger img {
  width: 100%;
  max-height: 520px;
  object-fit: contain;
  background: #f6f2ef;
  padding: 1rem;
}
.zoom-trigger span {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  padding: 0.5rem 0.7rem;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.detail-specs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 1.4rem 0;
  background: var(--line);
  border: 1px solid var(--line);
}
.detail-specs div { padding: 0.85rem; background: var(--ivory); }
.detail-specs strong { display: block; font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }

.image-zoom[hidden] { display: none; }
.image-zoom {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}
.zoom-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 11, 0.78);
}
.image-zoom img {
  position: relative;
  z-index: 1;
  width: min(1200px, 100%);
  max-height: 88vh;
  object-fit: contain;
  background: white;
  padding: clamp(0.75rem, 2vw, 1.5rem);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.34);
}
.zoom-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.55rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.8fr 1.1fr;
  gap: 2rem;
  padding: clamp(3rem, 6vw, 6rem);
  background: var(--stone);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.site-footer img { width: 210px; height: 58px; object-fit: contain; object-position: left center; }
.site-footer nav { display: grid; gap: 0.55rem; align-content: start; }
.site-footer a, .site-footer p { color: var(--muted); }
.site-footer a:hover { color: var(--button); }

.scroll-in {
  --motion-x: 0px;
  opacity: 0.08;
  transform: translateX(var(--motion-x));
  transition: opacity 760ms ease, transform 760ms ease;
  will-change: opacity, transform;
}
.scroll-in.from-left { --motion-x: -88px; }
.scroll-in.from-right { --motion-x: 88px; }
.scroll-in.in-view {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-in {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: auto 1fr;
    justify-items: start;
    gap: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.98);
  }
  .brand { justify-self: start; justify-items: start; }
  .header-actions { justify-self: end; }
  .site-nav {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
  }
  .product-grid, .category-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-intro, .collection-grid, .trade-layout, .contact-layout { grid-template-columns: 1fr; }
  .trade-pathway, .material-edit { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .announcement { font-size: 0.62rem; letter-spacing: 0.1em; padding: 0.5rem 0.75rem; }
  .site-header { gap: 0.75rem; min-height: 76px; top: 30px; }
  .site-nav { display: none; }
  .brand img { width: min(190px, 50vw); height: 46px; }
  .site-header.is-scrolled .brand img { width: min(168px, 45vw); height: 40px; }
  .search-pill, .text-link { display: none; }
  .site-header .button.small { min-height: 36px; padding: 0.55rem 0.75rem; font-size: 0.68rem; }
  .hero { min-height: 720px; }
  .hero-copy { padding: 11rem 1rem 3rem; }
  .section, .page-hero, .collection-banner { padding-left: 1rem; padding-right: 1rem; }
  .intro, .feature-split, .feature-split.reverse, .detail-layout, .content-stack, .pathway-grid, .material-grid, .launch-grid { grid-template-columns: 1fr; }
  .feature-split.reverse img { order: 0; }
  .section-heading { display: block; }
  .product-grid, .category-grid, .benefit-grid, .benefit-grid.two, .finish-grid, .filters, .form-grid, .site-footer { grid-template-columns: 1fr; }
  .category-card { min-height: 260px; }
  .product-card figure { min-height: 300px; }
  .product-card img { height: 260px; }
  .filters .button { width: 100%; }
  .page-hero.compact { min-height: 300px; }
  .collection-tile { min-height: 520px; }
  .site-footer { gap: 1.4rem; }
  .scroll-in.from-left,
  .scroll-in.from-right { --motion-x: 0px; }
}
.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-privacy {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

.form-privacy a,
.legal-content a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.optional {
  color: var(--muted);
  font-size: 0.8em;
  font-weight: 400;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  margin-top: 2rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}
