/* =====================================================
   PRONUPTIA LYON — STYLESHEET
   Boutique 9 rue des Remparts d'Ainay, Lyon 2ème
   Redesign bridal : ivoire · champagne · bordeaux
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500;1,600&family=Jost:wght@300;400;500;600&display=swap');

/* ─── ROOT VARIABLES ─── */
:root {
  /* ── Palette bridal (OKLCH) ─────────────────────── */
  --c-ivory:           oklch(97.5% 0.007 68);   /* fond principal */
  --c-parchment:       oklch(93.8% 0.012 70);   /* sections alternées */
  --c-blush:           oklch(91.2% 0.020 14);   /* rose blush */
  --c-champagne:       oklch(75.5% 0.038 80);   /* ornements, labels */
  --c-champagne-light: oklch(88.5% 0.018 75);   /* champagne clair */
  --c-taupe:           oklch(53.0% 0.018 58);   /* texte secondaire */
  --c-rosewood:        oklch(58.5% 0.045 14);   /* rose bois */
  --c-bordeaux:        oklch(29.5% 0.085 18);   /* signature — très restreint */
  --c-bordeaux-dark:   oklch(21.0% 0.070 18);
  --c-warm-black:      oklch(15.5% 0.012 45);   /* texte principal */
  --c-dark:            oklch(10.5% 0.018 40);   /* footer, overlays */

  /* ── Alias rétrocompat ──────────────────────────── */
  --c-burgundy:        var(--c-bordeaux);
  --c-burgundy-dark:   var(--c-bordeaux-dark);
  --c-burgundy-light:  oklch(38.5% 0.098 17);
  --c-gold:            var(--c-champagne);
  --c-gold-light:      var(--c-champagne-light);
  --c-gold-dark:       oklch(62.0% 0.055 78);
  --c-charcoal:        var(--c-warm-black);
  --c-cream:           var(--c-parchment);
  --c-white:           oklch(99.5% 0.003 68);
  --c-navy:            oklch(18.0% 0.040 255);

  --f-display: 'Cormorant Garamond', Georgia, serif;
  --f-body:    'Jost', system-ui, sans-serif;

  --container:        1400px;
  --container-narrow: 860px;
  --gutter:           48px;

  --t-fast:   0.22s ease;
  --t-med:    0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --t-slow:   0.9s  cubic-bezier(0.16, 1, 0.3, 1);

  --shadow-sm:    0 4px 20px oklch(0% 0 0 / 0.04);
  --shadow-md:    0 12px 45px oklch(0% 0 0 / 0.08);
  --shadow-lg:    0 24px 70px oklch(0% 0 0 / 0.13);
  --shadow-hover: 0 36px 90px oklch(0% 0 0 / 0.18);

  --header-h: 104px;
  --radius:   2px;
}

