/* ============================================
   CHEEKS — Landing pre-launch
   Simple & clair : fond crème (= fond des photos), texte doux,
   boutons jaunes (la boîte), touches de rose discrètes.
   Le bleu ne vit que dans les PHOTOS, jamais en aplat d'UI.
   Type : Space Grotesk
   ============================================ */

:root {
  --cream: #FFF6EF;          /* base = fond des photos */
  --cream-2: #F8EEE3;        /* rythme léger (sections, signup, footer) */
  --sand: #EADBCB;

  --rose: #C77F86;           /* accent doux : intitulés, tags */
  --rose-soft: #EBD2D2;      /* bandes très douces */

  --sun: #F7BB40;            /* boutons (la boîte) */
  --sun-deep: #E5A52E;

  --ink: #2E2A29;            /* texte : presque noir, chaud — pas marron */
  --ink-soft: #7C7268;
  --line: rgba(46, 42, 41, 0.12);

  --font: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --max-w: 1240px;
  --pad-x: clamp(1.25rem, 4vw, 4rem);
  --pad-y: clamp(4rem, 9vw, 7.5rem);

  --radius: 4px;
  --radius-lg: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--font); font-weight: 400; font-size: 16px; line-height: 1.6; color: var(--ink); background: var(--cream); overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; border: 0; background: none; cursor: pointer; color: inherit; }
em { font-style: normal; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================ ANNONCE (bande douce) ============================================ */
.announce { background: var(--rose-soft); color: var(--ink); text-align: center; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em; padding: 0.55rem var(--pad-x); }

/* ============================================ HERO PILL ============================================ */
.hero-pill { display: inline-block; background: rgba(255, 246, 239, 0.9); color: var(--ink); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 0.45rem 0.95rem; border-radius: 100px; margin-bottom: 1.3rem; }

/* ============================================ NAV ============================================ */
.nav { position: sticky; top: 0; z-index: 50; display: flex; align-items: center; justify-content: space-between; padding: 1rem var(--pad-x); background: rgba(255, 246, 239, 0.88); backdrop-filter: saturate(140%) blur(14px); -webkit-backdrop-filter: saturate(140%) blur(14px); border-bottom: 1px solid var(--line); }
.nav-logo { font-weight: 500; font-size: 1.55rem; letter-spacing: -0.04em; color: var(--ink); display: inline-flex; align-items: center; gap: 0.02em; }
.nav-logo .dot { color: var(--rose); }
.nav-cta { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.01em; padding: 0.62rem 1.15rem; background: var(--sun); color: var(--ink); border-radius: 100px; transition: background 200ms ease, transform 200ms ease; }
.nav-cta:hover { background: var(--sun-deep); transform: translateY(-1px); }

/* ============================================ BUTTONS ============================================ */
.btn { display: inline-block; font-weight: 700; font-size: 0.98rem; letter-spacing: 0.005em; padding: 1.05rem 1.9rem; border-radius: 100px; transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease; white-space: nowrap; }
.btn-primary { background: var(--sun); color: var(--ink); box-shadow: 0 2px 0 rgba(46,42,41,0.06); }
.btn-primary:hover { background: var(--sun-deep); transform: translateY(-1px); box-shadow: 0 10px 26px rgba(229, 165, 46, 0.30); }

/* ============================================ EYEBROW / HEADERS ============================================ */
.eyebrow { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rose); margin-bottom: 1rem; }
.section-header { text-align: center; margin-bottom: clamp(2.4rem, 5vw, 4rem); }
.section-header h2 { font-weight: 500; font-size: clamp(1.7rem, 2.9vw, 2.3rem); line-height: 1.12; letter-spacing: -0.03em; color: var(--ink); }

