/* SWEETS BY S — Charte luxe contemporaine (60/30/10) */

:root {
  --cream: #faeddb;
  --beige: #f2e6d9;
  --brown: #845626;
  --gold: #c09860;
  --gold-hover: #a8844f;
  --text: #3d2010;
  --white: #ffffff;
  --success: #5a7a52;
  --error: #a84832;

  /* Alias compatibilité */
  --primary: var(--gold);
  --primary-hover: var(--gold-hover);
  --primary-light: rgba(192, 152, 96, 0.15);
  --chocolate: var(--brown);
  --rose: var(--gold);
  --rose-hover: var(--gold-hover);
  --rose-light: var(--primary-light);
  --ivory: var(--cream);
  --bg: var(--cream);
  --surface: var(--cream);
  --brown-body: var(--text);
  --espresso: var(--brown);
  --muted: rgba(61, 32, 16, 0.65);
  --accent: var(--gold);
  --accent-light: rgba(192, 152, 96, 0.2);
  --sand: var(--gold);
  --berry: var(--brown);
  --sage: var(--brown);
  --sage-light: var(--primary-light);

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
  --font-serif: var(--font-display);

  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --section-py: clamp(80px, 10vw, 120px);
  --container: 1200px;
  --radius: 4px;
  --radius-sm: 4px;
  --radius-pill: 4px;
  --shadow-card: 0 4px 24px rgba(61, 32, 16, 0.06);
  --shadow-hover: 0 12px 40px rgba(61, 32, 16, 0.1);
  --shadow-header: 0 2px 16px rgba(61, 32, 16, 0.08);
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary-light); color: var(--text); }
main { flex: 1; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--brown); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--brown);
  line-height: 1.1;
  font-weight: 700;
}
h1 { font-size: clamp(2.75rem, 5vw, 4.5rem); }
h2 { font-size: 36px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--space-3); }
.container--narrow { max-width: 760px; }
@media (min-width: 1024px) { .container { padding: 0 var(--space-5); } }

.section { padding: var(--section-py) 0; }
.section-white { background: var(--white); }
.section-cta { text-align: center; margin-top: var(--space-5); }
.page-flash { padding-top: var(--space-3); }

.section-label {
  display: block;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-2);
}
.section-title { text-align: center; margin-bottom: var(--space-2); }
.section-subtitle {
  text-align: center;
  color: var(--muted);
  margin-bottom: var(--space-5);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.05rem;
}

.section-divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: var(--space-5) auto; max-width: 200px; }
.section-divider__line { flex: 1; height: 1px; background: rgba(132, 86, 38, 0.2); }
.section-divider__dot { width: 4px; height: 4px; background: var(--gold); }

.icon { color: var(--gold); flex-shrink: 0; }
.star-icon { display: inline-flex; color: var(--gold); }
.star-icon .icon { width: 16px; height: 16px; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }

.section-title--left { text-align: left; }
.section-header-row {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: var(--space-3); margin-bottom: var(--space-5); flex-wrap: wrap;
}
.section-header-row h2 { margin: 0; font-size: 36px; }
.link-arrow {
  font-size: 14px; font-weight: 500; color: var(--brown);
  white-space: nowrap; border-bottom: 1px solid transparent;
}
.link-arrow:hover { color: var(--gold); border-bottom-color: var(--gold); }
.eyebrow {
  display: block; font-size: 12px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--muted); margin-bottom: var(--space-3);
}
.hero-accent {
  font-style: italic; color: var(--gold); font-weight: 700;
}

