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

:root {
  --terracotta: #C1440E;
  --terracotta-light: #E8A87C;
  --bleu-nuit: #1A2B4A;
  --fond: #FAF7F2;
  --fond-alt: #F0EAE0;
  --texte: #3D3530;
  --texte-light: #7A6F68;
  --blanc: #FFFFFF;
  --border: #E0D8D0;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--fond);
  color: var(--texte);
  line-height: 1.7;
  font-size: 16px;
}

/* ── NAVIGATION ── */
nav {
  background: var(--blanc);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--bleu-nuit);
  line-height: 1.2;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--texte);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active { color: var(--terracotta); }

.nav-cta {
  background: var(--terracotta) !important;
  color: var(--blanc) !important;
  padding: 0.5rem 1.2rem !important;
  border-radius: 3px;
  font-weight: 700 !important;
}

.nav-cta:hover { background: var(--bleu-nuit) !important; color: var(--blanc) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--bleu-nuit);
  transition: all 0.3s;
}

/* ── HERO ACCUEIL ── */
.hero {
  background: var(--bleu-nuit);
  color: var(--blanc);
  padding: 7rem 2rem 6rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(193,68,14,0.15) 0%, transparent 60%);
  pointer-events: none;
}

.hero-inner { max-width: 760px; margin: 0 auto; position: relative; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  color: var(--fond);
}

.hero .tagline {
  font-size: 1.2rem;
  color: var(--terracotta-light);
  font-style: italic;
  font-family: 'Playfair Display', serif;
  margin-bottom: 1.5rem;
}

.hero .hero-text {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.82);
  max-width: 560px;
  margin: 0 auto 2.8rem;
  line-height: 1.8;
}

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

/* ── PAGE HERO ── */
.page-hero {
  background: var(--bleu-nuit);
  color: var(--blanc);
  padding: 4.5rem 2rem 3.5rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--fond);
  margin-bottom: 0.7rem;
  line-height: 1.15;
}

.page-hero p {
  font-style: italic;
  color: var(--terracotta-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

/* ── BOUTONS ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 3px;
  font-family: 'Lato', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary { background: var(--terracotta); color: var(--blanc); }
.btn-primary:hover { background: #A33809; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(193,68,14,0.35); }

.btn-outline-white { background: transparent; color: var(--blanc); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { border-color: var(--blanc); background: rgba(255,255,255,0.08); }

.btn-dark { background: var(--bleu-nuit); color: var(--blanc); }
.btn-dark:hover { background: #0F1E35; transform: translateY(-2px); }

.btn-outline { background: transparent; color: var(--terracotta); border: 2px solid var(--terracotta); }
.btn-outline:hover { background: var(--terracotta); color: var(--blanc); }

/* ── SECTIONS ── */
section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-alt { background: var(--fond-alt); }
.section-white { background: var(--blanc); }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 700;
  color: var(--bleu-nuit);
  margin-bottom: 0.8rem;
  line-height: 1.2;
}

.section-intro {
  font-size: 1.05rem;
  color: var(--texte-light);
  max-width: 600px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* ── MISSION CARDS ── */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.card {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}

.card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.07); transform: translateY(-3px); }

.card-icon { font-size: 2rem; margin-bottom: 1rem; display: block; }

.card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--bleu-nuit);
  margin-bottom: 0.7rem;
}

.card p { font-size: 0.95rem; color: var(--texte-light); line-height: 1.65; }

/* ── NEWSLETTER BANNER ── */
.newsletter-banner {
  background: var(--terracotta);
  text-align: center;
  padding: 4.5rem 2rem;
}

.newsletter-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blanc);
  margin-bottom: 0.8rem;
}

.newsletter-banner p {
  color: rgba(255,255,255,0.88);
  margin-bottom: 2rem;
  font-size: 1rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-newsletter {
  background: var(--blanc);
  color: var(--terracotta);
  font-weight: 700;
  padding: 0.9rem 2.2rem;
  border-radius: 3px;
  text-decoration: none;
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
}

.btn-newsletter:hover { background: var(--fond); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,0.15); }

/* ── TEXTE LONG ── */
.text-content { max-width: 720px; margin: 0 auto; }

.text-content p { margin-bottom: 1.6rem; font-size: 1.05rem; line-height: 1.85; }

.text-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--bleu-nuit);
  margin: 2.8rem 0 1rem;
}

