
:root {
  --rose: #f6d7d1;
  --rose-200: #f8e2dd;
  --beige: #faf6f0;
  --bg-cream: #fbf7ef;
  --bg-light: #f7f2ea;
  --bg-dark: #111219;

  --text: #262626;
  --muted: #6b6b72;
  --gold: #c89d4f;
  --gold-soft: #f1e0b3;
  --line: #e3d7c7;

  --font-sans: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif: "Playfair Display", "Times New Roman", serif;

  --display: clamp(34px, 5vw, 54px);
  --h1: clamp(28px, 3.6vw, 38px);
  --h2: clamp(22px, 3vw, 30px);
  --h3: clamp(18px, 2.4vw, 22px);
  --text-size: clamp(15px, 1.4vw, 18px);

  --radius-lg: 30px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.18);
  --shadow-card: 0 12px 35px rgba(0, 0, 0, 0.06);
}


*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  font: 400 var(--text-size) / 1.6 var(--font-sans);
  color: var(--text);
  background: var(--bg-cream);
  -webkit-text-size-adjust: 100%;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 600;
  letter-spacing: 0.01em;
}

p {
  margin: 0;
}

/* Simple container utilitaire si besoin */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: 24px;
}

/* --------- Boutons --------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
}

.btn-primary,
.btn.primary {
  background: var(--gold);
  color: #1b130c;
  box-shadow: 0 10px 30px rgba(200, 157, 79, 0.35);
}

.btn-ghost,
.btn.ghost {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

.btn-subtle {
  background: #fff;
  color: var(--text);
  border-color: var(--line);
}

/* =========================================
   HEADER HOME (transparent sur hero)
   ========================================= */

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  background: linear-gradient(
    to bottom,
    rgba(10, 9, 13, 0.92),
    rgba(10, 9, 13, 0.8),
    transparent
  );
  backdrop-filter: blur(8px);
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo home */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-icon {
  height: 28px;
  width: auto;
}

.brand-text {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}

/* nav home */
.main-nav {
  display: flex;
  gap: 40px;
}

.main-nav .nav-link {
  position: relative;
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  font-weight: 500;
  color: #f7f2ea;
  opacity: 0.9;
  transition: 0.2s ease;
}

.main-nav .nav-link:hover {
  opacity: 1;
}

.main-nav .nav-link.active {
  color: var(--gold);
}

.main-nav .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* CTA header home */
.btn-cta {
  background: var(--gold);
  color: #1b130c;
  border-radius: 12px;
}

/* =========================================
   HEADER PAGES INTERNES (beige fixe)
   ========================================= */

.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: #faf6ef;
  border-bottom: 1px solid #eee4d3;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.nav-container {
  max-width: 1400px;
  margin: auto;
  padding: 18px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* logo interne */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 26px;
  color: #caa12f;
  text-decoration: none;
}

.nav-logo-icon {
  height: 32px;
  width: auto;
}

/* liens internes */
.nav-links {
  display: flex;
  align-items: center;
  gap: 35px;
}

.nav-links a {
  color: #444;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  font-family: "Poppins", sans-serif;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: #caa12f;
}

/* CTA interne */
.nav-cta {
  background: #caa12f;
  color: #fff;
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
}

.nav-cta:hover {
  background: #af8b28;
}

/* Décalage du contenu sous le header interne */
.nav-header + main,
.nav-header + section {
  margin-top: 96px; /* hauteur du header */
}

/* =========================================
   HOME – HERO
   ========================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: #fdf7ed;
  background: url("images/hero_cuvee.jpg") center center / cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(0, 0, 0, 0.9), transparent 55%),
    linear-gradient(to right, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.3));
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 60px 120px;
}

.hero-text {
  max-width: 560px;
}

.hero h1 {
  font-size: var(--display);
  line-height: 1.05;
  margin-bottom: 18px;
}

.hero h1 span {
  color: var(--gold);
}

.hero p {
  max-width: 48ch;
  color: rgba(248, 240, 229, 0.9);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* =========================================
   HOME – SECTIONS (about, services, etc.)
   ========================================= */