/* === HEADER (maquette) === */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: var(--white);
  border-bottom: 1px solid rgba(132, 86, 38, 0.08);
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-header); }
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: var(--space-3);
  padding: 18px var(--space-3);
  min-height: 72px;
}
.logo-left { color: var(--brown); text-decoration: none; }
.logo-left:hover { color: var(--brown); }
.logo-left .logo-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}
.nav-center {
  display: none;
  justify-content: center;
  gap: clamp(20px, 4vw, 40px);
}
.nav-center a {
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 4px 0; position: relative;
}
.nav-center a:hover, .nav-center a.active { color: var(--brown); }
.nav-center a.active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 1px; background: var(--gold);
}
.nav-right { display: none; justify-content: flex-end; }
.btn-ghost {
  background: var(--white); color: var(--text);
  border: 1px solid var(--text);
}
.btn-ghost:hover { background: var(--cream); color: var(--brown); border-color: var(--brown); }
.nav-toggle {
  display: flex; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: var(--space-1);
  justify-self: end;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--brown); }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-center, .nav-right { display: flex; }
}
@media (max-width: 899px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .site-header.nav-open .nav-center {
    display: flex; flex-direction: column; align-items: flex-start;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); padding: var(--space-3);
    border-bottom: 1px solid rgba(132, 86, 38, 0.1);
    box-shadow: var(--shadow-header);
  }
  .site-header.nav-open .nav-right {
    display: flex; flex-direction: column;
    position: absolute; top: calc(100% + 200px); left: 0; right: 0;
    background: var(--white); padding: 0 var(--space-3) var(--space-3);
    border-bottom: 1px solid rgba(132, 86, 38, 0.1);
  }
  .site-header.nav-open .nav-right .btn { width: 100%; }
}

/* === HERO HOME (maquette) === */
.hero-home {
  display: grid; grid-template-columns: 1fr;
  min-height: calc(100vh - 72px);
}
@media (min-width: 900px) {
  .hero-home { grid-template-columns: 1fr 1fr; }
}
.hero-home__content {
  background: var(--cream);
  display: flex; align-items: center;
  padding: var(--space-6) var(--space-3);
}
.hero-home__content-inner { max-width: 520px; margin: 0 auto; width: 100%; }
.hero-home__content h1 {
  margin-bottom: var(--space-3);
  line-height: 1.05;
  max-width: 11ch;
}
.hero-home__lead {
  font-size: 1.05rem; color: var(--muted);
  max-width: 420px; margin-bottom: var(--space-4); line-height: 1.7;
}
.hero-home__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero-home__visual {
  background: var(--beige);
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-6) var(--space-3);
  position: relative; min-height: 360px;
}
.hero-home__circle {
  width: min(420px, 80vw); height: min(420px, 80vw);
  border-radius: 50%; overflow: hidden;
  box-shadow: 0 20px 60px rgba(61, 32, 16, 0.12);
  background: var(--white);
}
.hero-home__circle img { width: 100%; height: 100%; object-fit: cover; }
.hero-home__badge {
  position: absolute; bottom: 12%; right: 10%;
  background: var(--brown); color: var(--cream);
  padding: 14px 16px; font-size: 11px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  line-height: 1.3; text-align: center;
  border-radius: var(--radius);
}
.hero-home__badge span { display: block; }

/* === USP BAR === */
.usp-bar {
  background: var(--brown);
  color: var(--cream);
  padding: 14px 0;
}
.usp-bar__inner {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: var(--space-2) var(--space-4);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
}
.usp-bar__sep {
  width: 4px; height: 4px; background: rgba(250, 237, 219, 0.5);
  border-radius: 50%;
}
@media (max-width: 640px) {
  .usp-bar__sep { display: none; }
  .usp-bar__inner { flex-direction: column; gap: 8px; }
}

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border-radius: var(--radius);
  font-family: var(--font-body); font-size: 14px; font-weight: 500;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; border: 1px solid transparent; letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--gold); color: var(--white); border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-hover); border-color: var(--gold-hover);
  color: var(--white); transform: translateY(-1px);
}
.btn-secondary {
  background: transparent; color: var(--brown);
  border-color: var(--brown);
}
.btn-secondary:hover { background: rgba(132, 86, 38, 0.06); color: var(--brown); }
.btn-outline { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline:hover { background: rgba(132, 86, 38, 0.06); }
.btn-white { background: var(--white); color: var(--brown); border-color: rgba(132, 86, 38, 0.2); }
.btn-chocolate { background: var(--brown); color: var(--cream); border-color: var(--brown); }
.btn-chocolate:hover { background: #6d4520; color: var(--cream); }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-block { width: 100%; }
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none !important; }

/* === HERO SPLIT === */
.hero-split {
  min-height: calc(100vh - 72px);
  display: flex; align-items: center;
  background: var(--cream);
  padding: var(--space-5) 0;
}
.hero-split__inner {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5); align-items: center;
}
@media (min-width: 900px) {
  .hero-split__inner { grid-template-columns: 1fr 1fr; gap: var(--space-6); }
}
.hero-split__content .section-label { text-align: left; }
.hero-split__content h1 { margin-bottom: var(--space-3); max-width: 12ch; }
.hero-split__subtitle {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 480px;
  margin-bottom: var(--space-4);
  line-height: 1.7;
}
.hero-split__actions { display: flex; flex-wrap: wrap; gap: var(--space-2); }
.hero-split__frame {
  background: var(--white);
  padding: var(--space-3);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
}
.hero-split__frame img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius);
}

