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

:root {
  --ink:    #0A0908;
  --dark:   #111009;
  --mid:    #1C1A16;
  --card:   #151310;
  --gold:   #C9A961;
  --gold-l: #E2C882;
  --gold-d: #8B6A1A;
  --gold-t: rgba(201,169,97,0.12);
  --stone:  #9A8E7A;
  --sand:   #6B6050;
  --cream:  #F0EBE1;
  --white:  #FAF8F4;
  --r: 1px;
}

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

body {
  background: var(--ink);
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  cursor: auto;
}

/* ── NOISE TEXTURE OVERLAY ── */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

/* ═══════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 4vw;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.4s, backdrop-filter 0.4s;
}
nav.scrolled {
  background: rgba(10,9,8,0.92);
  backdrop-filter: blur(20px);
  border-bottom: 0.5px solid rgba(201,169,97,0.15);
}
.nav-logo {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  color: var(--gold);
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links {
  display: flex; align-items: center; gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0; right: 100%;
  height: 1px; background: var(--gold);
  transition: right 0.3s ease;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a:hover::after { right: 0; }
.nav-cta-dummy { display:none; } /* placeholder */ .nav-cta {
  padding: 9px 24px;
  border: 1px solid var(--gold);
  color: var(--gold) !important;
  font-size: 0.68rem !important;
  letter-spacing: 0.2em !important;
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: var(--gold); color: var(--ink) !important; }
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px;
}
.hamburger span {
  display: block; width: 24px; height: 1px;
  background: var(--stone); transition: all 0.3s;
}

/* ═══════════════════════════════════════
   HERO
═══════════════════════════════════════ */
#hero {
  position: relative;
  height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,9,8,0.72) 0%, rgba(10,9,8,0.45) 40%, rgba(10,9,8,0.75) 100%),
    url("/images/hero-fond-photographe-occitanie.jpg") center/cover no-repeat;
}
/* Decorative lines */
.hero-lines {
  position: absolute; inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-lines::before, .hero-lines::after {
  content: '';
  position: absolute;
  border: 0.5px solid rgba(201,169,97,0.08);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.hero-lines::before { width: min(90vh, 90vw); height: min(90vh, 90vw); }
.hero-lines::after  { width: min(75vh, 75vw); height: min(75vh, 75vw); }

.hero-content {
  position: relative; z-index: 2;
  max-width: 900px; padding: 0 2rem;
}
.hero-logo-img {
  width: 280px; max-width: 60vw;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(.25,.46,.45,.94) 0.2s forwards;
}
.hero-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(.25,.46,.45,.94) 0.5s forwards;
}
.hero-tagline em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(.25,.46,.45,.94) 0.8s forwards;
}
.hero-actions {
  display: flex; align-items: center; justify-content: center;
  gap: 1.5rem; flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.2s cubic-bezier(.25,.46,.45,.94) 1s forwards;
}
.btn-primary {
  padding: 14px 40px;
  background: var(--gold);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.25s, transform 0.2s;
}
.btn-primary:hover { background: var(--gold-l); transform: translateY(-1px); }
.btn-ghost {
  padding: 13px 40px;
  background: transparent;
  color: var(--cream);
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(201,169,97,0.35);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.25s, color 0.25s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.hero-scroll {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  opacity: 0;
  animation: fadeUp 1.2s ease 1.4s forwards;
}
.hero-scroll span {
  font-size: 0.6rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--sand);
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse { 0%,100%{opacity:0.4;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(1.1)} }

/* ═══════════════════════════════════════
   SECTION COMMONS
═══════════════════════════════════════ */
section { position: relative; z-index: 1; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 4vw; }
.section-label {
  font-size: 0.6rem; letter-spacing: 0.4em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 1rem;
}
.section-label::after {
  content: ''; flex: 1; max-width: 60px; height: 0.5px; background: var(--gold-d);
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--cream);
  margin-bottom: 1.5rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.85;
  max-width: 520px;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-05 { transition-delay: 0.05s; }

/* ═══════════════════════════════════════
   STATS BAND
═══════════════════════════════════════ */
#stats {
  padding: 5rem 0;
  border-top: 0.5px solid rgba(201,169,97,0.12);
  border-bottom: 0.5px solid rgba(201,169,97,0.12);
  background: linear-gradient(180deg, transparent, rgba(201,169,97,0.03), transparent);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 2px;
}
.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 0.5px solid rgba(201,169,97,0.1);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-label {
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--sand);
  margin-top: 0.5rem; display: block;
}

/* ═══════════════════════════════════════
   PRESTATIONS
═══════════════════════════════════════ */
#prestations { padding: 8rem 0; }
.prestations-header { margin-bottom: 5rem; }