.about-section {
  padding: 90px 24px 80px;
  background: #fffaf4;
  text-align: center;
}

.about-section > h2 {
  font-size: var(--h1);
  margin-bottom: 10px;
}

.about-section > p {
  max-width: 60ch;
  margin: 0 auto 42px;
  color: var(--muted);
}

.about-grid {
  max-width: 980px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.about-item {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 22px 22px 20px;
  border: 1px solid rgba(227, 215, 199, 0.8);
  box-shadow: var(--shadow-card);
}

.about-item h3 {
  font-family: var(--font-serif);
  font-size: var(--h3);
  margin-bottom: 8px;
}

.about-item p {
  font-size: 0.95rem;
  color: var(--muted);
}

/* Services */

.services-section {
  padding: 90px 24px 90px;
  background: linear-gradient(
      to bottom,
      rgba(247, 238, 222, 0.8),
      rgba(247, 238, 222, 0.96)
    ),
    radial-gradient(circle at 0% 0%, #f9f1e2, #f5ebde);
  text-align: center;
}

.services-section h2 {
  font-size: var(--h1);
  margin-bottom: 12px;
}

.services-section .subtitle {
  max-width: 52ch;
  margin: 0 auto 46px;
  color: var(--muted);
}

.services-grid {
  max-width: 1020px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.service-card {
  background: #fffdf8;
  border-radius: var(--radius-md);
  padding: 22px 22px 24px;
  border: 1px solid rgba(227, 215, 199, 0.9);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.service-card h3 {
  font-size: var(--h3);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.service-card .link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--gold);
  text-decoration: none;
}

/* Etiquette IA */

.etiquette-section {
  padding: 90px 24px;
  background: #fff;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  align-items: center;
  gap: 40px;
}

.etiquette-content h2 {
  font-size: var(--h1);
  margin-bottom: 12px;
}

.etiquette-content p {
  color: var(--muted);
  max-width: 46ch;
  margin-bottom: 18px;
}

.etiquette-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
}

.etiquette-content li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  color: #514540;
}

.etiquette-content li::before {
  content: "✶";
  position: absolute;
  left: 2px;
  top: 1px;
  font-size: 0.8rem;
  color: var(--gold);
}

.etiquette-img {
  height: clamp(320px, 50vh, 440px);
  border-radius: var(--radius-lg);
  background: url("images/etiquette_ia.jpg") center/cover no-repeat;
  box-shadow: var(--shadow-soft);
}

/* Stats + actus */

.actus-section {
  padding: 90px 24px 100px;
  background: #fffaf4;
}

.actus-section h2 {
  font-size: var(--h1);
  text-align: center;
  margin-bottom: 34px;
}

.stats-grid {
  max-width: 880px;
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.stat {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(227, 215, 199, 0.9);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--shadow-card);
}

.stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: 4px;
}

.stat span {
  font-size: 0.95rem;
  color: var(--muted);
}

.actus-title {
  font-size: var(--h2);
  text-align: center;
  margin-bottom: 26px;
}

.actus-grid {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.actus-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(227, 215, 199, 0.8);
  padding: 20px 18px 22px;
  box-shadow: var(--shadow-card);
}

