/* ============================================================
   CLUB PÉPITES — Landing Page Styles
   Basé sur le Design System v3.1 (Charlotte / Thomas Guillaumot)
   ============================================================ */

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', -apple-system, sans-serif; font-size: 16px; line-height: 1.6; color: #000; background: #F9F8F3; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul, ol { list-style: none; }

/* ── TOKENS ─────────────────────────────────────────────── */
:root {
  --rouge: #E2001A;
  --or: #C49A6D;
  --noir: #000;
  --blanc: #FFF;
  --creme: #F9F8F3;
  --gris-texte: #555;
  --gris-bordure: #E0DEDA;
  --or-light: #EDE0CB;
  --page-width: 1200px;
  --page-px: 60px;
  --section-py: 80px;
}

/* ── UTILITIES ──────────────────────────────────────────── */
.container { max-width: var(--page-width); margin: 0 auto; padding: 0 var(--page-px); }

.heading-hero {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(36px, 6vw, 64px);
  line-height: 1.15;
  color: var(--noir);
}
.heading-hero em { font-style: italic; color: var(--rouge); }

.heading-section {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.2;
  color: var(--noir);
}

.heading-card {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(20px, 2.5vw, 28px);
  line-height: 1.3;
  color: var(--noir);
}

.text-body {
  font-family: 'Inter', -apple-system, sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gris-texte);
}

.text-or {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--or);
}

.label-display {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--or);
  display: block;
  margin-bottom: 12px;
}

.divider-or {
  width: 48px;
  height: 1.5px;
  background: var(--or);
  border: none;
  margin: 16px 0;
}

/* ── BADGES ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: 999px;
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.badge-or {
  background: var(--creme);
  color: var(--or);
  border: 1px solid var(--or);
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.1s, background 0.2s, color 0.2s;
  white-space: nowrap;
  text-decoration: none;
}
.btn:active { transform: translateY(1px); }
.btn:focus-visible { outline: 2px solid var(--or); outline-offset: 3px; }

.btn-primary {
  background: var(--rouge);
  color: var(--blanc);
  padding: 14px 28px;
  border-radius: 4px;
}
.btn-primary:hover { opacity: 0.9; }

.btn-secondary {
  background: transparent;
  color: var(--noir);
  border: 1.5px solid var(--noir);
  padding: 14px 28px;
  border-radius: 4px;
}
.btn-secondary:hover { background: var(--noir); color: var(--blanc); }

.btn-blanc {
  background: var(--blanc);
  color: var(--rouge);
  padding: 14px 28px;
  border-radius: 4px;
}
.btn-blanc:hover { opacity: 0.92; }

/* ── INPUTS ─────────────────────────────────────────────── */
.input {
  width: 100%;
  padding: 14px 16px;
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 14px;
  color: var(--noir);
  background: var(--blanc);
  border: 1px solid var(--gris-bordure);
  border-radius: 4px;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.input::placeholder { color: #AAA; }
.input:focus { border-color: var(--or); box-shadow: 0 0 0 3px rgba(196,154,109,0.15); }
.input.error { border-color: var(--rouge); }
.input--dark { border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.1); color: var(--blanc); }
.input--dark::placeholder { color: rgba(255,255,255,0.6); }
.input--dark:focus { border-color: var(--blanc); box-shadow: 0 0 0 3px rgba(255,255,255,0.15); }

/* ── TOP BAR ────────────────────────────────────────────── */
.topbar {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 100;
  padding: 16px var(--page-px);
}
.topbar__member {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--noir);
  opacity: 0.5;
  transition: opacity 0.2s;
}
.topbar__member:hover { opacity: 1; }

/* ── HERO ───────────────────────────────────────────────── */
.hero__logo { margin-bottom: 24px; }

.hero {
  background: var(--creme);
  padding: 64px 0 80px;
  text-align: center;
}
.hero__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.hero__subtitle {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--gris-texte);
  max-width: 640px;
}
.hero__cta-group {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}

/* ── SPLIT FORM ─────────────────────────────────────────── */
.split-form {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.split-form__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.split-form__content { max-width: 520px; }
.split-form__photo { border-radius: 8px; overflow: hidden; }
.split-form__photo img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; border-radius: 8px; }