.prestations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201,169,97,0.1);
  border: 0.5px solid rgba(201,169,97,0.1);
}
.presta-card {
  background: var(--card);
  padding: 3rem 2.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
  cursor: default;
}
.presta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.presta-card:hover { background: #1A1712; }
.presta-card:hover::before { transform: scaleX(1); }
.presta-icon {
  font-size: 1.6rem; margin-bottom: 1.5rem;
  display: block; opacity: 0.7;
}
.presta-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.65rem; letter-spacing: 0.3em;
  color: var(--gold-d); margin-bottom: 0.8rem;
}
.presta-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 400;
  color: var(--cream); margin-bottom: 1rem;
  line-height: 1.2;
}
.presta-desc {
  font-size: 0.8rem; color: var(--stone);
  line-height: 1.8; margin-bottom: 1.5rem;
}
.presta-tags {
  display: flex; flex-wrap: wrap; gap: 0.4rem;
}
.presta-tag {
  font-size: 0.58rem; letter-spacing: 0.15em;
  text-transform: uppercase; padding: 3px 10px;
  border: 0.5px solid rgba(201,169,97,0.2);
  color: var(--sand);
}

/* ═══════════════════════════════════════
   ABOUT / PHILOSOPHIE
═══════════════════════════════════════ */
#philosophie {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0E0C09 0%, #111009 100%);
  border-top: 0.5px solid rgba(201,169,97,0.08);
  border-bottom: 0.5px solid rgba(201,169,97,0.08);
}
.philo-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.philo-visual {
  position: relative;
}
.philo-frame {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, #1C1A16, #111);
  border: 0.5px solid rgba(201,169,97,0.15);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.philo-frame-placeholder {
  text-align: center; padding: 3rem;
}
.philo-frame-placeholder .ph-icon {
  font-size: 3rem; opacity: 0.3; display: block; margin-bottom: 1.5rem;
}
.philo-frame-placeholder p {
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand); opacity: 0.6;
}
.philo-accent {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 60%;
  aspect-ratio: 1;
  border: 0.5px solid rgba(201,169,97,0.12);
  z-index: -1;
}
.philo-text .section-body { max-width: 100%; margin-bottom: 2rem; }
.philo-signature {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-style: italic;
  color: var(--gold); margin-top: 2rem;
  opacity: 0.7;
}
.philo-values {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 0.8rem;
}
.philo-value {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.78rem; color: var(--stone);
}
.philo-value::before {
  content: '◆';
  color: var(--gold); font-size: 0.4rem; flex-shrink: 0;
}

/* ═══════════════════════════════════════
   TARIFS
═══════════════════════════════════════ */
#tarifs { padding: 8rem 0; }
.tarifs-header { text-align: center; margin-bottom: 4rem; }
.tarifs-header .section-label { justify-content: center; }
.tarifs-header .section-label::after { display: none; }
.tarifs-header .section-label::before {
  content: ''; flex: 1; max-width: 60px; height: 0.5px; background: var(--gold-d);
}
.tarifs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.tarif-card {
  background: var(--card);
  border: 0.5px solid rgba(201,169,97,0.12);
  padding: 2.5rem;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}
