:root {
  --ink: #111111;
  --muted: #6d6a64;
  --paper: #fffdf9;
  --soft: #f7f1ea;
  --line: #e7dfd4;
  --gold: #b99a56;
  --jussan-red: #8f1218;
  --deep: #111111;
  --sage: #6f8378;
  --rose: #b58a7a;
  --white: #ffffff;
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Avenir Next, Helvetica, Arial, sans-serif;
  background: var(--paper);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, select { font: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(18px, 4vw, 58px);
  background: rgba(255, 253, 249, 0.94);
  border-bottom: 1px solid rgba(143, 18, 24, 0.18);
  backdrop-filter: blur(18px);
}
.brand img { width: 182px; height: auto; }
.topbar nav { display: flex; align-items: center; gap: clamp(14px, 3vw, 34px); font-size: 13px; letter-spacing: 0.08em; text-transform: uppercase; }
.topbar nav a, .link-button { color: #3a3834; border: 0; background: transparent; cursor: pointer; letter-spacing: 0.08em; text-transform: uppercase; }

.hero {
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
  padding: clamp(28px, 6vw, 70px) clamp(18px, 6vw, 86px);
}
.hero-copy { max-width: 680px; }
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2 {
  margin: 0;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-weight: 500;
  line-height: 1;
}
h1 { font-size: clamp(42px, 6.4vw, 86px); max-width: 800px; letter-spacing: 0; }
h2 { font-size: clamp(34px, 4vw, 56px); }
.hero-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--line);
  border-radius: 4px;
  cursor: pointer;
}
.button.primary { background: var(--jussan-red); border-color: var(--jussan-red); color: var(--white); }
.button.ghost { color: var(--ink); background: rgba(255,255,255,0.4); }

.hero-panel {
  position: relative;
  min-height: 620px;
  background: #f9f3ed;
  border: 1px solid var(--line);
  overflow: hidden;
}
.hero-panel img { width: 100%; height: 620px; object-fit: cover; }
.metric-row {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(143, 18, 24, 0.84);
  color: var(--white);
}
.metric-row span { padding: 18px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; }
.metric-row strong { display: block; font-size: 22px; letter-spacing: 0; }

