/* =============================================
   VARIABLES & BASE
   ============================================= */
:root {
  --cream:       #faf7f2;
  --warm-white:  #fff9f5;
  --beige:       #f2ebe0;
  --beige-mid:   #e8ddd0;
  --terracotta:  #b87b5c;
  --terra-dark:  #9a6449;
  --terra-light: #d4a78a;
  --terra-pale:  #f0ddd2;
  --brown:       #5c3d2e;
  --text-dark:   #3a2a1e;
  --text-mid:    #6b4f3a;
  --text-muted:  #9b7d6a;
  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Jost', sans-serif;
  --radius:      12px;
  --shadow:      0 4px 24px rgba(90, 55, 30, 0.08);
}

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

html { scroll-behavior: smooth; }


body {
  background: var(--cream);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);

  border-bottom: 1px solid var(--beige-mid);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: var(--shadow); }

#site-header-placeholder {
  overflow: visible;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* LOGO */
.logo { flex-shrink: 0; }

.logo-img {
  width: auto;        /* largeur désirée */
  height: 72px;        /* garde les proportions */
  display: block;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}
.logo-dot { color: var(--terracotta); }


/* NAV */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  margin: 0 auto;
}
.nav-link {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  padding: 0.4rem 0.75rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-link:hover, .nav-link.active {
  color: var(--terracotta);
  background: var(--terra-pale);
}

/* CTA BUTTON */
.btn-cta {
  flex-shrink: 0;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.65rem 1.3rem;
  border-radius: 4px;
  transition: background 0.25s, transform 0.15s;
  white-space: nowrap;
}
.btn-cta:hover { background: var(--terra-dark); transform: translateY(-1px); }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 85vh;
  background: linear-gradient(135deg, #f5ede2 0%, #eeddd0 100%);
  overflow: hidden;
  position: relative;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 6rem;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.hero-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--terracotta);
}

.hero-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.5;
}

.hero-heart {
  font-size: 1.5rem;
  color: var(--terracotta);
  margin-top: 1.5rem;
  opacity: 0.7;
}

.hero-image {
  position: relative;
  overflow: hidden;
}
.hero-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(245, 237, 226, 0.4) 0%, transparent 40%);
  z-index: 1;
}
.hero-image img {
  object-position: center top;
}

/* =============================================
   COACHING SECTION
   ============================================= */
.coaching-section {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.coaching-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 5rem;
  align-items: start;
}

.coaching-mission { position: relative; padding-top: 2rem; }
.floral-deco {
  font-size: 3.5rem;
  color: var(--terra-light);
  opacity: 0.4;
  position: absolute;
  top: -1rem;
  left: -1rem;
  line-height: 1;
}

.mission-text {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-mid);
}
.mission-text strong {
  display: block;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0.4rem 0 0.2rem;
}
.mission-text .highlight { color: var(--terracotta); }

.section-title-sm {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.section-intro { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 0.95rem; }
.oui { color: var(--terracotta); font-style: italic; }

.questions-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}
.questions-list li {
  padding-left: 1.8rem;
  position: relative;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.5;
}
.questions-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 18px;
  height: 18px;
  background: var(--terracotta);
  color: white;
  border-radius: 50%;
  font-size: 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--terracotta);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.5rem;
  border-radius: 4px;
  transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
}
.btn-primary:hover {
  background: var(--terra-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 123, 92, 0.35);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--terracotta);
  border: 1.5px solid var(--terracotta);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.8rem;
  border-radius: 4px;
  transition: background 0.25s, color 0.25s;
}
.btn-outline:hover {
  background: var(--terracotta);
  color: #fff;
}

/* =============================================
   PHILOSOPHY
   ============================================= */