.tarif-card:hover { border-color: rgba(201,169,97,0.4); transform: translateY(-4px); }
.tarif-card.featured {
  border-color: rgba(201,169,97,0.5);
  background: linear-gradient(160deg, #1E1A12, #151310);
}
.tarif-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--ink);
  font-size: 0.58rem; letter-spacing: 0.2em;
  text-transform: uppercase; padding: 4px 16px; font-weight: 500;
  white-space: nowrap;
}
.tarif-cat {
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-d);
  margin-bottom: 0.6rem;
}
.tarif-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem; color: var(--cream);
  margin-bottom: 0.5rem;
}
.tarif-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem; font-weight: 300; color: var(--gold);
  line-height: 1; margin: 1.2rem 0;
}
.tarif-price span { font-size: 0.9rem; color: var(--stone); font-family: 'Jost', sans-serif; }
.tarif-divider {
  height: 0.5px; background: rgba(201,169,97,0.12);
  margin: 1.5rem 0;
}
.tarif-items {
  list-style: none; display: flex; flex-direction: column; gap: 0.7rem;
}
.tarif-items li {
  font-size: 0.78rem; color: var(--stone);
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.tarif-items li::before {
  content: '—'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; margin-top: 0.05rem;
}
.tarif-cta {
  margin-top: 2rem; width: 100%;
  padding: 12px; text-align: center;
  border: 0.5px solid rgba(201,169,97,0.3);
  color: var(--stone); font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.18em; text-transform: uppercase;
  background: transparent; cursor: pointer;
  transition: all 0.25s; display: block; text-decoration: none;
}
.tarif-cta:hover, .tarif-card.featured .tarif-cta {
  background: var(--gold); color: var(--ink); border-color: var(--gold);
}

/* ═══════════════════════════════════════
   GALERIE TEASER
═══════════════════════════════════════ */
#galerie { padding: 8rem 0; background: var(--dark); }
.galerie-header {
  display: flex; align-items: flex-end; justify-content: space-between;
  margin-bottom: 3rem; gap: 2rem; flex-wrap: wrap;
}
.galerie-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 4px;
}
.galerie-item {
  background: var(--mid);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative;
  transition: transform 0.4s ease;
}
.galerie-item:hover .galerie-overlay { opacity: 1; }
.galerie-item:nth-child(1) { grid-row: 1 / 3; aspect-ratio: 2/3; }
.galerie-item:nth-child(2), .galerie-item:nth-child(4) { aspect-ratio: 4/3; }
.galerie-item:nth-child(3), .galerie-item:nth-child(5) { aspect-ratio: 4/3; }
.galerie-placeholder {
  text-align: center; padding: 2rem; width: 100%;
}
.galerie-placeholder .gp-icon { font-size: 2rem; opacity: 0.15; display: block; }
.galerie-placeholder .gp-label {
  font-size: 0.6rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--sand); opacity: 0.4; margin-top: 0.5rem;
}
.galerie-overlay {
  position: absolute; inset: 0;
  background: rgba(10,9,8,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.galerie-overlay-text {
  font-size: 0.62rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold);
  border: 0.5px solid rgba(201,169,97,0.5); padding: 6px 18px;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════ */
#temoignages {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--dark), var(--ink));
}
.temoignages-header { text-align: center; margin-bottom: 4rem; }
.temoignages-header .section-label { justify-content: center; }
.temoignages-header .section-label::after { display: none; }
.temoignages-header .section-label::before {
  content: ''; flex: 1; max-width: 60px; height: 0.5px; background: var(--gold-d);
}
.temoignages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.temoignage {
  background: var(--card);
  border: 0.5px solid rgba(201,169,97,0.1);
  padding: 2.5rem;
  position: relative;
}
.temoignage::before {
  content: '"';
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; font-weight: 300;
  color: var(--gold); opacity: 0.12;
  position: absolute; top: -1rem; left: 1.5rem;
  line-height: 1;
}
.temoignage-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; font-style: italic;
  color: var(--cream); line-height: 1.7;
  margin-bottom: 1.5rem; position: relative; z-index: 1;
}
.temoignage-author {
  display: flex; align-items: center; gap: 1rem;
}
.temoignage-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--mid);
  border: 0.5px solid rgba(201,169,97,0.2);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--gold);
  flex-shrink: 0;
}
.temoignage-name {
  font-size: 0.75rem; font-weight: 500; color: var(--cream);
}
.temoignage-prestation {
  font-size: 0.62rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--gold-d);
}
.temoignage-stars {
  color: var(--gold); font-size: 0.7rem; letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}

/* ═══════════════════════════════════════
   ZONE D'INTERVENTION
═══════════════════════════════════════ */
#zone { padding: 6rem 0; }
.zone-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.zone-map {
  background: var(--card);
  border: 0.5px solid rgba(201,169,97,0.15);
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.zone-map-content {
  text-align: center; padding: 3rem;
}
.zone-map-icon { font-size: 3rem; opacity: 0.3; display: block; margin-bottom: 1rem; }
.zone-map-text {
  font-size: 0.68rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand); opacity: 0.6;
}
.zone-cities {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2rem;
}
.zone-city {
  font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 14px; border: 0.5px solid rgba(201,169,97,0.2);
  color: var(--sand);
}
.zone-note {
  margin-top: 1.5rem; font-size: 0.75rem; color: var(--sand);
  font-style: italic;
}

/* ═══════════════════════════════════════
   CONTACT
═══════════════════════════════════════ */
#contact {
  padding: 8rem 0;
  background: linear-gradient(135deg, #0C0B09, #111009);
  border-top: 0.5px solid rgba(201,169,97,0.1);
}
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 6rem; }
.contact-info { }
.contact-info .section-body { margin-bottom: 3rem; }
.contact-items { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1.2rem; }
.contact-item-icon {
  width: 38px; height: 38px;
  border: 0.5px solid rgba(201,169,97,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; flex-shrink: 0; color: var(--gold);
}
.contact-item-content label {
  display: block; font-size: 0.58rem; letter-spacing: 0.25em;
  text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.2rem;
}
.contact-item-content a, .contact-item-content span {
  font-size: 0.85rem; color: var(--stone);
  text-decoration: none; transition: color 0.2s;
}
.contact-item-content a:hover { color: var(--cream); }
.contact-form { }
.form-group { margin-bottom: 1.2rem; }
.form-label {
  display: block; font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand); margin-bottom: 0.5rem;
}
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.03);
  border: 0.5px solid rgba(201,169,97,0.15);
  color: var(--cream);
  font-family: 'Jost', sans-serif; font-size: 0.85rem; font-weight: 300;
  outline: none; border-radius: 0;
  transition: border-color 0.25s, background 0.25s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: rgba(201,169,97,0.5);
  background: rgba(255,255,255,0.05);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--sand); opacity: 0.5; }
