/* ============================================================
   Coco La Praline Pâtisserie V2
   Design system & styles (conversion-optimized, editorial feel)
   ============================================================ */

/* ----- Design tokens --------------------------------------- */
:root {
  /* Brand */
  --c-rose-50:  #FBF2EF;
  --c-rose-100: #F4DDD7;
  --c-rose-200: #EFC8BE;
  --c-rose-300: #D5A99D;
  --c-rose-400: #B07E6F;
  --c-brown-500: #8A5E3A;
  --c-brown-600: #724C2A;
  --c-brown-700: #5A3B1F;
  --c-brown-900: #2A1A0F;
  --c-gold: #A68671;
  --c-cream: #FAF6F2;
  --c-ivory: #FFFDF9;
  --c-white: #FFFFFF;
  --c-ink: #1F1A16;
  --c-muted: #6B5E54;
  --c-line: rgba(114, 76, 42, 0.16);

  /* Typography */
  --ff-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --ff-script: 'Allura', 'Great Vibes', cursive;

  /* Scale */
  --container: 1240px;
  --container-narrow: 880px;
  --radius-sm: 4px;
  --radius-md: 10px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* Motion */
  --t-fast: 150ms cubic-bezier(.2,.8,.2,1);
  --t-med:  280ms cubic-bezier(.2,.8,.2,1);
  --t-slow: 520ms cubic-bezier(.2,.8,.2,1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(30, 20, 10, 0.06);
  --shadow-md: 0 10px 30px -12px rgba(30, 20, 10, 0.18);
  --shadow-lg: 0 30px 70px -30px rgba(30, 20, 10, 0.35);
}

/* ----- Reset ----------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--c-ink);
  background: var(--c-cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: inherit; text-decoration: none; transition: color var(--t-fast), opacity var(--t-fast); }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.005em;
  margin: 0 0 0.75em;
  color: var(--c-brown-900);
}
p { margin: 0 0 1em; }
::selection { background: var(--c-rose-300); color: var(--c-white); }

/* ----- Layout ---------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }
.section { padding: clamp(4rem, 9vw, 7rem) 0; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--cream { background: var(--c-cream); }
.section--ivory { background: var(--c-ivory); }
.section--rose { background: var(--c-rose-50); }
.section--dark { background: var(--c-brown-900); color: var(--c-ivory); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--c-ivory); }

/* ----- Typography utilities -------------------------------- */
.eyebrow {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--c-brown-500);
  margin-bottom: 1rem;
}
.display-1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 6.5vw, 5.5rem);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
}
.display-2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.75rem);
  font-weight: 500;
  line-height: 1.05;
}
.lede {
  font-size: clamp(1.1rem, 1.4vw, 1.25rem);
  line-height: 1.55;
  color: var(--c-muted);
  max-width: 56ch;
}
.script { font-family: var(--ff-script); font-weight: 400; }
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 0.75rem; }
.mt-2 { margin-top: 1.5rem; }
.mt-4 { margin-top: 3rem; }
.mb-2 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 3rem; }

/* ----- Buttons --------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-pill);
  text-align: center;
  transition: transform var(--t-fast), box-shadow var(--t-med), background var(--t-fast), color var(--t-fast);
  border: 1.5px solid transparent;
  cursor: pointer;
  line-height: 1;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--c-brown-700);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn--secondary {
  background: transparent;
  color: var(--c-brown-700);
  border-color: var(--c-brown-600);
}
.btn--secondary:hover {
  background: var(--c-brown-600);
  color: var(--c-ivory);
}
.btn--ghost {
  background: var(--c-ivory);
  color: var(--c-brown-700);
}
.btn--ghost:hover { background: var(--c-white); }
.btn--invert {
  background: var(--c-ivory);
  color: var(--c-brown-900);
}
.btn--invert:hover { background: var(--c-cream); }
.btn--lg { padding: 1.15rem 2.25rem; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn svg { width: 16px; height: 16px; }

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.75rem;
}
.cta-row--center { justify-content: center; }

/* ----- Header ---------------------------------------------- */
.v2-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--c-cream);
  border-bottom: 1px solid transparent;
  transition: border-color var(--t-med), box-shadow var(--t-med);
}
.v2-header.scrolled {
  border-bottom-color: var(--c-line);
  box-shadow: 0 2px 12px rgba(30, 20, 10, 0.06);
}
.v2-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.85rem 0;
}
.v2-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}
.v2-brand img { height: 88px; width: auto; }
.v2-brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.v2-brand-name {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--c-brown-900);
  letter-spacing: 0.01em;
}
.v2-brand-tag {
  font-size: 0.7rem;
  color: var(--c-brown-500);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}
