/* =========================================================
   Maison de la Tulipe - feuille de style
   Fleuriste hollandais en famille. Direction artistique :
   nature morte hollandaise, creme chaud, rose tulipe poudre.
   ========================================================= */

/* ---------- Polices auto-hebergees (sous-jeu latin) -------- */
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fraunces-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/fraunces-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Fraunces';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/fraunces-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('assets/fonts/inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('assets/fonts/inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('assets/fonts/inter-600.woff2') format('woff2');
}

/* ---------- Jetons de design ------------------------------ */
:root {
  --paper: #fbf8f3;
  --paper-warm: #f4ece0;
  --paper-rose: #f7ece9;
  --ink: #2a211c;
  --ink-soft: #574b42;
  --muted: #6e6258;
  --rose: #a8475a;
  --rose-deep: #7e3343;
  --rose-soft: #c97b89;
  --blush: #f2e2df;
  --sage: #6b7355;
  --sage-soft: #e4e6dc;
  --line: rgba(42, 33, 28, .14);
  --line-soft: rgba(42, 33, 28, .08);
  --shadow-s: 0 2px 10px rgba(42, 33, 28, .06);
  --shadow-m: 0 14px 38px rgba(42, 33, 28, .10);
  --shadow-l: 0 28px 70px rgba(42, 33, 28, .16);
  --serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --radius: 14px;
  --radius-s: 9px;
  --maxw: 1200px;
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Base ------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 1.02rem;
  line-height: 1.72;
  color: var(--ink-soft);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

figure { margin: 0; }

[hidden] { display: none !important; }

a {
  color: var(--rose);
  text-decoration: none;
}

a:hover { color: var(--rose-deep); }

button { font: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.12;
  margin: 0;
  letter-spacing: -.012em;
}

p { margin: 0 0 1rem; }
p:last-child { margin-bottom: 0; }

::selection {
  background: var(--blush);
  color: var(--rose-deep);
}

/* ---------- Accessibilite --------------------------------- */
:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -64px;
  z-index: 200;
  padding: 12px 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 0 0 var(--radius-s) var(--radius-s);
  font-weight: 600;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 0; color: var(--paper); }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Mise en page ---------------------------------- */
.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 3rem);
}

.section {
  padding-block: clamp(3.4rem, 8vw, 6.6rem);
}

.section--warm { background: var(--paper-warm); }
.section--rose { background: var(--paper-rose); }
.section--sage { background: var(--sage-soft); }

.eyebrow {
  display: block;
  margin: 0 0 .9rem;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--rose);
}

