/* ══════════════════════════════════════════════════════════════
   ATELIER MIRAGE — HOMEPAGE STYLES
   Extrait du <style> inline de index.html pour mise en cache.
   À charger APRÈS styles.css :
   <link rel="stylesheet" href="homepage.css" />
══════════════════════════════════════════════════════════════ */

/* --- HERO HOOK (Business tagline) — QW1: Contraste augmenté --- */
.hero-hook {
  margin-top: 1.8rem;
  font-family: var(--sans);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: 0.02em;
  opacity: 0;
  transform: translateY(20px);
}

/* --- HERO REASSURANCE MICRO-TEXT (QW1) --- */
.hero-reassurance {
  margin-top: 1.2rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0;
  transform: translateY(10px);
}

/* --- CONTEXTUAL CTA BLOCKS (QW3) --- */
.section-cta-contextual {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1rem;
}

/* --- HERO DOUBLE CTA --- */
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
/* Audit A11Y: min-height 48px, font-size 0.8rem pour conformité loi de Fitts */
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.1rem 2.4rem;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border: 1px solid rgba(26,23,20,0.2);
  background: transparent;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  min-height: 48px;
}
.btn-secondary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--ink);
  transform: translateX(-101%);
  transition: transform 0.55s var(--ease-out);
}
.btn-secondary:hover::before { transform: translateX(0); }
.btn-secondary:hover { color: var(--cream); border-color: var(--ink); }
.btn-secondary span { position: relative; z-index: 1; }
.btn-secondary .btn-arrow {
  position: relative; z-index: 1;
  width: 2.2rem; height: 2.2rem; border-radius: 50%;
  border: 1px solid rgba(26,23,20,0.15);
  display: flex; align-items: center; justify-content: center;
  transition: transform 0.3s var(--ease-spring), border-color 0.3s;
}
.btn-secondary:hover .btn-arrow { transform: translateX(5px); border-color: rgba(255,255,255,0.4); }

/* --- SOCIAL PROOF BAR --- */
.social-proof-bar {
  padding: 2rem 6vw 2.5rem;
  text-align: center;
  position: relative;
  overflow: visible;
}
.social-proof-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.social-proof-label::before,
.social-proof-label::after {
  content: '';
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.3;
}
.social-proof-logos {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.social-proof-logos .sp-logo-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
}
.social-proof-logos .sp-logo-wrap::after {
  content: attr(data-name);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-muted);
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
}
.social-proof-logos .sp-logo-wrap:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.social-proof-logos .sp-logo-wrap img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(26,23,20,0.08);
  opacity: 0.75;
  filter: grayscale(50%);
  transition: all 0.4s var(--ease);
}
@media (max-width: 768px) {
  .social-proof-logos { gap: 1.8rem; }
  .social-proof-logos .sp-logo-wrap img { width: 64px; height: 64px; }
}
.social-proof-logos .sp-logo-wrap:hover img {
  opacity: 1;
  filter: grayscale(0%);
  box-shadow: 0 6px 20px rgba(26,23,20,0.12);
  transform: translateY(-3px);
}

/* --- KPI STATS BAR --- */
.kpi-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26,23,20,0.06);
  margin: 0 6vw;
  border-radius: 1.5rem;
  overflow: hidden;
}
.kpi-item {
  background: var(--cream);
  padding: 2.8rem 2rem;
  text-align: center;
}
.kpi-number {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.6rem;
}
.kpi-number em { font-style: italic; color: var(--gold-light); }
.kpi-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--ink-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .kpi-bar { margin: 0 4vw; }
  .kpi-item { padding: 1.5rem 1rem; }
  .kpi-number { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .kpi-label { font-size: 0.55rem; letter-spacing: 0.15em; }
}
@media (max-width: 380px) {
  .kpi-bar { grid-template-columns: 1fr; }
}

