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