/* Roseline Rose Couture — Royal Choice
   Rework: gallery-first, minimal words, quiet luxury.
*/

:root {
  --bg:        #f0d3cd;   /* powder rose */
  --bg-soft:   #e7c2ba;
  --paper:     #fffdfb;
  --ink:       #241a18;
  --ink-soft:  #5b4741;
  --ink-mute:  #8d746c;
  --rule:      #dcbdb5;
  --accent:    #8a4b34;
  --accent-deep: #6d3826;
  --frame:     #fffdfb;   /* photo border — one white */
  --frame-dark: #fffdfb;  /* look cards — same white */
  --radius:    14px;

  --display: "Italiana", serif;
  --sans:    "Jost", "Helvetica Neue", Arial, sans-serif;

  --maxw: 1440px;
  --gutter: clamp(18px, 4vw, 64px);

  /* one type scale — used everywhere */
  --t-micro: 10px;   /* eyebrows, captions, nav */
  --t-small: 11.5px; /* specs, meta */
  --t-body:  13.5px; /* paragraphs */
  --t-lead:  15px;   /* intro paragraphs */
  --d-1: clamp(44px, 7vw, 104px);  /* page titles */
  --d-2: clamp(34px, 4.4vw, 62px); /* section titles */
  --d-3: clamp(22px, 2.2vw, 30px); /* card titles */
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  /* pink at the top, bleeding to white further down */
  background-color: #ffffff;
  background-image: linear-gradient(
    to bottom,
    #f0cfc8 0,
    #f0cfc8 34vh,
    #f6e0da 62vh,
    #fbeeea 86vh,
    #ffffff 108vh,
    #ffffff 100%
  );
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-attachment: scroll;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* — Grain over the ground — */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 150;
  pointer-events: none;
  opacity: 0.42;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/><feColorMatrix type='saturate' values='0'/></filter><rect width='220' height='220' filter='url(%23n)' opacity='0.5'/></svg>");
  background-size: 220px 220px;
}
@media (prefers-reduced-motion: no-preference) { }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--gutter); }

/* — White rounded frame around photography — */
.look .ph,
.detail-row figure,
.pillar img,
.split img,
.dress .stage,
.dress .thumbs button,
.fabric-row .fab-img,
.step img,
.frame.full,
.frame-pair img,
.overlap .img-main,
.overlap .img-off,
.hero-full,
.banner {
  background: var(--frame);
  padding: 10px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(214,160,150,0.18);
}
.look .ph img,
.detail-row img,
.pillar img,
.split img,
.dress .stage img,
.dress .thumbs img,
.fabric-row img,
.step img,
.frame.full img,
.frame-pair img,
.overlap .img-main img,
.overlap .img-off img,
.hero-full img,
.banner img {
  border-radius: calc(var(--radius) - 6px);
}
/* elements that are themselves the image need inner padding removed */
.pillar img, .split img, .step img, .frame-pair img {
  padding: 10px;
  background: var(--frame);
}
/* look cards — same pink frame */
.look .ph {
  background: var(--frame);
  box-shadow: 0 2px 12px rgba(214,160,150,0.18);
}
/* the hero frame — same pink as every other frame */
.hero-full {
  background: var(--frame);
  box-shadow: 0 2px 12px rgba(214,160,150,0.18);
}
.dress .thumbs button { padding: 5px; border-radius: 10px; background: var(--frame); }
.dress .thumbs img { border-radius: 6px; }
.detail-row figure { padding: 10px; }
.detail-row figcaption { margin-top: 10px; }
/* overlay text sits inside the frame */
.hero-full .scrim, .banner .scrim { border-radius: calc(var(--radius) - 6px); inset: 10px; }
.overlap .img-off { border: 0; }

/* — Type — */
.eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.02;
  margin: 0;
}

