/* =========================================
   UN INSTANT D'ÉMOTION — STYLESHEET
   Boutique de robes de mariée · Le Quesnoy
   ========================================= */

/* GOOGLE FONTS */
@import url('https://fonts.googleapis.com/css2?family=Alex+Brush&family=Gilda+Display&family=Nunito:wght@300;400;600&display=swap');

/* =========================================
   VARIABLES
   ========================================= */
:root {
  /* Fonds */
  --c-cream:      oklch(97.8% 0.008 60);
  --c-blush-bg:   oklch(94.5% 0.012 18);

  /* Accents */
  --c-rose:       oklch(68.0% 0.065 12);
  --c-rose-light: oklch(84.0% 0.030 14);
  --c-mauve:      oklch(55.0% 0.055 340);

  /* Texte */
  --c-ink:        oklch(18.0% 0.015 30);
  --c-text-soft:  oklch(48.0% 0.020 25);

  /* Utilitaires */
  --c-white:      oklch(99.5% 0.000 0);
  --c-border:     oklch(89.0% 0.010 20);

  /* Layout */
  --container:    1320px;
  --gutter:       40px;
  --header-h:     104px;
}

/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 300;
  color: var(--c-ink);
  background: var(--c-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

ul, ol {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  font-family: inherit;
}

/* =========================================
   TYPOGRAPHIE
   ========================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Gilda Display', serif;
  font-weight: 400;
  line-height: 1.2;
}

.script {
  font-family: 'Alex Brush', cursive;
  font-weight: 400;
  line-height: 1.2;
}

/* =========================================
   LAYOUT
   ========================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}


/* =========================================
   NAVIGATION
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 100;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

.site-header.scrolled,
.site-header.light-hero {
  background: var(--c-cream);
  box-shadow: 0 1px 24px oklch(18% 0.015 30 / 0.07);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 32px;
}

/* Logo */
.logo-link {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.logo-img {
  height: 92px;
  width: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
  background: oklch(99% 0.004 60);
  border-radius: 50%;
  padding: 5px;
}

.logo-img:hover {
  opacity: 0.85;
}

/* Nav centrale */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2.8rem;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: oklch(99.5% 0 0 / 0.88);
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--c-rose);
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link:focus::after {
  width: 100%;
}

.site-header.scrolled .nav-link,
.site-header.light-hero .nav-link {
  color: var(--c-ink);
}

.nav-link:hover {
  color: var(--c-rose);
}

.nav-arrow {
  font-size: 0.55rem;
  display: inline-block;
  transition: transform 0.3s ease;
  margin-top: 1px;
}

.dropdown-toggle[aria-expanded="true"] .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown panels */
.dropdown-panel {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  border-radius: 10px;
  box-shadow: 0 16px 48px oklch(18% 0.015 30 / 0.10);
  min-width: 230px;
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  pointer-events: none;
}

/* Bridge the 20px gap so hover doesn't break when moving cursor toward the panel */
.dropdown-panel::before {
  content: '';
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.has-dropdown:hover .dropdown-panel,
.dropdown-toggle[aria-expanded="true"] + .dropdown-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-panel a {
  display: block;
  padding: 10px 22px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.84rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--c-ink);
  transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
}

.dropdown-panel a:hover {
  color: var(--c-rose);
  background: var(--c-blush-bg);
  padding-left: 28px;
}

/* Dropdown visuel (marques avec cartes photo + vidéo hero) */
.dropdown-panel.dropdown-visual {
  min-width: 560px;
  padding: 12px;
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 10px;
  align-items: stretch;
}

/* Vidéo hero dans le dropdown */
.dropdown-hero-video {
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
  min-height: 200px;
}

.dropdown-hero-video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
}

/* Grille de cartes dans le dropdown */
.dropdown-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.dropdown-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  padding: 0 !important;
  background: none !important;
}

.dropdown-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px oklch(18% 0.015 30 / 0.14);
  background: none !important;
  padding-left: 0 !important;
  color: inherit;
}