.section-head {
  max-width: 640px;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.section-head h2 {
  font-size: clamp(1.95rem, 4.4vw, 3.05rem);
  margin-bottom: .65rem;
}

.section-head p {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.1rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow { justify-content: center; }

/* ---------- Boutons --------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 50px;
  padding: 0 1.6rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  font-family: var(--sans);
  font-size: .96rem;
  font-weight: 600;
  letter-spacing: .005em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
    background-color .25s var(--ease), color .25s var(--ease);
}

.btn--primary {
  background: var(--rose);
  color: var(--paper);
  box-shadow: 0 10px 26px rgba(168, 71, 90, .26);
}
.btn--primary:hover {
  background: var(--rose-deep);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(126, 51, 67, .32);
}

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover {
  color: var(--ink);
  border-color: var(--ink);
  background: rgba(42, 33, 28, .04);
  transform: translateY(-2px);
}

.btn--soft {
  background: var(--blush);
  color: var(--rose-deep);
}
.btn--soft:hover {
  background: var(--rose);
  color: var(--paper);
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(168, 71, 90, .24);
}

.btn--light {
  background: var(--paper);
  color: var(--ink);
}
.btn--light:hover {
  color: var(--ink);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-m);
}

.btn--outline-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(251, 248, 243, .4);
}
.btn--outline-light:hover {
  color: var(--paper);
  border-color: var(--paper);
  background: rgba(251, 248, 243, .08);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 600;
  border-bottom: 1.5px solid currentColor;
  padding-bottom: 2px;
}
.text-link:hover { gap: .6rem; }

/* ---------- En-tete --------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, .9);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
  padding-block: .6rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }

.brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: var(--ink);
  border-radius: 12px;
}
.brand-mark img {
  width: 78%;
  height: 78%;
  object-fit: contain;
}
.site-footer .brand-mark { background: #39302a; }

.brand-name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand-name b {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.16rem;
}
.brand-name span {
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .19em;
  text-transform: uppercase;
  color: var(--muted);
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 1.9rem);
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--ink-soft);
  font-size: .95rem;
  font-weight: 500;
  padding-block: .35rem;
  position: relative;
}
.primary-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 1.5px;
  background: var(--rose);
  transition: width .25s var(--ease);
}
.primary-nav a:hover {
  color: var(--ink);
}
.primary-nav a:hover::after { width: 100%; }

.header-cta { display: inline-flex; }

.header-actions {
  display: flex;
  align-items: center;
  gap: .7rem;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: transparent;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform .25s var(--ease), opacity .2s var(--ease);
}
.nav-toggle span::before { transform: translateY(-6px); }
.nav-toggle span::after { transform: translateY(4px); }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: rotate(-45deg) translateY(-1px); }

/* ---------- Hero ------------------------------------------ */
.hero {
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(40rem 32rem at 88% -10%, rgba(168, 71, 90, .10), transparent 60%),
    radial-gradient(34rem 30rem at 6% 108%, rgba(107, 115, 85, .12), transparent 60%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  gap: clamp(2.2rem, 5vw, 4rem);
  padding-block: clamp(2.6rem, 6vw, 5rem);
  align-items: center;
}

.hero-title-wrap {
  position: relative;
  isolation: isolate;
}
.hero-title {
  font-size: clamp(2.5rem, 6.4vw, 4.3rem);
  font-weight: 500;
  letter-spacing: -.02em;
  position: relative;
  z-index: 2;
}
.petals {
  position: absolute;
  inset: -2rem -1rem -4rem -1rem;
  pointer-events: none;
  z-index: 1;
  display: block;
}
.petals i {
  position: absolute;
  display: block;
  top: -8%;
  width: 14px;
  height: 18px;
  background: var(--rose);
  border-radius: 70% 10% 70% 10% / 70% 10% 70% 10%;
  opacity: 0;
  font-style: normal;
  animation: petal-fall linear infinite;
  will-change: transform, opacity;
}
.petals i:nth-child(1) { left: 10%; width: 12px; height: 15px; animation-duration: 5s; animation-delay: -1s; background: #c97a8a; }
.petals i:nth-child(2) { left: 30%; width: 14px; height: 18px; animation-duration: 6s; animation-delay: -3s; background: #8fa17e; border-radius: 80% 5% 80% 5% / 50% 8% 50% 8%; }
.petals i:nth-child(3) { left: 52%; width: 11px; height: 14px; animation-duration: 4.5s; animation-delay: -2s; background: #d99aa6; }
.petals i:nth-child(4) { left: 72%; width: 14px; height: 18px; animation-duration: 6.5s; animation-delay: -4s; background: #b5586a; }
.petals i:nth-child(5) { left: 88%; width: 11px; height: 14px; animation-duration: 5.5s; animation-delay: -1.5s; background: #b3c4a3; border-radius: 80% 5% 80% 5% / 50% 8% 50% 8%; }

@keyframes petal-fall {
  0%   { transform: translate3d(0, -10%, 0) rotate(0deg);      opacity: 0; }
  10%  { opacity: .8; }
  60%  { transform: translate3d(18px, 60%, 0) rotate(220deg);  opacity: .8; }
  95%  { transform: translate3d(-8px, 98%, 0) rotate(360deg);  opacity: .75; }
  100% { transform: translate3d(-12px, 100%, 0) rotate(370deg); opacity: 0; }
}
h1 em,
h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--rose);
}

.hero-lead {
  max-width: 34rem;
  margin-top: 1.3rem;
  font-size: clamp(1.04rem, 1.5vw, 1.18rem);
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  margin-top: 1.8rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.2rem 1.4rem;
  margin-top: 2.2rem;
  padding-top: 1.6rem;
  border-top: 1px solid var(--line);
  list-style: none;
  padding-left: 0;
}
.hero-trust li {
  display: flex;
  flex-direction: column;
}
.hero-trust b {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.28rem;
  color: var(--ink);
}
.hero-trust span {
  font-size: .85rem;
  color: var(--muted);
}

.hero-media {
  position: relative;
  justify-self: center;
  width: 100%;
  max-width: 460px;
}

.hero-photo {
  position: relative;
  border-radius: 180px 180px var(--radius) var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4 / 5;
  background: var(--blush);
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-note {
  position: absolute;
  left: -1.1rem;
  bottom: 1.6rem;
  max-width: 14.5rem;
  padding: 1rem 1.15rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-s);
  box-shadow: var(--shadow-m);
}
.hero-note strong {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--ink);
}
.hero-note span {
  font-size: .84rem;
  color: var(--muted);
}

/* ---------- Chocolat note + drapeau FR -------------------- */
.chocolat-note {
  margin-top: clamp(1.4rem, 2.6vw, 2rem);
  text-align: center;
  color: var(--ink-soft);
  font-size: .98rem;
}
.chocolat-note strong { color: var(--ink); font-weight: 600; }
.flag-fr {
  display: inline-flex;
  vertical-align: -2px;
  width: 22px;
  height: 14px;
  margin-left: .35rem;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(42,33,28,.15);
}
.flag-fr span { display: block; flex: 1; height: 100%; }
.flag-fr span:nth-child(1) { background: #0055A4; }
.flag-fr span:nth-child(2) { background: #fff; }
.flag-fr span:nth-child(3) { background: #EF4135; }

/* ---------- Compact tiges (merge tiges + couleurs) -------- */
#tiges.section { padding-block: clamp(2.4rem, 5vw, 4rem); }
#tiges .section-head { margin-bottom: clamp(1.2rem, 2.4vw, 1.8rem); }

/* ---------- Bandeau valeurs ------------------------------- */
.values {
  background: var(--ink);
  color: var(--paper);
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: .5rem 1.6rem;
  margin: 0;
  padding-block: clamp(.55rem, 1.2vw, .85rem);
}
.value {
  display: flex;
  gap: .65rem;
  align-items: center;
}
.value svg {
  flex-shrink: 0;
  width: 21px;
  height: 21px;
  color: var(--rose-soft);
}
.value b {
  display: block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .92rem;
  color: var(--paper);
}
.value span {
  font-size: .8rem;
  color: rgba(251, 248, 243, .68);
}

/* ---------- Grille bouquets ------------------------------- */
.bouquet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(.8rem, 1.6vw, 1.2rem);
}
@media (min-width: 540px) {
  .bouquet-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 780px) {
  .bouquet-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1020px) {
  .bouquet-grid { grid-template-columns: repeat(5, 1fr); gap: .9rem; }
  .bouquet-grid .card-body { padding: .9rem .95rem 1.05rem; }
  .bouquet-grid .card-body h3 { font-size: 1.08rem; }
  .bouquet-grid .card-body p { font-size: .85rem; margin-top: .35rem; }
  .bouquet-grid .card-price { font-size: 1rem; }
  .bouquet-grid .card-meta { font-size: .74rem; }
  .bouquet-grid .card-foot { padding-top: .8rem; gap: .5rem; }
  .bouquet-grid .card-add { min-height: 40px; font-size: .88rem; margin-top: .7rem; }
}

.card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-s);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-m);
}

.card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--blush);
}
.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.card:hover .card-media img { transform: scale(1.045); }

.card-tag {
  position: absolute;
  top: .8rem;
  left: .8rem;
  padding: .32rem .7rem;
  background: rgba(251, 248, 243, .94);
  color: var(--rose-deep);
  border-radius: 999px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .04em;
}

.card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.2rem 1.3rem;
}
.card-body h3 {
  font-size: 1.3rem;
  font-weight: 600;
}
.card-body p {
  margin: .5rem 0 0;
  font-size: .93rem;
  color: var(--muted);
}
.card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .8rem;
  margin-top: auto;
  padding-top: 1.05rem;
}
.card-meta {
  font-size: .82rem;
  font-weight: 500;
  color: var(--sage);
}
.card-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--rose);
  white-space: nowrap;
}
.card-add {
  width: 100%;
  min-height: 46px;
  margin-top: .85rem;
  font-size: .92rem;
}