.section-philosophy { background: var(--white); }
.section-philosophy .section-label { text-align: left; }
.philosophy-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); margin-top: var(--space-5); }
@media (min-width: 768px) { .philosophy-grid { grid-template-columns: repeat(3, 1fr); } }
.philosophy-card {
  background: var(--beige); padding: var(--space-5) var(--space-3);
  border-radius: 6px; text-align: left;
  transition: transform var(--transition), box-shadow var(--transition);
}
.philosophy-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.philosophy-card__icon {
  width: 40px; height: 40px; margin-bottom: var(--space-3);
  display: flex; align-items: center; justify-content: flex-start;
}
.philosophy-card h3 { margin-bottom: var(--space-1); font-size: 1.2rem; }
.philosophy-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.6; }

/* === DOUCEURS (maquette) === */
.section-douceurs { background: var(--cream); }
.douceur-card--showcase {
  background: var(--beige); border: none;
  box-shadow: none; padding: var(--space-5) var(--space-3);
  border-radius: 6px;
}
.douceur-card--showcase:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.douceur-card__icon-wrap {
  width: 72px; height: 72px; margin: 0 auto var(--space-3);
  border-radius: 50%; background: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(61, 32, 16, 0.06);
}
.douceur-card__icon-wrap .icon { width: 28px; height: 28px; }

/* === OCCASIONS MOSAIC === */
.section-occasions { background: var(--white); }
.occasions-mosaic {
  display: grid; gap: var(--space-2);
  grid-template-columns: 1fr;
  margin-top: var(--space-5);
}
@media (min-width: 768px) {
  .occasions-mosaic {
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: repeat(3, minmax(100px, 1fr));
  }
  .occasion-tile--featured { grid-row: 1 / 4; min-height: 320px; }
  .occasion-tile--wide { grid-column: 1 / -1; }
}
.occasion-tile {
  display: flex; align-items: center; justify-content: space-between;
  padding: var(--space-4) var(--space-3);
  background: var(--beige); color: var(--brown);
  border-radius: 6px; text-decoration: none;
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition);
  min-height: 100px;
}
.occasion-tile:hover { transform: translateY(-2px); box-shadow: var(--shadow-card); color: var(--brown); }
.occasion-tile--featured {
  background: var(--brown); color: var(--cream);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  padding: var(--space-5);
  flex-direction: column; align-items: flex-start; justify-content: flex-end;
  min-height: 280px;
}
.occasion-tile--featured:hover { color: var(--cream); }
.occasion-tile--featured .occasion-tile__arrow { align-self: flex-end; margin-top: var(--space-3); }
.occasion-tile--wide {
  background: var(--beige); font-family: var(--font-body);
  font-size: 0.95rem; font-weight: 500; color: var(--muted);
  min-height: auto; padding: var(--space-3);
}
.occasion-tile__arrow { color: var(--gold); font-size: 1.25rem; font-family: var(--font-body); }

/* === CTA STRIP === */
.cta-strip {
  background: var(--brown);
  padding: var(--space-5) 0;
}
.cta-strip__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: var(--space-3); flex-wrap: wrap;
}
.cta-strip h2 {
  color: var(--cream); font-size: clamp(1.5rem, 3vw, 2rem);
  max-width: 520px; line-height: 1.2;
}
.cta-strip__link {
  color: var(--cream); font-size: 15px; font-weight: 500;
  white-space: nowrap; border-bottom: 1px solid rgba(250, 237, 219, 0.4);
  padding-bottom: 2px;
}
.cta-strip__link:hover { color: var(--gold); border-bottom-color: var(--gold); }

