/* =============================================================================
   BELLORA — Stylesheet
   Luxe minimalist fashion lookbook. Ivory base · beige/black accents · blush.
   ========================================================================== */

:root {
  /* palette */
  --ivory:      #FBFAF7;
  --paper:      #FFFFFF;
  --sand:       #F1ECE4;
  --beige:      #E4DACD;
  --taupe:      #B7A99A;
  --ink:        #17140F;   /* near-black, warm */
  --ink-soft:   #4A443C;
  --muted:      #8A8178;
  --line:       #E7E0D6;
  --blush:      #F7A6AE;   /* brand pink */
  --blush-deep: #E98793;
  --blush-tint: #FCEDEF;

  /* type */
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans:  "Jost", "Helvetica Neue", Arial, sans-serif;

  /* misc */
  --radius:   18px;
  --radius-lg: 28px;
  --shadow:   0 18px 50px -24px rgba(23, 20, 15, 0.28);
  --shadow-sm:0 8px 24px -14px rgba(23, 20, 15, 0.25);
  --ease:     cubic-bezier(0.22, 1, 0.36, 1);
  --maxw:     1240px;
  --gutter:   clamp(20px, 5vw, 64px);
}

/* ---------- reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--blush); color: var(--ink); }

/* ============================ PRELOADER ============================ */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: grid; place-items: center;
  background: var(--ivory);
  transition: opacity 0.7s var(--ease), visibility 0.7s var(--ease);
}
.preloader.done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner {
  display: flex; flex-direction: column; align-items: center; gap: 1.4rem;
}
.preloader__mark {
  width: clamp(150px, 34vw, 220px); height: auto;
  opacity: 0; transform: translateY(10px);
  animation: preFade 0.9s var(--ease) 0.05s forwards;
}
.preloader__bar {
  width: 120px; height: 2px; border-radius: 2px;
  background: var(--line); position: relative; overflow: hidden;
}
.preloader__bar::after {
  content: ""; position: absolute; inset: 0; left: -40%;
  width: 40%; background: var(--blush);
  animation: preLoad 1.1s var(--ease) infinite;
}
@keyframes preFade { to { opacity: 1; transform: none; } }
@keyframes preLoad { 0% { left: -40%; } 100% { left: 100%; } }