/* --- VIDEO REVEAL SECTION — Audit v4: paddings réduits pour continuité visuelle --- */
.video-reveal-section {
  padding: 2rem 0;
  text-align: center;
}
.video-reveal-header {
  padding: 0 6vw;
  max-width: 650px;
  margin: 0 auto 3rem;
}
.video-reveal-header .section-eyebrow { justify-content: center; }
.video-reveal-header h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.video-reveal-header h2 em { font-style: italic; color: var(--gold-light); }
.video-reveal-header p {
  font-size: 0.875rem;
  line-height: 1.9;
  color: var(--ink-muted);
  max-width: 45ch;
  margin: 0 auto;
}
.video-reveal-frame {
  position: relative;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 1.5rem;
  overflow: hidden;
  aspect-ratio: 9/14;
  background: var(--ink);
}
@media (max-width: 768px) {
  .video-reveal-frame { aspect-ratio: 3/4; max-width: 85vw; }
}
.video-reveal-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
  transform: scale(1.08);
}
.video-sound-toggle {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0,0,0,0.35);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: white;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  z-index: 5;
}
.video-sound-toggle:hover { background: rgba(168,137,92,0.6); }

/* --- HERO BASELINE — Brand narrative tagline --- */
.hero-baseline {
  font-family: var(--serif);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-style: italic;
  font-weight: 300;
  color: var(--ink-muted);
  letter-spacing: 0.01em;
  line-height: 1.6;
  margin-top: 1.2rem;
  opacity: 0;
  transform: translateY(16px);
}

/* --- VIDEO LUXE OVERLAY — Replaces Reel/TikTok overlay --- */
.video-luxe-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 35%);
}
.video-luxe-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.4rem 1.6rem;
}
.video-luxe-hashtag {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}
.video-luxe-tagline {
  font-family: var(--serif);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(255,255,255,0.8);
  text-shadow: 0 1px 6px rgba(0,0,0,0.5);
}

/* --- STICKY CTA — SVG Icon styling --- */
.sticky-icon {
  vertical-align: -2px;
  margin-right: 0.25rem;
  opacity: 0.7;
  transition: opacity 0.3s;
}
.sticky-cta span:hover .sticky-icon,
.sticky-cta-bar span:hover .sticky-icon {
  opacity: 1;
}

/* --- PRODUCT GRID (replaces carousel on desktop) --- */
.shop-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 2rem !important;
  overflow: visible !important;
  padding: 0 !important;
}
@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}
@media (max-width: 640px) {
  .shop-grid {
    display: flex !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem !important;
    padding: 0 5vw 1rem !important;
    scroll-padding: 5vw;
  }
  .shop-grid::-webkit-scrollbar { display: none; }
  .shop-grid { scrollbar-width: none; }
  .shop-grid .shop-card {
    flex: 0 0 80vw;
    scroll-snap-align: center;
    min-width: 0;
  }
}

/* --- TESTIMONIAL SECTION — Audit v4: paddings optimisés pour rythme de scroll --- */
.testimonials-section {
  padding: 2rem 6vw;
}
@media (max-width: 768px) {
  .testimonials-section { padding: 1.5rem 5vw; }
}
.testimonials-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.testimonials-header .section-eyebrow { justify-content: center; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
/* ── Testimonial Cards — Premium Editorial ── */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg, 2rem);
  padding: 2.5rem;
  border: 1px solid rgba(26,23,20,0.04);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(26,23,20,0.06));
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
  position: relative;
  overflow: hidden;
}
/* Decorative gold line at top of card */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0; left: 2rem; right: 2rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold-pale, #E8D5B8), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}
.testimonial-card:hover::before { opacity: 1; }
/* QW5: Metric badge en haut de chaque témoignage */
.testimonial-metric {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 1.2rem;
}
.testimonial-metric span {
  display: block;
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg, 0 12px 48px rgba(26,23,20,0.1));
  border-color: rgba(168,137,92,0.08);
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: 1.8rem;
  position: relative;
  padding-left: 1.4rem;
  border-left: 2px solid var(--gold-pale);
}
/* Large decorative quote mark */
.testimonial-quote::before {
  content: '\201C';
  position: absolute;
  top: -0.6rem;
  left: -0.3rem;
  font-family: var(--serif);
  font-size: 3rem;
  color: var(--gold-pale);
  line-height: 1;
  pointer-events: none;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.testimonial-author-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-pale);
}
.testimonial-author-name {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--ink);
}
.testimonial-author-role {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* --- GUARANTEES BAR (Audit: réassurance avant conversion) --- */
.guarantees-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(26,23,20,0.06);
  margin: 0 6vw;
  border-radius: 1.5rem;
  overflow: hidden;
}
.guarantee-item {
  background: var(--cream);
  padding: 2.2rem 1.5rem;
  text-align: center;
  transition: background 0.3s;
}
.guarantee-item:hover {
  background: var(--white);
}
.guarantee-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--gold);
}
.guarantee-title {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 0.4rem;
}
.guarantee-desc {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  color: var(--ink-muted);
  line-height: 1.6;
}
@media (max-width: 768px) {
  .guarantees-bar {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 5vw;
  }
}
@media (max-width: 480px) {
  .guarantees-bar {
    grid-template-columns: 1fr;
  }
}