.dropdown-card-img {
  width: 100%;
  aspect-ratio: 2/3;
  overflow: hidden;
  background: var(--c-blush-bg);
  border-radius: 6px 6px 0 0;
}

.dropdown-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 10%;
  display: block;
  transition: transform 0.35s ease;
}

.dropdown-card:hover .dropdown-card-img img {
  transform: scale(1.05);
}

.dropdown-card-label {
  padding: 6px 4px 4px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: var(--c-ink);
  text-transform: uppercase;
}

.dropdown-card[aria-current="page"] .dropdown-card-label {
  color: var(--c-rose);
  font-weight: 600;
}

/* CTA header */
.btn-rdv {
  flex-shrink: 0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--c-rose);
  color: var(--c-white);
  padding: 12px 24px;
  border-radius: 999px;
  white-space: nowrap;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-rdv:hover {
  background: var(--c-mauve);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px oklch(68% 0.065 12 / 0.35);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
}

.mobile-toggle span {
  display: block;
  width: 26px;
  height: 1.5px;
  background: var(--c-white);
  border-radius: 2px;
  transition: background 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.site-header.scrolled .mobile-toggle span,
.site-header.light-hero .mobile-toggle span {
  background: var(--c-ink);
}

.mobile-toggle.open span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.mobile-toggle.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-toggle.open span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

/* =========================================
   MOBILE DRAWER
   ========================================= */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(340px, 88vw);
  height: 100dvh;
  background: var(--c-cream);
  z-index: 200;
  padding: 84px 32px 40px;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: oklch(18% 0.015 30 / 0.45);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  position: absolute;
  top: 28px;
  right: 28px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--c-text-soft);
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s ease;
}

.drawer-close:hover {
  color: var(--c-rose);
}

.drawer-list {
  display: flex;
  flex-direction: column;
}

.drawer-category {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--c-rose);
  padding: 20px 0 8px;
}

.drawer-sub {
  padding-left: 0;
  margin-bottom: 8px;
}

.drawer-sub li a {
  display: block;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--c-text-soft);
  padding: 7px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.drawer-sub li a:hover {
  color: var(--c-rose);
  padding-left: 8px;
}

.drawer-item > a {
  display: block;
  font-size: 0.84rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink);
  padding: 16px 0;
  border-bottom: 1px solid var(--c-border);
  transition: color 0.2s ease;
}

.drawer-item > a:hover {
  color: var(--c-rose);
}

.drawer-item .btn-rdv {
  margin-top: 24px;
  display: inline-block;
  letter-spacing: 0.1em;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 260px;
  background: linear-gradient(to bottom, oklch(18% 0.015 30 / 0.55) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    155deg,
    oklch(84% 0.022 18) 0%,
    oklch(76% 0.032 14) 35%,
    oklch(68% 0.042 10) 65%,
    oklch(60% 0.038 8)  100%
  );
  z-index: 0;
}

.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
}

.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  display: block;
}

.hero-img-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(
    to bottom,
    oklch(18% 0.015 30 / 0.45) 0%,
    oklch(18% 0.015 30 / 0.52) 50%,
    oklch(18% 0.015 30 / 0.80) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 0 var(--gutter);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.hero-eyebrow {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: var(--c-white);
  opacity: 0.92;
  text-shadow: 0 2px 16px oklch(0% 0 0 / 0.45);
  animation: heroIn 0.9s ease 0.2s both;
}

.hero-h1 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(3rem, 7.5vw, 6rem);
  color: var(--c-white);
  line-height: 1.08;
  text-shadow: 0 2px 24px oklch(0% 0 0 / 0.55);
  animation: heroIn 0.9s ease 0.38s both;
}

.hero-sub {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(0.78rem, 1.5vw, 0.9rem);
  font-weight: 300;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(99.5% 0 0 / 0.72);
  animation: heroIn 0.9s ease 0.54s both;
}