/* ============================================ HERO BANDEAU ============================================ */
.hero-banner { position: relative; width: 100%; min-height: clamp(440px, 70vh, 720px); display: flex; align-items: center; overflow: hidden; background: var(--sand); }
.hero-banner picture, .hero-banner .hero-img { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-banner .hero-img { object-fit: cover; object-position: center 45%; }
.hero-banner::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(46,42,41,0.40) 0%, rgba(46,42,41,0.18) 40%, rgba(46,42,41,0) 70%); }
.hero-content { position: relative; z-index: 2; max-width: var(--max-w); width: 100%; margin: 0 auto; padding: 0 var(--pad-x); }
.hero-text { max-width: 32rem; color: #FFF6EF; }
.hero-title { font-weight: 400; font-size: clamp(2.6rem, 6vw, 4.8rem); line-height: 1.02; letter-spacing: -0.045em; margin-bottom: 1.3rem; text-transform: lowercase; }
.hero-title em { color: var(--sun); }
.hero-sub { font-size: clamp(1.05rem, 1.4vw, 1.2rem); line-height: 1.55; max-width: 27rem; opacity: 0.96; }
.hero-cta-row { margin-top: 1.9rem; }
@media (max-width: 760px) {
  .hero-banner { min-height: 76vh; align-items: flex-end; }
  .hero-banner .hero-img { object-position: center 25%; }
  .hero-banner::after { background: linear-gradient(0deg, rgba(46,42,41,0.55) 0%, rgba(46,42,41,0.12) 45%, rgba(46,42,41,0) 100%); }
  .hero-content { padding-bottom: 2.6rem; }
}

/* ============================================ MARQUEE (bande rose) ============================================ */
.marquee { background: var(--rose); color: #FFF6EF; padding: 0.9rem 0; overflow: hidden; }
.marquee-track { display: flex; gap: 2.2rem; white-space: nowrap; font-weight: 500; font-size: clamp(0.9rem, 1.4vw, 1.1rem); letter-spacing: 0.05em; animation: scroll-x 45s linear infinite; }
.marquee-track span { flex-shrink: 0; }
.marquee-track span:nth-child(even) { opacity: 0.55; }
@keyframes scroll-x { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 760px) { .marquee-track { animation-duration: 14s; } }

/* ============================================ TRIPTYQUE ============================================ */
.triptyque { max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(0.9rem, 1.8vw, 1.5rem); }
.step { display: flex; flex-direction: column; }
.step-image { aspect-ratio: 4 / 5; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); margin-bottom: 1.5rem; }
.step-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 600ms ease; }
.step:hover .step-image img { transform: scale(1.03); }
.step-num { font-weight: 700; font-size: 0.82rem; color: var(--rose); margin-bottom: 0.5rem; letter-spacing: 0.05em; }
.step h3 { font-weight: 500; font-size: clamp(1.3rem, 2vw, 1.6rem); line-height: 1.15; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 0.5rem; }
.step p { font-size: 0.97rem; color: var(--ink-soft); line-height: 1.55; }
@media (max-width: 760px) { .steps { grid-template-columns: 1fr; gap: 2.8rem; max-width: 26rem; margin: 0 auto; } }

