/* =====================================================
   NADÉLIE V5 — Galerie Vivante
   Palette: terracotta / lin / espresso
   Fonts: Fraunces (display) + Space Grotesk (body)
   ===================================================== */

:root {
  --bg:       #F5F0E8;
  --bg-warm:  #EDE5D8;
  --bg-dark:  #002F47;
  --text:     #1E140A;
  --text-mid: rgba(30,20,10,.55);
  --text-light: #F5F0E8;
  --accent:   #C4603A;
  --gold:     #C8A86A;
  --sand:     #8B7355;
  --border:   rgba(30,20,10,.12);
  --border-w: rgba(245,240,232,.18);
  --blue:     #004261;
  --blue-light: #E8F0F5;

  --serif:  "Cormorant Garamond", Georgia, serif;
  --script: "Pinyon Script", cursive;
  --sans:   "Space Grotesk", system-ui, sans-serif;

  --nav-h:   72px;
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-in:  cubic-bezier(.5,0,.84,0);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
@media (pointer: coarse) { body { cursor: auto; } }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
address { font-style: normal; }
figure { margin: 0; }


/* ── Navigation ─────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; gap: 1.5rem;
  padding: 0 clamp(1.25rem,4vw,2.5rem);
  height: var(--nav-h);
  background: transparent;
  transition: background .4s, box-shadow .4s, transform .4s var(--ease-out);
}
.nav.scrolled {
  background: rgba(0,47,71,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(255,255,255,.08);
}
.nav.scrolled .nav-back { color: rgba(255,255,255,.55); }
.nav.scrolled .nav-brand-text { color: #fff; }
.nav.scrolled .nav-links a { color: rgba(255,255,255,.65); }
.nav.scrolled .nav-links a:hover { color: #fff; }
.nav.scrolled .nav-cta { border-color: rgba(255,255,255,.4) !important; color: rgba(255,255,255,.8) !important; }
.nav.scrolled .nav-toggle { color: #fff; }
.nav.hidden { transform: translateY(-100%); }
.nav-progress {
  position: absolute; bottom: 0; left: 0;
  height: 2px; width: 0%; background: var(--accent);
  transition: width .1s linear;
}
.nav-back {
  font-size: .75rem; font-family: var(--sans);
  color: var(--text-mid); padding: .4rem;
  transition: color .2s; flex-shrink: 0;
}
.nav-back:hover { color: var(--accent); }
.nav.hero-over .nav-back { color: rgba(255,255,255,.5); }
.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  flex-shrink: 0;
}
.nav-brand-text {
  font-family: var(--script);
  font-size: 1.55rem; line-height: 1; color: var(--text);
  transition: color .3s;
}
.nav-logo-img { width: 32px; height: 32px; object-fit: contain; }
.nav.hero-over .nav-brand { color: #fff; }
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin-left: auto;
}
.nav-links a {
  font-size: .75rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--text-mid);
  transition: color .2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease-out);
}
.nav-links a:hover { color: var(--text); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav.hero-over .nav-links a { color: rgba(255,255,255,.6); }
.nav.hero-over .nav-links a:hover { color: #fff; }
.nav-cta {
  color: var(--accent) !important;
  border: 1px solid currentColor;
  padding: .38rem 1.1rem; border-radius: 100px;
  transition: background .2s, color .2s !important;
}
.nav-cta:hover { background: var(--accent); color: #fff !important; }
.nav-cta::after { display: none !important; }
.nav.hero-over .nav-cta { border-color: rgba(255,255,255,.45); color: rgba(255,255,255,.75) !important; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; background: none; border: none;
  cursor: pointer; padding: 6px; margin-left: auto; color: inherit;
}
.nav-toggle span { display: block; height: 1.5px; background: currentColor; transition: transform .3s, opacity .2s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav.hero-over .nav-toggle { color: #fff; }

/* ── Buttons ─────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem;
  background: var(--accent); color: #fff;
  font-family: var(--sans); font-size: .78rem;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px; border: none; cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
}
.btn-primary:hover { background: #a84e2d; transform: translateY(-1px); box-shadow: 0 8px 24px rgba(196,96,58,.28); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border: 1.5px solid rgba(255,255,255,.5); color: #fff;
  font-family: var(--sans); font-size: .78rem;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.8); }
.btn-outline {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border: 1.5px solid var(--text); color: var(--text);
  font-family: var(--sans); font-size: .78rem;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px; cursor: pointer;
  transition: background .2s, color .2s;
}
.btn-outline:hover { background: var(--text); color: var(--bg); }
.btn-light {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .85rem 2rem; border: 1.5px solid rgba(245,240,232,.55); color: var(--bg);
  font-family: var(--sans); font-size: .78rem;
  font-weight: 400; letter-spacing: .1em; text-transform: uppercase;
  border-radius: 100px; cursor: pointer;
  transition: background .2s, border-color .2s;
}
.btn-light:hover { background: rgba(245,240,232,.12); border-color: var(--bg); }
.btn-full { width: 100%; justify-content: center; border-radius: 8px; }

/* ── Section Label ───────────────────────────────────── */
.section-label {
  display: block;
  font-size: .62rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1rem;
}

/* ── Reveal animations ───────────────────────────────── */
.reveal, .reveal-right, .reveal-word {
  opacity: 0; transform: translateY(32px);
  transition: opacity .75s var(--ease-out), transform .75s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal-right { transform: translateX(32px); }
.reveal.visible, .reveal-right.visible, .reveal-word.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-right, .reveal-word { transition: opacity .3s; transform: none; }
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 100dvh;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transform: scale(1.08) translateX(1%);
  transition: transform 2.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.hero-loaded .hero-img { transform: scale(1) translateX(0); }
.hero-grain {
  position: absolute; inset: 0; pointer-events: none; opacity: .35;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='1'/%3E%3C/svg%3E");
  background-size: 200px;
}
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to top,  rgba(0,34,52,.92) 0%, rgba(0,34,52,.55) 35%, transparent 65%),
    linear-gradient(to right, rgba(0,34,52,.45) 0%, transparent 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(2.5rem,6vw,5rem) clamp(1.5rem,5vw,4rem);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: clamp(4rem,8vw,7rem);
  max-width: 960px;
}
.hero-eyebrow {
  font-size: .65rem; font-weight: 400; letter-spacing: .3em;
  text-transform: uppercase; color: rgba(255,255,255,.5);
  margin-bottom: 1.5rem;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .8s .3s var(--ease-out) forwards;
}
.hero-title {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-optical-sizing: auto;
  font-size: clamp(5.5rem, 17vw, 15rem);
  line-height: .88; letter-spacing: -.04em;
  color: #fff; margin-bottom: 1.5rem;
}
.hero-title .char {
  display: inline-block;
  opacity: 0; transform: translateY(.8em);
}
.hero-sub {
  font-size: clamp(.85rem, 2vw, 1.05rem); font-weight: 300;
  color: rgba(255,255,255,.6); margin-bottom: 2.5rem; letter-spacing: .02em;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .8s .95s var(--ease-out) forwards;
}
.hero-actions {
  display: flex; gap: 1rem; flex-wrap: wrap;
  opacity: 0; transform: translateY(12px);
  animation: fadeUp .8s 1.15s var(--ease-out) forwards;
}
.hero-scroll {
  position: absolute; right: clamp(1.5rem,4vw,3rem); bottom: 2.5rem;
  display: flex; flex-direction: column; align-items: center; gap: .6rem;
  font-size: .6rem; letter-spacing: .22em; text-transform: uppercase;
  color: rgba(255,255,255,.35);
  opacity: 0; animation: fadeUp .8s 1.6s var(--ease-out) forwards;
}
.hero-scroll-line {
  width: 1px; height: 52px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: linePulse 2s 2s ease-in-out infinite;
}
@keyframes fadeUp { to { opacity: 1; transform: none; } }
@keyframes linePulse { 0%,100%{transform:scaleY(1);opacity:.4} 50%{transform:scaleY(.5);opacity:.15} }
@media (prefers-reduced-motion: reduce) { .hero-img { transform: none !important; } }

/* ── MARQUEE ─────────────────────────────────────────── */
.marquee { background: var(--bg-dark); padding: 13px 0; overflow: hidden; }
.marquee-track {
  display: flex; gap: 2.5rem; align-items: center;
  white-space: nowrap; width: max-content;
  animation: marqScroll 30s linear infinite;
}
.marquee-track span { font-size: .72rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); }
.marquee-dot { color: var(--accent) !important; opacity: .55; }
@keyframes marqScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
@media (prefers-reduced-motion: reduce) { .marquee-track { animation: none; } }