.section-foot {
  display: flex;
  justify-content: center;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
}

/* ---------- Couleurs / emotions --------------------------- */
.colors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: clamp(.8rem, 1.6vw, 1.1rem);
  justify-content: center;
  max-width: 980px;
  margin-inline: auto;
}
.color-card {
  padding: 1.4rem 1.25rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
}
.color-dot {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: .9rem;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .6),
    0 4px 12px rgba(42, 33, 28, .14);
}
.color-card h3 {
  font-size: 1.16rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.color-card p {
  font-size: .87rem;
  color: var(--muted);
}

/* ---------- Histoire -------------------------------------- */
.story-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.6rem);
  align-items: start;
}
.story-photo {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 16 / 9;
  background: var(--blush);
}
.story-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.story-copy h2 {
  font-size: clamp(2rem, 4.4vw, 3.15rem);
  margin-bottom: 1.1rem;
}
.story-copy p {
  color: var(--muted);
  font-size: 1.05rem;
}
.story-copy p + p { margin-top: .9rem; }
.story-sign {
  margin-top: 1.4rem;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.32rem;
  color: var(--rose);
}
.story-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(.5rem, 1vw, .8rem);
  margin-top: clamp(.8rem, 1.6vw, 1.1rem);
}
.story-thumb {
  position: relative;
  padding: 0;
  border: 2px solid transparent;
  border-radius: calc(var(--radius) * .55);
  background: var(--blush);
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  transition: transform .2s var(--ease), border-color .2s var(--ease), box-shadow .25s var(--ease);
}
.story-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s var(--ease);
}
.story-thumb:hover {
  transform: translateY(-2px);
  border-color: var(--rose-soft);
  box-shadow: var(--shadow-m);
}
.story-thumb:hover img { transform: scale(1.04); }
.story-thumb.is-active {
  border-color: var(--ink);
  cursor: default;
}
.story-thumb.is-active:hover { transform: none; }
.story-photo-main {
  transition: opacity .25s var(--ease);
}
.story-photo-main.is-swapping { opacity: 0; }
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(107, 115, 85, .25);
  list-style: none;
  padding-left: 0;
}
.story-stats b { position: relative; }
.story-stats b::after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 6px;
  vertical-align: 4px;
  background: var(--sage);
  border-radius: 50%;
  opacity: .55;
}
.story-stats b {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.7rem;
  color: var(--ink);
}
.story-stats span {
  font-size: .82rem;
  color: var(--muted);
}