/* ── FORM ───────────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form__field { display: flex; flex-direction: column; gap: 4px; }
.form__field label {
  font-family: 'Inter', -apple-system, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: var(--noir);
}
.form__hint {
  font-size: 12px;
  color: var(--or);
  line-height: 1.4;
  margin-top: 2px;
}
.form__submit { margin-top: 8px; width: 100%; padding: 16px; font-size: 12px; }
.form__legal { font-size: 11px; color: #AAA; text-align: center; }

/* Multi-step form */
.form-step { display: flex; flex-direction: column; gap: 8px; }
.form-step-2 { display: none; flex-direction: column; gap: 8px; }
.form-step-2.show { display: flex; animation: slideDown 0.4s ease-out; }

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── PILLARS ────────────────────────────────────────────── */
.pillars {
  padding: var(--section-py) 0;
  background: var(--creme);
}
.pillars__title { text-align: center; margin-bottom: 56px; }
.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.pillar { text-align: left; }
.pillar__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--rouge);
  color: var(--blanc);
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 16px;
}
.pillar .heading-card { margin-bottom: 12px; }
.pillar .text-body { margin-bottom: 24px; }
.pillar__proof img { width: 100%; border-radius: 8px; margin-bottom: 12px; }
.pillar__caption {
  font-size: 13px;
  color: var(--gris-texte);
  line-height: 1.5;
}
.pillar__caption strong { color: var(--noir); }

/* ── URGENCY ────────────────────────────────────────────── */
.urgency {
  padding: var(--section-py) 0;
  text-align: center;
}
.urgency--rouge { background: var(--rouge); color: var(--blanc); }
.urgency--creme { background: var(--creme); }
.urgency--blanc { background: var(--blanc); }
.urgency__stat-or {
  font-size: 14px;
  color: var(--or);
  margin-bottom: 28px;
  text-align: center;
}
.urgency__inner { max-width: 640px; margin: 0 auto; }
.urgency__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(24px, 3.5vw, 36px);
  line-height: 1.2;
  color: var(--blanc);
  margin-bottom: 16px;
}
.urgency__text {
  font-size: 16px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 24px;
  line-height: 1.6;
}
.urgency__places {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 16px;
}
.urgency__reserve {
  font-size: 14px;
  opacity: 0.85;
  margin-bottom: 8px;
}
.urgency__stat {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 28px;
}

.urgency-bar {
  width: 100%;
  height: 8px;
  background: var(--or-light);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 12px;
}
.urgency-bar__fill {
  height: 100%;
  background: var(--or);
  border-radius: 999px;
  transition: width 1s ease-out;
}
.urgency-bar--blanc { background: rgba(255,255,255,0.2); }
.urgency-bar--blanc .urgency-bar__fill { background: rgba(255,255,255,0.85); }

/* ── STORY ──────────────────────────────────────────────── */
.story {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.story__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.story__photos img { border-radius: 8px; width: 100%; }
.story__text .heading-section { margin-bottom: 8px; }
.story__text .text-body { margin-bottom: 16px; }

/* ── STAT BLOCK ─────────────────────────────────────────── */
.stat-block {
  padding: var(--section-py) 0;
  background: var(--creme);
  text-align: center;
}
.stat-block__inner { max-width: 700px; margin: 0 auto; }
.stat-block__number {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.1;
  color: var(--noir);
  margin-bottom: 24px;
}

/* ── MISSION ────────────────────────────────────────────── */
.mission {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.mission__inner { max-width: 800px; margin: 0 auto; }
.mission__inner .text-body { margin-top: 16px; }
.mission__quote {
  padding: 20px 28px;
  border-left: 3px solid var(--or);
  margin: 32px 0;
}
.mission__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}
.mission__item h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--noir);
  margin-bottom: 8px;
}
.mission__item p {
  font-size: 14px;
  color: var(--gris-texte);
  line-height: 1.6;
}

/* ── PRODUCTS ───────────────────────────────────────────── */
.products {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.products .heading-section { margin-bottom: 8px; }
.products__subtitle { margin-bottom: 48px; }

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

.product-card {
  border: 1.5px solid var(--or);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.2s;
  display: flex;
  flex-direction: column;
}
.product-card__info { flex: 1; }
.product-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-card__info {
  padding: 20px;
  background: var(--creme);
}
.product-card__info h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--noir);
  margin: 4px 0;
}
.product-card__chef {
  font-size: 13px;
  color: var(--gris-texte);
  font-style: italic;
}