/* ── ABOUT ───────────────────────────────────────────── */
.about { padding: clamp(5rem,10vw,9rem) clamp(1.5rem,5vw,4rem); background: var(--bg); }
.about-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,7vw,7rem); align-items: center;
  max-width: 1280px; margin: 0 auto;
}
.about-text { display: flex; flex-direction: column; gap: 2rem; }
.about-heading {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05; letter-spacing: -.03em; color: var(--text);
}
.about-body {
  font-size: clamp(.9rem,1.5vw,1.05rem); font-weight: 300;
  line-height: 1.78; color: var(--text-mid); max-width: 44ch;
}
.about-photo-frame {
  position: relative; border-radius: 20px; overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: 0 32px 70px rgba(0,47,71,.2);
}
.about-photo-frame img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.about-photo-frame:hover img { transform: scale(1.04); }
.about-photo-deco {
  position: absolute; bottom: -14px; right: -14px;
  width: 72px; height: 72px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  z-index: -1;
}

/* ── STICKY SECTION ──────────────────────────────────── */
.sticky-section { background: var(--bg-warm); overflow: hidden; }
.sticky-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  max-width: 1400px; margin: 0 auto;
}
.sticky-photo-wrap {
  position: sticky; top: var(--nav-h);
  height: calc(100dvh - var(--nav-h));
  overflow: hidden;
  border-radius: 0 24px 24px 0;
  box-shadow: 8px 0 40px rgba(0,47,71,.12);
}
.sticky-img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .55s var(--ease-out);
}
.sticky-img.fading { opacity: 0; }
.sticky-caption {
  position: absolute; bottom: 2rem; left: 2rem;
  font-family: var(--serif); font-style: italic; font-weight: 400;
  font-size: 1.1rem; color: rgba(245,240,232,.75);
  transition: opacity .4s, transform .4s var(--ease-out);
}
.sticky-num {
  position: absolute; top: 1.5rem; right: 1.5rem;
  font-family: var(--serif); font-weight: 700;
  font-size: 5rem; line-height: 1; letter-spacing: -.05em;
  color: rgba(245,240,232,.1); pointer-events: none;
  transition: opacity .4s;
}
.chapter {
  min-height: 88dvh; display: flex; flex-direction: column;
  justify-content: center;
  padding: clamp(3.5rem,6vw,6rem) clamp(2.5rem,5vw,5rem);
}
.chapter-title {
  font-family: var(--serif); font-weight: 400;
  font-size: clamp(2.2rem,4vw,3.8rem);
  line-height: 1.1; letter-spacing: -.03em; color: var(--text);
  margin: 1rem 0 1.75rem;
}
.chapter-title em { font-style: italic; font-weight: 600; color: var(--accent); }
.chapter-body {
  font-size: clamp(.88rem,1.4vw,1rem); font-weight: 300;
  line-height: 1.78; color: var(--text-mid);
  max-width: 42ch; margin-bottom: 2rem;
}
.chapter-list { display: flex; flex-direction: column; gap: .8rem; }
.chapter-list li {
  font-size: .86rem; font-weight: 400; color: var(--text-mid);
  padding-left: 1.25rem; position: relative;
}
.chapter-list li::before {
  content: ''; position: absolute; left: 0; top: .6em;
  width: 6px; height: 1.5px; background: var(--accent);
}