/* — Header — */
.topbar {
  position: relative;
  z-index: 60;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--rule);
}
.topbar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.logo {
  font-family: var(--display);
  font-size: 21px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.monogram { width: 48px; height: 48px; flex: none; display: block; }

.site-footer .monogram { width: 44px; height: 44px; }
.lb-mark {
  position: absolute;
  top: 24px; left: 26px;
  width: 30px; height: 30px;
  opacity: 0.75;
  pointer-events: none;
}
.lb-mark path { stroke: #fff; }

/* — Reveal on scroll — */
.reveal {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 600ms cubic-bezier(.22,.61,.36,1), transform 600ms cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.menu { display: flex; gap: clamp(18px, 3vw, 40px); }
.menu a {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-soft);
  padding: 4px 0;
  position: relative;
}
.menu a:hover { color: var(--ink); }
.menu a { white-space: nowrap; }
/* seven items: tighten before they wrap */
@media (max-width: 1240px) {
  .monogram { width: 44px; height: 44px; }
  .menu { gap: clamp(12px, 1.8vw, 24px); }
  .menu a { font-size: 10px; letter-spacing: 0.18em; }
}

/* — Gold shimmer (Partner) — */
@keyframes goldShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
.gold {
  background-image: linear-gradient(
    100deg,
    #8a5c17 0%,
    #a9761b 14%,
    #c99a2e 26%,
    #e8c86a 34%,
    #cca23a 42%,
    #a9761b 56%,
    #8a5c17 70%,
    #a9761b 86%,
    #8a5c17 100%
  );
  background-size: 200% auto;
  background-repeat: repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: goldShimmer 5.5s linear infinite;
}
.menu a.gold { font-weight: 500; }
.menu a.gold:hover,
.menu a.gold.active { color: transparent; filter: brightness(1.12); }
@media (prefers-reduced-motion: reduce) {
  .gold { animation: none; background-position: 30% 50%; }
}
@supports not ((-webkit-background-clip: text) or (background-clip: text)) {
  .gold { color: #b8860b; -webkit-text-fill-color: #b8860b; background-image: none; animation: none; }
}
/* — Long-form writing (The Story) — */
.longform {
  max-width: 660px;
  margin: 0 auto;
  text-align: left;
}
.longform .eyebrow { text-align: center; margin-bottom: 16px; }
.longform h2 {
  text-align: center;
  font-size: clamp(30px, 3.6vw, 50px);
  line-height: 1.1;
  margin: 0 0 clamp(28px, 3.4vw, 44px);
}
.longform p {
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.012em;
  color: var(--ink-soft);
  margin: 0 0 22px;
}
.longform blockquote {
  margin: clamp(30px, 4vw, 46px) 0;
  padding: 0 0 0 clamp(20px, 3vw, 34px);
  border-left: 1px solid var(--rule);
}
.longform blockquote p {
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 26px);
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
}
.longform blockquote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--sans);
  font-style: normal;
  font-size: var(--t-micro);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.longform .creed {
  margin: clamp(30px, 4vw, 46px) auto;
  text-align: center;
  font-family: var(--display);
  font-size: clamp(20px, 2.2vw, 27px);
  line-height: 1.85;
  color: var(--ink);
}
@media (max-width: 560px) {
  .longform p { font-size: 14.5px; line-height: 1.9; }
}

/* — The basket page — */
.basket {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.basket-line {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
}
.basket-line:first-child { border-top: 1px solid var(--rule); }
.bl-img {
  background: var(--frame);
  padding: 6px;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(214,160,150,0.18);
}
.bl-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 6px; }
.bl-name { font-family: var(--display); font-size: var(--d-3); line-height: 1.15; }
.bl-var, .bl-attr {
  margin-top: 6px;
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.bl-remove {
  margin-top: 14px;
  background: none;
  border: 0;
  border-bottom: 1px solid var(--ink-mute);
  padding: 0 0 2px;
  font-family: var(--sans);
  font-size: var(--t-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  cursor: pointer;
}
.bl-remove:hover { color: var(--accent); border-bottom-color: var(--accent); }
.bl-price { font-family: var(--display); font-size: var(--d-3); white-space: nowrap; }
.basket-sum {
  position: sticky;
  top: 128px;
  background: var(--paper);
  border: 1px solid var(--rule);
  padding: clamp(22px, 3vw, 34px);
}
.basket-sum .row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--display);
  font-size: var(--d-3);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}
.basket-note {
  margin: 16px 0 24px;
  font-size: var(--t-small);
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.basket-sum .btn { width: 100%; }
.basket-sum .btn.line { margin-top: 10px; }
.basket-empty { text-align: center; padding: clamp(20px, 4vw, 60px) 0; }
.basket-empty h2 { font-size: clamp(34px, 4.4vw, 62px); margin: 14px 0 0; }
.basket-empty .sub {
  margin: 16px auto 0;
  max-width: 440px;
  font-size: var(--t-body);
  color: var(--ink-soft);
}
@media (max-width: 860px) {
  .basket { grid-template-columns: 1fr; }
  .basket-sum { position: static; }
  .basket-line { grid-template-columns: 72px 1fr auto; gap: 16px; }
}

/* — Basket icon in the header — */
.cart-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 0;
  padding: 2px;
  margin-left: 2px;
  color: var(--ink-soft);
  cursor: pointer;
  line-height: 0;
  transition: color 0.25s;
}
.cart-btn:hover { color: var(--ink); }
.cart-icon { width: 21px; height: 21px; display: block; }
.cart-count {
  position: absolute;
  top: -5px; right: -8px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--accent);
  color: #fffdfb;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 16px;
  text-align: center;
}
@media (max-width: 1240px) { .cart-icon { width: 19px; height: 19px; } }
@media (max-width: 720px)  { .cart-btn { margin-left: 4px; } }

