/*
@charset "UTF-8";
	Theme Name: Dr Marin - Orthodontiste a Rennes
	Theme URI: https://naturedigitale.fr
	Description: Theme cabinet orthodontie Dr Marin - Nature Digitale
	Author: Nature Digitale - Agence Web Eco Responsable
	Author URI: https://naturedigitale.fr
	Version: 1.0.0
	License: GNU General Public License v3 or later.
	License URI: https://www.gnu.org/licenses/gpl-3.0.html
	Text Domain: nature-digitale
*/

/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --coral: #D64B6A;
  --coral-light: #E8899A;
  --coral-pale: #FDF0F2;
  --navy: #1B2A4A;
  --navy-deep: #0F1B33;
  --navy-light: #2D4470;
  --cream: #FAF8F5;
  --warm-white: #FEFDFB;
  --sand: #E8E0D4;
  --wood: #C4A882;
  --text: #2A2A2A;
  --text-light: #6B6B6B;
  --text-on-dark: #E8E4DF;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Outfit', system-ui, sans-serif;
  --radius: 4px;
  --radius-lg: 12px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--text);
  background: var(--warm-white);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

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

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: 65ch; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--coral);
}

/* ============================================
   LAYOUT HELPERS
   ============================================ */
.container {
  width: min(1200px, 90%);
  margin-inline: auto;
}

.section-pad {
  padding: clamp(60px, 10vw, 120px) 0;
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.75rem 0;
  background: rgba(255, 255, 253, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 15px rgba(27, 42, 74, 0.05);
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.header.scrolled {
  background: rgba(255, 255, 253, 0.98);
  box-shadow: 0 1px 20px rgba(27, 42, 74, 0.08);
  padding: 0.6rem 0;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.logo img {
  height: 44px;
  width: auto;
  transition: height var(--transition);
}

.header.scrolled .logo img { height: 36px; }

.logo-text {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-weight: 300;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-light);
}

nav { display: flex; align-items: center; gap: 1.8rem; }

nav > a, .nav-dropdown > .nav-parent {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
  padding: 0;
}

nav > a::after, .nav-parent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--coral);
  transition: width var(--transition);
}

nav > a:hover::after, .nav-dropdown:hover .nav-parent::after { width: 100%; }
nav > a:hover, .nav-dropdown:hover .nav-parent { color: var(--coral); }

/* Dropdown menus */
.nav-dropdown {
  position: relative;
}

.nav-parent svg {
  width: 10px;
  height: 10px;
  margin-left: 3px;
  vertical-align: middle;
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-parent svg { transform: rotate(180deg); }

.nav-sub {
  position: absolute;
  top: 100%;
  left: -1rem;
  padding-top: 0.75rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: all 0.3s ease;
}

.nav-dropdown:hover .nav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-sub-inner {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  padding: 0.6rem 0;
  min-width: 220px;
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-sub a {
  display: block;
  padding: 0.55rem 1.3rem;
  font-size: 0.85rem;
  color: var(--text);
  transition: all var(--transition);
  white-space: nowrap;
}

.nav-sub a::after { display: none; }

.nav-sub a:hover {
  background: var(--coral-pale);
  color: var(--coral);
}

.nav-cta {
  background: var(--coral);
  color: white !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition);
}

.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--navy); transform: translateY(-1px); }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.hero-content {
  padding: clamp(100px, 15vh, 160px) clamp(2rem, 6vw, 6rem);
  padding-right: clamp(1rem, 3vw, 3rem);
  position: relative;
  z-index: 2;
}

.hero-content .eyebrow {
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.3s forwards;
}

.hero-content h1.eyebrow {
  font-family: var(--sans);
  font-size: 0.8rem;
  line-height: 1.5;
}

.hero-headline {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.15;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--navy);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeUp 0.8s 0.5s forwards;
}

.hero-headline em {
  font-style: italic;
  color: var(--coral);
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.7s forwards;
}

.hero-cta-group {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.8s 0.9s forwards;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--coral);
  color: white;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(214, 75, 106, 0.25);
}

.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(27, 42, 74, 0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--navy);
  padding: 0.9rem 1.5rem;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.btn-secondary:hover {
  border-color: var(--coral);
  color: var(--coral);
}

.hero-image {
  position: relative;
  height: 100%;
  min-height: 100vh;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  background: linear-gradient(90deg, var(--cream), transparent);
  z-index: 1;
}

.hero-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--coral-light), transparent);
}

/* ============================================
   SECTION : DR MARIN (ABOUT)
   ============================================ */
.about {
  background: var(--warm-white);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
}

.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: top center;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  top: -12px;
  right: -12px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--coral-light);
  border-radius: var(--radius-lg);
  z-index: -1;
  opacity: 0.4;
}