/* ── GALLERY ─────────────────────────────────────────── */
.gallery { padding: clamp(4rem,8vw,7rem) clamp(1.5rem,4vw,2.5rem); background: var(--bg); }
.gallery-header { max-width: 1280px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.gallery-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem,5vw,4rem); letter-spacing: -.03em;
}
.gallery-title em { font-style: italic; font-weight: 600; color: var(--accent); }
.gallery-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
  grid-auto-rows: 220px; gap: 10px;
}
.g-item {
  overflow: hidden; position: relative; cursor: pointer;
  border-radius: 16px;
  box-shadow: 0 12px 32px -4px rgba(0,47,71,.18),
              0 4px 12px rgba(0,47,71,.1);
  transition: transform .5s cubic-bezier(.16,1,.3,1),
              box-shadow .5s cubic-bezier(.16,1,.3,1);
  will-change: transform;
  transform-style: preserve-3d;
}
/* rotations alternées au repos */
.g-item:nth-child(3n+1) { transform: rotate(-.3deg); }
.g-item:nth-child(3n+2) { transform: rotate(.25deg); }
.g-item:nth-child(3n)   { transform: rotate(-.18deg); }
/* hover — ombre plus profonde (tilt géré par JS) */
.g-item:hover {
  box-shadow: 0 24px 60px -8px rgba(0,47,71,.28),
              0 8px 24px rgba(0,47,71,.14);
}
.g-item.g-tall { grid-row: span 2; }
.g-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out), filter .4s;
  filter: saturate(.9);
}
.g-item:hover img { transform: scale(1.06); filter: saturate(1.12); }
.g-item { cursor: pointer; }
.g-item::after {
  content: '';
  position: absolute; inset: 0; border-radius: inherit;
  background: linear-gradient(to top, rgba(0,34,52,.72) 0%, transparent 55%);
  opacity: 0; transition: opacity .35s;
}
.g-item:hover::after { opacity: 1; }
.g-item figcaption {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 2;
  padding: 1rem 1.25rem;
  font-size: .72rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  transform: translateY(6px); opacity: 0;
  transition: transform .35s, opacity .35s;
}
.g-item:hover figcaption { transform: translateY(0); opacity: 1; }