.section { padding: 84px clamp(18px, 6vw, 86px); }
.section-head { margin-bottom: 30px; }
.section-head.wide { display: flex; justify-content: space-between; align-items: end; gap: 24px; }
.category-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(150px, 1fr));
  gap: 12px;
}
.category-card {
  min-height: 180px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--white);
  border: 1px solid var(--line);
}
.category-card:nth-child(2n) { background: #eef1ed; }
.category-card:nth-child(3n) { background: #f3ebe7; }
.category-card h3 { margin: 0; font-family: Georgia, serif; font-size: 26px; font-weight: 500; }
.category-card p { margin: 12px 0 0; color: var(--muted); line-height: 1.55; }

.filters { display: flex; flex-wrap: wrap; gap: 8px; justify-content: flex-end; }
.chip {
  height: 36px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
}
.chip.active { background: var(--jussan-red); border-color: var(--jussan-red); color: var(--white); }
.toolbar {
  display: grid;
  grid-template-columns: minmax(220px, 1fr) 190px;
  gap: 12px;
  margin-bottom: 22px;
}
input, select {
  width: 100%;
  height: 44px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.empty-catalog {
  grid-column: 1 / -1;
  padding: clamp(34px, 6vw, 72px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, #fffdf9 0%, #f7f1ea 58%, #eef1ed 100%);
  text-align: center;
}
.empty-catalog h3 {
  max-width: 760px;
  margin: 0 auto;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  line-height: 1.08;
}
.empty-catalog p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  min-width: 0;
  box-shadow: 0 18px 45px rgba(17, 17, 17, 0.04);
}
.product-card .image {
  position: relative;
  aspect-ratio: 1 / 1;
  background: var(--soft);
  overflow: hidden;
}
.product-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover img { transform: scale(1.04); }
.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  padding: 6px 9px;
  background: rgba(255,255,255,0.9);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.product-info { padding: 16px; }
.product-info h3 { margin: 0; font-size: 16px; line-height: 1.35; }
.product-meta { display: flex; justify-content: space-between; gap: 10px; margin-top: 10px; color: var(--muted); font-size: 13px; }
.price { margin-top: 14px; font-size: 18px; font-weight: 700; }
.sku { margin-top: 6px; color: var(--muted); font-size: 12px; }

.studio {
  margin: 0 clamp(18px, 6vw, 86px) 80px;
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 30px;
  color: var(--white);
  background: var(--jussan-red);
}
.studio-list { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1px; align-self: stretch; }
.studio-list span { display: grid; place-items: center; min-height: 96px; border: 1px solid rgba(255,255,255,0.18); color: #efe6d2; text-align: center; padding: 10px; }

footer { padding: 40px clamp(18px, 6vw, 86px); border-top: 1px solid var(--line); color: var(--muted); display: flex; justify-content: space-between; gap: 20px; align-items: center; }
footer img { width: 150px; }
footer p { max-width: 560px; line-height: 1.5; text-align: right; }

.admin-body { background: #f6f4ef; }
.admin-shell { padding: 34px clamp(14px, 4vw, 52px) 60px; }
.admin-hero { margin-bottom: 24px; }
.admin-hero h1 { font-size: clamp(32px, 4vw, 56px); max-width: 960px; }
.admin-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 26px; }
.stat-card { background: var(--white); border: 1px solid var(--line); padding: 18px; }
.stat-card strong { display: block; font-size: 24px; }
.stat-card span { color: var(--muted); font-size: 13px; }
.admin-panel { background: var(--white); border: 1px solid var(--line); }
.admin-tools { display: grid; grid-template-columns: minmax(180px, 1fr) 220px 160px; gap: 10px; padding: 16px; border-bottom: 1px solid var(--line); }
.table-wrap { overflow: auto; max-height: 68vh; }
table { width: 100%; border-collapse: collapse; min-width: 980px; }
th, td { padding: 12px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: middle; font-size: 13px; }
th { position: sticky; top: 0; background: #f3efe8; z-index: 1; text-transform: uppercase; letter-spacing: 0.08em; font-size: 11px; }
td img { width: 58px; height: 58px; object-fit: cover; background: var(--soft); }
td input[type="number"], td input[type="text"], td select { height: 38px; min-width: 100px; }
td .name-input { min-width: 220px; }
.switch { width: 18px; height: 18px; accent-color: var(--deep); }

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-panel, .hero-panel img { min-height: 0; height: 520px; }
  .category-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .studio, .studio-list { grid-template-columns: 1fr; }
}
@media (max-width: 760px) {
  .topbar { height: auto; min-height: 72px; align-items: flex-start; flex-direction: column; gap: 10px; padding-top: 12px; padding-bottom: 12px; }
  .topbar nav { width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .brand img { width: 150px; }
  .hero { min-height: auto; padding-top: 34px; }
  .metric-row { grid-template-columns: 1fr; }
  .section-head.wide, footer { align-items: flex-start; flex-direction: column; }
  footer p { text-align: left; }
  .category-grid, .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .toolbar, .admin-tools, .admin-stats { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .category-grid, .product-grid { grid-template-columns: 1fr; }
  .hero-panel, .hero-panel img { height: 420px; }
}

.rate-card { margin-top: 18px; max-width: 460px; display: grid; gap: 8px; background: #ffffff; border: 1px solid var(--line); padding: 16px; }
.rate-card label { font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jussan-red); font-weight: 700; }
.rate-card span { color: var(--muted); font-size: 13px; }
.topbar::after { content: ""; position: absolute; left: clamp(18px, 4vw, 58px); right: clamp(18px, 4vw, 58px); bottom: 0; height: 2px; background: var(--jussan-red); transform: scaleX(0.12); transform-origin: left; }
.category-card { border-top: 3px solid var(--jussan-red); }


/* Category-first storefront refinement */
.section-head.centered { text-align: center; max-width: 760px; margin-left: auto; margin-right: auto; }
.section-note { margin: 18px auto 0; max-width: 560px; color: var(--muted); line-height: 1.7; }
.collection-showcase { padding-top: 96px; }
.collection-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.collection-card {
  min-width: 0;
  background: var(--paper);
  display: grid;
  grid-template-rows: minmax(250px, 1fr) auto;
  transition: background 0.25s ease, transform 0.25s ease;
}
.collection-card:hover { background: #ffffff; transform: translateY(-2px); }
.collection-image { aspect-ratio: 4 / 5; overflow: hidden; background: var(--soft); }
.collection-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.collection-card:hover .collection-image img { transform: scale(1.045); }
.collection-copy { min-height: 214px; padding: 22px; display: flex; flex-direction: column; justify-content: space-between; }
.collection-copy h3 { margin: 0; font-family: Didot, Bodoni 72, Georgia, serif; font-size: clamp(25px, 2vw, 34px); font-weight: 500; }
.collection-copy p { margin: 12px 0 20px; color: var(--muted); line-height: 1.6; }
.text-link { color: var(--jussan-red); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; }
.maison-hero { min-height: calc(92vh - 82px); }
.hero-panel-minimal { min-height: 560px; }
.hero-panel-minimal img { height: 560px; }
.maison-band { margin-top: 20px; }
.collection-header {
  padding: clamp(46px, 8vw, 92px) clamp(18px, 6vw, 86px) clamp(28px, 5vw, 62px);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, #fffdf9 0%, #f9f3ed 100%);
}
.collection-header h1 { margin-top: 8px; }
.collection-header > p:not(.eyebrow) { max-width: 720px; margin: 22px 0 0; color: var(--muted); font-size: 18px; line-height: 1.7; }
.back-link { display: inline-block; margin-bottom: 34px; color: var(--jussan-red); font-size: 12px; letter-spacing: 0.13em; text-transform: uppercase; }
.quote-note { margin-top: 24px; display: inline-flex; padding: 12px 14px; border: 1px solid rgba(143, 18, 24, 0.22); color: var(--jussan-red); background: rgba(255,255,255,0.68); font-size: 13px; }
.quotation-section { padding-top: 52px; }
.compact-toolbar { grid-template-columns: minmax(210px, 1fr) 180px; margin: 0; min-width: min(520px, 100%); }

@media (max-width: 1180px) {
  .collection-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .collection-grid { grid-template-columns: 1fr; }
  .collection-card { grid-template-rows: auto auto; }
  .collection-image { aspect-ratio: 16 / 11; }
  .compact-toolbar { grid-template-columns: 1fr; width: 100%; }
  .hero-panel-minimal, .hero-panel-minimal img { height: 420px; min-height: 420px; }
}


/* Premium editorial system */
body {
  background:
    linear-gradient(90deg, rgba(143,18,24,0.035) 0 1px, transparent 1px) 0 0 / 92px 92px,
    var(--paper);
}
.topbar {
  height: 88px;
  justify-content: center;
  gap: clamp(28px, 8vw, 118px);
}
.brand { position: absolute; left: clamp(18px, 4vw, 58px); }
.topbar nav { gap: clamp(22px, 4vw, 56px); font-size: 12px; }
.topbar nav a:hover, .link-button:hover { color: var(--jussan-red); }
.topbar::after { transform: scaleX(0.18); }
.hero.maison-hero {
  min-height: calc(96vh - 88px);
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 1.14fr);
  padding-top: clamp(42px, 7vw, 92px);
  padding-bottom: clamp(34px, 5vw, 70px);
}
.hero-copy { padding-left: clamp(0px, 2vw, 28px); }
.hero-copy .eyebrow::before,
.collection-header .eyebrow::before,
.section-head .eyebrow::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 1px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--jussan-red);
}
.hero-copy > p:not(.eyebrow) { font-size: 17px; max-width: 520px; }
.hero-actions { margin-top: 40px; }
.button {
  min-height: 50px;
  padding: 0 26px;
  border-radius: 0;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.button.ghost { border-color: rgba(143,18,24,0.3); color: var(--jussan-red); background: transparent; }
.hero-panel-minimal {
  min-height: min(660px, calc(100vh - 150px));
  box-shadow: 0 34px 80px rgba(17,17,17,0.08);
}
.hero-panel-minimal img { height: min(660px, calc(100vh - 150px)); filter: saturate(0.92) contrast(1.02); }
.metric-row {
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: rgba(255,253,249,0.88);
  color: var(--ink);
  border: 1px solid rgba(143,18,24,0.18);
  backdrop-filter: blur(16px);
}
.metric-row span { border-right: 1px solid rgba(143,18,24,0.16); }
.metric-row span:last-child { border-right: 0; }
.metric-row strong { color: var(--jussan-red); font-family: Didot, Bodoni 72, Georgia, serif; font-weight: 500; }
.collection-showcase { padding-top: 112px; padding-bottom: 104px; }
.collection-grid {
  max-width: 1500px;
  margin: 0 auto;
  gap: 18px;
  background: transparent;
  border: 0;
}
.collection-card {
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(17,17,17,0.045);
  grid-template-rows: minmax(320px, 1fr) auto;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: 0 30px 76px rgba(17,17,17,0.08); }
.collection-image { aspect-ratio: 3 / 4; }
.collection-copy {
  min-height: 232px;
  padding: 26px 24px 24px;
  background: rgba(255,253,249,0.96);
  border-top: 2px solid var(--jussan-red);
}
.collection-copy h3 { font-size: clamp(30px, 2.4vw, 42px); }
.collection-copy p { font-size: 14px; }
.text-link { display: inline-flex; align-items: center; gap: 12px; }
.text-link::after { content: ""; width: 34px; height: 1px; background: currentColor; }
.studio.maison-band {
  margin-bottom: 96px;
  padding: clamp(42px, 6vw, 76px);
  background: #111;
  border-top: 5px solid var(--jussan-red);
}
.studio.maison-band h2 { max-width: 650px; }
.studio-list span { min-height: 118px; font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase; }
footer { background: #fff; }
.collection-header {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    linear-gradient(90deg, rgba(143,18,24,0.08) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(180deg, #fffdf9 0%, #f6eee5 100%);
}
.collection-header h1 { font-size: clamp(58px, 9vw, 126px); }
.quote-note {
  border-radius: 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
}
.quotation-section .section-head { margin-bottom: 26px; }
.quotation-section .product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.quotation-section .product-card {
  background: rgba(255,255,255,0.9);
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.quotation-section .product-card:hover { transform: translateY(-4px); box-shadow: 0 24px 58px rgba(17,17,17,0.07); }
.quotation-section .product-card .image { aspect-ratio: 1 / 1.08; }
.product-info { padding: 18px 18px 20px; }
.product-info h3 { font-family: Didot, Bodoni 72, Georgia, serif; font-size: 22px; font-weight: 500; }
.product-meta { font-size: 12px; letter-spacing: 0.03em; }
.quote-row {
  margin-top: 18px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  border-top: 1px solid var(--line);
}
.quote-row span { color: var(--muted); font-size: 11px; letter-spacing: 0.13em; text-transform: uppercase; }
.quote-row strong { color: var(--jussan-red); font-size: 22px; }
.badge { border: 1px solid rgba(143,18,24,0.2); color: var(--jussan-red); }
.compact-toolbar input,
.compact-toolbar select,
.toolbar input,
.toolbar select {
  border-radius: 0;
  border-color: rgba(143,18,24,0.2);
  background: rgba(255,255,255,0.86);
}
.back-link { border-bottom: 1px solid currentColor; padding-bottom: 4px; }

@media (max-width: 1180px) {
  .collection-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quotation-section .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .topbar { justify-content: flex-start; gap: 10px; }
  .brand { position: static; }
  .hero.maison-hero { grid-template-columns: 1fr; }
  .collection-grid, .quotation-section .product-grid { grid-template-columns: 1fr; }
  .collection-card { grid-template-rows: auto auto; }
  .metric-row { grid-template-columns: 1fr; }
  .metric-row span { border-right: 0; border-bottom: 1px solid rgba(143,18,24,0.16); }
  .metric-row span:last-child { border-bottom: 0; }
  .collection-header { min-height: 330px; }
}


/* Rich luxury homepage */
.lux-hero {
  position: relative;
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(360px, 1.08fr);
  align-items: stretch;
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
  overflow: hidden;
}
.lux-hero::before {
  content: "JUSSAN";
  position: absolute;
  right: -0.06em;
  bottom: -0.22em;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(120px, 20vw, 340px);
  color: rgba(143,18,24,0.045);
  line-height: 1;
  pointer-events: none;
}
.lux-hero-media {
  min-height: 680px;
  border-right: 1px solid var(--line);
  background: var(--soft);
}
.lux-hero-media img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9) contrast(1.04); }
.lux-hero-copy {
  position: relative;
  z-index: 1;
  align-self: center;
  padding: clamp(44px, 8vw, 118px) clamp(24px, 7vw, 110px);
  max-width: 780px;
}
.lux-hero-copy h1 {
  font-size: clamp(48px, 7.4vw, 112px);
  max-width: 820px;
}
.lux-hero-copy p:not(.eyebrow) {
  margin: 28px 0 0;
  max-width: 540px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}
.lux-hero-rail {
  position: absolute;
  left: clamp(18px, 4vw, 58px);
  right: clamp(18px, 4vw, 58px);
  bottom: 26px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 760px;
  margin-left: auto;
  border: 1px solid rgba(143,18,24,0.2);
  background: rgba(255,253,249,0.88);
  backdrop-filter: blur(18px);
}
.lux-hero-rail span {
  padding: 18px 20px;
  border-right: 1px solid rgba(143,18,24,0.16);
  color: var(--jussan-red);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}
.lux-hero-rail span:last-child { border-right: 0; }
.brand-statement {
  padding: clamp(70px, 10vw, 140px) clamp(18px, 8vw, 128px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(34px, 8vw, 110px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.brand-statement h2 {
  max-width: 900px;
  font-size: clamp(38px, 5.2vw, 78px);
}
.statement-grid {
  align-self: end;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15px;
}
.collection-editorial {
  padding: clamp(78px, 10vw, 142px) clamp(18px, 6vw, 86px);
}
.editorial-collections {
  max-width: 1540px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 22px;
}
.editorial-card {
  min-height: 560px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 24px 70px rgba(17,17,17,0.045);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.editorial-card:hover { transform: translateY(-6px); box-shadow: 0 36px 90px rgba(17,17,17,0.08); }
.editorial-card-0 { grid-column: span 7; }
.editorial-card-1 { grid-column: span 5; }
.editorial-card-2 { grid-column: span 5; }
.editorial-card-3 { grid-column: span 4; }
.editorial-card-4 { grid-column: span 3; }
.editorial-card-media {
  position: relative;
  min-height: 390px;
  background: var(--soft);
  overflow: hidden;
}
.editorial-card-media .lead { width: 100%; height: 100%; object-fit: cover; }
.editorial-card-media .detail {
  position: absolute;
  width: 34%;
  min-width: 150px;
  aspect-ratio: 1;
  right: 18px;
  bottom: 18px;
  object-fit: cover;
  border: 8px solid rgba(255,253,249,0.92);
  box-shadow: 0 18px 44px rgba(17,17,17,0.16);
}
.editorial-card-copy {
  padding: 26px;
  min-height: 210px;
  border-top: 3px solid var(--jussan-red);
}
.editorial-card-copy h3 {
  margin: 0;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(34px, 3.5vw, 58px);
  font-weight: 500;
}
.editorial-card-copy p { max-width: 540px; margin: 12px 0 22px; color: var(--muted); line-height: 1.65; }
.atelier-section {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(30px, 7vw, 98px);
  padding: clamp(74px, 10vw, 132px) clamp(18px, 8vw, 128px);
  color: #fff;
  background: #111;
  border-top: 6px solid var(--jussan-red);
}
.atelier-copy h2 { max-width: 660px; }
.atelier-copy p { max-width: 520px; color: rgba(255,255,255,0.68); line-height: 1.75; }
.atelier-metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(255,255,255,0.18);
}
.atelier-metrics div { min-height: 180px; padding: 26px; border-right: 1px solid rgba(255,255,255,0.16); border-bottom: 1px solid rgba(255,255,255,0.16); }
.atelier-metrics div:nth-child(2n) { border-right: 0; }
.atelier-metrics div:nth-child(n+3) { border-bottom: 0; }
.atelier-metrics strong { display: block; color: #f5dfb0; font-family: Didot, Bodoni 72, Georgia, serif; font-size: clamp(42px, 5vw, 72px); font-weight: 500; }
.atelier-metrics span { display: block; margin-top: 12px; color: rgba(255,255,255,0.72); line-height: 1.55; }
.partner-section {
  padding: clamp(70px, 9vw, 124px) clamp(18px, 8vw, 128px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(30px, 7vw, 90px);
  background: #fffdf9;
}
.partner-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.partner-list span {
  min-height: 150px;
  display: grid;
  place-items: center;
  padding: 18px;
  background: #fff;
  color: var(--jussan-red);
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 1180px) {
  .lux-hero, .brand-statement, .atelier-section, .partner-section { grid-template-columns: 1fr; }
  .lux-hero-media { min-height: 520px; border-right: 0; border-bottom: 1px solid var(--line); }
  .editorial-card-0, .editorial-card-1, .editorial-card-2, .editorial-card-3, .editorial-card-4 { grid-column: span 6; }
  .partner-list { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .lux-hero { min-height: auto; }
  .lux-hero-media { min-height: 420px; }
  .lux-hero-rail { position: static; margin: 0; grid-template-columns: 1fr; border-left: 0; border-right: 0; }
  .lux-hero-rail span { border-right: 0; border-bottom: 1px solid rgba(143,18,24,0.16); }
  .statement-grid, .atelier-metrics, .partner-list { grid-template-columns: 1fr; }
  .editorial-collections { grid-template-columns: 1fr; }
  .editorial-card-0, .editorial-card-1, .editorial-card-2, .editorial-card-3, .editorial-card-4 { grid-column: span 1; }
  .editorial-card { min-height: 0; }
  .editorial-card-media { min-height: 320px; }
}

/* Calm maison homepage */
.calm-home {
  background: #fffdf9;
}
.calm-home .calm-topbar {
  height: 84px;
  justify-content: space-between;
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
}
.calm-home .calm-topbar::after {
  display: none;
}
.calm-home .brand {
  position: static;
}
.calm-home .topbar nav {
  gap: clamp(24px, 5vw, 70px);
  font-size: 12px;
}
.maison-cover {
  position: relative;
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #111;
}
.maison-cover::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.36)),
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.1), transparent 42%);
}
.maison-cover > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.05);
}
.maison-cover-copy {
  position: relative;
  z-index: 1;
  width: min(860px, calc(100% - 36px));
  color: #fff;
  text-align: center;
  padding-bottom: 7vh;
}
.maison-cover-copy .eyebrow {
  color: #f2d8a2;
}
.maison-cover-copy h1 {
  margin-top: 10px;
  font-size: clamp(76px, 13vw, 184px);
  letter-spacing: 0.09em;
  line-height: 0.9;
}
.maison-cover-copy p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.8;
}
.maison-cover-copy .hero-actions {
  justify-content: center;
  margin-top: 36px;
}
.maison-cover-copy .button.primary {
  background: #fffdf9;
  border-color: #fffdf9;
  color: #111;
}
.maison-cover-copy .button.ghost {
  border-color: rgba(255, 255, 255, 0.46);
  color: #fff;
}
.cover-scroll {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.cover-scroll::after {
  content: "";
  display: block;
  width: 1px;
  height: 44px;
  margin: 14px auto 0;
  background: rgba(255, 255, 255, 0.58);
}
.maison-intro {
  padding: clamp(78px, 12vw, 156px) clamp(20px, 11vw, 170px);
  text-align: center;
  background: #fffdf9;
}
.maison-intro h2 {
  max-width: 1060px;
  margin: 0 auto;
  font-size: clamp(38px, 5.6vw, 82px);
}
.maison-intro > p:not(.eyebrow) {
  max-width: 680px;
  margin: 30px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.maison-collections {
  background: #fff;
  border-top: 1px solid var(--line);
}
.maison-collections .section-head {
  padding: clamp(64px, 9vw, 118px) 20px clamp(34px, 5vw, 58px);
  margin-bottom: 0;
}
.collection-bands {
  border-top: 1px solid var(--line);
}
.collection-band {
  position: relative;
  display: grid;
  grid-template-columns: 86px minmax(280px, 0.96fr) minmax(280px, 1.04fr);
  min-height: 520px;
  border-bottom: 1px solid var(--line);
  background: #fffdf9;
}
.collection-band:nth-child(even) {
  grid-template-columns: 86px minmax(280px, 1.04fr) minmax(280px, 0.96fr);
}
.collection-number {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  color: var(--jussan-red);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: 32px;
}
.collection-band-image {
  min-height: 520px;
  overflow: hidden;
  background: var(--soft);
}
.collection-band:nth-child(even) .collection-band-image {
  order: 3;
}
.collection-band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection-band:hover .collection-band-image img {
  transform: scale(1.035);
}
.collection-band-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 560px;
  padding: clamp(34px, 7vw, 96px);
}
.collection-band-copy h3 {
  margin: 0;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(48px, 7vw, 104px);
  font-weight: 500;
  line-height: 0.95;
}
.collection-band-copy p:not(.eyebrow) {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}
.collection-band-copy .text-link {
  margin-top: 34px;
  color: var(--jussan-red);
}
.maison-atelier {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(36px, 8vw, 118px);
  padding: clamp(74px, 10vw, 134px) clamp(20px, 9vw, 148px);
  color: #fff;
  background: #111;
}
.maison-atelier h2 {
  max-width: 720px;
}
.maison-atelier dl {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  margin: 0;
  background: rgba(255, 255, 255, 0.18);
}
.maison-atelier dl div {
  min-height: 168px;
  padding: 28px;
  background: #111;
}
.maison-atelier dt {
  color: #f2d8a2;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1;
}
.maison-atelier dd {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

@media (max-width: 980px) {
  .collection-band,
  .collection-band:nth-child(even),
  .maison-atelier {
    grid-template-columns: 1fr;
  }
  .collection-number {
    min-height: 68px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .collection-band:nth-child(even) .collection-band-image {
    order: initial;
  }
  .collection-band,
  .collection-band-image {
    min-height: 0;
  }
  .collection-band-image {
    aspect-ratio: 16 / 11;
  }
}

@media (max-width: 640px) {
  .maison-cover-copy h1 {
    font-size: clamp(54px, 18vw, 92px);
  }
  .maison-cover-copy {
    padding-bottom: 11vh;
  }
  .maison-atelier dl {
    grid-template-columns: 1fr;
  }
}


/* Cart */
.cart-toggle{position:fixed;right:22px;bottom:22px;z-index:60;min-height:46px;padding:0 17px;border:1px solid rgba(143,18,24,.28);background:rgba(255,253,249,.94);color:var(--jussan-red);box-shadow:0 18px 48px rgba(17,17,17,.12);letter-spacing:.11em;text-transform:uppercase;cursor:pointer}.cart-toggle span{display:inline-grid;place-items:center;min-width:22px;height:22px;margin-left:8px;color:#fff;background:var(--jussan-red);border-radius:999px;font-size:11px}.cart-scrim{position:fixed;inset:0;z-index:70;background:rgba(17,17,17,.34);opacity:0;pointer-events:none;transition:opacity .25s ease}.cart-drawer{position:fixed;top:0;right:0;z-index:80;width:min(440px,100vw);height:100vh;display:grid;grid-template-rows:auto 1fr auto;background:#fffdf9;box-shadow:-24px 0 70px rgba(17,17,17,.18);transform:translateX(105%);transition:transform .28s ease}.cart-open .cart-drawer{transform:translateX(0)}.cart-open .cart-scrim{opacity:1;pointer-events:auto}.cart-head,.cart-foot{padding:22px;border-bottom:1px solid var(--line)}.cart-head{display:flex;align-items:center;justify-content:space-between}.cart-head strong{font-family:Didot,Bodoni 72,Georgia,serif;font-size:28px;font-weight:500}.cart-close{border:0;background:transparent;color:var(--jussan-red);letter-spacing:.1em;text-transform:uppercase;cursor:pointer}.cart-body{overflow:auto;padding:10px 22px 22px}.cart-line{display:grid;grid-template-columns:74px 1fr;gap:14px;padding:16px 0;border-bottom:1px solid var(--line)}.cart-line img{width:74px;height:74px;object-fit:cover;background:var(--soft)}.cart-line strong{display:block;font-size:15px}.cart-line span{display:block;margin-top:6px;color:var(--muted);font-size:12px}.cart-qty{display:flex;flex-wrap:wrap;gap:6px;margin-top:10px}.cart-qty button,.cart-qty input{height:30px;border:1px solid var(--line);background:#fff}.cart-qty button{padding:0 9px;color:var(--jussan-red);cursor:pointer}.cart-qty input{width:44px;padding:0;text-align:center}.cart-foot{border-top:1px solid var(--line);border-bottom:0}.cart-foot>div{display:flex;justify-content:space-between;margin-bottom:16px}.cart-foot span{color:var(--muted);letter-spacing:.12em;text-transform:uppercase}.cart-foot strong{color:var(--jussan-red);font-size:24px}.empty-cart{color:var(--muted);line-height:1.6}.add-cart{width:100%;min-height:40px;margin-top:14px;border:1px solid rgba(143,18,24,.24);background:#fffdf9;color:var(--jussan-red);letter-spacing:.11em;text-transform:uppercase;cursor:pointer}.add-cart:hover{background:var(--jussan-red);color:#fff}

.cart-drawer {
  width: min(520px, 100vw);
}
.cart-foot {
  display: grid;
  gap: 16px;
}
.cart-foot > .cart-customer {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 14px;
  background: rgba(255,255,255,0.62);
  border: 1px solid var(--line);
}
.cart-customer .eyebrow {
  grid-column: 1 / -1;
  margin: 0 0 2px;
  color: var(--jussan-red);
}
.cart-customer label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.cart-customer label:last-child {
  grid-column: 1 / -1;
}
.cart-customer input,
.cart-customer textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  font-size: 13px;
  letter-spacing: 0;
  text-transform: none;
  padding: 10px 11px;
  outline: none;
}
.cart-customer input:focus,
.cart-customer textarea:focus {
  border-color: rgba(143,18,24,0.45);
  box-shadow: 0 0 0 3px rgba(143,18,24,0.08);
}
.cart-customer textarea {
  resize: vertical;
  min-height: 70px;
}
.cart-foot > .cart-summary-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0;
}


/* High-resolution campaign image tuning */
.maison-cover::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.42)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 36%, rgba(0, 0, 0, 0.12));
}
.maison-cover > img {
  object-position: center center;
  filter: saturate(0.82) contrast(1.06) brightness(0.92);
}
.collection-band-image img {
  object-position: center center;
  filter: saturate(0.9) contrast(1.03);
}
.collection-band:nth-child(1) .collection-band-image img { object-position: center 48%; }
.collection-band:nth-child(2) .collection-band-image img { object-position: center 42%; }
.collection-band:nth-child(3) .collection-band-image img { object-position: center 54%; }
.collection-band:nth-child(4) .collection-band-image img { object-position: center 50%; }

/* Image clarity pass */
.product-card img,
.collection-band-image img,
.cart-line img,
td img {
  image-rendering: auto;
  backface-visibility: hidden;
}
.product-card:hover img,
.quotation-section .product-card:hover img {
  transform: none;
}
.quotation-section .product-card .image {
  background: #f8f3ec;
}
.quotation-section .product-card .image img {
  object-fit: contain;
  padding: 10px;
  filter: contrast(1.03) saturate(1.02);
}
.collection-band-image img {
  filter: saturate(0.98) contrast(1.04);
}

/* WhatsApp entry */
.whatsapp-float {
  position: fixed;
  right: 22px;
  top: 104px;
  bottom: auto;
  z-index: 61;
  display: grid;
  grid-template-columns: 38px 1fr;
  column-gap: 12px;
  row-gap: 2px;
  align-items: center;
  min-width: 248px;
  padding: 15px 18px;
  color: #fff;
  background: #1fa463;
  box-shadow: 0 22px 56px rgba(17, 17, 17, 0.2);
}
.whatsapp-float svg {
  grid-row: span 2;
  width: 38px;
  height: 38px;
  fill: currentColor;
}
.whatsapp-float span {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.86;
}
.whatsapp-float strong {
  font-size: 16px;
  font-weight: 600;
}
.contact-entry {
  padding: clamp(70px, 10vw, 128px) clamp(20px, 9vw, 148px);
  text-align: center;
  background: #fffdf9;
  border-top: 1px solid var(--line);
}
.contact-entry h2 {
  max-width: 760px;
  margin: 0 auto 28px;
}

@media (max-width: 640px) {
  .whatsapp-float {
    left: 14px;
    right: auto;
    bottom: 82px;
    min-width: 232px;
  }
}

/* Designer-brand homepage refresh */
.maison-cover {
  justify-items: start;
  min-height: calc(100svh - 84px);
  background: #f8f3ec;
}
.maison-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,253,249,0.98) 0%, rgba(255,253,249,0.9) 35%, rgba(255,253,249,0.22) 62%, rgba(255,253,249,0) 100%),
    radial-gradient(circle at 20% 58%, rgba(203,164,90,0.16), transparent 34%);
}
.maison-cover::after {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255,253,249,0.04), rgba(17,17,17,0.04)),
    linear-gradient(90deg, rgba(143,18,24,0.08), transparent 42%);
}
.maison-cover > img {
  filter: saturate(1.02) contrast(1.03) brightness(1);
  object-position: center center;
  transform: scale(1.025);
  animation: campaignDrift 18s ease-in-out infinite alternate;
}
.maison-cover-copy {
  width: min(600px, calc(100% - 42px));
  margin-left: clamp(20px, 8vw, 138px);
  padding: clamp(36px, 7vw, 92px) 0 8vh;
  color: var(--ink);
  text-align: left;
  animation: editorialIn 900ms cubic-bezier(.2,.7,.2,1) both;
}
.maison-cover-copy .eyebrow {
  color: var(--jussan-red);
}
.maison-cover-copy h1 {
  margin-top: 18px;
  color: #111;
  font-size: clamp(72px, 10vw, 132px);
  letter-spacing: 0.08em;
}
.maison-cover-copy p:not(.eyebrow) {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(22,21,19,0.72);
  font-size: 18px;
}
.maison-cover-copy .hero-actions {
  justify-content: flex-start;
}
.maison-cover-copy .button.primary {
  background: #111;
  border-color: #111;
  color: #fffdf9;
}
.maison-cover-copy .button.ghost {
  border-color: rgba(143,18,24,0.32);
  color: var(--jussan-red);
}
.cover-scroll {
  display: none;
}
.cover-scroll::after {
  height: 54px;
  background: rgba(143,18,24,0.38);
  animation: scrollPulse 1.9s ease-in-out infinite;
}
.maison-intro {
  position: relative;
  overflow: hidden;
}
.maison-intro::before {
  content: "JUSSAN";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  color: rgba(143,18,24,0.035);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(110px, 22vw, 340px);
  letter-spacing: 0.12em;
  pointer-events: none;
}
.maison-intro > * {
  position: relative;
}
.collection-band {
  overflow: hidden;
  transition: background 300ms ease, transform 300ms ease;
}
.collection-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 0%, rgba(203,164,90,0.08) 46%, transparent 72%);
  transform: translateX(-115%);
  transition: transform 900ms ease;
}
.collection-band:hover::before {
  transform: translateX(115%);
}
.collection-number,
.collection-band-image,
.collection-band-copy {
  position: relative;
  z-index: 1;
}
.collection-band-image img {
  transform: scale(1.01);
  transition: transform 1100ms cubic-bezier(.2,.7,.2,1), filter 300ms ease;
}
.collection-band:hover .collection-band-image img {
  transform: scale(1.075);
}