/* ─── RESET ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--f-body);
  background: var(--c-ivory);
  color: var(--c-warm-black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--f-body); }
input, select, textarea { font-family: var(--f-body); }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 7vw, 6.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h4 { font-size: 1.5rem; }
h5 { font-family: var(--f-body); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; }

.eyebrow {
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.30em;
  text-transform: uppercase;
  color: var(--c-champagne);
  display: block;
  margin-bottom: 1.2rem;
}

/* ─── CONTAINERS ─── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.container--narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 var(--gutter); }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 17px 38px;
  border: 1px solid transparent;
  transition: background var(--t-med), color var(--t-med), border-color var(--t-med), transform var(--t-fast), box-shadow var(--t-med);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.btn:hover { transform: translateY(-1px); }
.btn span { position: relative; z-index: 1; }

.btn--dark {
  background: var(--c-warm-black);
  color: var(--c-ivory);
  border-color: var(--c-warm-black);
}
.btn--dark:hover { background: var(--c-bordeaux); border-color: var(--c-bordeaux); }

.btn--outline {
  background: transparent;
  color: var(--c-ivory);
  border-color: rgba(250,247,242,0.6);
}
.btn--outline:hover { background: var(--c-ivory); color: var(--c-warm-black); border-color: var(--c-ivory); }

.btn--gold {
  background: var(--c-champagne);
  color: var(--c-warm-black);
  border-color: var(--c-champagne);
  box-shadow: 0 8px 30px oklch(75% 0.038 80 / 0.30);
}
.btn--gold:hover { background: var(--c-warm-black); color: var(--c-ivory); border-color: var(--c-warm-black); box-shadow: var(--shadow-md); }

.btn--ghost {
  background: transparent;
  color: var(--c-warm-black);
  border-color: var(--c-champagne-light);
}
.btn--ghost:hover { background: var(--c-warm-black); color: var(--c-ivory); border-color: var(--c-warm-black); }

.btn--bordeaux {
  background: var(--c-bordeaux);
  color: var(--c-ivory);
  border-color: var(--c-bordeaux);
}
.btn--bordeaux:hover { background: var(--c-warm-black); color: var(--c-ivory); border-color: var(--c-warm-black); }

/* ─── PAGE LOADER ─── */
#page-loader {
  position: fixed;
  inset: 0;
  background: var(--c-ivory);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity 0.7s ease, visibility 0.7s;
}
#page-loader.loaded { opacity: 0; visibility: hidden; }
.loader-logo {
  font-family: var(--f-display);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--c-bordeaux);
  letter-spacing: 0.1em;
  animation: loaderPulse 1.8s ease infinite;
}
.loader-logo em { font-style: italic; color: var(--c-champagne); }
.loader-line {
  width: 0;
  height: 1px;
  background: var(--c-champagne);
  animation: loaderLine 1.4s ease forwards;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.35; }
  50% { opacity: 1; }
}
@keyframes loaderLine {
  from { width: 0; }
  to { width: 120px; }
}

/* ─── HEADER ─── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: height 0.45s ease, background 0.45s ease, box-shadow 0.45s ease;
}
.site-header.is-transparent { background: transparent; }
.site-header.is-scrolled {
  background: var(--c-ivory);
  height: 84px;
  box-shadow: 0 1px 0 var(--c-champagne-light);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* Logo */
.site-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  gap: 9px;
  text-decoration: none;
}
.site-logo__img {
  height: 62px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter var(--t-med);
}
.is-scrolled .site-logo__img {
  filter: brightness(0);
}
.logo-sub {
  font-family: var(--f-body);
  font-size: 0.42rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--c-champagne);
  transition: color var(--t-med);
}
.logo-divider {
  width: 100%;
  height: 0.5px;
  background: var(--c-champagne);
  opacity: 0.5;
}
.is-scrolled .logo-sub { color: var(--c-warm-black); }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 38px; }
.nav-link {
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.80);
  transition: color var(--t-fast);
  position: relative;
  padding-bottom: 3px;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--c-champagne);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--t-med);
}
.nav-link:hover::after, .nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover { color: var(--c-ivory); }
.is-scrolled .nav-link { color: var(--c-taupe); }
.is-scrolled .nav-link:hover { color: var(--c-warm-black); }

/* Dropdown */
.nav-item--dropdown { position: relative; display: flex; align-items: center; }
.nav-dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 290px;
  background: var(--c-ivory);
  border-top: 1px solid var(--c-champagne-light);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
  padding: 12px 0;
}
.nav-item--dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.nav-dropdown a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 22px;
  font-size: 0.73rem;
  color: var(--c-warm-black);
  transition: color var(--t-fast), padding-left var(--t-fast), background var(--t-fast);
}
.nav-dropdown a:hover { color: var(--c-bordeaux); padding-left: 28px; background: var(--c-parchment); }
.nav-dropdown .dd-count { font-size: 0.60rem; color: var(--c-taupe); font-style: italic; font-family: var(--f-display); }

/* Nav RDV */
.nav-rdv { display: flex; align-items: center; gap: 20px; }
.btn-rdv {
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 11px 22px;
  background: var(--c-bordeaux);
  color: var(--c-ivory);
  border: 1px solid var(--c-bordeaux);
  transition: all var(--t-med);
  flex-shrink: 0;
}
.btn-rdv:hover { background: transparent; color: var(--c-bordeaux); }
.is-scrolled .btn-rdv { background: var(--c-bordeaux); color: var(--c-ivory); }
.is-scrolled .btn-rdv:hover { background: var(--c-warm-black); border-color: var(--c-warm-black); }