/* ── STATS ───────────────────────────────────────────── */
.stats { background: var(--bg-dark); padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem); }
.stats-inner {
  max-width: 960px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1px 1fr 1px 1fr;
  align-items: center;
}
.stat { text-align: center; padding: 1.5rem 2rem; }
.stat-row { display: flex; align-items: flex-start; justify-content: center; gap: .1rem; margin-bottom: .8rem; }
.stat-num {
  font-family: var(--serif); font-style: italic; font-weight: 700;
  font-optical-sizing: auto;
  font-size: clamp(3.5rem,8vw,7rem); line-height: .9;
  letter-spacing: -.04em; color: var(--gold);
}
.stat-plus {
  font-family: var(--serif); font-style: italic;
  font-size: clamp(1.5rem,3vw,2.5rem); color: var(--accent);
  align-self: flex-start; padding-top: .35em;
}
.stat-label {
  font-size: .78rem; font-weight: 400; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(245,240,232,.38);
}
.stats-divider { width: 1px; height: 80px; background: rgba(245,240,232,.07); }

/* ── OCCASIONS ───────────────────────────────────────── */
.occasions { padding: clamp(4rem,8vw,7rem) clamp(1.5rem,4vw,2.5rem); background: var(--bg-warm); }
.occasions-header { max-width: 1280px; margin: 0 auto clamp(2.5rem,5vw,4rem); }
.occasions-title {
  font-family: var(--serif); font-weight: 300;
  font-size: clamp(2rem,5vw,4rem); letter-spacing: -.03em;
}
.occasions-title em { font-style: italic; font-weight: 600; color: var(--accent); }
.occasions-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 16px;
}
.occ-card {
  position: relative; overflow: hidden; border-radius: 20px;
  box-shadow: 0 8px 28px -4px rgba(0,47,71,.16);
  aspect-ratio: 3/4; display: block; cursor: pointer;
  transition: transform .4s var(--ease-out);
}
.occ-card:hover { transform: translateY(-8px); box-shadow: 0 28px 60px -6px rgba(0,47,71,.3); }
.occ-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .7s var(--ease-out);
}
.occ-card:hover img { transform: scale(1.05); }
.occ-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,20,10,.9) 0%, transparent 60%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: clamp(1.5rem,3vw,2.5rem);
  transition: background .4s;
}
.occ-card:hover .occ-overlay { background: linear-gradient(to top, rgba(30,20,10,.95) 0%, rgba(30,20,10,.12) 100%); }
.occ-tag { font-size: .6rem; font-weight: 500; letter-spacing: .25em; text-transform: uppercase; color: var(--gold); margin-bottom: .7rem; }
.occ-name {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(1.4rem,2.5vw,2rem); line-height: 1.15; color: #fff; margin-bottom: .75rem;
}
.occ-desc { font-size: .82rem; font-weight: 300; line-height: 1.6; color: rgba(255,255,255,.6); margin-bottom: 1.25rem; max-width: 32ch; }
.occ-cta {
  font-size: .68rem; font-weight: 500; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent);
  border-bottom: 1px solid rgba(196,96,58,.4);
  padding-bottom: .15rem; display: inline-block;
}