.btn-hero {
  margin-top: 8px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: oklch(99.5% 0 0 / 0.18);
  color: var(--c-white);
  border: 1.5px solid oklch(99.5% 0 0 / 0.55);
  padding: 16px 44px;
  border-radius: 999px;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  transition: background 0.35s ease, color 0.35s ease, border-color 0.35s ease, transform 0.2s ease, box-shadow 0.35s ease;
  animation: heroIn 0.9s ease 0.7s both;
}

.btn-hero:hover {
  background: var(--c-rose);
  color: var(--c-white);
  border-color: var(--c-rose);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px oklch(68% 0.065 12 / 0.4);
}

@keyframes heroIn {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* =========================================
   CITATION
   ========================================= */
.citation-section {
  background: var(--c-blush-bg);
  padding: 80px 0;
}

.citation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.citation-rule {
  width: 72px;
  height: 1px;
  background: var(--c-rose-light);
  flex-shrink: 0;
}

.citation-text {
  font-family: 'Gilda Display', serif;
  font-style: italic;
  font-size: clamp(1.15rem, 2.5vw, 1.65rem);
  text-align: center;
  color: var(--c-ink);
  max-width: 660px;
  line-height: 1.55;
  quotes: none;
}

/* =========================================
   LAËTILIA
   ========================================= */
.laetilia-section {
  background: var(--c-cream);
  padding: 120px 0;
}

.laetilia-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 100px;
}

/* Édito centré (sans photo) */
.laetilia-edito {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.laetilia-edito-title {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  color: var(--c-ink);
  margin-bottom: 40px;
  line-height: 1.2;
  font-style: italic;
}

.laetilia-edito .laetilia-para {
  font-family: 'Nunito', sans-serif;
  font-size: 1.18rem;
  line-height: 2;
  color: var(--c-text-soft);
  margin-bottom: 28px;
}

.laetilia-edito .laetilia-sign {
  font-family: 'Gilda Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--c-ink);
  margin-bottom: 40px;
}

.laetilia-edito .link-text {
  display: inline-block;
  margin-top: 8px;
}

.laetilia-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-blush-bg);
}

.laetilia-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.laetilia-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 32px;
}

.laetilia-photo-label {
  font-family: 'Alex Brush', cursive;
  font-size: 2.2rem;
  color: oklch(48% 0.020 25 / 0.4);
}

.laetilia-content {}

.section-eyebrow {
  display: block;
  font-family: 'Alex Brush', cursive;
  font-size: 2rem;
  color: var(--c-rose);
  margin-bottom: 14px;
  line-height: 1.2;
}

.laetilia-content h2 {
  font-size: clamp(1.7rem, 2.8vw, 2.5rem);
  margin-bottom: 24px;
  line-height: 1.25;
}

.laetilia-para {
  font-size: 1.04rem;
  line-height: 1.85;
  color: var(--c-text-soft);
  margin-bottom: 32px;
}

.link-text {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--c-ink);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 5px;
  text-decoration-color: var(--c-rose-light);
  transition: color 0.3s ease, text-decoration-color 0.3s ease;
}

.link-text:hover {
  color: var(--c-rose);
  text-decoration-color: var(--c-rose);
}

/* =========================================
   STATS
   ========================================= */
.stats-section {
  background: var(--c-blush-bg);
  padding: 100px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 40px 24px;
}

.stat-number {
  font-family: 'Gilda Display', serif;
  font-size: clamp(3.5rem, 5.5vw, 5rem);
  color: var(--c-rose);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-soft);
}

/* =========================================
   SECTION HEADER COMMUN
   ========================================= */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-eyebrow {
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

/* =========================================
   COLLECTIONS GRID
   ========================================= */
.collections-section {
  background: var(--c-cream);
  padding: 120px 0;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.collection-card {
  display: block;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.collection-card:focus-visible {
  outline: 2px solid var(--c-rose);
  outline-offset: 3px;
}

.card-img-wrap {
  position: relative;
  aspect-ratio: 2 / 3;
  background: var(--c-blush-bg);
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-card:hover .card-img-wrap img {
  transform: scale(1.05);
}

.card-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img-placeholder span {
  font-family: 'Alex Brush', cursive;
  font-size: 2.5rem;
  color: oklch(48% 0.020 25 / 0.25);
}

.card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
  opacity: 1;
  z-index: 2;
}

.card-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0% 0 0 / 0.55) 0%, transparent 55%);
  z-index: -1;
}

