/* ═══════════════════════════════════════
   MANIFESTO SECTION — front-page.php
   S18: Replaces old About section on homepage.
   Large orange background, italic serif text,
   giant watermark word, discreet underline CTA.
   Inspired by reference screenshot.
═══════════════════════════════════════ */

/* ── MANIFESTO ── */
.manifesto {
  position: relative;
  background: var(--orange);
  padding: 10rem 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 60vh;
}

/* Watermark word behind text */
.manifesto-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 320px);
  font-weight: 600;
  letter-spacing: -.02em;
  color: rgba(245,240,225,.12);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.manifesto-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.5vw, 46px);
  font-style: italic;
  font-weight: 400;
  line-height: 1.65;
  color: rgba(245,240,225,.95);
  margin-bottom: 3rem;
  letter-spacing: .01em;
}

.manifesto-text strong {
  font-style: normal;
  font-weight: 600;
  color: #fff;
}

.manifesto-cta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: rgba(245,240,225,.7);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,240,225,.35);
  padding-bottom: 3px;
  transition: color .2s, border-color .2s;
  cursor: none;
}
.manifesto-cta:hover {
  color: #fff;
  border-color: rgba(245,240,225,.8);
}

/* ── NOTRE HISTOIRE PAGE ── */
.notre-histoire-pg .about-blocks {
  max-width: 960px;
  padding: 0 3rem;
}

/* ── THANKYOU PAGE ── */
.avm-thankyou {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg);
  padding: 2rem;
  text-align: center;
}
.avm-thankyou-inner {
  max-width: 520px;
  width: 100%;
}
.avm-thankyou-check {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2.5rem;
}
.avm-thankyou-check svg {
  width: 28px;
  height: 28px;
  stroke: var(--bg);
  stroke-width: 2.5;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.avm-thankyou-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .38em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 1.2rem;
}
.avm-thankyou-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 500;
  letter-spacing: -.01em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 1.4rem;
}
.avm-thankyou-sub {
  font-family: var(--font-display);
  font-size: 18px;
  font-style: italic;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 3rem;
}
.avm-thankyou-tagline {
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: var(--ink-muted);
  margin-bottom: 3rem;
  display: block;
}
.avm-thankyou-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .28em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: none;
  transition: background .2s, transform .1s;
  border: none;
}
.avm-thankyou-btn:hover {
  background: var(--orange);
  transform: translateY(-1px);
}
.avm-thankyou-countdown {
  margin-top: 1.5rem;
  font-family: var(--font-body);
  font-size: 10px;
  letter-spacing: .12em;
  color: var(--ink-muted);
}

/* ── MOBILE: MANIFESTO ── */
@media (max-width: 768px) {
  .manifesto {
    padding: 6rem 1.5rem;
    min-height: auto;
  }
  .manifesto-text {
    font-size: clamp(20px, 6vw, 30px);
  }
  .manifesto-bg-text {
    font-size: clamp(80px, 32vw, 140px);
  }
  .avm-thankyou { padding: 5rem 1.5rem 3rem; }
  .avm-thankyou-btn { cursor: pointer; width: 100%; }
  .manifesto-cta { cursor: pointer; }
}