/* === PHILOSOPHY (legacy) === */
.philosophy-intro { max-width: 680px; margin: 0 auto var(--space-5); text-align: center; }
.philosophy-intro p { font-size: 1.05rem; line-height: 1.8; color: var(--muted); margin-bottom: var(--space-2); }
.philosophy-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 768px) { .philosophy-grid { grid-template-columns: repeat(3, 1fr); } }
.philosophy-card {
  background: var(--white); padding: var(--space-5) var(--space-3);
  box-shadow: var(--shadow-card); border-radius: var(--radius);
  text-align: center; transition: transform var(--transition), box-shadow var(--transition);
}
.philosophy-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.philosophy-card__icon {
  width: 48px; height: 48px; margin: 0 auto var(--space-3);
  display: flex; align-items: center; justify-content: center;
}
.philosophy-card h3 { margin-bottom: var(--space-1); }
.philosophy-card p { font-size: 0.92rem; color: var(--muted); line-height: 1.6; }

/* === BOX SHOWCASE === */
.box-showcase {
  background: var(--white); padding: var(--space-5);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  border: 1px solid rgba(132, 86, 38, 0.08);
}
.box-showcase__steps { display: grid; grid-template-columns: 1fr; gap: var(--space-4); margin-bottom: var(--space-4); }
@media (min-width: 768px) { .box-showcase__steps { grid-template-columns: repeat(3, 1fr); } }
.box-showcase__step { text-align: center; padding: var(--space-2); }
.box-showcase__step-num {
  width: 40px; height: 40px; margin: 0 auto var(--space-2);
  border: 1px solid var(--brown); color: var(--brown);
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius);
}
.box-showcase__step h3 { font-size: 1.05rem; margin-bottom: 6px; }
.box-showcase__step p { font-size: 0.88rem; color: var(--muted); }
.box-showcase__cta { text-align: center; }

/* === DOUCEURS === */
.douceurs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-3); }
@media (min-width: 768px) { .douceurs-grid--showcase { grid-template-columns: repeat(3, 1fr); } }
.douceur-card {
  background: var(--white); padding: var(--space-4) var(--space-3);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  text-align: center; cursor: pointer;
  border: 1px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.douceur-card--showcase { cursor: default; }
.douceur-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.douceur-card.selected { border-color: var(--gold); box-shadow: var(--shadow-hover); }
.douceur-card__icon {
  width: 40px; height: 40px; margin: 0 auto var(--space-2);
  display: flex; align-items: center; justify-content: center;
}
.douceur-card h4 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; color: var(--brown); margin-bottom: 6px; }
.douceur-price { font-family: var(--font-body); font-size: 0.85rem; font-weight: 500; color: var(--muted); }

/* === OCCASIONS === */
.occasions-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 640px) { .occasions-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .occasions-grid { grid-template-columns: repeat(3, 1fr); } }
.occasion-card {
  position: relative; overflow: hidden; aspect-ratio: 4/5;
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.occasion-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.occasion-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.occasion-card:hover img { transform: scale(1.04); }
.occasion-card__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(61, 32, 16, 0.8) 0%, transparent 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: var(--space-3); color: var(--cream);
}
.occasion-card__overlay h3 { color: var(--cream); font-size: 1.25rem; margin-bottom: 4px; }
.occasion-card__overlay p { font-size: 0.85rem; opacity: 0.9; color: var(--cream); }

/* === PROCESS === */
.process-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 640px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .process-grid { grid-template-columns: repeat(4, 1fr); } }
.process-step {
  background: var(--white); padding: var(--space-4);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  text-align: center;
}
.section-white .process-step { background: var(--cream); }
.process-step__num {
  font-family: var(--font-display); font-size: 2rem; font-weight: 700;
  color: var(--gold); display: block; margin-bottom: var(--space-1);
}
.process-step h3 { margin-bottom: 8px; font-size: 1.1rem; }
.process-step p { font-size: 0.88rem; color: var(--muted); }