.actus-card h4 {
  font-family: var(--font-serif);
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.actus-card p {
  font-size: 0.94rem;
  color: var(--muted);
}

/* CTA home */

.cta-section {
  padding: 80px 24px 90px;
  background: #111219;
  text-align: center;
  color: #f7f2ea;
}

.cta-section h2 {
  font-size: var(--h1);
  margin-bottom: 12px;
}

.cta-section p {
  max-width: 48ch;
  margin: 0 auto 22px;
  color: rgba(245, 237, 222, 0.86);
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
  background: #07080d;
  color: rgba(245, 239, 230, 0.84);
  padding: 26px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo.small {
  max-height: 32px;
  width: auto;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-brand small {
  font-size: 0.8rem;
  color: rgba(240, 232, 220, 0.7);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 18px;
  font-size: 0.86rem;
}

.footer-links a {
  color: rgba(234, 226, 214, 0.82);
  text-decoration: none;
}

/* =========================================
   PAGE QUI SOMMES-NOUS
   ========================================= */

.apropos-hero {
  position: relative;
  padding: 140px 24px 150px;
  text-align: center;
  color: #fff;
  background:
    linear-gradient(to bottom, rgba(10, 9, 13, 0.7), rgba(10, 9, 13, 0.4)),
    url("images/hero_apropos.jpg") center/cover no-repeat;
}

.apropos-hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.apropos-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4.8vw, 52px);
  font-weight: 600;
  margin: 0 0 14px;
  text-shadow: 0 18px 40px rgba(0, 0, 0, 0.6);
}

.apropos-hero h1 span {
  color: var(--gold);
}

.apropos-hero p {
  margin: 0;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
}

.apropos-start {
  background: #fff;
  padding: 80px 0 70px;
}

.apropos-start .container {
  max-width: 980px;
}

.apropos-start h2 {
  font-size: var(--h1);
  margin: 0 0 22px;
}

.apropos-start p {
  margin: 0 0 16px;
  color: var(--muted);
}

/* fondateurs / valeurs / partenaires */

.fondateurs-section,
.valeurs-section,
.partenaires-section {
  padding: 80px 0 90px;
  text-align: center;
}

.fondateurs-section {
  background: #fbf4e6;
}

.valeurs-section {
  background: #fbf4e6;
}

.partenaires-section {
  background: #fff;
}

.fondateurs-section h2,
.valeurs-section h2,
.partenaires-section h2 {
  font-size: var(--h1);
  margin-bottom: 10px;
}

.fondateurs-section h2 span,
.valeurs-section h2 span,
.partenaires-section h2 span {
  color: var(--gold);
}

.fondateurs-section .subtitle,
.valeurs-section .subtitle,
.partenaires-section .subtitle {
  max-width: 52ch;
  margin: 0 auto 40px;
  color: var(--muted);
}

/* grilles */

.fondateurs-grid,
.valeurs-grid,
.partenaires-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  gap: 24px;
}

.fondateurs-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.valeurs-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.partenaires-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* cartes */

.fondateur-card,
.valeur-card,
.partenaire-col {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(227, 215, 199, 0.9);
  box-shadow: var(--shadow-card);
  text-align: left;
}

.fondateur-card {
  overflow: hidden;
}

.fondateur-img {
  height: 260px;
  background: #ddd center/cover no-repeat;
  border-radius: 12px;
  margin-bottom: 14px;
}

.fondateur-content .role {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.partenaire-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.partenaire-col li {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 4px;
}

/* =========================================
   PAGE PRESTATIONS
   ========================================= */

.prestations-hero {
  position: relative;
  padding: 180px 24px 140px;
  text-align: center;
  background: linear-gradient(
    to bottom,
    #faf7f1 0%,
    #f9f4e9 40%,
    #f7f2e7 100%
  );
}

.prestations-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(42px, 5vw, 60px);
  font-weight: 600;
  color: #1e1e1e;
  margin-bottom: 18px;
}

.prestations-hero h1 span {
  color: var(--gold);
}

.prestations-hero p {
  max-width: 60ch;
  margin: 0 auto;
  color: #6c6c6c;
  font-size: 18px;
}

/* blocs alternés */

.prestation-block {
  max-width: 1250px;
  margin: 110px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 0 24px;
}

.prestation-block.reverse {
  direction: rtl;
}

.prestation-block.reverse > * {
  direction: ltr;
}

.prestation-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.prestation-img img {
  width: 100%;
  height: auto;
  display: block;
}

.prestation-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(32px, 3vw, 40px);
  margin-bottom: 15px;
  color: #1f1f1f;
}

.prestation-content p {
  color: #555;
  margin-bottom: 22px;
  font-size: 17px;
  line-height: 1.6;
}

.prestation-list {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.prestation-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  color: #444;
}

.prestation-list li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 15px;
}

