@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

:root {
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --terracotta: #C4714A;
  --terracotta-light: #E8A98A;
  --slate: #3D4F5C;
  --slate-light: #6B8190;
  --slate-dark: #263340;
  --gold: #B8975A;
  --gold-light: #D4B87A;
  --text: #2A2A2A;
  --text-light: #6A6A6A;
  --border: rgba(61,79,92,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--warm-white);
  color: var(--text);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 5vw;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(253,250,246,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav-logo {
  font-family: 'DM Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--slate-dark);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo-mark {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--terracotta);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 18px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

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

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

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

/* Masquer temporairement un lien de navigation (ex. Équipe non constituée) */
.nav-item-hidden { display: none !important; }

.nav-cta {
  background: var(--slate-dark) !important;
  color: white !important;
  padding: 9px 20px;
  border-radius: 2px;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--terracotta) !important; color: white !important; }

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

.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--slate-dark);
  border-radius: 2px;
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: rgba(253,250,246,0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 20px 6vw 28px;
  z-index: 99;
  flex-direction: column;
  gap: 8px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--slate);
  text-decoration: none;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--terracotta); }

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: white;
  padding: 15px 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  border-radius: 2px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-primary:hover {
  background: var(--slate-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(38,51,64,0.2);
}

.btn-primary svg { transition: transform 0.25s; }
.btn-primary:hover svg { transform: translateX(3px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.btn-secondary:hover { color: var(--terracotta); }

/* ─── SECTION UTILS ─── */
section { padding: 100px 8vw; }

.section-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.section-tag::after {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--terracotta);
  opacity: 0.5;
}

.section-tag.centered { justify-content: center; }
.section-tag.centered::after { display: none; }
.section-tag.centered::before {
  content: '';
  height: 1px;
  width: 40px;
  background: var(--terracotta);
  opacity: 0.5;
}

.section-tag.light { color: var(--terracotta-light); }
.section-tag.light::after { background: var(--terracotta-light); }

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--slate-dark);
  margin-bottom: 20px;
}

.section-title em { font-style: italic; color: var(--terracotta); }
.section-title.on-dark { color: white; }

.section-intro {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.75;
  max-width: 540px;
}

/* ─── PAGE HEADER ─── */
.page-header {
  padding: 140px 8vw 100px;
  background: var(--slate-dark);
  color: white;
  position: relative;
  overflow: hidden;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--warm-white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.page-header-cream::after { background: var(--cream); }

/* ─── OPENING BANNER ─── */
.opening-banner {
  background: var(--slate-dark);
  color: white;
  padding: 20px 8vw;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.opening-banner .ob-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-align: center;
}

.opening-banner .ob-text strong { color: var(--terracotta-light); font-weight: 500; }

.opening-banner .ob-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--terracotta);
  color: white;
  padding: 8px 18px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.opening-banner .ob-cta:hover { background: var(--terracotta-light); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  padding-top: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}

.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 6vw 80px 8vw;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(196,113,74,0.1);
  border: 1px solid rgba(196,113,74,0.3);
  color: var(--terracotta);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 2px;
  margin-bottom: 36px;
  width: fit-content;
  animation: fadeSlideUp 0.8s ease 0.1s both;
}

.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terracotta);
  animation: pulse 2s infinite;
}

.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--slate-dark);
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  animation: fadeSlideUp 0.8s ease 0.2s both;
}

.hero-title em { font-style: italic; color: var(--terracotta); }

.hero-subtitle {
  font-size: 1rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 48px;
  animation: fadeSlideUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: fadeSlideUp 0.8s ease 0.4s both;
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 64px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
  animation: fadeSlideUp 0.8s ease 0.5s both;
  flex-wrap: wrap;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--slate-dark);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-right {
  position: relative;
  background: var(--slate-dark);
  overflow: hidden;
  aspect-ratio: 3 / 2;
  max-height: 85vh;
  align-self: center;
  width: 100%;
  border-radius: 16px;
}

.hero-image-overlay {
  display: none;
}

.hero-image {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  animation: slowZoom 12s ease infinite alternate;
}

.hero-quote {
  position: absolute;
  bottom: 48px; left: 48px; right: 48px;
  z-index: 2;
  color: white;
  padding: 12px 20px;
  background: rgba(22, 22, 24, 0.72);
  border-radius: 6px;
  animation: fadeSlideUp 1s ease 0.6s both;
}

.hero-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 4px;
}

.hero-quote cite {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.85;
  font-style: normal;
}

/* ─── PHILOSOPHY ─── */
.philosophy {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.philosophy-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.pillar {
  padding: 28px;
  background: white;
  border-radius: 4px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--terracotta);
  transition: height 0.3s ease;
}

.pillar:hover::before { height: 100%; }
.pillar:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(38,51,64,0.08); }