.card-name {
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.4rem, 2vw, 2rem);
  color: var(--c-white);
  text-align: center;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

.card-action {
  font-family: 'Nunito', sans-serif;
  font-size: 0.76rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-white);
  text-decoration: underline;
  text-underline-offset: 4px;
  position: relative;
  z-index: 1;
}

/* =========================================
   SECTION INTRO TEXT
   ========================================= */
.section-intro {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  color: var(--c-text-soft);
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 16px;
}

/* =========================================
   CORTÈGE & ACCESSOIRES
   ========================================= */
.cortege-section {
  background: var(--c-cream);
  padding: 120px 0 100px;
}

.cortege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 56px;
}

.cortege-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 36px 24px;
  border: 1px solid var(--c-border);
  border-radius: 2px;
  background: var(--c-white);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.cortege-item:hover {
  box-shadow: 0 8px 32px oklch(0% 0 0 / 0.05);
  transform: translateY(-3px);
}

.cortege-icon {
  color: var(--c-rose);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cortege-item h3 {
  font-family: 'Gilda Display', serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--c-ink);
}

.cortege-item p {
  font-size: 0.88rem;
  color: var(--c-text-soft);
  line-height: 1.7;
}

/* Tags services */
.cortege-services {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  padding-top: 8px;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border: 1px solid var(--c-rose-light);
  border-radius: 40px;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--c-mauve);
  background: oklch(94.5% 0.012 18 / 0.4);
  letter-spacing: 0.02em;
}

.service-tag svg {
  color: var(--c-rose);
  flex-shrink: 0;
}

/* Laëtilia signature paragraph */
.laetilia-sign {
  font-family: 'Alex Brush', cursive;
  font-size: 1.25rem;
  color: var(--c-rose);
  line-height: 1.6;
}

/* =========================================
   VALEURS
   ========================================= */
.valeurs-section {
  background: var(--c-blush-bg);
  padding: 120px 0;
}

.valeurs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.valeur-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.valeur-icon {
  color: var(--c-rose);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.valeur-item h3 {
  font-size: clamp(1.1rem, 1.8vw, 1.3rem);
}

.valeur-item p {
  font-size: 0.92rem;
  line-height: 1.8;
  color: var(--c-text-soft);
  max-width: 280px;
}

/* =========================================
   MARQUES
   ========================================= */
.marques-section {
  background: var(--c-cream);
  padding: 80px 0;
}

.marques-title {
  font-size: clamp(1.5rem, 2.5vw, 2.1rem);
  text-align: center;
  margin-bottom: 52px;
}

.marques-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 32px;
}

.marque-item {
  padding: 12px 20px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.65;
  cursor: default;
}

.marque-item:hover {
  opacity: 1;
  transform: scale(1.05);
}

.marque-item img {
  height: 40px;
  width: auto;
  object-fit: contain;
  filter: grayscale(80%);
  transition: filter 0.3s ease;
}

.marque-item:hover img {
  filter: grayscale(0%);
}

.marque-name {
  font-family: 'Gilda Display', serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
}

/* =========================================
   CTA RENDEZ-VOUS
   ========================================= */
.cta-rdv-section {
  background: var(--c-ink);
  overflow: hidden;
}

.cta-rdv-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 110px clamp(24px, 6vw, 80px);
  gap: 22px;
}

.cta-rdv-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.cta-rdv-image {
  position: relative;
  overflow: hidden;
}

.cta-rdv-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.cta-rdv-image:hover img {
  transform: scale(1.03);
}

.cta-rdv-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px clamp(40px, 6vw, 96px);
  gap: 22px;
}

.cta-rdv-eyebrow {
  font-family: 'Alex Brush', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--c-rose-light);
  line-height: 1.2;
}

.cta-rdv-h2 {
  font-family: 'Gilda Display', serif;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: var(--c-white);
  max-width: 480px;
  line-height: 1.2;
}

