/* ═══════════════════════════════════════════════════════════
   SUPERHUMAN WELLNESS — main.css
   ═══════════════════════════════════════════════════════════ */

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

/* ── RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; }

/* ── VARIABLES ───────────────────────────────────────────── */
:root {
  --noir:  #1C1A17;
  --or:    #B8965A;
  --vert:  #143D28;
  --creme: #FAF8F5;
  --beige: #EAE4DC;
  --gris:  #7A756F;
  --serif: 'EB Garamond', Georgia, serif;
  --sans:  'Inter', system-ui, sans-serif;
}

/* ── BASE ────────────────────────────────────────────────── */
body {
  font-family: var(--sans);
  background: var(--creme);
  color: var(--noir);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── UTILITY ─────────────────────────────────────────────── */
.eyebrow {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.eyebrow--or   { color: var(--or); }
.eyebrow--vert { color: var(--vert); }
.eyebrow--light { color: rgba(255,255,255,.5); }

.tag {
  display: inline-block;
  border: 1px solid var(--beige);
  color: var(--gris);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 8px;
  border-radius: 2px;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 14px 28px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition: opacity .2s, transform .15s;
  white-space: nowrap;
}
.btn:hover { opacity: .88; transform: translateY(-1px); }

.btn--dark   { background: var(--noir); color: #fff; }
.btn--or     { background: var(--or);   color: #fff; }
.btn--vert   { background: var(--vert); color: #fff; }
.btn--white  { background: #fff;        color: var(--noir); }
.btn--outline {
  background: transparent;
  color: var(--noir);
  border: 1px solid var(--beige);
}
.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.35);
  padding: 14px 28px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background .2s;
}
.btn--outline-white:hover { background: rgba(255,255,255,.1); }
.btn--ghost-vert {
  background: transparent;
  color: var(--vert);
  border: none;
  padding-left: 0;
  padding-right: 0;
  position: relative;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn--ghost-vert::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: var(--vert);
}

/* ── NAVIGATION ──────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 52px;
  height: 84px;
  background: rgba(28,26,23,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
/* Image PNG réelle */
.nav__logo-img { height: 70px; width: auto; display: block; }

/* Fallback SVG monogram + wordmark */
.nav__logo-fallback {
  display: none;
  align-items: center;
  gap: 11px;
}
.nav__logo-wordmark {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__logo-name {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 300;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
}
.nav__logo-name strong { font-weight: 700; }
.nav__logo-tag {
  display: none;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav__item { position: relative; }

.nav__item-btn {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: color .2s, background .2s;
  background: none;
  border: none;
  font-family: var(--sans);
  white-space: nowrap;
}
.nav__item-btn:hover,
.nav__item:hover .nav__item-btn {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.nav__item-link {
  display: flex;
  align-items: center;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,.65);
  letter-spacing: 0.04em;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav__item-link:hover {
  color: #fff;
  background: rgba(255,255,255,.06);
}

.nav__chevron {
  width: 12px; height: 12px;
  opacity: .5;
  transition: transform .22s, opacity .2s;
  flex-shrink: 0;
}
.nav__item:hover .nav__chevron { transform: rotate(180deg); opacity: .9; }

.nav__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: #22201D;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  padding: 18px 8px 8px;
  min-width: 220px;
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s, transform .2s;
  z-index: 300;
}
.nav__dropdown--wide { min-width: 270px; }
.nav__item:hover .nav__dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav__dropdown-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 5px;
  transition: background .15s;
}
.nav__dropdown-item:hover { background: rgba(255,255,255,.06); }

.nav__dropdown-icon {
  width: 32px; height: 32px;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.nav__dropdown-icon svg { width: 15px; height: 15px; }

.nav__dropdown-label {
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,.85);
  margin-bottom: 2px;
  line-height: 1.2;
}
.nav__dropdown-desc {
  font-size: 11px;
  color: rgba(255,255,255,.35);
  line-height: 1.4;
}
.nav__dropdown-divider {
  height: 1px;
  background: rgba(255,255,255,.07);
  margin: 6px 0;
}

/* ── LANGUAGE SWITCHER ───────────────────────────────────── */
.nav__lang {
  position: relative;
  flex-shrink: 0;
  margin-right: 14px;
}
.nav__lang-toggle {
  display: flex;
  align-items: center;
  gap: 5px;
  background: none;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 4px;
  padding: 7px 11px;
  color: rgba(255,255,255,.6);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  cursor: pointer;
  transition: border-color .2s, color .2s;
  white-space: nowrap;
}
.nav__lang-toggle:hover {
  border-color: rgba(201,169,110,.5);
  color: var(--or);
}
.nav__lang-dropdown {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  background: #1a1815;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  padding: 6px;
  min-width: 148px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
  z-index: 200;
  box-shadow: 0 12px 40px rgba(0,0,0,.5);
}
.nav__lang.open .nav__lang-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 9px 12px;
  border: none;
  background: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,.75);
  transition: background .15s, color .15s;
  text-align: left;
}
.nav__lang-option:hover { background: rgba(255,255,255,.06); color: #fff; }
.nav__lang-option.active { color: var(--or); }
.nav__lang-code {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--or);
  background: rgba(184,153,84,.15);
  border: 1px solid rgba(184,153,84,.3);
  border-radius: 3px;
  padding: 2px 6px;
  line-height: 1.4;
  flex-shrink: 0;
}

.nav__cta { flex-shrink: 0; }
.nav__cta-btn {
  display: inline-flex;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 10px 22px;
  background: var(--or);
  color: #fff;
  border-radius: 3px;
  transition: opacity .2s, transform .15s;
}
.nav__cta-btn:hover { opacity: .85; transform: translateY(-1px); }

/* ── PAGE HERO (inner pages) ─────────────────────────────── */
.page-hero {
  padding: 140px 80px 80px;
  background: var(--noir);
  position: relative;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.page-hero__bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(28,26,23,.78) 35%, rgba(28,26,23,.32) 100%),
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(74,107,90,.12) 0%, transparent 70%);
}
.page-hero__bg--plain::before {
  background-image:
    radial-gradient(ellipse 60% 60% at 80% 50%, rgba(74,107,90,.15) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(184,150,90,.07) 0%, transparent 60%);
}
.page-hero__content { position: relative; max-width: 720px; }
.page-hero__eyebrow { margin-bottom: 20px; }
.page-hero__title {
  font-family: var(--serif);
  font-size: clamp(40px,5vw,68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.06;
  margin-bottom: 20px;
}
.page-hero__title em { font-style: italic; color: var(--or); }
.page-hero__title .av { color: var(--vert); font-style: normal; }
.page-hero__sub {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  max-width: 480px;
  line-height: 1.75;
  margin-bottom: 40px;
}
.page-hero__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* Breadcrumb */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 12px;
  color: rgba(255,255,255,.35);
}
.breadcrumb a { color: rgba(255,255,255,.35); transition: color .2s; }
.breadcrumb a:hover { color: rgba(255,255,255,.7); }
.breadcrumb span { color: rgba(255,255,255,.2); }

/* ── SECTION COMMONS ─────────────────────────────────────── */
.section { padding: 100px 80px; }
.section--creme { background: var(--creme); }
.section--beige { background: var(--beige); }
.section--noir  { background: var(--noir); }
.section--vert  { background: var(--vert); }

.section__header { text-align: center; margin-bottom: 64px; }
.section__eyebrow { margin-bottom: 16px; }
.section__title {
  font-family: var(--serif);
  font-size: clamp(30px,4vw,48px);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 16px;
  color: var(--noir);
}
.section__title em  { font-style: italic; color: var(--or); }
.section__title .av { color: var(--vert); font-style: normal; }
.section__title--light { color: #fff; }
.section__sub {
  font-size: 15px;
  color: var(--gris);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.75;
}
.section__sub--light { color: rgba(255,255,255,.5); }

/* ── CARD GRID ───────────────────────────────────────────── */
.card-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.card-grid--4 { grid-template-columns: repeat(4,1fr); }
.card-grid--2 { grid-template-columns: repeat(2,1fr); }

.card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 40px 36px;
  transition: box-shadow .35s ease, transform .35s ease, border-color .35s ease;
}
.card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.10);
  transform: translateY(-6px);
  border-color: rgba(184,150,90,.25);
}
.card:hover .card__icon {
  background: rgba(184,150,90,.12);
  transition: background .35s ease;
}
.card:hover .card__icon svg {
  transform: scale(1.15);
  transition: transform .35s ease;
}
.card--dark {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
}
.card--link { cursor: pointer; }