/* processus */

.processus-section {
  padding: 120px 24px 90px;
  background: #faf7ef;
  text-align: center;
}

.processus-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 50px);
  margin-bottom: 14px;
}

.processus-section h2 span {
  color: var(--gold);
}

.processus-subtitle {
  color: #666;
  margin-bottom: 60px;
}

.processus-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
}

.processus-step {
  background: #fff;
  padding: 26px 20px;
  border-radius: 14px;
  border: 1px solid #eee4d4;
  box-shadow: var(--shadow-card);
}

.processus-step-number {
  width: 58px;
  height: 58px;
  margin: 0 auto 16px;
  background: #f5e7c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 600;
}

/* accompagnement */

.accompagnement-section {
  padding: 110px 24px 120px;
  text-align: center;
}

.accompagnement-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 50px);
  margin-bottom: 16px;
}

.accompagnement-section h2 span {
  color: var(--gold);
}

.accompagnement-grid {
  max-width: 1100px;
  margin: 60px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.accompagnement-card {
  background: #fff;
  border-radius: 14px;
  padding: 28px 26px;
  border: 1px solid #eee4d4;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

/* CTA final prestations */

.prestations-final-cta {
  background: #14161c;
  padding: 120px 24px;
  text-align: center;
  color: #fff;
}

.prestations-final-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 56px);
  margin-bottom: 20px;
}

.prestations-final-cta p {
  max-width: 60ch;
  margin: 0 auto 32px;
  color: #d5d5d5;
}

/* =========================================
   PAGE CRÉER SON ÉTIQUETTE
   ========================================= */

.hero-etiquette {
  position: relative;
  padding: 140px 20px 120px;
  background: linear-gradient(to bottom, #fbf7ef, #f8f3e8);
  text-align: center;
}

.hero-etiquette .hero-icon {
  font-size: 48px;
  color: #d4af37;
  display: block;
  margin-bottom: 20px;
}

.hero-etiquette h1 {
  font-family: "Playfair Display", serif;
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-etiquette h1 span {
  color: #d4af37;
}

.hero-etiquette p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
  color: #555;
}

/* étapes */

.steps-section {
  padding: 100px 20px;
  text-align: center;
  background: #fff;
}

.steps-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 60px;
}

.steps-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.step-card {
  background: #fbf8f1;
  border-radius: 14px;
  padding: 40px 30px;
  width: 300px;
  text-align: center;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.06);
}

.step-card .step-number {
  background: #d4af37;
  color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  margin: 0 auto 20px;
}

/* formulaire + aperçu */

.etiquette-form-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 120px 8%;
  gap: 50px;
  background: #faf5eb;
}

.form-container,
.preview-container {
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.form-container h2,
.preview-container h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 30px;
}

.form-container label {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  display: block;
}

.form-container input,
.form-container select,
.form-container textarea {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin-bottom: 25px;
  font-family: "Poppins", sans-serif;
}

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

.form-container .btn.full {
  width: 100%;
}

.preview-box {
  border: 2px dashed #d4af37;
  border-radius: 12px;
  padding: 80px 20px;
  text-align: center;
}

.preview-icon {
  font-size: 50px;
  color: #d4af37;
  display: block;
  margin-bottom: 15px;
}

/* galerie */

.galerie-section {
  padding: 120px 8%;
  background: #fff;
  text-align: center;
}

.galerie-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 42px;
  margin-bottom: 15px;
}

.galerie-section h2 span {
  color: #d4af37;
}

.galerie-section .subtitle {
  color: #666;
  margin-bottom: 50px;
}

.galerie-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.galerie-card {
  background: #fbf8f1;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}

.galerie-card img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  margin-bottom: 12px;
}

/* CTA expert */

.cta-expert-section {
  background: #1f232b;
  padding: 120px 20px;
  text-align: center;
  color: white;
}

.cta-expert-section h2 {
  font-family: "Playfair Display", serif;
  font-size: 40px;
  margin-bottom: 20px;
}