/* — Add to basket, on the dress pages — */
.buy {
  margin-top: 28px;
  padding-top: 26px;
  border-top: 1px solid var(--rule);
}
.buy-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}
.buy-field { display: block; }
.buy-field > span {
  display: block;
  font-size: var(--t-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.buy-field select,
.buy-field input {
  width: 100%;
  font-family: var(--sans);
  font-size: var(--t-body);
  font-weight: 300;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--rule);
  border-radius: 0;
  padding: 13px 12px;
  appearance: none;
  -webkit-appearance: none;
}
.buy-field select:focus,
.buy-field input:focus { outline: none; border-color: var(--ink-soft); }
.buy .btn { width: 100%; }
.buy .btn[disabled] { opacity: 0.5; cursor: default; }
.buy .btn.is-added { background: var(--accent); }
.buy-note {
  margin: 14px 0 0;
  font-size: var(--t-small);
  letter-spacing: 0.06em;
  color: var(--accent);
}
@media (max-width: 560px) { .buy-row { grid-template-columns: 1fr; } }

.menu a.active { color: var(--ink); }
.menu a.active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 1px; background: var(--ink);
}

/* — Buttons — */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px;
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  transition: background 0.25s;
}
.btn:hover { background: var(--ink-soft); }
.btn.line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn.line:hover { background: var(--ink); color: var(--bg); }
.btn.light { background: var(--paper); color: var(--ink); }
.btn.light:hover { background: #fff; }

/* — Hero: whole photo, text laid over it — */
.hero-photo {
  position: relative;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}
.hero-photo > img {
  width: 100%;
  height: auto;
  max-height: calc(100svh - 118px);
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.hero-photo .scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,8,6,0.30) 0%, rgba(10,8,6,0.05) 26%, transparent 46%),
    linear-gradient(to top, rgba(10,8,6,0.52) 0%, rgba(10,8,6,0.10) 30%, transparent 52%);
}
.hero-photo .overlay {
  position: absolute;
  left: 0; right: 0; bottom: clamp(20px, 5vw, 64px);
  text-align: center;
  color: #fff;
  padding: 0 var(--gutter);
  text-shadow: 0 2px 26px rgba(8,6,4,0.5);
}
.hero-photo .overlay .eyebrow { color: rgba(255,255,255,0.9); margin-bottom: 12px; }
.hero-photo .overlay h1 {
  font-size: clamp(44px, 8vw, 118px);
  color: #fff;
  line-height: 0.98;
}
.hero-photo .overlay .note {
  margin: 12px auto 22px;
  font-size: clamp(10px, 1.1vw, 13px);
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.92);
}
.hero-photo .ctas { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.btn.line.light-line { border-color: #fff; color: #fff; }
.btn.line.light-line:hover { background: #fff; color: var(--ink); }
@media (max-width: 640px) {
  .hero-photo .overlay { bottom: 14px; }
  .hero-photo .ctas .btn { padding: 12px 18px; font-size: 9.5px; letter-spacing: 0.2em; }
  .hero-photo .overlay .note { margin-bottom: 14px; }
}

/* — Split hero (full photo, no crop) — */
.hero-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 80px);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(28px, 4.5vw, 64px) var(--gutter);
}
.hero-split .txt .eyebrow { margin-bottom: 18px; }
.hero-split .txt h1 { font-size: clamp(52px, 6.4vw, 104px); }
.hero-split .txt .note {
  margin: 16px 0 30px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--ink-soft);
}
.hero-split .ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-split .img img { width: 100%; height: auto; display: block; }
@media (max-width: 960px) {
  .hero-split { grid-template-columns: 1fr; text-align: center; }
  .hero-split .ctas { justify-content: center; }
  .hero-split .txt { order: -1; }
}