/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; padding: 2px; }
.hamburger span { display: block; height: 1px; background: var(--c-ivory); transition: all 0.35s ease; transform-origin: center; }
.is-scrolled .hamburger span { background: var(--c-warm-black); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--c-dark);
  z-index: 800;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 36px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.mobile-menu nav a {
  font-family: var(--f-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--c-ivory);
  letter-spacing: 0.04em;
  transition: color var(--t-fast);
}
.mobile-menu nav a:hover { color: var(--c-champagne); }
.mobile-menu .mobile-rdv {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-champagne);
  border: 1px solid var(--c-champagne);
  padding: 14px 32px;
  transition: all var(--t-med);
}
.mobile-menu .mobile-rdv:hover { background: var(--c-champagne); color: var(--c-warm-black); }
.mobile-menu .mobile-contact {
  color: var(--c-taupe);
  font-size: 0.8rem;
  text-align: center;
  line-height: 1.8;
}

/* ─── HERO ─── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: oklch(10% 0.018 40);
}
.hero__bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, var(--c-bordeaux-dark) 0%, oklch(18% 0.060 20) 35%, var(--c-warm-black) 70%, var(--c-dark) 100%);
  z-index: 0;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 1;
}
.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroKenBurns 12s ease-out forwards;
}
@keyframes heroKenBurns {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(10% 0.018 40 / 0.90) 0%,
    oklch(10% 0.018 40 / 0.52) 40%,
    oklch(10% 0.018 40 / 0.30) 100%
  );
  z-index: 2;
}
.hero__deco {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-champagne), transparent);
  z-index: 3;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-bottom: 90px;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.hero__eyebrow {
  font-size: 0.60rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__eyebrow::before {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--c-champagne);
  flex-shrink: 0;
}
.hero__title {
  font-family: var(--f-display);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 300;
  color: var(--c-ivory);
  line-height: 1.0;
  margin-bottom: 32px;
  max-width: 850px;
  opacity: 0;
  animation: fadeUp 1s 0.85s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--c-champagne-light);
}
.hero__sub {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(250,247,242,0.65);
  letter-spacing: 0.03em;
  max-width: 460px;
  margin-bottom: 52px;
  line-height: 1.9;
  opacity: 0;
  animation: fadeUp 0.9s 1.1s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 1.3s cubic-bezier(0.16,1,0.3,1) forwards;
}
.hero__scroll-hint {
  position: absolute;
  right: var(--gutter);
  bottom: 42px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(250,247,242,0.40);
  font-size: 0.52rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  opacity: 0;
  animation: fadeIn 1s 1.8s ease forwards;
}
.hero__scroll-hint::after {
  content: '';
  width: 1px;
  height: 55px;
  background: linear-gradient(to bottom, oklch(75% 0.038 80 / 0.55), transparent);
  animation: scrollBar 2.2s ease infinite 2s;
}
@keyframes scrollBar {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ─── INTRO BAND ─── */
.section-intro {
  padding: 120px 0 110px;
  background: var(--c-ivory);
  text-align: center;
}
.section-intro .container--narrow {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section-intro h2 { margin-bottom: 28px; }
.section-intro p {
  font-size: 1.02rem;
  font-weight: 300;
  color: var(--c-taupe);
  line-height: 2.0;
  max-width: 620px;
  margin-bottom: 48px;
}
.divider-ornament {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 200px;
  margin: 0 auto 52px;
}
.divider-ornament::before,
.divider-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--c-champagne-light);
}
.divider-ornament > span {
  width: 6px;
  height: 6px;
  border: 1px solid var(--c-champagne);
  transform: rotate(45deg);
  display: block;
  flex-shrink: 0;
}