.cta-expert-section p {
  color: #dcdcdc;
  font-size: 17px;
  margin-bottom: 40px;
}

/* =========================================
   PAGE PARTENAIRES
   ========================================= */

.partners-hero {
  padding: 140px 20px 80px;
  text-align: center;
  background: linear-gradient(to bottom, #faf7f2, #f5efe6);
}

.partners-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3.2rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.partners-hero h1 span {
  color: #d4a73c;
}

.partners-hero p {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  color: #555;
  max-width: 750px;
  margin: 0 auto;
}

/* stats partenaires */

.partners-stats {
  padding: 60px 20px;
  background: #fffdf8;
}

.partners-stats .stats-grid {
  max-width: 1100px;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.stat-card {
  background: white;
  padding: 25px 20px;
  text-align: center;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  transition: 0.2s;
}

.stat-card:hover {
  transform: translateY(-4px);
}

.stat-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.stat-card h3 {
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 5px;
  color: #111;
}

.stat-card p {
  font-family: "Poppins", sans-serif;
  color: #777;
}

/* carte */

.partners-map {
  padding: 80px 20px;
  background: #faf7f2;
}

.map-wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.map-box {
  background: #f4efe7;
  padding: 60px 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
  text-align: center;
  color: #555;
}

.map-pin {
  font-size: 2.8rem;
  color: #d4a73c;
  margin-bottom: 10px;
}

/* liste partenaires */

.partners-list {
  padding: 60px 20px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-list h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  text-align: center;
  margin-bottom: 40px;
  color: #111;
}

.partners-list h2 span {
  color: #d4a73c;
}

.partners-list .partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.partner-card {
  display: block;
  background: white;
  padding: 28px 25px;
  border-radius: 16px;
  text-decoration: none;
  color: inherit;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  transition: 0.25s;
}

.partner-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
}

.pc-icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: #d4a73c;
}

.partner-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  margin-bottom: 8px;
  color: #111;
}

.pc-location,
.pc-desc,
.pc-stats {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
}

.pc-location {
  margin-bottom: 12px;
}

.pc-desc {
  color: #666;
  line-height: 1.45rem;
  margin-bottom: 12px;
}

.pc-stats {
  color: #444;
  font-size: 0.9rem;
}

/* tag */

.pc-tag {
  position: absolute;
  top: 18px;
  right: 18px;
  background: #f7e8c3;
  color: #835f14;
  padding: 5px 10px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
}

/* témoignages partenaires */

.partners-testimonials {
  padding: 80px 20px;
  background: #f7f4ef;
}

.partners-testimonials h2 {
  text-align: center;
  font-family: "Playfair Display", serif;
  font-size: 2.6rem;
  color: #111;
  margin-bottom: 40px;
}

.partners-testimonials h2 span {
  color: #d4a73c;
}

.testimonials-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
  font-family: "Poppins", sans-serif;
}

.t-quote {
  font-size: 1rem;
  color: #444;
  margin-bottom: 15px;
  line-height: 1.5rem;
}

.t-author {
  color: #d4a73c;
  font-weight: 600;
}

/* =========================================
   PAGE ACTUALITÉS
   ========================================= */

.news-hero {
  padding: 120px 20px 80px;
  text-align: center;
  background: linear-gradient(to bottom, #f8f3e9 0%, #f3ede3 100%);
}

.news-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 58px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.news-hero h1 span {
  color: #cfa63a;
}

.news-hero p {
  font-size: 20px;
  color: #6b6b6b;
}

/* mise en avant */

.news-feature {
  margin-top: 40px;
  margin-bottom: 80px;
}

.news-feature-card {
  display: flex;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.news-feature-card .nf-image {
  width: 50%;
}

.news-feature-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-feature-card .nf-content {
  width: 50%;
  padding: 50px;
}

.nf-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.nf-tag {
  background: #f7e7b8;
  color: #b58517;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

.nf-date {
  color: #7a7a7a;
  font-size: 14px;
}

.news-feature-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 20px;
}

.nf-content p {
  color: #555;
  font-size: 17px;
  line-height: 1.6;
}

.nf-link {
  display: inline-block;
  margin-top: 20px;
  color: #caa12f;
  font-weight: 600;
  font-size: 16px;
}

/* grid articles */

.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 100px;
}

.news-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.news-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.nc-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 0;
}