.philosophy-section {
  background: var(--beige);
  padding: 5rem 2rem;
  text-align: center;
}
.philosophy-inner {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.philosophy-heart {
  font-size: 1.6rem;
  color: var(--terra-light);
  margin-bottom: 1.2rem;
}
.philosophy-title {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.5;
  margin-bottom: 1.2rem;
}
.philosophy-sub {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}
.philosophy-illustration {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.6;
}

/* =============================================
   ABOUT
   ============================================= */
.about-section {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.about-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow);
}
.section-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
  font-weight: 500;
}
.about-signature {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.about-bio {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2rem;
  font-style: italic;
}

/* =============================================
   SERVICES
   ============================================= */
.services-section {
  background: var(--cream);
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;  /* ← centre tous les enfants horizontalement */
}
.section-heading {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 3rem;
}
.services-grid {
  max-width: 1100px;
  width: 100%; 
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.service-card {
  background: var(--warm-white);
  border: 1px solid var(--beige-mid);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.service-icon {
  font-size: 1.8rem;
  color: var(--terracotta);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}
.service-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* =============================================
   COMMUNITY
   ============================================= */
.community-section {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.community-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.community-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.community-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
}
.community-desc {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 2rem;
}
.btn-facebook {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: transparent;
  border: 1.5px solid var(--beige-mid);
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.btn-facebook:hover {
  border-color: #1877f2;
  color: #1877f2;
  background: rgba(24, 119, 242, 0.05);
}
.community-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 5/4;
  position: relative;
  box-shadow: var(--shadow);
}
.calendar-badge {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(4px);
  color: var(--text-dark);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--text-dark);
  color: rgba(255, 249, 245, 0.75);
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { color: var(--warm-white) !important; }
.footer-logo-img {
  width: auto;        /* largeur désirée */
  height: 100px;        /* garde les proportions */
  display: block;
}
.footer-tagline {
  font-size: 0.82rem;
  margin-top: 0.5rem;
  opacity: 0.55;
  line-height: 1.6;
}
.footer-links h4, .footer-social h4 {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terra-light);
  margin-bottom: 1rem;
  font-weight: 500;
}
.footer-links a, .footer-social a {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,249,245,0.6);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}
.footer-links a:hover, .footer-social a:hover { color: var(--terra-light); }
.social-links { display: flex; gap: 1rem; }
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  color: rgba(255,249,245,0.6);
  transition: border-color 0.2s, color 0.2s;
}
.social-links a:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  opacity: 0.4;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-illustration { display: none; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 4rem 2rem 2rem; text-align: center; }
  .hero-image { height: 55vw; }
  .coaching-inner,
  .about-inner,
  .community-inner { grid-template-columns: 1fr; gap: 3rem; }
  .about-image { aspect-ratio: 4/3; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .main-nav, .btn-cta { display: none; }
  .burger { display: flex; }
  .main-nav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 200;
    background: var(--warm-white);
    padding: 2rem;
    gap: 0.5rem;
    overflow-y: auto;
  }

  .main-nav.open .nav-link {
    padding: 1rem 0.75rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--beige-mid);
  }
  .main-nav.open + .btn-cta { display: block; }
}

@media (max-width: 600px) {
  .hero-content { padding: 3rem 1.5rem 1.5rem; }
  .coaching-section, .about-section,
  .services-section, .community-section,
  .philosophy-section { padding: 3.5rem 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
  .header-inner { padding: 0 1.5rem; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-content > * {
  animation: fadeUp 0.8s ease both;
}
.hero-title     { animation-delay: 0.1s; }
.hero-subtitle  { animation-delay: 0.25s; }
.hero-heart     { animation-delay: 0.4s; }
/* =============================================
   PAGES INTÉRIEURES (page-hero, valeurs, CTA band, etc.)
   À ajouter à la fin de styles.css
   ============================================= */

/* Hero des pages internes */
.page-hero {
  margin-top: 72px;
  background: linear-gradient(135deg, #f5ede2 0%, #eeddd0 100%);
  padding: 5rem 2rem;
  text-align: center;
}
.page-hero-tag {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 1rem;
  font-weight: 500;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text-dark);
}

/* Section à propos complète */
.full-about-section {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.full-about-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}
.full-about-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow);
  position: sticky;
  top: 90px;
}
.full-about-content { padding-top: 1rem; }
.full-about-subtitle {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--terracotta);
  margin-bottom: 1.5rem;
}
.full-about-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* Valeurs */
.values-section {
  background: var(--beige);
  padding: 5rem 2rem;
}
.values-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  text-align: center;
}
.value-item { padding: 1.5rem 1rem; }
.value-icon {
  font-size: 2rem;
  color: var(--terracotta);
  margin-bottom: 0.8rem;
}
.value-item h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.value-item p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Page À Propos */
.mission-section,
.vision-section {
  background: var(--warm-white);
  padding: 5rem 2rem;
}
.mission-inner,
.vision-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3.5rem;
  align-items: center;
}
.section-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.section-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.mission-content p,
.vision-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}