/* ─── STATS ─── */
.section-stats {
  padding: 88px 0;
  background: var(--c-ivory);
  border-top: 1px solid var(--c-champagne-light);
  border-bottom: 1px solid var(--c-champagne-light);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat-item {
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 10%; bottom: 10%;
  width: 1px;
  background: var(--c-champagne-light);
}
.stat-num {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--c-bordeaux);
  line-height: 1;
}
.stat-label {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--c-taupe);
  margin-top: 10px;
}

/* ─── COLLECTIONS GRID ─── */
.section-collections {
  padding: 110px 0;
  background: var(--c-parchment);
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}
.section-header h2 { line-height: 1.1; }

.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto;
  gap: 16px;
}
.collections-grid .collection-card:first-child { grid-row: span 2; }
.collections-grid .collection-card:nth-child(4) { grid-column: span 2; }

.collection-card {
  position: relative;
  overflow: hidden;
  display: block;
  cursor: pointer;
  min-height: 340px;
}
.collection-card__bg {
  position: absolute;
  inset: 0;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover .collection-card__bg { transform: scale(1.06); }
.collection-card__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.collection-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(10% 0.018 40 / 0.78) 0%, oklch(10% 0.018 40 / 0.18) 55%, transparent 100%);
  transition: background var(--t-med);
}
.collection-card:hover .collection-card__overlay {
  background: linear-gradient(to top, oklch(10% 0.018 40 / 0.88) 0%, oklch(10% 0.018 40 / 0.32) 60%, oklch(10% 0.018 40 / 0.08) 100%);
}
.collection-card__body {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 28px;
  color: var(--c-ivory);
}
.collection-card__count {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: 8px;
}
.collection-card__name {
  font-family: var(--f-display);
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 18px;
}
.collection-card__cta {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-champagne);
  display: flex;
  align-items: center;
  gap: 8px;
  transform: translateY(12px);
  opacity: 0;
  transition: transform var(--t-med), opacity var(--t-med);
}
.collection-card:hover .collection-card__cta { transform: translateY(0); opacity: 1; }
.collection-card__cta::after { content: '→'; transition: transform var(--t-fast); }
.collection-card:hover .collection-card__cta::after { transform: translateX(5px); }

/* Placeholder gradients — palette bridal cohérente */
.col-bg-amelie    { background: linear-gradient(155deg, oklch(90% 0.018 75), oklch(76% 0.038 72), oklch(64% 0.050 68)); }
.col-bg-pronuptia { background: linear-gradient(155deg, oklch(94% 0.010 68), oklch(85% 0.020 65), oklch(72% 0.032 62)); }
.col-bg-libelle   { background: linear-gradient(155deg, oklch(88% 0.028 12), oklch(76% 0.048 14), oklch(62% 0.060 13)); }
.col-bg-randy     { background: linear-gradient(155deg, oklch(89% 0.022 25), oklch(78% 0.038 22), oklch(65% 0.052 18)); }
.col-bg-modecocourtes { background: linear-gradient(155deg, oklch(91% 0.014 78), oklch(82% 0.026 76), oklch(70% 0.040 72)); }
.col-bg-modecopapillon { background: linear-gradient(155deg, oklch(87% 0.032 10), oklch(74% 0.052 12), oklch(60% 0.064 13)); }
.col-bg-terredalice { background: linear-gradient(155deg, oklch(89% 0.016 65), oklch(77% 0.030 62), oklch(63% 0.042 58)); }
.col-bg-eddyk     { background: linear-gradient(155deg, oklch(26% 0.025 45), oklch(18% 0.015 42), oklch(12% 0.008 38)); }
.col-bg-justin    { background: linear-gradient(155deg, oklch(91% 0.016 72), oklch(81% 0.030 68), oklch(68% 0.044 65)); }