.card__num {
  font-size: 18px;
  font-weight: 600;
  color: var(--or);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.card__icon {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.card__icon svg { width: 22px; height: 22px; }
.card__title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--noir);
  margin-bottom: 10px;
}
.card__title--light { color: #fff; }
.card__body {
  font-size: 14px;
  color: var(--gris);
  line-height: 1.75;
  margin-bottom: 20px;
}
.card__body--light { color: rgba(255,255,255,.55); }
.card__arrow {
  font-size: 18px;
  color: var(--or);
  transition: transform .2s;
}
.card:hover .card__arrow { transform: translateX(4px); }

/* ── SPLIT LAYOUT ────────────────────────────────────────── */
.split { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.split--reverse { direction: rtl; }
.split--reverse > * { direction: ltr; }

.split__visual {
  background: var(--vert);
  position: relative;
  overflow: hidden;
  min-height: 480px;
}
.split__visual--dark { background: var(--noir); }
.split__visual--or   { background: var(--or); }

.split__visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.3) 0%, transparent 60%);
}
.split__placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.split__placeholder-inner {
  width: 90px; height: 90px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
}
.split__placeholder-inner svg { width: 32px; height: 32px; opacity: .3; }

.split__content {
  background: var(--creme);
  padding: 80px 70px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.split__content--beige { background: var(--beige); }
.split__content--noir  { background: var(--noir); }

.split__eyebrow { margin-bottom: 18px; }
.split__title {
  font-family: var(--serif);
  font-size: clamp(28px,3vw,42px);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 18px;
}
.split__title em  { font-style: italic; color: var(--or); }
.split__title .av { color: var(--vert); font-style: normal; }
.split__title--light { color: #fff; }
.split__body {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.8;
  max-width: 400px;
  margin-bottom: 32px;
}
.split__body--light { color: rgba(255,255,255,.5); }
.split__actions { display: flex; align-items: center; gap: 20px; flex-wrap: wrap; }

/* ── STEPS (méthode) ─────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
}
.step {
  padding: 48px 40px;
  border-right: 1px solid var(--beige);
  background: #fff;
  display: flex;
  flex-direction: column;
}
.step:last-child { border-right: none; }
.step__num { font-size: 18px; font-weight: 600; color: var(--or); letter-spacing: .1em; margin-bottom: 16px; }
.step__title { font-family: var(--serif); font-size: 19px; font-weight: 700; color: var(--noir); margin-bottom: 12px; line-height: 1.25; }
.step__body  { font-size: 14px; color: var(--gris); line-height: 1.75; margin-bottom: 24px; flex: 1; }

/* ── STATS BAR ───────────────────────────────────────────── */
.statsbar {
  background: var(--beige);
  border-top: 1px solid #D9D3CB;
  border-bottom: 1px solid #D9D3CB;
  display: flex;
}
.statsbar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 36px 24px;
  border-right: 1px solid #D9D3CB;
  text-align: center;
}
.statsbar__item:last-child { border-right: none; }
.statsbar__num {
  font-family: var(--serif);
  font-size: 36px;
  color: var(--noir);
  line-height: 1;
  margin-bottom: 6px;
}
.statsbar__num span { color: var(--or); }
.statsbar__label { font-size: 12px; color: var(--gris); }

/* ── TESTIMONIALS ────────────────────────────────────────── */
.testimonials { background: var(--noir); padding: 100px 80px; }
.testimonials__grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; max-width: 1100px; margin: 0 auto; }
.testimonial {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px;
  padding: 36px 32px;
}
.testimonial__stars { color: var(--or); font-size: 11px; letter-spacing: 2px; margin-bottom: 16px; }
.testimonial__quote {
  font-family: var(--serif);
  font-size: 15px;
  font-style: italic;
  color: rgba(255,255,255,.8);
  line-height: 1.7;
  margin-bottom: 28px;
}
.testimonial__author { display: flex; align-items: center; gap: 14px; }
.testimonial__avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(74,107,90,.4);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--or);
  flex-shrink: 0;
}
.testimonial__name  { font-size: 14px; font-weight: 600; color: #fff; }
.testimonial__role  { font-size: 12px; color: rgba(255,255,255,.4); margin-top: 2px; }

/* ── TEAM CARDS ──────────────────────────────────────────── */
.team-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
}
.team-card__photo {
  height: 280px;
  background: var(--vert);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.team-card__photo-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif);
  font-size: 32px;
  color: rgba(255,255,255,.5);
}
.team-card__body { padding: 32px; }
.team-card__name { font-family: var(--serif); font-size: 22px; font-weight: 500; margin-bottom: 4px; }
.team-card__role { font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--or); margin-bottom: 16px; }
.team-card__bio  { font-size: 14px; color: var(--gris); line-height: 1.75; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-item {
  border-bottom: 1px solid var(--beige);
}
.faq-item:first-child { border-top: 1px solid var(--beige); }
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--noir);
  gap: 20px;
}
.faq-question:hover { color: var(--vert); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid var(--beige);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: transform .3s, background .2s;
  font-size: 14px;
  color: var(--gris);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--vert); border-color: var(--vert); color: #fff; }