/* Refined WhatsApp concierge entry */
.whatsapp-float {
  grid-template-columns: 46px 1fr;
  min-width: 294px;
  padding: 13px 16px 13px 14px;
  color: #111;
  background: rgba(255,253,249,0.96);
  border: 1px solid rgba(31,164,99,0.34);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(17,17,17,0.18);
  backdrop-filter: blur(16px);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  border-color: rgba(31,164,99,0.62);
  box-shadow: 0 30px 82px rgba(17,17,17,0.22);
}
.whatsapp-float svg {
  width: 46px;
  height: 46px;
  padding: 8px;
  color: #fff;
  fill: currentColor;
  background: #1fa463;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.18), 0 10px 24px rgba(31,164,99,0.28);
}
.whatsapp-float span {
  color: #1f7f4e;
  opacity: 1;
}
.whatsapp-float strong {
  color: #111;
  font-size: 15px;
  letter-spacing: 0.01em;
}

@keyframes campaignDrift {
  from { transform: scale(1.025) translate3d(-8px, 0, 0); }
  to { transform: scale(1.075) translate3d(18px, -8px, 0); }
}
@keyframes editorialIn {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%, 100% { transform: scaleY(0.5); transform-origin: top; opacity: 0.35; }
  50% { transform: scaleY(1); opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .maison-cover > img,
  .maison-cover-copy,
  .cover-scroll::after {
    animation: none;
  }
  .collection-band::before {
    transition: none;
  }
}

@media (max-width: 980px) {
  .maison-cover {
    align-items: end;
  }
  .maison-cover::before {
    background:
      linear-gradient(180deg, rgba(255,253,249,0.08) 0%, rgba(255,253,249,0.88) 56%, rgba(255,253,249,0.98) 100%);
  }
  .maison-cover-copy {
    margin: 0 auto;
    padding-bottom: 14vh;
    text-align: center;
  }
  .maison-cover-copy p:not(.eyebrow) {
    margin-left: auto;
    margin-right: auto;
  }
  .maison-cover-copy .hero-actions {
    justify-content: center;
  }
  .cover-scroll {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 640px) {
  .maison-cover {
    min-height: 760px;
  }
  .maison-cover > img {
    object-position: 66% center;
  }
  .maison-cover-copy h1 {
    font-size: clamp(58px, 19vw, 92px);
  }
  .maison-cover-copy p:not(.eyebrow) {
    font-size: 15px;
  }
  .whatsapp-float {
    left: 12px;
    right: 12px;
    bottom: 82px;
    min-width: 0;
  }
}

/* Factory story homepage */
.calm-home {
  background:
    linear-gradient(90deg, rgba(143,18,24,0.035) 0 1px, transparent 1px) 0 0 / 86px 86px,
    #fffdf9;
}
.factory-hero {
  position: relative;
  min-height: calc(100svh - 84px);
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(430px, 1.16fr);
  gap: clamp(28px, 4.2vw, 62px);
  align-items: center;
  padding: clamp(42px, 7vw, 98px) clamp(20px, 7vw, 118px) clamp(92px, 10vw, 138px);
  overflow: hidden;
  border-bottom: 1px solid rgba(143,18,24,0.16);
  background:
    radial-gradient(circle at 16% 24%, rgba(185,154,86,0.18), transparent 28%),
    linear-gradient(115deg, #fffdf9 0%, #fbf5ee 48%, #efe2d3 100%);
}
.factory-hero::before {
  content: "JUSSAN";
  position: absolute;
  right: -0.08em;
  bottom: -0.18em;
  color: rgba(143,18,24,0.048);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(110px, 21vw, 360px);
  line-height: 1;
  pointer-events: none;
}
.factory-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.48) 42%, transparent 58%);
  transform: translateX(-110%);
  animation: factoryLightSweep 8s ease-in-out infinite;
}
.factory-hero-copy,
.factory-hero-media {
  position: relative;
  z-index: 1;
}
.factory-hero-copy h1 {
  margin-top: 10px;
  font-size: clamp(62px, 7.6vw, 112px);
  letter-spacing: 0.04em;
  line-height: 0.88;
}
.hero-statement {
  max-width: 610px;
  margin: 28px 0 0;
  color: rgba(22,21,19,0.74);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.72;
}
.factory-hero .hero-actions {
  margin-top: 36px;
}
.factory-hero .button.primary {
  background: #111;
  border-color: #111;
  color: #fffdf9;
}
.factory-hero .button.ghost {
  border-color: rgba(143,18,24,0.36);
  color: var(--jussan-red);
  background: rgba(255,253,249,0.42);
}
.factory-hero .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(17,17,17,0.12);
}
.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 650px;
  margin: 42px 0 0;
  background: rgba(143,18,24,0.18);
  border: 1px solid rgba(143,18,24,0.16);
}
.hero-proof div {
  min-height: 126px;
  padding: 18px;
  background: rgba(255,253,249,0.82);
  backdrop-filter: blur(16px);
}
.hero-proof dt {
  color: var(--jussan-red);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1;
}
.hero-proof dd {
  margin: 12px 0 0;
  color: rgba(22,21,19,0.62);
  font-size: 12px;
  line-height: 1.45;
}
.factory-hero-media {
  min-height: clamp(520px, 62vw, 760px);
  border: 1px solid rgba(143,18,24,0.18);
  background: #f6eee5;
  box-shadow: 0 36px 90px rgba(17,17,17,0.12);
  overflow: hidden;
}
.factory-hero-media img {
  width: 100%;
  height: 100%;
  min-height: clamp(520px, 62vw, 760px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.98) contrast(1.04);
  transform: scale(1.02);
  animation: campaignDrift 20s ease-in-out infinite alternate;
}
.floating-factory-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  display: grid;
  gap: 8px;
  padding: 20px 22px;
  background: rgba(255,253,249,0.9);
  border-left: 4px solid var(--jussan-red);
  backdrop-filter: blur(18px);
  box-shadow: 0 22px 50px rgba(17,17,17,0.14);
}
.floating-factory-card span {
  color: var(--jussan-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.floating-factory-card strong {
  max-width: 420px;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(24px, 2.4vw, 38px);
  font-weight: 500;
  line-height: 1.02;
}
.story-marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  gap: 44px;
  padding: 18px 0;
  white-space: nowrap;
  border-top: 1px solid rgba(143,18,24,0.16);
  background: rgba(17,17,17,0.96);
  overflow: hidden;
}
.story-marquee span {
  flex: 0 0 auto;
  color: #f2d8a2;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: marqueeRun 17s linear infinite;
}
.factory-story {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(34px, 7vw, 96px);
  padding: clamp(74px, 10vw, 142px) clamp(20px, 8vw, 128px);
  color: #fff;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.04) 0 1px, transparent 1px) 0 0 / 86px 86px,
    #111;
}
.factory-story-copy {
  position: sticky;
  top: 116px;
  align-self: start;
}
.factory-story .eyebrow,
.maison-atelier .eyebrow {
  color: #f2d8a2;
}
.factory-story h2,
.factory-process h2,
.contact-entry h2 {
  letter-spacing: 0;
}
.factory-story-copy p:not(.eyebrow) {
  max-width: 560px;
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  line-height: 1.82;
}
.factory-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.story-card {
  min-height: 260px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,0.16);
  background: rgba(255,255,255,0.045);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}