.pillar-icon {
  width: 40px; height: 40px;
  background: rgba(196,113,74,0.1);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
  font-size: 1.1rem;
}

.pillar h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 8px;
}

.pillar p {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.65;
}

.philosophy-img-container {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--slate);
  position: relative;
}

.philosophy-img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 0.6s ease;
}

.philosophy-img-container:hover .philosophy-img { transform: scale(1.04); }

/* ─── CYCLES ─── */
.cycles-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}

.cycles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.cycle-card {
  background: white;
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: all 0.35s ease;
}

.cycle-card:hover { background: var(--slate-dark); }
.cycle-card:hover .cycle-tag,
.cycle-card:hover .cycle-name,
.cycle-card:hover .cycle-ages,
.cycle-card:hover .cycle-desc,
.cycle-card:hover .cycle-features li { color: white !important; }
.cycle-card:hover .cycle-badge { background: rgba(255,255,255,0.15); color: white; border-color: rgba(255,255,255,0.2); }
.cycle-card:hover .cycle-line { background: rgba(255,255,255,0.15); }
.cycle-card:hover .cycle-features li::before { color: var(--terracotta-light); }

.cycle-tag {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 12px;
}

.cycle-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--slate-dark);
  line-height: 1.1;
  margin-bottom: 6px;
}

.cycle-ages {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.cycle-line {
  height: 1px;
  background: var(--border);
  margin-bottom: 24px;
}

.cycle-desc {
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 24px;
}

.cycle-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cycle-features li {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.cycle-features li::before { content: '→'; color: var(--terracotta); font-size: 0.75rem; }

.cycle-badge {
  position: absolute;
  top: 28px; right: 28px;
  background: rgba(196,113,74,0.08);
  border: 1px solid rgba(196,113,74,0.2);
  color: var(--terracotta);
  font-size: 1.4rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ─── TARIFS ─── */
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.tarifs-grid--two {
  grid-template-columns: repeat(2, 1fr);
  max-width: 640px;
  margin: 0 auto;
}

.tarif-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  transition: all 0.3s ease;
}

.tarif-card:hover {
  border-color: var(--terracotta-light);
  box-shadow: 0 12px 32px rgba(61,79,92,0.08);
}

.tarif-tag {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 16px;
}

.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--slate-dark);
  line-height: 1.1;
}

.tarif-period {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-light);
}

.tarif-detail {
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 8px 0 16px;
}

.tarif-desc {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.6;
}

.tarifs-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.tarifs-list li {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
}

.tarifs-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 0.85rem;
}

/* ─── APPROACH ─── */
.approach {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.approach::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -20px;
  width: 40vw;
  height: 40vw;
  max-width: 480px;
  max-height: 480px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cg stroke='%233d4f5c' stroke-width='0.5' fill='none' opacity='0.03'%3E%3Ccircle cx='12' cy='12' r='10'/%3E%3Cline x1='12' y1='12' x2='12' y2='5'/%3E%3Cline x1='12' y1='12' x2='16.5' y2='12'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: contain;
  pointer-events: none;
}

.approach-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 72px;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.approach-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.approach-item {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: 4px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.approach-item.left { text-align: left; }

.approach-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(38,51,64,0.08);
  border-bottom-color: var(--terracotta);
}

.approach-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: rgba(196,113,74,0.2);
  line-height: 1;
  margin-bottom: 16px;
}

.approach-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 12px;
}

.approach-text {
  font-size: 0.83rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

/* ─── TEAM ─── */
.team-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 60px;
}

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

.team-card {
  border-radius: 4px;
  background: var(--cream);
  overflow: hidden;
}

.team-img {
  aspect-ratio: 3/4;
  position: relative;
  overflow: hidden;
}

.team-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: rgba(255,255,255,0.15);
}

.team-info { padding: 24px; }

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 4px;
}

.team-role {
  font-size: 0.77rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--terracotta);
}

.team-bio {
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.6;
  margin-top: 10px;
}

/* ─── LOCATION ─── */
.location-section {
  background: var(--slate-dark);
  color: white;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.location-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.location-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.05);
  border-radius: 2px;
  border-left: 2px solid var(--terracotta);
}

.location-item-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  margin-bottom: 3px;
}

.location-item-value {
  font-size: 0.9rem;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  line-height: 1.5;
}

.map-placeholder {
  aspect-ratio: 1;
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.1);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.3);
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-pin { font-size: 2.5rem; animation: bounce 2s infinite; }

/* Carte Google Maps intégrée (contact) */
.map-embed-wrap {
  position: relative;
  aspect-ratio: 1;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
}
.map-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  position: absolute;
  inset: 0;
}
.map-embed-link {
  position: absolute;
  bottom: 12px;
  right: 12px;
  padding: 8px 14px;
  background: var(--slate-dark);
  color: white;
  font-size: 0.85rem;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: background 0.2s, transform 0.2s;
}
.map-embed-link:hover {
  background: #2d3d52;
  transform: translateY(-1px);
}