.text-content .blockquote {
  font-style: italic;
  color: var(--texte-light);
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  border-left: 3px solid var(--terracotta);
  padding-left: 1.5rem;
  margin: 2.2rem 0;
  line-height: 1.7;
}

.text-content .highlight {
  background: var(--fond-alt);
  border-radius: 4px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;
  border-left: 3px solid var(--terracotta);
}

/* ── GALERIE ── */
.gallery-construction {
  text-align: center;
  padding: 5rem 2rem;
  background: var(--fond-alt);
  border-radius: 8px;
  border: 2px dashed var(--border);
  margin: 2rem 0;
}

.gallery-construction .big-icon { font-size: 4rem; margin-bottom: 1.5rem; display: block; }

.gallery-construction h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--bleu-nuit);
  margin-bottom: 0.8rem;
}

.gallery-construction p {
  color: var(--texte-light);
  max-width: 480px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

/* ── ATELIERS ── */
.info-table {
  background: var(--fond-alt);
  border-left: 4px solid var(--terracotta);
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  border-radius: 0 6px 6px 0;
}

.info-table table { width: 100%; border-collapse: collapse; }
.info-table td { padding: 0.45rem 0; font-size: 1rem; }
.info-table td:first-child { font-weight: 700; color: var(--bleu-nuit); width: 130px; }

.download-block {
  background: var(--blanc);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  margin: 2.5rem 0;
}

.download-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--bleu-nuit);
  margin-bottom: 0.7rem;
}

.download-block p { color: var(--texte-light); margin-bottom: 1.5rem; font-size: 0.95rem; }

/* ── BIO VANESSA ── */
.bio-section { padding: 5rem 2rem; }

.bio-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.bio-photo img {
  width: 100%;
  border-radius: 6px;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.bio-text .name {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--bleu-nuit);
  margin-bottom: 0.3rem;
  line-height: 1.1;
}

.bio-text .role {
  color: var(--terracotta);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 2rem;
  display: block;
}

.bio-text p { margin-bottom: 1.4rem; font-size: 1.05rem; line-height: 1.8; }

/* ── CONTACT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 4rem;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

.contact-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--bleu-nuit);
  margin-bottom: 1rem;
}

.contact-info p { color: var(--texte-light); margin-bottom: 1rem; line-height: 1.8; font-size: 0.95rem; }

.contact-info a.email {
  color: var(--terracotta);
  font-weight: 700;
  text-decoration: none;
  word-break: break-all;
}

.contact-list { list-style: none; margin: 1.2rem 0; }
.contact-list li {
  padding: 0.35rem 0 0.35rem 1.5rem;
  position: relative;
  color: var(--texte-light);
  font-size: 0.95rem;
}
.contact-list li::before { content: "—"; position: absolute; left: 0; color: var(--terracotta); }

.form-group { margin-bottom: 1.4rem; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--bleu-nuit);
  margin-bottom: 0.45rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  background: var(--blanc);
  color: var(--texte);
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  box-shadow: 0 0 0 3px rgba(193,68,14,0.1);
}

.form-group textarea { height: 140px; resize: vertical; }

/* ── FOOTER ── */
footer {
  background: var(--bleu-nuit);
  color: rgba(250,247,242,0.65);
  padding: 3rem 2rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand .footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--fond);
  font-weight: 700;
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
}

.footer-brand p { font-size: 0.78rem; color: rgba(250,247,242,0.45); }

.footer-links { display: flex; gap: 2rem; list-style: none; }
.footer-links a { color: rgba(250,247,242,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--terracotta-light); }

.footer-copy { font-size: 0.75rem; color: rgba(250,247,242,0.35); }

/* ── SÉPARATEUR ── */
.divider { width: 50px; height: 3px; background: var(--terracotta); margin: 1.5rem 0 2rem; }
.divider-center { margin-left: auto; margin-right: auto; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .bio-grid { grid-template-columns: 220px 1fr; gap: 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 640px) {
  section { padding: 3.5rem 1.2rem; }
  .hero { padding: 4rem 1.2rem; }
  .page-hero { padding: 3rem 1.2rem 2.5rem; }
  .cards-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-photo { max-width: 220px; margin: 0 auto; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--blanc);
    border-bottom: 1px solid var(--border);
    padding: 1rem 2rem 1.5rem;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }
  .hamburger { display: flex; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-links { justify-content: center; }
  .hero-ctas { flex-direction: column; align-items: center; }
}