/* ─── DRESS CARDS ─── */
.section-featured { padding: 120px 0; background: var(--c-ivory); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.dress-card { cursor: pointer; }
.dress-card__img-wrap {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  background: var(--c-parchment);
}
.dress-card__img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.dress-card:hover .dress-card__img-wrap img { transform: scale(1.06); }
.dress-card__placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 16px;
  color: var(--c-champagne);
}
.dress-icon-svg { width: 52px; height: auto; opacity: 0.30; }
.dress-card__overlay {
  position: absolute; inset: 0;
  background: oklch(10% 0.018 40 / 0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-med);
}
.dress-card:hover .dress-card__overlay { background: oklch(10% 0.018 40 / 0.42); }
.dress-card__overlay-txt {
  color: var(--c-ivory);
  font-size: 0.60rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all var(--t-med);
  border: 1px solid rgba(250,247,242,0.5);
  padding: 10px 18px;
}
.dress-card:hover .dress-card__overlay-txt { opacity: 1; transform: translateY(0); }
.dress-card__info { padding: 14px 0 0; }
.dress-card__brand {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: 5px;
}
.dress-card__name {
  font-family: var(--f-display);
  font-size: 1.1rem;
  color: var(--c-warm-black);
}

/* ─── ABOUT SPLIT ─── */
.section-about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
}
.about-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
}
.about-visual img, .about-visual video, .about-visual .about-placeholder {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.about-placeholder {
  background: linear-gradient(145deg, oklch(88% 0.020 72), oklch(76% 0.038 70), oklch(63% 0.048 66));
  display: flex; align-items: center; justify-content: center;
}
.section-about:hover .about-visual img,
.section-about:hover .about-visual .about-placeholder { transform: scale(1.04); }
.about-text {
  padding: 90px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--c-ivory);
}
.about-text h2 { color: var(--c-warm-black); margin-bottom: 24px; }
.about-text p {
  color: var(--c-taupe);
  font-size: 0.92rem;
  line-height: 2.0;
  font-weight: 300;
  margin-bottom: 40px;
}
.about-text .btn--outline {
  color: var(--c-warm-black);
  border-color: var(--c-champagne-light);
}
.about-text .btn--outline:hover {
  background: var(--c-warm-black);
  color: var(--c-ivory);
  border-color: var(--c-warm-black);
}

/* ─── BRANDS STRIP ─── */
.section-brands {
  padding: 80px 0;
  background: var(--c-parchment);
  overflow: hidden;
}
.brands-track {
  display: flex;
  gap: 60px;
  align-items: center;
}
.brand-logo-item {
  font-family: var(--f-display);
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--c-taupe);
  white-space: nowrap;
  transition: color var(--t-fast);
  flex-shrink: 0;
}
.brand-logo-item:hover { color: var(--c-bordeaux); }

/* ─── CTA SECTION ─── */
.section-cta {
  padding: 160px 0;
  background: var(--c-blush);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.section-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: var(--c-champagne-light);
}
.section-cta::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%; transform: translateX(-50%);
  width: 1px; height: 60px;
  background: var(--c-champagne-light);
}
.section-cta .container { position: relative; z-index: 1; }
.section-cta .eyebrow { color: var(--c-rosewood); margin-bottom: 18px; }
.section-cta h2 { color: var(--c-bordeaux); margin-bottom: 22px; }
.section-cta p {
  color: var(--c-taupe);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.95;
  max-width: 480px;
  margin: 0 auto 52px;
}
.section-cta .btn--outline {
  color: var(--c-bordeaux);
  border-color: var(--c-bordeaux);
}
.section-cta .btn--outline:hover {
  background: var(--c-bordeaux);
  color: var(--c-ivory);
  border-color: var(--c-bordeaux);
}