.v2-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.v2-nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-brown-900);
  position: relative;
  padding: 0.4rem 0;
}
.v2-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 2px;
  background: var(--c-brown-600);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
}
.v2-nav a:hover::after, .v2-nav a.active::after { transform: scaleX(1); }
.v2-nav a.active { color: var(--c-brown-700); }
.v2-header-cta { display: flex; align-items: center; gap: 1.5rem; }
.v2-header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--c-brown-700);
}
.v2-header-phone svg { width: 16px; height: 16px; }

.v2-nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--c-brown-900);
}
.v2-nav-toggle svg { width: 24px; height: 24px; }

@media (max-width: 960px) {
  .v2-brand-text { display: none; }
  .v2-header-phone span { display: none; }
}
@media (max-width: 820px) {
  .v2-nav-toggle { display: inline-flex; }
  .v2-nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--c-ivory);
    padding: 6rem 2rem 2rem;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--t-med), visibility var(--t-med);
    box-shadow: var(--shadow-lg);
    z-index: 60;
    overflow-y: auto;
  }
  .v2-nav.open {
    visibility: visible;
    opacity: 1;
    pointer-events: all;
  }
  .v2-nav ul { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .v2-nav a { font-size: 1.2rem; font-family: var(--ff-display); }
  .v2-header-cta .btn { padding: 0.7rem 1.25rem; font-size: 0.88rem; }
}

.v2-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(42, 26, 15, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--t-med);
  z-index: 40;
}
.v2-nav-backdrop.open { opacity: 1; pointer-events: all; }

/* ----- Hero (home) ----------------------------------------- */
.hero-v2 {
  position: relative;
  min-height: min(88vh, 780px);
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) 0 clamp(4rem, 7vw, 6rem);
  background: linear-gradient(180deg, var(--c-rose-50) 0%, var(--c-cream) 100%);
  overflow: hidden;
}
.hero-v2 .container {
  display: contents;
}
.hero-v2-copy {
  padding: 0 clamp(1rem, 3vw, 3rem);
  max-width: 640px;
  justify-self: end;
}
.hero-v2 h1 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.01em;
  color: var(--c-brown-900);
  margin-bottom: 1.25rem;
}
.hero-v2 h1 .accent {
  font-family: var(--ff-script);
  font-weight: 400;
  color: var(--c-rose-400);
  font-size: 1.1em;
  line-height: 0.85;
  display: inline-block;
  transform: translateY(-0.05em);
  letter-spacing: 0;
}
.hero-v2-lede {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--c-muted);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-v2-visual {
  position: relative;
  padding-right: clamp(1rem, 3vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-v2-visual img {
  width: 100%;
  max-height: 620px;
  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  background: var(--c-rose-100);
}
.hero-v2-card {
  position: absolute;
  bottom: -1rem;
  left: -1.5rem;
  background: var(--c-ivory);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 260px;
  font-size: 0.9rem;
}
.hero-v2-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-rose-100);
  color: var(--c-brown-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero-v2-card-icon svg { width: 20px; height: 20px; }
.hero-v2-card strong { display: block; color: var(--c-brown-900); margin-bottom: 1px; }
.hero-v2-card span { color: var(--c-muted); font-size: 0.82rem; }

@media (max-width: 900px) {
  .hero-v2 {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }
  .hero-v2-copy { padding: 0 1rem; justify-self: stretch; text-align: left; max-width: none; }
  .hero-v2-visual { padding: 0 1rem; min-height: auto; }
  .hero-v2-visual img { aspect-ratio: 4 / 3.4; }
  .hero-v2-card { left: 1.5rem; bottom: -1rem; }
}

/* ----- Trust strip ----------------------------------------- */
.trust-strip {
  background: var(--c-ivory);
  border-top: 1px solid var(--c-line);
  border-bottom: 1px solid var(--c-line);
  padding: 1.5rem 0;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  text-align: left;
}
.trust-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--c-rose-100);
  color: var(--c-brown-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.trust-item-icon svg { width: 18px; height: 18px; }
.trust-item span { font-size: 0.9rem; font-weight: 500; color: var(--c-brown-900); line-height: 1.3; }
.trust-item strong { font-weight: 700; color: var(--c-brown-900); }
@media (max-width: 820px) {
  .trust-strip-inner { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .trust-item { justify-content: flex-start; }
}

/* ----- Section header -------------------------------------- */
.section-head {
  max-width: 720px;
  margin: 0 auto 3rem;
  text-align: center;
}
.section-head--left { text-align: left; margin-left: 0; }
.section-head h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  margin-bottom: 1rem;
}
.section-head p {
  font-size: clamp(1rem, 1.1vw, 1.1rem);
  color: var(--c-muted);
  margin: 0;
}

/* ----- Occasions grid -------------------------------------- */
.occasions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.occasion-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--c-brown-900);
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.occasion-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--c-rose-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.occasion-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
}
.occasion-card-body {
  padding: 1rem 1.25rem 1.1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}
