: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;
}
.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}


/* 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;
  bottom: 88px;
  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;
  }
}