/* — Framed hero — */
.hero-full {
  position: relative;
  max-width: var(--maxw);
  margin: clamp(14px, 2vw, 26px) auto 0;
  width: calc(100% - (2 * var(--gutter)));
}
.hero-full img {
  width: 100%;
  height: min(92vh, 980px);
  object-fit: cover;
  object-position: center 72%;
}
.hero-full .scrim {
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 6px);
  background: linear-gradient(to top, rgba(16,12,10,0.60) 0%, rgba(16,12,10,0.26) 40%, rgba(16,12,10,0.04) 68%, transparent 84%);
}
.hero-full .overlay {
  position: absolute;
  left: 10px; right: 10px; bottom: clamp(36px, 7vh, 90px);
  text-align: center;
  color: #fff;
  padding: 0 var(--gutter);
}
.hero-full .overlay .eyebrow { color: rgba(255,255,255,0.85); margin-bottom: 18px; }
.hero-full .overlay h1 {
  font-size: clamp(52px, 9vw, 128px);
  color: #fff;
}
.hero-full .overlay .note {
  margin: 16px auto 8px;
  max-width: 560px;
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-align: center;
  color: rgba(255,255,255,0.92);
}
.hero-full .overlay .verses {
  margin: 0 auto 26px;
  max-width: 560px;
  font-size: 12px;
  letter-spacing: 0.14em;
  line-height: 1.85;
  text-align: center;
  color: rgba(255,255,255,0.78);
}
.hero-full .ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* the photo lands first, then the words arrive */
@keyframes heroRise {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scrimIn { from { opacity: 0; } to { opacity: 1; } }
.hero-full .scrim { animation: scrimIn 900ms ease 420ms both; }
.hero-full .overlay > * {
  opacity: 0;
  animation: heroRise 900ms cubic-bezier(.22,.61,.36,1) both;
}
.hero-full .overlay > .eyebrow { animation-delay: 620ms; }
.hero-full .overlay > h1       { animation-delay: 780ms; }
.hero-full .overlay > .note    { animation-delay: 980ms; }
.hero-full .overlay > .verses  { animation-delay: 1080ms; }
.hero-full .overlay > .ctas    { animation-delay: 1240ms; }
@media (prefers-reduced-motion: reduce) {
  .hero-full .scrim, .hero-full .overlay > * { animation: none; opacity: 1; transform: none; }
}

/* — Sections — */
.band { padding: clamp(56px, 7vw, 104px) 0; }
.band.tight { padding: clamp(40px, 5vw, 72px) 0; }
.band.soft { background: rgba(231,194,186,0.45); }
/* — Warm pink band (Royal Choice: Limited) — */
.band.blush {
  background: #f7ddd5;
  color: var(--ink);
  position: relative;
  z-index: 0;
}
/* the section above runs from white into the blush */
.band.fade-blush {
  background: linear-gradient(to bottom,
    rgba(247, 221, 213, 0) 0%,
    rgba(247, 221, 213, 0.18) 45%,
    rgba(247, 221, 213, 0.62) 78%,
    #f7ddd5 100%);
}
/* the divider between them carries the same pink so the run-in is unbroken */
.rule.on-blush {
  background: #f7ddd5;
  max-width: none;
  margin: 0;
  padding: clamp(10px, 1.4vw, 20px) 0;
}
.rule.on-blush .inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.lim-note {
  margin: -6px 0 clamp(22px, 3vw, 34px);
  max-width: 460px;
  font-size: var(--t-body);
  letter-spacing: 0.05em;
  color: #5b4741;
}
.looks-grid.limited { grid-template-columns: repeat(4, 1fr); max-width: none; gap: clamp(14px, 1.6vw, 24px); }
.looks-grid.limited .variant {
  text-align: center;
  font-size: var(--t-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 6px;
}
/* on phones the Limited row becomes one swipeable row, cards the size of The looks */
@media (max-width: 900px) {
  .looks-grid.limited {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: minmax(210px, 62%);
    gap: clamp(16px, 2.4vw, 32px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 6px;
  }
  .looks-grid.limited::-webkit-scrollbar { display: none; }
  .looks-grid.limited > * { scroll-snap-align: start; }
}
.band.blush .looks-head h2,
.band.blush .txt h2,
.band.blush h2.display { color: var(--ink); }
.band.blush .looks-head .all {
  color: var(--ink-soft);
  border-bottom-color: rgba(90, 62, 54, 0.45);
}
.band.blush .looks-head .all:hover { color: var(--ink); border-bottom-color: var(--ink); }
.band.blush .eyebrow { color: #8a5f53; }
.band.blush .txt p { color: #5b4741; }
.center { text-align: center; }
.band h2.display { font-size: clamp(38px, 5vw, 72px); }
.band .sub {
  max-width: 520px;
  margin: 18px auto 0;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}
.band .cta-row { margin-top: 26px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* — Overlap feature (ARA-style) — */
.overlap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
}
.overlap .img-main img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.overlap .img-off {
  width: 68%;
  margin: -18% 0 0 auto;
  border: 10px solid var(--frame);
}
.overlap .img-off img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.overlap .txt .eyebrow { margin-bottom: 16px; }
.overlap .txt h2 { font-size: clamp(36px, 4.4vw, 62px); }
.overlap .txt p {
  max-width: 420px;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 18px 0 30px;
}

/* — Look cards / gallery grid — */
.looks-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(18px, 2.4vw, 30px);
}
.looks-head h2 { font-size: clamp(30px, 3.6vw, 52px); }
.looks-head .all {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 3px;
}
.looks-head .all:hover { color: var(--ink); border-color: var(--ink); }

.looks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 4vw, 56px) clamp(20px, 3vw, 40px);
}
.looks-grid.wide { grid-template-columns: repeat(2, 1fr); }
.look {
  cursor: pointer;
  display: block;
}
.look .ph {
  position: relative;
  overflow: hidden;
  background: var(--bg-soft);
}
.look .ph img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.look:hover .ph img { transform: scale(1.035); }
.look .ph .count {
  position: absolute;
  bottom: 12px; right: 12px;
  font-size: 9px; font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(18,15,12,0.55);
  padding: 6px 10px;
  backdrop-filter: blur(4px);
}
.look .name {
  margin-top: 14px;
  text-align: center;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.26em;
  text-transform: uppercase;
}
.look .name em { font-style: normal; color: var(--ink-mute); }
.look .price {
  margin-top: 6px;
  text-align: center;
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--ink-mute);
}
.look .variant {
  margin-top: 4px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.look .spec {
  margin: 10px auto 0;
  max-width: 300px;
  text-align: center;
  font-size: 11.5px;
  font-weight: 300;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: var(--ink-mute);
}

/* — Detail (fabric) tiles — */
.detail-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 3vw, 40px);
  margin: clamp(36px, 5vw, 72px) 0;
}
.detail-row figure { margin: 0; }
.detail-row img { width: 100%; aspect-ratio: 1/1; object-fit: cover; display: block; }
.detail-row figcaption {
  margin-top: 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 720px) {
  .detail-row { grid-template-columns: 1fr 1fr; }
  .detail-row figure:last-child { display: none; }
}

/* — Values trio — */
.values3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 72px);
  text-align: center;
}
.values3 h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.2vw, 30px);
  margin: 0 0 10px;
}
.values3 p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: var(--ink-soft);
}
.values3 .n {
  display: block;
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--accent);
  margin-bottom: 14px;
}
/* the three vows, set inside the Story column under the button */
.values3.stacked {
  grid-template-columns: 1fr;
  gap: clamp(20px, 2.4vw, 30px);
  text-align: left;
  margin-top: clamp(30px, 3.6vw, 46px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid var(--rule);
  max-width: 460px;
}
.values3.stacked .n { margin-bottom: 6px; }
.values3.stacked h3 { font-size: clamp(19px, 1.7vw, 23px); margin-bottom: 6px; }
.values3.stacked p { font-size: 12.5px; }

/* — Wide banner image — */
.banner {
  position: relative;
  max-width: var(--maxw);
  margin-left: auto; margin-right: auto;
  width: calc(100% - (2 * var(--gutter)));
}
.banner img {
  width: 100%;
  height: clamp(380px, 62vh, 680px);
  object-fit: cover;
  object-position: center 25%;
}
.banner .scrim {
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--radius) - 6px);
  background: rgba(12,10,8,0.32);
}
.banner .overlay {
  position: absolute; inset: 10px;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 20px;
  color: #fff;
  text-align: center;
  padding: 0 var(--gutter);
}
.banner .overlay .eyebrow { color: rgba(255,255,255,0.85); }
.banner .overlay h2 { font-size: clamp(34px, 5vw, 64px); color: #fff; }

/* — Page head (inner pages) — */
.page-head { padding: clamp(32px, 4.2vw, 60px) 0 clamp(14px, 2vw, 24px); text-align: center; }
.page-head .eyebrow { margin-bottom: 14px; }
.page-head h1 { font-size: clamp(44px, 7vw, 96px); }
.page-head .sub {
  margin: 14px auto 0;
  max-width: 480px;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
}

/* — Lookbook frames — */
.frame { margin: clamp(24px, 3.4vw, 48px) 0; }
.frame img { width: 100%; object-fit: cover; }
.frame.full img { height: clamp(420px, 80vh, 860px); object-position: center 18%; }
.frame .cap {
  margin-top: 12px;
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.frame-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(14px, 2vw, 28px);
}
.frame-pair img { aspect-ratio: 3/4; object-fit: cover; height: auto; }

/* — Atelier / contact simple blocks — */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 90px);
  align-items: center;
}
.split img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.split .txt .eyebrow { margin-bottom: 16px; }
.split .txt h2 { font-size: clamp(34px, 4vw, 58px); }
.split .txt p {
  max-width: 440px;
  font-size: 13.5px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
  margin: 18px 0 28px;
}
.facts { border-top: 1px solid var(--rule); margin-top: 8px; }
.facts .row {
  display: flex; justify-content: space-between; gap: 20px;
  padding: 13px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 12px;
  letter-spacing: 0.08em;
}
.facts .row .k { text-transform: uppercase; letter-spacing: 0.24em; font-size: 10px; color: var(--ink-mute); padding-top: 2px; }
.facts .row a { border-bottom: 1px solid var(--rule); }
.facts .row a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* — Forms — */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-grid .wide { grid-column: 1 / -1; }
.field label {
  display: block;
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--rule);
  padding: 13px 14px;
  font-family: var(--sans);
  font-weight: 300;
  font-size: 14px;
  color: var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--ink-soft);
}