/* === TESTIMONIALS === */
.testimonials-slider { max-width: 680px; margin: 0 auto; }
.testimonials-track { position: relative; min-height: 200px; }
.testimonial-slide {
  position: absolute; inset: 0; opacity: 0; transform: translateX(16px);
  transition: opacity 0.4s ease, transform 0.4s ease; pointer-events: none;
}
.testimonial-slide.active { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.testimonial-card {
  background: var(--white); padding: var(--space-5);
  border-radius: var(--radius); box-shadow: var(--shadow-card);
  text-align: center;
}
.section-white .testimonial-card { background: var(--cream); }
.testimonial-avatar {
  width: 56px; height: 56px; border-radius: var(--radius);
  margin: 0 auto var(--space-2); background: var(--primary-light);
  color: var(--brown); font-family: var(--font-display);
  font-size: 1.25rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(192, 152, 96, 0.3);
}
.testimonial-stars { display: flex; justify-content: center; gap: 4px; margin-bottom: var(--space-2); }
.testimonial-card p { font-size: 1.05rem; font-style: italic; color: var(--text); line-height: 1.7; }
.testimonial-card footer { margin-top: var(--space-2); font-size: 0.9rem; font-weight: 500; color: var(--brown); }
.testimonials-nav { display: flex; justify-content: center; align-items: center; gap: var(--space-2); margin-top: var(--space-3); }
.testimonials-nav button {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(132, 86, 38, 0.25); background: var(--white);
  cursor: pointer; color: var(--brown); font-size: 1.2rem;
}
.testimonials-nav button:hover { border-color: var(--gold); color: var(--gold); }
.testimonials-dots { display: flex; gap: 8px; }
.testimonials-dots button {
  width: 6px; height: 6px; border-radius: 0; border: none; padding: 0;
  background: rgba(132, 86, 38, 0.25); cursor: pointer;
}
.testimonials-dots button.active { background: var(--gold); }

/* === FAQ === */
.faq-list { max-width: 680px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid rgba(132, 86, 38, 0.15); }
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  gap: var(--space-2); padding: var(--space-3) 0;
  background: none; border: none; cursor: pointer; text-align: left;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--brown);
}
.faq-question:hover { color: var(--gold); }
.faq-chevron { width: 18px; height: 18px; flex-shrink: 0; color: var(--gold); transition: transform var(--transition); }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: var(--space-3); color: var(--muted); font-size: 0.95rem; line-height: 1.7; }

/* === CTA BANNER === */
.cta-banner {
  background: var(--white); padding: var(--space-6) var(--space-4);
  text-align: center; border-radius: var(--radius);
  box-shadow: var(--shadow-card); border: 1px solid rgba(132, 86, 38, 0.08);
}
.section-cta-final .cta-banner { background: var(--brown); }
.section-cta-final .cta-banner h2 { color: var(--cream); }
.section-cta-final .cta-banner p { color: rgba(250, 237, 219, 0.85); margin: var(--space-2) 0 var(--space-4); }
.section-cta-final .cta-banner .btn-primary { background: var(--gold); border-color: var(--gold); }

