/* ============================================================
   UNIVERS FRANCK — style.css
   Charte graphique non négociable
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&family=Crimson+Pro:ital,wght@0,300;0,400;0,600;1,300;1,400&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --parchment:   #F5F0E8;
  --navy:        #0A1628;
  --gold:        #C9A84C;
  --france-blue: #1B3A6B;
  --gold-light:  #E8C97A;
  --navy-soft:   #1a2a40;

  --font-title: 'Cinzel', Georgia, serif;
  --font-body:  'Crimson Pro', Georgia, serif;

  --max-width: 900px;
  --section-pad: 5rem 1.5rem;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background-color: var(--parchment);
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 1.15rem;
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a { color: var(--france-blue); text-decoration: none; }
a:hover { color: var(--gold); }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-title);
  font-weight: 600;
  line-height: 1.25;
  color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.2rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }

p { margin-bottom: 1rem; }

.gold { color: var(--gold); }
.section-label {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

section { padding: var(--section-pad); }

.section-divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2.5rem;
}

/* ── HEADER / NAV ───────────────────────────────────────────── */
header {
  background: var(--navy);
  padding: 1.1rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(201,168,76,0.25);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-title);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
}
.logo-uni   { color: var(--parchment); }
.logo-vers  { color: var(--gold); }
.logo-franck{ color: var(--parchment); }

.logo-tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 0.7rem;
  color: rgba(245,240,232,0.5);
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Nav links */
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

nav a {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.8);
  transition: color 0.2s;
}
nav a:hover, nav a.active { color: var(--gold); }

.lang-switch {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: rgba(245,240,232,0.45);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
  transition: all 0.2s;
}
.lang-switch:hover {
  color: var(--gold);
  border-color: var(--gold);
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--parchment);
  transition: all 0.3s;
}

/* ── HERO ────────────────────────────────────────────────────── */
.hero {
  background: var(--navy);
  padding: 6rem 1.5rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero h1 {
  color: var(--parchment);
  max-width: 700px;
  margin: 0 auto 1.25rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.hero-sub {
  color: rgba(245,240,232,0.72);
  font-size: 1.2rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-style: italic;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ── BUTTONS ─────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--parchment);
  border: 1px solid rgba(245,240,232,0.4);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--parchment);
}

/* ── PITCH SECTION ───────────────────────────────────────────── */
.pitch {
  background: var(--parchment);
  text-align: center;
}

.pitch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.pitch-card {
  text-align: left;
  padding: 2rem;
  border-left: 2px solid var(--gold);
  background: rgba(255,255,255,0.5);
}

.pitch-card h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.pitch-card p {
  font-size: 1rem;
  color: var(--navy-soft);
  margin: 0;
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
.testimonials {
  background: var(--france-blue);
  color: var(--parchment);
}

.testimonials h2 {
  color: var(--parchment);
  text-align: center;
}

.testimonials .section-divider {
  margin-left: auto;
  margin-right: auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: rgba(10,22,40,0.35);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 2rem;
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-title);
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
  color: rgba(245,240,232,0.9);
}

.testimonial-author {
  font-family: var(--font-title);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
}

.testimonial-result {
  font-size: 0.85rem;
  color: rgba(245,240,232,0.55);
  margin-top: 0.25rem;
}

/* ── EMAIL CAPTURE ───────────────────────────────────────────── */
.email-capture {
  background: var(--parchment);
  text-align: center;
  border-top: 1px solid rgba(10,22,40,0.1);
}

.email-capture h2 { margin-bottom: 0.5rem; }

.email-capture p {
  color: var(--navy-soft);
  max-width: 480px;
  margin: 0 auto 2rem;
  font-style: italic;
}

.brevo-form-wrapper {
  max-width: 480px;
  margin: 0 auto;
}

/* Brevo override styles */
.brevo-form-wrapper input[type="email"] {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(10,22,40,0.25);
  background: white;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.75rem;
  border-radius: 2px;
}

.brevo-form-wrapper input[type="submit"] {
  width: 100%;
  padding: 0.85rem 2rem;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-title);
  font-size: 0.78rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transition: all 0.2s;
}