.occasion-card h3 {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--c-brown-900);
  margin: 0;
  line-height: 1.1;
  font-weight: 500;
}
.occasion-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-rose-100);
  color: var(--c-brown-700);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--t-med), background var(--t-med), color var(--t-med);
  flex-shrink: 0;
}
.occasion-card:hover .occasion-card-arrow {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  transform: translate(2px, -2px);
}
.occasion-card-arrow svg { width: 14px; height: 14px; }
@media (max-width: 900px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }

/* ----- Signatures (home teaser) ---------------------------- */
.signatures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.signature-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: var(--radius-md);
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  text-decoration: none;
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.signature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.signature-card-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: var(--c-rose-100);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.signature-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--t-slow);
}
.signature-card:hover img { transform: scale(1.04); }
.signature-card-caption {
  padding: 1rem 1.25rem 1.15rem;
  color: var(--c-brown-900);
}
.signature-card-caption strong {
  font-family: var(--ff-display);
  font-size: 1.35rem;
  font-weight: 500;
  display: block;
  line-height: 1.1;
  margin-bottom: 2px;
}
.signature-card-caption span {
  font-size: 0.78rem;
  color: var(--c-brown-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
@media (max-width: 820px) { .signatures { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .signatures { grid-template-columns: 1fr; } }

/* ----- Histoire / split ------------------------------------ */
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }
.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--c-rose-100);
  display: flex;
  align-items: center;
  justify-content: center;
}
.split-visual img {
  width: 100%;
  max-width: 560px;
  height: auto;
  display: block;
}
.split-copy h2 { font-size: clamp(2rem, 4vw, 3.25rem); margin-bottom: 1.25rem; }
.split-copy p { color: var(--c-ink); font-size: 1.05rem; margin-bottom: 1rem; }
.split-sig {
  font-family: var(--ff-script);
  color: var(--c-rose-400);
  font-size: 2.8rem;
  line-height: 1;
  margin-top: 1.25rem;
}
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split-visual { aspect-ratio: 4 / 4.2; max-width: 480px; margin: 0 auto; }
}

/* ----- Process (3 steps) ----------------------------------- */
.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(100%/6);
  right: calc(100%/6);
  height: 2px;
  background: repeating-linear-gradient(to right, var(--c-rose-300) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-ivory);
  color: var(--c-brown-700);
  border: 2px solid var(--c-rose-300);
  font-family: var(--ff-display);
  font-size: 1.85rem;
  font-weight: 500;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-sm);
}
.process-step h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--c-muted); font-size: 0.98rem; max-width: 36ch; margin: 0 auto; }
@media (max-width: 820px) {
  .process { grid-template-columns: 1fr; gap: 2.5rem; }
  .process::before { display: none; }
}