/* === FOOTER === */
.site-footer { background: var(--brown); color: var(--cream); margin-top: auto; }
.footer-grid {
  display: grid; grid-template-columns: 1fr; gap: var(--space-5);
  padding: var(--section-py) var(--space-3) var(--space-5);
}
.footer-logo {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 700;
  color: var(--cream); margin-bottom: var(--space-2);
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.footer-brand img { margin-bottom: var(--space-2); border-radius: var(--radius); filter: brightness(1.1); }
.footer-tagline { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--cream); margin-bottom: var(--space-2); }
.footer-desc { font-size: 0.9rem; opacity: 0.8; line-height: 1.7; margin-bottom: var(--space-3); }
.footer-social { display: flex; gap: var(--space-2); }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius);
  border: 1px solid rgba(250, 237, 219, 0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); font-size: 0.7rem; font-weight: 500; letter-spacing: 0.05em;
}
.footer-social a:hover { background: var(--gold); border-color: var(--gold); color: var(--white); }
.footer-links h4, .footer-contact h4, .footer-newsletter h4 {
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  color: var(--cream); margin-bottom: var(--space-2);
}
.footer-links a, .footer-contact a {
  display: block; color: rgba(250, 237, 219, 0.75);
  margin-bottom: 10px; font-size: 0.92rem;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-newsletter p { font-size: 0.85rem; opacity: 0.75; margin-bottom: var(--space-2); }
.newsletter-form { display: flex; flex-direction: column; gap: var(--space-1); }
.newsletter-form input {
  padding: 12px var(--space-2); border: 1px solid rgba(250, 237, 219, 0.25);
  border-radius: var(--radius); background: rgba(255, 255, 255, 0.08);
  color: var(--cream); font-family: var(--font-body); font-size: 14px;
}
.newsletter-form input::placeholder { color: rgba(250, 237, 219, 0.45); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(250, 237, 219, 0.15); padding: var(--space-3) 0; }
.footer-bottom-inner {
  display: flex; flex-direction: column; gap: var(--space-1);
  align-items: center; text-align: center; font-size: 0.85rem; opacity: 0.65;
}
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom a { color: rgba(250, 237, 219, 0.75); }
.footer-bottom a:hover { color: var(--gold); }

/* === PAGE HEADER === */
.page-header {
  background: var(--white); padding: var(--space-6) 0 var(--space-5);
  text-align: center; border-bottom: 1px solid rgba(132, 86, 38, 0.1);
}
.page-header h1 { margin-bottom: var(--space-1); }
.page-header p { color: var(--muted); margin-top: var(--space-1); }

/* === COMPOSE === */
.compose-header {
  text-align: center; padding: var(--space-6) 0 var(--space-4);
  background: var(--white); border-bottom: 1px solid rgba(132, 86, 38, 0.1);
}
.compose-header h1 { margin-bottom: var(--space-1); }
.compose-header p { color: var(--muted); }
.compose-page { padding-bottom: var(--section-py); }
.compose-progress {
  display: flex; justify-content: center; gap: 8px; padding: var(--space-3) 0;
  flex-wrap: wrap; background: var(--cream);
}
.compose-progress__step {
  display: flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 500; color: var(--muted); opacity: 0.6;
}
.compose-progress__step.active { opacity: 1; color: var(--brown); }
.compose-progress__step.done { opacity: 0.8; color: var(--gold); }
.compose-progress__dot {
  width: 24px; height: 24px; border-radius: var(--radius);
  border: 1px solid rgba(132, 86, 38, 0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 500;
}
.compose-progress__step.active .compose-progress__dot { background: var(--gold); border-color: var(--gold); color: var(--white); }
.compose-progress__step.done .compose-progress__dot { background: var(--brown); border-color: var(--brown); color: var(--cream); }
@media (max-width: 639px) { .compose-progress__label { display: none; } }
.compose-wizard { max-width: 800px; margin: 0 auto; padding: var(--space-5) var(--space-3); }
.compose-step { display: none; }
.compose-step.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.compose-step h2 { text-align: center; margin-bottom: var(--space-1); font-size: 1.75rem; }
.compose-step > p.step-desc { text-align: center; color: var(--muted); margin-bottom: var(--space-4); }
.box-size-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-2); }
@media (min-width: 640px) { .box-size-grid { grid-template-columns: repeat(2, 1fr); } }
.box-size-card {
  background: var(--white); border: 1px solid rgba(132, 86, 38, 0.15);
  border-radius: var(--radius); padding: var(--space-4); cursor: pointer;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.box-size-card:hover { box-shadow: var(--shadow-card); }
.box-size-card.selected { border-color: var(--gold); box-shadow: var(--shadow-hover); }
.box-size-card h3 { font-size: 1.2rem; margin-bottom: var(--space-1); }
.box-size-card .box-price { font-family: var(--font-display); font-size: 1.4rem; color: var(--gold); font-weight: 700; margin: var(--space-1) 0; }
.box-size-card p { font-size: 0.88rem; color: var(--muted); }
.douceur-qty { display: flex; align-items: center; justify-content: center; gap: 12px; margin-top: var(--space-2); }
.douceur-qty button {
  width: 32px; height: 32px; border-radius: var(--radius);
  border: 1px solid rgba(132, 86, 38, 0.2); background: var(--white);
  cursor: pointer; font-size: 1rem; color: var(--brown);
}
.douceur-qty button:hover { border-color: var(--gold); color: var(--gold); }
.douceur-qty span { font-weight: 500; min-width: 24px; text-align: center; }
.compose-summary {
  background: var(--white); border-radius: var(--radius); padding: var(--space-4);
  margin-top: var(--space-3); border: 1px solid rgba(132, 86, 38, 0.1);
}
.compose-summary-row { display: flex; justify-content: space-between; padding: 6px 0; font-size: 0.9rem; }
.compose-summary-total {
  display: flex; justify-content: space-between; padding-top: var(--space-2); margin-top: var(--space-2);
  border-top: 1px solid rgba(132, 86, 38, 0.15);
  font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--brown);
}
.compose-nav {
  display: flex; justify-content: space-between; gap: var(--space-2);
  margin-top: var(--space-4); padding-top: var(--space-3);
  border-top: 1px solid rgba(132, 86, 38, 0.12);
}
.compose-review {
  background: var(--white); border-radius: var(--radius); padding: var(--space-4);
  box-shadow: var(--shadow-card); border: 1px solid rgba(132, 86, 38, 0.08);
}
.compose-review-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed rgba(132, 86, 38, 0.12); font-size: 0.9rem; }
.compose-review-item:last-child { border-bottom: none; }

