/* ============================================
   UN TEMPS D'ÉCOUTE — Feuille de styles
   ============================================ */

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

/* ---- Variables ---- */
:root {
  --beige:       #f5f0e8;
  --beige-light: #faf7f2;
  --sage:        #8fad9a;
  --sage-dark:   #6b9278;
  --terracotta:  #c8845a;
  --brown:       #7a5c4a;
  --text:        #3d2f27;
  --text-soft:   #7a6b62;
  --white:       #ffffff;
  --shadow:      0 4px 32px rgba(122, 92, 74, 0.10);
  --radius:      16px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background-color: var(--beige-light);
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
}

h1, h2, h3, blockquote {
  font-family: 'Cormorant Garamond', Georgia, serif;
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; display: block; }

/* ---- Utilitaires ---- */
.container {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 28px;
}

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin-bottom: 12px;
}

/* ---- Navigation ---- */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(143, 173, 154, 0.18);
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--brown);
  letter-spacing: 0.03em;
}

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

.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
  letter-spacing: 0.04em;
  transition: color 0.25s;
}

.nav-links a:hover { color: var(--sage-dark); }

.nav-cta {
  background: var(--sage);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 50px;
  transition: background 0.25s !important;
}

.nav-cta:hover { background: var(--sage-dark) !important; }

/* ---- Hero ---- */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 90px;
  background: linear-gradient(150deg, var(--beige-light) 55%, #e8ede9 100%);
  position: relative;
  overflow: hidden;
}

#hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(143,173,154,0.18) 0%, transparent 70%);
  border-radius: 50%;
}

#hero::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(200,132,90,0.10) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 18px;
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 24px;
}

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

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-soft);
  max-width: 440px;
  margin-bottom: 40px;
  font-weight: 400;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--terracotta);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(200,132,90,0.28);
}

.btn-primary:hover {
  background: #b5703f;
  transform: translateY(-2px);
}

.btn-primary svg { width: 18px; height: 18px; }

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: 28px;
  padding: 48px 40px;
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 360px;
  width: 100%;
}

.hero-card-icon {
  font-size: 3.2rem;
  margin-bottom: 20px;
}

.hero-card h3 {
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
}

.hero-card p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.hero-card-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.badge {
  background: var(--beige);
  color: var(--brown);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ---- Sections communes ---- */
section { padding: 96px 0; }

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 300;
  color: var(--brown);
  line-height: 1.2;
}

.section-header p {
  font-size: 1.02rem;
  color: var(--text-soft);
  max-width: 520px;
  margin: 16px auto 0;
}

/* ---- À propos ---- */
#apropos {
  background: var(--white);
}

.apropos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.apropos-visual {
  position: relative;
}

.apropos-photo-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #e8ede9 0%, var(--beige) 100%);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
}

.apropos-badge-float {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.apropos-badge-float .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.apropos-badge-float .label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}

.apropos-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 20px;
  line-height: 1.2;
}

.apropos-content p {
  color: var(--text-soft);
  margin-bottom: 16px;
  font-size: 1rem;
}

.competences {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 28px;
}

.competence-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.competence-item::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--sage);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---- Tarif badge ---- */
.tarif-badge {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--white);
  border: 2px solid var(--sage);
  border-radius: 50px;
  padding: 14px 32px;
  margin-top: 28px;
  box-shadow: var(--shadow);
}

.tarif-amount {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--terracotta);
  line-height: 1;
}

.tarif-label {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-soft);
}

/* ---- Services ---- */
#services {
  background: var(--beige-light);
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(122,92,74,0.14);
}

.service-icon {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 12px;
}

.service-card p {
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.7;
}

/* ---- Citation ---- */
#citation {
  background: linear-gradient(135deg, var(--sage) 0%, var(--sage-dark) 100%);
  padding: 80px 0;
}

.citation-inner {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

blockquote {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  margin-bottom: 20px;
}

.citation-author {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ---- Rendez-vous ---- */
#rdv {
  background: var(--white);
}

.rdv-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.rdv-content h2 {
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--brown);
  margin-bottom: 18px;
  line-height: 1.2;
}

.rdv-content p {
  color: var(--text-soft);
  margin-bottom: 32px;
}

.rdv-infos {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 36px;
}

.rdv-info-item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.95rem;
  color: var(--text);
}

.rdv-info-item .icon {
  width: 40px; height: 40px;
  background: var(--beige);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.rdv-calendly-widget {
  background: var(--beige-light);
  border-radius: 20px;
  padding: 48px 36px;
  text-align: center;
  border: 2px dashed rgba(143,173,154,0.4);
}

.rdv-calendly-widget h3 {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--brown);
  margin-bottom: 10px;
}

.rdv-calendly-widget p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin-bottom: 28px;
}

.btn-calendly {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--sage);
  color: var(--white);
  padding: 15px 34px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.25s, transform 0.2s;
  box-shadow: 0 6px 24px rgba(143,173,154,0.3);
}

.btn-calendly:hover {
  background: var(--sage-dark);
  transform: translateY(-2px);
}

.rdv-widget-note {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-top: 18px;
  margin-bottom: 0;
  line-height: 1.5;
}

.rdv-info-important {
  background: #fff8f4;
  border: 1.5px solid rgba(200,132,90,0.35);
  border-radius: 10px;
  padding: 12px 16px;
}

.rdv-info-important .icon {
  background: transparent !important;
}

/* ---- Footer ---- */
footer {
  background: var(--brown);
  color: rgba(255,255,255,0.75);
  padding: 52px 0 32px;
  text-align: center;
}

footer .footer-logo {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 12px;
}

footer p {
  font-size: 0.88rem;
  margin-bottom: 6px;
  line-height: 1.6;
}

footer a {
  color: rgba(255,255,255,0.85);
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.2s;
}

footer a:hover { color: var(--white); }

.footer-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.12);
  margin: 28px 0 20px;
}

.footer-legal {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}

/* ---- Responsive ---- */
@media (max-width: 860px) {
  .nav-links { display: none; }

  .hero-grid,
  .apropos-grid,
  .rdv-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual { display: none; }

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

  .apropos-badge-float { right: 12px; }

  section { padding: 64px 0; }
}

@media (max-width: 540px) {
  .hero-title { font-size: 2.2rem; }
  .container { padding: 0 18px; }
}