/* ----- Social proof / testimonials ------------------------- */
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.proof-card {
  background: var(--c-ivory);
  border-radius: var(--radius-md);
  padding: 2rem;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.proof-card-quote {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  line-height: 1.4;
  color: var(--c-brown-900);
  margin: 0;
  position: relative;
  padding-top: 0.5rem;
}
.proof-card-quote::before {
  content: '“';
  font-family: var(--ff-display);
  font-size: 3.5rem;
  line-height: 0.8;
  color: var(--c-rose-300);
  position: absolute;
  top: 0;
  left: -0.25rem;
  opacity: 0.7;
}
.proof-card-author {
  font-size: 0.85rem;
  color: var(--c-muted);
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.proof-card-author strong { color: var(--c-brown-900); }
.proof-stars {
  display: flex;
  gap: 2px;
  color: var(--c-gold);
}
.proof-stars svg { width: 14px; height: 14px; }
@media (max-width: 820px) { .proof-grid { grid-template-columns: 1fr; } }

/* ----- Final CTA ------------------------------------------- */
.final-cta {
  position: relative;
  padding: clamp(4rem, 8vw, 7rem) 0;
  overflow: hidden;
  isolation: isolate;
  color: var(--c-ivory);
  text-align: center;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.final-cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,26,15,0.5), rgba(42,26,15,0.75));
  z-index: -1;
}
.final-cta h2 {
  color: var(--c-ivory);
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}
.final-cta p { color: rgba(255, 253, 249, 0.85); font-size: 1.1rem; max-width: 52ch; margin: 0 auto 2rem; }
.final-cta .script-sm { font-family: var(--ff-script); font-size: 1.75rem; color: var(--c-rose-200); display: block; margin-bottom: -0.75rem; }

/* ----- Gallery + filters (creations) ----------------------- */
.gallery-intro { margin-bottom: 3rem; }
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 2.5rem 0 1.75rem;
}
.section--creations { padding-top: clamp(1rem, 2vw, 1.75rem); }

.creations-notes {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 820px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.creations-notes li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  padding: 0.25rem 1rem;
  text-align: center;
  border-right: 1px solid var(--c-line);
}
.creations-notes li:last-child { border-right: none; }
.creations-notes .eyebrow { margin: 0; }
.creations-note-value {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  color: var(--c-brown-900);
  line-height: 1.3;
}
@media (max-width: 640px) {
  .creations-notes { grid-template-columns: 1fr; max-width: 360px; gap: 0.75rem; }
  .creations-notes li { border-right: none; border-bottom: 1px solid var(--c-line); padding-bottom: 0.85rem; }
  .creations-notes li:last-child { border-bottom: none; padding-bottom: 0; }
}
.gallery-filter {
  padding: 0.55rem 1.15rem;
  border-radius: var(--radius-pill);
  background: var(--c-ivory);
  color: var(--c-brown-700);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid var(--c-line);
  cursor: pointer;
  transition: background var(--t-fast), color var(--t-fast), border-color var(--t-fast);
}
.gallery-filter:hover { border-color: var(--c-brown-600); }
.gallery-filter.is-active {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  border-color: var(--c-brown-600);
}
/* True masonry via CSS columns: images keep their natural aspect ratio, no cropping */
.v2-gallery {
  column-count: 4;
  column-gap: 1rem;
}
@media (max-width: 1100px) { .v2-gallery { column-count: 3; } }
@media (max-width: 780px)  { .v2-gallery { column-count: 2; } }
@media (max-width: 480px)  { .v2-gallery { column-count: 1; } }

.v2-gallery-item {
  display: block;
  margin: 0 0 1rem;
  break-inside: avoid;
  page-break-inside: avoid;
  -webkit-column-break-inside: avoid;
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: zoom-in;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  transition: transform var(--t-med), box-shadow var(--t-med);
}
.v2-gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.v2-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--t-slow);
}
.v2-gallery-item:hover img { transform: scale(1.03); }
.v2-gallery-item figcaption {
  padding: 0.7rem 1rem 0.9rem;
  color: var(--c-brown-900);
  font-family: var(--ff-display);
  font-weight: 500;
  font-size: 1.05rem;
  line-height: 1.25;
  background: var(--c-ivory);
}
.v2-gallery-item[hidden] { display: none !important; }

/* Parfums chips */
.parfums-v2 {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.6rem;
  justify-content: center;
  list-style: none;
  padding: 0;
  max-width: 780px;
  margin: 2rem auto 0;
}
.parfums-v2 li {
  background: var(--c-ivory);
  color: var(--c-brown-700);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  border: 1px solid var(--c-line);
}