/* ── ATELIER FEATURE ─────────────────────────────────── */
.atelier-feature { position: relative; min-height: 80dvh; display: flex; align-items: center; overflow: hidden; }
.atelier-bg-wrap { position: absolute; inset: 0; }
.atelier-bg-img { width: 100%; height: 100%; object-fit: cover; }
.atelier-bg-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,20,10,.9) 30%, rgba(30,20,10,.4) 100%);
}
.atelier-feature-content {
  position: relative; z-index: 2;
  padding: clamp(4rem,8vw,7rem) clamp(2rem,6vw,5rem);
  max-width: 700px;
  display: flex; flex-direction: column; gap: 1.5rem;
}
.atelier-label { color: var(--gold); }
.atelier-quote {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem,6vw,5.5rem);
  line-height: 1.08; letter-spacing: -.03em; color: #fff;
}
.atelier-desc {
  font-size: clamp(.88rem,1.5vw,1rem); font-weight: 300;
  line-height: 1.75; color: rgba(255,255,255,.6); max-width: 46ch;
}

/* ── PRICING ─────────────────────────────────────────── */
.pricing { background: var(--bg-dark); }
/* (full price-card styles in the Price Cards block below) */

/* ── CONTACT / ORDER FORM ────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.btn-submit { margin-top: .25rem; gap: .75rem; transition: background .25s, transform .2s, gap .2s; }
.btn-submit:hover { gap: 1rem; }
.btn-arrow { transition: transform .2s; }
.btn-submit:hover .btn-arrow { transform: translateX(3px); }

/* ── FOOTER ──────────────────────────────────────────── */
.footer { background: var(--bg-dark); padding: 3rem clamp(1.5rem,5vw,4rem); }
.footer-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.1rem; color: rgba(245,240,232,.65);
}
.footer-brand img { opacity: .4; filter: invert(1) sepia(0); }
.footer-nav { display: flex; gap: 2rem; }
.footer-nav a { font-size: .72rem; font-weight: 400; letter-spacing: .1em; text-transform: uppercase; color: rgba(245,240,232,.28); transition: color .2s; }
.footer-nav a:hover { color: rgba(245,240,232,.65); }
.footer-copy { font-size: .7rem; color: rgba(245,240,232,.18); width: 100%; text-align: center; padding-top: 1.5rem; border-top: 1px solid rgba(245,240,232,.06); }


/* ── Badge livraison ─────────────────────────────────── */
.badge-ship {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-light);
  padding: .3rem .75rem; border-radius: 100px;
  margin-top: 1rem;
}
.badge-ship svg { flex-shrink: 0; }