.form-select { cursor: pointer; }
.form-select option { background: var(--dark); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 15px;
  background: var(--gold); color: var(--ink);
  border: none; cursor: pointer;
  font-family: 'Jost', sans-serif; font-size: 0.72rem;
  font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase;
  transition: background 0.25s, transform 0.2s;
  margin-top: 0.5rem;
}
.form-submit:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--dark);
  border-top: 0.5px solid rgba(201,169,97,0.1);
  padding: 3rem 4vw;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-brand {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem; letter-spacing: 0.3em;
  color: var(--gold); text-transform: uppercase;
}
.footer-copy {
  font-size: 0.65rem; color: var(--sand);
  letter-spacing: 0.08em;
}
.footer-legal {
  display: flex; gap: 2rem;
}
.footer-legal a {
  font-size: 0.62rem; letter-spacing: 0.1em;
  color: var(--sand); text-decoration: none;
  transition: color 0.2s;
}
.footer-legal a:hover { color: var(--cream); }

/* ═══════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════════════════
   NAV RESPONSIVE — bascule en menu hamburger plus tôt
   (logo + 11 liens ont besoin d'~1634px pour tenir sur une ligne sans
   casser l'espacement des lettres ; marge de sécurité prise à 1660px)
═══════════════════════════════════════ */
@media (max-width: 1660px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 72px 0 0 0;
    background: rgba(10,9,8,0.97);
    backdrop-filter: blur(20px);
    align-items: center; justify-content: center;
    gap: 3rem; z-index: 99;
  }
  .nav-links.open a { font-size: 1rem; }
  .hamburger { display: flex; }
}

/* ═══════════════════════════════════════
   MOBILE
═══════════════════════════════════════ */
@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .prestations-grid { grid-template-columns: 1fr; }
  .philo-grid, .contact-grid, .zone-grid { grid-template-columns: 1fr; gap: 3rem; }
  .tarifs-grid { grid-template-columns: 1fr; }
  .temoignages-grid { grid-template-columns: 1fr; }
  .galerie-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .galerie-item:nth-child(1) { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 3/2; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════
   NOTIFICATION TOAST
═══════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 1000;
  background: var(--card); border: 0.5px solid rgba(201,169,97,0.4);
  padding: 1rem 1.5rem; max-width: 320px;
  transform: translateY(20px); opacity: 0; pointer-events: none;
  transition: all 0.4s cubic-bezier(.25,.46,.45,.94);
}
.toast.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
.toast-title { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; margin-bottom: 0.3rem; }
.toast-body { font-size: 0.78rem; color: var(--stone); }

/* ═══════════════════════════════════════
   DOCUMENTS
═══════════════════════════════════════ */
#documents {
  padding: 8rem 0;
  background: linear-gradient(180deg, var(--ink), #0E0C09);
  border-top: 0.5px solid rgba(201,169,97,0.1);
}
.documents-header { margin-bottom: 4rem; }
.docs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.doc-card {
  background: var(--card);
  border: 0.5px solid rgba(201,169,97,0.12);
  padding: 2.2rem 2rem;
  display: flex; flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
  position: relative; overflow: hidden;
}
.doc-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.4s ease;
}
.doc-card:hover { border-color: rgba(201,169,97,0.4); transform: translateY(-3px); }
.doc-card:hover::before { height: 100%; }
.doc-card.soon { opacity: 0.45; pointer-events: none; }
.doc-icon {
  font-size: 2rem; margin-bottom: 1.2rem; display: block; opacity: 0.8;
}
.doc-category {
  font-size: 0.58rem; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--gold-d); margin-bottom: 0.4rem;
}
.doc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; color: var(--cream); margin-bottom: 0.6rem; line-height: 1.3;
}
.doc-desc {
  font-size: 0.75rem; color: var(--stone); line-height: 1.75;
  flex: 1; margin-bottom: 1.5rem;
}
.doc-meta {
  display: flex; align-items: center; gap: 1rem;
  font-size: 0.62rem; color: var(--sand);
  letter-spacing: 0.1em; margin-bottom: 1.2rem;
}
.doc-meta span { display: flex; align-items: center; gap: 0.3rem; }
.doc-download {
  display: flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 10px 0; width: 100%;
  border: 0.5px solid rgba(201,169,97,0.3);
  color: var(--gold); background: transparent;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  text-decoration: none; cursor: pointer;
  transition: background 0.25s, color 0.25s;
}
.doc-download:hover { background: var(--gold); color: var(--ink); }
.doc-soon-badge {
  display: inline-block; margin-top: 1rem; padding: 6px 14px;
  border: 0.5px solid rgba(201,169,97,0.2);
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sand); text-align: center;
}
@media (max-width: 900px) {
  .docs-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   GALERIE COMPLÈTE
═══════════════════════════════════════ */
#galerie-full {
  padding: 8rem 0;
  background: var(--ink);
  border-top: 0.5px solid rgba(201,169,97,0.1);
}
.galerie-full-header {
  text-align: center; margin-bottom: 3rem;
}
.galerie-full-header .section-label { justify-content: center; }
.galerie-full-header .section-label::after { display: none; }
.galerie-full-header .section-label::before {
  content: ''; flex: 1; max-width: 60px; height: 0.5px; background: var(--gold-d);
}