/* === FORMS === */
.checkout-form, .contact-info-card {
  background: var(--white); border: 1px solid rgba(132, 86, 38, 0.12);
  border-radius: var(--radius); padding: var(--space-4); box-shadow: var(--shadow-card);
}
.form-group { margin-bottom: var(--space-3); }
.form-group label { display: block; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brown); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px var(--space-2);
  border: 1px solid rgba(132, 86, 38, 0.2); border-radius: var(--radius);
  font-family: var(--font-body); font-size: 15px; color: var(--text); background: var(--white);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr; gap: var(--space-3); }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.form-error { color: var(--error); font-size: 0.85rem; margin-top: 4px; }

/* === ALERTS === */
.alert { padding: var(--space-2) var(--space-3); border-radius: var(--radius); font-size: 0.95rem; }
.alert-success { background: rgba(90, 122, 82, 0.12); color: var(--success); border: 1px solid rgba(90, 122, 82, 0.25); }
.alert-error { background: rgba(168, 72, 50, 0.1); color: var(--error); border: 1px solid rgba(168, 72, 50, 0.25); }

/* === BLOG === */
.blog-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-4); }
@media (min-width: 768px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.blog-card-image { position: relative; aspect-ratio: 16/10; overflow: hidden; display: block; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-recipe-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brown); color: var(--cream);
  font-size: 11px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius);
}
.blog-card-body { padding: var(--space-3); }
.blog-meta { font-size: 0.8rem; color: var(--muted); margin-bottom: var(--space-1); }
.blog-card-body h3 a { color: var(--brown); }
.blog-card-body h3 a:hover { color: var(--gold); }
.link-text { font-size: 0.9rem; font-weight: 500; color: var(--gold); }

/* === MISC === */
.about-hero { text-align: center; padding: var(--section-py) 0; background: var(--white); }
.about-content { max-width: 680px; margin: 0 auto; }
.about-content p { margin-bottom: var(--space-3); font-size: 1.05rem; color: var(--muted); line-height: 1.75; }
.about-values { display: flex; justify-content: center; gap: var(--space-2); flex-wrap: wrap; margin: var(--space-4) 0; }
.about-value-tag {
  padding: 8px var(--space-3); background: var(--white);
  border: 1px solid rgba(132, 86, 38, 0.2); border-radius: var(--radius);
  font-size: 13px; font-weight: 500; color: var(--brown);
}
.contact-grid { display: grid; grid-template-columns: 1fr; gap: var(--space-5); }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.2fr; } }
.contact-item { display: flex; align-items: center; gap: var(--space-2); margin-bottom: var(--space-2); font-weight: 500; }
.contact-item svg { width: 20px; height: 20px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.breadcrumb { padding: var(--space-3) 0; font-size: 0.9rem; color: var(--muted); }
.breadcrumb a { color: var(--gold); }
.legal-content { max-width: 720px; margin: 0 auto; padding: var(--space-5) var(--space-3) var(--section-py); }
.legal-content h2 { font-size: 1.3rem; margin: var(--space-4) 0 var(--space-2); }
.legal-content p { margin-bottom: var(--space-2); color: var(--muted); line-height: 1.7; }
.order-confirm { text-align: center; padding: var(--section-py) var(--space-3); }
.order-ref { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold); margin: var(--space-3) 0; }
.toast {
  position: fixed; bottom: var(--space-3); right: var(--space-3);
  background: var(--brown); color: var(--cream); padding: 14px var(--space-3);
  border-radius: var(--radius); box-shadow: var(--shadow-hover); z-index: 1000;
  transform: translateY(100px); opacity: 0; transition: all 0.3s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }

/* Legacy hidden */
.hero-premium, .packs-grid, .pack-card, .nav-cart, .floral-divider { /* kept for unused pages */ }
.packs-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: var(--space-3); }

@media (prefers-reduced-motion: reduce) {
  .reveal, .douceur-card, .philosophy-card, .occasion-card, .btn { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}