/* ── Ateliers dedicated section ──────────────────────── */
.ateliers-section {
  background: var(--bg-dark);
  padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}
.ateliers-top {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(3rem,6vw,6rem); align-items: start;
  max-width: 1280px; margin: 0 auto clamp(3rem,6vw,5rem);
}
.ateliers-intro { display: flex; flex-direction: column; gap: 1.75rem; }
.ateliers-heading {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-optical-sizing: auto;
  font-size: clamp(2.5rem,5vw,4.5rem);
  line-height: 1.08; letter-spacing: -.03em; color: #fff;
}
.ateliers-heading em { color: var(--gold); }
.ateliers-body {
  font-size: clamp(.88rem,1.4vw,1rem); font-weight: 300;
  line-height: 1.78; color: rgba(245,240,232,.6); max-width: 46ch;
}
.ateliers-types {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  align-self: center;
}
.atelier-type-card {
  background: rgba(245,240,232,.05);
  border: 1px solid rgba(245,240,232,.1);
  border-radius: 8px;
  padding: 1.5rem;
  transition: background .3s, border-color .3s;
}
.atelier-type-card:hover { background: rgba(245,240,232,.08); border-color: rgba(200,168,106,.3); }
.atelier-type-icon {
  width: 36px; height: 36px;
  color: var(--gold); margin-bottom: 1rem;
}
.atelier-type-title {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.15rem; letter-spacing: -.02em;
  color: #fff; margin-bottom: .5rem;
}
.atelier-type-desc {
  font-size: .82rem; font-weight: 300; line-height: 1.65;
  color: rgba(245,240,232,.5);
}
/* Photos grid */
.ateliers-photos {
  max-width: 1280px; margin: 0 auto;
  border-top: 1px solid rgba(245,240,232,.08);
  padding-top: 3rem;
}
.ateliers-photos-label {
  font-size: .62rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
}
.ateliers-photos-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}
.atelier-photo-slot {
  aspect-ratio: 1; overflow: hidden; border-radius: 14px;
  background: rgba(245,240,232,.04);
  border: 1px dashed rgba(245,240,232,.1);
  display: flex; align-items: center; justify-content: center;
}
.atelier-photo-slot img { width:100%; height:100%; object-fit:cover; }
.atelier-photo-slot.placeholder {
  flex-direction: column; gap: .5rem;
  color: rgba(245,240,232,.2);
}
.atelier-photo-slot.placeholder span {
  font-size: .65rem; letter-spacing: .15em; text-transform: uppercase;
}
/* Blue section-label variant */
.section-label.blue { color: var(--blue); }
.section-label.gold  { color: var(--gold); }


/* ── About badges ────────────────────────────────────── */
.about-badges { display: flex; gap: .6rem; flex-wrap: wrap; }
.about-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .68rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue); background: var(--blue-light);
  padding: .32rem .85rem; border-radius: 100px;
}
.about-badge svg { flex-shrink: 0; color: var(--blue); }

/* ── Occasion ship CTA ───────────────────────────────── */
.occ-ship {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(0,66,97,.15);
  border: 1px solid rgba(0,66,97,.35);
  color: #8EC6E0 !important;
  border-radius: 100px; padding: .3rem .8rem .3rem .65rem;
  font-size: .63rem !important;
  letter-spacing: .12em !important;
}

/* ── Price Cards (v1-style, v5 palette) ─────────────── */
.pricing .pricing-inner {
  max-width: 1280px; margin: 0 auto;
  padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem);
}
.pricing-header { text-align: center; margin-bottom: clamp(2.5rem,5vw,4rem); }
.pricing-title {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(2.5rem,5vw,4.5rem); line-height: 1.08;
  letter-spacing: -.03em; color: #fff; margin-bottom: .75rem;
}
.pricing-title em { color: var(--gold); font-style: italic; }
.pricing-subtitle {
  font-size: .92rem; color: rgba(245,240,232,.45); font-weight: 300;
}