/* ---------- Chocolats ------------------------------------- */
.choco-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 220px), 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}

/* ---------- Mariages -------------------------------------- */
.wedding-grid {
  display: grid;
  gap: clamp(2rem, 5vw, 3.4rem);
  align-items: center;
}
.wedding-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-l);
  aspect-ratio: 4 / 3;
  background: var(--blush);
}
.wedding-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wedding-copy h2 {
  font-size: clamp(1.95rem, 4.2vw, 3rem);
  margin-bottom: 1rem;
}
.wedding-copy p { color: var(--muted); }
.wedding-list {
  margin: 1.3rem 0 1.7rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: .7rem;
}
.wedding-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .96rem;
  color: var(--ink-soft);
}
.wedding-list svg {
  flex-shrink: 0;
  width: 19px;
  height: 19px;
  margin-top: .18rem;
  color: var(--sage);
}

/* ---------- Avis ------------------------------------------ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 270px), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.review {
  display: flex;
  flex-direction: column;
  padding: 1.6rem 1.5rem;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
}
.review-stars {
  display: flex;
  gap: .15rem;
  margin-bottom: .9rem;
  color: var(--rose);
}
.review-stars svg { width: 17px; height: 17px; }
.review blockquote {
  margin: 0 0 1.1rem;
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.5;
  color: var(--ink);
}
.review figcaption {
  margin-top: auto;
  font-size: .9rem;
}
.review figcaption b { color: var(--ink); }
.review figcaption span {
  display: block;
  color: var(--muted);
  font-size: .82rem;
}

/* ---------- FAQ ------------------------------------------- */
.faq {
  max-width: 760px;
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem .2rem;
  cursor: pointer;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--ink);
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--blush);
  border-radius: 50%;
}
#faq .faq-icon { background: rgba(107, 115, 85, .15); }
#faq .faq-icon::before,
#faq .faq-icon::after { background: var(--sage); }
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  background: var(--rose);
  transform: translate(-50%, -50%);
  transition: transform .25s var(--ease);
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0); }
.faq-answer {
  padding: 0 .2rem 1.25rem;
  color: var(--muted);
  font-size: .98rem;
}

/* ---------- Appel a l'action final ------------------------ */
.final-cta {
  background:
    radial-gradient(36rem 26rem at 80% 0%, rgba(168, 71, 90, .5), transparent 62%),
    var(--rose-deep);
  color: var(--paper);
  text-align: center;
}
.final-cta h2 {
  max-width: 22ch;
  margin-inline: auto;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--paper);
}
.final-cta p {
  max-width: 44ch;
  margin: 1rem auto 1.9rem;
  color: rgba(251, 248, 243, .8);
  font-size: 1.06rem;
}
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
}

/* ---------- Pied de page ---------------------------------- */
.site-footer {
  background: var(--ink);
  color: rgba(251, 248, 243, .68);
  font-size: .92rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.2rem;
  padding-block: clamp(2.6rem, 5vw, 3.6rem);
}
.footer-brand .brand { color: var(--paper); }
.footer-brand .brand-name b { color: var(--paper); }
.footer-brand p {
  margin-top: 1rem;
  max-width: 30ch;
}
.footer-col h3 {
  color: var(--paper);
  font-size: 1.04rem;
  font-weight: 600;
  margin-bottom: .8rem;
}
.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: .5rem;
}
.footer-col a { color: rgba(251, 248, 243, .68); }
.footer-col a:hover { color: var(--paper); }
.footer-col address {
  font-style: normal;
  display: grid;
  gap: .4rem;
}
.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  justify-content: space-between;
  padding-block: 1.3rem;
  border-top: 1px solid rgba(251, 248, 243, .12);
  font-size: .84rem;
}