/* ============================================ AVANT / APRÈS ============================================ */
.proof { background: var(--cream-2); padding: var(--pad-y) var(--pad-x); }
.proof-inner { max-width: var(--max-w); margin: 0 auto; }
.proof-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.2rem, 2.5vw, 2rem); max-width: var(--max-w); margin: 0 auto; }
.proof-card { position: relative; text-align: center; }
.proof-card .proof-image { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream); }
.proof-card .proof-image img { width: 100%; height: 100%; object-fit: cover; }
.proof-tag { display: inline-block; margin-top: 1rem; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.proof-card.is-without .proof-tag { color: var(--ink-soft); }
.proof-card.is-with .proof-tag { color: #FFF6EF; background: var(--rose); padding: 0.4rem 0.9rem; border-radius: 100px; }
.proof-note { text-align: center; margin-top: 2rem; color: var(--ink-soft); font-size: 0.98rem; }
.tm { font-size: 0.55em; vertical-align: top; font-weight: 400; line-height: 1; margin-left: 0.04em; }

/* ============================================ MANIFESTO (bloc rose doux) ============================================ */
.manifesto { background: var(--rose-soft); color: var(--ink); padding: var(--pad-y) var(--pad-x); }
.manifesto-inner { max-width: 50rem; margin: 0 auto; text-align: center; }
.manifesto .eyebrow { color: var(--rose); margin-bottom: 1.4rem; }
.manifesto-text { font-weight: 400; font-size: clamp(1.45rem, 2.8vw, 2.1rem); line-height: 1.35; letter-spacing: -0.02em; }
.manifesto-text em { color: var(--rose); font-weight: 500; }

/* ============================================ PRODUCT DETAIL ============================================ */
.detail { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; max-width: var(--max-w); margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.detail-image { aspect-ratio: 3 / 4; border-radius: var(--radius-lg); overflow: hidden; background: var(--cream-2); border: 1px solid var(--line); box-shadow: 0 10px 28px rgba(46,42,41,0.07); }
.detail-image img { width: 100%; height: 100%; object-fit: cover; }
.detail-text h2 { font-weight: 500; font-size: clamp(1.9rem, 3.4vw, 2.6rem); line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); margin-bottom: 1.7rem; }
.detail-list { list-style: none; margin-bottom: 2.2rem; }
.detail-list li { padding: 1.05rem 0; border-top: 1px solid var(--line); font-size: 1rem; color: var(--ink-soft); line-height: 1.55; }
.detail-list li:last-child { border-bottom: 1px solid var(--line); }
.detail-list strong { color: var(--ink); font-weight: 600; margin-right: 0.35rem; }
.detail-price { display: flex; align-items: baseline; gap: 1rem; }
.detail-price .strike { font-size: 1.2rem; text-decoration: line-through; color: var(--ink-soft); opacity: 0.7; }
.detail-price .price { font-size: 2.6rem; font-weight: 700; color: var(--ink); letter-spacing: -0.03em; }
.detail-price .strike { font-size: 1.4rem; }
.detail-duo { margin-top: 0.8rem; font-size: 0.95rem; color: var(--ink-soft); }
.detail-duo strong { color: var(--ink); font-weight: 600; }
@media (max-width: 840px) { .detail { grid-template-columns: 1fr; } .detail-image { aspect-ratio: 3 / 4; max-width: 22rem; margin: 0 auto 0.5rem; } }

/* ============================================ FAQ ============================================ */
.faq { max-width: 50rem; margin: 0 auto; padding: var(--pad-y) var(--pad-x); }
.faq-list details { border-top: 1px solid var(--line); padding: 1.3rem 0; }
.faq-list details:last-child { border-bottom: 1px solid var(--line); }
.faq-list summary { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 1rem; font-weight: 500; font-size: clamp(1.05rem, 1.6vw, 1.25rem); letter-spacing: -0.02em; color: var(--ink); line-height: 1.3; padding-right: 0.5rem; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: '+'; font-weight: 400; font-size: 1.5rem; color: var(--rose); transition: transform 250ms ease; flex-shrink: 0; }
.faq-list details[open] summary::after { transform: rotate(45deg); }
.faq-list details p { margin-top: 0.85rem; font-size: 1rem; color: var(--ink-soft); line-height: 1.65; max-width: 42rem; }

/* ============================================ AVIS ============================================ */
.reviews { background: var(--cream-2); padding: var(--pad-y) var(--pad-x); }
.reviews-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.5vw, 1.6rem); }
.review { background: var(--cream); border-radius: var(--radius-lg); padding: 1.7rem 1.5rem; display: flex; flex-direction: column; gap: 0.85rem; border: 1px solid var(--line); }
.review .stars { color: var(--sun-deep); font-size: 1rem; letter-spacing: 0.1em; }
.review blockquote { font-size: 1.02rem; line-height: 1.5; color: var(--ink); letter-spacing: -0.01em; }
.review figcaption { font-size: 0.85rem; font-weight: 500; color: var(--ink-soft); margin-top: auto; }
@media (max-width: 760px) { .reviews-grid { grid-template-columns: 1fr; } }