.about-text .eyebrow { margin-bottom: 1rem; }

.about-text h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.about-text h2 em {
  font-style: italic;
  color: var(--coral);
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--sand);
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--coral);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--coral);
  margin-top: 1rem;
  transition: gap var(--transition);
}

.about-link:hover { gap: 0.8rem; }

.about-link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition);
}

.about-link:hover svg { transform: translateX(3px); }

/* ============================================
   SECTION : TRAITEMENTS
   ============================================ */
.treatments {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  position: relative;
  overflow: hidden;
}

.treatments::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 75, 106, 0.08), transparent 70%);
  pointer-events: none;
}

.treatments .eyebrow { color: var(--coral-light); }

.treatments-header {
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 4rem);
}

.treatments-header h2 {
  color: white;
  margin-top: 0.8rem;
}

.treatments-header p {
  color: var(--text-on-dark);
  margin: 1rem auto 0;
  max-width: 55ch;
  font-size: 1rem;
  opacity: 0.8;
}

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

.treatment-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.treatment-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.treatment-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(214, 75, 106, 0.3);
  transform: translateY(-4px);
}

.treatment-card:hover::before { transform: scaleX(1); }

.treatment-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(214, 75, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.3rem;
}

.treatment-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--coral-light);
}

.treatment-card h3 {
  color: white;
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.treatment-card p {
  font-size: 0.88rem;
  line-height: 1.6;
  opacity: 0.7;
  margin-bottom: 1.2rem;
}

.treatment-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--coral-light);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap var(--transition), color var(--transition);
}

.treatment-link:hover {
  color: white;
  gap: 0.5rem;
}

/* ============================================
   SECTION : POURQUOI NOUS
   ============================================ */
.why-us {
  background: var(--cream);
  position: relative;
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}

.why-us-content .eyebrow { margin-bottom: 1rem; }

.why-us-content h2 {
  color: var(--navy);
  margin-bottom: 2rem;
}

.advantage {
  display: flex;
  gap: 1.2rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

.advantage-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral);
  font-size: 1.1rem;
  margin-top: 0.15rem;
}

.advantage-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--coral);
}

.advantage h3 {
  color: var(--navy);
  margin-bottom: 0.3rem;
  font-size: 1.1rem;
}

.advantage p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}

.why-us-image {
  position: relative;
}

.why-us-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.why-us-image .floating-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 1.2rem 1.5rem;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 1rem;
}

.floating-card-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--coral);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
}

.floating-card-icon svg {
  width: 20px;
  height: 20px;
  stroke: white;
}

.floating-card-text {
  font-size: 0.85rem;
  line-height: 1.4;
}

.floating-card-text strong {
  display: block;
  font-weight: 600;
  color: var(--navy);
}

/* ============================================
   SECTION : GALERIE
   ============================================ */
.gallery {
  background: var(--warm-white);
}

.gallery-header {
  text-align: center;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.gallery-header h2 {
  color: var(--navy);
  margin-top: 0.8rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 1fr;
  grid-auto-rows: auto;
  gap: 1rem;
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius-lg);
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  max-height: 350px;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-item:nth-child(1) { grid-row: 1 / 3; }
.gallery-item:nth-child(1) img { max-height: none; }

.gallery-item .gallery-label {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: rgba(27, 42, 74, 0.85);
  backdrop-filter: blur(8px);
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ============================================
   SECTION : FAQ
   ============================================ */
.faq {
  background: var(--cream);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.45fr 0.55fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: start;
}

.faq-intro .eyebrow { margin-bottom: 1rem; }

.faq-intro h2 {
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.faq-intro p {
  color: var(--text-light);
  font-size: 0.95rem;
}

.faq-intro .faq-contact-hint {
  margin-top: 2rem;
  padding: 1.2rem 1.5rem;
  background: white;
  border-radius: var(--radius-lg);
  border-left: 3px solid var(--coral);
}

.faq-contact-hint p {
  font-size: 0.88rem;
  margin: 0;
}

.faq-contact-hint a {
  color: var(--coral);
  font-weight: 500;
}

.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

.faq-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}

.faq-item.active { border-color: var(--coral-light); }

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--navy);
  transition: color var(--transition);
  gap: 1rem;
}

.faq-question:hover { color: var(--coral); }

.faq-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--coral-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  font-size: 1rem;
  line-height: 1;
  color: var(--coral);
}

.faq-item.active .faq-icon {
  background: var(--coral);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.3s;
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.8;
}

/* ============================================
   SECTION : ACCES & HORAIRES
   ============================================ */
.location {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  position: relative;
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}

.location .eyebrow { color: var(--coral-light); }