/* ── EVENTS ─────────────────────────────────────────────── */
.events {
  padding: var(--section-py) 0;
  background: var(--creme);
}
.events .heading-section { margin-bottom: 8px; }
.events__subtitle { margin-bottom: 48px; max-width: 700px; }

.events__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.event-card {
  border-radius: 8px;
  overflow: hidden;
  background: var(--blanc);
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.event-card:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.event-card__img img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.event-card__info { padding: 24px; }
.event-card__info .text-or { margin-bottom: 4px; }

.events__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.event-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.event-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  filter: grayscale(100%);
}
.event-card:hover img { filter: grayscale(0%); }
.event-card:hover img { transform: scale(1.05); }
.event-card__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--blanc);
}
.event-card__chef {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 2px;
}
.event-card__desc {
  font-size: 12px;
  opacity: 0.85;
  line-height: 1.3;
}
.events__more {
  margin-top: 24px;
  font-size: 14px;
  color: var(--gris-texte);
  text-align: center;
  font-style: italic;
  line-height: 1.6;
}

/* ── PRICING ────────────────────────────────────────────── */
.pricing {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.pricing__title { text-align: center; }
.pricing__subtitle { text-align: center; max-width: 560px; margin: 16px auto 48px; }

.pricing__cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 720px;
  margin: 0 auto;
}

.pricing__card {
  padding: 40px 32px;
  border: 1px solid var(--gris-bordure);
  border-radius: 8px;
  background: var(--creme);
  text-align: center;
  position: relative;
}

.pricing__card--featured {
  border: 2px solid var(--or);
  background: var(--blanc);
}

.pricing__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--or);
  color: var(--blanc);
  padding: 4px 16px;
  border-radius: 999px;
}

.pricing__label {
  font-family: 'Big Shoulders Display', Impact, sans-serif;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gris-texte);
  margin-bottom: 12px;
}

.pricing__price { margin-bottom: 4px; }
.pricing__amount {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 56px;
  line-height: 1;
  color: var(--noir);
}
.pricing__currency {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  color: var(--noir);
  vertical-align: super;
}
.pricing__period {
  font-size: 16px;
  color: var(--gris-texte);
}
.pricing__save {
  font-size: 13px;
  color: var(--or);
  margin-bottom: 8px;
}

.pricing__card .divider-or { margin: 20px auto; }

.pricing__features {
  list-style: none;
  text-align: left;
  margin-bottom: 28px;
}
.pricing__features li {
  font-size: 14px;
  color: var(--gris-texte);
  padding: 8px 0;
  border-bottom: 1px solid var(--gris-bordure);
  line-height: 1.4;
}
.pricing__features li:last-child { border-bottom: none; }
.pricing__features li::before {
  content: '✓';
  color: var(--or);
  margin-right: 8px;
  font-weight: 700;
}

.pricing__cta { width: 100%; padding: 16px; }

.pricing__guarantees {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
}
.pricing__guarantee strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 15px;
  color: var(--noir);
  display: block;
  margin-bottom: 4px;
}
.pricing__guarantee p {
  font-size: 13px;
  color: var(--gris-texte);
  line-height: 1.4;
}

/* ── PRESS ──────────────────────────────────────────────── */
.press {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.press__title { text-align: center; margin-bottom: 48px; }
.press__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.press__logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px 48px;
}
.press__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.2s;
  filter: grayscale(100%);
}
.press__logo:hover { opacity: 1; filter: grayscale(0%); }
.press__logo img {
  max-height: 48px;
  max-width: 140px;
  object-fit: contain;
}

/* ── CHEFS MOSAIC ───────────────────────────────────────── */
.chefs-mosaic {
  display: grid;
  grid-template-columns: 1fr 2fr;
  grid-template-rows: 230px 230px;
  gap: 4px;
}
.chefs-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 2px;
  filter: grayscale(100%);
}
/* Bottom row: inverse ratio (2fr 1fr) */
.chefs-mosaic img:nth-child(3) { grid-column: 1 / 3; }
.chefs-mosaic img:nth-child(4) { grid-column: 3 / 4; }