.nc-tag {
  background: #f7e7b8;
  color: #b58517;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 13px;
}

.nc-date {
  font-size: 13px;
  color: #777;
}

.news-card h3 {
  padding: 10px 20px;
  font-size: 20px;
  font-family: "Playfair Display", serif;
}

.news-card p {
  padding: 0 20px 20px;
  color: #5f5f5f;
  font-size: 16px;
  line-height: 1.55;
}

.nc-link {
  display: inline-block;
  padding: 0 20px 20px;
  color: #caa12f;
  font-weight: 600;
}

/* newsletter */

.newsletter {
  margin-bottom: 100px;
}

.newsletter-box {
  background: #ffffff;
  padding: 60px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

.newsletter-icon {
  font-size: 38px;
  margin-bottom: 20px;
}

.newsletter-box h2 {
  font-family: "Playfair Display", serif;
  font-size: 36px;
  margin-bottom: 10px;
}

.newsletter-box h2 span {
  color: #caa12f;
}

.newsletter-box p {
  font-size: 17px;
  color: #666;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.newsletter-form input {
  width: 320px;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 16px;
}

.newsletter-form button {
  background: #caa12f;
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.newsletter-form button:hover {
  background: #b48e22;
}

/* =========================================
   PAGE CONTACT
   ========================================= */

.contact-section {
  padding: 60px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 50px;
}

.card {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
}

/* formulaire */

.contact-form label {
  font-weight: 500;
  color: #333;
  display: block;
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 10px;
  margin-top: 5px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #c79e2d;
  outline: none;
  box-shadow: 0 0 0 3px rgba(199, 158, 45, 0.25);
}

.form-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 10px;
}

/* info bloc */

.contact-info {
  padding-top: 10px;
}

.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: 32px;
  margin-bottom: 15px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px 0;
}

.contact-list li {
  margin-bottom: 12px;
  font-size: 16px;
}

.contact-list a {
  color: #c79e2d;
  font-weight: 600;
}

/* map placeholder */

.map-placeholder {
  background: #f5efe2;
  padding: 40px 20px;
  border-radius: 16px;
  text-align: center;
  color: #8f8f8f;
  border: 1px dashed #d0c4a4;
  font-style: italic;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
  .hero-inner {
    padding-inline: 40px;
  }

  .about-grid,
  .services-grid,
  .stats-grid,
  .actus-grid {
    gap: 18px;
  }

  .fondateurs-grid,
  .valeurs-grid,
  .partenaires-grid {
    gap: 18px;
  }
}