.pricing-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem;
  margin-bottom: 2rem;
}
.price-card {
  position: relative;
  background: rgba(245,240,232,.04); border: 1px solid rgba(245,240,232,.09);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-radius: 16px; padding: 2rem 1.75rem;
  display: flex; flex-direction: column; gap: 1.25rem;
  transition: border-color .35s, transform .35s, box-shadow .35s;
}
.price-card:hover {
  border-color: rgba(200,168,106,.35); transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,.35);
}
.price-featured {
  background: linear-gradient(145deg, rgba(200,168,106,.12) 0%, rgba(200,168,106,.04) 100%);
  border-color: rgba(200,168,106,.4);
  box-shadow: 0 0 40px rgba(200,168,106,.08), 0 8px 32px rgba(0,0,0,.3);
}
.price-featured:hover {
  box-shadow: 0 0 60px rgba(200,168,106,.18), 0 20px 60px rgba(0,0,0,.4);
}
.price-badge {
  position: absolute; top: -.75rem; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), #dfc07a);
  color: var(--bg-dark); font-size: .68rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .875rem; border-radius: 100px; white-space: nowrap;
}
.price-card-header h3 {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: 1.55rem; color: #fff; margin-bottom: .3rem; letter-spacing: -.02em;
}
.price-card-header p { font-size: .82rem; color: rgba(245,240,232,.45); line-height: 1.4; }

.price-card-body { flex: 1; }
.price-main { font-size: 1.05rem; color: var(--gold); margin-bottom: 1rem; }
.price-main strong { font-size: 1.5rem; font-weight: 700; }

.price-card-body ul { display: flex; flex-direction: column; gap: .5rem; }
.price-card-body li {
  font-size: .85rem; color: rgba(245,240,232,.55);
  padding-left: 1rem; position: relative;
}
.price-card-body li::before { content: "—"; position: absolute; left: 0; color: var(--gold); opacity: .55; }

.price-ship-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .65rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--blue);
  background: var(--blue-light);
  padding: .3rem .75rem; border-radius: 100px;
}
.price-ship-badge.featured { color: var(--bg-dark); background: linear-gradient(135deg, var(--gold), #dfc07a); }

.btn-card {
  padding: .75rem 1.5rem; font-size: .85rem; border-radius: 8px;
  text-align: center; justify-content: center;
}
.btn-card-gold {
  background: linear-gradient(135deg, var(--gold) 0%, #dfc07a 100%) !important;
  color: var(--bg-dark) !important; font-weight: 600;
  box-shadow: 0 4px 20px rgba(200,168,106,.35);
}
.pricing-note {
  text-align: center; font-size: .88rem; color: rgba(245,240,232,.4);
}
.pricing-note a { color: var(--gold); text-decoration: underline; }

/* ── Order / Contact Form ────────────────────────────── */
.order { background: var(--bg-warm); padding: clamp(4rem,8vw,7rem) clamp(1.5rem,5vw,4rem); }
.container-narrow { max-width: 780px; margin: 0 auto; }
.order-title {
  font-family: var(--serif); font-style: italic; font-weight: 600;
  font-size: clamp(2.2rem,5vw,3.5rem); line-height: 1.1;
  letter-spacing: -.03em; color: var(--bg-dark); margin-bottom: .75rem;
}
.order-title em { color: var(--accent); }
.order-subtitle { font-size: .95rem; color: rgba(0,47,71,.6); line-height: 1.65; }
.order .section-header { text-align: center; margin-bottom: 2.5rem; }
.order .section-label { color: var(--accent); }

.order-form {
  display: flex; flex-direction: column; gap: 1.5rem;
  background: #fff; border-radius: 20px;
  padding: clamp(1.5rem,4vw,3rem);
  box-shadow: 0 4px 40px rgba(0,47,71,.07);
  border: 1px solid rgba(0,47,71,.05);
}
.form-field { display: flex; flex-direction: column; gap: .5rem; }
.form-field label, .form-field legend {
  font-size: .72rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(0,47,71,.55);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%; padding: .75rem 0;
  border: none; border-bottom: 1.5px solid rgba(0,47,71,.13);
  border-radius: 0; background: transparent;
  font-family: var(--sans); font-size: 1rem; color: var(--bg-dark);
  transition: border-color .2s; outline: none;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(0,47,71,.28); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-bottom-color: var(--accent);
}
.form-field select {
  -webkit-appearance: none; appearance: none; cursor: pointer; padding-right: 1.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23004261' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 0 center;
}
.form-field textarea { resize: vertical; min-height: 100px; }
.field-error { font-size: .75rem; color: #e53e3e; min-height: 1rem; }
.field-helper { font-size: .75rem; color: rgba(0,47,71,.4); font-style: italic; }
.required { color: var(--accent); }

.checkbox-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(175px,1fr));
  gap: .5rem; margin-top: .5rem;
}
.checkbox-label {
  display: flex; align-items: center; gap: .6rem;
  font-size: .9rem; color: var(--bg-dark); cursor: pointer;
  padding: .5rem .75rem; border-radius: 6px;
  border: 1px solid rgba(0,47,71,.1);
  transition: border-color .2s, background .2s;
  text-transform: none; letter-spacing: 0; font-weight: 400;
}
.checkbox-label:hover { border-color: var(--accent); background: rgba(196,96,58,.04); }
.checkbox-label input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--accent);
  cursor: pointer; flex-shrink: 0; border: none; padding: 0; border-bottom: none;
}
.form-actions { display: flex; justify-content: center; margin-top: .5rem; }
.btn-large { padding: 1.1rem 2.75rem; font-size: 1rem; }

