:root {
  --ink: #080808;
  --paper: #f0eee9;
  --line: rgba(240, 238, 233, 0.22);
  --muted: rgba(240, 238, 233, 0.66);
  --accent: #c9b797;
  --serif: "PP Eiko", "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: "PP Eiko", "Times New Roman", serif;
}

@font-face {
  font-family: "PP Eiko";
  src: url('./assets/fonts/ppeiko-thin.otf') format('opentype');
  font-style: normal;
  font-weight: 100;
  font-display: swap;
}
@font-face {
  font-family: "PP Eiko";
  src: url('./assets/fonts/ppeiko-medium.otf') format('opentype');
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}
@font-face {
  font-family: "PP Eiko";
  src: url('./assets/fonts/ppeiko-heavy.otf') format('opentype');
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 500;
  font-synthesis: none;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
::selection { background: var(--paper); color: var(--ink); }

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: var(--paper);
  color: var(--ink);
  transition: transform 1.05s cubic-bezier(.78,0,.18,1);
}
.loader.is-finished { transform: translateY(-102%); }
.loader-logo { width: clamp(12rem, 27vw, 24rem); height: auto; }
.loader-line { position: absolute; left: 4vw; right: 4vw; bottom: 4.4rem; height: 1px; background: #c9c5bc; }
.loader-line span { display: block; height: 100%; width: 0; background: var(--ink); }
.loader-count { position: absolute; right: 4vw; bottom: 1.8rem; font-size: .72rem; letter-spacing: .14em; }

.cursor-glow {
  position: fixed;
  left: 0; top: 0;
  width: 20rem; height: 20rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,183,151,.1), transparent 68%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 8;
  opacity: 0;
  transition: opacity .3s ease;
}
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 2px; z-index: 30; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--accent); }

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.65rem 2.2rem;
  border-bottom: 1px solid var(--line);
  text-transform: uppercase;
}
.wordmark { display: block; width: 7.8rem; }
.wordmark img { display: block; width: 100%; height: auto; transition: filter .3s ease; }

.site-header nav { display: flex; gap: 2.4rem; font-size: .7rem; letter-spacing: .16em; }
.site-header nav a, .footer-bottom a { position: relative; }
.site-header nav a::after, .footer-bottom a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -.35rem; height: 1px; background: currentColor; transition: right .4s ease;
}
.site-header nav a:hover::after, .footer-bottom a:hover::after { right: 0; }
.menu-button { display: none; justify-self: end; color: inherit; background: none; border: 0; padding: .5rem 0; text-transform: uppercase; letter-spacing: .12em; }
.mobile-menu { display: none; }

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 8rem 2.2rem 2.2rem;
  isolation: isolate;
}
.hero-image-wrap { position: absolute; inset: -5%; z-index: -2; will-change: transform; }
.hero-image { width: 100%; height: 110%; object-fit: cover; object-position: 58% 46%; filter: saturate(.8) contrast(1.03); }
.hero-shade {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.08) 55%, rgba(0,0,0,.2) 100%), linear-gradient(0deg, rgba(0,0,0,.68), transparent 45%);
}
.hero-kicker { position: absolute; top: 7.7rem; left: 2.2rem; font-size: .67rem; text-transform: uppercase; letter-spacing: .19em; }
.hero-title { margin: 0 0 2.2rem; font: 100 clamp(4.4rem, 11vw, 10.8rem)/.8 var(--serif); letter-spacing: -.045em; }
.title-line { display: block; overflow: hidden; padding-bottom: .12em; }
.title-line > span { display: block; transform: translateY(115%); }
.title-line-right { padding-left: 18vw; font-style: normal; }
.hero-copy { position: absolute; left: 2.2rem; bottom: 2rem; width: min(20rem, 42vw); margin: 0; font-size: .8rem; line-height: 1.55; color: var(--muted); }
.edition { position: absolute; right: 2.2rem; bottom: 2rem; text-align: right; font-size: .62rem; line-height: 1.55; letter-spacing: .14em; text-transform: uppercase; }
.orbit-link {
  position: absolute; right: 8vw; top: 26%; width: 8.5rem; height: 8.5rem; border: 1px solid rgba(255,255,255,.6); border-radius: 50%; display: grid; place-items: center; text-align: center; text-transform: uppercase; font-size: .62rem; line-height: 1.45; letter-spacing: .14em; backdrop-filter: blur(6px); transition: background .4s, color .4s, transform .4s;
}
.orbit-link > .brand-asset { position: absolute; width: 1.3rem; bottom: .82rem; transition: transform .6s ease, filter .4s ease; }
.orbit-link:hover { background: rgba(255,255,255,.12); color: var(--paper); transform: scale(1.06); }