/* ============================================ SIGNUP (bloc rose doux) ============================================ */
.signup { background: var(--rose-soft); padding: var(--pad-y) var(--pad-x); }
.signup-grid { max-width: var(--max-w); margin: 0 auto; display: grid; grid-template-columns: 1.45fr 0.55fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.signup-inner { max-width: 40rem; }
.signup-visual { aspect-ratio: 3 / 4; }
.signup-visual img { width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(0 18px 30px rgba(46,42,41,0.16)); }
.signup .eyebrow { color: var(--rose); }
.signup h2 { font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.6rem); line-height: 1.03; letter-spacing: -0.04em; color: var(--ink); margin-bottom: 1.1rem; }
.signup-sub { font-size: clamp(1.15rem, 1.7vw, 1.4rem); color: var(--ink); line-height: 1.45; margin-bottom: 0.6rem; }
.signup-sub strong { font-weight: 700; }
.signup-proof { font-size: 1.02rem; color: var(--ink); opacity: 0.82; font-weight: 600; margin-bottom: 2rem; }
.signup-form { display: flex; gap: 0.5rem; background: var(--cream); padding: 0.5rem; border-radius: 100px; border: 1px solid rgba(46,42,41,0.08); max-width: 31rem; box-shadow: 0 12px 28px rgba(46,42,41,0.08); }
.signup-form input[type="email"] { flex: 1; border: 0; outline: 0; background: transparent; padding: 0.85rem 1.1rem; font: inherit; color: var(--ink); font-size: 1rem; min-width: 0; }
.signup-form input[type="email"]::placeholder { color: var(--ink-soft); opacity: 0.8; }
.signup-form .btn { padding: 0.85rem 1.5rem; font-size: 0.92rem; }
.signup-status { min-height: 1.4rem; margin-top: 0.9rem; font-size: 0.92rem; color: var(--ink); }
.signup-status.success { color: #1f6b3a; font-weight: 600; }
.signup-status.error { color: #9a2f2f; }
.rgpd { margin-top: 1.5rem; font-size: 0.76rem; color: var(--ink-soft); line-height: 1.5; max-width: 34rem; }
@media (max-width: 840px) { .signup-grid { grid-template-columns: 1fr; } .signup-inner { max-width: 38rem; margin: 0 auto; text-align: center; } .signup-form { margin: 0 auto; } .rgpd { margin-left: auto; margin-right: auto; } .signup-visual { max-width: 22rem; margin: 0.5rem auto 0; } }
@media (max-width: 560px) { .signup-form { flex-direction: column; border-radius: var(--radius-lg); padding: 0.6rem; } .signup-form input[type="email"] { text-align: center; } .signup-form .btn { width: 100%; } }

/* ============================================ FOOTER (clair) ============================================ */
.footer { background: var(--cream-2); color: var(--ink); padding: 3.5rem var(--pad-x) 2rem; border-top: 1px solid var(--line); }
.footer-inner { max-width: var(--max-w); margin: 0 auto; display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; padding-bottom: 2.2rem; border-bottom: 1px solid var(--line); flex-wrap: wrap; }
.footer-logo { font-weight: 500; font-size: 2.2rem; letter-spacing: -0.045em; line-height: 1; }
.footer-logo .dot { color: var(--rose); }
.footer-tag { margin-top: 0.5rem; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); }
.footer-links { display: flex; gap: 1.7rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; color: var(--ink-soft); transition: color 180ms ease; }
.footer-links a:hover { color: var(--ink); }
.footer-bottom { max-width: var(--max-w); margin: 1.6rem auto 0; font-size: 0.76rem; color: var(--ink-soft); letter-spacing: 0.04em; }

/* ============================================ REVEAL ============================================ */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } .marquee-track { animation: none; } html { scroll-behavior: auto; } }
