/* L'Envolée — styles principaux */

:root {
  --green: #5f7a52;
  --green-dark: #4a5f40;
  --beige: #f0ece4;
  --text: #080808;
  --muted: #555;
  --border: #d8d2c8;
  --white: #ffffff;

  --font-title: "Futura LT W01 Book", "futura-lt-w01-book", "Century Gothic", "Trebuchet MS", sans-serif;
  --font-body: "Avenir LT W01 35 Light", "avenir-lt-w01_35-light1475496", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-script: "Dancing Script", "dancing script", cursive;

  --max: 1200px;
}

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

html, body {
  background: #fff;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ── Fonts locales ─────────────────────────────── */
@font-face {
  font-family: "futura-lt-w01-book";
  src: url("../fonts/futura-lt-w01-book.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "avenir-lt-w01_35-light1475496";
  src: url("../fonts/avenir-lt-w05_35-light.woff2") format("woff2");
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: "dancing script";
  src: url("../fonts/If2RXTr6YS-zF4S-kcSWSVi_szLviuEHiC4Wl-8.woff2") format("woff2");
  font-weight: 400 700; font-style: normal; font-display: swap;
}

/* ── Header ────────────────────────────────────── */
.site-header {
  text-align: center;
  padding: 40px 24px 0;
  background: #fff;
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.brand img {
  width: 88px;
  height: 88px;
  object-fit: contain;
}
.brand__tagline {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--text);
}

.header-divider {
  margin: 16px 0 0;
  border: none;
  border-top: 1px solid var(--border);
}

nav {
  padding: 16px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}
nav a {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--text);
  transition: color .2s;
}
nav a:hover { color: var(--green); }
nav a.nav-espace-pro {
  border: 1px solid var(--green);
  border-radius: 999px;
  padding: 5px 16px;
  color: var(--green);
}
nav a.nav-espace-pro:hover { background: var(--green); color: #fff; }

/* Dropdown équipe */
.nav-group { position: relative; }
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  border: 1px solid var(--border);
  min-width: 220px;
  padding: 8px 0;
  z-index: 100;
  display: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.nav-group:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: block;
  padding: 8px 18px;
  font-size: 13px;
  white-space: nowrap;
}
.nav-dropdown a:hover { background: var(--beige); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  padding: 8px;
}

/* ── Page accueil ───────────────────────────────── */
.home-intro {
  text-align: center;
  padding: 70px 24px 50px;
  max-width: 860px;
  margin: 0 auto;
}
.home-intro h1 {
  font-family: var(--font-title);
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  color: var(--text);
}
.home-intro .script {
  font-family: var(--font-script);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--text);
  margin-bottom: 22px;
  display: block;
}
.home-intro p {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.home-banner {
  width: 100%;
  max-height: 680px;
  overflow: hidden;
}
.home-banner img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  object-position: center;
}

/* ── Section générique ──────────────────────────── */
.section {
  padding: 70px 24px;
}
.section--beige { background: var(--beige); }

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-title);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  text-align: center;
  margin-bottom: 48px;
  color: var(--text);
}
.section-script {
  font-family: var(--font-script);
  font-size: 26px;
  text-align: center;
  margin-bottom: 14px;
  color: var(--text);
}

/* ── Cards équipe ───────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.team-card {
  text-align: center;
  display: flex;
  flex-direction: column;
}
.team-card__photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 18px;
}
.team-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.team-card:hover .team-card__photo img { transform: scale(1.04); }
.team-card h2 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 6px;
}
.team-card p {
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 14px;
}
.team-card a.link {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-decoration: underline;
  color: var(--text);
}

/* ── Page header slim ───────────────────────────── */
.page-intro {
  text-align: center;
  padding: 60px 24px 40px;
}
.page-intro h1 {
  font-family: var(--font-title);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  margin-bottom: 10px;
}
.page-intro .subtitle {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: var(--muted);
}

/* ── Profil praticienne ─────────────────────────── */
.profile-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  max-width: var(--max);
  margin: 0 auto;
  padding: 60px 24px;
}
.profile-photo img {
  width: 100%;
  display: block;
}
.profile-body h1 {
  font-family: var(--font-title);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  margin-bottom: 4px;
}
.profile-role {
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 28px;
}
.profile-body p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: var(--text);
}
.profile-body ul {
  margin: 0 0 20px 20px;
}
.profile-body ul li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}
.profile-body h3 {
  font-family: var(--font-title);
  font-size: 18px;
  font-weight: 400;
  margin: 24px 0 8px;
}
.tarif-block {
  border-top: 1px solid var(--border);
  margin-top: 24px;
  padding-top: 20px;
  font-size: 15px;
}
.tarif-block p { margin-bottom: 6px; }

/* ── Testimonial ────────────────────────────────── */
.testimonials {
  max-width: 800px;
  margin: 0 auto;
}
.testimonial-block {
  margin-bottom: 40px;
}
.testimonial-block .quote {
  font-family: var(--font-script);
  font-size: 22px;
  line-height: 1.6;
  color: var(--text);
  margin-bottom: 12px;
  font-style: normal;
}
.testimonial-block p {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  margin-bottom: 8px;
}
.testimonial-block .author {
  font-family: var(--font-title);
  font-size: 15px;
  color: var(--muted);
}

/* ── Événements ─────────────────────────────────── */
.events-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.event-card {
  display: flex;
  flex-direction: column;
}
.event-card__img {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--beige);
  margin-bottom: 16px;
}
.event-card__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.event-card h2 {
  font-family: var(--font-title);
  font-size: 20px;
  font-weight: 400;
  margin-bottom: 8px;
}
.event-card .meta {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}
.event-card p { font-size: 14px; line-height: 1.7; color: var(--muted); }

/* ── Contact form ───────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-title);
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
}
.contact-info p { font-size: 15px; margin-bottom: 8px; }
.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.social-icons img { width: 20px; height: 20px; }

.contact-form label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  padding: 10px 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  margin-bottom: 16px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}
.contact-form textarea { min-height: 120px; resize: vertical; }
.btn {
  display: inline-block;
  padding: 12px 32px;
  font-family: var(--font-body);
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: background .2s, color .2s;
}
.btn:hover { background: var(--text); color: #fff; }

/* ── Footer ─────────────────────────────────────── */
.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.footer-left {
  background: var(--beige);
  padding: 60px 48px;
}
.footer-left h3 {
  font-family: var(--font-title);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 20px;
}
.footer-left p {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-left a { color: var(--text); }
.footer-left a:hover { text-decoration: underline; }

.footer-right {
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
}
.footer-brand {
  text-align: center;
  color: #fff;
}
.footer-brand img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 20px;
}
.footer-brand .name {
  font-family: var(--font-title);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--text);
  display: block;
}
.footer-brand .script {
  font-family: var(--font-script);
  font-size: 22px;
  color: #e8f0e0;
}

.footer-bar {
  grid-column: 1 / -1;
  text-align: center;
  font-size: 13px;
  color: var(--muted);
  padding: 20px;
  border-top: 1px solid var(--border);
  background: #fff;
}

/* ── Responsive ─────────────────────────────────── */
@media (max-width: 860px) {
  .profile-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 20px;
  }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bar { grid-column: 1; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .nav-toggle { display: block; }
  nav {
    display: none;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid var(--border);
  }
  nav.open { display: flex; }
  nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    width: 100%;
    text-align: center;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: 0;
    background: var(--beige);
  }
  .team-grid { grid-template-columns: 1fr; }
  .home-intro h1 { font-size: 36px; }
}