/* ----- FAQ ------------------------------------------------- */
.faq {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--c-line);
}
.faq-item summary {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.5rem 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  color: var(--c-brown-900);
  font-weight: 500;
  transition: color var(--t-fast);
}
.faq-item summary:hover { color: var(--c-brown-600); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--c-rose-100);
  color: var(--c-brown-700);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--t-med), background var(--t-med);
}
.faq-item-icon svg { width: 14px; height: 14px; }
.faq-item[open] .faq-item-icon {
  transform: rotate(45deg);
  background: var(--c-brown-600);
  color: var(--c-ivory);
}
.faq-answer {
  padding: 0 0 1.5rem;
  color: var(--c-muted);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 60ch;
}
.faq-answer p { margin: 0 0 0.75rem; }
.faq-answer p:last-child { margin-bottom: 0; }

/* ----- Forms ----------------------------------------------- */
.v2-form {
  background: var(--c-ivory);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 3vw, 2.75rem);
  box-shadow: var(--shadow-md);
  max-width: 760px;
  margin: 0 auto;
  border: 1px solid var(--c-line);
}
.v2-form-steps {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--c-line);
}
.v2-form-step {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.03em;
}
.v2-form-step + .v2-form-step {
  flex: 1 1 auto;
  min-width: 0;
}
.v2-form-step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--c-cream);
  color: var(--c-muted);
  font-size: 0.82rem;
  border: 1.5px solid var(--c-line);
  flex-shrink: 0;
  transition: background var(--t-med), color var(--t-med), border-color var(--t-med);
}
.v2-form-step.is-done .v2-form-step-num {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  border-color: var(--c-brown-600);
}
.v2-form-step.is-active {
  color: var(--c-brown-900);
}
.v2-form-step.is-active .v2-form-step-num {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  border-color: var(--c-brown-600);
  box-shadow: 0 0 0 4px rgba(114, 76, 42, 0.15);
}
.v2-form-step + .v2-form-step::before {
  content: '';
  display: block;
  height: 2px;
  flex: 1 1 auto;
  min-width: 1.5rem;
  margin: 0 0.9rem;
  background: var(--c-line);
  transition: background var(--t-med);
}
.v2-form-step.is-done + .v2-form-step::before,
.v2-form-step.is-done + .v2-form-step.is-active::before {
  background: var(--c-brown-600);
}
@media (max-width: 600px) {
  .v2-form-step span { display: none; }
}

.v2-form-panel {
  display: none;
  border: 0;
  padding: 0;
  margin: 0;
  min-inline-size: 0;
}
.v2-form-panel.is-active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.v2-form-panel h3 {
  font-size: 1.5rem;
  margin-bottom: 0.35rem;
}
.v2-form-panel > p {
  color: var(--c-muted);
  margin: 0 0 1.5rem;
  font-size: 0.98rem;
}

.v2-field { margin-bottom: 1.25rem; }
.v2-field label.label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--c-brown-900);
  margin-bottom: 0.4rem;
}
.v2-field input,
.v2-field textarea,
.v2-field select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.v2-field input:focus,
.v2-field textarea:focus,
.v2-field select:focus {
  outline: none;
  border-color: var(--c-brown-600);
  box-shadow: 0 0 0 3px rgba(114, 76, 42, 0.12);
}
.v2-field textarea { min-height: 130px; resize: vertical; }
.v2-field .hint { font-size: 0.82rem; color: var(--c-muted); margin-top: 0.35rem; }

/* ----- Custom date picker --------------------------------- */
.v2-datepicker { position: relative; }
.v2-datepicker-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  font-family: var(--ff-body);
  font-size: 1rem;
  color: var(--c-ink);
  background: var(--c-white);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.v2-datepicker-trigger:focus,