/* Filter tabs */
.gallery-filters {
  display: flex; justify-content: center; flex-wrap: wrap;
  gap: 0.6rem; margin-bottom: 3rem;
}
.gf-btn {
  padding: 7px 20px;
  border: 0.5px solid rgba(201,169,97,0.25);
  background: transparent;
  color: var(--stone);
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem; letter-spacing: 0.18em;
  text-transform: uppercase; cursor: pointer;
  transition: all 0.25s;
}
.gf-btn:hover { border-color: rgba(201,169,97,0.6); color: var(--cream); }
.gf-btn.active { background: var(--gold); color: var(--ink); border-color: var(--gold); }

/* Masonry grid */
.gallery-masonry {
  columns: 4;
  column-gap: 6px;
}
.gallery-masonry .gm-item {
  break-inside: avoid;
  margin-bottom: 6px;
  overflow: hidden;
  position: relative;
  cursor: zoom-in;
  display: block;
}
.gallery-masonry .gm-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease, opacity 0.3s;
}
.gallery-masonry .gm-item:hover img { transform: scale(1.04); }
.gm-item .gm-overlay {
  position: absolute; inset: 0;
  background: rgba(10,9,8,0);
  display: flex; align-items: flex-end; padding: 1rem;
  transition: background 0.3s;
}
.gm-item:hover .gm-overlay { background: rgba(10,9,8,0.45); }
.gm-label {
  font-size: 0.58rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); opacity: 0;
  transition: opacity 0.3s;
}
.gm-item:hover .gm-label { opacity: 1; }
.gm-item.hidden { display: none; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 600;
  background: rgba(10,9,8,0.97);
  display: none; align-items: center; justify-content: center;
  backdrop-filter: blur(6px);
}
#lightbox.open { display: flex; }
#lightbox img {
  max-width: 92vw; max-height: 92vh;
  object-fit: contain;
  border: 0.5px solid rgba(201,169,97,0.2);
}
#lb-close {
  position: absolute; top: 1.5rem; right: 2rem;
  color: var(--stone); font-size: 1.8rem; cursor: pointer;
  transition: color 0.2s; background: none; border: none;
  line-height: 1;
}
#lb-close:hover { color: var(--gold); }
#lb-prev, #lb-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  color: var(--stone); font-size: 2rem; cursor: pointer;
  background: none; border: none; padding: 1rem;
  transition: color 0.2s;
}
#lb-prev { left: 1rem; }
#lb-next { right: 1rem; }
#lb-prev:hover, #lb-next:hover { color: var(--gold); }
#lb-caption {
  position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%);
  font-size: 0.62rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--stone);
}

@media (max-width: 900px) {
  .gallery-masonry { columns: 2; }
}
@media (max-width: 480px) {
  .gallery-masonry { columns: 2; column-gap: 4px; }
  .gallery-masonry .gm-item { margin-bottom: 4px; }
}