.form-success-block {
  text-align: center; padding: 3rem 2rem;
  background: #fff; border-radius: 20px;
  box-shadow: 0 4px 40px rgba(0,47,71,.07);
}
.success-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #e07a5c);
  color: #fff; font-size: 1.75rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
}
.form-success-block h3 {
  font-family: var(--serif); font-style: italic; font-weight: 300;
  font-size: 1.75rem; color: var(--bg-dark); margin-bottom: .75rem;
}
.form-success-block p { color: rgba(0,47,71,.6); margin-bottom: .5rem; }
.link-accent { color: var(--accent); text-decoration: underline; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 1100px) {
  .gallery-grid { grid-template-columns: repeat(3,1fr); grid-auto-rows: 200px; }
  .pricing-grid { grid-template-columns: repeat(2,1fr); }

}
@media (max-width: 900px) {
  .ateliers-top { grid-template-columns: 1fr; }
  .ateliers-types { grid-template-columns: 1fr 1fr; }
  .ateliers-photos-grid { grid-template-columns: repeat(2,1fr); }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { max-width: 480px; }
  .sticky-inner { grid-template-columns: 1fr; }
  .sticky-left { display: none; }
  .chapter { padding: 3rem 1.5rem; min-height: 60dvh; }
  .occasions-grid { grid-template-columns: 1fr 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; row-gap: 2rem; }
  .stats-divider { width: 40px; height: 1px; margin: 0 auto; }
}
@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: var(--nav-h); left: 0; right: 0;
    background: rgba(0,47,71,.98); backdrop-filter: blur(12px);
    flex-direction: column; align-items: center;
    padding: 2rem 1.5rem; gap: 1.5rem;
    transform: translateY(-120%); transition: transform .4s var(--ease-out);
    box-shadow: 0 20px 40px rgba(0,0,0,.25); z-index: 99;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: rgba(255,255,255,.75) !important; }
  .nav-links a:hover { color: #fff !important; }
  .nav-toggle { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 180px; }
  .occasions-grid { grid-template-columns: 1fr; gap: 12px; }
  .occ-card { aspect-ratio: 4/3; }
  .form-row { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin-left: auto; margin-right: auto; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 1.25rem; }
  .footer-nav { flex-wrap: wrap; gap: 1rem; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 150px; }
}