.location h2 {
  color: white;
  margin-top: 0.8rem;
  margin-bottom: 2rem;
}

.location-info { display: flex; flex-direction: column; gap: 1.5rem; }

.location-detail {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.location-detail-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(214, 75, 106, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--coral-light);
  font-size: 1rem;
}

.location-detail-icon svg {
  width: 16px;
  height: 16px;
  stroke: var(--coral-light);
}

.location-detail h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.location-detail p {
  font-size: 0.88rem;
  opacity: 0.7;
  line-height: 1.6;
}

.location-detail a {
  color: var(--coral-light);
  font-weight: 500;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 0.5rem;
}

.hour-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 1.5rem;
}

.hour-day { font-weight: 500; color: white; min-width: 90px; }
.hour-time { opacity: 0.7; }

.location-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 400px;
}

.location-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.8) contrast(1.1);
}

/* ============================================
   SECTION : CTA FINAL
   ============================================ */
.final-cta {
  background: var(--cream);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 75, 106, 0.06), transparent 70%);
  pointer-events: none;
}

.final-cta h2 {
  color: var(--navy);
  margin-bottom: 1rem;
}

.final-cta p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin: 0 auto 2.5rem;
  max-width: 50ch;
}

.final-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--navy);
  color: white;
  padding: 1rem 2rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.2);
}

.btn-phone:hover {
  background: var(--coral);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(214, 75, 106, 0.3);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-deep);
  color: var(--text-on-dark);
  padding: 3.5rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand .logo { margin-bottom: 1rem; }
.footer-brand .logo-text { color: white; }
.footer-brand .logo-text span { color: rgba(255, 255, 255, 0.5); }

.footer-brand p {
  font-size: 0.85rem;
  opacity: 0.6;
  line-height: 1.7;
  max-width: 30ch;
}

.footer h4 {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: white;
  margin-bottom: 1.2rem;
}

.footer ul { list-style: none; }

.footer li {
  margin-bottom: 0.6rem;
}

.footer li a {
  font-size: 0.88rem;
  opacity: 0.6;
  transition: opacity var(--transition), color var(--transition);
}

.footer li a:hover { opacity: 1; color: var(--coral-light); }

.footer-hours {
  font-size: 0.85rem;
}

.footer-hours .fh-row {
  display: flex;
  justify-content: space-between;
  padding: 0.35rem 0;
  opacity: 0.6;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  opacity: 0.4;
}

.footer-bottom a { text-decoration: underline; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reveal animations desactivees temporairement - contenu visible par defaut */

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

@media (max-width: 768px) {
  nav { display: none; }
  nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 253, 0.98);
    backdrop-filter: blur(20px);
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 99;
  }
  nav.open a { font-size: 1.2rem; }
  nav.open .nav-dropdown { display: none; }
  .menu-toggle { display: flex; z-index: 101; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-image {
    min-height: 50vh;
    max-height: 400px;
    order: -1;
  }
  .hero-image::before { display: none; }
  .hero-content {
    padding: 2.5rem 1.5rem 3rem;
  }

  .about-grid { grid-template-columns: 1fr; }
  .about-image-wrapper { max-width: 350px; margin: 0 auto; }
  .about-stats { grid-template-columns: repeat(3, 1fr); }

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

  .why-us-grid { grid-template-columns: 1fr; }
  .why-us-image { order: -1; max-width: 400px; margin: 0 auto; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }
  .gallery-item:nth-child(1) { grid-row: auto; grid-column: 1 / -1; }

  .faq-layout { grid-template-columns: 1fr; }

  .location-grid { grid-template-columns: 1fr; }
  .location-map { min-height: 300px; }

  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}

@media (max-width: 480px) {
  .about-stats { grid-template-columns: 1fr; gap: 1rem; }
  .about-stats .stat { text-align: left; display: flex; align-items: baseline; gap: 0.6rem; }
  .hero-cta-group { flex-direction: column; align-items: stretch; }
  .btn-primary, .btn-secondary, .btn-phone { justify-content: center; }
  .final-cta-buttons { flex-direction: column; align-items: center; }
  .hours-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PAGES LEGALES
   ============================================ */
.legal-page {
  padding-top: clamp(120px, 15vw, 180px);
  padding-bottom: clamp(60px, 8vw, 120px);
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--coral);
}

.legal-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--navy);
  margin-top: 2rem;
  margin-bottom: 0.8rem;
}

.legal-content p,
.legal-content li {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text);
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-content li {
  margin-bottom: 0.3rem;
}

.legal-content a {
  color: var(--coral);
  text-decoration: underline;
}

.legal-content a:hover {
  color: var(--navy);
}

.legal-content strong {
  color: var(--navy);
}