/* ─── FOOTER ─── */
.site-footer { background: var(--c-dark); }
.footer-main {
  padding: 80px 0 60px;
  border-bottom: 1px solid oklch(97% 0.007 68 / 0.06);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 56px;
  align-items: start;
}
.footer-brand .logo-main {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1;
  color: var(--c-ivory);
}
.footer-brand .logo-sub { color: var(--c-champagne); }
.footer-brand-logo { margin-bottom: 28px; }
.footer-tagline {
  color: oklch(97% 0.007 68 / 0.42);
  font-size: 0.82rem;
  font-weight: 300;
  line-height: 1.9;
  max-width: 280px;
  margin-bottom: 28px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid oklch(97% 0.007 68 / 0.14);
  display: flex; align-items: center; justify-content: center;
  color: oklch(97% 0.007 68 / 0.45);
  font-size: 0.75rem;
  transition: all var(--t-fast);
}
.footer-social a:hover { border-color: var(--c-champagne); color: var(--c-champagne); background: oklch(75% 0.038 80 / 0.08); }
.footer-col-title {
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-champagne);
  margin-bottom: 24px;
}
.footer-col-links { display: flex; flex-direction: column; gap: 11px; }
.footer-col-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: oklch(97% 0.007 68 / 0.45);
  transition: color var(--t-fast);
}
.footer-col-links a:hover { color: var(--c-ivory); }
.footer-contact-items { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; }
.fci-icon {
  width: 18px; height: 18px; flex-shrink: 0;
  color: var(--c-champagne); margin-top: 1px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem;
}
.fci-text {
  font-size: 0.8rem;
  color: oklch(97% 0.007 68 / 0.45);
  font-weight: 300;
  line-height: 1.65;
}
.fci-text strong { display: block; color: oklch(97% 0.007 68 / 0.72); font-size: 0.60rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 3px; }
.hours-list { display: flex; flex-direction: column; gap: 5px; }
.hours-row { display: flex; justify-content: space-between; font-size: 0.78rem; color: oklch(97% 0.007 68 / 0.38); gap: 12px; }
.hours-row .day { color: oklch(97% 0.007 68 / 0.62); font-weight: 500; }
.footer-bottom { padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-copy { font-size: 0.70rem; color: oklch(97% 0.007 68 / 0.22); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.70rem; color: oklch(97% 0.007 68 / 0.22); transition: color var(--t-fast); }
.footer-legal a:hover { color: oklch(97% 0.007 68 / 0.55); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  height: 52vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-top: var(--header-h);
}
.page-hero__bg {
  position: absolute; inset: 0;
  background: var(--c-dark);
}
.page-hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.35;
  animation: heroKenBurns 12s ease-out forwards;
}
.page-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, oklch(10% 0.018 40 / 0.60) 0%, oklch(10% 0.018 40 / 0.28) 100%);
}
.page-hero__content { position: relative; z-index: 1; padding: 0 var(--gutter); }
.page-hero__content h1 { color: var(--c-ivory); font-style: italic; margin-top: 8px; }

/* ─── BREADCRUMB ─── */
.breadcrumb {
  padding: 20px 0;
  display: flex; align-items: center; gap: 8px;
  font-size: 0.70rem; color: var(--c-taupe);
}
.breadcrumb a { color: var(--c-champagne); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-bordeaux); }
.breadcrumb-sep { opacity: 0.5; }

/* ─── GALLERY PAGE ─── */
.gallery-filters {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: center;
  gap: 8px;
  padding: 50px 0 20px;
}
.filter-btn {
  padding: 9px 20px;
  font-size: 0.58rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--c-taupe);
  border: 1px solid var(--c-champagne-light);
  background: transparent;
  transition: all var(--t-fast);
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--c-warm-black); color: var(--c-ivory); border-color: var(--c-warm-black);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 30px 0 100px;
}
.gallery-item {
  aspect-ratio: 2/3;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--c-parchment);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top;
  transition: transform 0.65s ease;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__hover {
  position: absolute; inset: 0;
  background: oklch(10% 0.018 40 / 0);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 20px;
  transition: background var(--t-med);
}
.gallery-item:hover .gallery-item__hover { background: oklch(10% 0.018 40 / 0.52); }
.gallery-item__caption {
  text-align: center;
  color: var(--c-ivory);
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--t-med);
}
.gallery-item:hover .gallery-item__caption { opacity: 1; transform: translateY(0); }
.gallery-item__caption .brand { font-size: 0.55rem; font-weight: 600; letter-spacing: 0.22em; color: var(--c-champagne); text-transform: uppercase; display: block; margin-bottom: 4px; }
.gallery-item__caption .name { font-family: var(--f-display); font-size: 1.1rem; }
.gallery-item[data-hidden] { display: none; }