/* — Footer — */
.site-footer {
  border-top: 1px solid var(--rule);
  padding: clamp(44px, 6vw, 80px) 0 32px;
  background: transparent;
}
.site-footer .grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.site-footer .brand .logo { font-size: 18px; }
.site-footer .brand p {
  margin: 12px 0 0;
  max-width: 300px;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--ink-mute);
}
.site-footer nav { display: flex; gap: clamp(18px, 3vw, 36px); flex-wrap: wrap; }
.site-footer nav a {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: var(--ink-soft);
}
.site-footer nav a:hover { color: var(--ink); }
.site-footer .base {
  margin-top: clamp(32px, 5vw, 56px);
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

/* — House header (brand-name section label) — */
.house-label {
  text-align: center;
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: clamp(18px, 2.4vw, 30px);
}

/* — Pillars (image + caption link) — */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 26px);
}
.pillar { display: block; position: relative; }
.pillar img { width: 100%; aspect-ratio: 4/5; object-fit: cover; display: block; }
.pillar .cap {
  margin-top: 16px;
  text-align: center;
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink);
}
.pillar .cap span {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.pillar:hover .cap span { border-color: var(--ink); }

/* — Newsletter — */
.newsletter { border-top: 1px solid var(--rule); padding: clamp(36px, 4.5vw, 64px) 0; text-align: center; }
.newsletter h3 {
  font-family: var(--display); font-weight: 400;
  font-size: var(--d-3); margin: 0 0 8px;
}
.newsletter p { margin: 0 auto 26px; max-width: 430px; font-size: var(--t-small); color: var(--ink-mute); letter-spacing: 0.05em; }
.newsletter form { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.newsletter input {
  width: min(320px, 72vw);
  background: transparent;
  border: 1px solid var(--rule);
  padding: 14px 16px;
  font-family: var(--sans); font-weight: 300; font-size: 14px; color: var(--ink);
}
.newsletter input:focus { outline: none; border-color: var(--ink-soft); }
.newsletter .done { margin-top: 16px; font-size: var(--t-small); letter-spacing: 0.06em; color: var(--accent); }

/* — Fabric feature rows — */
.fabric-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 80px);
  align-items: center;
  margin: clamp(32px, 4.5vw, 64px) 0;
}
.fabric-row:nth-child(even) .fab-img { order: 2; }
.fabric-row img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.fabric-row .fab-txt h3 { font-family: var(--display); font-weight: 400; font-size: var(--d-3); margin: 12px 0 10px; }
.fabric-row .fab-txt p { margin: 0; font-size: var(--t-body); color: var(--ink-soft); letter-spacing: 0.04em; }
.fabric-row .fab-txt .used { margin-top: 16px; font-size: var(--t-micro); letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent); }