/* ---------- shared ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.72rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--taupe);
  margin-bottom: 1.1rem;
}
.eyebrow--light { color: var(--blush); }

.section {
  max-width: var(--maxw);
  margin-inline: auto;
  padding: clamp(70px, 11vw, 150px) var(--gutter);
}
.section__head { max-width: 620px; margin-bottom: clamp(36px, 5vw, 60px); }
.section__title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.section__title em { font-style: italic; color: var(--blush-deep); }
.section__lead {
  margin-top: 1.3rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 52ch;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55em;
  font-family: var(--sans);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 1.05em 2em;
  border-radius: 999px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--dark { background: var(--ink); color: var(--ivory); box-shadow: var(--shadow-sm); }
.btn--dark:hover { background: #000; }
.btn--blush { background: var(--blush); color: var(--ink); box-shadow: 0 12px 30px -14px var(--blush-deep); }
.btn--blush:hover { background: var(--blush-deep); color: #fff; }
.btn--ghost { border: 1px solid var(--line); color: var(--ink); padding: 0.7em 1.4em; }
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--ivory); }
.btn--outline-light { border: 1px solid rgba(255,255,255,0.4); color: #fff; }
.btn--outline-light:hover { background: #fff; color: var(--ink); }
.btn--text {
  padding: 1.05em 0.2em;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  position: relative;
}
.btn--text span { transition: transform 0.4s var(--ease); }
.btn--text:hover { transform: none; }
.btn--text:hover span { transform: translateX(6px); }
.btn--text::after {
  content: ""; position: absolute; left: 0.2em; bottom: 0.7em;
  width: calc(100% - 1.6em); height: 1px; background: var(--ink);
  transform: scaleX(0.35); transform-origin: left; transition: transform 0.5s var(--ease);
}
.btn--text:hover::after { transform: scaleX(1); }

/* ============================ NAV ============================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 60;
  transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.nav__inner {
  max-width: var(--maxw); margin-inline: auto;
  padding: 1.1rem var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.nav.scrolled {
  background: rgba(251, 250, 247, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(23,20,15,0.06);
}
.nav__logo { color: var(--ink); }
.nav__logo .logo-svg { height: 26px; width: auto; }
.logo-svg { height: 1em; }

.nav__links { display: flex; gap: 2.2rem; }
.nav__links a {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 400;
  color: var(--ink); position: relative; padding: 0.2em 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 100%; height: 1px;
  background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { font-size: 0.75rem; }

.nav__burger { display: none; width: 30px; height: 22px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; width: 100%; height: 1.6px; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
}
.nav__burger span:nth-child(1) { top: 4px; }
.nav__burger span:nth-child(2) { bottom: 4px; }
.nav.menu-open .nav__burger span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav.menu-open .nav__burger span:nth-child(2) { transform: translateY(-6px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 0.4rem;
  padding: 0 var(--gutter);
  max-height: 0; overflow: hidden;
  background: rgba(251, 250, 247, 0.96);
  backdrop-filter: blur(18px);
  transition: max-height 0.5s var(--ease), padding 0.5s var(--ease);
}
.nav.menu-open .mobile-menu { max-height: 60vh; padding: 0.5rem var(--gutter) 2rem; }
.mobile-menu a {
  font-family: var(--serif); font-size: 1.9rem; padding: 0.5rem 0;
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { font-family: var(--sans); font-size: 0.85rem; margin-top: 1rem; }

/* ============================ HERO ============================ */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 90% at 82% 10%, var(--blush-tint) 0%, rgba(252,237,239,0) 48%),
    radial-gradient(90% 80% at 6% 92%, var(--sand) 0%, rgba(241,236,228,0) 55%),
    linear-gradient(180deg, var(--ivory), var(--ivory));
}
.hero__inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--maxw); margin-inline: auto;
  padding: clamp(112px, 15vh, 168px) var(--gutter) clamp(80px, 12vh, 120px);
  display: grid; grid-template-columns: 1.02fr 0.98fr;
  align-items: center; gap: clamp(24px, 5vw, 72px);
}
.hero__content { max-width: 640px; }
.hero__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(2.9rem, 7.4vw, 6rem);
  line-height: 0.98; letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

/* --- hero product collage --- */
.hero__gallery {
  position: relative; align-self: center;
  height: clamp(380px, 64vh, 600px);
}
.hero__gallery::before {
  content: ""; position: absolute; z-index: 0;
  top: -8%; right: -8%; width: 86%; height: 94%;
  background: radial-gradient(circle at 52% 42%, var(--blush) 0%, var(--blush-tint) 52%, rgba(252,237,239,0) 72%);
}
.hero__img {
  position: absolute; overflow: hidden;
  background: var(--sand); box-shadow: var(--shadow);
}
.hero__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__img--main {
  z-index: 2; top: 0; right: 3%; width: 63%; height: 100%;
  border-radius: 180px 180px 22px 22px / 150px 150px 22px 22px;
}
.hero__img--a {
  z-index: 3; bottom: -3%; left: 0; width: 43%; aspect-ratio: 3 / 4;
  border-radius: 18px; border: 6px solid var(--ivory);
  animation: heroFloat 6s var(--ease) infinite;
}
.hero__img--b {
  z-index: 1; top: -2%; left: 10%; width: 31%; aspect-ratio: 3 / 4;
  border-radius: 90px 90px 16px 16px / 74px 74px 16px 16px;
  border: 5px solid var(--ivory);
  animation: heroFloat 7.5s var(--ease) infinite reverse;
}
@keyframes heroFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero__title em { font-style: italic; color: var(--blush-deep); }
.hero__sub { max-width: 46ch; color: var(--ink-soft); font-size: 1.1rem; margin-bottom: 2.4rem; }
.hero__actions { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 2;
  font-size: 0.66rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--taupe);
}
.hero__scroll i { width: 1px; height: 42px; background: var(--taupe); position: relative; overflow: hidden; }
.hero__scroll i::after {
  content: ""; position: absolute; top: -50%; left: 0; width: 100%; height: 50%;
  background: var(--ink); animation: scrollLine 2.2s var(--ease) infinite;
}
@keyframes scrollLine { 0%{top:-50%} 60%,100%{top:100%} }