/* ─── COLLECTION DETAIL PAGE ─── */
.collection-intro {
  padding: 80px 0 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.collection-intro__brand { font-family: var(--f-display); font-size: 3.5rem; font-weight: 300; font-style: italic; color: var(--c-bordeaux); line-height: 1; margin-bottom: 16px; }
.collection-intro__count { font-size: 0.60rem; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase; color: var(--c-champagne); }
.collection-intro__desc { font-size: 1rem; line-height: 1.95; color: var(--c-taupe); font-weight: 300; margin-bottom: 32px; }
.collection-dresses-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; padding-bottom: 100px; }

/* ─── APPOINTMENT PAGE ─── */
.rdv-section { padding: 90px 0 120px; }
.rdv-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 100px; align-items: start; }
.rdv-info h2 { margin-bottom: 22px; }
.rdv-info p { font-size: 0.92rem; color: var(--c-taupe); line-height: 1.95; font-weight: 300; margin-bottom: 40px; }
.contact-list { display: flex; flex-direction: column; gap: 18px; margin-bottom: 40px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.ci-icon { width: 42px; height: 42px; flex-shrink: 0; background: var(--c-parchment); display: flex; align-items: center; justify-content: center; color: var(--c-bordeaux); font-size: 0.85rem; }
.ci-body { font-size: 0.85rem; color: var(--c-taupe); line-height: 1.7; }
.ci-body strong { display: block; font-size: 0.60rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--c-warm-black); margin-bottom: 3px; }
.rdv-form { display: flex; flex-direction: column; gap: 18px; background: var(--c-parchment); padding: 50px 44px; }
.rdv-form h3 { font-family: var(--f-display); font-size: 1.8rem; margin-bottom: 8px; }
.rdv-form .form-subtitle { font-size: 0.8rem; color: var(--c-taupe); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-warm-black); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 16px;
  background: var(--c-ivory);
  border: 1px solid transparent;
  border-bottom: 1px solid var(--c-champagne-light);
  font-size: 0.88rem;
  color: var(--c-warm-black);
  transition: all var(--t-fast);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-bottom-color: var(--c-bordeaux); background: var(--c-white); }
.form-group textarea { min-height: 110px; resize: vertical; }
.form-check { display: flex; align-items: flex-start; gap: 10px; }
.form-check input { width: auto; margin-top: 2px; accent-color: var(--c-bordeaux); }
.form-check label { font-size: 0.78rem; color: var(--c-taupe); font-weight: 400; text-transform: none; letter-spacing: 0; }

/* ─── ABOUT PAGE ─── */
.about-section { padding: 90px 0 110px; }
.about-layout { display: grid; grid-template-columns: 3fr 2fr; gap: 80px; align-items: start; }
.about-body h2 { margin-bottom: 28px; }
.about-body p { font-size: 0.95rem; color: var(--c-taupe); line-height: 1.95; font-weight: 300; margin-bottom: 24px; }
.about-body blockquote {
  padding: 24px 28px 24px 32px;
  margin: 36px 0;
  font-family: var(--f-display);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--c-bordeaux);
  line-height: 1.5;
  background: var(--c-blush);
}
.about-sidebar { position: sticky; top: 110px; }
.sidebar-card { background: var(--c-parchment); padding: 36px; margin-bottom: 20px; }
.sidebar-card h5 { color: var(--c-gold-dark); margin-bottom: 16px; }
.team-members { display: flex; flex-direction: column; gap: 14px; }
.team-member { display: flex; align-items: center; gap: 14px; }
.team-avatar { width: 48px; height: 48px; border-radius: 50%; background: linear-gradient(135deg, var(--c-champagne-light), var(--c-champagne)); display: flex; align-items: center; justify-content: center; font-family: var(--f-display); font-size: 1.1rem; color: var(--c-warm-black); flex-shrink: 0; }
.team-name { font-size: 0.85rem; font-weight: 500; color: var(--c-warm-black); }
.team-role { font-size: 0.72rem; color: var(--c-taupe); }