/* --- LEAD MAGNET — Audit v5: breathing room between conversion blocks --- */
.lead-magnet {
  padding: 3.5rem 6vw;
  margin: 2rem 6vw 3rem;
  background: var(--ink);
  border-radius: 2rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 3rem;
  position: relative;
  overflow: hidden;
}
.lead-magnet::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(168,137,92,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lead-magnet-content { position: relative; z-index: 1; }
.lead-magnet-eyebrow {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.lead-magnet-eyebrow::before {
  content: '';
  width: 25px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.lead-magnet h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 0.8rem;
}
.lead-magnet h3 em { font-style: italic; color: var(--gold-light); }
.lead-magnet p {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(253,250,247,0.5);
  max-width: 40ch;
}
.lead-magnet-form {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.lead-magnet-input {
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none; /* base reset — :focus-visible below restores a11y ring */
  min-width: 220px;
  transition: border-color 0.3s;
}
.lead-magnet-input::placeholder { color: rgba(253,250,247,0.35); }
.lead-magnet-input:focus { border-color: var(--gold); }
.lead-magnet-input:focus-visible { outline: 2px solid var(--gold); outline-offset: 2px; }
.lead-magnet-submit {
  padding: 1rem 2rem;
  background: var(--gold);
  color: var(--ink);
  border: none;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s var(--ease-spring);
  white-space: nowrap;
}
.lead-magnet-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.lead-magnet-submit:active { transform: scale(0.96); }
.lead-magnet-success {
  display: none;
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 0;
}
@media (max-width: 900px) {
  .lead-magnet {
    grid-template-columns: 1fr;
    margin: 0 5vw 2rem;
    padding: 3rem 1.8rem;
  }
}
@media (max-width: 640px) {
  .lead-magnet-input { min-width: 100%; }
  .lead-magnet-submit { width: 100%; }
}

/* --- SOCIAL LINKS IN FOOTER --- */
.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
}
.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(26,23,20,0.1);
  transition: all 0.3s;
}
.footer-social a:hover {
  border-color: var(--gold);
  background: rgba(168,137,92,0.08);
}
.footer-social a svg { color: var(--ink-muted); transition: color 0.3s; }
.footer-social a:hover svg { color: var(--gold); }

/* --- HIDE MOBILE SWIPE HINT ON DESKTOP --- */
@media (min-width: 769px) {
  body .mobile-swipe-hint { display: none; }
}

/* --- B2B ARGUMENTS BREAKPOINT TABLETTE --- */
@media (max-width: 1024px) {
  .b2b-list {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* --- MISC FIXES --- */
.trust-marquee-section { display: none; }


/* --- PRICING SECTION — Design System compliant (no inline styles) --- */
.pricing-section {
  padding: 2.5rem 6vw;
  text-align: center;
}
.pricing-section-header {
  max-width: 700px;
  margin: 0 auto 2.5rem;
}
.pricing-section-eyebrow {
  justify-content: center;
}
.pricing-section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  text-align: center;
  line-height: 0.95;
  margin-bottom: 2.5rem;
}
.pricing-section-title em {
  font-style: italic;
  color: var(--gold-light);
}
.pricing-section-note {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-top: 1.5rem;
}
.pricing-grid-wrap {
  max-width: 650px;
  margin: 0 auto;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(26,23,20,0.06);
  border-radius: 1.5rem;
  overflow: hidden;
}
.pricing-tier {
  background: var(--cream);
  padding: 2rem 1.5rem;
  text-align: center;
}
.pricing-tier--featured {
  background: var(--white);
  position: relative;
}
.pricing-tier-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-family: var(--mono);
  font-size: 0.5rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.8rem;
  border-radius: 0 0 999px 999px;
}
.pricing-tier-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-bottom: 0.6rem;
}
.pricing-tier-price {
  font-family: var(--serif);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--ink);
  line-height: 1;
}
.pricing-tier-price em {
  font-style: italic;
  color: var(--gold-light);
}
.pricing-tier-unit {
  font-family: var(--mono);
  font-size: 0.6rem;
  color: var(--ink-muted);
  margin-top: 0.3rem;
}
@media (max-width: 480px) {
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-tier-badge { border-radius: 0 0 999px 999px; }
}
/* ── Pricing Single — One price, centered ── */
.pricing-single {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.pricing-single-price {
  font-family: var(--serif);
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1;
  color: var(--ink);
  margin: 1.5rem 0 1rem;
}
.pricing-single-price em {
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 0.05em;
}
.pricing-single-price span {
  font-family: var(--mono);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  margin-left: 0.3rem;
}
.pricing-single-perks {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}
.pricing-single-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-pale);
  flex-shrink: 0;
}