/* ---------- Animations d'apparition ----------------------- */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Points d'arret -------------------------------- */
@media (min-width: 600px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1.4fr 1fr; }
}

@media (min-width: 720px) {
  body { font-size: 1.05rem; }
}

@media (min-width: 860px) {
  .nav-cta { display: none; }
  .hero-inner { grid-template-columns: 1.05fr .95fr; }
  .story-grid { grid-template-columns: 1.18fr .82fr; }
  .story-grid--reverse .story-photo { order: 2; }
  .wedding-grid { grid-template-columns: 1.1fr .9fr; }
  .values-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-top { grid-template-columns: 1.6fr 1fr 1.2fr; }
}

@media (max-width: 859px) {
  .nav-toggle { display: inline-flex; }
  .header-cta { display: none; }
  .primary-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-m);
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s var(--ease);
  }
  .primary-nav.is-open { max-height: 36rem; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .5rem clamp(1.1rem, 4vw, 3rem) 1.3rem;
  }
  .primary-nav li { border-bottom: 1px solid var(--line-soft); }
  .primary-nav li:last-child { border-bottom: 0; }
  .primary-nav a {
    display: block;
    padding: .85rem 0;
    font-size: 1.02rem;
  }
  .primary-nav a::after { display: none; }
  .nav-cta {
    margin-top: 1rem;
    padding-top: 1rem;
  }
  .nav-cta .btn { width: 100%; }
}

@media (max-width: 460px) {
  .hero-note { left: 0; }
  .story-stats { grid-template-columns: 1fr; gap: .7rem; }
  .btn { width: 100%; }
  .hero-actions .btn,
  .final-actions .btn { width: auto; }
  .brand-mark { width: 42px; height: 42px; }
  .brand-name b { font-size: 1.02rem; }
  .brand-name span { font-size: .6rem; }
  .header-actions { gap: .5rem; }
}

/* ---------- Preferences de mouvement reduit --------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* =========================================================
   Composants ajoutes : achat a la tige, livraison, panier
   ========================================================= */

/* ---------- Incrementeur partage -------------------------- */
.stepper {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
}
.stepper-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  font-size: 1.15rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color .2s var(--ease), color .2s var(--ease);
}
.stepper-btn:hover {
  background: var(--blush);
  color: var(--rose-deep);
}
.stepper-val {
  min-width: 2.6ch;
  text-align: center;
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
}

/* ---------- Achat a la tige ------------------------------- */
.stem-composer {
  margin-top: 0;
  display: grid;
  gap: clamp(1.3rem, 2.6vw, 2rem);
}
.color-card.swatch {
  width: auto;
  height: auto;
  background: var(--paper);
  border: 2px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 1.3rem 1.15rem;
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-s);
  transition: transform .2s var(--ease), border-color .2s var(--ease), background-color .25s var(--ease), box-shadow .25s var(--ease);
  font: inherit;
  color: inherit;
}
.color-card.swatch:hover {
  transform: translateY(-3px);
  border-color: var(--rose-soft);
  box-shadow: var(--shadow-l);
}
.color-card.swatch.is-active {
  border-color: var(--ink);
}
.color-card .color-dot {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: .85rem;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .6),
    0 4px 12px rgba(42, 33, 28, .14);
}
.color-card h3 {
  font-size: 1.12rem;
  font-weight: 600;
  margin: 0 0 .25rem;
  color: var(--ink);
}
.color-card p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
}
.stem-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  padding: 1.2rem clamp(1rem, 3vw, 2rem);
  background: var(--paper-warm);
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.stem-price {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.32rem;
  color: var(--rose);
}
.stem-add { min-height: 48px; }

/* ---------- Livraison ------------------------------------- */
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 250px), 1fr));
  gap: clamp(1rem, 2vw, 1.4rem);
}
.delivery-card {
  padding: clamp(1.5rem, 2.6vw, 2.1rem);
  text-align: center;
  background: var(--paper);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  box-shadow: var(--shadow-s);
  transition: background-color .35s var(--ease), border-color .35s var(--ease), transform .25s var(--ease), box-shadow .25s var(--ease);
}
.delivery-card:hover {
  background: var(--blush);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--shadow-l);
}
.delivery-card:hover .delivery-icon {
  background: #fff;
}
.delivery-card--blush {
  background: var(--blush);
  border-color: transparent;
  position: relative;
}
.delivery-card--blush:hover {
  background: #fff;
  border-color: var(--blush);
}
.delivery-card--blush:hover .delivery-icon {
  background: var(--blush);
}
.delivery-card--blush .delivery-icon {
  background: #fff;
  color: var(--rose);
}
.delivery-card--blush .delivery-price {
  display: inline-block;
  margin: .3rem auto .55rem;
  padding: .22rem .7rem;
  background: #fff;
  color: var(--rose);
  border-radius: 999px;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.delivery-card--blush p:last-child {
  color: var(--ink-soft);
}
.delivery-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose);
}
.delivery-icon svg { width: 25px; height: 25px; }
.delivery-card h3 { font-size: 1.3rem; }
.delivery-price {
  margin: .3rem 0 .55rem;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.16rem;
  color: var(--rose);
}
.delivery-card p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: .93rem;
}
.delivery-note {
  margin-top: 1.7rem;
  text-align: center;
  color: var(--muted);
  font-size: .9rem;
}