/* ============================ MARQUEE ============================ */
.marquee {
  background: var(--ink); color: var(--ivory);
  padding: 1.1rem 0; overflow: hidden; white-space: nowrap;
}
.marquee__track {
  display: inline-flex; gap: 2.5rem; align-items: center;
  font-family: var(--serif); font-size: 1.5rem; font-style: italic; letter-spacing: 0.02em;
  animation: marquee 26s linear infinite;
}
.marquee__track span:nth-child(even) { color: var(--blush); font-style: normal; }
@keyframes marquee { from { transform: translateX(0);} to { transform: translateX(-50%);} }

/* ============================ COLLECTION ============================ */
.filters {
  display: flex; flex-wrap: wrap; gap: 0.6rem;
  margin-bottom: clamp(30px, 4vw, 48px);
}
.filter {
  font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.7em 1.3em; border-radius: 999px;
  border: 1px solid var(--line); color: var(--ink-soft);
  background: var(--paper);
  transition: all 0.3s var(--ease);
}
.filter:hover { border-color: var(--taupe); color: var(--ink); }
.filter.is-active { background: var(--ink); color: var(--ivory); border-color: var(--ink); }

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 2.4vw, 38px);
}
.grid__empty { text-align: center; color: var(--muted); padding: 4rem 0; font-size: 1.05rem; }

/* product card */
.card {
  position: relative; cursor: pointer;
  opacity: 0; transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.card.in { opacity: 1; transform: none; }
.card.is-featured { grid-column: span 2; }
.card__media {
  position: relative; overflow: hidden;
  border-radius: var(--radius); background: var(--sand);
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-sm);
}
.card.is-featured .card__media { aspect-ratio: 3 / 2.1; }
.card__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.9s var(--ease), filter 0.6s var(--ease);
}
video.card__img { background: var(--ink); }
.card:hover .card__img { transform: scale(1.06); }
.card__tags { position: absolute; top: 14px; left: 14px; display: flex; gap: 0.4rem; z-index: 2; }
.tag {
  font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 500;
  padding: 0.5em 0.85em; border-radius: 999px;
  background: rgba(255,255,255,0.82); backdrop-filter: blur(6px); color: var(--ink);
}
.tag--sold { background: var(--ink); color: var(--ivory); }
.tag--blush { background: var(--blush); color: var(--ink); }
.tag--video { background: var(--ink); color: var(--ivory); display: inline-flex; align-items: center; }
.card__view {
  position: absolute; inset: auto 14px 14px auto; z-index: 2;
  width: 44px; height: 44px; border-radius: 999px;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(6px);
  display: grid; place-items: center; color: var(--ink);
  opacity: 0; transform: translateY(8px) scale(0.9);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  font-size: 1.1rem;
}
.card:hover .card__view { opacity: 1; transform: none; }
.card.is-sold .card__img { filter: grayscale(0.5) brightness(0.97); }

