:root {
  --ivory: #f7f1e9;
  --ivory-deep: #eee2d6;
  --paper: #fbf8f3;
  --plum: #5a1732;
  --plum-deep: #35101f;
  --gold: #ae8650;
  --ink: #302822;
  --muted: #766b62;
  --line: rgba(113, 81, 55, .17);
  --serif: Georgia, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --max: 1480px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, select { font: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--serif); font-weight: 400; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.is-hidden { display: none !important; }

.skip-link {
  position: fixed; left: 1rem; top: 1rem; z-index: 100; transform: translateY(-180%);
  padding: .75rem 1rem; background: var(--plum); color: #fff;
}
.skip-link:focus { transform: translateY(0); }

.announcement {
  min-height: 36px; display: grid; place-items: center; padding: 8px 18px;
  color: #fff8f2; background: linear-gradient(90deg, #35101f, #6d1f3f 50%, #35101f);
  text-align: center; font-family: var(--serif); font-size: .69rem; letter-spacing: .22em;
}

.site-header {
  position: sticky; top: 0; z-index: 30; min-height: 118px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
  padding: 10px clamp(24px, 4vw, 72px); border-bottom: 1px solid var(--line);
  background: rgba(251,248,243,.96); backdrop-filter: blur(18px);
}
.brand { width: clamp(205px, 18vw, 285px); display: block; }
.brand img { display: block; width: 100%; height: auto; object-fit: contain; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.1rem, 2vw, 2.3rem); }
.desktop-nav a,
.header-right > span {
  color: #4b3a30; font-family: var(--serif); font-size: .71rem; letter-spacing: .11em;
  text-decoration: none; text-transform: uppercase; white-space: nowrap;
}
.desktop-nav a { border-bottom: 1px solid transparent; padding: .5rem 0; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { border-color: var(--gold); }
.header-right { display: flex; align-items: center; justify-content: flex-end; gap: 1.15rem; }
.nav-right { gap: 1.5rem; }
.header-monogram { display: block; width: 42px; height: auto; max-height: 46px; object-fit: contain; }
.language-select {
  min-width: 66px; padding: 9px 26px 9px 11px; border: 1px solid rgba(174,134,80,.48);
  border-radius: 0; color: var(--plum); background: transparent; font-size: .68rem;
  letter-spacing: .08em; cursor: pointer;
}
.menu-button, .mobile-nav { display: none; }

.nav-dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown-trigger { display: inline-flex; align-items: center; gap: .45rem; }
.nav-dropdown-trigger::after {
  content: ""; width: 5px; height: 5px; border-right: 1px solid currentColor; border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg); transition: transform .2s ease;
}
.nav-dropdown-menu {
  position: absolute; left: -20px; top: 100%; z-index: 60; min-width: 270px;
  padding: 10px 20px 12px; border: 1px solid var(--line); background: rgba(251,248,243,.99);
  box-shadow: 0 18px 34px rgba(53,16,31,.12); opacity: 0; visibility: hidden;
  transform: translateY(8px); pointer-events: none; transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.nav-dropdown-menu a {
  display: block; padding: 12px 0; border-bottom: 1px solid var(--line);
  font-size: .64rem; line-height: 1.35; letter-spacing: .12em; white-space: nowrap;
}
.nav-dropdown-menu a:last-child { border-bottom: 0; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a:focus-visible { color: var(--plum); border-bottom-color: var(--gold); }
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto; }
.nav-dropdown:hover .nav-dropdown-trigger::after,
.nav-dropdown:focus-within .nav-dropdown-trigger::after { transform: translateY(1px) rotate(225deg); }
.mobile-subnav { display: grid; padding: 0 0 10px 16px; border-bottom: 1px solid var(--line); }


.hero {
  position: relative; min-height: min(730px, calc(100svh - 154px)); display: grid;
  grid-template-columns: 1.05fr .95fr; overflow: hidden;
  background: radial-gradient(circle at 85% 22%, rgba(255,255,255,.95), transparent 35%),
              linear-gradient(130deg, #f0e6dc 0%, #fbf8f3 58%, #f7f0e8 100%);
}
.hero-product {
  position: relative; min-height: 620px; display: grid; place-items: center; overflow: hidden;
  background: transparent; border: 0; padding: 0; box-shadow: none;
}
.soft-floral { position: absolute; pointer-events: none; background-repeat: no-repeat; background-size: cover; }
.soft-floral-hero {
  left: -7%; bottom: -10%; width: 48%; height: 80%;
  background-image: linear-gradient(90deg, rgba(247,241,233,.04), rgba(247,241,233,.88)), url("assets/images/victoria-soft-tulips.webp");
  background-position: 48% 42%; opacity: .09; filter: saturate(.55) blur(1px);
  mask-image: linear-gradient(90deg, #000 15%, transparent 100%);
}
.hero-product > img {
  position: relative; z-index: 2; width: min(72%, 590px); max-height: 620px; object-fit: contain;
  background: transparent; filter: drop-shadow(0 28px 34px rgba(52,50,46,.14));
}
.hero-copy { align-self: center; max-width: 720px; padding: clamp(70px, 8vw, 125px) clamp(28px, 6vw, 95px); }
.hero-copy h1 { margin-bottom: 1.5rem; color: #4a2d20; font-size: clamp(3.4rem, 6vw, 6.7rem); line-height: .95; letter-spacing: -.055em; }
.hero-copy > p:not(.eyebrow) { margin: 0 0 2rem; color: #6a5b51; font-family: var(--serif); font-size: clamp(1rem,1.3vw,1.22rem); line-height: 1.55; }
.eyebrow { margin: 0 0 1.15rem; color: var(--gold); font-size: .68rem; letter-spacing: .24em; text-transform: uppercase; }
.ornament { width: 190px; display: flex; align-items: center; gap: 12px; margin: 1.65rem 0 1.55rem; }
.ornament span { flex: 1; height: 1px; background: var(--gold); opacity: .72; }
.ornament i { width: 8px; height: 8px; border: 1px solid var(--gold); transform: rotate(45deg); }
.ornament-left { margin-left: 0; }
.button {
  display: inline-block; padding: 16px 30px; border: 1px solid var(--plum); color: #fff;
  background: var(--plum); font-size: .69rem; letter-spacing: .16em; text-decoration: none;
  text-transform: uppercase; transition: .25s ease;
}
.button:hover, .button:focus-visible { color: var(--plum); background: transparent; }

.shop-section { position: relative; overflow: hidden; padding: clamp(82px,9vw,135px) clamp(24px,5vw,82px) clamp(100px,10vw,155px); background: #faf7f2; }
.shop-section::after {
  content: ""; position: absolute; right: -7%; bottom: -25%; width: min(34vw,460px); height: 72%;
  background: linear-gradient(270deg, rgba(250,247,242,.1), rgba(250,247,242,.96)), url("assets/images/victoria-deep-plum-tulips.webp") center 52% / cover no-repeat;
  opacity: .025; pointer-events: none;
}
.section-intro { position: relative; z-index: 1; max-width: 780px; margin: 0 auto clamp(45px,6vw,80px); text-align: center; }
.section-intro h2 { margin-bottom: 1.4rem; color: var(--plum); font-size: clamp(2.5rem,4.8vw,5.3rem); line-height: 1; letter-spacing: -.045em; }
.section-intro > p:last-child { color: var(--muted); font-family: var(--serif); font-size: clamp(1rem,1.25vw,1.18rem); line-height: 1.7; }
.product-grid { position: relative; z-index: 1; max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: clamp(18px,2.4vw,34px); }
.shop-card { background: rgba(255,255,255,.5); border: 1px solid rgba(123,91,61,.1); }
.shop-image { width: 100%; aspect-ratio: 1/1; padding: 0; border: 0; background: #f4eee6; overflow: hidden; cursor: pointer; }
.shop-image img { width: 100%; height: 100%; object-fit: contain; transition: transform .55s ease; }
.shop-card:hover .shop-image img { transform: scale(1.018); }
.shop-card-copy { padding: 25px 26px 30px; }
.product-status { margin-bottom: .85rem; color: var(--gold); font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; }
.shop-card h3 { margin-bottom: .65rem; color: #4b3226; font-size: clamp(1.25rem,1.8vw,1.7rem); }
.product-price { margin-bottom: 1.1rem; color: var(--muted); font-family: var(--serif); }
.text-button { padding: 0 0 5px; border: 0; border-bottom: 1px solid var(--plum); color: var(--plum); background: transparent; font-size: .68rem; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; }

.payment-section { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .62fr 1.38fr; align-items: stretch; padding: clamp(80px,9vw,140px) clamp(24px,5vw,82px); }
.payment-mark { min-height: 420px; display: grid; place-items: center; background: linear-gradient(145deg,#5a1732,#35101f); }
.payment-mark img { width: min(46%,210px); filter: brightness(0) invert(1); opacity: .68; }
.payment-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px,7vw,95px); background: linear-gradient(135deg,#f3e8dc,#fbf8f3); }
.payment-copy h2 { margin-bottom: 1.5rem; color: var(--plum); font-size: clamp(2.6rem,4.5vw,5rem); line-height: 1; letter-spacing: -.045em; }
.payment-copy > p:not(.eyebrow) { max-width: 44rem; color: #675c54; font-family: var(--serif); font-size: clamp(1rem,1.25vw,1.18rem); line-height: 1.7; }
.payment-note { margin-top: .45rem; color: var(--gold) !important; font-size: .92rem !important; }
.payment-link { align-self: flex-start; margin-top: 1.2rem; }

.diamonds { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; align-items: stretch; padding: clamp(90px,10vw,150px) clamp(24px,5vw,82px); }
.diamonds-photo { min-height: 500px; overflow: hidden; background: #edf1ef; }
.diamonds-photo button { width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.diamonds-photo img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.diamonds-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(45px,7vw,100px); background: linear-gradient(135deg,#f4ebe1,#fbf8f3); }
.diamonds-copy h2 { color: var(--plum); font-size: clamp(2.6rem,4.8vw,5.4rem); line-height: 1; letter-spacing: -.04em; }
.diamonds-copy > p:last-child { max-width: 31rem; color: #685e57; font-family: var(--serif); font-size: clamp(1rem,1.35vw,1.2rem); line-height: 1.65; }

.house-section { max-width: var(--max); margin: 0 auto; display: grid; grid-template-columns: .52fr 1.48fr; gap: clamp(38px,7vw,110px); align-items: center; padding: clamp(55px,8vw,115px) clamp(24px,5vw,82px) clamp(100px,11vw,165px); }
.house-logo { display: grid; place-items: center; min-height: 380px; border: 1px solid var(--line); background: #f5eee6; }
.house-logo img { display: block; width: min(54%,230px); height: auto; object-fit: contain; opacity: .72; }
.house-copy h2 { margin-bottom: 1.8rem; color: var(--plum); font-size: clamp(2.6rem,4.8vw,5.4rem); line-height: 1; letter-spacing: -.045em; }
.house-copy > p:not(.eyebrow) { max-width: 52rem; color: #675d55; font-family: var(--serif); font-size: clamp(1rem,1.3vw,1.2rem); line-height: 1.75; }



/* Founder journey — editorial, art-led layout */
.founder-section {
  position: relative;
  overflow: hidden;
  padding: clamp(95px, 10vw, 165px) clamp(24px, 5vw, 82px);
  background:
    radial-gradient(circle at 83% 16%, rgba(174,134,80,.09), transparent 28%),
    linear-gradient(135deg, #fbf8f3 0%, #f3ebe2 100%);
}
.founder-section::before {
  content: "";
  position: absolute;
  left: -8vw;
  top: 9%;
  width: 28vw;
  aspect-ratio: 1;
  border: 1px solid rgba(174,134,80,.14);
  border-radius: 50%;
  pointer-events: none;
}
.founder-shell {
  position: relative;
  z-index: 1;
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0,.9fr) minmax(480px,1.1fr);
  gap: clamp(55px, 8vw, 125px);
  align-items: start;
}
.founder-intro-block { max-width: 680px; margin-bottom: 3.2rem; }
.founder-intro-block h2 {
  margin: 0 0 1.4rem;
  color: var(--plum);
  font-family: var(--serif);
  font-size: clamp(3rem, 5.2vw, 6.2rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.05em;
}
.founder-intro-block > p:last-child {
  max-width: 39rem;
  margin: 0;
  color: #65594f;
  font-family: var(--serif);
  font-size: clamp(1rem, 1.28vw, 1.18rem);
  line-height: 1.75;
}
.founder-timeline {
  position: relative;
  margin: 0;
  padding: 0;
  list-style: none;
}
.founder-timeline::before {
  content: "";
  position: absolute;
  left: 43px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(174,134,80,.12));
}
.founder-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 24px;
  padding: 0 0 2.15rem;
}
.founder-timeline li::before {
  content: "";
  position: absolute;
  left: 38px;
  top: 10px;
  width: 9px;
  height: 9px;
  border: 1px solid var(--gold);
  background: #f8f2ea;
  transform: rotate(45deg);
}
.founder-timeline time {
  color: var(--gold);
  font-family: var(--serif);
  font-size: 1.05rem;
  letter-spacing: .08em;
}
.founder-timeline h3 {
  margin: 0 0 .42rem;
  color: #4b3226;
  font-family: var(--serif);
  font-size: clamp(1.12rem, 1.5vw, 1.38rem);
  font-weight: 400;
}
.founder-timeline p {
  margin: 0;
  color: #71655d;
  font-family: var(--serif);
  font-size: .97rem;
  line-height: 1.62;
}
.timeline-logo { display: block; object-fit: contain; }
.timeline-logo-igi { width: 112px; height: auto; margin: 0 0 .9rem; }
.founder-gallery {
  position: sticky;
  top: 150px;
  min-height: 860px;
}
.founder-photo {
  margin: 0;
  overflow: hidden;
  background: #efe7de;
  box-shadow: 0 24px 60px rgba(61,39,27,.14);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #f6f0e9;
}
.founder-photo-igi {
  width: 82%;
  margin-left: auto;
  aspect-ratio: 1 / 1;
}
.founder-photo-ngtc {
  position: absolute;
  left: 0;
  top: 48%;
  width: 62%;
  aspect-ratio: 4 / 3;
  border: 12px solid #f8f3ec;
}
.founder-caption {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 42%;
  padding: 28px 26px 28px 30px;
  border-left: 1px solid var(--gold);
  background: rgba(251,248,243,.91);
  backdrop-filter: blur(8px);
}
.founder-caption img { width: 54px; height: auto; margin-bottom: 1.1rem; }
.founder-caption p {
  margin: 0;
  color: #5f5148;
  font-family: var(--serif);
  font-size: .98rem;
  line-height: 1.65;
}
@media (max-width: 1100px) {
  .founder-shell { grid-template-columns: 1fr; }
  .founder-gallery { position: relative; top: auto; min-height: 760px; max-width: 820px; width: 100%; margin: 0 auto; }
}
@media (max-width: 620px) {
  .founder-section { padding-inline: 20px; }
  .founder-intro-block h2 { font-size: 2.8rem; }
  .founder-timeline::before { left: 31px; }
  .founder-timeline li { grid-template-columns: 68px 1fr; gap: 17px; }
  .founder-timeline li::before { left: 26px; }
  .founder-gallery { min-height: 610px; }
  .founder-photo-igi { width: 94%; }
  .founder-photo-ngtc { width: 72%; top: 45%; border-width: 8px; }
  .founder-caption { width: 58%; bottom: 0; padding: 20px; }
}

.silk-scarf-feature { width: 100%; padding: 0; background: var(--ivory); border-top: 1px solid var(--line); }
.silk-scarf-feature img { width: 100%; height: auto; object-fit: contain; }
.site-footer { min-height: 118px; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 30px clamp(24px,5vw,82px); border-top: 1px solid var(--line); color: #5d5046; background: #f3ebe2; font-family: var(--serif); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }

.product-dialog, .lightbox { width: min(92vw,1100px); max-height: 92vh; padding: 56px 28px 28px; border: 0; background: rgba(250,247,242,.99); box-shadow: 0 30px 90px rgba(35,20,26,.35); }
.product-dialog::backdrop, .lightbox::backdrop { background: rgba(28,18,21,.75); backdrop-filter: blur(5px); }
.dialog-close, .lightbox-close { position: absolute; top: 18px; right: 20px; border: 0; color: var(--plum); background: transparent; font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; cursor: pointer; }
.product-dialog-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 42px; align-items: center; }
.product-dialog-image { min-height: 520px; background: #f2ebe3; }
.product-dialog-image img { width: 100%; height: 100%; max-height: 70vh; object-fit: contain; }
.product-dialog-copy h2 { color: var(--plum); font-size: clamp(2.4rem,4vw,4.5rem); line-height: 1; }
.product-dialog-description { color: #675c54; font-family: var(--serif); font-size: 1.08rem; line-height: 1.7; }
.product-dialog dl { margin: 2rem 0; border-top: 1px solid var(--line); }
.product-dialog dl div { display: grid; grid-template-columns: 145px 1fr; gap: 20px; padding: 16px 0; border-bottom: 1px solid var(--line); }
.product-dialog dt { color: var(--gold); font-size: .67rem; letter-spacing: .14em; text-transform: uppercase; }
.product-dialog dd { margin: 0; color: #5d5048; font-family: var(--serif); }
.checkout-pending { color: var(--gold); font-size: .69rem; letter-spacing: .14em; text-transform: uppercase; }
.lightbox img { width: 100%; max-height: 78vh; object-fit: contain; }

@media (max-width: 1180px) {
  .site-header { grid-template-columns: auto 1fr auto; }
  .desktop-nav { display: none; }
  .menu-button { display: block; border: 0; background: transparent; color: var(--plum); font-size: .67rem; letter-spacing: .16em; text-transform: uppercase; }
  .mobile-nav { position: absolute; left: 0; right: 0; top: 100%; display: none; flex-direction: column; padding: 14px 22px 20px; border-bottom: 1px solid var(--line); background: #fbf8f3; }
  .mobile-nav.open { display: flex; }
  .mobile-nav a { padding: 13px 0; border-bottom: 1px solid var(--line); color: #4b3a30; font-size: .75rem; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
  .mobile-subnav a { padding: 9px 0; border-bottom: 0; color: #74645a; font-size: .66rem; line-height: 1.35; }
  .mobile-subnav a:hover, .mobile-subnav a:focus-visible { color: var(--plum); }

  .brand { justify-self: center; width: 220px; }
  .header-monogram { display: none; }
  .header-right { gap: .5rem; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-product { min-height: 550px; }
  .hero-product > img { width: min(72%,540px); }
  .hero-copy { max-width: none; padding: 65px 30px 85px; text-align: center; }
  .hero-copy .ornament { margin-inline: auto; }
  .product-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .payment-section, .diamonds, .house-section { grid-template-columns: 1fr; }
  .payment-mark { min-height: 300px; }
  .house-logo { min-height: 300px; }
}

@media (max-width: 680px) {
  .announcement { min-height: 32px; font-size: .55rem; letter-spacing: .15em; }
  .site-header { min-height: 78px; padding: 8px 16px; }
  .brand { width: 168px; }
  .language-select { min-width: 58px; padding: 8px 20px 8px 8px; font-size: .62rem; }
  .hero-product { min-height: 420px; }
  .hero-product > img { width: 86%; max-height: 400px; }
  .soft-floral-hero { opacity: .07; }
  .hero-copy h1 { font-size: clamp(2.7rem,12vw,4.4rem); }
  .hero-copy { padding: 55px 22px 72px; }
  .section-intro h2, .payment-copy h2, .diamonds-copy h2, .house-copy h2 { font-size: clamp(2.4rem,11vw,3.7rem); }
  .product-grid { grid-template-columns: 1fr; }
  .payment-section, .diamonds { padding-inline: 0; }
  .diamonds-photo { min-height: 390px; }
  .payment-copy, .diamonds-copy { padding: 58px 24px 70px; }
  .house-section { padding-inline: 22px; }
  .house-logo { min-height: 245px; }
  .founder-section { padding-inline: 22px; }
  .product-dialog-grid { grid-template-columns: 1fr; gap: 28px; }
  .product-dialog-image { min-height: 330px; }
  .product-dialog { padding-inline: 18px; }
  .site-footer { flex-direction: column; justify-content: center; text-align: center; font-size: .67rem; }
}

/* Final official brand artwork: preserve natural aspect ratio; never stretch. */
.brand img, .header-monogram, .house-logo img { flex: none; max-width: 100%; }

/* V10 — official transparent brand art and editorial founder journey */
.brand { width: clamp(220px, 19vw, 310px); }
.brand img {
  width: 100%;
  height: auto;
  background: transparent;
  filter: none;
}
.header-monogram {
  width: 34px;
  max-height: 52px;
  background: transparent;
}

.house-section {
  grid-template-columns: .46fr 1.54fr;
  gap: clamp(48px, 8vw, 130px);
}
.house-logo {
  position: relative;
  min-height: 330px;
  border: 0;
  background: transparent;
}
.house-logo::before,
.house-logo::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.house-logo::before {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(174,134,80,.28);
}
.house-logo::after {
  width: 190px;
  height: 190px;
  border: 1px solid rgba(90,23,50,.10);
}
.house-logo img {
  position: relative;
  z-index: 1;
  width: min(42%, 145px);
  height: auto;
  opacity: .95;
  background: transparent;
}

.founder-section {
  padding-top: clamp(110px, 11vw, 180px);
  padding-bottom: clamp(120px, 12vw, 190px);
  background:
    radial-gradient(circle at 86% 10%, rgba(174,134,80,.10), transparent 26%),
    linear-gradient(135deg, #fcfaf6 0%, #f5ede4 100%);
}
.founder-shell {
  grid-template-columns: minmax(0, .95fr) minmax(460px, 1.05fr);
  gap: clamp(70px, 9vw, 140px);
}
.founder-intro-block {
  margin-bottom: 4.5rem;
}
.founder-intro-block .eyebrow {
  color: var(--gold);
}
.founder-intro-block h2 {
  max-width: 720px;
  font-size: clamp(3.4rem, 5.6vw, 6.8rem);
}
.founder-timeline {
  display: grid;
  gap: 1.15rem;
}
.founder-timeline::before {
  left: 47px;
  top: 22px;
  bottom: 22px;
  background: linear-gradient(var(--gold), rgba(174,134,80,.06));
}
.founder-timeline li {
  grid-template-columns: 98px 1fr;
  gap: 26px;
  padding: 0;
}
.founder-timeline li::before {
  left: 42px;
  top: 26px;
  width: 10px;
  height: 10px;
  background: #fbf7f1;
}
.founder-timeline time {
  padding-top: 19px;
  font-size: 1rem;
  letter-spacing: .12em;
}
.timeline-entry {
  min-height: 94px;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 22px;
  align-items: center;
  padding: 16px 20px 16px 18px;
  border: 1px solid rgba(174,134,80,.12);
  background: rgba(255,255,255,.38);
  backdrop-filter: blur(4px);
  transition: transform .3s ease, border-color .3s ease, background .3s ease;
}
.timeline-entry:hover {
  transform: translateX(5px);
  border-color: rgba(174,134,80,.35);
  background: rgba(255,255,255,.62);
}
.timeline-entry-wide {
  grid-template-columns: 130px 1fr;
}
.timeline-logo {
  margin: 0;
  align-self: center;
  justify-self: center;
  background: transparent;
}
.timeline-seal {
  width: 62px;
  height: 62px;
}
.timeline-logo-igi {
  width: 118px;
  max-height: 58px;
  object-fit: contain;
}
.founder-timeline h3 {
  margin-bottom: .3rem;
  font-size: clamp(1.12rem, 1.45vw, 1.34rem);
}
.founder-timeline p {
  font-size: .93rem;
  line-height: 1.58;
}

.founder-gallery {
  position: sticky;
  top: 150px;
  min-height: 900px;
}
.founder-photo {
  border: 0;
  background: transparent;
  box-shadow: 0 28px 72px rgba(64,42,30,.16);
}
.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}
.founder-photo-igi {
  width: 86%;
  aspect-ratio: 1 / 1;
  margin-left: auto;
  transform: rotate(.8deg);
}
.founder-photo-ngtc {
  top: 51%;
  width: 67%;
  aspect-ratio: 4 / 3;
  border: 10px solid #fbf7f1;
  transform: rotate(-1.2deg);
}
.founder-caption {
  width: 39%;
  right: 2%;
  bottom: 1%;
  padding: 26px 24px 24px 28px;
  background: rgba(252,249,245,.94);
}
.founder-caption img {
  width: 38px;
  height: auto;
  background: transparent;
}

@media (max-width: 1100px) {
  .founder-shell { grid-template-columns: 1fr; }
  .founder-gallery { position: relative; top: auto; min-height: 760px; }
}
@media (max-width: 680px) {
  .brand { width: 184px; }
  .house-logo::before { width: 210px; height: 210px; }
  .house-logo::after { width: 150px; height: 150px; }
  .house-logo img { width: 105px; }
  .founder-timeline::before { left: 34px; }
  .founder-timeline li { grid-template-columns: 72px 1fr; gap: 14px; }
  .founder-timeline li::before { left: 29px; top: 26px; }
  .timeline-entry { grid-template-columns: 56px 1fr; gap: 14px; padding: 14px; }
  .timeline-entry-wide { grid-template-columns: 94px 1fr; }
  .timeline-seal { width: 48px; height: 48px; }
  .timeline-logo-igi { width: 88px; max-height: 48px; }
  .founder-gallery { min-height: 610px; }
}


/* V11 — exact official artwork, transparent backgrounds, coloured institutional marks */
.brand { width: clamp(235px, 20vw, 330px); }
.brand img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
}
.header-monogram {
  width: 36px;
  height: auto;
  max-height: 54px;
  object-fit: contain;
  background: transparent;
}
.payment-mark img {
  width: min(44%, 205px);
  height: auto;
  object-fit: contain;
  filter: none;
  opacity: 1;
}
.house-logo img {
  width: min(48%, 155px);
  height: auto;
  object-fit: contain;
  background: transparent;
  opacity: 1;
}
.timeline-entry {
  min-height: 102px;
  grid-template-columns: 82px 1fr;
}
.timeline-entry-wide { grid-template-columns: 145px 1fr; }
.timeline-school-logo {
  width: 70px;
  max-height: 74px;
  object-fit: contain;
}
.timeline-logo-igi {
  width: 132px;
  max-height: 62px;
  object-fit: contain;
}
@media (max-width: 760px) {
  .timeline-entry, .timeline-entry-wide { grid-template-columns: 70px 1fr; }
  .timeline-school-logo { width: 58px; max-height: 62px; }
  .timeline-logo-igi { width: 94px; max-height: 48px; }
}

/* V12 multipage refinements */
.brand img{width:min(100%,430px);max-height:112px;object-fit:contain}
.header-monogram{width:34px!important;height:48px!important;object-fit:contain!important}
.payment-mark img,.house-logo img{filter:none!important;opacity:1!important}
.payment-mark-clean{background:linear-gradient(145deg,#661636,#35101f);border:0}
.payment-mark-clean img{width:min(55%,270px);height:auto;object-fit:contain;filter:none!important}
.inner-page{background:var(--paper)}
.founder-page-hero{padding:90px 6vw 55px;text-align:center;background:linear-gradient(180deg,#fbf8f3,#f6eee5)}
.founder-page-hero h1{max-width:1000px;margin:.25rem auto;font-size:clamp(3rem,6vw,6.4rem);color:var(--plum);font-weight:500}
.founder-page-hero .ornament{max-width:180px;margin:28px auto 0}
.founder-page-layout{display:grid;grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);gap:72px;align-items:start;padding:72px 6vw 110px;max-width:1700px;margin:auto}
.founder-page-layout .founder-timeline{margin:0}
.founder-gallery-stacked{display:flex;flex-direction:column;gap:32px;position:sticky;top:150px}
.founder-gallery-stacked .founder-photo{margin:0;background:#fff;border:1px solid var(--line);padding:12px;box-shadow:0 20px 50px rgba(60,35,35,.08)}
.founder-gallery-stacked .founder-photo img{display:block;width:100%;height:auto;object-fit:contain}
.payment-page{display:grid;grid-template-columns:minmax(360px,.72fr) minmax(0,1.28fr);max-width:1700px;margin:0 auto;padding:70px 5vw 110px;min-height:720px}
.payment-page .payment-copy{display:flex;flex-direction:column;justify-content:center;padding:70px 10%;background:#fbf7f1}
.payment-page .payment-copy h1{font-size:clamp(3.4rem,6.3vw,7rem);line-height:.95;color:var(--plum);font-weight:500;margin:.5rem 0 2rem}
.timeline-logo-igi{width:138px!important;max-height:62px!important;object-fit:contain!important}
.timeline-school-logo{filter:none!important}
@media(max-width:1000px){.founder-page-layout,.payment-page{grid-template-columns:1fr}.founder-gallery-stacked{position:static}.payment-page{padding:30px 20px 80px}.payment-mark-clean{min-height:360px}}
@media(max-width:620px){.founder-page-hero{padding:60px 22px 35px}.founder-page-layout{padding:45px 22px 80px;gap:44px}.payment-page .payment-copy{padding:50px 28px}.brand img{max-height:82px}}


/* V13 — complete multipage structure, secure payment and customer information */
.button-secondary { color: var(--plum); background: transparent; }
.button-secondary:hover, .button-secondary:focus-visible { color: #fff; background: var(--plum); }
.text-link { align-self: flex-start; margin-top: 1rem; padding-bottom: 5px; border-bottom: 1px solid var(--plum); color: var(--plum); font-size: .69rem; letter-spacing: .14em; text-decoration: none; text-transform: uppercase; }
.section-action { position: relative; z-index: 2; margin-top: 44px; text-align: center; }
.editorial-hero { padding: clamp(75px,9vw,140px) 6vw clamp(55px,7vw,100px); text-align: center; background: radial-gradient(circle at 50% 0,rgba(174,134,80,.12),transparent 38%),linear-gradient(180deg,#fbf8f3,#f4ebe2); }
.editorial-hero h1 { max-width: 1100px; margin: 0 auto 1.5rem; color: var(--plum); font-size: clamp(3.2rem,7vw,7.6rem); line-height: .92; letter-spacing: -.055em; }
.editorial-hero > p:last-child { max-width: 760px; margin: 0 auto; color: #6a5e55; font-family: var(--serif); font-size: clamp(1rem,1.4vw,1.22rem); line-height: 1.75; }
.shop-page-section { padding-top: clamp(65px,7vw,100px); }
.private-cta { padding: clamp(90px,10vw,150px) 6vw; text-align: center; background: linear-gradient(145deg,#f0e4d8,#fbf8f3); }
.private-cta h2 { max-width: 920px; margin: 0 auto 1.5rem; color: var(--plum); font-size: clamp(2.7rem,5vw,5.8rem); line-height: 1; }
.private-cta > p:not(.eyebrow) { max-width: 650px; margin: 0 auto 2rem; color: var(--muted); font-family: var(--serif); font-size: 1.1rem; line-height: 1.7; }
.split-feature { display: grid; grid-template-columns: 1.08fr .92fr; max-width: 1700px; margin: 0 auto; padding: clamp(50px,7vw,100px) 5vw clamp(80px,9vw,140px); }
.feature-image { min-height: 650px; background: #edf1ef; }
.feature-image button { width: 100%; height: 100%; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.feature-image img { width: 100%; height: 100%; object-fit: cover; }
.feature-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(48px,7vw,105px); background: linear-gradient(135deg,#f1e6dc,#fbf8f3); }
.feature-copy h1 { color: var(--plum); font-size: clamp(3.2rem,5.8vw,6.8rem); line-height: .93; letter-spacing: -.05em; }
.feature-copy > p:not(.eyebrow) { color: #675c54; font-family: var(--serif); font-size: 1.08rem; line-height: 1.75; }
.principles-grid, .checkout-steps, .maison-values { display: grid; grid-template-columns: repeat(3,1fr); max-width: 1500px; margin: 0 auto; padding: 0 6vw clamp(100px,11vw,170px); gap: 28px; }
.principles-grid article, .checkout-steps article, .maison-values article { padding: 42px 38px; border: 1px solid var(--line); background: rgba(255,255,255,.5); }
.principles-grid span, .checkout-steps span { color: var(--gold); font-family: var(--serif); letter-spacing: .14em; }
.principles-grid h2, .checkout-steps h2, .maison-values h2 { margin: 1.5rem 0 .8rem; color: var(--plum); font-size: 2rem; }
.principles-grid p, .checkout-steps p, .maison-values p:not(.eyebrow) { margin: 0; color: var(--muted); font-family: var(--serif); line-height: 1.7; }
.maison-hero { display: grid; grid-template-columns: .68fr 1.32fr; min-height: 720px; }
.maison-emblem { display: grid; place-items: center; background: linear-gradient(145deg,#efe3d8,#fbf8f3); }
.maison-emblem img { width: min(42%,210px); }
.maison-intro { display: flex; flex-direction: column; justify-content: center; padding: clamp(65px,9vw,135px); }
.maison-intro h1 { color: var(--plum); font-size: clamp(3.5rem,6.5vw,7.4rem); line-height: .92; letter-spacing: -.055em; }
.maison-intro > p:not(.eyebrow) { max-width: 780px; color: #675c54; font-family: var(--serif); font-size: 1.12rem; line-height: 1.8; }
.payment-page-v13 { min-height: 800px; }
.payment-methods { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.5rem 0 .8rem; }
.payment-methods span { padding: 10px 13px; border: 1px solid rgba(90,23,50,.22); background: #fff; color: var(--plum); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; }
.security-panel { max-width: 760px; margin: 1.3rem 0 1.5rem; padding: 24px 26px; border-left: 3px solid var(--gold); background: rgba(255,255,255,.55); }
.security-panel h2 { margin: 0 0 .55rem; color: var(--plum); font-size: 1.35rem; letter-spacing: 0; }
.security-panel p { margin: 0; color: #66594f; font-family: var(--serif); line-height: 1.65; }
.payment-request-link { align-self: flex-start; margin-top: 1rem; }
.form-page { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(45px,7vw,110px); max-width: 1500px; margin: 0 auto; padding: clamp(70px,9vw,140px) 6vw; }
.form-intro { align-self: start; position: sticky; top: 160px; }
.form-intro h1 { color: var(--plum); font-size: clamp(3.2rem,5.8vw,6.5rem); line-height: .95; }
.form-intro > p:not(.eyebrow) { color: var(--muted); font-family: var(--serif); font-size: 1.1rem; line-height: 1.75; }
.form-security-note { padding: 18px 20px; border-left: 3px solid var(--gold); background: #f4e9df; }
.enquiry-form { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; padding: clamp(28px,5vw,60px); border: 1px solid var(--line); background: rgba(255,255,255,.62); }
.enquiry-form label { display: grid; gap: 9px; color: var(--plum); font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.enquiry-form input, .enquiry-form select, .enquiry-form textarea { width: 100%; padding: 14px 15px; border: 1px solid rgba(90,23,50,.24); border-radius: 0; color: var(--ink); background: #fff; font-family: var(--serif); font-size: 1rem; letter-spacing: normal; text-transform: none; }
.enquiry-form textarea { resize: vertical; }
.form-wide { grid-column: 1 / -1; }
.consent { display: grid !important; grid-template-columns: auto 1fr; align-items: start; }
.consent input { width: 18px; height: 18px; margin-top: 2px; }
.consent span { color: #675c54; font-family: var(--serif); font-size: .94rem; letter-spacing: normal; line-height: 1.55; text-transform: none; }
.honeypot { position: absolute !important; left: -9999px !important; }
.status-page { min-height: 620px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 80px 24px; text-align: center; }
.status-page > img { width: 78px; margin-bottom: 2rem; }
.status-page h1 { color: var(--plum); font-size: clamp(3.2rem,6vw,6.2rem); }
.status-page > p:not(.eyebrow) { max-width: 680px; color: var(--muted); font-family: var(--serif); font-size: 1.1rem; line-height: 1.7; }
.policy-page { max-width: 1160px; margin: 0 auto; padding: clamp(70px,9vw,135px) 6vw; }
.policy-page > header { padding-bottom: 50px; border-bottom: 1px solid var(--line); }
.policy-page h1 { color: var(--plum); font-size: clamp(3.3rem,6vw,6.5rem); line-height: .95; }
.policy-date { color: var(--muted); font-family: var(--serif); }
.policy-content { display: grid; gap: 0; }
.policy-content section { padding: 38px 0; border-bottom: 1px solid var(--line); }
.policy-content h2 { color: var(--plum); font-size: 1.75rem; }
.policy-content p { margin-bottom: 0; color: #62564e; font-family: var(--serif); font-size: 1.05rem; line-height: 1.8; }
.site-footer-expanded { min-height: 210px; display: grid; grid-template-columns: 1fr auto; grid-template-areas: "brand links" "copy links"; align-items: end; text-transform: none; }
.footer-brand { grid-area: brand; }
.footer-brand img { width: min(280px,72vw); margin-bottom: 1rem; }
.footer-brand p { margin: 0; text-transform: uppercase; }
.footer-links { grid-area: links; display: grid; gap: 12px; align-self: center; text-align: right; }
.footer-links a { text-decoration: none; text-transform: uppercase; }
.footer-links a:hover, .footer-links a:focus-visible { color: var(--plum); }
.footer-copyright { grid-area: copy; margin: 0; text-transform: uppercase; }

@media (max-width: 1000px) {
  .split-feature, .maison-hero, .form-page { grid-template-columns: 1fr; }
  .feature-image { min-height: 500px; }
  .principles-grid, .checkout-steps, .maison-values { grid-template-columns: 1fr; }
  .form-intro { position: static; }
}
@media (max-width: 680px) {
  .feature-copy, .maison-intro { padding: 55px 24px 70px; }
  .feature-image { min-height: 390px; }
  .enquiry-form { grid-template-columns: 1fr; padding: 28px 20px; }
  .enquiry-form label, .form-wide { grid-column: 1; }
  .site-footer-expanded { grid-template-columns: 1fr; grid-template-areas: "brand" "links" "copy"; gap: 28px; align-items: center; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-links { text-align: center; }
}


/* V14 intellectual property protections */
.site-footer-expanded { grid-template-areas: "brand links" "copy links" "notice links"; }
.footer-ip-notice { grid-area: notice; max-width: 780px; margin: 8px 0 0; color: #76685e; font-family: var(--serif); font-size: .78rem; line-height: 1.65; letter-spacing: .02em; text-transform: none; }
.design-rights-notice { max-width: 920px; margin: 42px auto 0; padding: 20px 24px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); color: #6b5d53; font-family: var(--serif); font-size: .95rem; line-height: 1.65; text-align: center; }
.policy-intro { max-width: 820px; margin: 24px 0 0; color: #6a5e55; font-family: var(--serif); font-size: 1.08rem; line-height: 1.75; }
.policy-content a { color: var(--plum); text-underline-offset: 4px; }
@media (max-width: 760px) {
  .site-footer-expanded { grid-template-areas: "brand" "links" "copy" "notice"; }
  .footer-ip-notice { margin: 0 auto; text-align: center; }
}




/* V15 — complete trilingual copy and clean payment gift presentation */
.payment-page-v13 {
  grid-template-columns: minmax(430px, .95fr) minmax(0, 1.05fr);
}
.payment-gift-visual {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: #eadfd2;
}
.payment-gift-photo {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: 56% 50%;
}
@media (max-width: 1000px) {
  .payment-page-v13 { grid-template-columns: 1fr; }
  .payment-gift-visual, .payment-gift-photo { min-height: 560px; }
  .payment-gift-photo { object-position: 56% 50%; }
}
@media (max-width: 620px) {
  .payment-gift-visual, .payment-gift-photo { min-height: 420px; }
  .payment-gift-photo { object-position: 58% 50%; }
}
/* V17 — official Boucheron and Swarovski wordmarks in the founder timeline */
.timeline-brand-logo {
  display: block;
  width: 132px;
  max-width: 100%;
  max-height: 46px;
  object-fit: contain;
  object-position: center;
}
.timeline-brand-logo-boucheron { width: 128px; }
.timeline-brand-logo-swarovski { width: 134px; }
@media (max-width: 760px) {
  .timeline-brand-logo,
  .timeline-brand-logo-boucheron,
  .timeline-brand-logo-swarovski {
    width: 92px;
    max-height: 38px;
  }
}


/* V19 gemstone catalogue and filter pages */
.catalogue-page { padding-bottom: 0; }
.catalogue-hero { max-width: 900px; margin: 0 auto; padding: clamp(72px,10vw,140px) 6vw clamp(45px,6vw,78px); text-align: center; }
.catalogue-hero h1 { margin: .2em 0 .35em; font-size: clamp(2.6rem,6vw,5.8rem); line-height: .98; color: var(--plum); }
.catalogue-hero > p:last-child { max-width: 720px; margin: 0 auto; color: #6e6158; font-size: clamp(1rem,1.6vw,1.22rem); line-height: 1.75; }
.catalogue-layout { display: grid; grid-template-columns: minmax(270px,340px) minmax(0,1fr); border-top: 1px solid var(--line); min-height: 640px; }
.catalogue-filters { padding: 44px clamp(24px,4vw,54px); border-right: 1px solid var(--line); background: rgba(247,241,233,.52); }
.catalogue-filter-header { display: grid; gap: 10px; margin-bottom: 30px; }
.catalogue-filter-header h2 { margin: 0; color: var(--plum); font-size: .88rem; letter-spacing: .18em; }
.catalogue-filter-header p { margin: 0; color: #76685f; font-size: .88rem; line-height: 1.65; }
.catalogue-clear { justify-self: start; border: 0; border-bottom: 1px solid var(--gold); padding: 6px 0; background: transparent; color: var(--plum); font: inherit; font-size: .68rem; letter-spacing: .14em; cursor: pointer; }
.catalogue-filter-group { margin: 0; padding: 25px 0; border: 0; border-top: 1px solid var(--line); }
.catalogue-filter-group legend { padding: 0 0 14px; color: #4d3930; font-size: .74rem; font-weight: 600; letter-spacing: .15em; }
.catalogue-filter-options { display: grid; gap: 11px; }
.catalogue-filter-option { display: flex; align-items: center; gap: 11px; color: #65584f; font-size: .88rem; cursor: pointer; }
.catalogue-filter-option input { width: 16px; height: 16px; margin: 0; accent-color: var(--plum); }
.catalogue-text-filter { width: 100%; border: 1px solid #d9cec3; padding: 12px 13px; background: rgba(255,255,255,.72); color: #3f302a; font: inherit; }
.catalogue-text-filter:focus { outline: 1px solid var(--gold); border-color: var(--gold); }
.catalogue-filter-note { margin: 10px 0 0; color: #8a7b70; font-size: .76rem; line-height: 1.5; }
.catalogue-results { padding: 38px clamp(24px,5vw,72px) 80px; }
.catalogue-results-bar { display: flex; justify-content: flex-end; padding-bottom: 19px; border-bottom: 1px solid var(--line); }
.catalogue-results-bar p { margin: 0; color: #75665b; font-size: .7rem; letter-spacing: .14em; }
.catalogue-active-filters { display: flex; flex-wrap: wrap; gap: 8px; min-height: 49px; padding: 15px 0; }
.catalogue-chip { border: 1px solid #d9cec3; border-radius: 999px; padding: 7px 11px; background: #fffdfa; color: #5e4d44; font-size: .72rem; }
.catalogue-no-filters { color: #93867d; font-size: .78rem; }
.catalogue-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
.catalogue-item { border: 1px solid var(--line); background: #fffdfa; }
.catalogue-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.catalogue-item-copy { padding: 20px; }
.catalogue-item-copy h2 { margin: 0; font-size: 1.3rem; color: var(--plum); }
.catalogue-empty { max-width: 670px; margin: clamp(60px,10vw,130px) auto; padding: clamp(38px,6vw,66px); border: 1px solid var(--line); background: rgba(255,253,250,.84); text-align: center; }
.catalogue-empty h2 { margin: 0 0 14px; color: var(--plum); font-size: clamp(1.7rem,3vw,2.5rem); }
.catalogue-empty p { margin: 0 auto 28px; max-width: 520px; color: #72645b; line-height: 1.75; }
.catalogue-empty.is-hidden { display: none; }
@media (max-width: 860px) {
 .catalogue-layout { grid-template-columns: 1fr; }
 .catalogue-filters { border-right: 0; border-bottom: 1px solid var(--line); }
 .catalogue-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
}
@media (max-width: 560px) {
 .catalogue-hero { text-align: left; }
 .catalogue-grid { grid-template-columns: 1fr; }
 .catalogue-empty { margin: 36px auto; padding: 32px 22px; }
}


/* V20 organised gemstone categories */
.category-index-section { padding: clamp(58px,8vw,105px) 6vw; background: #fbf8f3; text-align: center; border-top: 1px solid var(--line); }
.category-index-section > h2 { margin: .35em auto 1.25em; color: var(--plum); font-size: clamp(2.1rem,4.2vw,4.4rem); line-height: 1; }
.category-index-grid { display: grid; grid-template-columns: repeat(5,minmax(0,1fr)); max-width: 1500px; margin: 0 auto; gap: 16px; }
.category-index-card { display: flex; align-items: center; justify-content: center; min-height: 132px; padding: 24px 18px; border: 1px solid var(--line); background: rgba(255,255,255,.58); text-decoration: none; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.category-index-card:hover, .category-index-card:focus-visible { transform: translateY(-2px); background: #fffdfa; border-color: rgba(116,75,60,.3); }
.category-index-card h3 { margin: 0; color: var(--plum); font-size: clamp(.78rem,1.1vw,1rem); letter-spacing: .12em; line-height: 1.45; }
.category-index-section-compact { padding-top: 0; border-top: 0; }
.category-index-section-compact .category-index-grid { grid-template-columns: repeat(3,minmax(0,1fr)); max-width: 1000px; }
.category-landing-page .editorial-hero { padding-bottom: clamp(42px,5vw,70px); }
@media (max-width: 1050px) { .category-index-grid { grid-template-columns: repeat(3,minmax(0,1fr)); } }
@media (max-width: 700px) { .category-index-grid, .category-index-section-compact .category-index-grid { grid-template-columns: 1fr; } .category-index-card { min-height: 92px; } }

/* V22 — user-supplied fancy colour diamond visual collection */
.fancy-diamond-visual {
  padding: 0 6vw clamp(54px, 7vw, 98px);
  background: #fbf8f3;
}
.fancy-diamond-visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(14px, 2vw, 28px);
  max-width: 1420px;
  margin: 0 auto;
}
.fancy-diamond-visual-item {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #f2eee8;
}
.fancy-diamond-visual-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.fancy-diamond-visual-item-pink { aspect-ratio: 1 / 1.08; }
.fancy-diamond-visual-item-multicolour { aspect-ratio: 1 / 1.08; }
@media (max-width: 760px) {
  .fancy-diamond-visual { padding-right: 4vw; padding-left: 4vw; }
  .fancy-diamond-visual-grid { grid-template-columns: 1fr; }
  .fancy-diamond-visual-item-pink,
  .fancy-diamond-visual-item-multicolour { aspect-ratio: auto; }
}

/* V23 pearl editorial image */
.category-visual{padding:0 6vw clamp(48px,7vw,96px);background:#f7f1e9;}
.category-visual img{display:block;width:min(1180px,100%);height:auto;margin:0 auto;border-radius:2px;box-shadow:0 22px 65px rgba(50,29,39,.10);}
.category-visual-lifestyle img{max-height:760px;object-fit:cover;object-position:center;}
@media (max-width:700px){.category-visual{padding-left:4vw;padding-right:4vw}.category-visual-lifestyle img{max-height:none;object-fit:contain;}}

/* V24 category hero visuals */
.catalogue-visual{max-width:1180px;margin:0 auto 2.8rem;padding:0 2rem;}
.catalogue-visual img{display:block;width:100%;max-height:620px;object-fit:contain;background:#fbf8f3;border-radius:2px;}
@media (max-width:720px){.catalogue-visual{padding:0 1rem;margin-bottom:1.8rem}.catalogue-visual img{max-height:440px}}

/* V25 QA: consistent category and catalogue hero imagery */
.category-hero-media,.catalogue-hero-media{margin:2rem auto 3rem;max-width:1120px;overflow:hidden;background:#f7f1e9;}
.category-hero-media img,.catalogue-hero-media img{display:block;width:100%;height:min(58vw,620px);object-fit:contain;object-position:center;}
.catalogue-hero-media{max-width:980px;margin-bottom:1rem;}
@media (max-width:700px){.category-hero-media,.catalogue-hero-media{margin:1.4rem auto 2rem}.category-hero-media img,.catalogue-hero-media img{height:72vw;max-height:520px}}

/* V26: colourless-diamond shape showcase */
.diamond-shape-showcase{padding:20px clamp(22px,5vw,76px) 42px;background:#fbf7f1;border-bottom:1px solid rgba(94,43,48,.12)}
.diamond-shape-grid{max-width:1500px;margin:0 auto;display:grid;grid-template-columns:repeat(10,minmax(82px,1fr));gap:14px;align-items:end}
.diamond-shape-item{margin:0;text-align:center;min-width:0}
.diamond-shape-item img{display:block;width:100%;height:118px;object-fit:contain;mix-blend-mode:multiply}
.diamond-shape-item figcaption{margin-top:8px;font-size:.72rem;line-height:1.25;letter-spacing:.04em;color:#4c403a}
@media(max-width:1050px){.diamond-shape-grid{grid-template-columns:repeat(5,1fr);row-gap:28px}.diamond-shape-item img{height:110px}}
@media(max-width:620px){.diamond-shape-showcase{padding:12px 16px 30px}.diamond-shape-grid{grid-template-columns:repeat(2,1fr);gap:22px 14px}.diamond-shape-item img{height:120px}.diamond-shape-item figcaption{font-size:.78rem}}

/* V27 refined horizontal filtering, favourites and analytics consent */
.catalogue-layout{display:block;min-height:0;border-top:1px solid var(--line)}
.catalogue-filters{position:sticky;top:0;z-index:18;padding:18px clamp(18px,4vw,56px);border:0;border-bottom:1px solid var(--line);background:rgba(251,248,243,.96);backdrop-filter:blur(18px)}
.catalogue-filter-header{display:flex;align-items:center;gap:18px;margin:0 0 14px}.catalogue-filter-header h2{white-space:nowrap}.catalogue-filter-header p{flex:1}.catalogue-clear{justify-self:auto;white-space:nowrap}
#catalogue-filter-form{display:flex;gap:10px;overflow-x:auto;padding:0 0 4px;scrollbar-width:thin}
.catalogue-filter-group{position:relative;flex:0 0 auto;margin:0;padding:0;border:0}.catalogue-filter-group>summary{display:flex;align-items:center;justify-content:space-between;gap:16px;min-width:150px;padding:12px 14px;border:1px solid #d9cec3;background:#fffdfa;color:#4d3930;font-size:.72rem;font-weight:600;letter-spacing:.11em;cursor:pointer;list-style:none}.catalogue-filter-group>summary::-webkit-details-marker{display:none}.catalogue-filter-group>summary:after{content:'+';font-size:1rem;font-weight:400}.catalogue-filter-group[open]>summary:after{content:'−'}.filter-summary-count{display:inline-grid;place-items:center;min-width:18px;height:18px;border-radius:99px;background:var(--plum);color:#fff;font-size:.62rem;letter-spacing:0}.filter-summary-count:empty{display:none}
.catalogue-filter-panel{position:absolute;left:0;top:calc(100% + 7px);z-index:30;width:min(340px,82vw);max-height:390px;overflow:auto;padding:18px;border:1px solid #d9cec3;background:#fffdfa;box-shadow:0 18px 45px rgba(65,37,42,.12)}.catalogue-filter-options{grid-template-columns:repeat(2,minmax(0,1fr));gap:10px 14px}.catalogue-filter-option{font-size:.82rem}.catalogue-results{padding:24px clamp(24px,5vw,72px) 80px}.catalogue-results-bar{padding-bottom:12px}.catalogue-active-filters{min-height:42px;padding:12px 0}.catalogue-chip{cursor:pointer}.catalogue-chip:hover{border-color:var(--gold)}
.category-favourite{display:inline-flex;align-items:center;gap:7px;margin-top:24px;border:1px solid #c9b49d;padding:10px 15px;background:transparent;color:var(--plum);font:inherit;font-size:.68rem;letter-spacing:.12em;cursor:pointer}.category-favourite.is-saved{background:var(--plum);color:#fff;border-color:var(--plum)}
.item-favourite{position:absolute;right:12px;top:12px;z-index:2;width:38px;height:38px;border:1px solid rgba(255,255,255,.8);border-radius:50%;background:rgba(255,253,250,.9);color:var(--plum);font-size:1.25rem;cursor:pointer}.catalogue-item{position:relative}.item-favourite.is-saved{background:var(--plum);color:#fff}
.saved-floating-button{position:fixed;right:22px;bottom:22px;z-index:70;display:flex;align-items:center;gap:7px;border:1px solid #d7c5b3;border-radius:999px;padding:11px 16px;background:#fffdfa;color:var(--plum);box-shadow:0 10px 30px rgba(65,37,42,.14);font:inherit;cursor:pointer}.saved-floating-button span{display:grid;place-items:center;min-width:20px;height:20px;border-radius:50%;background:var(--plum);color:#fff;font-size:.7rem}
.saved-drawer{position:fixed;right:0;top:0;z-index:90;width:min(410px,92vw);height:100vh;padding:26px;background:#fffdfa;box-shadow:-25px 0 70px rgba(65,37,42,.18);transform:translateX(105%);transition:transform .28s ease}.saved-drawer.is-open{transform:translateX(0)}.saved-drawer-head{display:flex;justify-content:space-between;align-items:center;padding-bottom:18px;border-bottom:1px solid var(--line)}.saved-drawer h2{margin:0;color:var(--plum);font-size:1.2rem}.saved-close{border:0;background:none;color:var(--plum);font:inherit;font-size:.7rem;letter-spacing:.12em;cursor:pointer}.saved-list{display:grid;gap:12px;padding-top:18px}.saved-item{display:grid;grid-template-columns:68px 1fr;gap:14px;align-items:center;border:1px solid var(--line);padding:9px;color:#4d3930;text-decoration:none}.saved-item img{width:68px;height:68px;object-fit:cover}.saved-empty{color:#75665b}
.analytics-consent{position:fixed;left:22px;bottom:22px;z-index:100;max-width:520px;padding:20px;border:1px solid #d7c5b3;background:#fffdfa;box-shadow:0 18px 55px rgba(65,37,42,.18)}.analytics-consent p{margin:0 0 14px;color:#5e5149;line-height:1.6}.analytics-consent div{display:flex;gap:10px;justify-content:flex-end}.analytics-consent button{border:1px solid #c9b49d;padding:9px 12px;background:transparent;color:var(--plum);font:inherit;font-size:.67rem;letter-spacing:.08em;cursor:pointer}.analytics-consent button:last-child{background:var(--plum);color:#fff;border-color:var(--plum)}
@media(max-width:760px){.catalogue-filters{top:0;padding:14px 14px}.catalogue-filter-header{display:grid;grid-template-columns:1fr auto;gap:8px}.catalogue-filter-header p{grid-column:1/-1;order:3}.catalogue-filter-group>summary{min-width:138px}.catalogue-filter-panel{position:fixed;left:12px;right:12px;top:auto;bottom:14px;width:auto;max-height:60vh}.saved-floating-button{right:14px;bottom:14px}.analytics-consent{left:12px;right:12px;bottom:12px;max-width:none}}


/* V28 luxury interaction and layout refinement */
.catalogue-page{background:#fbf8f3}
.catalogue-intro-composite{display:grid;grid-template-columns:minmax(320px,.82fr) minmax(420px,1.18fr);align-items:stretch;max-width:1440px;margin:0 auto;border-bottom:1px solid var(--line);background:#fbf8f3}
.catalogue-intro-composite .catalogue-hero{display:flex;flex-direction:column;justify-content:center;min-height:460px;padding:64px clamp(34px,5vw,88px);text-align:left}
.catalogue-intro-composite .catalogue-hero h1{font-size:clamp(3.4rem,6.6vw,7.6rem);line-height:.96;margin:.2em 0 .26em}
.catalogue-intro-composite .catalogue-hero p:not(.eyebrow){max-width:620px;font-size:clamp(1rem,1.45vw,1.28rem);line-height:1.7}
.catalogue-intro-composite .catalogue-visual,.catalogue-intro-composite .fancy-diamond-visual{margin:0;min-height:460px;background:#f7f1e9;display:grid;place-items:center;overflow:hidden}
.catalogue-intro-composite .catalogue-visual img{width:100%;height:100%;max-height:610px;object-fit:contain;padding:30px}
.catalogue-intro-composite .fancy-diamond-visual{padding:24px}
.fancy-diamond-visual-grid{display:grid!important;grid-template-columns:1fr 1fr;gap:18px;width:100%;height:100%;align-items:center}
.fancy-diamond-visual-item{margin:0;min-width:0;height:100%;display:grid;place-items:center;background:#fff}
.fancy-diamond-visual-item img{display:block;width:100%;height:100%;max-height:500px;object-fit:contain!important;object-position:center!important}
.diamond-shape-showcase{padding:28px clamp(24px,4vw,64px) 32px;background:#fbf8f3}
.diamond-shape-grid{display:grid!important;grid-template-columns:repeat(10,minmax(78px,1fr))!important;gap:18px!important;align-items:end;max-width:1460px;margin:0 auto}
.diamond-shape-item{margin:0;display:grid;grid-template-rows:112px auto;align-items:end;justify-items:center;min-width:0}
.diamond-shape-item img{width:100%!important;height:104px!important;max-width:118px;object-fit:contain!important;object-position:center!important;transform:none!important;clip-path:none!important;border-radius:0!important;background:transparent!important}
.diamond-shape-item figcaption{margin-top:10px;text-align:center;line-height:1.35;min-height:2.7em;font-size:.7rem;letter-spacing:.04em}
.catalogue-layout{display:block!important}
.catalogue-filters{position:sticky;top:0;z-index:22;padding:14px clamp(20px,4vw,58px) 16px;background:rgba(251,248,243,.97);border-bottom:1px solid var(--line);box-shadow:0 9px 28px rgba(67,41,43,.045)}
.catalogue-filter-header{display:grid!important;grid-template-columns:auto minmax(260px,1fr) auto;align-items:center;gap:18px;margin:0 0 12px!important}
.catalogue-filter-header h2{font-size:.86rem!important;letter-spacing:.18em!important}.catalogue-filter-header p{font-size:.86rem!important;white-space:normal}.catalogue-clear{margin:0}
#catalogue-filter-form{display:grid!important;grid-template-columns:repeat(auto-fit,minmax(150px,1fr));gap:9px;overflow:visible!important;padding:0!important}
.catalogue-filter-group{position:relative;min-width:0!important}.catalogue-filter-group>summary{width:100%;min-width:0!important;padding:11px 13px!important;background:#fffdf9;border:1px solid #ddd0c4}
.catalogue-filter-panel{position:absolute;left:0;right:auto;top:calc(100% + 6px);width:min(360px,calc(100vw - 40px));max-height:min(420px,58vh);overflow:auto;padding:17px;z-index:60}
.catalogue-filter-group:nth-last-child(-n+2) .catalogue-filter-panel{left:auto;right:0}
.catalogue-results{padding:18px clamp(24px,5vw,72px) 76px!important}.catalogue-results-bar{display:none}.catalogue-active-filters{padding:8px 0 14px!important;min-height:36px!important}
.category-favourite{top:22px!important;right:24px!important}
.timeline-school-logo[src*="logo-jilin-official"]{object-fit:contain;background:#fff;border-radius:50%;padding:2px}
@media(max-width:1050px){.catalogue-intro-composite{grid-template-columns:1fr}.catalogue-intro-composite .catalogue-hero{min-height:auto;padding:46px 28px 28px}.catalogue-intro-composite .catalogue-visual,.catalogue-intro-composite .fancy-diamond-visual{min-height:340px}.diamond-shape-grid{grid-template-columns:repeat(5,minmax(90px,1fr))!important}.diamond-shape-item{grid-template-rows:100px auto}.catalogue-filter-header{grid-template-columns:1fr auto}.catalogue-filter-header p{grid-column:1/-1;order:3}.fancy-diamond-visual-grid{grid-template-columns:1fr 1fr}}
@media(max-width:700px){.catalogue-intro-composite .catalogue-hero h1{font-size:clamp(2.7rem,14vw,4.6rem)}.catalogue-intro-composite .catalogue-visual,.catalogue-intro-composite .fancy-diamond-visual{min-height:280px}.catalogue-intro-composite .catalogue-visual img{padding:18px}.fancy-diamond-visual{padding:12px!important}.fancy-diamond-visual-grid{gap:8px}.diamond-shape-showcase{padding:22px 14px}.diamond-shape-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:20px 14px!important}.diamond-shape-item{grid-template-rows:108px auto}.diamond-shape-item img{height:104px!important}.catalogue-filters{position:sticky;padding:12px 12px 14px}.catalogue-filter-header{gap:8px}.catalogue-filter-header p{font-size:.78rem!important}.catalogue-filter-panel{position:fixed!important;left:12px!important;right:12px!important;bottom:14px!important;top:auto!important;width:auto!important;max-height:64vh}.category-favourite{top:12px!important;right:12px!important}}

/* V29 Maison narrative */
.maison-story-page{padding-top:0}.maison-story-hero{min-height:68vh;display:grid;grid-template-columns:minmax(180px,.72fr) minmax(0,1.28fr);align-items:center;gap:clamp(2rem,7vw,8rem);padding:clamp(4rem,10vw,9rem) clamp(1.5rem,7vw,7rem);background:linear-gradient(135deg,#f8f1e8 0%,#f5eee6 55%,#efe2df 100%)}.maison-story-mark{display:flex;justify-content:center}.maison-story-mark img{width:min(210px,58%);height:auto;opacity:.9}.maison-story-copy{max-width:760px}.maison-story-copy h1{font-size:clamp(2.8rem,6vw,6.8rem);line-height:.98;margin:.35rem 0 2rem;letter-spacing:-.045em;color:#5f1830}.maison-story-copy p{font-size:clamp(1.05rem,1.7vw,1.35rem);line-height:1.85;max-width:680px}.maison-story-copy .maison-lead{font-family:Georgia,"Times New Roman",serif;font-size:clamp(1.35rem,2.3vw,2rem);line-height:1.55;color:#3e2530}.maison-gem-echo{text-align:center;padding:clamp(5rem,11vw,10rem) clamp(1.5rem,10vw,10rem);max-width:1180px;margin:auto}.maison-gem-echo h2{font-family:Georgia,"Times New Roman",serif;font-weight:400;font-size:clamp(1.9rem,4vw,4rem);line-height:1.25;color:#5f1830;max-width:980px;margin:1.2rem auto 2rem}.maison-gem-echo>p:last-child{max-width:720px;margin:auto;font-size:1.1rem;line-height:1.9}.maison-journey{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid rgba(95,24,48,.18);border-bottom:1px solid rgba(95,24,48,.18);margin:0 clamp(1rem,4vw,4rem)}.maison-journey article{min-height:300px;padding:3rem 2rem;border-right:1px solid rgba(95,24,48,.18);display:flex;flex-direction:column;justify-content:space-between}.maison-journey article:last-child{border-right:0}.maison-journey span{font-size:.72rem;letter-spacing:.18em;color:#8b6d77}.maison-journey h2{font-size:clamp(1.4rem,2.3vw,2.5rem);letter-spacing:.08em;color:#5f1830;margin:auto 0 .75rem}.maison-journey p{line-height:1.7;margin:0;color:#4c3d42}.maison-manifesto{text-align:center;padding:clamp(6rem,14vw,12rem) 1.5rem;background:#661b34;color:#fff}.maison-manifesto p{max-width:830px;margin:1rem auto;font-family:Georgia,"Times New Roman",serif;font-size:clamp(1.35rem,3vw,2.65rem);line-height:1.45}.maison-manifesto .maison-manifesto-line{font-size:clamp(2rem,4.5vw,4.5rem);font-style:italic}.maison-signature{text-align:center;padding:clamp(6rem,13vw,12rem) 1.5rem;background:#f8f1e8}.maison-signature-lines p{font-family:Georgia,"Times New Roman",serif;font-size:clamp(2rem,5vw,5.4rem);line-height:1.05;margin:.35rem;color:#5f1830}.maison-founder-ending{max-width:800px;margin:2.5rem auto 0;font-size:clamp(1.1rem,1.8vw,1.45rem);line-height:1.9}.maison-signature .ornament{margin:3rem auto 1rem}
@media(max-width:850px){.maison-story-hero{grid-template-columns:1fr;min-height:auto;text-align:center}.maison-story-mark img{width:110px}.maison-story-copy p{margin-left:auto;margin-right:auto}.maison-journey{grid-template-columns:1fr 1fr}.maison-journey article:nth-child(2){border-right:0}.maison-journey article:nth-child(-n+2){border-bottom:1px solid rgba(95,24,48,.18)}}
@media(max-width:520px){.maison-journey{grid-template-columns:1fr}.maison-journey article{min-height:220px;border-right:0;border-bottom:1px solid rgba(95,24,48,.18)}.maison-journey article:last-child{border-bottom:0}.maison-story-copy h1{font-size:2.75rem}}


/* V30 responsive QA: intentional image-free sapphire pages and overflow protection */
html,body{max-width:100%;overflow-x:hidden}
img,svg,video,canvas{max-width:100%}
.category-no-hero-image .editorial-hero{padding-bottom:clamp(28px,4vw,54px)}
.category-no-hero-image .category-index-section{margin-top:0}
.catalogue-page .catalogue-hero:only-child{max-width:980px;margin-inline:auto;text-align:center}
.catalogue-page .catalogue-intro-composite:has(.catalogue-hero:only-child){display:block}
@media(max-width:700px){
  .category-no-hero-image .editorial-hero{padding-left:20px;padding-right:20px}
  .category-no-hero-image .category-index-grid{grid-template-columns:1fr}
  .catalogue-page .catalogue-hero:only-child{padding:34px 20px 22px}
}


/* V31: compact Maison typography and official report verification */
.report-verification{max-width:1460px;margin:0 auto;padding:clamp(30px,4vw,54px) clamp(24px,5vw,72px);display:grid;grid-template-columns:minmax(0,1fr) auto;gap:clamp(24px,5vw,70px);align-items:center;border-top:1px solid var(--line);border-bottom:1px solid var(--line);background:#f8f2ea}
.report-verification-copy{max-width:760px}.report-verification-copy h2{margin:.45rem 0 .7rem;color:var(--plum);font-family:var(--serif);font-size:clamp(1.65rem,2.6vw,2.8rem);font-weight:400;line-height:1.15}.report-verification-copy>p:last-child{margin:0;color:#675b53;font-family:var(--serif);font-size:.98rem;line-height:1.65}
.report-verification-actions{display:flex;gap:12px;flex-wrap:wrap;justify-content:flex-end}.report-link{min-width:180px;padding:16px 18px;border:1px solid #cdbdab;background:#fffdfa;color:var(--plum);text-decoration:none;display:grid;gap:5px;transition:transform .2s ease,border-color .2s ease,background .2s ease}.report-link:hover,.report-link:focus-visible{transform:translateY(-2px);border-color:var(--plum);background:#fff}.report-link span{font-family:var(--serif);font-size:1.35rem}.report-link strong{font-size:.66rem;letter-spacing:.13em}
.maison-story-hero{min-height:520px!important;padding:clamp(3rem,6vw,5.5rem) clamp(1.5rem,6vw,6rem)!important}.maison-story-copy h1{font-size:clamp(2.35rem,4.5vw,5rem)!important;margin:.3rem 0 1.25rem!important}.maison-story-copy .maison-lead{font-size:clamp(1.12rem,1.7vw,1.55rem)!important;line-height:1.45!important}.maison-story-copy p{font-size:1rem!important;line-height:1.68!important}.maison-gem-echo{padding:clamp(3.5rem,7vw,6.5rem) clamp(1.5rem,8vw,8rem)!important}.maison-gem-echo h2{font-size:clamp(1.65rem,3vw,3rem)!important;margin:1rem auto 1.25rem!important}.maison-gem-echo>p:last-child{font-size:1rem!important;line-height:1.7!important}.maison-journey article{min-height:220px!important;padding:2rem 1.6rem!important}.maison-journey h2{font-size:clamp(1.2rem,1.8vw,1.85rem)!important}.maison-manifesto{padding:clamp(4rem,8vw,7rem) 1.5rem!important}.maison-manifesto p{font-size:clamp(1.15rem,2.2vw,2rem)!important}.maison-manifesto .maison-manifesto-line{font-size:clamp(1.55rem,3.2vw,3rem)!important}.maison-signature{padding:clamp(4rem,8vw,7rem) 1.5rem!important}.maison-signature-lines p{font-size:clamp(1.65rem,3.4vw,3.5rem)!important}.maison-founder-ending{font-size:clamp(1rem,1.4vw,1.2rem)!important;line-height:1.7!important;margin-top:2rem!important}
@media(max-width:760px){.report-verification{grid-template-columns:1fr;padding:28px 18px}.report-verification-actions{justify-content:stretch}.report-link{flex:1 1 150px;min-width:0}.maison-story-hero{padding:42px 20px 48px!important}.maison-story-copy h1{font-size:2.35rem!important}.maison-gem-echo{padding:48px 20px!important}.maison-journey article{min-height:170px!important;padding:1.5rem 1.25rem!important}.maison-manifesto,.maison-signature{padding:52px 20px!important}}

/* V32: image-first compact category landing pages */
.category-landing-page:not(.category-no-hero-image){
  display:grid;
  grid-template-columns:minmax(0,1.55fr) minmax(320px,.75fr);
  grid-template-areas:
    "media copy"
    "index index";
  align-items:stretch;
  background:#fbf8f3;
}
.category-landing-page:not(.category-no-hero-image) .category-hero-media{
  grid-area:media;
  margin:0;
  max-width:none;
  min-height:clamp(460px,58vw,760px);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  background:#f7f1e9;
  border-right:1px solid var(--line);
}
.category-landing-page:not(.category-no-hero-image) .category-hero-media img{
  width:100%;
  height:100%;
  min-height:clamp(460px,58vw,760px);
  object-fit:contain;
  object-position:center;
  padding:clamp(18px,2vw,34px);
}
.category-landing-page:not(.category-no-hero-image) .editorial-hero{
  grid-area:copy;
  min-height:clamp(460px,58vw,760px);
  padding:clamp(42px,6vw,84px) clamp(28px,4.2vw,66px);
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:center;
  text-align:left;
  background:linear-gradient(180deg,#fbf8f3,#f4ebe2);
}
.category-landing-page:not(.category-no-hero-image) .editorial-hero .eyebrow{
  margin-bottom:1.1rem;
}
.category-landing-page:not(.category-no-hero-image) .editorial-hero h1{
  max-width:620px;
  margin:0 0 1.25rem;
  font-size:clamp(2.25rem,4.25vw,4.9rem);
  line-height:1.02;
  letter-spacing:-.04em;
}
.category-landing-page:not(.category-no-hero-image) .editorial-hero>p:last-child{
  max-width:560px;
  margin:0;
  font-size:clamp(.96rem,1.15vw,1.08rem);
  line-height:1.68;
}
.category-landing-page:not(.category-no-hero-image) .category-index-section{
  grid-area:index;
  margin-top:0;
}

/* Image-free umbrella pages stay compact so their subcategories remain visible immediately. */
.category-landing-page.category-no-hero-image .editorial-hero{
  padding:clamp(44px,6vw,78px) clamp(22px,6vw,90px) clamp(34px,4vw,56px);
}
.category-landing-page.category-no-hero-image .editorial-hero h1{
  max-width:900px;
  font-size:clamp(2.35rem,4.5vw,5rem);
  line-height:1.02;
  margin-bottom:1rem;
}
.category-landing-page.category-no-hero-image .editorial-hero>p:last-child{
  font-size:clamp(.96rem,1.15vw,1.08rem);
  line-height:1.65;
}

@media(max-width:900px){
  .category-landing-page:not(.category-no-hero-image){
    grid-template-columns:1fr;
    grid-template-areas:"media" "copy" "index";
  }
  .category-landing-page:not(.category-no-hero-image) .category-hero-media{
    min-height:0;
    height:min(78vw,620px);
    border-right:0;
    border-bottom:1px solid var(--line);
  }
  .category-landing-page:not(.category-no-hero-image) .category-hero-media img{
    min-height:0;
    height:100%;
    padding:16px;
  }
  .category-landing-page:not(.category-no-hero-image) .editorial-hero{
    min-height:0;
    padding:34px 24px 38px;
    text-align:center;
    align-items:center;
  }
  .category-landing-page:not(.category-no-hero-image) .editorial-hero h1{
    font-size:clamp(2.15rem,8.8vw,3.75rem);
    max-width:760px;
  }
  .category-landing-page:not(.category-no-hero-image) .editorial-hero>p:last-child{
    max-width:680px;
  }
}

@media(max-width:560px){
  .category-landing-page:not(.category-no-hero-image) .category-hero-media{
    height:82vw;
    min-height:320px;
    max-height:500px;
  }
  .category-landing-page:not(.category-no-hero-image) .editorial-hero{
    padding:28px 18px 32px;
  }
  .category-landing-page:not(.category-no-hero-image) .editorial-hero h1,
  .category-landing-page.category-no-hero-image .editorial-hero h1{
    font-size:clamp(2rem,11vw,3rem);
    line-height:1.04;
  }
  .category-landing-page.category-no-hero-image .editorial-hero{
    padding:34px 18px 30px;
  }
}

/* V33 Padparadscha user-image composition */
.padparadscha-visual{background:linear-gradient(135deg,rgba(248,243,236,.96),rgba(244,232,224,.82));}
.padparadscha-visual img{max-height:650px;object-fit:contain!important;padding:12px;}
@media(max-width:720px){.padparadscha-visual img{max-height:440px;padding:6px}.padparadscha-visual{margin-bottom:1.5rem}}
/* V34 — Padparadscha visual QA correction */
.padparadscha-visual{padding:0!important;background:linear-gradient(135deg,rgba(248,243,236,.96),rgba(244,232,224,.72));overflow:hidden}
.padparadscha-gallery{display:grid;grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);align-items:center;gap:clamp(12px,2vw,30px);padding:clamp(18px,3vw,44px);min-height:420px}
.padparadscha-gallery figure{margin:0;min-width:0;display:grid;place-items:center}
.padparadscha-collection img{display:block;width:100%;height:auto;max-height:520px;object-fit:contain}
.padparadscha-signature img{display:block;width:min(100%,720px);height:auto;max-height:590px;object-fit:contain;filter:drop-shadow(0 24px 30px rgba(92,38,50,.12))}
@media(max-width:760px){.padparadscha-gallery{grid-template-columns:1fr;padding:16px;gap:10px;min-height:0}.padparadscha-collection img{max-height:none}.padparadscha-signature img{width:min(94%,560px);max-height:360px}}

/* V35 — requested visual corrections only */
/* 1) Diamond silhouettes: one shared canvas, centred, no offset or tile edge. */
.diamond-shape-grid{
  grid-template-columns:repeat(10,minmax(0,1fr))!important;
  align-items:start!important;
  gap:clamp(8px,1.1vw,18px)!important;
  overflow:visible!important;
}
.diamond-shape-item{
  display:grid!important;
  grid-template-rows:150px auto!important;
  justify-items:center!important;
  align-items:start!important;
  overflow:visible!important;
}
.diamond-shape-item img{
  width:100%!important;
  max-width:150px!important;
  height:150px!important;
  padding:0!important;
  margin:0 auto!important;
  object-fit:contain!important;
  object-position:center!important;
  transform:none!important;
  background:transparent!important;
  mix-blend-mode:normal!important;
}
.diamond-shape-item figcaption{width:100%;margin-top:8px!important;}

/* 2) Fancy-colour diamond photographs: complete originals, equal visual height,
      no crop, no overflow and no white framed tiles. */
.catalogue-intro-composite .fancy-diamond-visual{
  padding:clamp(14px,2vw,26px)!important;
  overflow:hidden!important;
  background:#fbf8f3!important;
}
.fancy-diamond-visual-grid{
  grid-template-columns:1307fr 1024fr!important;
  align-items:center!important;
  gap:clamp(10px,1.2vw,18px)!important;
  width:100%!important;
  height:auto!important;
  overflow:hidden!important;
}
.fancy-diamond-visual-item{
  width:100%!important;
  height:auto!important;
  min-width:0!important;
  margin:0!important;
  padding:0!important;
  overflow:hidden!important;
  background:transparent!important;
  border:0!important;
}
.fancy-diamond-visual-item img{
  display:block!important;
  width:100%!important;
  height:auto!important;
  max-width:100%!important;
  max-height:none!important;
  object-fit:contain!important;
  object-position:center!important;
  margin:0!important;
  padding:0!important;
  transform:none!important;
}

/* 3) Padparadscha gallery: genuinely transparent assets, larger stones,
      no card border/background, and full use of the visual panel. */
.padparadscha-visual{
  background:radial-gradient(circle at 50% 45%,rgba(237,178,165,.18),rgba(251,248,243,0) 68%)!important;
  overflow:visible!important;
}
.padparadscha-gallery{
  grid-template-columns:minmax(0,1.28fr) minmax(0,.72fr)!important;
  gap:clamp(4px,1vw,14px)!important;
  padding:clamp(8px,1.4vw,18px)!important;
  min-height:440px!important;
  width:100%!important;
}
.padparadscha-gallery figure{
  background:transparent!important;
  border:0!important;
  overflow:visible!important;
}
.padparadscha-collection img{
  width:108%!important;
  max-width:none!important;
  max-height:610px!important;
  margin-left:-4%!important;
  padding:0!important;
  background:transparent!important;
  object-fit:contain!important;
}
.padparadscha-signature img{
  width:118%!important;
  max-width:none!important;
  max-height:620px!important;
  margin-left:-9%!important;
  padding:0!important;
  background:transparent!important;
  object-fit:contain!important;
  filter:drop-shadow(0 24px 30px rgba(92,38,50,.12))!important;
}

@media(max-width:1050px){
  .diamond-shape-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important;}
}
@media(max-width:700px){
  .diamond-shape-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .diamond-shape-item{grid-template-rows:145px auto!important;}
  .diamond-shape-item img{height:145px!important;max-width:155px!important;}
  .fancy-diamond-visual-grid{grid-template-columns:1fr!important;gap:14px!important;}
  .padparadscha-gallery{grid-template-columns:1fr!important;padding:8px!important;gap:0!important;}
  .padparadscha-collection img{width:104%!important;margin-left:-2%!important;max-height:none!important;}
  .padparadscha-signature img{width:min(116%,620px)!important;margin-left:-8%!important;max-height:430px!important;}
}


/* ============================================================
   V36 — Museum Collection visual system & typography
   ============================================================ */
:root{
  --museum-black:#111112;
  --museum-charcoal:#242426;
  --museum-mid:#565659;
  --museum-line:rgba(255,255,255,.20);
  --zh-serif:"Songti SC","STSong","Noto Serif SC","Source Han Serif SC",serif;
}
html[lang^="en"] body,html[lang^="en"] button,html[lang^="en"] select,
html[lang^="fr"] body,html[lang^="fr"] button,html[lang^="fr"] select{
  font-family:"Times New Roman",Times,serif!important;
}
html[lang^="en"] h1,html[lang^="en"] h2,html[lang^="en"] h3,
html[lang^="fr"] h1,html[lang^="fr"] h2,html[lang^="fr"] h3,
html[lang^="en"] .desktop-nav a,html[lang^="fr"] .desktop-nav a,
html[lang^="en"] .button,html[lang^="fr"] .button{
  font-family:"Times New Roman",Times,serif!important;
}
html[lang^="zh"] body,html[lang^="zh"] button,html[lang^="zh"] select,
html[lang^="zh"] h1,html[lang^="zh"] h2,html[lang^="zh"] h3{
  font-family:var(--zh-serif)!important;
}

/* One cinematic first screen: image and text share the same horizontal stage. */
.museum-hero{
  position:relative;
  width:100%;
  height:clamp(520px,calc(100svh - 154px),760px);
  min-height:520px;
  display:grid;
  grid-template-columns:minmax(300px,.78fr) minmax(0,1.42fr);
  overflow:hidden;
  isolation:isolate;
  color:#fff;
  background:
    radial-gradient(circle at 76% 44%,rgba(255,255,255,.14),transparent 23%),
    linear-gradient(108deg,#0e0e0f 0%,#252527 48%,#616165 100%);
  border-bottom:1px solid rgba(255,255,255,.12);
}
.museum-hero::after{
  content:"";position:absolute;inset:0;z-index:-1;pointer-events:none;
  background:linear-gradient(90deg,rgba(0,0,0,.45),transparent 55%),
             linear-gradient(180deg,rgba(255,255,255,.035),rgba(0,0,0,.12));
}
.museum-hero .catalogue-hero,.museum-hero .editorial-hero{
  order:1;align-self:center;z-index:3;
  width:auto;max-width:660px;margin:0;
  padding:clamp(38px,5vw,78px) clamp(28px,5vw,78px)!important;
  text-align:left!important;background:transparent!important;
}
.museum-hero .catalogue-hero h1,.museum-hero .editorial-hero h1{
  margin:.12em 0 .28em!important;color:#fff!important;
  font-size:clamp(2.35rem,4.5vw,5.15rem)!important;
  line-height:.96!important;letter-spacing:-.035em!important;
  text-wrap:balance;
}
.museum-hero .catalogue-hero p:last-child,.museum-hero .editorial-hero p:last-child{
  max-width:34rem;margin:0;color:rgba(255,255,255,.83)!important;
  font-size:clamp(.98rem,1.25vw,1.18rem)!important;line-height:1.58!important;
}
.museum-hero .eyebrow{color:rgba(255,255,255,.66)!important;margin-bottom:.9rem!important;}
.museum-hero .catalogue-visual,.museum-hero .fancy-diamond-visual,.museum-hero .category-hero-media{
  order:2;position:relative;z-index:2;
  width:100%;height:100%;min-height:0;max-width:none;margin:0!important;padding:0!important;
  display:grid;place-items:center;overflow:hidden;background:transparent!important;border:0!important;
}
.museum-hero .catalogue-visual img,.museum-hero .category-hero-media img{
  width:100%;height:100%;max-height:none!important;padding:clamp(20px,3vw,48px)!important;
  object-fit:contain!important;object-position:center!important;background:transparent!important;
  border:0!important;border-radius:0!important;
  filter:drop-shadow(0 24px 30px rgba(0,0,0,.38));
}
/* Let transparent gemstone imagery feel large without clipping. */
.museum-colorless-diamonds .catalogue-visual img{padding:clamp(24px,4vw,64px)!important;transform:scale(1.04)}
.museum-ruby .catalogue-visual img,.museum-blue-sapphire .catalogue-visual img,
.museum-emerald .catalogue-visual img,.museum-paraiba .catalogue-visual img{transform:scale(1.08)}
.museum-jade .category-hero-media img{transform:scale(1.03)}

/* User-supplied fancy-diamond photographs: complete, equal, never cropped. */
.museum-fancy-color-diamonds .fancy-diamond-visual{padding:clamp(18px,2.6vw,42px)!important;}
.museum-fancy-color-diamonds .fancy-diamond-visual-grid{
  width:100%;height:100%;display:grid!important;grid-template-columns:1fr 1fr!important;
  gap:clamp(12px,1.4vw,24px)!important;align-items:center!important;
}
.museum-fancy-color-diamonds .fancy-diamond-visual-item{
  height:min(64vh,600px)!important;min-height:350px!important;margin:0!important;
  display:grid!important;place-items:center!important;background:rgba(255,255,255,.035)!important;
  overflow:hidden!important;border:0!important;
}
.museum-fancy-color-diamonds .fancy-diamond-visual-item img{
  width:100%!important;height:100%!important;max-height:none!important;
  object-fit:contain!important;object-position:center!important;background:transparent!important;
}

/* Padparadscha: both user images fill the visual stage; no cards or visible frames. */
.museum-padparadscha .padparadscha-visual{padding:clamp(16px,2.5vw,38px)!important;}
.museum-padparadscha .padparadscha-gallery{
  width:100%;height:100%;display:grid!important;grid-template-columns:1.08fr .92fr!important;
  gap:clamp(8px,1vw,18px)!important;align-items:center!important;
}
.museum-padparadscha .padparadscha-gallery figure,
.museum-padparadscha .padparadscha-gallery-item{
  height:100%!important;min-height:390px!important;margin:0!important;padding:0!important;
  display:grid!important;place-items:center!important;background:transparent!important;border:0!important;overflow:visible!important;
}
.museum-padparadscha .padparadscha-gallery img{
  width:100%!important;height:100%!important;max-height:none!important;object-fit:contain!important;
  background:transparent!important;border:0!important;box-shadow:none!important;
}

/* Diamond-shape strip: exact centring, equal cells, no drift or clipping. */
.diamond-shape-showcase{overflow:hidden!important;padding:22px clamp(22px,4vw,64px) 28px!important;}
.diamond-shape-grid{
  width:100%!important;max-width:1480px!important;margin:0 auto!important;
  display:grid!important;grid-template-columns:repeat(10,minmax(0,1fr))!important;
  gap:clamp(8px,1.2vw,18px)!important;align-items:start!important;justify-items:stretch!important;
}
.diamond-shape-item{
  width:100%!important;min-width:0!important;margin:0!important;
  display:grid!important;grid-template-rows:118px auto!important;place-items:center!important;
  overflow:visible!important;text-align:center!important;
}
.diamond-shape-item img{
  width:100%!important;height:112px!important;max-width:125px!important;margin:0 auto!important;
  object-fit:contain!important;object-position:50% 50%!important;transform:none!important;
  clip-path:none!important;background:transparent!important;
}
.diamond-shape-item figcaption{width:100%!important;margin:8px 0 0!important;min-height:2.55em!important;text-align:center!important;}

/* Compact text throughout editorial/category pages: imagery remains the first impression. */
.editorial-hero:not(.museum-hero .editorial-hero),.catalogue-hero:not(.museum-hero .catalogue-hero){padding-top:38px!important;padding-bottom:26px!important;}
.editorial-hero:not(.museum-hero .editorial-hero) h1,.catalogue-hero:not(.museum-hero .catalogue-hero) h1{font-size:clamp(2.25rem,4.5vw,4.8rem)!important;}
.editorial-hero-compact{padding:38px 24px 28px!important;min-height:0!important;}
.editorial-hero-compact h1{font-size:clamp(2.3rem,4.5vw,4.6rem)!important;line-height:1!important;}

@media(max-width:900px){
  .museum-hero{height:auto;min-height:calc(100svh - 130px);grid-template-columns:1fr;grid-template-rows:minmax(56svh,1fr) auto;}
  .museum-hero .catalogue-visual,.museum-hero .fancy-diamond-visual,.museum-hero .category-hero-media{order:1;min-height:54svh;}
  .museum-hero .catalogue-hero,.museum-hero .editorial-hero{order:2;padding:26px 24px 32px!important;align-self:end;}
  .museum-hero .catalogue-hero h1,.museum-hero .editorial-hero h1{font-size:clamp(2.2rem,9vw,4rem)!important;}
  .museum-fancy-color-diamonds .fancy-diamond-visual-grid{grid-template-columns:1fr 1fr!important;}
  .museum-fancy-color-diamonds .fancy-diamond-visual-item{height:48svh!important;min-height:250px!important;}
  .museum-padparadscha .padparadscha-gallery{grid-template-columns:1fr 1fr!important;}
  .museum-padparadscha .padparadscha-gallery figure,.museum-padparadscha .padparadscha-gallery-item{min-height:44svh!important;}
  .diamond-shape-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important;}
}
@media(max-width:620px){
  .museum-hero{min-height:calc(100svh - 116px);grid-template-rows:minmax(52svh,1fr) auto;}
  .museum-hero .catalogue-visual,.museum-hero .fancy-diamond-visual,.museum-hero .category-hero-media{min-height:50svh;}
  .museum-hero .catalogue-visual img,.museum-hero .category-hero-media img{padding:16px!important;transform:none!important;}
  .museum-fancy-color-diamonds .fancy-diamond-visual-grid{grid-template-columns:1fr!important;gap:8px!important;}
  .museum-fancy-color-diamonds .fancy-diamond-visual-item{height:25svh!important;min-height:180px!important;}
  .museum-padparadscha .padparadscha-gallery{grid-template-columns:1fr 1fr!important;gap:4px!important;}
  .museum-padparadscha .padparadscha-gallery figure,.museum-padparadscha .padparadscha-gallery-item{min-height:42svh!important;}
  .diamond-shape-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px 12px!important;}
  .diamond-shape-item{grid-template-rows:128px auto!important;}
  .diamond-shape-item img{height:124px!important;max-width:145px!important;}
}


/* V37 — separate vertical sorting and horizontal filtering */
.catalogue-filters:has(.catalogue-sort){
  display:grid!important;
  grid-template-columns:minmax(190px,230px) minmax(0,1fr)!important;
  gap:24px!important;
  align-items:start!important;
}
.catalogue-sort{padding:4px 22px 4px 0;border-right:1px solid var(--line);align-self:stretch}
.catalogue-sort-title{margin:0 0 16px;color:var(--plum);font-size:.76rem;letter-spacing:.18em;font-weight:600}
.catalogue-sort-options{display:grid;gap:4px}
.catalogue-sort-option{display:flex;align-items:flex-start;gap:10px;padding:9px 0;color:#5f5149;font-size:.78rem;line-height:1.35;cursor:pointer}
.catalogue-sort-option input{margin:2px 0 0;accent-color:var(--plum)}
.catalogue-sort-option:has(input:checked){color:var(--plum);font-weight:600}
.catalogue-sort-mobile{display:none;width:100%;padding:12px 38px 12px 13px;border:1px solid #d9cec3;background:#fffdf9;color:#4d3930;font-family:inherit;font-size:.78rem;letter-spacing:.06em}
.catalogue-filter-main{min-width:0}
.catalogue-filter-main #catalogue-filter-form{width:100%}
@media(max-width:820px){
  .catalogue-filters:has(.catalogue-sort){display:block!important;padding:12px 12px 14px!important}
  .catalogue-sort{padding:0 0 10px;border:0;border-bottom:1px solid var(--line);margin-bottom:10px}
  .catalogue-sort-title,.catalogue-sort-options{display:none}
  .catalogue-sort-mobile{display:block}
  .catalogue-filter-main{min-width:0}
}

/* V38 Knowledge Centre */
.knowledge-page{background:#f4f0ea;min-height:70vh}.knowledge-hero{background:linear-gradient(135deg,#171717,#454545);color:#fff;padding:clamp(4rem,9vw,8rem) max(6vw,2rem);text-align:center}.knowledge-hero .eyebrow{color:#e7ddd2}.knowledge-hero h1{font-size:clamp(2.3rem,5.2vw,5rem);font-weight:400;line-height:1.02;margin:.7rem auto 1.2rem;max-width:950px}.knowledge-hero>p:not(.eyebrow){font-size:clamp(1rem,1.5vw,1.3rem);line-height:1.7;max-width:760px;margin:0 auto 1.8rem}.button-light{border-color:#fff!important;color:#fff!important;background:transparent!important}.knowledge-index{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:#c9c1b8;max-width:1280px;margin:0 auto}.knowledge-card{background:#faf8f4;color:#2d2524;padding:clamp(2rem,4vw,4rem);min-height:230px;text-decoration:none;display:flex;flex-direction:column;justify-content:flex-end}.knowledge-card h2{font-size:clamp(1.5rem,2.8vw,2.6rem);font-weight:400;margin:0 0 .7rem}.knowledge-card p{line-height:1.65}.knowledge-card span{margin-top:1.2rem;letter-spacing:.15em;font-size:.76rem}.knowledge-source-note,.knowledge-article{max-width:980px;margin:0 auto;padding:clamp(3rem,7vw,7rem) max(5vw,1.5rem)}.knowledge-source-note{text-align:center}.knowledge-section{padding:2.5rem 0;border-bottom:1px solid #d8d0c7}.knowledge-section h2{font-size:clamp(1.6rem,3vw,2.7rem);font-weight:400}.knowledge-section p{font-size:1.08rem;line-height:1.85}.knowledge-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1px;background:#d8d0c7;margin-top:1.5rem}.knowledge-grid>div{background:#fff;padding:2rem}.knowledge-grid h3{font-size:1rem;letter-spacing:.16em;font-weight:400}.verify-row{display:flex;gap:1rem;flex-wrap:wrap;margin-top:1.5rem}.knowledge-disclaimer{margin-top:3rem;padding:2rem;background:#ece6de}.knowledge-references{margin-top:2rem;border-top:1px solid #bbb0a4;border-bottom:1px solid #bbb0a4;padding:1rem 0}.knowledge-references summary{cursor:pointer;letter-spacing:.13em}.knowledge-references li{margin:.8rem 0}.references-grid{max-width:1100px;margin:0 auto;padding:5rem max(5vw,1.5rem);display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:1.2rem}.reference-card{background:#fff;padding:2.2rem}.reference-card h2{font-size:1.7rem;font-weight:400}.reference-card p{line-height:1.7}.museum-hero{position:relative}.knowledge-cta{position:absolute;left:clamp(1rem,4vw,4rem);bottom:clamp(1rem,3vw,2.5rem);z-index:5;color:#fff;border:1px solid rgba(255,255,255,.7);background:rgba(20,20,20,.38);backdrop-filter:blur(7px);padding:.75rem 1rem;text-decoration:none;font-size:.72rem;letter-spacing:.14em}@media(max-width:760px){.knowledge-index,.knowledge-grid,.references-grid{grid-template-columns:1fr}.knowledge-card{min-height:180px}.knowledge-hero{padding:3.4rem 1.5rem}.knowledge-cta{position:static;display:inline-block;margin:0 1rem 1rem}}

.k-zh,.k-fr{display:none}html[lang="zh-CN"] .k-en,html[lang="fr-FR"] .k-en{display:none}html[lang="zh-CN"] .k-zh{display:inline}html[lang="fr-FR"] .k-fr{display:inline}


/* V39 FINAL — warm, image-first category presentation; no grey museum composites */
html[lang="en-GB"] body,html[lang="fr-FR"] body{font-family:"Times New Roman",Times,serif!important}
html[lang="zh-CN"] body{font-family:"Songti SC","STSong","Noto Serif SC","Source Han Serif SC",serif!important}
.museum-hero{background:#f7f4ef!important;color:#302925!important;height:min(74vh,720px)!important;min-height:520px!important;max-height:760px!important;grid-template-columns:minmax(280px,34%) minmax(0,66%)!important;overflow:hidden!important;border-bottom:1px solid #ddd5cc!important}
.museum-hero:before,.museum-hero:after{display:none!important}
.museum-hero .catalogue-hero,.museum-hero .editorial-hero{padding:clamp(28px,4.2vw,68px)!important;align-self:center!important;color:#302925!important;background:transparent!important}
.museum-hero .eyebrow{color:#765a50!important}
.museum-hero .catalogue-hero h1,.museum-hero .editorial-hero h1{color:#2d2623!important;font-size:clamp(2rem,4vw,4.15rem)!important;line-height:1.02!important;overflow-wrap:anywhere!important;margin:.45rem 0 1rem!important}
.museum-hero .catalogue-hero p,.museum-hero .editorial-hero p{color:#5c5049!important;font-size:clamp(.93rem,1.2vw,1.12rem)!important;line-height:1.55!important;max-width:34rem!important}
.museum-hero .catalogue-visual,.museum-hero .fancy-diamond-visual,.museum-hero .category-hero-media{height:100%!important;min-height:0!important;padding:clamp(18px,3vw,48px)!important;background:transparent!important;display:grid!important;place-items:center!important;overflow:hidden!important}
.museum-hero .catalogue-visual img,.museum-hero .category-hero-media img{width:100%!important;height:100%!important;max-width:100%!important;max-height:100%!important;object-fit:contain!important;object-position:center!important;padding:0!important;transform:none!important;filter:none!important;background:transparent!important}
.knowledge-cta{color:#4b3a34!important;border-color:#8a746a!important;background:rgba(255,255,255,.76)!important}
.museum-fancy-color-diamonds .fancy-diamond-visual-grid{width:100%!important;height:100%!important;display:grid!important;grid-template-columns:1fr 1fr!important;gap:12px!important;align-items:stretch!important}
.museum-fancy-color-diamonds .fancy-diamond-visual-item{height:100%!important;min-height:0!important;background:transparent!important;overflow:hidden!important;display:grid!important;place-items:center!important}
.museum-fancy-color-diamonds .fancy-diamond-visual-item img{width:100%!important;height:100%!important;object-fit:contain!important;object-position:center!important;transform:none!important}
.museum-padparadscha .padparadscha-gallery{height:100%!important;grid-template-columns:1.05fr .95fr!important;gap:8px!important}
.museum-padparadscha .padparadscha-gallery figure,.museum-padparadscha .padparadscha-gallery-item{height:100%!important;min-height:0!important;overflow:hidden!important;background:transparent!important}
.museum-padparadscha .padparadscha-gallery img{width:100%!important;height:100%!important;object-fit:contain!important;object-position:center!important;transform:none!important}
.diamond-shape-showcase{padding:24px clamp(20px,4vw,64px) 32px!important;background:#fbfaf7!important;overflow:hidden!important}
.diamond-shape-grid{max-width:1440px!important;grid-template-columns:repeat(10,minmax(0,1fr))!important;gap:8px!important;margin:auto!important}
.diamond-shape-item{grid-template-rows:142px auto!important;min-width:0!important;overflow:visible!important}
.diamond-shape-item img{width:100%!important;height:140px!important;max-width:100%!important;object-fit:contain!important;object-position:center!important;transform:none!important;margin:auto!important}
.diamond-shape-item figcaption{font-size:.68rem!important;line-height:1.3!important;letter-spacing:.06em!important;min-height:2.8em!important}
/* Knowledge: grading standards first, visual and report-oriented */
.knowledge-page{background:#f7f4ef!important;color:#302925!important}
.knowledge-hero{background:#f0ebe4!important;color:#302925!important;padding:clamp(2.8rem,6vw,5rem) max(6vw,2rem)!important;border-bottom:1px solid #d7cec4!important}
.knowledge-hero .eyebrow,.knowledge-hero h1,.knowledge-hero>p{color:#302925!important}.knowledge-hero h1{font-size:clamp(2.1rem,4.4vw,4.2rem)!important}.knowledge-hero>p{font-size:clamp(.95rem,1.3vw,1.12rem)!important;line-height:1.55!important}
.knowledge-standards{max-width:1180px!important;padding:clamp(2rem,5vw,5rem) max(4vw,1.25rem)!important}
.standard-intro,.visual-standard{padding:clamp(1.6rem,3vw,2.7rem) 0;border-bottom:1px solid #d8cfc6}.standard-intro h2,.visual-standard h2{font-size:clamp(1.25rem,2vw,2rem);font-weight:400;letter-spacing:.04em;margin:0 0 1rem}.standard-intro p,.standard-note{font-size:1rem;line-height:1.65;max-width:780px}
.grade-scale,.fancy-grade-scale{display:grid;grid-template-columns:repeat(auto-fit,minmax(125px,1fr));gap:1px;background:#cfc6bc;border:1px solid #cfc6bc}.grade-scale>div,.fancy-grade-scale>div{min-height:100px;background:#fffdf9;padding:1rem;display:flex;flex-direction:column;justify-content:space-between}.grade-scale strong,.fancy-grade-scale strong{font-size:1rem;font-weight:500}.grade-scale span,.fancy-grade-scale span{font-size:.75rem;line-height:1.35;color:#77685f}.fancy-grade-scale>div:nth-child(1){background:#faf4ec}.fancy-grade-scale>div:nth-child(2){background:#f7eadf}.fancy-grade-scale>div:nth-child(3){background:#f4dfd2}.fancy-grade-scale>div:nth-child(4){background:#efcfca}.fancy-grade-scale>div:nth-child(5){background:#e8b7ba}.fancy-grade-scale>div:nth-child(6){background:#df9aa6}.fancy-grade-scale>div:nth-child(7){background:#d77991;color:#fff}.fancy-grade-scale>div:nth-child(8){background:#8d5664;color:#fff}.fancy-grade-scale>div:nth-child(9){background:#613b48;color:#fff}
.report-map{max-width:800px;background:#fff;border:1px solid #cfc6bc;box-shadow:0 18px 50px rgba(55,42,34,.08)}.report-map-head{padding:1.25rem 1.4rem;background:#eee7df;display:flex;justify-content:space-between;gap:1rem;align-items:center}.report-map-head b{font-size:1.3rem}.report-map-head span{font-size:.72rem;color:#75685f;text-align:right}.report-map>div:not(.report-map-head){display:grid;grid-template-columns:minmax(150px,35%) 1fr;border-top:1px solid #e5ddd5}.report-map>div:not(.report-map-head) span,.report-map>div:not(.report-map-head) strong{padding:.82rem 1.1rem;font-size:.82rem}.report-map>div:not(.report-map-head) span{color:#796b62;background:#fbf9f6}.report-map>div:not(.report-map-head) strong{font-weight:500}.knowledge-references{margin-top:2.5rem!important}.knowledge-references summary{font-size:.8rem}.knowledge-index{background:#d8d0c8!important}.knowledge-card{background:#fbfaf7!important;min-height:190px!important;padding:clamp(1.5rem,3vw,3rem)!important}.knowledge-card h2{font-size:clamp(1.3rem,2.2vw,2rem)!important}
@media(max-width:900px){.museum-hero{height:auto!important;min-height:0!important;max-height:none!important;grid-template-columns:1fr!important;grid-template-rows:minmax(48svh,58svh) auto!important}.museum-hero .catalogue-visual,.museum-hero .fancy-diamond-visual,.museum-hero .category-hero-media{order:1!important;min-height:48svh!important;padding:18px!important}.museum-hero .catalogue-hero,.museum-hero .editorial-hero{order:2!important;padding:22px 24px 28px!important}.museum-hero .catalogue-hero h1,.museum-hero .editorial-hero h1{font-size:clamp(2rem,8vw,3.4rem)!important}.diamond-shape-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important}.museum-fancy-color-diamonds .fancy-diamond-visual-item{min-height:42svh!important}.museum-padparadscha .padparadscha-gallery{grid-template-columns:1fr 1fr!important}}
@media(max-width:620px){.museum-hero{grid-template-rows:minmax(44svh,52svh) auto!important}.museum-fancy-color-diamonds .fancy-diamond-visual-grid{grid-template-columns:1fr 1fr!important;gap:5px!important}.museum-fancy-color-diamonds .fancy-diamond-visual-item{min-height:42svh!important}.museum-padparadscha .padparadscha-gallery{grid-template-columns:1fr 1fr!important;gap:3px!important}.diamond-shape-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}.diamond-shape-item{grid-template-rows:150px auto!important}.diamond-shape-item img{height:148px!important}.report-map-head{align-items:flex-start;flex-direction:column}.report-map>div:not(.report-map-head){grid-template-columns:1fr}.report-map>div:not(.report-map-head) strong{border-top:1px solid #eee6de}.grade-scale,.fancy-grade-scale{grid-template-columns:repeat(2,minmax(0,1fr))}}

html,body{max-width:100%;overflow-x:hidden}
img{max-width:100%}

/* V40 — corrected image-first hero layouts */
.v40-visual-hero{
  display:grid!important;
  grid-template-columns:minmax(300px,36%) minmax(0,64%)!important;
  min-height:clamp(500px,65vh,650px)!important;
  height:auto!important;
  background:#faf7f2!important;
  overflow:hidden!important;
  align-items:stretch!important;
}
.v40-visual-hero::after{display:none!important}
.v40-visual-hero .editorial-hero,
.v40-visual-hero .catalogue-hero{
  position:relative!important;
  z-index:1!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  align-items:flex-start!important;
  text-align:left!important;
  padding:clamp(34px,5vw,76px)!important;
  background:#faf7f2!important;
  color:#2d2421!important;
}
.v40-visual-hero .editorial-hero h1,
.v40-visual-hero .catalogue-hero h1{
  color:#2d2421!important;
  font-size:clamp(2.5rem,4.1vw,4.9rem)!important;
  line-height:.98!important;
  max-width:560px!important;
  margin:0 0 1.15rem!important;
  letter-spacing:-.035em!important;
}
.v40-visual-hero .editorial-hero p:last-child,
.v40-visual-hero .catalogue-hero p:last-child{
  color:#5c514b!important;
  font-size:clamp(1rem,1.25vw,1.2rem)!important;
  line-height:1.62!important;
  max-width:520px!important;
  margin:0!important;
}
.v40-visual-hero .eyebrow{color:#9a7141!important}
.v40-visual-hero .category-hero-media,
.v40-visual-hero .catalogue-visual{
  margin:0!important;
  width:100%!important;
  max-width:none!important;
  min-height:500px!important;
  height:auto!important;
  background:#fff!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.v40-visual-hero .category-hero-media img,
.v40-visual-hero .catalogue-visual img{
  display:block!important;
  width:100%!important;
  height:100%!important;
  max-height:650px!important;
  object-fit:contain!important;
  object-position:center!important;
  padding:clamp(14px,2vw,28px)!important;
  transform:none!important;
  clip-path:none!important;
}
.v40-pearls-hero .category-hero-media img{padding:0!important;object-fit:contain!important;background:#fff!important}
.v40-jade-hero .category-hero-media img,
.v40-jade-hero .catalogue-visual img{padding:20px!important;object-fit:contain!important}
.v40-sapphire-hero .category-hero-media img,
.v40-sapphire-hero .catalogue-visual img{padding:22px!important;object-fit:contain!important}
.v40-colorless-hero .catalogue-visual img{padding:28px!important;object-fit:contain!important;max-width:100%!important}
.v40-empty-hero{display:block!important;background:#faf7f2!important;min-height:0!important}
.v40-empty-hero .catalogue-hero{max-width:900px;margin:0 auto;text-align:center!important;align-items:center!important;padding:52px 24px!important}

/* Diamond shape row: fixed equal canvases and exact centring */
.diamond-shape-grid{grid-template-columns:repeat(10,minmax(0,1fr))!important;gap:12px!important;align-items:start!important;max-width:1500px!important}
.diamond-shape-item{display:grid!important;grid-template-rows:132px auto!important;place-items:center!important;overflow:visible!important}
.diamond-shape-item img{display:block!important;width:132px!important;height:132px!important;max-width:100%!important;object-fit:contain!important;object-position:50% 50%!important;margin:0 auto!important;padding:8px!important;transform:none!important}
.diamond-shape-item figcaption{margin:8px 0 0!important;text-align:center!important;min-height:2.6em!important}

@media(max-width:900px){
 .v40-visual-hero{grid-template-columns:1fr!important;grid-template-rows:auto auto!important;min-height:0!important}
 .v40-visual-hero .category-hero-media,.v40-visual-hero .catalogue-visual{order:1!important;min-height:0!important;height:min(58vh,520px)!important}
 .v40-visual-hero .editorial-hero,.v40-visual-hero .catalogue-hero{order:2!important;padding:30px 24px 38px!important}
 .v40-visual-hero .editorial-hero h1,.v40-visual-hero .catalogue-hero h1{font-size:clamp(2.25rem,8.5vw,4rem)!important}
 .diamond-shape-grid{grid-template-columns:repeat(5,minmax(0,1fr))!important}
}
@media(max-width:560px){
 .v40-visual-hero .category-hero-media,.v40-visual-hero .catalogue-visual{height:min(52vh,430px)!important}
 .v40-visual-hero .category-hero-media img,.v40-visual-hero .catalogue-visual img{padding:12px!important}
 .diamond-shape-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:18px 12px!important}
 .diamond-shape-item{grid-template-rows:138px auto!important}
 .diamond-shape-item img{width:138px!important;height:138px!important}
}

/* ============================================================
   V41 — final layout correction: nested heroes fill the viewport
   ============================================================ */
/* Category landing pages contain a self-contained hero section. The page itself
   must not re-grid the nested hero into a narrow column. */
.category-landing-page:has(> .museum-hero),
.category-landing-page:has(> .v40-visual-hero){
  display:block!important;
  grid-template-columns:none!important;
  grid-template-areas:none!important;
  width:100%!important;
  max-width:none!important;
  background:#faf7f2!important;
}
.category-landing-page > .museum-hero,
.category-landing-page > .v40-visual-hero{
  width:100%!important;
  max-width:none!important;
  margin:0!important;
}

/* A complete, balanced first screen: concise copy at left, full image at right. */
.v40-visual-hero{
  grid-template-columns:minmax(280px,34%) minmax(0,66%)!important;
  min-height:min(650px,calc(100svh - 150px))!important;
  max-height:720px!important;
  width:100%!important;
}
.v40-visual-hero .editorial-hero,
.v40-visual-hero .catalogue-hero{
  min-width:0!important;
  min-height:0!important;
}
.v40-visual-hero .category-hero-media,
.v40-visual-hero .catalogue-visual{
  min-width:0!important;
  min-height:0!important;
  height:auto!important;
  max-height:720px!important;
}
.v40-visual-hero .category-hero-media img,
.v40-visual-hero .catalogue-visual img{
  width:100%!important;
  height:100%!important;
  max-width:100%!important;
  max-height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
}

/* Use the available image stage instead of leaving a tiny object in a tall box. */
.v40-sapphire-hero .category-hero-media img,
.v40-jade-hero .category-hero-media img,
.v40-jade-hero .catalogue-visual img{
  padding:clamp(10px,1.25vw,20px)!important;
}
.v40-pearls-hero .category-hero-media img{
  padding:0!important;
  object-fit:contain!important;
}

/* Category links sit directly beneath the hero without accidental empty space. */
.category-landing-page > .category-index-section{
  width:100%!important;
  margin:0!important;
}

/* Diamond shapes: equal canvases, true optical centring and no overflow. */
.diamond-shape-section{overflow:hidden!important;}
.diamond-shape-grid{
  width:min(100%,1500px)!important;
  padding-inline:clamp(12px,2vw,28px)!important;
  box-sizing:border-box!important;
}
.diamond-shape-item{
  width:100%!important;
  min-width:0!important;
  box-sizing:border-box!important;
}
.diamond-shape-item img{
  width:min(100%,128px)!important;
  height:128px!important;
  padding:6px!important;
  box-sizing:border-box!important;
}

@media(max-width:900px){
  .v40-visual-hero{
    grid-template-columns:1fr!important;
    max-height:none!important;
    min-height:0!important;
  }
  .v40-visual-hero .category-hero-media,
  .v40-visual-hero .catalogue-visual{
    height:clamp(330px,58vw,520px)!important;
    max-height:520px!important;
  }
  .v40-visual-hero .editorial-hero,
  .v40-visual-hero .catalogue-hero{
    padding:28px 24px 34px!important;
  }
}
@media(max-width:560px){
  .v40-visual-hero .category-hero-media,
  .v40-visual-hero .catalogue-visual{
    height:clamp(300px,82vw,430px)!important;
  }
  .diamond-shape-grid{padding-inline:14px!important;}
  .diamond-shape-item img{width:min(100%,140px)!important;height:140px!important;}
}
/* Neutralise legacy grid-area declarations inside the self-contained V41 hero. */
.v40-visual-hero > .editorial-hero,
.v40-visual-hero > .catalogue-hero,
.v40-visual-hero > .category-hero-media,
.v40-visual-hero > .catalogue-visual{
  grid-area:auto!important;
}
.v40-visual-hero > .editorial-hero,
.v40-visual-hero > .catalogue-hero{order:1!important;}
.v40-visual-hero > .category-hero-media,
.v40-visual-hero > .catalogue-visual{order:2!important;}

/* V41 fancy colour diamonds: user photographs, equal-height horizontal pairing. */
.museum-fancy-color-diamonds{
  display:grid!important;
  grid-template-columns:minmax(280px,34%) minmax(0,66%)!important;
  width:100%!important;
  min-height:min(650px,calc(100svh - 150px))!important;
  max-height:720px!important;
  height:auto!important;
  background:#faf7f2!important;
  color:#2d2421!important;
  overflow:hidden!important;
}
.museum-fancy-color-diamonds::after{display:none!important;}
.museum-fancy-color-diamonds > .catalogue-hero{
  grid-area:auto!important;
  order:1!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  align-items:flex-start!important;
  text-align:left!important;
  padding:clamp(34px,5vw,76px)!important;
  background:#faf7f2!important;
  color:#2d2421!important;
}
.museum-fancy-color-diamonds > .catalogue-hero h1{
  color:#2d2421!important;
  font-size:clamp(2.5rem,4.1vw,4.9rem)!important;
  line-height:.98!important;
  max-width:560px!important;
}
.museum-fancy-color-diamonds > .catalogue-hero p:last-child{
  color:#5c514b!important;
  font-size:clamp(1rem,1.25vw,1.2rem)!important;
  line-height:1.62!important;
}
.museum-fancy-color-diamonds > .catalogue-hero .eyebrow{color:#9a7141!important;}
.museum-fancy-color-diamonds > .fancy-diamond-visual{
  grid-area:auto!important;
  order:2!important;
  width:100%!important;
  min-width:0!important;
  min-height:0!important;
  margin:0!important;
  padding:clamp(18px,2vw,30px)!important;
  display:flex!important;
  align-items:center!important;
  background:#fff!important;
  overflow:hidden!important;
}
.museum-fancy-color-diamonds .fancy-diamond-visual-grid{
  width:100%!important;
  height:min(580px,calc(100svh - 220px))!important;
  min-height:430px!important;
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:clamp(10px,1.2vw,18px)!important;
}
.museum-fancy-color-diamonds .fancy-diamond-visual-item{
  width:100%!important;
  height:100%!important;
  min-height:0!important;
  margin:0!important;
  background:#fff!important;
  overflow:hidden!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}
.museum-fancy-color-diamonds .fancy-diamond-visual-item img{
  width:100%!important;
  height:100%!important;
  object-fit:contain!important;
  object-position:center!important;
  transform:none!important;
}

@media(max-width:900px){
  /* On phones/tablets the image is the first thing the customer sees. */
  .v40-visual-hero > .category-hero-media,
  .v40-visual-hero > .catalogue-visual{order:1!important;}
  .v40-visual-hero > .editorial-hero,
  .v40-visual-hero > .catalogue-hero{order:2!important;}
  .museum-fancy-color-diamonds{
    grid-template-columns:1fr!important;
    max-height:none!important;
    min-height:0!important;
  }
  .museum-fancy-color-diamonds > .fancy-diamond-visual{order:1!important;}
  .museum-fancy-color-diamonds > .catalogue-hero{order:2!important;padding:28px 24px 34px!important;}
  .museum-fancy-color-diamonds .fancy-diamond-visual-grid{
    height:clamp(360px,90vw,560px)!important;
    min-height:0!important;
  }
  /* Robust three-part mobile header: menu, centred logo, language. */
  .site-header{
    grid-template-columns:minmax(68px,1fr) auto minmax(68px,1fr)!important;
    padding-inline:16px!important;
  }
  .site-header .menu-button{justify-self:start!important;}
  .site-header .brand{justify-self:center!important;min-width:0!important;}
  .site-header .brand img{max-width:126px!important;height:auto!important;}
  .site-header .header-right{justify-self:end!important;min-width:0!important;}
  .site-header .header-monogram{display:none!important;}
  .language-select{width:62px!important;min-width:62px!important;padding:10px 24px 10px 10px!important;}
}
@media(max-width:560px){
  .museum-fancy-color-diamonds .fancy-diamond-visual-grid{
    height:76vw!important;
    min-height:300px!important;
    gap:6px!important;
  }
}
@media(max-width:900px){
  .site-header{
    grid-template-columns:72px minmax(0,1fr) 72px!important;
    column-gap:8px!important;
  }
  .site-header .brand{
    width:126px!important;
    max-width:126px!important;
    min-width:0!important;
  }
  .site-header .header-right{
    width:62px!important;
    max-width:62px!important;
  }
}


/* ============================================================
   V42 — refined typography, transparent hero and illustrated choices
   ============================================================ */

/* HOME HERO: give the copy enough room, keep Chinese on one elegant line,
   and let the artwork fill its stage without a visible white rectangle. */
body[data-page="home"] .hero{
  grid-template-columns:minmax(0,46%) minmax(0,54%);
  min-height:min(700px,calc(100svh - 154px));
}
body[data-page="home"] .hero-product{
  min-width:0;
  min-height:590px;
  padding:clamp(10px,1.4vw,24px) 0;
}
body[data-page="home"] .hero-product>img{
  width:min(96%,760px);
  max-height:680px;
  object-fit:contain;
  background:transparent!important;
  filter:drop-shadow(0 28px 34px rgba(52,50,46,.14));
}
body[data-page="home"] .hero-copy{
  min-width:0;
  max-width:880px;
  padding:clamp(58px,7vw,108px) clamp(28px,4vw,64px);
}
body[data-page="home"] .hero-copy h1{
  max-width:100%;
  font-size:clamp(2.75rem,4.25vw,5rem);
  line-height:1.02;
  letter-spacing:-.038em;
  text-wrap:balance;
}
html[lang^="zh"] body[data-page="home"] .hero-copy h1{
  font-size:clamp(2.3rem,2.95vw,3.35rem);
  line-height:1.16;
  letter-spacing:.015em;
  white-space:nowrap;
  text-wrap:nowrap;
}
html[lang^="zh"] body[data-page="home"] .hero-copy>p:not(.eyebrow){
  max-width:38rem;
  font-size:clamp(.96rem,1.08vw,1.1rem);
}

/* HOME LOWER SECTIONS: the headings should support the jewellery, not dominate it. */
body[data-page="home"] .section-intro h2,
body[data-page="home"] .diamonds-copy h2,
body[data-page="home"] .house-copy h2{
  font-size:clamp(2.15rem,3.35vw,3.85rem);
  line-height:1.08;
  letter-spacing:-.025em;
}
body[data-page="home"] .diamonds{
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
}
body[data-page="home"] .diamonds-copy{
  padding:clamp(38px,4.5vw,68px);
}
html[lang^="zh"] body[data-page="home"] .section-intro h2,
html[lang^="zh"] body[data-page="home"] .diamonds-copy h2,
html[lang^="zh"] body[data-page="home"] .house-copy h2{
  font-size:clamp(1.9rem,2.65vw,3rem);
  line-height:1.22;
  letter-spacing:.015em;
}

/* ILLUSTRATED CATEGORY CHOICES: image on the left, label on the right. */
.category-index-card{
  display:grid!important;
  grid-template-columns:clamp(76px,8vw,112px) minmax(0,1fr)!important;
  align-items:center!important;
  justify-content:initial!important;
  gap:clamp(14px,1.6vw,24px)!important;
  min-height:128px!important;
  padding:10px clamp(16px,2vw,26px) 10px 10px!important;
  overflow:hidden;
  text-align:left;
}
.category-card-media{
  align-self:stretch;
  min-width:0;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:linear-gradient(145deg,rgba(247,241,233,.76),rgba(255,255,255,.5));
}
.category-card-media img{
  width:100%;
  height:106px;
  padding:7px;
  object-fit:contain;
  object-position:center;
  background:transparent;
  transition:transform .35s ease;
}
.category-index-card:hover .category-card-media img,
.category-index-card:focus-visible .category-card-media img{
  transform:scale(1.045);
}
.category-index-card h3{
  margin:0!important;
  min-width:0;
  font-size:clamp(.72rem,.88vw,.93rem)!important;
  line-height:1.45!important;
  letter-spacing:.105em!important;
  overflow-wrap:normal;
  word-break:normal;
}

@media(max-width:900px){
  body[data-page="home"] .hero{
    grid-template-columns:1fr;
    min-height:0;
  }
  body[data-page="home"] .hero-product{
    min-height:clamp(410px,68vw,590px);
    order:1;
  }
  body[data-page="home"] .hero-copy{
    order:2;
    max-width:none;
    padding:36px 24px 52px;
  }
  html[lang^="zh"] body[data-page="home"] .hero-copy h1{
    white-space:normal;
    text-wrap:balance;
    font-size:clamp(2.1rem,7vw,3.3rem);
  }
  body[data-page="home"] .diamonds{grid-template-columns:1fr;}
}
@media(max-width:700px){
  .category-index-card{
    grid-template-columns:92px minmax(0,1fr)!important;
    min-height:108px!important;
    padding:8px 18px 8px 8px!important;
  }
  .category-card-media img{height:92px;padding:6px;}
  .category-index-card h3{font-size:.78rem!important;}
}

/* V42.1 — four-option category rows remain balanced on desktop. */
.category-index-section-compact .category-index-grid:has(> .category-index-card:nth-child(4)){
  grid-template-columns:repeat(4,minmax(0,1fr));
  max-width:1280px;
}
@media(max-width:1050px){
  .category-index-section-compact .category-index-grid:has(> .category-index-card:nth-child(4)){grid-template-columns:repeat(2,minmax(0,1fr));}
}
@media(max-width:700px){
  .category-index-section-compact .category-index-grid:has(> .category-index-card:nth-child(4)){grid-template-columns:1fr;}
}


/* ============================================================
   V43 — verified visual corrections requested 15 July 2026
   ============================================================ */

/* Home: Chinese headline is intentionally restrained and remains on one line
   on normal desktop widths. */
html[lang^="zh"] body[data-page="home"] .hero-copy h1{
  font-size:clamp(2rem,2.35vw,2.75rem)!important;
  line-height:1.18!important;
  letter-spacing:.01em!important;
  white-space:nowrap!important;
  text-wrap:nowrap!important;
}
body[data-page="home"] .hero-copy h1{
  font-size:clamp(2.55rem,3.7vw,4.35rem)!important;
}

/* Founder statement: moved below the complete founder journey and reduced. */
.founder-page-closing{
  margin-top:0;
  padding:clamp(58px,7vw,96px) clamp(24px,7vw,110px)!important;
  border-top:1px solid rgba(95,24,48,.14);
}
.founder-page-closing h1{
  max-width:1220px!important;
  font-size:clamp(2rem,3.25vw,3.9rem)!important;
  line-height:1.15!important;
  letter-spacing:-.025em!important;
}
html[lang^="zh"] .founder-page-closing h1{
  max-width:1320px!important;
  font-size:clamp(1.8rem,2.55vw,3rem)!important;
  line-height:1.38!important;
  letter-spacing:.015em!important;
}

/* Category heroes: larger copy column, no framed/boxed image treatment. */
.v43-sapphire-hero,
.v43-jade-landing-hero,
.v43-jadeite-hero,
.v43-paraiba-hero{
  grid-template-columns:minmax(340px,40%) minmax(0,60%)!important;
}
.v43-sapphire-hero .category-hero-media,
.v43-jade-landing-hero .category-hero-media,
.v43-jadeite-hero .catalogue-visual,
.v43-paraiba-hero .catalogue-visual{
  padding:0!important;
  background:transparent!important;
}
.v43-sapphire-hero .category-hero-media img{
  width:min(92%,636px)!important;
  height:auto!important;
  max-height:82%!important;
  object-fit:contain!important;
  padding:0!important;
  background:transparent!important;
  filter:drop-shadow(0 18px 24px rgba(40,38,35,.10))!important;
}
.v43-jade-landing-hero .category-hero-media img,
.v43-jadeite-hero .catalogue-visual img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
  object-position:center!important;
  padding:0!important;
  background:transparent!important;
}
.v43-paraiba-hero .catalogue-visual img{
  width:min(92%,760px)!important;
  height:auto!important;
  max-height:92%!important;
  object-fit:contain!important;
  padding:0!important;
  background:transparent!important;
  filter:drop-shadow(0 24px 30px rgba(34,32,30,.10))!important;
}
html[lang^="zh"] .v43-sapphire-hero .editorial-hero h1,
html[lang^="zh"] .v43-jade-landing-hero .editorial-hero h1,
html[lang^="zh"] .v43-jadeite-hero .catalogue-hero h1,
html[lang^="zh"] .v43-paraiba-hero .catalogue-hero h1{
  font-size:clamp(2rem,3vw,3.25rem)!important;
  line-height:1.14!important;
  overflow-wrap:normal!important;
  word-break:keep-all!important;
}

/* Maison journey: the user's four images sit above the copy in each card. */
.maison-journey article{
  min-height:460px!important;
  padding:2.25rem clamp(1.25rem,2vw,2rem)!important;
  display:grid!important;
  grid-template-rows:auto auto auto 1fr!important;
  align-content:start!important;
  justify-content:initial!important;
}
.maison-journey-image{
  width:100%;
  height:clamp(150px,12vw,205px);
  margin:1.35rem 0 1.55rem;
  display:block;
  object-fit:cover;
  object-position:center;
  border:0;
  background:#171717;
}
.maison-journey h2{
  margin:0 0 .75rem!important;
  align-self:start;
}
.maison-journey p{
  align-self:start;
}

@media(max-width:1000px){
  html[lang^="zh"] body[data-page="home"] .hero-copy h1{
    white-space:normal!important;
    text-wrap:balance!important;
    font-size:clamp(2rem,6.3vw,3rem)!important;
  }
  .v43-sapphire-hero,
  .v43-jade-landing-hero,
  .v43-jadeite-hero,
  .v43-paraiba-hero{
    grid-template-columns:1fr!important;
  }
  .maison-journey{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
  .maison-journey article{min-height:420px!important;}
  .maison-journey-image{height:210px;}
}
@media(max-width:620px){
  .founder-page-closing{padding:48px 22px 58px!important;}
  .founder-page-closing h1{font-size:clamp(1.8rem,8vw,2.65rem)!important;}
  .maison-journey{grid-template-columns:1fr!important;margin:0 14px!important;}
  .maison-journey article{min-height:0!important;padding:1.5rem!important;border-right:0!important;border-bottom:1px solid rgba(95,24,48,.18);}
  .maison-journey-image{height:230px;margin:1rem 0 1.25rem;}
}

/* V44 product media and product cards */
.catalogue-product-card{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);overflow:hidden;background:#fffdfa}
.product-media-gallery{min-width:0;background:#f4f0ea;border-right:1px solid var(--line)}
.product-media-stage{aspect-ratio:1/1;display:grid;place-items:center;overflow:hidden;background:#f4f0ea}
.product-media-stage img,.product-media-stage video{width:100%;height:100%;object-fit:contain;background:#f4f0ea}
.product-media-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border-top:1px solid var(--line)}
.product-media-thumb{position:relative;aspect-ratio:1/1;border:0;background:#fffdfa;padding:0;cursor:pointer;overflow:hidden}
.product-media-thumb img{width:100%;height:100%;object-fit:cover}
.product-media-thumb.is-active{outline:2px solid var(--plum);outline-offset:-2px}
.product-video-mark{position:absolute;inset:0;display:grid;place-items:center;font-size:1.2rem;color:#fff;background:linear-gradient(rgba(29,19,20,.18),rgba(29,19,20,.5))}
.product-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,4vw,64px)}
.product-copy h2{font-size:clamp(1.45rem,2.3vw,2.35rem);line-height:1.2}
.product-price{margin:18px 0 6px;color:var(--plum);font-size:1.28rem;letter-spacing:.05em}
.product-description{line-height:1.75;color:var(--ink-soft)}
.product-details{margin:18px 0 28px;padding:0;list-style:none;border-top:1px solid var(--line)}
.product-details li{padding:9px 0;border-bottom:1px solid var(--line);line-height:1.45}
.product-enquire{align-self:flex-start}
@media(max-width:840px){.catalogue-product-card{grid-template-columns:1fr}.product-media-gallery{border-right:0;border-bottom:1px solid var(--line)}.product-copy{padding:26px 22px}.product-media-stage{aspect-ratio:4/5}}

/* V44 product media and product cards */
.catalogue-product-card{display:grid;grid-template-columns:minmax(0,1.18fr) minmax(300px,.82fr);overflow:hidden;background:#fffdfa}
.product-media-gallery{min-width:0;background:#f4f0ea;border-right:1px solid var(--line)}
.product-media-stage{aspect-ratio:1/1;display:grid;place-items:center;overflow:hidden;background:#f4f0ea}
.product-media-stage img,.product-media-stage video{width:100%;height:100%;object-fit:contain;background:#f4f0ea}
.product-media-thumbs{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:var(--line);border-top:1px solid var(--line)}
.product-media-thumb{position:relative;aspect-ratio:1/1;border:0;background:#fffdfa;padding:0;cursor:pointer;overflow:hidden}
.product-media-thumb img{width:100%;height:100%;object-fit:cover}
.product-media-thumb.is-active{outline:2px solid var(--plum);outline-offset:-2px}
.product-video-mark{position:absolute;inset:0;display:grid;place-items:center;font-size:1.2rem;color:#fff;background:linear-gradient(rgba(29,19,20,.18),rgba(29,19,20,.5))}
.product-copy{display:flex;flex-direction:column;justify-content:center;padding:clamp(28px,4vw,64px)}
.product-copy h2{font-size:clamp(1.45rem,2.3vw,2.35rem);line-height:1.2}
.product-price{margin:18px 0 6px;color:var(--plum);font-size:1.28rem;letter-spacing:.05em}
.product-description{line-height:1.75;color:var(--ink-soft)}
.product-details{margin:18px 0 28px;padding:0;list-style:none;border-top:1px solid var(--line)}
.product-details li{padding:9px 0;border-bottom:1px solid var(--line);line-height:1.45}
.product-enquire{align-self:flex-start}
@media(max-width:840px){.catalogue-product-card{grid-template-columns:1fr}.product-media-gallery{border-right:0;border-bottom:1px solid var(--line)}.product-copy{padding:26px 22px}.product-media-stage{aspect-ratio:4/5}}

/* V45 — compact catalogue tiles linking to dedicated product pages */
.catalogue-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(280px,360px));gap:clamp(22px,3vw,38px);align-items:start;justify-content:start}
.catalogue-product-tile{position:relative;background:#fffdfa;border:1px solid var(--line);overflow:hidden;min-width:0}
.product-tile-link{display:block;color:inherit;text-decoration:none}
.product-tile-media{aspect-ratio:1/1;overflow:hidden;background:#f3efe9}
.product-tile-media img{width:100%;height:100%;display:block;object-fit:cover;object-position:center}
.product-tile-copy{padding:22px 22px 24px}
.product-tile-copy h2{margin:0 46px 10px 0;font-size:clamp(1.15rem,1.45vw,1.5rem);line-height:1.28;color:var(--plum)}
.product-tile-description{margin:0;display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;line-height:1.55;color:var(--ink-soft);font-size:.98rem}
.product-tile-price{margin:16px 0 0;font-size:1.03rem;letter-spacing:.04em;color:var(--plum)}
.product-tile-view{display:inline-block;margin-top:16px;padding-bottom:3px;border-bottom:1px solid currentColor;font-size:.76rem;letter-spacing:.13em;color:var(--plum)}
.product-tile-favourite{top:14px;right:14px;background:rgba(255,253,250,.92);z-index:2}
.catalogue-empty.is-hidden{display:none}

/* Dedicated product detail page */
.product-detail-page{padding:clamp(34px,5vw,76px) clamp(20px,5vw,76px) clamp(70px,8vw,120px)}
.product-detail-back{display:inline-block;margin-bottom:28px;color:var(--plum);text-decoration:none;letter-spacing:.08em;font-size:.78rem}
.product-detail-layout{display:grid;grid-template-columns:minmax(0,1.12fr) minmax(340px,.88fr);gap:clamp(34px,5vw,80px);align-items:start;max-width:1440px;margin:0 auto}
.product-detail-gallery{min-width:0}
.product-detail-stage{aspect-ratio:1/1;background:#f3efe9;overflow:hidden;display:grid;place-items:center}
.product-detail-stage img,.product-detail-stage video{width:100%;height:100%;display:block;object-fit:contain;background:#f3efe9}
.product-detail-thumbs{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:10px;margin-top:12px}
.product-detail-thumb{position:relative;aspect-ratio:1/1;padding:0;border:1px solid var(--line);background:#f3efe9;overflow:hidden;cursor:pointer}
.product-detail-thumb img{width:100%;height:100%;object-fit:cover}
.product-detail-thumb.is-active{outline:2px solid var(--plum);outline-offset:-2px}
.product-detail-video-mark{position:absolute;inset:0;display:grid;place-items:center;color:#fff;background:rgba(20,15,15,.35);font-size:1.25rem}
.product-detail-copy{padding-top:12px}
.product-detail-eyebrow{margin:0 0 16px;color:var(--gold);font-size:.75rem;letter-spacing:.18em;text-transform:uppercase}
.product-detail-copy h1{margin:0;font-size:clamp(2rem,3.4vw,4rem);line-height:1.08;color:var(--plum)}
.product-detail-price{margin:24px 0 18px;color:var(--plum);font-size:1.35rem;letter-spacing:.06em}
.product-detail-description{font-size:1.08rem;line-height:1.8;color:var(--ink-soft)}
.product-detail-specs{margin:32px 0 34px;padding:0;list-style:none;border-top:1px solid var(--line)}
.product-detail-specs li{padding:13px 0;border-bottom:1px solid var(--line);line-height:1.55}
.product-detail-actions{display:flex;flex-wrap:wrap;gap:12px}
.product-detail-not-found{text-align:center;padding:100px 20px}
@media(max-width:850px){.product-detail-layout{grid-template-columns:1fr}.product-detail-copy{padding-top:0}.catalogue-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}
@media(max-width:560px){.catalogue-grid{grid-template-columns:1fr}.product-detail-page{padding-inline:16px}.product-detail-thumbs{grid-template-columns:repeat(3,1fr)}}

/* V45 product collection: calm three-column gallery */
.catalogue-grid{grid-template-columns:repeat(3,minmax(0,1fr))!important;gap:clamp(14px,1.6vw,24px)!important;align-items:start}
.catalogue-product-tile{position:relative;border:0!important;background:transparent!important;min-width:0}
.product-tile-link{display:block;color:inherit;text-decoration:none}
.product-tile-media{position:relative;aspect-ratio:1/1;overflow:hidden;background:#f3efe9}
.product-tile-media>img,.product-tile-video{position:absolute;inset:0;width:100%;height:100%;display:block;object-fit:cover;object-position:center;transition:opacity .25s ease,transform .45s ease}
.product-tile-media>img{opacity:1}.product-tile-video{opacity:0;background:#f3efe9}.product-tile-media.is-playing>img{opacity:0}.product-tile-media.is-playing .product-tile-video{opacity:1}
.product-tile-link:hover .product-tile-media>img{transform:scale(1.025)}
.product-tile-copy{padding:13px 2px 5px;text-align:left}.product-tile-copy h2{margin:0;color:var(--ink);font-size:clamp(.96rem,1.18vw,1.12rem);line-height:1.35;font-weight:500;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-tile-description{margin:7px 0 0;color:var(--ink-soft);font-size:.86rem;line-height:1.45;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}
.product-tile-price{margin:9px 0 0;color:var(--plum);font-size:.94rem;letter-spacing:.03em}.product-tile-view{display:none}.product-tile-favourite{top:12px;right:12px;background:rgba(255,253,250,.9)}
.catalogue-pagination{display:flex;justify-content:center;gap:7px;margin:44px auto 10px}.catalogue-page-button{min-width:38px;height:38px;border:1px solid var(--line);background:transparent;color:var(--ink);cursor:pointer}.catalogue-page-button.is-active{background:var(--plum);color:#fff;border-color:var(--plum)}
.recently-viewed-section{max-width:var(--max);margin:clamp(70px,8vw,120px) auto 0;padding-top:28px;border-top:1px solid var(--line)}.recently-viewed-section h2{margin:0 0 22px;font-size:clamp(1.35rem,2vw,2rem);font-weight:400;color:var(--plum)}.recently-viewed-row{display:grid;grid-template-columns:repeat(6,minmax(0,1fr));gap:14px}.recent-product{text-decoration:none;color:inherit;min-width:0}.recent-product img{width:100%;aspect-ratio:1/1;object-fit:cover;display:block;background:#f3efe9}.recent-product span{display:block;margin-top:9px;font-size:.82rem;line-height:1.35;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden}.recent-product strong{display:block;margin-top:5px;color:var(--plum);font-size:.8rem;font-weight:500}
.v45-origin-hero{display:grid;gap:16px}.v45-origin-labels{display:grid;grid-template-columns:repeat(3,1fr);text-align:center;gap:8px;color:var(--plum);font-size:clamp(.88rem,1.25vw,1.08rem);letter-spacing:.04em}.v45-origin-labels [data-lang]{display:none}html[lang="en-GB"] .v45-origin-labels [data-lang="en"],html[lang="zh-CN"] .v45-origin-labels [data-lang="zh"],html[lang="fr-FR"] .v45-origin-labels [data-lang="fr"]{display:block}
@media(max-width:850px){.catalogue-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.recently-viewed-row{display:flex;overflow-x:auto;scroll-snap-type:x mandatory;padding-bottom:8px}.recent-product{flex:0 0 42%;scroll-snap-align:start}}
@media(max-width:560px){.catalogue-grid{grid-template-columns:repeat(2,minmax(0,1fr))!important;gap:12px!important}.product-tile-copy{padding-top:9px}.product-tile-copy h2{font-size:.86rem}.product-tile-description{display:none}.product-tile-price{font-size:.82rem}.recent-product{flex-basis:58%}}

/* V46 — Blue-sapphire origin display: each gemstone and its translated origin
   remain one visual unit; transparent cut-outs remove the old white strip. */
.v46-origin-hero{
  width:100%;
  min-width:0;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:clamp(18px,3vw,40px);
  background:transparent;
}
.v46-origin-grid{
  width:min(100%,980px);
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:clamp(10px,2vw,24px);
  align-items:start;
}
.v46-origin-item{
  margin:0;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:clamp(4px,.7vw,8px);
}
.v46-origin-image{
  width:100%;
  aspect-ratio:1/1;
  display:grid;
  place-items:center;
  overflow:hidden;
  background:transparent;
}
.v46-origin-image img{
  width:100%;
  height:100%;
  display:block;
  object-fit:contain;
  object-position:center;
}
.v46-origin-item figcaption{
  margin:0;
  min-height:1.5em;
  color:var(--plum);
  text-align:center;
  font-family:var(--serif);
  font-size:clamp(.92rem,1.25vw,1.12rem);
  font-weight:600;
  letter-spacing:.025em;
  line-height:1.25;
}
.v46-origin-item figcaption [data-lang]{display:none}
html[lang="en-GB"] .v46-origin-item figcaption [data-lang="en"],
html[lang="zh-CN"] .v46-origin-item figcaption [data-lang="zh"],
html[lang="fr-FR"] .v46-origin-item figcaption [data-lang="fr"]{display:inline}
@media (max-width:680px){
  .v46-origin-hero{padding:14px 8px 20px}
  .v46-origin-grid{gap:4px}
  .v46-origin-item{gap:2px}
  .v46-origin-item figcaption{font-size:clamp(.72rem,3vw,.9rem);letter-spacing:0}
}