.cta-rdv-para {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.85;
  color: oklch(97.8% 0.008 60 / 0.68);
  max-width: 400px;
}

.btn-rdv-primary {
  margin-top: 12px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-rose);
  color: var(--c-white);
  padding: 18px 52px;
  border-radius: 999px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.btn-rdv-primary:hover {
  background: var(--c-mauve);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px oklch(55% 0.055 340 / 0.4);
}

/* =========================================
   FOOTER
   ========================================= */
.site-footer {
  background: var(--c-ink);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 48px 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid oklch(97.8% 0.008 60 / 0.08);
}

.footer-logo-img {
  height: 46px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: 'Gilda Display', serif;
  font-style: italic;
  font-size: 0.98rem;
  line-height: 1.5;
  color: oklch(97.8% 0.008 60 / 0.55);
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 14px;
  align-items: center;
}

.footer-social {
  color: oklch(97.8% 0.008 60 / 0.45);
  display: flex;
  align-items: center;
  transition: color 0.3s ease, transform 0.2s ease;
}

.footer-social:hover {
  color: var(--c-rose);
  transform: translateY(-1px);
}

.footer-heading {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(97.8% 0.008 60 / 0.38);
  margin-bottom: 22px;
}

.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-links a {
  font-size: 0.82rem;
  font-weight: 300;
  color: oklch(97.8% 0.008 60 / 0.62);
  transition: color 0.25s ease, padding-left 0.25s ease;
  display: block;
}

.footer-nav-links a:hover {
  color: var(--c-rose);
  padding-left: 4px;
}

.horaires {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.horaires td {
  font-size: 0.78rem;
  font-weight: 300;
  padding: 4px 0;
  vertical-align: top;
}

.horaires td:first-child {
  color: oklch(97.8% 0.008 60 / 0.40);
  padding-right: 20px;
  min-width: 80px;
}

.horaires td:last-child {
  color: oklch(97.8% 0.008 60 / 0.65);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-phone {
  font-size: 0.92rem;
  color: oklch(97.8% 0.008 60 / 0.8);
  font-weight: 400;
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}

.footer-phone:hover {
  color: var(--c-rose);
}

.footer-address {
  font-size: 0.78rem;
  color: oklch(97.8% 0.008 60 / 0.40);
  font-weight: 300;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
}

.footer-copyright {
  font-size: 0.72rem;
  color: oklch(97.8% 0.008 60 / 0.25);
  letter-spacing: 0.04em;
}

/* =========================================
   SCROLL REVEAL
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   PAGE INNER LAYOUT (secondary pages)
   ========================================= */
.page-hero {
  padding-top: var(--header-h);
  background: var(--c-blush-bg);
  padding-bottom: 80px;
}

.page-hero-inner {
  padding-top: 80px;
  text-align: center;
}

.page-eyebrow {
  display: block;
  font-family: 'Alex Brush', cursive;
  font-size: 2.2rem;
  color: var(--c-rose);
  margin-bottom: 12px;
}

.page-h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}

.page-intro {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--c-text-soft);
  max-width: 600px;
  margin: 0 auto;
}

.page-content {
  padding: 100px 0;
}

/* =========================================
   COLLECTION PAGE
   ========================================= */

/* ── HERO COLLECTION (plein écran cinématique) ─── */
.collection-hero {
  position: relative;
  min-height: 65vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.collection-hero-bg {
  position: absolute;
  inset: 0;
}

.collection-hero-bg img,
.collection-hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  display: block;
}

.collection-hero-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      oklch(12% 0.008 30 / 0.55) 0%,
      transparent 25%
    ),
    linear-gradient(
      to top,
      oklch(10% 0.006 30 / 0.97) 0%,
      oklch(10% 0.006 30 / 0.80) 25%,
      oklch(10% 0.006 30 / 0.40) 50%,
      transparent 70%
    );
}

.collection-hero-body {
  position: relative;
  z-index: 1;
  padding-bottom: 80px;
}