.faq-answer {
  font-size: 15px;
  color: var(--gris);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s;
}
.faq-item.open .faq-answer { max-height: 400px; padding-bottom: 24px; }

/* ── CONTACT FORM ────────────────────────────────────────── */
.form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--noir);
}
.form-input, .form-select, .form-textarea {
  font-family: var(--sans);
  font-size: 14px;
  padding: 14px 16px;
  border: 1px solid var(--beige);
  border-radius: 3px;
  background: #fff;
  color: var(--noir);
  transition: border-color .2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--vert);
}
.form-textarea { resize: vertical; min-height: 130px; }

/* ── CTA SECTION ─────────────────────────────────────────── */
.cta-section {
  background: var(--vert);
  padding: 100px 80px;
  text-align: center;
}
.cta-section__eyebrow { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 24px; }
.cta-section__title {
  font-family: var(--serif);
  font-size: clamp(32px,4vw,52px);
  font-weight: 400;
  color: #fff;
  line-height: 1.1;
  max-width: 600px;
  margin: 0 auto 20px;
}
.cta-section__title em { font-style: italic; color: var(--or); }
.cta-section__sub {
  font-size: 15px;
  color: rgba(255,255,255,.6);
  max-width: 420px;
  margin: 0 auto 44px;
  line-height: 1.75;
}
.cta-section__actions { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }

