/* ============================================================
   HARMONY BEAUTY CLINIC — Soft Luxury Style
   Palette : #FBF5F0 · #C49A7A · #2D2420 · #4A6741
   Typo    : Cormorant Garamond (titres) + DM Sans (corps)
   ============================================================ */

:root {
  --cream: #FBF5F0;
  --gold: #C49A7A;
  --gold-dk: #B8896A;
  --dark: #2D2420;
  --muted: #7A6458;
  --green: #4A6741;
  --border: #EDE5DC;
  --white: #FFFFFF;
  --cart-title: #5f64a4;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'DM Sans', system-ui, sans-serif;

  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --shadow-soft: 0 4px 32px rgba(180, 140, 110, 0.12);
  --shadow-card: 0 2px 20px rgba(180, 140, 110, 0.10);
  --shadow-light: 60 20px 40px rgba(255, 255, 255, 0.8);

  --light-gold:
    0 0 40px rgba(196, 154, 122, 0.18);

  --light-soft:
    0 0 60px rgba(251, 245, 240, 0.55);

  --light-card:
    0 0 30px rgba(196, 154, 122, 0.12),
    0 0 80px rgba(251, 245, 240, 0.35);

  --light-green:
    0 0 45px rgba(74, 103, 65, 0.15);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ── TYPOGRAPHY ─────────────────────────────────────────── */
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 300;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
}

em {
  font-style: italic;
  color: var(--gold);
}

p {
  color: var(--muted);
  line-height: 1.8;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.section-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

/* ── LAYOUT ─────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 0;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.875rem 2rem;
  border-radius: 40px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
}

.btn-gold:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--gold);
}

.btn-outline:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-white {
  background: var(--white);
  color: var(--gold);
  border: 1px solid var(--white);
}

.btn-white:hover {
  background: var(--cream);
  transform: translateY(-1px);
}

.btn-full {
  width: 100%;
  justify-content: center;
}


/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 3rem;
  background: transparent;
  transition: background 0.3s, box-shadow 0.3s;
}

.nav.scrolled {
  background: rgba(251, 245, 240, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(180, 140, 110, 0.12);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo .logo-mark {
  width: 44px;
  height: auto;
}

.nav-logo .logo-mark img {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.logo-text {
  font-family: var(--serif);
  font-size: 0.85rem;
  line-height: 1.3;
  color: var(--dark);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.2s;
}

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

.nav-cta {
  font-family: var(--sans);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border-radius: 40px;
  background: var(--gold);
  color: var(--white);
  border: 1px solid var(--gold);
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--gold-dk);
  border-color: var(--gold-dk);
}

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

.nav-burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--dark);
  transition: transform 0.3s;
}

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
}

.hero-img img {
  object-position: center 20%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
      rgba(251, 245, 240, 0.92) 0%,
      rgba(251, 245, 240, 0.80) 40%,
      rgba(251, 245, 240, 0.25) 70%,
      rgba(251, 245, 240, 0.10) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 8rem 4rem 4rem;
  max-width: 640px;
  animation: fadeUp 0.9s ease both;
}

.logo-mark {
  height: auto;
  width: 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196, 154, 122, 0.12);
  border: 1px solid rgba(196, 154, 122, 0.35);
  border-radius: 40px;
  padding: 0.45rem 1.1rem;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-family: var(--sans);
}

.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.hero-title {
  margin-bottom: 1.25rem;
  animation: fadeUp 0.9s 0.1s ease both;
}

.hero-sub {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2.5rem;
  animation: fadeUp 0.9s 0.2s ease both;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  animation: fadeUp 0.9s 0.3s ease both;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  animation: fadeUp 0.9s 0.4s ease both;
}

.pill {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.7rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}

.hero-stat {
  position: absolute;
  bottom: 2.5rem;
  right: 3rem;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1.1rem 1.5rem;
  box-shadow: var(--shadow-soft);
  animation: fadeUp 0.9s 0.5s ease both;
}

.hero-stat .stat-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 300;
  line-height: 1;
}

.hero-stat .stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ── STRIP ─────────────────────────────────────────────────── */
.strip {
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.strip span {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.25rem 1.75rem;
  border-right: 1px solid var(--border);
}

.strip span:last-child {
  border-right: none;
}

/* ── SECTION HEADER ─────────────────────────────────────── */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3.5rem;
}

.section-header.centered {
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.section-link {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196, 154, 122, 0.4);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: color 0.2s;
}

.section-link:hover {
  color: var(--gold-dk);
}

/* ── TRAITEMENTS OVERLAY ─────────────────────────────────── */
.treatments-wrap {
  position: relative;
  padding: 0 44px;
}

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

.treatment-card {
  position: relative;
  height: 310px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
}

.treatment-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.55s ease;
}

.treatment-card:hover img {
  transform: scale(1.05);
}

.treatment-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(45, 36, 32, 0.72) 0%,
      rgba(45, 36, 32, 0.15) 45%,
      rgba(45, 36, 32, 0) 100%);
  transition: opacity 0.3s;
}

.treatment-card:hover .treatment-overlay {
  opacity: 0.85;
}

.treatment-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.treatment-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.03em;
}

.treatment-arrow {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.2s, color 0.2s;
}

.treatment-card:hover .treatment-arrow {
  transform: translateX(3px);
  color: var(--white);
}

.nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--muted);
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(180, 140, 110, 0.12);
  transition: background 0.2s, color 0.2s, transform 0.2s;
  z-index: 2;
}

.nav-btn:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-50%) scale(1.05);
}

.nav-prev {
  left: 0;
}

.nav-next {
  right: 0;
}