.v2-datepicker.is-open .v2-datepicker-trigger {
  outline: none;
  border-color: var(--c-brown-600);
  box-shadow: 0 0 0 3px rgba(114, 76, 42, 0.12);
}
.v2-datepicker-trigger[data-empty="true"] { color: var(--c-muted); }
.v2-datepicker-trigger svg {
  width: 18px;
  height: 18px;
  color: var(--c-brown-600);
  flex-shrink: 0;
}
.v2-datepicker-pop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  z-index: 40;
  width: 320px;
  max-width: calc(100vw - 2rem);
  padding: 1rem;
  background: var(--c-ivory);
  border: 1px solid var(--c-line);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: none;
}
.v2-datepicker.is-open .v2-datepicker-pop { display: block; }
.v2-datepicker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}
.v2-datepicker-title {
  font-family: var(--ff-body);
  font-weight: 600;
  color: var(--c-brown-900);
  font-size: 0.95rem;
  text-transform: capitalize;
}
.v2-datepicker-nav {
  display: flex;
  gap: 0.35rem;
}
.v2-datepicker-nav button {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--c-line);
  background: var(--c-white);
  color: var(--c-brown-900);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background var(--t-fast), border-color var(--t-fast);
}
.v2-datepicker-nav button:hover:not(:disabled) {
  background: var(--c-cream);
  border-color: var(--c-brown-600);
}
.v2-datepicker-nav button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.v2-datepicker-nav svg { width: 14px; height: 14px; }
.v2-datepicker-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}
.v2-datepicker-dow {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--c-muted);
  text-align: center;
  padding: 0.35rem 0;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.v2-datepicker-day {
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  color: var(--c-ink);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: background var(--t-fast), color var(--t-fast);
}
.v2-datepicker-day:hover:not(:disabled):not(.is-selected) {
  background: var(--c-cream);
}
.v2-datepicker-day.is-muted { color: var(--c-muted); opacity: 0.45; }
.v2-datepicker-day.is-today:not(.is-selected) {
  box-shadow: inset 0 0 0 1.5px var(--c-brown-600);
  color: var(--c-brown-900);
  font-weight: 600;
}
.v2-datepicker-day.is-selected {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  font-weight: 600;
}
.v2-datepicker-day:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  color: var(--c-muted);
}
.v2-datepicker-foot {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--c-line);
}
.v2-datepicker-foot button {
  background: transparent;
  border: 0;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--c-brown-600);
  cursor: pointer;
  padding: 0.3rem 0.5rem;
  border-radius: var(--radius-sm);
  transition: background var(--t-fast);
}
.v2-datepicker-foot button:hover { background: var(--c-cream); }
.v2-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 540px) { .v2-field-row { grid-template-columns: 1fr; } }

.v2-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
}
@media (max-width: 700px) { .v2-choice-grid { grid-template-columns: repeat(2, 1fr); } }
.v2-choice {
  position: relative;
  cursor: pointer;
}
.v2-choice input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.v2-choice-box {
  display: block;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--c-line);
  border-radius: var(--radius-sm);
  background: var(--c-white);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--c-brown-900);
  text-align: center;
  transition: all var(--t-fast);
}
.v2-choice:hover .v2-choice-box { border-color: var(--c-brown-500); }
.v2-choice input:checked + .v2-choice-box {
  background: var(--c-brown-600);
  color: var(--c-ivory);
  border-color: var(--c-brown-600);
}
.v2-choice input:focus-visible + .v2-choice-box {
  box-shadow: 0 0 0 3px rgba(114, 76, 42, 0.25);
}

.v2-form-nav {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-line);
}
.v2-form-nav .btn--secondary { flex: 0 0 auto; }
.v2-form-nav .btn--primary { flex: 1 1 auto; max-width: 260px; margin-left: auto; }

.v2-form-summary {
  background: var(--c-rose-50);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 0 0 1.5rem;
  font-size: 0.95rem;
}
.v2-form-summary dt {
  font-weight: 600;
  color: var(--c-brown-900);
  display: inline;
}
.v2-form-summary dd {
  display: inline;
  margin: 0 0 0 0.35rem;
  color: var(--c-muted);
}
.v2-form-summary div { margin-bottom: 0.25rem; }

.v2-form-message {
  margin-top: 1.25rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-sm);
  display: none;
  font-weight: 500;
  font-size: 0.95rem;
}
.v2-form-message.success {
  display: block;
  background: #E8F4EA;
  color: #1E6B3A;
  border: 1px solid #B9DEC3;
}
.v2-form-message.error {
  display: block;
  background: #FCEDEA;
  color: #8A1C1C;
  border: 1px solid #F3C5C5;
}

.honeypot { position: absolute !important; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* Simple single-step form (contact) */
.v2-form--simple { padding-top: 2rem; }

/* ----- Sticky mobile CTA ----------------------------------- */
.sticky-mobile-cta {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 40;
  display: none;
  gap: 0.6rem;
  background: var(--c-ivory);
  padding: 0.6rem;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--c-line);
  transform: translateY(200%);
  transition: transform var(--t-med);
}
.sticky-mobile-cta.show { transform: translateY(0); }
.sticky-mobile-cta .btn { flex: 1; padding: 0.75rem 1rem; font-size: 0.9rem; }
.sticky-mobile-cta .btn-call {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  padding: 0;
  background: var(--c-brown-600);
  color: var(--c-ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 720px) { .sticky-mobile-cta { display: flex; } }

/* ----- Lightbox -------------------------------------------- */
.v2-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(30, 20, 10, 0.9);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}
.v2-lightbox.open { display: flex; }
.v2-lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.v2-lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  color: var(--c-ivory);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.15);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
}
.v2-lightbox-close svg { width: 22px; height: 22px; }