@media (max-width: 860px) {
  .pillars { grid-template-columns: 1fr; gap: 36px; }
  .fabric-row { grid-template-columns: 1fr; gap: 20px; }
  .fabric-row:nth-child(even) .fab-img { order: 0; }
}

/* — Dress page — */
.dress {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(32px, 5vw, 88px);
  align-items: start;
  padding: clamp(28px, 4vw, 56px) 0 clamp(80px, 10vw, 150px);
}
.dress .stage img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; cursor: zoom-in; }
.dress .thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 10px;
}
.dress .thumbs button {
  padding: 0; border: 0; background: none; cursor: pointer;
  line-height: 0; opacity: 0.55; transition: opacity 0.25s;
}
.dress .thumbs button.on, .dress .thumbs button:hover { opacity: 1; }
.dress .thumbs img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }

.dress .info { position: sticky; top: 128px; }
.dress .info .eyebrow { margin-bottom: 14px; }
.dress .info h1 { font-size: var(--d-2); margin: 0; }
.dress .info .variant-line {
  margin-top: 10px;
  font-size: var(--t-micro);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--accent);
}
.dress .info .price {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: 28px;
  letter-spacing: 0.04em;
}
.dress .info .made { margin: 6px 0 26px; font-size: var(--t-small); color: var(--ink-mute); letter-spacing: 0.06em; }
.dress .notes { border-top: 1px solid var(--rule); margin: 26px 0 0; }
.dress .notes .row {
  display: flex; justify-content: space-between; gap: 22px;
  padding: 13px 0; border-bottom: 1px solid var(--rule);
  font-size: var(--t-small); letter-spacing: 0.05em;
}
.dress .notes .row .k {
  text-transform: uppercase; letter-spacing: 0.22em;
  font-size: var(--t-micro); color: var(--ink-mute);
  flex: none; padding-top: 2px;
}
.dress .notes .row .v { text-align: right; color: var(--ink-soft); }