.collection-hero-logo {
  margin-bottom: 20px;
}

.collection-hero-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.85;
}

.collection-hero-eyebrow {
  display: block;
  font-family: 'Alex Brush', cursive;
  font-size: 1.6rem;
  color: oklch(84% 0.10 10);
  margin-bottom: 6px;
}

.collection-hero-name {
  font-family: 'Gilda Display', serif;
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  color: oklch(97% 0.004 60);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  text-shadow: 0 2px 16px oklch(8% 0.005 30 / 0.50);
}

.collection-hero-desc {
  font-family: 'Nunito', sans-serif;
  font-size: 1rem;
  color: oklch(90% 0.008 60);
  max-width: 500px;
  line-height: 1.80;
  margin-bottom: 36px;
  text-shadow: 0 1px 8px oklch(8% 0.005 30 / 0.60);
}

.btn-rdv-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: oklch(97% 0.004 60);
  border: 1px solid oklch(97% 0.004 60 / 0.50);
  padding: 14px 28px;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.btn-rdv-light:hover {
  background: oklch(97% 0.004 60);
  color: oklch(22% 0.01 30);
  border-color: transparent;
}

.dresses-section {
  padding: 100px 0;
  background: var(--c-cream);
}

/* ── GRILLE COLLECTION (éditoriale) ──────────────── */
.dresses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

/* Carte robe */
.dress-card {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.dress-img-wrap {
  aspect-ratio: 2 / 3;
  background: var(--c-blush-bg);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.dress-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
}

.dress-card:hover .dress-img-wrap img {
  transform: scale(1.07);
}

/* Overlay au survol */
.dress-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    oklch(14% 0.01 30 / 0.80) 0%,
    oklch(14% 0.01 30 / 0.20) 55%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dress-card:hover .dress-card-overlay {
  opacity: 1;
}

.dress-card-name {
  font-family: 'Gilda Display', serif;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: 0.02em;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  display: block;
}

.dress-card-cta {
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: oklch(88% 0.06 10);
  margin-top: 6px;
  transform: translateY(10px);
  transition: transform 0.4s ease 0.05s;
  display: block;
}

.dress-card:hover .dress-card-name,
.dress-card:hover .dress-card-cta {
  transform: translateY(0);
}

/* ── PAGE PRODUIT ROBE ───────────────────────────── */
.product-page-main {
  padding: calc(var(--header-h, 88px) + 32px) 0 100px;
  background: var(--c-cream);
  min-height: 100vh;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 48px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
}

.product-breadcrumb a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--c-rose);
  text-decoration: none;
  transition: opacity 0.2s;
}

.product-breadcrumb a:hover { opacity: 0.7; }

.product-breadcrumb span {
  color: var(--c-text-soft);
}

.product-breadcrumb span::before {
  content: '/';
  margin-right: 10px;
  opacity: 0.35;
}

/* Layout 2 colonnes */
.product-layout {
  display: grid;
  grid-template-columns: 58fr 42fr;
  gap: 72px;
  align-items: start;
}

/* Galerie gauche */
.product-gallery {
  position: sticky;
  top: calc(var(--header-h, 88px) + 24px);
  height: calc(100vh - var(--header-h, 88px) - 48px);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product-main-photo {
  flex: 1 1 0;
  min-height: 0;
  border-radius: 4px;
  overflow: hidden;
  background: var(--c-blush-bg);
  position: relative;
}

/* Flèches navigation photo */
.photo-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: oklch(99% 0.006 30 / 0.88);
  border: 1px solid oklch(78% 0.04 10 / 0.30);
  border-radius: 50%;
  color: oklch(38% 0.04 20);
  cursor: pointer;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  padding: 0;
}

.photo-arrow:hover {
  background: oklch(99% 0.006 30);
  border-color: oklch(68% 0.10 10 / 0.45);
  color: oklch(48% 0.12 10);
  transform: translateY(-50%) scale(1.06);
}

.photo-arrow--prev { left: 12px; }
.photo-arrow--next { right: 12px; }