/* ----- Footer ---------------------------------------------- */
.v2-footer {
  background: var(--c-brown-900);
  color: var(--c-ivory);
  padding: 4rem 0 2rem;
}
.v2-footer-grid {
  display: grid;
  grid-template-columns: 2fr 0.9fr 1.5fr 0.9fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
.v2-footer-logo {
  display: inline-block;
  margin-bottom: 1.25rem;
}
.v2-footer-logo img {
  height: 56px;
  width: auto;
  display: block;
}
.v2-footer h4 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--c-rose-200);
  margin: 0 0 1.25rem;
  font-weight: 600;
}
.v2-footer a { color: var(--c-ivory); }
.v2-footer a:hover { color: var(--c-rose-200); }
.v2-footer ul { list-style: none; padding: 0; margin: 0; }
.v2-footer ul li { margin-bottom: 0.5rem; font-size: 0.95rem; }
.v2-footer p { margin: 0 0 0.5rem; font-size: 0.95rem; color: rgba(255, 253, 249, 0.85); }
.v2-footer-pitch { color: rgba(255, 253, 249, 0.75); font-size: 0.95rem; max-width: 32ch; }
.v2-footer-socials {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.25rem;
}
.v2-footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), transform var(--t-fast);
}
.v2-footer-socials a:hover {
  background: rgba(255, 253, 249, 0.18);
  transform: translateY(-2px);
}
.v2-footer-socials svg { width: 18px; height: 18px; fill: var(--c-ivory); }
.v2-footer-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 253, 249, 0.6);
}
.v2-footer-version {
  text-align: center;
  padding: 1rem 0;
  margin-top: 2rem;
  border-top: 1px dashed rgba(255, 253, 249, 0.2);
  font-size: 0.82rem;
  color: rgba(255, 253, 249, 0.7);
}
.v2-footer-version a {
  color: var(--c-rose-200);
  text-decoration: underline;
  font-weight: 600;
}
@media (max-width: 900px) {
  .v2-footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 560px) {
  .v2-footer-grid { grid-template-columns: 1fr; }
  .v2-footer-bottom { flex-direction: column; align-items: flex-start; }
}

/* ----- Page hero (non-home) -------------------------------- */
.page-hero {
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(3rem, 5vw, 4rem);
  text-align: center;
  background: linear-gradient(180deg, var(--c-rose-50), var(--c-cream));
}
.page-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 1rem;
}
.page-hero p { max-width: 58ch; margin: 0 auto; color: var(--c-muted); font-size: 1.1rem; }

/* ----- Info / callout cards -------------------------------- */
.callout {
  background: var(--c-rose-50);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  border-left: 3px solid var(--c-rose-400);
  max-width: 760px;
  margin: 0 auto;
  font-size: 0.98rem;
}
.callout strong { color: var(--c-brown-900); }
.callout ul { padding-left: 1.25rem; margin: 0.75rem 0 0; }
.callout li { margin-bottom: 0.4rem; }

/* ----- Legal ----------------------------------------------- */
.v2-legal {
  max-width: 760px;
  margin: 0 auto;
  background: var(--c-ivory);
  padding: clamp(2rem, 4vw, 3.5rem);
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-line);
}
.v2-legal h2 {
  font-family: var(--ff-display);
  color: var(--c-brown-900);
  margin-top: 2rem;
  font-size: 1.6rem;
}
.v2-legal h2:first-child { margin-top: 0; }
.v2-legal p { line-height: 1.7; }

/* ----- Responsive grid utilities --------------------------- */
.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
}
.grid-auto--lg {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.grid-auto--sm {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
}
.process--four {
  grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 900px) {
  .process--four { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; }
}
@media (max-width: 540px) {
  .process--four { grid-template-columns: 1fr; }
}

/* ----- Reduced motion -------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}