/* CTA Band */
.cta-band {
  background: var(--terracotta);
  padding: 5rem 2rem;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 2rem;
}
.cta-band .btn-primary {
  background: #fff;
  color: var(--terracotta);
}
.cta-band .btn-primary:hover {
  background: var(--cream);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .full-about-inner { grid-template-columns: 1fr; gap: 3rem; }
  .full-about-image { position: static; aspect-ratio: 4/3; }
  .mission-inner, .vision-inner { grid-template-columns: 1fr; gap: 2rem; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .values-grid { grid-template-columns: 1fr; }
}


/* =============================================
   PAGE COMMUNAUTÉ — communaute.html
   ============================================= */

/* Hero */
.comm-hero {
  margin-top: 72px;
  background: var(--terra-pale);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.comm-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.comm-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 1.2rem;
}
.comm-title em {
  font-style: italic;
  color: var(--terracotta);
}
.comm-intro {
  font-size: 1.1rem;
  color: var(--text-mid);
  font-family: var(--font-serif);
  font-style: italic;
}

/* Récit */
.comm-story {
  background: var(--warm-white);
  padding: 4.5rem 2rem;
}
.comm-story-inner {
  max-width: 720px;
  margin: 0 auto;
}
.comm-p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.95;
  margin-bottom: 1.1rem;
}
.comm-quote {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  color: var(--text-dark);
  line-height: 1.75;
  margin: 2rem 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--terracotta);
  border-radius: 0;
}
.comm-divider {
  text-align: center;
  color: var(--terra-light);
  font-size: 1.3rem;
  letter-spacing: 0.4em;
  margin: 3rem 0 2rem;
}
.comm-section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 400;
  color: var(--text-dark);
  margin-bottom: 1.2rem;
  text-align: center;
}

/* Pilules */
.comm-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 2rem 0;
  justify-content: center;
}
.comm-pill {
  background: var(--terra-pale);
  color: var(--terra-dark);
  font-size: 0.82rem;
  font-weight: 400;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
}

/* Photos */
.comm-photos {
  background: var(--cream);
  padding: 3rem 2rem;
}
.comm-photos-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1rem;
  align-items: end;
}
.comm-photo {
  border-radius: 14px;
  overflow: hidden;
}
.comm-photo img {
  width: 100%;
  object-fit: cover;
  display: block;
}
.comm-photo--left img  { height: 260px; }
.comm-photo--center img { height: 320px; }
.comm-photo--right img { height: 260px; }

/* CTA rejoindre */
.comm-cta {
  background: var(--terracotta);
  padding: 5rem 2rem;
  text-align: center;
}
.comm-cta-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  font-style: italic;
  color: #fff;
  margin-bottom: 0.8rem;
}
.comm-cta-sub {
  color: rgba(255,255,255,0.75);
  font-size: 0.92rem;
  margin-bottom: 2rem;
}
.btn-facebook--large {
  font-size: 0.82rem !important;
  padding: 1rem 2.2rem !important;
  border-color: #fff !important;
  color: #fff !important;
}
.btn-facebook--large:hover {
  background: rgba(255,255,255,0.15) !important;
  border-color: #fff !important;
  color: #fff !important;
}