.product-main-photo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  transition: opacity 0.3s ease;
}

/* Vignettes produit (bande horizontale) */
.product-thumbs {
  display: flex;
  gap: 10px;
}

.product-thumb {
  flex: 0 0 auto;
  width: 72px;
  aspect-ratio: 2 / 3;
  border-radius: 3px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--c-blush-bg);
  padding: 0;
  cursor: pointer;
  opacity: 0.45;
  transition: border-color 0.2s ease, opacity 0.25s ease;
}

.product-thumb.is-active {
  border-color: var(--c-rose);
  opacity: 1;
}

.product-thumb:hover {
  opacity: 0.85;
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Vignette vidéo */
.product-thumb.product-video-thumb {
  position: relative;
}

.product-thumb .video-play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* Vidéo principale (page produit) */
.product-main-photo video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  background: var(--c-charcoal);
}

/* Infos droite */
.product-info {
  padding-top: 12px;
  display: flex;
  flex-direction: column;
}

.product-eyebrow {
  font-family: 'Alex Brush', cursive;
  font-size: 1.35rem;
  color: var(--c-rose);
  display: block;
  margin-bottom: 10px;
}

.product-name {
  font-family: 'Gilda Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.12;
  color: var(--c-ink);
  margin-bottom: 8px;
  font-weight: 400;
}

.product-silhouette {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 36px;
}

.product-description {
  font-family: 'Nunito', sans-serif;
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--c-text-soft);
  margin-bottom: 32px;
}

.product-cta-btn {
  display: inline-block;
  margin-bottom: 48px;
}

/* Navigation prev/next */
.product-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 24px 0;
  border-top: 1px solid var(--c-border);
  border-bottom: 1px solid var(--c-border);
  margin-bottom: 28px;
}

.product-nav-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  font-family: 'Nunito', sans-serif;
  font-size: 0.82rem;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--c-ink);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.product-nav-btn:hover {
  color: var(--c-rose);
  gap: 12px;
}

.product-nav-next {
  flex-direction: row-reverse;
  text-align: right;
}

.product-nav-next:hover {
  flex-direction: row-reverse;
}

.product-nav-btn svg { flex-shrink: 0; }

.product-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Nunito', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--c-text-soft);
  text-decoration: none;
  transition: color 0.2s ease;
}

.product-back-link:hover { color: var(--c-rose); }

/* =========================================
   GALERIE
   ========================================= */
.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.galerie-item {
  aspect-ratio: 2 / 3;
  background: var(--c-blush-bg);
  border-radius: 4px;
  overflow: hidden;
}

.galerie-item:nth-child(3n+2) {
  aspect-ratio: 3 / 4;
}

.galerie-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.galerie-item:hover img {
  transform: scale(1.04);
}

/* =========================================
   RENDEZ-VOUS
   ========================================= */
.rdv-section {
  background: var(--c-cream);
  padding: 100px 0;
}

.rdv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.rdv-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 24px;
}

.rdv-info p {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--c-text-soft);
  margin-bottom: 32px;
}

.rdv-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.rdv-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.rdv-detail-icon {
  color: var(--c-rose);
  flex-shrink: 0;
  margin-top: 2px;
}

.rdv-detail-text {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--c-text-soft);
}

.rdv-detail-text strong {
  display: block;
  font-weight: 600;
  color: var(--c-ink);
  margin-bottom: 2px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: 'Nunito', sans-serif;
}

.rdv-form {
  background: var(--c-blush-bg);
  padding: 48px;
  border-radius: 12px;
}