/* Use a 3-column subgrid trick for the asymmetric rows */
.chefs-mosaic {
  grid-template-columns: 1fr 1fr 1fr;
}
.chefs-mosaic img:nth-child(1) { grid-column: 1 / 2; }
.chefs-mosaic img:nth-child(2) { grid-column: 2 / 4; }
.chefs-mosaic img:nth-child(3) { grid-column: 1 / 3; }
.chefs-mosaic img:nth-child(4) { grid-column: 3 / 4; }
.chefs-mosaic__caption {
  font-size: 13px;
  color: var(--gris-texte);
  margin-top: 12px;
}

/* ── REVIEWS ────────────────────────────────────────────── */
.reviews {
  padding: var(--section-py) 0;
  background: var(--blanc);
}
.reviews-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}
.reviews-score {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  font-weight: 500;
  color: var(--noir);
}
.reviews-count { font-size: 12px; color: var(--gris-texte); }
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.review-card {
  padding: 24px;
  background: var(--creme);
  border: 1px solid var(--gris-bordure);
}
.review-stars {
  color: var(--or);
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.review-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  color: var(--gris-texte);
  margin-bottom: 12px;
}
.review-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--noir);
}

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  padding: 48px 0;
  background: var(--blanc);
}
.temoignage {
  padding: 16px 24px;
  border-left: 3px solid var(--or);
  margin-bottom: 16px;
}
.temoignage:last-child { margin-bottom: 0; }
.temoignage-texte {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 16px;
  line-height: 1.6;
  color: var(--gris-texte);
  margin-bottom: 8px;
}
.temoignage-auteur { font-size: 13px; color: var(--gris-texte); }

/* ── FINAL CTA ──────────────────────────────────────────── */
.final-cta {
  padding: var(--section-py) 0;
  background: var(--creme);
  text-align: center;
}
.final-cta__inner { max-width: 640px; margin: 0 auto; }
.final-cta .heading-section { margin-bottom: 16px; }
.final-cta .text-body { margin-bottom: 28px; }
.final-cta .form, .urgency .form { max-width: 420px; margin: 24px auto 0; }

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--noir);
  color: #AAA;
  padding: 48px 0;
}
.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer__brand img { height: 28px; width: auto; }
.footer__socials { display: flex; gap: 16px; }
.footer__socials a { color: #AAA; transition: color 0.2s; }
.footer__socials a:hover { color: var(--blanc); }
.footer__links { display: flex; gap: 24px; }
.footer__links a {
  font-size: 13px;
  color: #AAA;
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--blanc); }
.footer__address { font-size: 12px; color: #666; }

/* ── FORM SUCCESS ───────────────────────────────────────── */
.form-success {
  display: none;
  text-align: center;
  padding: 32px 0;
}
.form-success.visible { display: block; }
.form-success__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--or);
  color: var(--blanc);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 24px;
  margin-bottom: 8px;
}
.form-success p { color: var(--gris-texte); font-size: 15px; }

/* ── LOADING STATE ──────────────────────────────────────── */
.btn.loading {
  opacity: 0.7;
  pointer-events: none;
  position: relative;
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  :root { --page-px: 32px; }
  .pillars__grid { grid-template-columns: 1fr; gap: 48px; }
  .products__grid { grid-template-columns: repeat(2, 1fr); }
  .split-form__inner { grid-template-columns: 1fr; }
  .split-form__photo { display: none; }
  .story__inner { grid-template-columns: 1fr; }
  .story__photos { order: -1; }
}

@media (max-width: 768px) {
  :root { --page-px: 20px; --section-py: 56px; }

  .hero { padding: 56px 0 48px; }
  .hero__cta-group { flex-direction: column; width: 100%; }
  .hero__cta-group .btn { width: 100%; }

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

  .products__grid { grid-template-columns: 1fr; }
  .events__grid { grid-template-columns: 1fr; }
  .press__grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .events__gallery { grid-template-columns: repeat(2, 1fr); }
  .pricing__cards { grid-template-columns: 1fr; }
  .pricing__guarantees { grid-template-columns: 1fr; }
  .mission__grid { grid-template-columns: 1fr; }
  .chefs-mosaic img { height: 160px; }

  .form--inline { flex-direction: column; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  .fade-in.visible {
    opacity: 1;
    transform: translateY(0);
  }
}