/* ═══════════════════════════════════════
   PHOTOTHÉRAPIE
═══════════════════════════════════════ */
#phototherapie {
  padding: 9rem 0;
  background: linear-gradient(160deg, #0C0A08 0%, #111009 60%, #0E0B08 100%);
  border-top: 0.5px solid rgba(201,169,97,0.1);
  border-bottom: 0.5px solid rgba(201,169,97,0.1);
  position: relative;
  overflow: hidden;
}
#phototherapie::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(ellipse, rgba(201,169,97,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.pt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
}
.pt-left .section-title { margin-bottom: 2rem; }
.pt-intro {
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--cream);
  line-height: 1.75;
  margin-bottom: 2rem;
  border-left: 2px solid var(--gold);
  padding-left: 1.5rem;
}
.pt-body {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.pt-situations {
  margin: 2.5rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}
.pt-situation {
  background: rgba(201,169,97,0.06);
  border: 0.5px solid rgba(201,169,97,0.2);
  padding: 0.9rem 1.1rem;
  font-size: 0.75rem;
  color: var(--stone);
  line-height: 1.55;
  position: relative;
}
.pt-situation::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--gold);
}
.pt-cta-block {
  margin-top: 2.5rem;
  padding: 2rem;
  background: rgba(201,169,97,0.06);
  border: 0.5px solid rgba(201,169,97,0.25);
}
.pt-cta-block p {
  font-size: 0.82rem;
  color: var(--stone);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.pt-right {
  position: relative;
}
.pt-card {
  background: var(--card);
  border: 0.5px solid rgba(201,169,97,0.15);
  padding: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  transition: border-color 0.3s;
}
.pt-card:hover { border-color: rgba(201,169,97,0.45); }
.pt-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: rgba(201,169,97,0.15);
  line-height: 1;
  position: absolute;
  top: 1rem; right: 1.5rem;
}
.pt-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.pt-card-body {
  font-size: 0.8rem;
  color: var(--stone);
  line-height: 1.75;
}
.pt-note {
  font-size: 0.7rem;
  color: var(--sand);
  font-style: italic;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 0.5px solid rgba(201,169,97,0.1);
  line-height: 1.7;
}
@media (max-width: 900px) {
  .pt-grid { grid-template-columns: 1fr; gap: 3rem; }
  .pt-situations { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════
   BLOC C2PA
═══════════════════════════════════════ */
#c2pa {
  padding: 5rem 0;
  background: linear-gradient(135deg, #0C0A08 0%, #111009 100%);
  border-top: 0.5px solid rgba(201,169,97,0.12);
  border-bottom: 0.5px solid rgba(201,169,97,0.12);
  position: relative;
  overflow: hidden;
}
#c2pa::before {
  content: '';
  position: absolute;
  right: -5%; top: -20%;
  width: 50%; height: 140%;
  background: radial-gradient(ellipse, rgba(201,169,97,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.c2pa-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: center;
}
.c2pa-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.c2pa-logo-ring {
  width: 140px; height: 140px;
  border: 1.5px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  margin-bottom: 1.5rem;
}
.c2pa-logo-ring::before {
  content: '';
  position: absolute; inset: 6px;
  border: 0.5px solid rgba(201,169,97,0.3);
  border-radius: 50%;
}
.c2pa-logo-inner {
  font-size: 0.75rem;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-align: center;
  line-height: 1.4;
}
.c2pa-logo-inner strong {
  display: block;
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  letter-spacing: 0.05em;
}
.c2pa-certified {
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.c2pa-subtitle {
  font-size: 0.72rem;
  color: var(--stone);
  line-height: 1.6;
  max-width: 180px;
}
.c2pa-content .section-body {
  max-width: 100%;
  margin-bottom: 1.2rem;
}
.c2pa-usages {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin: 2rem 0;
}
.c2pa-usage {
  background: rgba(201,169,97,0.06);
  border: 0.5px solid rgba(201,169,97,0.18);
  padding: 1rem 1.2rem;
  position: relative;
}
.c2pa-usage::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 100%;
  background: var(--gold);
}
.c2pa-usage-title {
  font-size: 0.72rem;
  font-weight: 500;
  font-family: 'Jost', sans-serif;
  color: var(--cream);
  margin-bottom: 0.3rem;
  letter-spacing: 0.05em;
}
.c2pa-usage-desc {
  font-size: 0.72rem;
  color: var(--stone);
  line-height: 1.55;
}
.c2pa-note {
  font-size: 0.7rem;
  color: var(--sand);
  font-style: italic;
  padding-top: 1rem;
  border-top: 0.5px solid rgba(201,169,97,0.1);
  line-height: 1.65;
}
@media (max-width: 900px) {
  .c2pa-grid { grid-template-columns: 1fr; gap: 3rem; }
  .c2pa-badge { flex-direction: row; text-align: left; gap: 1.5rem; }
  .c2pa-usages { grid-template-columns: 1fr; }
}


/* ═══ WHATSAPP FLOTTANT ═══ */
.wa-float {
  position: fixed;
  bottom: 5.5rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  z-index: 800;
  transition: transform 0.25s, box-shadow 0.25s;
  animation: waPulse 3s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
@keyframes waPulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 28px rgba(37,211,102,0.7); }
}

/* ═══ AMÉLIORATIONS PREMIUM ═══ */
@media (max-width: 900px) {
  .tarifs-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 600px) {
  .tarifs-grid { grid-template-columns: 1fr !important; }
  #processus > .section-inner > div:nth-child(2) { grid-template-columns: 1fr 1fr !important; }
}

/* Amélioration des tarif-cards */
.tarif-card { transition: transform 0.25s, box-shadow 0.25s; }
.tarif-card:hover:not(.featured) { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.3); }

/* Amélioration des presta-cards */
.presta-card { transition: border-color 0.3s, transform 0.25s; }
.presta-card:hover { border-color: rgba(201,169,97,0.5) !important; transform: translateY(-3px); }

/* Meilleur contraste texte stone sur fond sombre */
.section-body { color: #9A8E7A; }

/* Animation d'entrée plus douce */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ BLOG ═══════════════════════════════════════════════════════════ */
#blog {
  padding: 7rem 0;
  background: linear-gradient(180deg, #0A0908 0%, #0E0C09 100%);
  border-top: 0.5px solid rgba(201,169,97,0.1);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.blog-card {
  background: #111009;
  border: 0.5px solid rgba(201,169,97,0.12);
  padding: 1.8rem;
  cursor: pointer;
  transition: border-color 0.3s, transform 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  border-color: rgba(201,169,97,0.45);
  transform: translateY(-3px);
}
.blog-card-date {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #C9A961;
  margin-bottom: 0.8rem;
}
.blog-card-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #F5F2EC;
  line-height: 1.45;
  margin-bottom: 0.8rem;
  flex: 1;
}
.blog-card-desc {
  font-size: 0.78rem;
  color: #9A8E7A;
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-card-meta {
  font-size: 0.65rem;
  color: #6B6050;
  letter-spacing: 0.1em;
}
.blog-card-skeleton {
  background: #111009;
  border: 0.5px solid rgba(201,169,97,0.08);
  padding: 1.8rem;
  min-height: 180px;
}
.blog-sk-line {
  height: 10px;
  background: rgba(201,169,97,0.08);
  margin-bottom: 0.8rem;
  animation: blogPulse 1.5s ease-in-out infinite;
}
@keyframes blogPulse {
  0%,100% { opacity: 0.4; }
  50%      { opacity: 0.9; }
}
/* Article ouvert */
.blog-article-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10,9,8,0.97);
  z-index: 8000;
  overflow-y: auto;
  padding: 4rem 2rem;
}
.blog-article-overlay.open { display: block; }
.blog-article-inner {
  max-width: 720px;
  margin: 0 auto;
}
.blog-article-back {
  background: none;
  border: 0.5px solid rgba(201,169,97,0.35);
  color: #C9A961;
  padding: 8px 20px;
  cursor: pointer;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  display: inline-block;
}
.blog-article-back:hover { background: rgba(201,169,97,0.1); }
.blog-article-date {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: #C9A961;
  margin-bottom: 1rem;
  text-transform: uppercase;
}
.blog-article-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  color: #F5F2EC;
  line-height: 1.3;
  margin-bottom: 2rem;
  font-weight: 300;
}
.blog-article-body {
  color: #9A8E7A;
  font-size: 0.92rem;
  line-height: 1.9;
}
.blog-article-body h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  color: #F5F2EC;
  margin: 2rem 0 0.8rem;
  font-weight: 400;
}
.blog-article-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  color: #C9A961;
  margin: 1.5rem 0 0.5rem;
  font-weight: 400;
}
.blog-article-body p { margin-bottom: 1.2rem; }
.blog-article-body ul {
  margin: 0.8rem 0 1.2rem 1.5rem;
  list-style: none;
}
.blog-article-body ul li::before {
  content: "—";
  color: #C9A961;
  margin-right: 0.6rem;
}
.blog-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: #6B6050;
  font-style: italic;
  font-size: 0.9rem;
}
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-article-title { font-size: 1.6rem; }
}