.brevo-form-wrapper input[type="submit"]:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.email-fine-print {
  font-size: 0.8rem;
  color: rgba(10,22,40,0.4);
  margin-top: 1rem;
  font-style: italic;
}

/* ── MODULE 0 PAGE ───────────────────────────────────────────── */
.module-hero {
  background: var(--navy);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}

.module-hero h1 { color: var(--parchment); }
.module-hero h1 em { font-style: normal; color: var(--gold); }
.module-hero p {
  color: rgba(245,240,232,0.72);
  max-width: 560px;
  margin: 1rem auto 0;
  font-style: italic;
}

.module-content { background: var(--parchment); }

.module-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.module-includes h3 {
  margin-bottom: 1.25rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-title);
}

.module-includes ul {
  list-style: none;
}

.module-includes li {
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(10,22,40,0.1);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1.05rem;
}

.module-includes li::before {
  content: '—';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 0.1em;
}

.module-cta-box {
  background: var(--navy);
  color: var(--parchment);
  padding: 2.5rem;
  text-align: center;
  position: sticky;
  top: 100px;
}

.module-cta-box .price {
  font-family: var(--font-title);
  font-size: 2.5rem;
  color: var(--gold);
  display: block;
  margin: 1rem 0;
}

.module-cta-box p {
  font-size: 0.95rem;
  color: rgba(245,240,232,0.65);
  font-style: italic;
}

.module-cta-box .btn {
  width: 100%;
  margin: 1rem 0 0.5rem;
  display: block;
  text-align: center;
}

.free-sample {
  background: rgba(201,168,76,0.08);
  border: 1px solid rgba(201,168,76,0.25);
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}

.free-sample p {
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
  color: rgba(245,240,232,0.65);
}

/* ── ABOUT PAGE ──────────────────────────────────────────────── */
.about-content {
  background: var(--parchment);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}

.about-aside {
  position: sticky;
  top: 100px;
}

.about-name {
  font-family: var(--font-title);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.about-role {
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

.about-stat {
  border-top: 1px solid rgba(10,22,40,0.1);
  padding: 0.75rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.about-stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,22,40,0.5);
  font-family: var(--font-title);
}

.about-stat-value {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--navy);
}

.about-body h3 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--france-blue);
}

.about-body h3:first-child { margin-top: 0; }

.vision-quote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--france-blue);
}

/* ── CONTACT PAGE ────────────────────────────────────────────── */
.contact-content {
  background: var(--parchment);
  text-align: center;
}

.contact-card {
  max-width: 480px;
  margin: 3rem auto 0;
  background: var(--navy);
  color: var(--parchment);
  padding: 3rem 2.5rem;
  text-align: center;
}

.contact-card h3 {
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.contact-card a {
  color: var(--parchment);
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(201,168,76,0.4);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.contact-card a:hover {
  color: var(--gold);
  border-color: var(--gold);
}

.contact-note {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: rgba(245,240,232,0.5);
  font-style: italic;
}

/* ── PAGE HERO (inner pages) ─────────────────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 4rem 1.5rem 3rem;
  text-align: center;
}

.page-hero h1 { color: var(--parchment); }
.page-hero p {
  color: rgba(245,240,232,0.6);
  font-style: italic;
  margin-top: 0.75rem;
}

/* ── FOOTER ──────────────────────────────────────────────────── */
footer {
  background: var(--navy);
  color: rgba(245,240,232,0.45);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-top: 1px solid rgba(201,168,76,0.15);
}

.footer-logo {
  font-family: var(--font-title);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-title);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: rgba(245,240,232,0.25);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }

  nav ul { display: none; }
  nav ul.open { display: flex; flex-direction: column; gap: 1.25rem; }

  .nav-toggle { display: flex; }

  .nav-inner { flex-wrap: wrap; }

  .module-grid,
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }

  .module-cta-box { position: static; }
  .about-aside { position: static; }

  .hero { padding: 4rem 1.25rem 3.5rem; }
}