.edition > .brand-asset { display: block; width: 1.15rem; margin: 0 0 .55rem auto; }

.section-index { margin: 0; font-size: .64rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); }
.manifesto { display: grid; grid-template-columns: 1fr 3fr; gap: 3rem; padding: 9rem 2.2rem 10rem; border-top: 1px solid var(--line); }
.manifesto-copy { max-width: 76rem; }
.eyebrow { margin: 0 0 2rem; color: var(--accent); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; }
.split-heading { margin: 0; font: 100 clamp(3.1rem, 7vw, 7.4rem)/.98 var(--serif); letter-spacing: -.035em; }
.split-heading .word { display: inline-block; overflow: hidden; vertical-align: top; margin-right: .12em; }
.split-heading .word span { display: inline-block; transform: translateY(110%); }
.manifesto-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: end; margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.manifesto-bottom p { max-width: 31rem; margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.7; }
.manifesto-bottom a { justify-self: end; border-bottom: 1px solid currentColor; padding-bottom: .4rem; font-size: .75rem; text-transform: uppercase; letter-spacing: .14em; }
.manifesto-bottom a span { color: var(--accent); }

.collection { position: relative; padding: 4rem 2.2rem 10rem; background: var(--paper); color: var(--ink); }
.collection-mark { position: absolute; top: 3rem; right: 2.2rem; width: 3rem; opacity: .8; animation: slow-spin 18s linear infinite; }
@keyframes slow-spin { to { transform: rotate(360deg); } }
.collection .section-index { color: rgba(8,8,8,.55); }
.collection-head { display: grid; grid-template-columns: 1fr 2fr 1fr; align-items: end; gap: 2rem; margin-bottom: 7rem; }
.collection-head h2 { margin: 0; font: 100 clamp(4rem, 8vw, 8rem)/.9 var(--serif); letter-spacing: -.035em; }
.collection-head > p:last-child { margin: 0; justify-self: end; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.look { display: grid; grid-template-columns: 2.2fr 1fr; gap: 2rem; margin-bottom: 9rem; align-items: end; }
.look-two { grid-template-columns: 1fr 1.45fr; width: 76%; margin-left: auto; }
.look-two .look-image { grid-column: 2; }
.look-two .look-meta { grid-row: 1; grid-column: 1; }
.look-image { min-height: 72vh; background-image: url('./assets/diellez-hero.png'); background-size: 115%; background-repeat: no-repeat; filter: grayscale(.12); will-change: background-position; }
.image-crop-top { background-position: 70% 9%; }
.image-crop-detail { min-height: 62vh; background-size: 190%; background-position: 59% 25%; }
.look-meta { padding-bottom: 1rem; }
.look-meta span { font-size: .63rem; letter-spacing: .15em; }
.look-meta h3 { margin: .7rem 0 .3rem; font: 100 clamp(2.5rem, 5vw, 5.6rem)/1 var(--serif); }
.look-meta p { margin: 0; font-size: .8rem; letter-spacing: .06em; }

.custom { overflow: hidden; padding: 6rem 0 10rem; }
.custom-track { display: flex; width: max-content; color: transparent; -webkit-text-stroke: 1px rgba(240,238,233,.35); font: 100 clamp(6rem, 15vw, 15rem)/1 var(--serif); white-space: nowrap; animation: marquee 22s linear infinite; }
@keyframes marquee { to { transform: translateX(-50%); } }
.custom-content { width: min(68rem, calc(100% - 4.4rem)); margin: 7rem auto 0; }
.custom-content .section-index { margin-bottom: 2rem; }
.custom-content > p:last-child { width: min(32rem, 100%); margin: 3rem 0 0 auto; color: var(--muted); line-height: 1.7; }

footer { min-height: 86vh; display: flex; flex-direction: column; justify-content: space-between; padding: 3rem 2.2rem 2rem; background: var(--accent); color: var(--ink); }
footer .section-index { color: rgba(8,8,8,.55); }
.footer-top { display: flex; justify-content: space-between; align-items: flex-start; }
.footer-top > .brand-asset { width: clamp(7.5rem, 12vw, 11rem); height: auto; }
.footer-kicker { margin: auto 0 1rem; font-size: .72rem; text-transform: uppercase; letter-spacing: .16em; }
.footer-title { display: block; width: fit-content; font: 100 clamp(5rem, 15vw, 14rem)/.92 var(--serif); letter-spacing: -.04em; }
.footer-title::after { content: "↗"; display: inline-block; margin-left: .2em; font: normal 300 .28em/1 var(--sans); vertical-align: top; transition: transform .4s; }
.footer-title:hover::after { transform: translate(.25em,-.25em); }
.footer-bottom { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(8,8,8,.3); font-size: .68rem; text-transform: uppercase; letter-spacing: .11em; }

.reveal { opacity: 0; transform: translateY(1.5rem); transition: opacity .8s ease, transform .8s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  .cursor-glow { display: none; }
  .site-header { grid-template-columns: 1fr auto; padding: 1.35rem 1.1rem; }
  .wordmark { width: 6.7rem; }
  .site-header nav { display: none; }
  .menu-button { display: block; font-size: .65rem; }
  .mobile-menu { position: fixed; inset: 0; z-index: 19; background: var(--paper); color: var(--ink); padding: 8rem 1.1rem 2rem; flex-direction: column; gap: .5rem; transform: translateY(-102%); transition: transform .7s cubic-bezier(.78,0,.18,1); }
  .mobile-menu.is-open { display: flex; transform: translateY(0); }
  .mobile-menu a { font: 400 3.4rem/1.15 var(--serif); border-bottom: 1px solid rgba(0,0,0,.2); padding: .45rem 0; }
  .hero { padding: 7rem 1.1rem 1.3rem; min-height: 100svh; }
  .hero-image-wrap { inset: -3%; }
  .hero-image { object-position: 61% center; }
  .hero-shade { background: linear-gradient(0deg, rgba(0,0,0,.78), transparent 60%), linear-gradient(90deg, rgba(0,0,0,.3), transparent); }
  .hero-kicker { left: 1.1rem; top: 5.7rem; }
  .hero-title { margin-bottom: 8.3rem; font-size: clamp(3.9rem, 21vw, 6.4rem); line-height: .83; }
  .title-line-right { padding-left: 8vw; }
  .hero-copy { left: 1.1rem; bottom: 1.3rem; width: 67%; font-size: .72rem; }
  .edition { right: 1.1rem; bottom: 1.3rem; font-size: .52rem; }
  .orbit-link { right: 1.2rem; top: 23%; width: 6.8rem; height: 6.8rem; font-size: .52rem; }
  .manifesto { grid-template-columns: 1fr; padding: 6rem 1.1rem 7rem; }
  .manifesto-bottom { grid-template-columns: 1fr; gap: 2.4rem; }
  .manifesto-bottom a { justify-self: start; }
  .collection { padding: 3rem 1.1rem 6rem; }
  .collection-mark { top: 2.2rem; right: 1.1rem; width: 2.4rem; }
  .collection-head { grid-template-columns: 1fr; margin-bottom: 4rem; }
  .collection-head > p:last-child { justify-self: start; }
  .look, .look-two { width: 100%; grid-template-columns: 1fr; margin: 0 0 6rem; }
  .look-two .look-image, .look-two .look-meta { grid-column: 1; grid-row: auto; }
  .look-image, .image-crop-detail { min-height: 67vh; }
  .custom { padding: 4rem 0 7rem; }
  .custom-content { width: calc(100% - 2.2rem); margin-top: 4.5rem; }
  .footer-title { font-size: clamp(4.6rem, 22vw, 7.5rem); }
  .footer-bottom { grid-template-columns: 1fr 1fr; row-gap: 1.4rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .title-line > span, .split-heading .word span { transform: none !important; }
  .loader { display: none; }
}

/* Original brand assets, with clear space and the supplied PP Eiko weights. */
button { font-family: inherit; font-weight: 500; font-synthesis: none; }
.site-header { padding: 1.8rem 3rem; column-gap: 2rem; }
.wordmark { grid-column: 2; grid-row: 1; width: clamp(10rem, 13vw, 13rem); }
.site-header nav { grid-column: 1; grid-row: 1; font-size: .875rem; letter-spacing: .07em; gap: 1.7rem; }
.loader-logo { width: clamp(16rem, 32vw, 28rem); }
.hero-kicker { top: 9rem; }
.hero-title { line-height: 1.04; letter-spacing: -.025em; margin-bottom: 6.5rem; font-size: clamp(4rem, 9.6vw, 10rem); }
.title-line { padding-bottom: .08em; }
.hero-copy { font-size: 1rem; line-height: 1.65; }
.hero-kicker, .eyebrow, .section-index, .footer-kicker { font-size: .875rem; letter-spacing: .09em; }
.edition, .look-meta span, .loader-count { font-size: .8125rem; }
.orbit-link { font-size: .875rem; letter-spacing: .025em; width: 9.5rem; height: 9.5rem; }
.manifesto-bottom a, .collection-head > p:last-child { font-size: .875rem; letter-spacing: .07em; }
.look-meta p { font-size: 1rem; }
.split-heading { line-height: 1.12; letter-spacing: -.02em; }
.collection-head h2 { line-height: 1.08; }
.collection-mark { animation: none; }
.footer-top > .brand-asset { width: clamp(10rem, 16vw, 15rem); }
.footer-title { line-height: 1.12; }
.footer-bottom { font-size: .875rem; letter-spacing: .025em; }
@media (max-width: 960px) {
  .site-header { grid-template-columns: 1fr auto; padding: 1.2rem 1.1rem; gap: 1rem; }
  .wordmark { grid-column: 1; width: 9rem; }
  .menu-button { grid-column: 2; grid-row: 1; font-size: .875rem; }
  .hero-kicker { top: 6.8rem; }
  .hero-title { font-size: clamp(2.75rem, 13vw, 6rem); line-height: 1.08; margin-bottom: 10rem; }
  .title-line-right { padding-left: 3vw; }
  .hero-copy { font-size: 1rem; width: 65%; }
  .edition { font-size: .75rem; max-width: 27%; }
  .orbit-link { width: 7.4rem; height: 7.4rem; font-size: .8125rem; }
  .footer-title { font-size: clamp(3rem, 17vw, 7rem); }
  .footer-bottom { grid-template-columns: 1fr; gap: 1rem; }
}

/* Display the supplied PNG bytes unchanged; frame only their transparent margins. */
.brand-asset { display: block; position: relative; overflow: hidden; flex-shrink: 0; }
.logo-black, .logo-white { aspect-ratio: 301 / 92; }
.mark-black, .mark-white { aspect-ratio: 1; }
.brand-asset > img { position: absolute; max-width: none; height: auto; }
.logo-black > img, .logo-white > img { width: 198.0066445%; top: -407.6086957%; }
.logo-black > img { left: -48.8372093%; }
.logo-white > img { left: -49.1694352%; }
.mark-black > img, .mark-white > img { width: 172.2543353%; left: -36.1271676%; top: -71.6763006%; }
.orbit-link > .brand-asset, .collection-mark { position: absolute; }

/* The original sun emblem anchors the story behind the house name. */
.hero { display: flex; flex-direction: column; align-items: stretch; padding-top: 9rem; gap: 2rem; }
.hero-signature { align-self: flex-start; display: flex; flex-direction: column; align-items: center; gap: 1rem; color: #fff; }
.hero-sun { width: clamp(7rem, 10vw, 10rem); }
.hero-signature p { margin: 0; font-size: clamp(1.5rem, 2.4vw, 2.25rem); font-weight: 100; line-height: 1.2; }
.hero-origin { font-size: .875rem; letter-spacing: .09em; text-transform: uppercase; }
.hero .hero-title { margin: auto 0 0; padding-top: 1rem; }
.hero .hero-copy { position: static; width: min(30rem, 68%); color: rgba(255,255,255,.85); }
.hero .title-line > span { transform: none; }
@media (max-width: 960px) {
  .hero { padding-top: 7rem; gap: 1.5rem; }
  .hero-sun { width: 6.5rem; }
  .hero-signature { gap: .75rem; }
  .hero-signature p { font-size: 1.5rem; }
  .hero-origin { font-size: .75rem; }
  .hero .hero-title { font-size: clamp(2.5rem, 12.5vw, 6rem); margin-bottom: 0; }
  .hero .hero-copy { width: 70%; }
  .hero .orbit-link { top: 8rem; }
}
.atelier-signature { display: flex; flex-direction: column; align-items: flex-start; }
.sun-signature { margin-top: clamp(3rem, 6vw, 6rem); }
.atelier-sun { width: clamp(7rem, 12vw, 12rem); }
.sun-signature > p { margin: 2rem 0 0; font-size: clamp(1.1rem, 1.7vw, 1.6rem); font-weight: 100; }
.atelier-story { display: grid; gap: 1.25rem; }
.atelier-story em { font-style: normal; color: var(--paper); }
.manifesto-bottom { grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 2rem; }
.footer-signature { display: flex; flex-direction: column; align-items: center; gap: 1.3rem; }
.footer-signature > .logo-black { width: clamp(10rem, 16vw, 15rem); }
.footer-signature > .footer-sun { width: 3rem; }
.footer-signature > p { margin: 0; font-size: 1rem; }
@media (max-width: 960px) {
  .atelier-signature { gap: 2.5rem; }
  .sun-signature { margin-top: 0; display: flex; align-items: center; gap: 1.5rem; }
  .atelier-sun { width: 5rem; }
  .sun-signature > p { margin: 0; font-size: 1.5rem; }
  .manifesto-bottom { grid-template-columns: 1fr; gap: 2.4rem; }
  .footer-signature { gap: 1rem; }
  .footer-signature > .footer-sun { width: 2.5rem; }
  .footer-top { gap: 1.5rem; flex-wrap: wrap; }
  .footer-kicker { padding-top: 3rem; }
}

/* Scroll-led fashion sequence, using the original house assets. */
.hero-journey { position: relative; }
.hero { background: transparent; }
.hero-sun { transform: rotate(var(--sun-turn, 0deg)); }
.hero-image-wrap { transform: translateY(var(--hero-pan, 0px)) scale(var(--hero-zoom, 1)) !important; transform-origin: 60% 45%; }
.collection { background: #0d0c0b; color: var(--paper); }
.collection .section-index { color: var(--muted); }
.collection-mark { filter: invert(1); }
.collection-window { width: 100%; }
.collection-rail { width: 100%; }
.look-image { box-shadow: 0 1.5rem 4rem #0008; }
@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
  .motion-ready .hero-journey { height: 175svh; }
  .motion-ready .hero { position: sticky; top: 0; height: 100svh; min-height: 48rem; }
  .motion-ready .hero-title { transform: translateY(var(--title-lift, 0px)); }
  .motion-ready .collection { height: 220svh; padding-top: 4rem; padding-bottom: 0; }
  .motion-ready .collection-head { margin-bottom: 2rem; }
  .motion-ready .collection-window { position: sticky; top: 2rem; overflow: hidden; perspective: 1400px; }
  .motion-ready .collection-rail { display: flex; gap: 5vw; width: max-content; transform: translateX(var(--gallery-x, 0px)); }
  .motion-ready .look, .motion-ready .look-two { width: 86vw; height: 82svh; margin: 0; grid-template-columns: 2fr 1fr; gap: 2rem; align-items: center; }
  .motion-ready .look-image, .motion-ready .image-crop-detail { width: 100%; height: 76svh; min-height: 0; transform: rotateY(var(--panel-turn, 0deg)); transform-origin: center; }
  .motion-ready .look-two .look-image { grid-column: 1; grid-row: 1; }
  .motion-ready .look-two .look-meta { grid-column: 2; grid-row: 1; }
}
@media (max-width: 960px) {
  .hero-image-wrap { transform-origin: 60% 40%; }
  .collection { padding-top: 4rem; }
  .look-image { border: 1px solid var(--line); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-image-wrap, .hero-sun { transform: none !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Real collection media, framed to preserve complete silhouettes. */
.hero-image { object-position: 50% 48%; }
.real-look { background: #151310; display: grid; place-items: center; }
.real-look img { width: 100%; height: 100%; object-fit: contain; max-height: inherit; }
.look-source { display: inline-block; font-size: .875rem; margin-top: 1rem; padding: .5rem 0; border-bottom: 1px solid currentColor; }
.look-source:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
@media (min-width: 961px) and (prefers-reduced-motion: no-preference) {
 .motion-ready .collection { height: calc(var(--look-count) * 95svh); }
 .motion-ready .real-look { height: 76svh; }
}
@media (max-width: 960px), (prefers-reduced-motion: reduce) {
 .real-look { height: auto; min-height: 0; aspect-ratio: 3 / 4; }
 .real-look img { max-height: 85svh; }
}

/* Full-length bridal portrait, separated from the copy for clear garment detail. */
.hero .hero-image-wrap { inset: 7.5rem 2rem 2rem auto; width: 48%; z-index: -1; transform: none !important; }
.hero .hero-image { height: 100%; width: 100%; object-fit: contain; object-position: center; filter: none; }
.hero .hero-shade { display: none; }
.hero .hero-title { font-size: clamp(3rem,5.3vw,6rem); max-width: 49%; }
.hero .title-line-right { padding-left: 0; }
.hero .hero-copy { width: 43%; }
.hero .orbit-link { position: static; align-self: flex-start; width: auto; height: auto; border-radius: 0; border: 0; border-bottom: 1px solid var(--line); padding: .6rem 0; backdrop-filter: none; }
.hero .orbit-link > .brand-asset { display: none; }
.hero .edition { right: auto; left: 2.2rem; bottom: 1rem; position: static; align-self: flex-start; text-align: left; }
@media (max-width:960px) {
 .hero { padding-top:6.5rem; gap:1.4rem; }
 .hero .hero-signature { order:0; display:grid; grid-template-columns:auto 1fr; column-gap:1rem; text-align:left; }
 .hero .hero-sun { width:3.5rem; grid-row:1 / 3; }
 .hero .hero-signature p { grid-column:2; }
 .hero .hero-origin { grid-column:2; font-size:.75rem; }
 .hero .hero-image-wrap { order:1; position:relative; inset:auto; width:100%; height:68svh; min-height:24rem; }
 .hero .hero-title { order:2; max-width:100%; font-size:clamp(2.7rem,12vw,5rem); padding-top:0; }
 .hero .hero-copy { order:3; width:100%; }
 .hero .orbit-link { order:4; }
 .hero .edition { order:5; }
}
@media (min-width:961px) {
 .hero .hero-image-wrap { height:calc(100svh - 9.5rem); bottom:auto; }
}

/* Keep scroll measurement in normal flow, outside the sticky viewport. */
.collection-anchor { height:0; pointer-events:none; }
.real-look { display:block; overflow:hidden; min-width:0; min-height:0; }
.real-look img { display:block; width:100%; height:100%; min-width:0; min-height:0; max-height:100%; object-fit:contain; }
.look-meta { min-width:0; }
@media (min-width:961px) and (prefers-reduced-motion:no-preference) {
 .motion-ready .collection-window { isolation:isolate; }
 .motion-ready .look { flex:0 0 86vw; min-width:0; grid-template-columns:minmax(0,2fr) minmax(0,1fr); overflow:hidden; }
 .motion-ready .real-look { height:76svh; max-height:76svh; }
 .motion-ready .look-meta h3 { font-size:clamp(2rem,4vw,4.5rem); overflow-wrap:break-word; }
}

/* Made-to-measure request atelier */
.make-dress { display:block; margin:1.5rem 0 1rem; padding:.85rem 1.2rem; background:var(--paper); color:var(--ink); border:1px solid var(--paper); font:500 1rem var(--serif); cursor:pointer; }
.dress-dialog { position:fixed; inset:0; margin:auto; width:min(1060px,94vw); max-height:92dvh; padding:0; border:1px solid #514a40; background:#10100f; color:var(--paper); overflow:auto; }
.dress-dialog::backdrop { background:rgba(0,0,0,.82); }
body:has(.dress-dialog[open]) { overflow:hidden; }
.dress-layout { display:grid; grid-template-columns: .85fr 1.15fr; }
.dress-preview { padding:2rem; background:#1b1916; }
.dress-preview img { display:block; width:100%; height:48dvh; object-fit:contain; }
.dress-preview p { margin:1.5rem 0 .8rem; font-size:.8rem; letter-spacing:.08em; }
.dress-preview h2 { font:100 clamp(2rem,4vw,3.5rem)/1.15 var(--serif); margin:0; }
.dress-close { position:absolute; right:.7rem; top:.5rem; width:44px; height:44px; z-index:1; background:#10100f; color:var(--paper); border:1px solid #736955; font-size:1.8rem; cursor:pointer; }
#dress-form { padding:3.5rem 2rem 2rem; min-width:0; font-size:1rem; line-height:1.55; }
#dress-form h3 { font:100 2rem/1.2 var(--serif); margin:1.2rem 0; }
#dress-form p { margin:.8rem 0; }
.dress-progress { color:var(--accent); font-size:.875rem; }
.size-options { display:flex; flex-wrap:wrap; gap:.6rem; padding:0; border:0; margin:1.5rem 0; }
.size-options legend { margin-bottom:.7rem; }
.size-options label { position:relative; cursor:pointer; }
.size-options input { position:absolute; opacity:0; width:1px; height:1px; }
.size-options span { display:block; border:1px solid #756e61; padding:.65rem 1rem; }
.size-options input:checked + span { background:var(--paper); color:var(--ink); }
.size-options input:focus-visible + span { outline:2px solid var(--accent); outline-offset:3px; }
.measurement-grid { display:grid; grid-template-columns:1fr 1fr; gap:1rem; }
.dress-fields { display:grid; gap:1rem; }
#dress-form label { font-size:1rem; }
#dress-form input:not([type=radio]), #dress-form textarea { display:block; width:100%; min-width:0; margin-top:.4rem; padding:.7rem; background:#20201e; color:var(--paper); border:1px solid #756e61; font:400 1rem/1.5 var(--serif); border-radius:0; color-scheme:dark; }
.measurement-help { margin-top:1.25rem; font-size:.95rem; }
.measurement-help summary { cursor:pointer; text-decoration:underline; text-underline-offset:5px; }
.measurement-help ol { padding-left:1.3rem; }
.measurement-help li { margin-bottom:.6rem; }
.dress-navigation,.dress-send { display:flex; gap:.75rem; flex-wrap:wrap; margin-top:1.5rem; }
#dress-form button { padding:.8rem 1.2rem; min-height:44px; border:1px solid var(--paper); background:var(--paper); color:var(--ink); font:500 1rem var(--serif); cursor:pointer; }
#dress-form #dress-back { background:transparent; color:var(--paper); }
#dress-form [hidden] { display:none !important; }
#dress-summary { white-space:pre-wrap; overflow-wrap:anywhere; border-block:1px solid #514a40; padding:1rem 0; }
.dress-recipient { font-size:.875rem; overflow-wrap:anywhere; color:var(--accent); }
@media(max-width:700px) { .dress-dialog { width:100%; max-height:100dvh; height:100dvh; border:0; } .dress-layout { grid-template-columns:1fr; } .dress-preview { display:grid; grid-template-columns:90px 1fr; gap:.5rem 1rem; padding:1rem 3.5rem 1rem 1rem; } .dress-preview img { grid-row:1/3; height:125px; } .dress-preview p { margin:.5rem 0 0; font-size:.75rem; } .dress-preview h2 { font-size:1.8rem; } #dress-form { padding:1rem 1.25rem 2rem; } }