/* — Enquiry (register interest) — */
.enquire { margin-top: 30px; }
.enquire summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 16px 34px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.32em; text-transform: uppercase;
  background: var(--ink); color: var(--paper);
  transition: background 0.25s;
}
.enquire summary::-webkit-details-marker { display: none; }
.enquire summary:hover { background: var(--ink-soft); }
.enquire[open] summary { background: var(--ink-soft); }
.enquire .panel { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--rule); }
.enquire .note-small {
  margin: 0 0 18px; font-size: var(--t-small);
  color: var(--ink-mute); letter-spacing: 0.05em;
}
.enquire .sent {
  margin-top: 18px; font-size: var(--t-small);
  letter-spacing: 0.06em; color: var(--accent);
}

/* — Steps (bespoke) — */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(28px, 5vw, 80px); }
.step .n {
  display: block; font-size: var(--t-micro);
  letter-spacing: 0.4em; color: var(--accent); margin-bottom: 16px;
}
.step h3 { font-family: var(--display); font-weight: 400; font-size: var(--d-3); margin: 0 0 10px; }
.step p { margin: 0; font-size: var(--t-body); color: var(--ink-soft); letter-spacing: 0.04em; }
.step img { width: 100%; aspect-ratio: 3/4; object-fit: cover; margin-bottom: 22px; }

@media (max-width: 960px) {
  .dress { grid-template-columns: 1fr; }
  .dress .info { position: static; }
  .steps { grid-template-columns: 1fr; gap: 48px; }
}