.treatments-cta {
  text-align: center;
  margin-top: 1.75rem;
}

.treatments-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--dark);
  border-bottom: 1px solid rgba(45, 36, 32, 0.2);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}

.treatments-link:hover {
  color: var(--gold);
  border-color: rgba(196, 154, 122, 0.5);
}

/* ── À PROPOS ─────────────────────────────────────────────── */
.apropos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  padding: 0;
}

.apropos-img {
  position: relative;
  overflow: hidden;
  background: var(--border);
  min-height: 500px;
}

.apropos-img img {
  object-position: center top;
}

.apropos-badge {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.badge-num {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 300;
  line-height: 1;
}

.badge-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.3;
  padding: 0 0.4rem;
  margin-top: 0.2rem;
}

.apropos-content {
  background: #F5EFE8;
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.apropos-tag {
  display: inline-block;
  background: var(--dark);
  color: var(--gold);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  margin-bottom: 1.75rem;
  font-family: var(--sans);
}

.apropos-text {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 440px;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem 2rem;
  margin-bottom: 2.5rem;
}

.stat-item {}

.stat-big {
  display: block;
  font-family: var(--serif);
  font-size: 2.2rem;
  color: var(--green);
  font-weight: 300;
  line-height: 1;
}

.stat-txt {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 0.2rem;
  display: block;
}

/* ── POURQUOI NOUS ─────────────────────────────────────── */
.pourquoi {
  background: var(--white);
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.pourquoi-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pourquoi-item:hover {
  border-color: rgba(196, 154, 122, 0.5);
  box-shadow: var(--shadow-card);
}

.pourquoi-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #EDD5C0, #D4B4A0);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 1rem;
}

.pourquoi-item h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-family: var(--sans);
}

.pourquoi-item p {
  font-size: 0.85rem;
  line-height: 1.7;
}

/* ── PARCOURS ─────────────────────────────────────────────── */
.parcours {
  background: var(--dark);
}

.parcours .eyebrow {
  color: var(--gold);
}

.parcours .section-title {
  color: #F5F2EC;
}

.parcours .section-title em {
  color: var(--gold);
}

.steps {
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 3.5rem;
}

.step {
  flex: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(196, 154, 122, 0.18);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  transition: background 0.3s;
}

.step:hover {
  background: rgba(255, 255, 255, 0.07);
}

.step-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  color: rgba(196, 154, 122, 0.2);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 1.25rem;
}

.step-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: #F5F2EC;
  font-weight: 300;
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  color: rgba(245, 242, 236, 0.5);
  margin-bottom: 1.25rem;
}

.step-tag {
  display: inline-block;
  background: rgba(196, 154, 122, 0.12);
  border: 1px solid rgba(196, 154, 122, 0.3);
  border-radius: 20px;
  padding: 0.3rem 0.9rem;
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--sans);
}

.step-divider {
  width: 1.25rem;
  flex-shrink: 0;
}

/* ── TÉMOIGNAGES ─────────────────────────────────────────── */
.temoignages {
  background: var(--cream);
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 1.25rem;
}

.g-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.testi-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}

.stars {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}

.testi-card blockquote {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--dark);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  flex-shrink: 0;
}

.testi-author strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--dark);
}

.testi-author span {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── CTA BAND ─────────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(105deg, var(--gold) 0%, var(--gold-dk) 100%);
  padding: 5rem 2rem;
  text-align: center;
}

.cta-inner {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  font-weight: 300;
  line-height: 1.2;
  margin-bottom: 0.75rem;
}

.cta-title em {
  color: rgba(255, 255, 255, 0.75);
}

.cta-sub {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 2rem;
}

/* ── CONTACT ─────────────────────────────────────────────── */
.contact {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.contact-text {
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1rem;
  color: var(--gold);
  width: 20px;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.contact-item strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.2rem;
}

.contact-item span,
.contact-item a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s;
}

.contact-item a:hover {
  color: var(--gold);
}

/* FORM */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  font-family: var(--sans);
}

input,
select,
textarea {
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  width: 100%;
}

input::placeholder,
textarea::placeholder {
  color: rgba(122, 100, 88, 0.5);
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 154, 122, 0.12);
}

select {
  appearance: none;
  cursor: pointer;
}

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

.form-note {
  font-size: 0.7rem;
  text-align: center;
  color: var(--muted);
  opacity: 0.7;
  letter-spacing: 0.05em;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 4rem 0 0;
}

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

.footer-brand .logo-mark {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-size: 0.8rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 1.25rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  transition: border-color 0.2s, color 0.2s;
}

.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-nav strong {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.35);
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 1.25rem 2rem;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.2);
}

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

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

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

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .apropos-img {
    min-height: 380px;
  }
}

@media (max-width: 768px) {

  .nav-links,
  .nav-cta {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav.menu-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.25rem;
  }

  .nav.menu-open .nav-cta {
    display: block;
    margin: 0 2rem 1.5rem;
    text-align: center;
  }

  .hero-content {
    padding: 7rem 1.5rem 3rem;
    max-width: 100%;
  }

  .hero-stat {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 0.75rem 1.5rem;
  }

  .strip span {
    border-right: none;
    padding: 0.25rem 1rem;
    white-space: nowrap;
  }

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

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

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

  .steps {
    flex-direction: column;
  }

  .step-divider {
    display: none;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 4rem 0;
  }

  .apropos-content {
    padding: 3rem 1.5rem;
  }
}


/* ── NAV lien actif ───────────────────────────────────────── */
.nav-links a.active {
  color: var(--gold);
}

.nav-links a.active::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: var(--gold);
  margin-top: 2px;
}