/* ─── FORM ─── */
.form-section { background: var(--cream); }

.form-box {
  background: white;
  padding: 48px;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(38,51,64,0.08);
  max-width: 700px;
  margin: 0 auto;
}

.form-box.no-shadow { box-shadow: none; border: 1px solid var(--border); }

.form-section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--slate-dark);
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}

.form-group.no-mb { margin-bottom: 0; }

label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate);
}

input, select, textarea {
  padding: 12px 16px;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  font-weight: 300;
  color: var(--text);
  outline: none;
  transition: all 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--terracotta);
  background: white;
  box-shadow: 0 0 0 3px rgba(196,113,74,0.1);
}

textarea { resize: vertical; min-height: 90px; }

.form-submit {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.form-note {
  font-size: 0.77rem;
  font-weight: 300;
  color: var(--text-light);
  max-width: 280px;
}

.info-banner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(196,113,74,0.08);
  border: 1px solid rgba(196,113,74,0.2);
  border-radius: 2px;
  padding: 14px 18px;
  margin-bottom: 40px;
  font-size: 0.82rem;
  font-weight: 300;
  color: var(--terracotta);
}

/* ─── SCHEDULE ─── */
.schedule { display: flex; flex-direction: column; gap: 2px; max-width: 680px; margin: 48px auto 0; }

.schedule-item {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  background: white;
}

.schedule-time {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
}

.schedule-item:nth-child(odd) .schedule-time { color: var(--terracotta); border-left: 3px solid var(--terracotta); padding-left: 12px; }
.schedule-item:nth-child(even) .schedule-time { color: var(--gold); border-left: 3px solid var(--gold); padding-left: 12px; }

.schedule-label { font-size: 0.9rem; font-weight: 500; color: var(--slate-dark); margin-bottom: 3px; }
.schedule-desc { font-size: 0.82rem; font-weight: 300; color: var(--text-light); line-height: 1.5; }

/* Créneau partiel (ex. 2×/semaine) : décalé pour montrer qu'il ne concerne pas tous les jours */
.schedule-item-partial {
  margin-left: 2rem;
  background: var(--cream);
  border-left: 2px dashed var(--gold);
}
.schedule-item-partial .schedule-time { opacity: 0.9; }
.schedule-badge {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--terracotta);
  background: rgba(180, 100, 80, 0.12);
  padding: 2px 8px;
  border-radius: 4px;
  margin-left: 6px;
  white-space: nowrap;
}

/* ─── CTA SECTION ─── */
.cta-section {
  background: var(--cream);
  text-align: center;
  padding: 120px 8vw;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,113,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-content { max-width: 640px; margin: 0 auto; position: relative; z-index: 1; }

/* ─── FOOTER ─── */
footer {
  background: var(--slate-dark);
  color: white;
  padding: 72px 8vw 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-desc {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin: 16px 0 24px;
}

.footer-social { display: flex; gap: 10px; }

.social-btn {
  width: 36px; height: 36px;
  border-radius: 2px;
  background: rgba(255,255,255,0.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.8rem;
  transition: all 0.2s;
}

.social-btn:hover { background: var(--terracotta); color: white; }

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  margin-bottom: 20px;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.83rem;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright { font-size: 0.77rem; font-weight: 300; color: rgba(255,255,255,0.3); }

.footer-legal { display: flex; gap: 24px; }

.footer-legal a {
  font-size: 0.77rem;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover { color: white; }

/* ─── ANIMATIONS ─── */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slowZoom {
  from { transform: scale(1); }
  to { transform: scale(1.04); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; }
  .hero-right { height: 60vw; min-height: 300px; }
  .philosophy { grid-template-columns: 1fr; }
  .philosophy-img-container { display: none; }
  .cycles-header { grid-template-columns: 1fr; gap: 20px; }
  .cycles-grid { grid-template-columns: 1fr; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .tarifs-grid--two { max-width: 100%; }
  .team-header { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .location-section { grid-template-columns: 1fr; }
  .map-placeholder,
  .map-embed-wrap { aspect-ratio: 2/1; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .form-box { padding: 32px 24px; }
}

@media (max-width: 600px) {
  section { padding: 70px 6vw; }
  nav { padding: 0 6vw; }
  .hero-left { padding: 60px 6vw; }
  .hero-stats { gap: 20px; }
  .philosophy-pillars { grid-template-columns: 1fr; }
  .approach-grid { grid-template-columns: 1fr; }
  .approach-grid.two-col { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 80px 6vw; }
  .schedule-item { grid-template-columns: 90px 1fr; }
}