.degustation-note {
  color: var(--gold);
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 0.8rem;
}

.pricing-tier-price-sm { font-size: 1rem !important; }

/* --- UTILITY CLASSES (replaces inline styles) --- */
.catalogue-cta-wrap { text-align: center; margin-top: 3rem; }
.catalogue-cta-btn { display: inline-flex; }
.atelier-cta-wrap { padding: 0 7vw; margin-top: 2rem; }
.cta-banner-second { margin-top: 0.6rem; }
.engagements-sub {
  font-size: clamp(0.85rem, 2.5vw, 1.3rem);
  font-style: normal;
  opacity: 0.7;
  display: block;
  margin-top: 1.2rem;
}

/* --- ATELIER TEASER --- */
.atelier-teaser {
  padding: 0 6vw;
}
.atelier-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 0;
}
.atelier-teaser-desc {
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-muted);
  margin-bottom: 2rem;
  max-width: 45ch;
}
.atelier-teaser-img {
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.atelier-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.atelier-teaser-img:hover img {
  transform: scale(1.04);
}

/* --- SCARCITY / SEASONAL BADGES --- */
.shop-card-badge-season {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px;
  z-index: 2;
  background: rgba(26,23,20,0.85); color: var(--cream);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 12px rgba(26,23,20,0.2);
}
.shop-card-badge-limited {
  position: absolute; top: 1.2rem; right: 1.2rem;
  font-family: var(--mono); font-size: 0.5rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 0.4rem 0.9rem; border-radius: 999px;
  z-index: 2;
  background: linear-gradient(135deg, #8B4513 0%, #A8895C 100%);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(139,69,19,0.3);
}

/* ── Section CTA Link — Inline navigation link with arrow ── */
.section-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(26,23,20,0.15);
  transition: color 0.4s var(--ease-out), border-color 0.4s, gap 0.4s var(--ease-spring);
  margin-top: 1.5rem;
}
.section-cta-link:hover {
  color: var(--gold);
  border-color: var(--gold);
  gap: 1rem;
}
.section-cta-link svg {
  transition: transform 0.4s var(--ease-spring);
}
.section-cta-link:hover svg {
  transform: translateX(3px);
}

/* ── CTA Fine — Phone number / small text in CTA banners ── */
.cta-fine {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: rgba(250,245,239,0.45);
  transition: color 0.3s;
  display: block;
  margin-top: 0.5rem;
}
a.cta-fine:hover { color: var(--gold); }

/* ── Filter Pills — Enhanced ── */
.filter-pill {
  transition: all 0.4s var(--ease-out);
}
.filter-pill.active {
  box-shadow: 0 4px 12px rgba(168,137,92,0.2);
}

/* ── Guarantees Bar — Hover glow ── */
.guarantee-item {
  transition: background 0.4s, transform 0.3s var(--ease-out);
}
.guarantee-item:hover {
  background: var(--white);
  transform: translateY(-2px);
}
.guarantee-icon {
  transition: transform 0.4s var(--ease-spring);
}
.guarantee-item:hover .guarantee-icon {
  transform: scale(1.1);
}

/* --- PRESS SECTION — Enhanced visual treatment (Audit) --- */
.press-section {
  padding: 2rem 6vw;
  text-align: center;
}
.press-section .section-eyebrow { justify-content: center; }
.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 2.5rem auto 0;
}
.press-card {
  background: var(--white);
  border-radius: var(--radius-lg, 2rem);
  padding: 2.2rem 1.8rem;
  border: 1px solid rgba(26,23,20,0.04);
  box-shadow: var(--shadow-sm, 0 2px 8px rgba(26,23,20,0.06));
  transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.4s;
  text-align: left;
  position: relative;
}
.press-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 4px 24px rgba(26,23,20,0.08));
  border-color: rgba(168,137,92,0.1);
}
.press-source-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-2);
  margin-bottom: 1.2rem;
  color: var(--gold);
  transition: background 0.3s;
}
.press-card:hover .press-source-logo {
  background: rgba(168,137,92,0.1);
}
.press-source {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink);
  margin-bottom: 0.6rem;
}
.press-quote {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  line-height: 1.65;
  color: var(--ink-muted);
  margin-bottom: 1rem;
}
.press-date {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}
@media (max-width: 640px) {
  .press-grid { grid-template-columns: 1fr; }
}