/* ---------- Bouton panier (en-tete) ----------------------- */
.cart-toggle {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid var(--rose);
  border-radius: var(--radius-s);
  background: var(--rose);
  color: var(--paper);
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cart-toggle:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: var(--paper);
}
.cart-toggle svg { width: 22px; height: 22px; }
.cart-count {
  position: absolute;
  top: -7px;
  right: -7px;
  min-width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--ink);
  color: var(--ink);
  font-size: .72rem;
  font-weight: 700;
}

/* ---------- Tiroir panier --------------------------------- */
.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 150;
  background: rgba(42, 33, 28, .5);
  opacity: 0;
  transition: opacity .3s var(--ease);
}
.cart-backdrop.is-visible { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 160;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  height: 100%;
  background: var(--paper);
  box-shadow: -22px 0 60px rgba(42, 33, 28, .26);
  transform: translateX(100%);
  transition: transform .35s var(--ease);
}
.cart-drawer.is-open { transform: none; }

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(1.1rem, 3vw, 1.6rem);
  border-bottom: 1px solid var(--line);
}
.cart-head h2 { font-size: 1.5rem; }
.cart-close {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: background-color .2s var(--ease);
}
.cart-close:hover { background: var(--blush); }
.cart-close svg { width: 18px; height: 18px; }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: clamp(1.1rem, 3vw, 1.6rem);
}
.cart-empty {
  margin: 0;
  color: var(--muted);
}
.cart-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.cart-item {
  display: grid;
  gap: .7rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line-soft);
}
.cart-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.cart-item-info b {
  display: block;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.06rem;
  color: var(--ink);
}
.cart-item-info span {
  font-size: .83rem;
  color: var(--muted);
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cart-item-line {
  font-family: var(--serif);
  font-weight: 600;
  color: var(--rose);
}

.cart-foot {
  padding: clamp(1.1rem, 3vw, 1.6rem);
  border-top: 1px solid var(--line);
  background: var(--paper-warm);
}
.cart-total-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: .9rem;
}
.cart-total-row > span:first-child { color: var(--muted); }
.cart-total {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--ink);
}
.cart-checkout { width: 100%; }
.cart-note {
  margin: .75rem 0 0;
  text-align: center;
  font-size: .82rem;
  color: var(--muted);
}

.cart-done {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  text-align: center;
  padding: clamp(1.6rem, 6vw, 3rem);
}
.cart-done-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 62px;
  height: 62px;
  margin-bottom: .5rem;
  border-radius: 50%;
  background: var(--sage-soft);
  color: var(--sage);
}
.cart-done-icon svg { width: 28px; height: 28px; }
.cart-done h3 { font-size: 1.5rem; }
.cart-done p {
  margin: 0;
  color: var(--muted);
}
.cart-restart { margin-top: 1.4rem; }