.nav-gallery-link { font-size:0.65rem; letter-spacing:0.15em; color:var(--stone); text-decoration:none; transition:color 0.2s; }
.nav-gallery-link:hover { color:var(--cream); }
.btn-gallery-access { background:none; border:0.5px solid rgba(201,169,97,0.4); color:var(--gold); padding:8px 20px; font-size:0.72rem; letter-spacing:0.12em; text-decoration:none; text-transform:uppercase; white-space:nowrap; transition:all 0.2s; }
.btn-gallery-access:hover { background:rgba(201,169,97,0.1); }
.footer-gallery-link { font-size:0.72rem; color:var(--stone); text-decoration:none; letter-spacing:0.1em; border:0.5px solid rgba(201,169,97,0.2); padding:6px 16px; transition:all 0.2s; }
.footer-gallery-link:hover { border-color:rgba(201,169,97,0.5); color:var(--cream); }

.nav-pay-link {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  text-decoration: none;
  border: 0.5px solid rgba(201,169,97,0.4);
  padding: 4px 12px;
  transition: all 0.2s;
}
.nav-pay-link:hover {
  background: rgba(201,169,97,0.1);
}

.tarif-pay {
  background: none;
  border: 0.5px solid rgba(201,169,97,0.25);
  color: var(--stone);
  margin-top: 0.4rem;
  font-size: 0.65rem;
}
.tarif-pay:hover {
  background: rgba(201,169,97,0.08);
  color: var(--gold);
  border-color: rgba(201,169,97,0.5);
}