.card__body { padding: 1.1rem 0.3rem 0; display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.card__name { font-family: var(--serif); font-size: 1.5rem; font-weight: 500; line-height: 1.1; }
.card__meta { font-size: 0.8rem; color: var(--muted); margin-top: 0.2rem; letter-spacing: 0.02em; }
.card__price { font-size: 0.95rem; font-weight: 500; white-space: nowrap; }
.card__price--sold { color: var(--muted); text-decoration: line-through; }

/* placeholder tile (when a photo file isn't present yet) */
.ph {
  position: absolute; inset: 0;
  display: grid; place-items: center; text-align: center;
  background:
    radial-gradient(120% 100% at 30% 20%, var(--blush-tint), transparent 60%),
    linear-gradient(150deg, var(--sand) 0%, var(--beige) 60%, var(--blush-tint) 100%);
  color: var(--ink-soft);
}
.ph__inner { padding: 1.5rem; }
.ph__mark { font-family: var(--serif); font-style: italic; font-size: 2.6rem; color: var(--blush-deep); line-height: 1; }
.ph__name { font-family: var(--serif); font-size: 1.15rem; margin-top: 0.5rem; }
.ph__hint { font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe); margin-top: 0.8rem; }

/* ============================ LOOKBOOK ============================ */
.lookbook__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(16px, 2vw, 28px);
}
.lookbook__text { grid-column: 1; grid-row: 1 / span 2; align-self: center; padding-right: 1rem; }
.lookbook__text .btn--text { margin-top: 1.6rem; }
.lookbook__img {
  border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
  background: var(--sand); position: relative; min-height: 220px;
}
.lookbook__img::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background:
    radial-gradient(120% 100% at 70% 20%, var(--blush-tint), transparent 55%),
    linear-gradient(160deg, var(--beige), var(--sand) 55%, var(--blush-tint));
}
.lookbook__img img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1s var(--ease);
}
.lookbook__img:hover img { transform: scale(1.05); }
.lookbook__img--tall { grid-column: 2; grid-row: 1 / span 2; }
.lookbook__img--wide { grid-column: 3; grid-row: 1; }
.lookbook__img:not(.lookbook__img--tall):not(.lookbook__img--wide) { grid-column: 3; grid-row: 2; }

/* ============================ ABOUT ============================ */
.about { }
.about__inner {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.about__img {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow);
  aspect-ratio: 4 / 5; position: relative; background: var(--sand);
}
.about__img::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(110% 90% at 30% 15%, var(--blush-tint), transparent 55%),
    linear-gradient(150deg, var(--beige), var(--sand) 60%, var(--blush-tint));
}
.about__img::after {
  content: attr(data-ph); position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--serif); font-style: italic; color: var(--taupe); font-size: 1.2rem;
}
/* About panel showing the Bellora logo instead of a photo */
.about__img--logo { display: grid; place-items: center; }
.about__img--logo img {
  position: relative; z-index: 1;
  width: 58%; max-width: 260px; height: auto;
}
.about__text p { color: var(--ink-soft); font-size: 1.08rem; margin-top: 1.3rem; max-width: 52ch; }
.about__points {
  display: grid; gap: 1.1rem; margin-top: 2.4rem;
  border-top: 1px solid var(--line); padding-top: 2rem;
}
.about__points li { display: grid; gap: 0.15rem; }
.about__points strong { font-family: var(--serif); font-size: 1.35rem; font-weight: 500; }
.about__points span { font-size: 0.9rem; color: var(--muted); }

/* ============================ HOW ============================ */
.how { text-align: left; }
.how__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px);
}
.how__step {
  padding: 2.4rem 2rem; border-radius: var(--radius-lg);
  background: var(--paper); border: 1px solid var(--line);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.how__step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.how__num { font-family: var(--serif); font-style: italic; font-size: 2.2rem; color: var(--blush-deep); }
.how__step h3 { font-family: var(--serif); font-size: 1.9rem; font-weight: 500; margin: 0.6rem 0 0.6rem; }
.how__step p { color: var(--ink-soft); font-size: 0.98rem; }

/* ============================ CONTACT ============================ */
.contact { padding-top: 0; }
.contact__card {
  background: var(--ink); color: var(--ivory);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 8vw, 100px) var(--gutter);
  text-align: center; position: relative; overflow: hidden;
}
.contact__card::before {
  content: ""; position: absolute; top: -30%; right: -10%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(247,166,174,0.5), transparent 60%);
  filter: blur(20px);
}
.contact__title {
  font-family: var(--serif); font-weight: 500; font-size: clamp(2.6rem, 7vw, 5rem);
  line-height: 1; position: relative;
}
.contact__lead { max-width: 46ch; margin: 1.4rem auto 2.4rem; color: rgba(251,250,247,0.75); position: relative; }
.contact__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; position: relative; }
.contact__meta { margin-top: 2rem; font-size: 0.82rem; letter-spacing: 0.06em; color: rgba(251,250,247,0.55); position: relative; }