/* ---------- Points d'arret des nouveaux composants -------- */
@media (min-width: 720px) {
  .stem-composer {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   Refonte mobile (<= 768px)
   - Hero compact en colonne
   - Bouquets et chocolats en slider horizontal scroll-snap
   - Livraison et valeurs 2 x 2
   - Padding et typo proportionnees au petit ecran
   ========================================================= */
@media (max-width: 768px) {
  html, body { overflow-x: clip; max-width: 100vw; }
  .wrap { padding-inline: 1.05rem; }

  /* Sections plus serrees */
  .section { padding-block: clamp(2.4rem, 7vw, 3rem); }
  .section-head { margin-bottom: 1.3rem; }
  .section-head h2 { font-size: clamp(1.7rem, 6.4vw, 2.15rem); margin-bottom: .45rem; }
  .section-head p { font-size: .94rem; line-height: 1.55; }

  /* Header */
  .header-inner { min-height: 64px; gap: .55rem; }
  .brand-mark { width: 40px; height: 40px; border-radius: 10px; }
  .brand-mark img { width: 72%; height: 72%; }
  .brand-name b { font-size: 1rem; }
  .brand-name span { font-size: .58rem; letter-spacing: .15em; }
  .cart-toggle { width: 42px; height: 42px; }
  .cart-toggle svg { width: 20px; height: 20px; }
  .nav-toggle { width: 42px; height: 42px; }
  .header-actions { gap: .45rem; }

  /* Hero */
  .hero { overflow: hidden; }
  .hero-inner { padding-block: 1.6rem 1.8rem; gap: 1.5rem; grid-template-columns: 1fr; }
  .hero .eyebrow { font-size: .68rem; letter-spacing: .14em; margin-bottom: .6rem; }
  .hero-title { font-size: clamp(2rem, 8.4vw, 2.6rem); line-height: 1.15; }
  .hero-lead { font-size: .96rem; line-height: 1.55; margin-top: .9rem; }
  .hero-actions { gap: .55rem; margin-top: 1.2rem; flex-wrap: wrap; }
  .hero-actions .btn { min-height: 46px; padding: 0 1.15rem; font-size: .9rem; width: auto; flex: 1 1 auto; }
  .hero-trust { grid-template-columns: 1fr 1fr; gap: .8rem 1rem; margin-top: 1.4rem; padding-top: 1.1rem; }
  .hero-trust b { font-size: 1.05rem; }
  .hero-trust span { font-size: .76rem; }
  .hero-media { max-width: 300px; margin-inline: auto; }
  .hero-photo { border-radius: 110px 110px var(--radius) var(--radius); aspect-ratio: 4 / 4.5; }
  .hero-note {
    position: static;
    left: 0; bottom: auto;
    margin: .9rem auto 0;
    max-width: 100%;
    padding: .7rem .9rem;
    text-align: center;
  }
  .hero-note strong { font-size: .94rem; }
  .hero-note span { font-size: .78rem; }
  .petals { inset: -1rem 0 -2rem 0; }
  .petals i { width: 9px !important; height: 12px !important; }

  /* Valeurs : 2 x 2 */
  .values-grid { grid-template-columns: 1fr 1fr; gap: .6rem 1rem; padding-block: .65rem; }
  .value { gap: .55rem; align-items: flex-start; }
  .value svg { width: 18px; height: 18px; margin-top: .15rem; }
  .value b { font-size: .82rem; }
  .value span { font-size: .72rem; line-height: 1.35; }

  /* Bouquets et chocolats : slider horizontal scroll-snap */
  .bouquet-grid,
  .choco-grid {
    display: flex;
    grid-template-columns: none;
    gap: .75rem;
    margin: 0 -1.05rem;
    padding: .25rem 1.05rem .75rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 1.05rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .bouquet-grid::-webkit-scrollbar,
  .choco-grid::-webkit-scrollbar { display: none; }
  .bouquet-grid > .card,
  .choco-grid > .card {
    flex: 0 0 auto;
    width: 78vw;
    max-width: 18rem;
    scroll-snap-align: start;
  }
  .bouquet-grid .card-body,
  .choco-grid .card-body { padding: .85rem .9rem 1rem; }
  .bouquet-grid .card-body h3,
  .choco-grid .card-body h3 { font-size: 1.05rem; line-height: 1.2; }
  .bouquet-grid .card-body p,
  .choco-grid .card-body p { font-size: .82rem; margin-top: .3rem; line-height: 1.45; }
  .bouquet-grid .card-foot,
  .choco-grid .card-foot { padding-top: .65rem; gap: .4rem; flex-wrap: wrap; align-items: center; }
  .bouquet-grid .card-meta,
  .choco-grid .card-meta { font-size: .74rem; }
  .bouquet-grid .card-price,
  .choco-grid .card-price { font-size: 1rem; }
  .bouquet-grid .card-add,
  .choco-grid .card-add { min-height: 40px; font-size: .85rem; margin-top: .6rem; padding: 0 .9rem; }
  .bouquet-grid .card-tag,
  .choco-grid .card-tag { font-size: .62rem; padding: .22rem .55rem; top: .55rem; left: .55rem; }
  .chocolat-note { font-size: .88rem; margin-top: 1.2rem; }

  /* Tiges a la composition */
  #tiges.section { padding-block: 2.4rem; }
  .stem-composer { gap: 1.1rem; }
  .stem-row { padding: .9rem 1rem; gap: .7rem; flex-direction: column; }
  .stem-row > * { width: 100%; }
  .stem-row .stepper { justify-self: center; align-self: center; width: auto; }
  .stem-price { font-size: 1.2rem; text-align: center; }
  .stem-add { width: 100%; min-height: 46px; }
  .colors-grid { grid-template-columns: 1fr 1fr; gap: .55rem; }
  .color-card { padding: .9rem .8rem; }
  .color-card .color-dot { width: 30px; height: 30px; margin-bottom: .55rem; }
  .color-card h3 { font-size: .98rem; margin-bottom: .2rem; }
  .color-card p { font-size: .76rem; line-height: 1.4; }

  /* Livraison : grille 2 x 2 */
  .delivery-grid { grid-template-columns: 1fr 1fr; gap: .65rem; }
  .delivery-card { padding: 1rem .85rem; }
  .delivery-icon { width: 42px; height: 42px; margin-bottom: .55rem; }
  .delivery-icon svg { width: 20px; height: 20px; }
  .delivery-card h3 { font-size: 1rem; }
  .delivery-price { font-size: .98rem; margin: .2rem 0 .4rem; }
  .delivery-card p:last-child { font-size: .8rem; line-height: 1.45; }
  .delivery-card--blush .delivery-price { font-size: .68rem; padding: .18rem .55rem; margin: .2rem auto .4rem; }

  /* Mariages */
  .wedding-grid { gap: 1.4rem; grid-template-columns: 1fr; }
  .wedding-photo { aspect-ratio: 4 / 3; }
  .wedding-copy h2 { font-size: clamp(1.7rem, 6.4vw, 2.15rem); margin-bottom: .7rem; }
  .wedding-copy p { font-size: .96rem; line-height: 1.55; }
  .wedding-list { margin: 1rem 0 1.3rem; gap: .55rem; }
  .wedding-list li { font-size: .92rem; }

  /* Histoire */
  .story-grid { gap: 1.5rem; grid-template-columns: 1fr; }
  .story-photo { aspect-ratio: 4 / 3; }
  .story-copy h2 { font-size: clamp(1.8rem, 6.6vw, 2.25rem); margin-bottom: .8rem; }
  .story-copy p { font-size: .98rem; line-height: 1.6; }
  .story-thumbs { grid-template-columns: 1fr 1fr 1fr; gap: .45rem; margin-top: .8rem; }
  .story-stats { grid-template-columns: 1fr 1fr 1fr; gap: .6rem; padding-top: 1.1rem; margin-top: 1.3rem; }
  .story-stats b { font-size: 1.25rem; }
  .story-stats b::after { width: 4px; height: 4px; margin-left: 4px; }
  .story-stats span { font-size: .72rem; line-height: 1.3; }
  .story-sign { font-size: 1.18rem; margin-top: 1rem; }

  /* Avis : stack lisible */
  .reviews-grid { grid-template-columns: 1fr; gap: .8rem; }
  .review { padding: 1.2rem 1.1rem; }
  .review blockquote { font-size: 1rem; line-height: 1.5; margin-bottom: .9rem; }
  .review-stars svg { width: 15px; height: 15px; }

  /* FAQ */
  .faq-item summary { font-size: 1rem; padding: 1rem .1rem; gap: .7rem; }
  .faq-answer { font-size: .92rem; padding: 0 .1rem 1.1rem; }
  .faq-icon { width: 22px; height: 22px; }

  /* CTA finale */
  .final-cta { padding-block: 3rem; }
  .final-cta h2 { font-size: clamp(1.8rem, 7vw, 2.4rem); }
  .final-cta p { font-size: .96rem; margin: .85rem auto 1.5rem; }
  .final-actions { gap: .55rem; flex-wrap: wrap; }
  .final-actions .btn { flex: 1 1 auto; width: auto; min-height: 46px; padding: 0 1.2rem; font-size: .9rem; }

  /* Pied de page */
  .site-footer { font-size: .86rem; }
  .footer-top { gap: 1.5rem; padding-block: 2.2rem; }
  .footer-brand p { font-size: .9rem; line-height: 1.6; max-width: 100%; }
  .footer-col h3 { font-size: 1rem; margin-bottom: .55rem; }
  .footer-bottom { gap: .4rem 1rem; font-size: .76rem; padding-block: 1rem; flex-direction: column; align-items: flex-start; text-align: left; }

  /* Panier drawer */
  .cart-drawer { width: 100%; max-width: 100%; }
  .cart-head h2 { font-size: 1.25rem; }
  .cart-total { font-size: 1.25rem; }
}

/* Tres petits ecrans : on degage encore plus, lisibilite avant tout */
@media (max-width: 380px) {
  .hero-trust { grid-template-columns: 1fr; gap: .55rem; padding-top: 1rem; }
  .values-grid { grid-template-columns: 1fr; }
  .story-stats { grid-template-columns: 1fr; gap: .55rem; }
  .delivery-grid { grid-template-columns: 1fr; }
  .colors-grid { grid-template-columns: 1fr; }
  .brand-name span { display: none; }
  .hero-title { font-size: 1.85rem; }
  .section-head h2 { font-size: 1.62rem; }
}