.rdv-form h3 {
  font-size: 1.6rem;
  margin-bottom: 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-text-soft);
  margin-bottom: 8px;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--c-ink);
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  padding: 13px 16px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--c-rose);
  box-shadow: 0 0 0 3px oklch(68% 0.065 12 / 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.btn-submit {
  width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--c-rose);
  color: var(--c-white);
  border: none;
  padding: 16px;
  border-radius: 999px;
  cursor: pointer;
  margin-top: 8px;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.btn-submit:hover {
  background: var(--c-mauve);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px oklch(55% 0.055 340 / 0.35);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1280px) {
  :root { --gutter: 32px; }

  .laetilia-inner { gap: 64px; }
}

@media (max-width: 1023px) {
  :root { --gutter: 28px; }

  .main-nav,
  .btn-rdv {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
  }

  .laetilia-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .laetilia-photo {
    max-width: 480px;
    margin: 0 auto;
  }

  .dresses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .collection-hero {
    min-height: 52vh;
    align-items: center;
  }

  .collection-hero-body {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .collection-hero-name {
    font-size: clamp(2.4rem, 10vw, 3.6rem);
  }

  .collection-hero-desc {
    font-size: 0.92rem;
  }

  .rdv-inner {
    grid-template-columns: 1fr;
    gap: 56px;
  }
}

@media (max-width: 768px) {
  :root {
    --gutter: 20px;
    --header-h: 72px;
  }

  .logo-img {
    height: 56px;
  }

  .collections-grid {
    grid-template-columns: 1fr;
  }

  .valeurs-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .collections-section,
  .laetilia-section,
  .valeurs-section,
  .cortege-section {
    padding: 80px 0;
  }

  .stats-section {
    padding: 80px 0;
  }

  .cta-rdv-split {
    grid-template-columns: 1fr;
  }

  .cta-rdv-image {
    height: 340px;
  }

  .cta-rdv-content {
    padding: 64px 32px;
    align-items: center;
    text-align: center;
  }

  .cta-rdv-h2,
  .cta-rdv-para {
    max-width: 100%;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cortege-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .rdv-form {
    padding: 32px 24px;
  }

  .galerie-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dresses-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .dresses-section {
    padding: 56px 0;
  }

  .section-header {
    margin-bottom: 36px;
  }

  .collections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .card-img-wrap {
    aspect-ratio: 3 / 4;
  }

  .card-name {
    font-size: 1.05rem;
  }

  .collections-section {
    padding: 64px 0;
  }
}

@media (max-width: 640px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .cortege-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-h1 {
    font-size: 2.8rem;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   BARRE DE FILTRES SILHOUETTE
   ========================================= */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 48px;
}

.filter-btn {
  padding: 9px 24px;
  border: 1px solid var(--c-border);
  background: transparent;
  color: var(--c-text-soft);
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  border-radius: 1px;
}

.filter-btn:hover {
  border-color: var(--c-rose-light);
  color: var(--c-rose);
}

.filter-btn.is-active {
  background: var(--c-rose);
  border-color: var(--c-rose);
  color: var(--c-white);
}

.dress-card[hidden] {
  display: none;
}

@media (max-width: 600px) {
  .filter-bar {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    margin-bottom: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .filter-bar::-webkit-scrollbar {
    display: none;
  }

  .filter-btn {
    flex-shrink: 0;
    padding: 9px 18px;
    font-size: 0.72rem;
  }

  .hero-h1 {
    font-size: clamp(2.4rem, 11vw, 3rem);
  }

  .btn-rdv-light {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================
   TOUCH DEVICES — overlay cartes robes
   ========================================= */
@media (hover: none) {
  .dress-card-overlay {
    opacity: 1;
    background: linear-gradient(
      to top,
      oklch(10% 0.008 30 / 0.72) 0%,
      transparent 55%
    );
  }

  .dress-card-name,
  .dress-card-cta {
    transform: translateY(0);
  }
}

/* =========================================
   MOBILE GLOBAL — nav drawer, footer, misc
   ========================================= */
@media (max-width: 480px) {
  .dresses-grid {
    gap: 6px;
  }

  .drawer-close {
    top: 20px;
    right: 20px;
  }

  .mobile-toggle {
    padding: 10px;
  }

  .footer-grid {
    gap: 28px;
  }

  .cta-rdv-content {
    padding: 48px 20px;
  }

  .collection-hero-name {
    font-size: clamp(2.2rem, 12vw, 3rem);
  }

  .collection-hero-desc {
    font-size: 0.87rem;
    line-height: 1.65;
  }
}