/* ============================ FOOTER ============================ */
.footer { background: var(--ivory); border-top: 1px solid var(--line); }
.footer__inner {
  max-width: var(--maxw); margin-inline: auto; padding: clamp(40px, 6vw, 72px) var(--gutter);
  display: grid; gap: 1.8rem; justify-items: center; text-align: center;
}
.footer__logo { color: var(--ink); }
.footer__logo .logo-svg { height: 30px; }
.footer__links { display: flex; gap: 1.8rem; flex-wrap: wrap; justify-content: center; }
.footer__links a { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.footer__links a:hover { color: var(--ink); }
.footer__note { font-size: 0.78rem; color: var(--muted); max-width: 46ch; }

/* ============================ LIGHTBOX ============================ */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s var(--ease), visibility 0.4s;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox__overlay { position: absolute; inset: 0; background: rgba(23,20,15,0.55); backdrop-filter: blur(6px); }
.lightbox__panel {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr 1fr;
  width: min(960px, 100%); max-height: 90svh; overflow: hidden;
  background: var(--paper); border-radius: var(--radius-lg);
  box-shadow: 0 40px 80px -30px rgba(0,0,0,0.5);
  transform: translateY(20px) scale(0.98); transition: transform 0.5s var(--ease);
}
.lightbox.open .lightbox__panel { transform: none; }
.lightbox__close {
  position: absolute; top: 14px; right: 16px; z-index: 5;
  width: 40px; height: 40px; border-radius: 999px; font-size: 1.5rem; line-height: 1;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(6px); color: var(--ink);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.lightbox__close:hover { background: var(--ink); color: #fff; transform: rotate(90deg); }
.lightbox__media { position: relative; background: var(--sand); min-height: 340px; }
.lightbox__stage { position: absolute; inset: 0; }
.lightbox__stage img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* videos show the FULL frame (no crop/zoom); black bars fill any gap */
.lightbox__stage video { width: 100%; height: 100%; object-fit: contain; display: block; background: #000; }

/* "See it on a model" thumbnail gallery */
.lightbox__gallery {
  position: absolute; left: 12px; bottom: 12px; z-index: 4;
  display: flex; flex-direction: column; gap: 7px; align-items: flex-start;
}
.lightbox__gallery-label {
  font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: #fff; background: rgba(23,20,15,0.6); backdrop-filter: blur(6px);
  padding: 0.4em 0.75em; border-radius: 999px;
}
.lightbox__thumbs { display: flex; gap: 8px; }
.lb-thumb {
  width: 50px; height: 64px; border-radius: 10px; overflow: hidden; position: relative;
  border: 2px solid rgba(255,255,255,0.85); box-shadow: var(--shadow-sm);
  cursor: pointer; background: var(--sand); padding: 0;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.lb-thumb:hover { transform: translateY(-2px); }
.lb-thumb img { width: 100%; height: 100%; object-fit: cover; }
.lb-thumb.is-active { border-color: var(--blush); }
.lb-thumb--video::after {
  content: "\25B6"; position: absolute; inset: 0; display: grid; place-items: center;
  color: #fff; background: rgba(0,0,0,0.36); font-size: 0.7rem; padding-left: 2px;
}
.lightbox__info { padding: clamp(24px, 3.5vw, 48px); overflow-y: auto; }
.lightbox__cat { font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--taupe); }
.lightbox__name { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.05; margin: 0.5rem 0 0.4rem; }
.lightbox__price { font-size: 1.3rem; margin-bottom: 1.6rem; }
.lightbox__price .sold { color: var(--muted); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.16em; }
.lightbox__specs { display: grid; grid-template-columns: auto 1fr; gap: 0.5rem 1.4rem; border-top: 1px solid var(--line); padding-top: 1.4rem; margin-bottom: 1.4rem; }
.lightbox__specs dt { font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--taupe); align-self: center; }
.lightbox__specs dd { font-size: 0.98rem; }
.lightbox__note { color: var(--ink-soft); font-style: italic; font-family: var(--serif); font-size: 1.25rem; margin-bottom: 1.8rem; }
.lightbox__cta { width: 100%; }
.lightbox__cta.is-disabled { background: var(--beige); color: var(--muted); pointer-events: none; box-shadow: none; }
.lightbox__disclaimer { font-size: 0.72rem; color: var(--muted); text-align: center; margin-top: 1rem; }

/* ============================ FAB ============================ */
.fab {
  position: fixed; right: clamp(16px, 3vw, 32px); bottom: clamp(16px, 3vw, 32px); z-index: 55;
  width: 58px; height: 58px; border-radius: 999px;
  background: var(--blush); color: var(--ink);
  display: grid; place-items: center;
  box-shadow: 0 14px 34px -12px var(--blush-deep);
  transform: translateY(80px); opacity: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease), background 0.3s;
}
.fab.show { transform: none; opacity: 1; }
.fab:hover { background: var(--blush-deep); color: #fff; }

/* ============================ REVEAL ============================ */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.9s var(--ease), transform 0.9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================ RESPONSIVE ============================ */
@media (max-width: 980px) {
  .hero { min-height: auto; }
  .hero__inner { grid-template-columns: 1fr; gap: clamp(28px, 7vw, 56px); text-align: left; }
  .hero__content { max-width: 640px; order: 1; }
  .hero__gallery { order: 2; height: clamp(360px, 58vh, 460px); width: min(460px, 100%); margin-inline: auto; }
  .grid { grid-template-columns: repeat(2, 1fr); }
  .card.is-featured { grid-column: span 2; }
  .card.is-featured .card__media { aspect-ratio: 16 / 10; }
  .lookbook__grid { grid-template-columns: 1fr 1fr; }
  .lookbook__text { grid-column: 1 / -1; grid-row: auto; padding-right: 0; }
  .lookbook__img--tall { grid-column: 1; grid-row: auto; }
  .lookbook__img--wide { grid-column: 2; grid-row: auto; }
  .lookbook__img:not(.lookbook__img--tall):not(.lookbook__img--wide) { grid-column: 1 / -1; grid-row: auto; min-height: 260px; }
  .about__inner { grid-template-columns: 1fr; }
  .about__img { max-width: 460px; }
  .how__steps { grid-template-columns: 1fr; }
  .lightbox__panel { grid-template-columns: 1fr; max-height: 88svh; overflow-y: auto; }
  .lightbox__media { min-height: 300px; aspect-ratio: 4/3; }
}

@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .mobile-menu { display: flex; }
  .grid { grid-template-columns: 1fr; gap: 28px; }
  .card.is-featured { grid-column: span 1; }
  .card.is-featured .card__media { aspect-ratio: 3/4; }
  .card__media { aspect-ratio: 4/5; }
  .lookbook__grid { grid-template-columns: 1fr; }
  .lookbook__img--wide, .lookbook__img--tall, .lookbook__img:not(.lookbook__img--tall):not(.lookbook__img--wide) { grid-column: 1; }
  .hero__gallery { height: clamp(340px, 62vw, 420px); }
  .hero__img--b { display: none; }
  .hero__img--main { width: 66%; right: 4%; }
  .hero__img--a { width: 46%; }
  .marquee__track { font-size: 1.2rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
  .reveal, .card { opacity: 1 !important; transform: none !important; }
}