/* — Horizontal collection rail (ODLR-style) — */
.rail-wrap { position: relative; }
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 27%);
  gap: clamp(16px, 2.4vw, 32px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 6px;
}
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
.rail-nav {
  position: absolute;
  top: 34%;
  width: 42px; height: 42px;
  border-radius: 50%;
  border: 1px solid var(--rule);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 3;
}
.rail-nav:hover { background: #fff; border-color: var(--ink-soft); }
.rail-prev { left: -8px; }
.rail-next { right: -8px; }
@media (max-width: 720px) {
  .rail { grid-auto-columns: minmax(210px, 62%); }
  .rail-nav { display: none; }
}

/* sizes on a card */
.look .sizes {
  margin-top: 8px;
  text-align: center;
  font-size: var(--t-micro);
  letter-spacing: 0.22em;
  color: var(--ink-mute);
}

/* — Services trio — */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 5vw, 80px);
  border-top: 1px solid var(--rule);
  padding: clamp(32px, 4vw, 56px) 0;
}
.service h4 {
  font-family: var(--display);
  font-weight: 400;
  font-size: var(--d-3);
  margin: 0 0 10px;
}
.service p {
  margin: 0 0 16px;
  font-size: var(--t-body);
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  max-width: 320px;
}
.service a {
  font-size: var(--t-micro);
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink-soft);
  padding-bottom: 3px;
  color: var(--ink-soft);
}
.service a:hover { color: var(--ink); border-color: var(--ink); }
@media (max-width: 860px) { .services { grid-template-columns: 1fr; gap: 40px; } }


/* — Section divider: hairline with the house monogram — */
.rule {
  max-width: var(--maxw);
  margin: clamp(10px, 1.4vw, 20px) auto;
  padding: 0 var(--gutter);
}
.rule .inner {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 34px);
}
.rule .line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--rule) 22%, var(--rule) 78%, transparent);
}
.rule .mark {
  width: 26px; height: 26px;
  flex: none;
  opacity: 0.55;
  color: var(--ink-soft);
}
.rule.plain .mark { display: none; }

/* — Lightbox — */
.lightbox {
  position: fixed; inset: 0;
  z-index: 200;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: rgba(14,12,10,0.95);
  padding: 24px;
}
.lightbox.open { display: flex; }
.lb-stage {
  margin: 0;
  max-width: min(1100px, 82vw);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lb-stage img {
  border-radius: 10px;
  max-width: 100%;
  max-height: 78vh;
  object-fit: contain;
  display: block;
}
.lb-stage figcaption {
  margin-top: 14px;
  display: flex;
  gap: 18px;
  align-items: baseline;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0.85;
}
.lb-counter { opacity: 0.6; }
.lb-arrow, .lb-close {
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 20px;
  line-height: 1;
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  flex: none;
  transition: background 0.2s, border-color 0.2s;
  font-family: var(--sans);
}
.lb-arrow:hover, .lb-close:hover { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.6); }
.lb-close { position: absolute; top: 22px; right: 22px; font-size: 26px; }

/* — Responsive — */
@media (max-width: 960px) {
  .overlap { grid-template-columns: 1fr; }
  .overlap .img-off { width: 56%; margin-top: -24%; }
  .looks-grid, .looks-grid.wide { grid-template-columns: 1fr 1fr; }
  .values3 { grid-template-columns: 1fr; gap: 36px; }
  .split { grid-template-columns: 1fr; }
  .hero-full img { height: 76vh; }
}
@media (max-width: 720px) {
  /* the header sits at the very top and scrolls away with the page */
  .topbar {
    position: relative;
    width: 100%;
    background: #ffffff;
  }
  .topbar .inner {
    flex-direction: column;
    gap: 8px;
    padding: 10px var(--gutter) 8px;
  }
  .logo { font-size: 16px; gap: 8px; }
  .monogram { width: 40px; height: 40px; }
  .menu {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    gap: 20px;
    padding-bottom: 2px;
  }
  .menu::-webkit-scrollbar { display: none; }
  .menu a { font-size: 10px; letter-spacing: 0.18em; white-space: nowrap; }
  .lightbox { padding: 0; gap: 0; }
  .lb-stage { max-width: 100vw; padding: 0 8px; }
  .lb-stage img { max-height: 76vh; }
  .lb-stage figcaption { font-size: 9px; letter-spacing: 0.16em; padding: 0 12px; text-align: center; }
  .lb-arrow {
    position: absolute; top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 42px; height: 42px;
    background: rgba(14,12,10,0.5);
    border-color: rgba(255,255,255,0.25);
  }
  .lb-prev { left: 10px; }
  .lb-next { right: 10px; }
  .lb-close { top: 14px; right: 14px; background: rgba(14,12,10,0.5); }
}
@media (max-width: 560px) {
  .looks-grid, .looks-grid.wide { grid-template-columns: 1fr 1fr; gap: 14px 10px; }
  .look .name { font-size: 10px; letter-spacing: 0.2em; }
  .frame-pair { grid-template-columns: 1fr 1fr; gap: 10px; }
  .form-grid { grid-template-columns: 1fr; }
  .hero-full .overlay h1 { font-size: 15vw; }
}