/* --- LEAD MAGNET PRIVACY NOTE --- */
.lead-magnet-privacy {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  color: rgba(253,250,247,0.3);
  margin-top: 0.8rem;
  position: relative;
  z-index: 1;
}

/* --- TABLET LANDSCAPE BREAKPOINT (769–1024) --- */
@media (min-width: 769px) and (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .guarantees-bar { grid-template-columns: repeat(2, 1fr); }
  .kpi-bar { margin: 0 4vw; }
  .kpi-item { padding: 2rem 1.2rem; }
  .lead-magnet { grid-template-columns: 1fr; margin: 2rem 4vw 3rem; padding: 3rem 2rem; }
  .atelier-teaser-inner { gap: 2.5rem; }
  .press-grid { grid-template-columns: 1fr 1fr; }
  .pricing-grid-wrap { max-width: 90%; }
  .video-luxe-bottom { padding: 1.2rem; }
}

@media (max-width: 768px) {
  .atelier-teaser { padding: 0 5vw; }
  .atelier-teaser-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2rem 0; }
  .atelier-teaser-img { aspect-ratio: 16/9; }

  /* Paddings mobile serrés */
  .atelier { padding: 2.5rem 0 2rem !important; }
  .philosophy { padding: 2.5rem 5vw !important; }
  .boutique { padding: 2.5rem 5vw 2rem !important; }
  .video-reveal-section { padding: 2rem 0 !important; }
  .faq { padding: 2.5rem 5vw !important; }

  /* CTA banner mobile: full width, single column */
  .cta-banner {
    grid-template-columns: 1fr !important;
    text-align: center;
    margin: 0 3vw 2rem;
    padding: 2.5rem 5vw;
  }
  .cta-banner-action {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
}