/* ── FOOTER ──────────────────────────────────────────────── */
.footer { background: var(--noir); padding: 72px 80px 40px; }
.footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo { font-family: var(--serif); font-size: 20px; font-weight: 500; color: #fff; margin-bottom: 14px; }
.footer__logo span { color: var(--or); }
.footer__tagline { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; max-width: 280px; }
.footer__col-title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 20px;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__links a { font-size: 14px; color: rgba(255,255,255,.55); transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 32px;
}
.footer__copy { font-size: 12px; color: rgba(255,255,255,.25); }
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { font-size: 12px; color: rgba(255,255,255,.25); transition: color .2s; }
.footer__legal a:hover { color: rgba(255,255,255,.5); }

/* ── BLOG ────────────────────────────────────────────────── */
.blog-tabs { display: flex; gap: 0; border-bottom: 2px solid var(--beige); margin-bottom: 48px; }
.blog-tab {
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gris);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: color .2s, border-color .2s;
}
.blog-tab.active { color: var(--vert); border-bottom-color: var(--vert); }
.blog-tab:hover  { color: var(--noir); }
.blog-panel { display: none; }
.blog-panel.active { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.blog-card {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
  cursor: pointer;
}
.blog-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,.07); transform: translateY(-2px); }
.blog-card__thumb { height: 180px; background: var(--beige); position: relative; display: flex; align-items: center; justify-content: center; }
.blog-card__thumb-label { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--gris); }
.blog-card__body { padding: 28px; }
.blog-card__tag  { font-size: 10px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--or); margin-bottom: 10px; }
.blog-card__title { font-family: var(--serif); font-size: 18px; font-weight: 500; line-height: 1.3; margin-bottom: 10px; }
.blog-card__date  { font-size: 12px; color: var(--gris); }

/* ── BOOKING ─────────────────────────────────────────────── */
.booking-frame {
  background: #fff;
  border: 1px solid var(--beige);
  border-radius: 4px;
  padding: 48px;
  text-align: center;
}
.booking-frame__title { font-family: var(--serif); font-size: 28px; font-weight: 400; margin-bottom: 12px; }
.booking-frame__sub   { font-size: 15px; color: var(--gris); margin-bottom: 32px; }
.booking-slots { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-bottom: 32px; }
.booking-slot {
  padding: 16px 12px;
  border: 1px solid var(--beige);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s;
}
.booking-slot:hover { background: var(--vert); color: #fff; border-color: var(--vert); }
.booking-slot__date { font-size: 11px; color: var(--gris); margin-bottom: 4px; }
.booking-slot:hover .booking-slot__date { color: rgba(255,255,255,.7); }
.booking-slot__time { font-size: 15px; font-weight: 600; }

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .section { padding: 80px 40px; }
  .page-hero { padding: 120px 40px 60px; }
  .card-grid--4 { grid-template-columns: repeat(2,1fr); }
  .footer__top  { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 24px; }
  .nav__links { display: none; }
  .section { padding: 60px 24px; }
  .page-hero { padding: 110px 24px 56px; }
  .card-grid, .card-grid--4, .card-grid--2 { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split--reverse { direction: ltr; }
  .split__visual { min-height: 260px; }
  .split__content { padding: 48px 28px; }
  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--beige); }
  .step:last-child { border-bottom: none; }
  .testimonials { padding: 60px 24px; }
  .testimonials__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer { padding: 48px 24px 32px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 12px; }
  .blog-panel.active { grid-template-columns: 1fr; }
  .booking-slots { grid-template-columns: 1fr 1fr; }
  .statsbar { flex-wrap: wrap; }
  .statsbar__item { flex: 1 1 50%; }
}