.story-card:nth-child(5) {
  grid-column: 1 / -1;
  min-height: 220px;
  background: rgba(185,154,86,0.12);
}
.story-card:hover {
  transform: translateY(-4px);
  border-color: rgba(242,216,162,0.5);
  background: rgba(255,255,255,0.08);
}
.story-card span {
  color: #f2d8a2;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: 44px;
}
.story-card h3 {
  margin: auto 0 14px;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 500;
  line-height: 1.02;
}
.story-card p {
  margin: 0;
  color: rgba(255,255,255,0.68);
  line-height: 1.65;
}
.factory-process {
  position: relative;
  padding: clamp(72px, 10vw, 132px) clamp(20px, 8vw, 128px);
  overflow: hidden;
  background: #fffdf9;
  border-bottom: 1px solid var(--line);
}
.factory-process::before {
  content: "WHOLESALE";
  position: absolute;
  left: 50%;
  top: 44px;
  transform: translateX(-50%);
  color: rgba(143,18,24,0.035);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(82px, 16vw, 240px);
  letter-spacing: 0.1em;
  pointer-events: none;
}
.process-rail {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 46px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(143,18,24,0.18);
  border: 1px solid rgba(143,18,24,0.18);
}
.process-step {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  background: rgba(255,255,255,0.74);
}
.process-step span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--jussan-red);
  border-radius: 50%;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: 24px;
}
.process-step strong {
  margin-top: auto;
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(27px, 2.7vw, 40px);
  font-weight: 500;
}
.process-step p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.65;
}
.maison-collections {
  background: #fff;
}
.maison-collections .section-head {
  padding-top: clamp(72px, 10vw, 130px);
}
.collection-band {
  min-height: 560px;
  background: #fffdf9;
}
.collection-band:hover {
  background: #fff;
}
.collection-number {
  background: #fff;
}
.maison-atelier {
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 1.18fr);
  background:
    radial-gradient(circle at 18% 18%, rgba(185,154,86,0.14), transparent 34%),
    #111;
}
.maison-atelier dl {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.maison-atelier dl div {
  min-height: 186px;
}
.contact-entry {
  background:
    radial-gradient(circle at 50% 0%, rgba(185,154,86,0.16), transparent 34%),
    #fffdf9;
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes factoryLightSweep {
  0%, 42% { transform: translateX(-115%); opacity: 0; }
  52% { opacity: 0.8; }
  70%, 100% { transform: translateX(115%); opacity: 0; }
}
@keyframes marqueeRun {
  from { transform: translateX(0); }
  to { transform: translateX(-260px); }
}

@media (prefers-reduced-motion: reduce) {
  .factory-hero::after,
  .factory-hero-media img,
  .story-marquee span {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1180px) {
  .factory-hero,
  .factory-story,
  .maison-atelier {
    grid-template-columns: 1fr;
  }
  .factory-story-copy {
    position: static;
  }
  .hero-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .process-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .maison-atelier dl {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .calm-home .calm-topbar {
    gap: 12px;
  }
  .factory-hero {
    min-height: auto;
    padding-top: 34px;
    padding-bottom: 86px;
  }
  .factory-hero-media {
    order: -1;
  }
  .factory-hero-copy h1 {
    font-size: clamp(58px, 20vw, 96px);
  }
  .factory-hero .hero-actions {
    align-items: stretch;
  }
  .factory-hero .button {
    width: 100%;
  }
  .hero-proof,
  .factory-story-grid,
  .process-rail,
  .maison-atelier dl {
    grid-template-columns: 1fr;
  }
  .factory-hero-media,
  .factory-hero-media img {
    min-height: 380px;
  }
  .floating-factory-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
  .process-step {
    min-height: 230px;
  }
}

/* One-image homepage collection index */
.maison-collections .section-head h2 {
  font-size: clamp(42px, 6vw, 86px);
}
.collection-bands {
  max-width: 1480px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.collection-band,
.collection-band:nth-child(even) {
  grid-template-columns: 104px minmax(300px, 0.64fr) minmax(0, 1fr);
  min-height: 390px;
  margin: 0 clamp(20px, 6vw, 86px);
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.collection-band::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  top: 50%;
  width: clamp(82px, 11vw, 170px);
  height: 1px;
  background: rgba(143,18,24,0.26);
  transform: translateY(-50%) scaleX(0.56);
  transform-origin: right;
  transition: transform 360ms ease, background 360ms ease;
}
.collection-band:hover::after {
  transform: translateY(-50%) scaleX(1);
  background: rgba(143,18,24,0.7);
}
.collection-band-image {
  position: relative;
  align-self: stretch;
  display: block;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  background: #111;
}
.collection-band-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17,17,17,0.32), transparent 42%, rgba(255,253,249,0.04)),
    radial-gradient(circle at 70% 20%, rgba(242,216,162,0.24), transparent 34%);
  pointer-events: none;
}
.collection-band-image img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.95) contrast(1.04);
  transform: scale(1.035);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1), filter 900ms ease;
}
.collection-band:hover .collection-band-image img {
  filter: saturate(1.04) contrast(1.08);
  transform: scale(1.085) translateX(-8px);
}
.collection-band-copy {
  max-width: 1120px;
  min-height: 390px;
  padding: clamp(32px, 5vw, 66px) clamp(34px, 7vw, 106px);
}
.collection-band-copy h3 {
  font-size: clamp(46px, 7vw, 104px);
}
.collection-count {
  display: inline-flex;
  width: max-content;
  margin-top: 24px;
  padding: 8px 11px;
  color: var(--muted);
  border: 1px solid rgba(143,18,24,0.18);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.collection-band-copy .text-link {
  width: max-content;
  margin-top: 22px;
}

@media (max-width: 760px) {
  .collection-band,
  .collection-band:nth-child(even) {
    grid-template-columns: 1fr;
    margin: 0 16px;
    min-height: 0;
  }
  .collection-band::after {
    display: none;
  }
  .collection-number {
    min-height: 62px;
  }
  .collection-band-image,
  .collection-band-image img {
    min-height: 230px;
  }
  .collection-band-copy {
    min-height: 0;
    padding: 28px 24px 34px;
  }
}

/* Motion-led designer homepage and collection campaign pages */
.factory-hero {
  --hero-media-x: 0px;
  --hero-media-y: 0px;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-copy-y: 0px;
  --hero-word-x: 0px;
  --hero-word-y: 0px;
  --hero-image-scale: 1.035;
  isolation: isolate;
}
.factory-hero::before {
  transform: translate3d(var(--hero-word-x), var(--hero-word-y), 0);
  animation: heroWordFloat 18s ease-in-out infinite alternate;
}
.factory-hero::after {
  z-index: 0;
  opacity: 0.34;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.2) 42%, transparent 58%);
  mix-blend-mode: normal;
}
.factory-hero-copy.reveal.is-visible {
  transform: translate3d(0, var(--hero-copy-y), 0);
  transition: transform 420ms ease, opacity 760ms ease;
}
.factory-hero-media.reveal.is-visible {
  transform: translate3d(var(--hero-media-x), var(--hero-media-y), 0);
  transition: transform 520ms cubic-bezier(.2,.7,.2,1), opacity 760ms ease;
}
.factory-hero-copy,
.factory-hero-media,
.story-marquee {
  z-index: 2;
}
.factory-hero-media::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 2vw, 28px);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.62);
  pointer-events: none;
}
.factory-hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17,17,17,0.02), rgba(17,17,17,0.24)),
    radial-gradient(circle at 72% 18%, rgba(242,216,162,0.26), transparent 30%);
}
.factory-hero-media img {
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(var(--hero-image-scale));
  animation: heroImageBreath 16s ease-in-out infinite alternate;
  will-change: transform;
}
.floating-factory-card {
  z-index: 3;
}
.hero-proof div {
  transition: transform 280ms ease, background 280ms ease;
}
.hero-proof div:hover {
  transform: translateY(-4px);
  background: rgba(255,253,249,0.96);
}
.factory-story,
.maison-atelier {
  background-attachment: fixed, scroll;
}
.story-card,
.process-step,
.collection-band {
  will-change: transform;
}
.collection-band {
  transition: background 280ms ease, transform 280ms ease, box-shadow 280ms ease;
}
.collection-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 70px rgba(17,17,17,0.055);
}
.collection-band-copy h3 {
  letter-spacing: 0;
}