@media (max-width: 900px) {
  /* nav home */
  .main-nav {
    gap: 20px;
  }

  .hero {
    align-items: flex-end;
  }

  .hero-inner {
    padding: 130px 24px 80px;
  }

  .hero-text {
    max-width: 100%;
  }

  .about-grid,
  .services-grid,
  .stats-grid,
  .actus-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .etiquette-section {
    grid-template-columns: 1.05fr 0.95fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .fondateurs-grid,
  .valeurs-grid,
  .partenaires-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fondateur-img {
    height: 220px;
  }

  .prestation-block,
  .prestation-block.reverse {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .processus-grid {
    grid-template-columns: 1fr 1fr;
  }

  .accompagnement-grid {
    grid-template-columns: 1fr;
  }

  .etiquette-form-section {
    grid-template-columns: 1fr;
  }

  .galerie-grid {
    grid-template-columns: 1fr 1fr;
  }

  .partners-list .partners-grid,
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-feature-card {
    flex-direction: column;
  }

  .news-feature-card .nf-image,
  .news-feature-card .nf-content {
    width: 100%;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
}

@media (max-width: 700px) {
  .partners-list .partners-grid,
  .testimonials-grid,
  .news-grid {
    grid-template-columns: 1fr;
  }

  .partners-hero h1 {
    font-size: 2.4rem;
  }

  .partners-hero p {
    font-size: 1rem;
  }

  .stat-card h3 {
    font-size: 1.6rem;
  }
}

@media (max-width: 640px) {
  .header-inner {
    padding-inline: 18px;
  }

  .main-nav {
    display: none; /* pas de burger pour l'instant */
  }

  .hero-inner {
    padding: 110px 18px 70px;
    text-align: center;
  }

  .hero-text,
  .hero-actions {
    text-align: center;
    justify-content: center;
  }

  .about-section,
  .services-section,
  .actus-section {
    padding-inline: 18px;
  }

  .about-grid,
  .services-grid,
  .stats-grid,
  .actus-grid,
  .etiquette-section {
    grid-template-columns: 1fr;
  }

  .etiquette-section {
    padding-inline: 18px;
  }

  .etiquette-img {
    order: -1;
  }

  .cta-section {
    padding-inline: 18px;
  }

  .footer-grid {
    padding-inline: 18px;
  }

  .apropos-hero {
    padding: 120px 18px 110px;
  }

  .fondateurs-grid,
  .valeurs-grid,
  .partenaires-grid {
    grid-template-columns: 1fr;
    padding-inline: 18px;
  }

  .galerie-grid {
    grid-template-columns: 1fr;
  }

  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 420px) {
  .btn {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
}


body.page-intern .site-header {
    display: none;
}
body.page-intern .nav-header {
    display: block;
}
body.page-intern main {
    padding-top: 110px;
}

/* Disable transparent homepage header on internal pages */
body.page-intern .site-header {
    display: none !important;
}

#map {
    height: 100%;
}
.main-container {
    height: 600px;
}

/* ---------- CONTACT HERO ---------- */
.contact-hero {
  text-align: center;
  padding: 120px 20px 80px;
  background: #faf6ef;
}

.contact-hero h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  margin-bottom: 10px;
}

.contact-hero h1 span {
  color: #d1a03b;
}

.contact-hero p {
  font-size: 1.2rem;
  color: #555;
}

/* ---------- CONTACT WRAPPER ---------- */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 60px;
  padding: 80px 0;
}

.contact-left h2 {
  font-size: 1.8rem;
  font-family: "Playfair Display";
}

.contact-left .intro-text {
  margin: 10px 0 30px;
  color: #555;
}

.info-card {
  display: flex;
  gap: 15px;
  background: white;
  padding: 18px 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  margin-bottom: 15px;
  align-items: center;
}

.info-card .icon {
  font-size: 1.4rem;
}

/* ---------- FORMULAIRE ---------- */
.contact-right form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-right input,
.contact-right textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ddd;
  font-size: 1rem;
}

.send-btn {
  margin-top: 10px;
  width: 100%;
  padding: 12px;
}

/* ---------- FAQ ---------- */
.faq-section {
  padding: 100px 0;
  text-align: center;
}

.faq-section h2 {
  font-family: "Playfair Display";
  font-size: 2.5rem;
}

.faq-section h2 span {
  color: #d1a03b;
}

.faq-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.faq-card {
  padding: 25px;
  border-radius: 12px;
  background: white;
  box-shadow: 0 8px 25px rgba(0,0,0,0.07);
  text-align: left;
}

.faq-card h4 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

/* MOBILE */
@media(max-width: 900px){
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .faq-grid {
    grid-template-columns: 1fr;
  }
}

.detail-img {
    width: 100%;
    border-radius: 12px;
    margin: 12px 0 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.detail-logo-box {
    margin-top: 20px;
    text-align: center;
}

.detail-logo {
    max-width: 150px;
    height: auto;
    opacity: 0.9;
}

.tag {
    display: inline-block;
    background: #f3e7c9;
    padding: 4px 10px;
    margin: 3px;
    border-radius: 8px;
    font-size: 13px;
    color: #8d6e2f;
    font-weight: 500;
}

.hero-overlay {
  display: none;
}