/* Responsive communauté */
@media (max-width: 700px) {
  .comm-photos-grid {
    grid-template-columns: 1fr;
  }
  .comm-photo--left img,
  .comm-photo--center img,
  .comm-photo--right img {
    height: 260px;
  }
  .comm-quote { font-size: 1rem; }
}


/* =============================================
   PAGE ATELIERS — ateliers.html
   ============================================= */

/* Hero */
.atel-hero {
  margin-top: 0;
  padding-top: calc(72px + 5rem);
  background: linear-gradient(135deg, #f5ede2 0%, #eeddd0 100%);
  padding: 5rem 2rem 4rem;
  text-align: center;
}
.atel-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 500;
  margin-bottom: 0.8rem;
}
.atel-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 300;
  color: var(--text-dark);
  line-height: 1.15;
  margin-bottom: 1rem;
}
.atel-title em {
  font-style: italic;
  color: var(--terracotta);
}
.atel-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.75;
}

/* Galerie mosaïque */
.atel-gallery {
  background: var(--cream);
  padding: 3rem 2rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

/* Rangée générique */
.atel-row {
  display: grid;
  gap: 1rem;
}

/* Rangée : 1 grande à gauche + colonne de 2 à droite */
.atel-row--1g2p {
  grid-template-columns: 1.5fr 1fr;
}

/* Rangée : 3 photos égales */
.atel-row--3eq {
  grid-template-columns: repeat(3, 1fr);
}

/* Rangée : colonne de 2 à gauche + 1 grande à droite */
.atel-row--2p1g {
  grid-template-columns: 1fr 1.5fr;
}

/* Colonne de 2 photos empilées */
.atel-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Figure / item */
.atel-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Wrapper image avec ratio et hover */
.atel-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--beige);
}
.atel-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.atel-img-wrap:hover img {
  transform: scale(1.04);
}

/* Hauteurs des images */
.atel-item--large .atel-img-wrap { height: 420px; }
.atel-row--1g2p .atel-col .atel-img-wrap,
.atel-row--2p1g .atel-col .atel-img-wrap { height: 200px; }
.atel-row--3eq .atel-img-wrap { height: 280px; }

/* Légende sous la photo */
.atel-caption {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  text-align: center;
  padding: 0.6rem 0.5rem 0;
  font-weight: 400;
}

/* Responsive ateliers */
@media (max-width: 900px) {
  .atel-row--1g2p,
  .atel-row--2p1g {
    grid-template-columns: 1fr;
  }
  .atel-col {
    flex-direction: row;
  }
  .atel-col .atel-img-wrap { height: 200px !important; }
  .atel-item--large .atel-img-wrap { height: 320px; }
}

@media (max-width: 600px) {
  .atel-gallery { padding: 2rem 1rem 3rem; }
  .atel-row--3eq { grid-template-columns: 1fr; }
  .atel-col { flex-direction: column; }
  .atel-item--large .atel-img-wrap { height: 260px; }
  .atel-row--3eq .atel-img-wrap { height: 220px; }
}

/* =============================================
   LIGHTBOX
   ============================================= */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(35, 20, 12, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  display: block;
  transform: scale(0.96);
  transition: transform 0.3s ease;
}
.lightbox-overlay.is-open .lightbox-img {
  transform: scale(1);
}
.lightbox-caption {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: rgba(255, 249, 245, 0.65);
  text-align: center;
  font-weight: 300;
}
.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: 1.5px solid rgba(255,249,245,0.3);
  color: rgba(255,249,245,0.8);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
  line-height: 1;
}
.lightbox-close:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
  background: rgba(255,249,245,0.05);
}
.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1.5px solid rgba(255,249,245,0.25);
  color: rgba(255,249,245,0.7);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover {
  border-color: var(--terra-light);
  color: var(--terra-light);
  background: rgba(255,249,245,0.05);
}
.atel-img-wrap { cursor: zoom-in; }

@media (max-width: 600px) {
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
  .lightbox-close { top: 1rem; right: 1rem; }
}