.collection-header {
  --collection-image-x: 0px;
  --collection-image-y: 0px;
  --collection-copy-y: 0px;
  position: relative;
  isolation: isolate;
  min-height: calc(88svh - 88px);
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center;
  justify-content: normal;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 7vw, 118px);
  overflow: hidden;
  background:
    radial-gradient(circle at 74% 18%, rgba(185,154,86,0.2), transparent 30%),
    linear-gradient(90deg, rgba(143,18,24,0.06) 0 1px, transparent 1px) 0 0 / 92px 92px,
    linear-gradient(120deg, #fffdf9 0%, #fbf4ed 44%, #eadbca 100%);
}
.collection-header::before {
  content: "FACTORY DIRECT";
  position: absolute;
  left: clamp(20px, 6vw, 112px);
  bottom: -0.16em;
  color: rgba(143,18,24,0.045);
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(70px, 11vw, 180px);
  line-height: 1;
  pointer-events: none;
  z-index: 0;
}
.collection-header-copy {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.collection-header-copy.reveal.is-visible {
  transform: translate3d(0, var(--collection-copy-y), 0);
  transition: transform 480ms ease, opacity 760ms ease;
}
.collection-header h1 {
  margin-top: 14px;
  font-size: clamp(58px, 8.6vw, 128px);
  letter-spacing: 0;
  line-height: 0.86;
}
.collection-header-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 26px 0 0;
  color: rgba(22,21,19,0.7);
  font-size: clamp(16px, 1.35vw, 20px);
  line-height: 1.76;
}
.collection-hero-visual {
  position: relative;
  z-index: 1;
  min-height: clamp(430px, 54vw, 720px);
  overflow: hidden;
  border: 1px solid rgba(143,18,24,0.18);
  background: #f6eee5;
  box-shadow: 0 38px 92px rgba(17,17,17,0.13);
}
.collection-hero-visual::before {
  content: "";
  position: absolute;
  inset: clamp(16px, 2vw, 30px);
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.62);
  pointer-events: none;
}
.collection-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, transparent 38%, rgba(17,17,17,0.28)),
    radial-gradient(circle at 72% 14%, rgba(242,216,162,0.3), transparent 26%);
}
.collection-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(430px, 54vw, 720px);
  object-fit: cover;
  object-position: 78% center;
  filter: saturate(0.98) contrast(1.06);
  transform: translate3d(var(--collection-image-x), var(--collection-image-y), 0) scale(1.035);
  animation: heroImageBreath 17s ease-in-out infinite alternate;
  will-change: transform;
}
.collection-hero-caption {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  z-index: 3;
  display: grid;
  gap: 8px;
  max-width: 520px;
  padding: 18px 20px;
  background: rgba(255,253,249,0.9);
  border-left: 4px solid var(--jussan-red);
  backdrop-filter: blur(18px);
}
.collection-hero-caption span {
  color: var(--jussan-red);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.collection-hero-caption strong {
  font-family: Didot, Bodoni 72, Georgia, serif;
  font-size: clamp(24px, 2.1vw, 34px);
  font-weight: 500;
  line-height: 1.05;
}

@keyframes heroImageBreath {
  from { filter: saturate(0.95) contrast(1.03); }
  to { filter: saturate(1.05) contrast(1.09); }
}
@keyframes heroWordFloat {
  from { letter-spacing: 0; }
  to { letter-spacing: 0.018em; }
}

@media (prefers-reduced-motion: reduce) {
  .factory-hero::before,
  .factory-hero-media img,
  .collection-hero-visual img {
    animation: none;
  }
  .factory-hero-copy.reveal.is-visible,
  .factory-hero-media.reveal.is-visible,
  .collection-header-copy.reveal.is-visible {
    transform: none;
  }
}

@media (max-width: 1180px) {
  .collection-header {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .collection-hero-visual {
    order: -1;
  }
}

@media (max-width: 760px) {
  .factory-story,
  .maison-atelier {
    background-attachment: scroll;
  }
  .collection-header {
    padding: 26px 16px 44px;
  }
  .collection-header h1 {
    font-size: clamp(52px, 18vw, 88px);
  }
  .collection-hero-visual,
  .collection-hero-visual img {
    min-height: 380px;
  }
  .collection-hero-caption {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* Dark editorial homepage upgrade */
.factory-hero {
  --hero-media-x: 0px;
  --hero-media-y: 0px;
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-copy-y: 0px;
  --hero-word-x: 0px;
  --hero-word-y: 0px;
  --hero-image-scale: 1.035;
  min-height: calc(100svh - 88px);
  grid-template-columns: minmax(330px, 0.72fr) minmax(520px, 1.28fr);
  gap: clamp(30px, 5vw, 88px);
  align-items: center;
  padding: clamp(54px, 7vw, 104px) clamp(20px, 6.5vw, 110px) clamp(112px, 10vw, 150px);
  color: #fffaf0;
  background:
    radial-gradient(circle at 78% 24%, rgba(214,177,94,0.22), transparent 30%),
    linear-gradient(125deg, #080706 0%, #14110e 46%, #332315 100%);
}
.factory-hero::before {
  right: auto;
  left: clamp(20px, 4vw, 72px);
  bottom: -0.16em;
  color: rgba(255,250,240,0.055);
  font-size: clamp(120px, 20vw, 360px);
}
.factory-hero::after {
  opacity: 0.28;
  background:
    linear-gradient(105deg, transparent 0%, rgba(214,177,94,0.16) 45%, transparent 60%),
    linear-gradient(90deg, rgba(255,255,255,0.035) 0 1px, transparent 1px) 0 0 / 92px 92px;
}
.factory-hero-copy {
  max-width: 650px;
}
.factory-hero-copy .eyebrow {
  color: #d8b76b;
}
.factory-hero-copy h1 {
  color: #fffaf0;
  font-size: clamp(68px, 8.5vw, 138px);
  letter-spacing: 0.02em;
  text-shadow: 0 28px 70px rgba(0,0,0,0.3);
}
.hero-statement {
  color: rgba(255,250,240,0.74);
  max-width: 560px;
}
.factory-hero .button.primary {
  background: #fffaf0;
  border-color: #fffaf0;
  color: #111;
}
.factory-hero .button.ghost {
  color: #f2d8a2;
  border-color: rgba(242,216,162,0.38);
  background: rgba(255,255,255,0.04);
}
.hero-proof {
  max-width: 720px;
  background: rgba(242,216,162,0.2);
  border-color: rgba(242,216,162,0.22);
}
.hero-proof div {
  background: rgba(255,250,240,0.08);
  backdrop-filter: blur(18px);
}
.hero-proof dt {
  color: #f2d8a2;
}
.hero-proof dd {
  color: rgba(255,250,240,0.62);
}
.factory-hero-media {
  min-height: clamp(560px, 64vw, 790px);
  border: 1px solid rgba(242,216,162,0.2);
  background: #111;
  box-shadow: 0 44px 120px rgba(0,0,0,0.42);
}
.factory-hero-media img {
  min-height: clamp(560px, 64vw, 790px);
  object-position: center;
  filter: saturate(0.98) contrast(1.08);
}
.factory-hero-media::before {
  border-color: rgba(255,250,240,0.42);
}
.factory-hero-media::after {
  background:
    linear-gradient(180deg, rgba(0,0,0,0.08), rgba(0,0,0,0.28)),
    radial-gradient(circle at 70% 18%, rgba(242,216,162,0.2), transparent 32%);
}
.floating-factory-card {
  left: auto;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  max-width: 420px;
  background: rgba(12,11,10,0.72);
  color: #fffaf0;
  border-left-color: #d8b76b;
  box-shadow: 0 26px 70px rgba(0,0,0,0.32);
}
.floating-factory-card span {
  color: #f2d8a2;
}
.story-marquee {
  background: rgba(7,7,6,0.96);
  border-top-color: rgba(242,216,162,0.22);
}

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

@media (max-width: 760px) {
  .factory-hero {
    padding: 22px 16px 90px;
  }
  .factory-hero-copy h1 {
    font-size: clamp(60px, 20vw, 98px);
  }
  .factory-hero-media,
  .factory-hero-media img {
    min-height: 420px;
  }
  .floating-factory-card {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* Final homepage art direction: designer-brand campaign rhythm */
.factory-hero {
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 20%, rgba(219, 181, 96, 0.24), transparent 28%),
    radial-gradient(circle at 18% 76%, rgba(143, 18, 24, 0.17), transparent 30%),
    linear-gradient(122deg, #070604 0%, #15110d 45%, #34210f 100%);
}
.factory-hero-media {
  transform: translate3d(var(--hero-media-x), var(--hero-media-y), 0);
  transition: transform 600ms cubic-bezier(.2,.7,.2,1);
}
.factory-hero-media img {
  animation: heroEditorialBreath 8s ease-in-out infinite alternate;
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(var(--hero-image-scale));
}
.factory-hero-copy h1 {
  transform: translate3d(var(--hero-word-x), var(--hero-word-y), 0);
}

.maison-collections {
  background:
    linear-gradient(180deg, #fffaf1 0%, #f7efe3 48%, #11100e 48%, #11100e 100%);
}
.collection-bands {
  border-top: 0;
}
.collection-band,
.collection-band:nth-child(even) {
  grid-template-columns: 100px minmax(260px, 0.42fr) minmax(0, 1fr);
  min-height: 440px;
  margin-bottom: 18px;
  overflow: hidden;
  background: rgba(255, 253, 248, 0.95);
  border: 1px solid rgba(36, 29, 22, 0.16);
  box-shadow: 0 24px 72px rgba(17, 14, 10, 0.12);
}
.collection-band:nth-child(even) .collection-band-image {
  order: initial;
}
.collection-band-image {
  height: 440px;
  min-height: 440px;
  aspect-ratio: auto;
}
.collection-band-image::before {
  content: "";
  position: absolute;
  inset: -20% -80%;
  z-index: 2;
  background: linear-gradient(105deg, transparent 38%, rgba(255, 244, 217, 0.22) 50%, transparent 62%);
  transform: translateX(-38%);
  transition: transform 900ms cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.collection-band:hover .collection-band-image::before {
  transform: translateX(38%);
}
.collection-band-image img {
  min-height: 440px;
  object-position: center;
  filter: saturate(0.98) contrast(1.08);
  transform: scale(1.01);
}
.collection-band:hover .collection-band-image img {
  filter: saturate(1.05) contrast(1.12);
  transform: scale(1.07);
}
.collection-band-copy {
  min-height: 440px;
  max-width: none;
}

@keyframes heroEditorialBreath {
  from {
    filter: saturate(0.98) contrast(1.08);
  }
  to {
    filter: saturate(1.05) contrast(1.14);
  }
}

@media (prefers-reduced-motion: reduce) {
  .factory-hero-media img {
    animation: none;
  }
  .collection-band-image::before,
  .collection-band-image img {
    transition: none;
  }
}

@media (max-width: 760px) {
  .maison-collections {
    background: #fffaf1;
  }
  .collection-band,
  .collection-band:nth-child(even) {
    grid-template-columns: 1fr;
    min-height: 0;
    margin-bottom: 16px;
  }
  .collection-band-image,
  .collection-band-image img {
    min-height: 320px;
    aspect-ratio: 1.18;
  }
}

@media (max-width: 640px) {
  .whatsapp-float {
    left: auto;
    right: 12px;
    top: auto;
    bottom: 88px;
    width: 58px;
    height: 58px;
    min-width: 0;
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    padding: 0;
    border-radius: 999px;
  }
  .whatsapp-float svg {
    width: 36px;
    height: 36px;
  }
  .whatsapp-float span,
  .whatsapp-float strong {
    display: none;
  }
  .cart-toggle {
    right: 12px;
    bottom: 12px;
    min-width: 66px;
    min-height: 58px;
    padding: 0 10px;
    font-size: 11px;
  }
  .cart-toggle span {
    min-width: 20px;
    height: 20px;
    margin-left: 4px;
    border-bottom: 0;
  }
  .calm-home main {
    padding-bottom: 84px;
  }
}

/* Final 4K cinematic homepage hero */
.cinema-hero {
  --hero-image-x: 0px;
  --hero-image-y: 0px;
  --hero-copy-y: 0px;
  --hero-word-x: 0px;
  --hero-word-y: 0px;
  --hero-image-scale: 1.035;
  position: relative;
  min-height: calc(100svh - 84px);
  overflow: hidden;
  isolation: isolate;
  display: grid;
  align-items: center;
  justify-items: center;
  padding: clamp(78px, 9vw, 148px) clamp(20px, 7vw, 128px) clamp(104px, 10vw, 158px);
  background: #090807;
  color: #fffaf2;
}

.cinema-hero::before,
.cinema-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.cinema-hero::before {
  background:
    radial-gradient(circle at 52% 36%, rgba(255,255,255,.14) 0%, rgba(255,255,255,0) 30%),
    radial-gradient(circle at 82% 28%, rgba(205,161,80,.18) 0%, rgba(205,161,80,0) 28%),
    linear-gradient(90deg, rgba(7,7,7,.7) 0%, rgba(7,7,7,.34) 42%, rgba(7,7,7,.44) 68%, rgba(7,7,7,.78) 100%),
    linear-gradient(180deg, rgba(4,4,4,.1) 0%, rgba(4,4,4,.14) 46%, rgba(4,4,4,.76) 100%);
}

.cinema-hero::after {
  inset: auto auto 0 0;
  width: 100%;
  height: 46%;
  background:
    linear-gradient(180deg, rgba(8,8,8,0) 0%, rgba(8,8,8,.58) 78%, rgba(8,8,8,.92) 100%),
    linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.2) 50%, rgba(255,255,255,0) 100%);
  opacity: .95;
}

.cinema-hero-image {
  position: absolute;
  inset: -3%;
  z-index: -2;
  width: 106%;
  height: 106%;
  object-fit: cover;
  object-position: 50% 46%;
  transform: translate3d(var(--hero-image-x), var(--hero-image-y), 0) scale(var(--hero-image-scale));
  filter: saturate(.9) contrast(1.06) brightness(.74);
  animation: cinemaKenBurns 18s ease-in-out infinite alternate;
  will-change: transform;
}

.cinema-hero-copy {
  width: min(1120px, 92vw);
  max-width: min(1120px, 92vw);
  transform: translateY(var(--hero-copy-y));
  text-align: center;
  margin: 0 auto;
  padding-top: clamp(18px, 4vw, 64px);
}

.cinema-hero-copy .eyebrow {
  color: #d9bc76;
  letter-spacing: .36em;
  text-shadow: 0 14px 36px rgba(0,0,0,.34);
}

.cinema-hero-copy h1 {
  margin: clamp(16px, 3vw, 28px) 0 0;
  color: #fffaf2;
  font-size: clamp(86px, 15vw, 218px);
  font-weight: 500;
  line-height: .78;
  letter-spacing: .14em;
  text-shadow: 0 24px 72px rgba(0,0,0,.46);
  transform: translate3d(var(--hero-word-x), var(--hero-word-y), 0);
}

.cinema-hero-copy .hero-statement {
  max-width: 760px;
  margin: clamp(24px, 3.8vw, 36px) auto 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.22vw, 20px);
  line-height: 1.72;
  text-shadow: 0 16px 40px rgba(0,0,0,.48);
}

.cinema-hero .hero-actions {
  justify-content: center;
  margin-top: clamp(30px, 4vw, 48px);
}

.cinema-hero .button.primary {
  background: #fffaf2;
  border-color: #fffaf2;
  color: #171310;
  box-shadow: 0 22px 54px rgba(0,0,0,.28);
}

.cinema-hero .button.ghost {
  color: #fffaf2;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(16px);
}

.cinema-proof {
  display: none;
}

.cinema-proof span {
  min-height: 66px;
  display: grid;
  place-items: center;
  padding: 14px 18px;
  border-right: 1px solid rgba(35,28,21,.12);
  color: rgba(28,23,18,.72);
  font-size: 11px;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
}

.cinema-proof span:last-child {
  border-right: 0;
}

.cinema-discover {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 3;
  transform: translateX(-50%);
  color: rgba(255,255,255,.72);
  font-size: 10px;
  letter-spacing: .34em;
  text-transform: uppercase;
  text-decoration: none;
  animation: discoverFloat 2.4s ease-in-out infinite;
  text-shadow: 0 12px 36px rgba(0,0,0,.48);
}

@keyframes cinemaKenBurns {
  from { transform: translate3d(calc(var(--hero-image-x) - 8px), calc(var(--hero-image-y) - 4px), 0) scale(1.025); }
  to { transform: translate3d(calc(var(--hero-image-x) + 16px), calc(var(--hero-image-y) + 8px), 0) scale(1.08); }
}

@keyframes heroLightSweep {
  from { transform: translateX(-16%) skewX(-15deg); opacity: .36; }
  to { transform: translateX(150%) skewX(-15deg); opacity: .9; }
}

@keyframes discoverFloat {
  0%, 100% { transform: translate(-50%, 0); opacity: .55; }
  50% { transform: translate(-50%, -8px); opacity: .95; }
}

@media (prefers-reduced-motion: reduce) {
  .cinema-hero::after,
  .cinema-hero-image,
  .cinema-discover {
    animation: none;
  }
}

@media (max-width: 980px) {
  .cinema-hero {
    min-height: 760px;
    padding: 92px 20px 122px;
    align-items: center;
  }
  .cinema-hero::before {
    background:
      linear-gradient(180deg, rgba(6,6,6,.24) 0%, rgba(6,6,6,.22) 42%, rgba(6,6,6,.88) 100%),
      linear-gradient(90deg, rgba(6,6,6,.64), rgba(6,6,6,.08) 54%, rgba(6,6,6,.58));
  }
  .cinema-hero-image {
    object-position: 52% 44%;
  }
  .cinema-hero-copy {
    text-align: center;
    margin: 0 auto;
  }
  .cinema-hero .hero-actions {
    justify-content: center;
  }
  .cinema-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cinema-proof span:nth-child(2) {
    border-right: 0;
  }
  .cinema-proof span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(35,28,21,.1);
  }
}

@media (max-width: 640px) {
  .cinema-hero {
    min-height: 720px;
    padding-bottom: 150px;
  }
  .cinema-hero-copy h1 {
    font-size: clamp(50px, 16vw, 74px);
    letter-spacing: .08em;
  }
  .cinema-hero-copy .hero-statement {
    font-size: 14px;
    line-height: 1.68;
  }
  .cinema-proof {
    left: 12px;
    right: 12px;
  }
  .cinema-proof span {
    min-height: 58px;
    padding: 12px 10px;
    font-size: 9px;
    letter-spacing: .14em;
  }
}