/* ─── LIGHTBOX ─── */
#lightbox {
  position: fixed; inset: 0;
  background: oklch(10% 0.018 40 / 0.97);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s;
}
#lightbox.open { opacity: 1; visibility: visible; }
.lightbox-close {
  position: absolute; top: 28px; right: 28px;
  width: 48px; height: 48px;
  border: 1px solid oklch(97% 0.007 68 / 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ivory);
  font-size: 1.2rem;
  cursor: pointer;
  transition: all var(--t-fast);
}
.lightbox-close:hover { background: var(--c-ivory); color: var(--c-warm-black); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 50px; height: 50px;
  border: 1px solid oklch(97% 0.007 68 / 0.18);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-ivory); font-size: 1rem; cursor: pointer;
  transition: all var(--t-fast);
}
.lightbox-prev { left: 28px; }
.lightbox-next { right: 28px; }
.lightbox-prev:hover, .lightbox-next:hover { background: oklch(97% 0.007 68 / 0.10); }
.lightbox-img { max-height: 82vh; max-width: 55vw; object-fit: contain; }
.lightbox-caption { position: absolute; bottom: 30px; left: 0; right: 0; text-align: center; }
.lightbox-caption .brand { font-size: 0.58rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--c-champagne); display: block; margin-bottom: 5px; }
.lightbox-caption .name { font-family: var(--f-display); font-size: 1.4rem; color: var(--c-ivory); font-style: italic; }

/* ─── REVEAL ANIMATIONS ─── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.08s; }
.reveal-d2 { transition-delay: 0.16s; }
.reveal-d3 { transition-delay: 0.24s; }
.reveal-d4 { transition-delay: 0.32s; }
.reveal-d5 { transition-delay: 0.40s; }
.reveal-d6 { transition-delay: 0.48s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ─── REDUCED MOTION ─── */
@media (prefers-reduced-motion: reduce) {
  .reveal,
  .hero__eyebrow, .hero__title, .hero__sub, .hero__actions,
  .hero__scroll-hint, .loader-logo, .loader-line {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

/* ─── UTILITY ─── */
.text-center { text-align: center; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }

/* ─── RESPONSIVE ─── */
@media (max-width: 1200px) {
  :root { --gutter: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .collections-grid .collection-card:first-child { grid-row: span 1; }
  .collections-grid .collection-card:nth-child(4) { grid-column: span 1; }
  .featured-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .collection-dresses-grid { grid-template-columns: repeat(3, 1fr); }
  .rdv-layout { gap: 60px; }
  .about-layout { grid-template-columns: 1fr; }
  .about-sidebar { position: static; }
}
@media (max-width: 900px) {
  .main-nav, .nav-rdv .btn-rdv { display: none; }
  .hamburger { display: flex; }
  .section-about { grid-template-columns: 1fr; }
  .about-visual { min-height: 320px; position: relative; }
  .about-text { padding: 60px 32px; }
  .rdv-layout { grid-template-columns: 1fr; gap: 50px; }
  .rdv-form { padding: 36px 28px; }
  .collection-intro { grid-template-columns: 1fr; gap: 32px; }
  .about-layout { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 40px 0; }
  .stat-item + .stat-item::before { display: none; }
}
@media (max-width: 680px) {
  :root { --gutter: 20px; --header-h: 72px; }
  .hero__title { font-size: clamp(2.4rem, 10vw, 3.8rem); }
  .collections-grid { grid-template-columns: 1fr; gap: 12px; }
  .featured-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .collection-dresses-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom-inner { flex-direction: column; gap: 12px; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__scroll-hint { display: none; }
  .section-cta { padding: 100px 0; }
  h1 { font-size: clamp(2rem, 9vw, 3rem); }
  h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 420px) {
  .gallery-grid, .featured-grid { grid-template-columns: 1fr; }
  .collection-dresses-grid { grid-template-columns: 1fr; }
}

/* ── Brand logo strip ─────────────────────────────── */
.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  text-decoration: none;
}
.brand-logo-item:hover { opacity: 1; }
.brand-logo-item img {
  max-height: 52px;
  max-width: 160px;
  width: auto;
  object-fit: contain;
}
.brand-logo-item--text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--c-dark);
}

/* ── Collection intro logo ───────────────────────── */
.collection-intro__logo {
  max-height: 56px;
  max-width: 180px;
  width: auto;
  object-fit: contain;
  margin-bottom: 10px;
  display: block;
}