/* ═══════════════════════════════════════
   IPHONE PORTRAIT — améliorations
═══════════════════════════════════════ */
@media (max-width: 480px) {
  /* Sections — padding réduit */
  #prestations, #philosophie, #tarifs, #galerie, #temoignages,
  #zone, #contact, #documents, #galerie-full, #phototherapie,
  #c2pa, #blog { padding: 3.5rem 0; }

  /* Section inner — marges latérales */
  .section-inner { padding: 0 1.1rem; }

  /* Titres */
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem) !important; }
  .section-label { font-size: 0.55rem; }

  /* Stats — 1 colonne sur petit écran */
  .stats-grid { grid-template-columns: 1fr !important; gap: 0.8rem; }

  /* Hero */
  .hero-tagline { font-size: clamp(2rem, 9vw, 3rem) !important; }
  .hero-sub { font-size: 0.75rem; }
  .hero-actions { flex-direction: column; align-items: center; gap: 0.8rem; }
  .hero-actions a, .hero-actions button { width: 100%; text-align: center; justify-content: center; }

  /* Nav */
  nav { padding: 0 1rem; }

  /* Galerie masonry — 1 colonne sur très petit écran */
  .gallery-masonry { columns: 1; }

  /* Cards tarifs */
  .tarif-card { padding: 1.8rem 1.2rem; }

  /* Temoignages */
  .temoignage { padding: 1.5rem 1.2rem; }

  /* Contact form */
  .contact-form { padding: 1.5rem 1.2rem; }

  /* Blog article overlay */
  .blog-article-overlay { padding: 2rem 1rem; }
  .blog-article-title { font-size: 1.4rem; }

  /* Presta cards */
  .presta-card { padding: 1.5rem; }

  /* Doc cards */
  .doc-card { padding: 1.5rem 1.2rem; }

  /* Photothérapie */
  .pt-card { padding: 1.5rem; }
  .pt-intro { font-size: 0.92rem; padding-left: 1rem; }
  .pt-situations { grid-template-columns: 1fr; }

  /* C2PA */
  .c2pa-usages { grid-template-columns: 1fr; }

  /* Boutons */
  .btn-primary, .btn-secondary { padding: 12px 24px; font-size: 0.68rem; width: 100%; text-align: center; justify-content: center; }

  /* Scroll indicator hero */
  .hero-scroll { display: none; }

  /* Toast */
  .toast { right: 1rem; left: 1rem; max-width: 100%; }

  /* WhatsApp flottant */
  .wa-float { bottom: 1.5rem; right: 1rem; width: 44px; height: 44px; font-size: 1.3rem; }
}
    #faq details{border-bottom:1px solid var(--gold-t);padding:1.1rem 0}
    #faq details:first-of-type{border-top:1px solid var(--gold-t)}
    #faq summary{font-family:'Cormorant Garamond',serif;font-size:1.05rem;font-weight:500;color:var(--white);cursor:pointer;list-style:none;display:flex;justify-content:space-between;align-items:center;gap:1rem}
    #faq summary::after{content:'+';font-family:'Jost',sans-serif;font-size:1.2rem;color:var(--gold);flex-shrink:0;transition:transform .2s}
    #faq details[open] summary::after{transform:rotate(45deg)}
    #faq details p{color:var(--stone);font-size:.9rem;line-height:1.75;margin-top:.75rem;padding-right:1.5rem}

/* ═══════════════════════════════════════
   PRINT
═══════════════════════════════════════ */
@media print {
  nav, .hero-scroll, #temoignages, #galerie, #galerie-full,
  .tarif-cta, .form-submit, footer .footer-legal,
  .wa-float, #toast, #lightbox, #blogArticleOverlay, #legal-overlay { display: none !important; }
  body { background: #fff; color: #000; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .section-inner { max-width: 100%; padding: 0; }
  #hero { height: auto; min-height: 0; padding: 2rem 0; }
  .hero-bg { display: none; }
  .hero-content { position: static; color: #000; }
  .hero-tagline, .section-title { color: #000; font-size: 18pt; }
  .presta-desc, .section-body { color: #333; }
}
