/* ============================================
   DR CHARDON — Design System
   Style OrthoClermont (noir/rouge, Inter)
   ============================================ */

/* ---------- Design Tokens ---------- */
:root {
  --accent: #ff5149;
  --accent-dark: #e0433c;
  --black: #0a0a0a;
  --dark: #1a1a1a;
  --gray-900: #222;
  --gray-700: #555;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-100: #f5f5f5;
  --white: #ffffff;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-w: 1300px;
  --ease: cubic-bezier(0.25, 1, 0.5, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ---------- Container ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.2rem 0;
  transition: all 0.4s var(--ease);
}
.nav--scrolled {
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 20px rgba(0,0,0,0.06);
  padding: 0.8rem 0;
}
.nav__inner {
  max-width: var(--max-w);
  margin: 0 auto; padding: 0 2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo {
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em;
  transition: color 0.3s;
}
.nav--scrolled .nav__logo { color: var(--black); }
.nav__logo span { color: var(--accent); }
.nav__links {
  display: flex; align-items: center; gap: 2rem;
}
.nav__link {
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color 0.3s; position: relative;
}
.nav--scrolled .nav__link { color: var(--gray-700); }
.nav__link:hover { color: var(--accent); }
.nav__link::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after { width: 100%; }
.nav__phone {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--white);
  padding: 0.6rem 1.4rem; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600;
  transition: all 0.3s var(--ease);
}
.nav__phone:hover { background: var(--accent-dark); transform: translateY(-1px); }
.nav__phone svg { width: 16px; height: 16px; }
.nav__lang {
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  color: var(--gray-500); border: 1px solid var(--gray-300);
  padding: 0.35rem 0.7rem; border-radius: 4px;
  transition: all 0.2s ease;
}
.nav__lang:hover { color: var(--accent); border-color: var(--accent); }
.nav--scrolled .nav__lang { color: var(--gray-500); }
/* Dropdown — Traitements */
.nav__dropdown { position: relative; }
.nav__dropdown-toggle {
  display: flex; align-items: center; gap: 0.3rem;
  font-size: 0.85rem; font-weight: 500;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.02em;
  transition: color 0.3s; position: relative;
  cursor: pointer;
}
.nav--scrolled .nav__dropdown-toggle { color: var(--gray-700); }
.nav__dropdown-toggle:hover { color: var(--accent); }
.nav__dropdown-toggle::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent);
  transition: width 0.3s var(--ease);
}
.nav__dropdown-toggle:hover::after { width: 100%; }
.nav__chevron {
  width: 12px; height: 12px;
  transition: transform 0.3s var(--ease);
  flex-shrink: 0;
}
.nav__dropdown:hover .nav__chevron { transform: rotate(180deg); }
.nav__dropdown-menu {
  position: absolute; top: calc(100% + 12px); left: 50%;
  transform: translateX(-50%);
  min-width: 220px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  padding: 0.5rem 0;
  opacity: 0; visibility: hidden;
  transition: all 0.25s var(--ease);
  pointer-events: none;
}
.nav__dropdown:hover .nav__dropdown-menu {
  opacity: 1; visibility: visible;
  pointer-events: auto;
}
.nav__dropdown-menu::before {
  content: ''; position: absolute; top: -8px; left: 0; right: 0; height: 8px;
}
.nav__dropdown-item {
  display: block; padding: 0.6rem 1.25rem;
  font-size: 0.82rem; font-weight: 500;
  color: var(--gray-700);
  transition: all 0.2s ease;
  white-space: nowrap;
}
.nav__dropdown-item:hover {
  color: var(--accent); background: rgba(255,81,73,0.05);
}

.nav__burger {
  display: none; flex-direction: column; gap: 5px;
  width: 26px; z-index: 10;
}
.nav__burger span {
  display: block; width: 100%; height: 2px;
  background: var(--white); transition: all 0.3s var(--ease);
}
.nav--scrolled .nav__burger span { background: var(--black); }
.nav__burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.active span:nth-child(2) { opacity: 0; }
.nav__burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.4s var(--ease);
}
.mobile-menu.active { opacity: 1; visibility: visible; }
.mobile-menu__nav { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.mobile-menu__link {
  font-size: 1.5rem; font-weight: 700;
  color: var(--black);
  transition: color 0.3s;
}
.mobile-menu__link:hover { color: var(--accent); }
.mobile-menu__link--cta {
  font-size: 0.9rem; font-weight: 600;
  background: var(--accent); color: var(--white);
  padding: 0.8rem 2rem; border-radius: 50px;
  margin-top: 1rem;
}

/* Mobile Accordion — Traitements */
.mobile-menu__accordion { text-align: center; }
.mobile-menu__accordion-toggle {
  display: inline-flex; align-items: center; gap: 0.4rem;
  font-size: 1.5rem; font-weight: 700;
  color: var(--black); background: none; border: none;
  cursor: pointer; transition: color 0.3s;
  font-family: var(--font);
}
.mobile-menu__accordion-toggle:hover { color: var(--accent); }
.mobile-menu__accordion-chevron {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease);
}
.mobile-menu__accordion.active .mobile-menu__accordion-chevron {
  transform: rotate(180deg);
}
.mobile-menu__accordion-body {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s var(--ease);
}
.mobile-menu__accordion.active .mobile-menu__accordion-body {
  max-height: 300px;
}
.mobile-menu__sub-link {
  display: block;
  font-size: 1rem; font-weight: 500;
  color: var(--gray-700); padding: 0.4rem 0;
  transition: color 0.3s;
}
.mobile-menu__sub-link:hover { color: var(--accent); }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh; min-height: 100dvh;
  display: flex; align-items: center; justify-content: center;
  background: var(--black); overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; overflow: hidden;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.7) 100%);
  z-index: 1;
}
.hero__video {
  position: absolute; top: 50%; left: 50%;
  min-width: 100%; min-height: 100%;
  width: auto; height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}
.hero__content {
  position: relative; z-index: 1;
  text-align: center; padding: 0 2rem; max-width: 900px;
}
.hero__label {
  display: inline-block;
  font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.25em; text-transform: uppercase;
  color: rgba(255,255,255,0.85); margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.2s forwards;
}
.hero__title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900; color: var(--white);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.4s forwards;
}
.hero__title em { font-style: normal; font-weight: 300; color: rgba(255,255,255,0.7); }
.hero__sub {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: rgba(255,255,255,0.7); font-weight: 300;
  line-height: 1.8; max-width: 620px; margin: 0 auto 2.5rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.6s forwards;
}
.hero__cta {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--white);
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.04em;
  transition: all 0.3s var(--ease);
  opacity: 0; animation: fadeUp 0.8s var(--ease) 0.8s forwards;
}
.hero__cta:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255,81,73,0.3); }
.hero__scroll {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%); z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
}
.hero__scroll span {
  font-size: 0.65rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.4);
}
.hero__scroll-line {
  width: 1px; height: 40px; background: rgba(255,255,255,0.15);
  position: relative; overflow: hidden;
}
.hero__scroll-line::after {
  content: ''; position: absolute; top: -100%; left: 0;
  width: 100%; height: 100%; background: var(--accent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollPulse {
  0%   { top: -100%; }
  50%  { top: 100%; }
  100% { top: 100%; }
}

/* ============================================
   DISTANCES
   ============================================ */
.distances { padding: 3.5rem 0 4rem; background: var(--white); }
.distances__headline {
  text-align: center; margin-bottom: 2.5rem;
}
.distances__headline p {
  font-size: 1.05rem; color: var(--gray-700); font-weight: 400;
}
.distances__headline strong { color: var(--black); font-weight: 700; }
.distances__headline span { color: var(--gray-500); font-size: 0.9rem; }
.distances__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0.75rem;
}
.distance-card {
  background: var(--gray-100); border-radius: 14px;
  padding: 1.25rem 1.25rem 1rem;
  transition: all 0.3s var(--ease);
  text-align: center;
  flex-shrink: 0;
  display: flex; flex-direction: column;
}
.distance-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.06); }
.distance-card__name {
  font-size: 0.85rem; font-weight: 700; color: var(--black);
  margin-bottom: 0.75rem; line-height: 1.3;
}
.distance-card__modes {
  display: flex; flex-direction: column; gap: 0.4rem;
  margin-top: auto;
}
.distance-card__row {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.8rem; color: var(--gray-700);
  padding: 0.3rem 0; white-space: nowrap;
}
.distance-card__row svg { color: var(--accent); flex-shrink: 0; }
.distance-card__row strong { font-weight: 700; color: var(--black); min-width: 42px; }
.distance-card__row small { font-weight: 400; color: var(--gray-500); font-size: 0.72rem; }

/* Also accessible — compact city list */
.distances__also {
  max-width: var(--max-w); margin: 1.5rem auto 0; padding: 0 2rem;
  text-align: center;
}
.distances__also p {
  font-size: 0.88rem; color: var(--gray-700); line-height: 2;
}
.distances__city {
  display: inline-block;
  background: var(--gray-100); border-radius: 6px;
  padding: 0.2rem 0.65rem; margin: 0.2rem 0.15rem;
  font-size: 0.82rem; font-weight: 600; color: var(--black);
  white-space: nowrap;
}
.distances__city small {
  font-weight: 400; color: var(--gray-500); font-size: 0.72rem;
}
.distances__link {
  display: inline-block; margin-top: 0.75rem;
  font-size: 0.82rem; font-weight: 600; color: var(--accent);
  transition: color 0.2s;
}
.distances__link:hover { color: var(--accent-dark); }

/* ============================================
   SECTIONS SHARED
   ============================================ */
.section { padding: clamp(4rem, 10vw, 7rem) 0; }
.section__inner { max-width: var(--max-w); margin: 0 auto; padding: 0 2rem; }
.section__label {
  font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.75rem;
}
.section__title {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  color: var(--black); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.section__title em { font-style: normal; font-weight: 300; color: var(--gray-500); }
.section__subtitle {
  font-size: 1.05rem; color: var(--gray-700);
  line-height: 1.7; max-width: 600px;
}
.section__header { margin-bottom: 3.5rem; }
.section__header--center { text-align: center; }
.section__header--center .section__subtitle { margin: 0 auto; }

/* ============================================
   TREATMENTS
   ============================================ */
.treatments { background: var(--white); }
.treatments__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem;
}
.treat-card {
  background: var(--gray-100); border-radius: 16px;
  padding: 2rem 1.5rem; text-align: center;
  transition: all 0.4s var(--ease);
  position: relative; overflow: hidden; cursor: pointer;
  display: block; color: inherit; text-decoration: none;
}
.treat-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.treat-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.08); }
.treat-card:hover::before { transform: scaleX(1); }
.treat-card__icon {
  width: 64px; height: 64px; margin: 0 auto 1.25rem;
  background: var(--white); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s var(--ease);
}
.treat-card__emoji { font-size: 2rem; line-height: 1; }
.treat-card:hover .treat-card__icon { background: var(--accent); }
.treat-card__title { font-size: 0.95rem; font-weight: 700; color: var(--black); line-height: 1.3; }

/* ============================================
   TAGLINE
   ============================================ */
.tagline {
  background: var(--black);
  padding: clamp(4rem, 8vw, 6rem) 0;
  position: relative;
}
.tagline__wave {
  position: absolute; top: -1px; left: 0; right: 0;
  overflow: hidden; line-height: 0;
}
.tagline__wave svg { display: block; width: 100%; height: 60px; }
.tagline__inner { max-width: 900px; margin: 0 auto; padding: 0 2rem; text-align: center; }
.tagline__text {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300; color: var(--white); line-height: 1.6;
}
.tagline__text strong { font-weight: 700; color: var(--accent); }

/* ============================================
   ABOUT (Dr Chardon)
   ============================================ */
.about { background: var(--gray-100); }
.about__grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
}
.about__photo {
  width: 100%; aspect-ratio: 3/4;
  object-fit: cover; object-position: center top;
  border-radius: 20px;
}
.about__text { margin-bottom: 2rem; }
.about__text p {
  font-size: 0.95rem; color: var(--gray-700);
  line-height: 1.8; margin-bottom: 0.75rem;
}
.about__text strong { color: var(--gray-900); font-weight: 600; }
.about__quals { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.about__qual:first-child { grid-column: 1 / -1; }
.about__qual {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--white); border-radius: 14px;
  padding: 1.25rem; transition: all 0.3s var(--ease);
}
.about__qual:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.06); }
.about__qual-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,81,73,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.about__qual h4 { font-size: 0.85rem; font-weight: 700; color: var(--black); margin-bottom: 0.15rem; }
.about__qual p { font-size: 0.78rem; color: var(--gray-500); line-height: 1.4; }

/* ============================================
   RESULTS — Interactive Before/After Slider
   ============================================ */
.results { background: var(--white); }
.results__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.ba-slider { position: relative; }
.ba-slider__wrapper {
  position: relative; aspect-ratio: 4/3;
  border-radius: 16px; overflow: hidden;
  cursor: ew-resize; user-select: none; -webkit-user-select: none;
  background: var(--gray-100);
}
.ba-slider__before,
.ba-slider__after {
  position: absolute; inset: 0;
}
.ba-slider__after { clip-path: inset(0 0 0 50%); }
.ba-slider__img {
  width: 100%; height: 100%; display: flex;
  align-items: center; justify-content: center;
}
.ba-slider__teeth { width: 80%; height: 60%; display: flex; align-items: center; justify-content: center; }
.ba-slider__teeth svg { width: 100%; height: 100%; }
.ba-slider__label {
  position: absolute; bottom: 1rem;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  padding: 0.3rem 0.8rem; border-radius: 100px;
  background: rgba(10,10,10,0.6);
  backdrop-filter: blur(4px);
}
.ba-slider__before .ba-slider__label { left: 1rem; }
.ba-slider__after .ba-slider__label { right: 1rem; }
.ba-slider__placeholder {
  position: absolute; inset: 0; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 500; color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em; pointer-events: none;
}
.ba-slider__handle {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 3px; transform: translateX(-50%);
  z-index: 2; pointer-events: none;
}
.ba-slider__handle-line {
  width: 100%; height: 100%;
  background: var(--accent); opacity: 0.9;
}
.ba-slider__handle-circle {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  pointer-events: auto;
}
.ba-slider__caption {
  text-align: center; font-size: 0.82rem;
  color: var(--gray-500); margin-top: 0.75rem;
}
/* ============================================
   FAQ
   ============================================ */
.faq { background: var(--gray-100); }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--gray-300); }
.faq__q {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 1.5rem 0;
  font-size: 1rem; font-weight: 600;
  color: var(--black); text-align: left;
  transition: color 0.3s;
}
.faq__q:hover { color: var(--accent); }
.faq__icon { width: 28px; height: 28px; flex-shrink: 0; position: relative; }
.faq__icon::before, .faq__icon::after {
  content: ''; position: absolute;
  background: var(--gray-500); transition: all 0.35s var(--ease);
}
.faq__icon::before { width: 16px; height: 2px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__icon::after { width: 2px; height: 16px; top: 50%; left: 50%; transform: translate(-50%, -50%); }
.faq__item.active .faq__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.faq__item.active .faq__icon::before { background: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.45s var(--ease), padding 0.45s var(--ease); }
.faq__item.active .faq__a { max-height: 300px; padding-bottom: 1.5rem; }
.faq__a p { font-size: 0.9rem; color: var(--gray-700); line-height: 1.8; }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--black); color: var(--white); position: relative; }
.contact__wave {
  position: absolute; top: -1px; left: 0; right: 0;
  overflow: hidden; line-height: 0;
}
.contact__wave svg { display: block; width: 100%; height: 60px; }
.contact__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 3rem;
}
.contact__col h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1.25rem; color: var(--white); }
.contact__item { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1.25rem; }
.contact__item-icon {
  width: 36px; height: 36px; flex-shrink: 0;
  background: rgba(255,255,255,0.08); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.contact__item p { font-size: 0.85rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.contact__item a { color: rgba(255,255,255,0.7); transition: color 0.3s; }
.contact__item a:hover { color: var(--accent); }
.contact__item strong {
  display: block; color: var(--white);
  font-size: 0.8rem; font-weight: 600;
  margin-bottom: 0.15rem; letter-spacing: 0.04em;
}
.contact__hours { width: 100%; border-collapse: collapse; }
.contact__hours td { font-size: 0.82rem; color: rgba(255,255,255,0.6); padding: 0.4rem 0; }
.contact__hours td:first-child { font-weight: 500; color: rgba(255,255,255,0.8); padding-right: 1.5rem; }
.contact__booking-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--accent); color: var(--white);
  padding: 1rem 2.5rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.02em;
  transition: all 0.3s var(--ease);
}
.contact__booking-btn:hover {
  background: var(--accent-dark); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(255,81,73,0.3);
}
.contact__map-card {
  grid-column: 1 / -1;
  margin-top: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.contact__map-frame {
  width: 100%; height: 320px;
  position: relative;
}
.contact__map-frame iframe {
  width: 100%; height: 100%;
  filter: saturate(0.8) contrast(1.05);
}
#leafletMap { width: 100%; height: 100%; }

/* Leaflet custom marker */
.leaflet-marker-custom { background: none !important; border: none !important; }
.marker-dot {
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 18px;
  background: var(--accent);
  border: 4px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 2px 8px rgba(0,0,0,0.3), 0 0 20px rgba(255,81,73,0.35);
  z-index: 2;
}
.marker-ping {
  position: absolute; top: 50%; left: 50%;
  width: 44px; height: 44px;
  background: rgba(255,81,73,0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  animation: markerPulse 2.5s ease-out infinite;
}
@keyframes markerPulse {
  0%   { transform: translate(-50%,-50%) scale(0.5); opacity: 1; }
  100% { transform: translate(-50%,-50%) scale(2.2); opacity: 0; }
}
.leaflet-popup-content-wrapper {
  background: #fff !important;
  color: #1a1a1a !important;
  border-radius: 14px !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12) !important;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.leaflet-popup-tip { background: #fff !important; }
.leaflet-popup-content { margin: 12px 16px !important; font-size: 14px; line-height: 1.5; }
.leaflet-popup-content strong { color: var(--accent); }
.leaflet-control-zoom { border: none !important; box-shadow: 0 2px 12px rgba(0,0,0,0.1) !important; border-radius: 10px !important; overflow: hidden; }
.leaflet-control-zoom a {
  background: #fff !important; color: #333 !important;
  border-color: rgba(0,0,0,0.08) !important;
  width: 36px !important; height: 36px !important; line-height: 36px !important;
  font-size: 16px !important;
}
.leaflet-control-zoom a:hover { background: #f5f5f5 !important; }
.leaflet-control-attribution {
  background: rgba(255,255,255,0.75) !important;
  color: rgba(0,0,0,0.4) !important;
  font-size: 10px !important;
  backdrop-filter: blur(4px);
}
.leaflet-control-attribution a { color: rgba(0,0,0,0.5) !important; }
.contact__map-info {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.contact__map-pin {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent); border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
}
.contact__map-info strong {
  display: block; font-size: 0.85rem; font-weight: 600;
  color: var(--white); margin-bottom: 0.1rem;
}
.contact__map-info span {
  font-size: 0.78rem; color: rgba(255,255,255,0.5);
}
.contact__map-link {
  margin-left: auto;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.8rem; font-weight: 600;
  color: var(--accent);
  padding: 0.5rem 1.2rem; border-radius: 50px;
  border: 1px solid rgba(255,81,73,0.3);
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}
.contact__map-link:hover {
  background: var(--accent); color: var(--white);
  border-color: var(--accent);
}

/* ---------- Contact Form ---------- */
.contact__col--form { position: relative; }
.contact-form { display: flex; flex-direction: column; gap: 0.6rem; }
.contact-form__input {
  display: block; width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  font-family: var(--font); font-size: 0.85rem;
  color: var(--white); background: rgba(255,255,255,0.06);
  transition: border-color 0.2s ease;
}
.contact-form__input::placeholder { color: rgba(255,255,255,0.35); }
.contact-form__input:focus { outline: none; border-color: var(--accent); }
.contact-form__textarea { resize: vertical; min-height: 80px; }
.contact-form__submit {
  display: block; width: 100%;
  background: var(--accent); color: var(--white);
  padding: 0.8rem; border-radius: 50px; border: none;
  font-family: var(--font); font-size: 0.85rem; font-weight: 600;
  cursor: pointer; transition: all 0.3s var(--ease);
  margin-top: 0.25rem;
}
.contact-form__submit:hover { background: var(--accent-dark); }
.contact-form__submit:disabled { opacity: 0.6; cursor: wait; }
.contact-form__confirm {
  text-align: center; padding: 2rem 0;
  animation: bwFadeIn 0.35s var(--ease);
}
.contact-form__confirm svg { color: var(--accent); margin-bottom: 0.75rem; }
.contact-form__confirm h4 {
  font-size: 1.1rem; font-weight: 700;
  color: var(--white); margin-bottom: 0.4rem;
}
.contact-form__confirm p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.6; }

/* ============================================
   BOOKING WIDGET
   ============================================ */
.booking-widget {
  background: var(--white);
  border: 1px solid var(--gray-300);
  border-radius: 16px;
  padding: 2rem;
  overflow: hidden;
}
.booking-widget__cal-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.booking-widget__month {
  font-size: 1rem; font-weight: 600;
  color: var(--black); text-transform: capitalize;
}
.booking-widget__nav {
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500);
  border: 1px solid var(--gray-300);
  transition: all 0.2s ease;
}
.booking-widget__nav:hover { border-color: var(--accent); color: var(--accent); }
.booking-widget__nav:disabled { opacity: 0.3; pointer-events: none; }
.booking-widget__weekdays {
  display: grid; grid-template-columns: repeat(7, 1fr);
  text-align: center; font-size: 0.7rem; font-weight: 600;
  color: var(--gray-500); letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.booking-widget__days {
  display: grid; grid-template-columns: repeat(7, 1fr);
  gap: 4px; text-align: center;
}
.booking-widget__day {
  aspect-ratio: 1; border-radius: 6px;
  font-size: 0.85rem; font-weight: 500;
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: all 0.2s ease;
  cursor: pointer; border: none; background: none;
}
.booking-widget__day:hover:not(:disabled):not(.booking-widget__day--empty) {
  background: rgba(255,81,73,0.1); color: var(--accent-dark);
}
.booking-widget__day--selected {
  background: var(--accent) !important; color: var(--white) !important;
}
.booking-widget__day:disabled, .booking-widget__day--empty {
  color: var(--gray-300); pointer-events: none;
}
.booking-widget__slots,
.booking-widget__form,
.booking-widget__confirm {
  border-top: 1px solid var(--gray-300);
  padding-top: 1rem; margin-top: 1rem;
  animation: bwFadeIn 0.35s var(--ease);
}
@keyframes bwFadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.booking-widget__slots-label,
.booking-widget__form-label {
  font-size: 0.8rem; font-weight: 500;
  color: var(--gray-500); margin-bottom: 0.75rem;
}
.booking-widget__slots-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 6px;
}
.booking-widget__slot {
  padding: 0.5rem 0; border-radius: 6px;
  font-size: 0.8rem; font-weight: 500;
  color: var(--black); background: var(--gray-100);
  border: 1px solid var(--gray-300);
  transition: all 0.2s ease;
  cursor: pointer; text-align: center;
}
.booking-widget__slot:hover {
  border-color: var(--accent); color: var(--accent-dark);
}
.booking-widget__slot--selected {
  background: var(--accent) !important; color: var(--white) !important;
  border-color: var(--accent) !important;
}
.booking-widget__input {
  display: block; width: 100%;
  padding: 0.75rem 1rem; margin-bottom: 0.75rem;
  border: 1px solid var(--gray-300);
  border-radius: 6px; font-family: var(--font); font-size: 0.9rem;
  color: var(--black); background: var(--gray-100);
  transition: border-color 0.2s ease;
}
.booking-widget__input:focus {
  outline: none; border-color: var(--accent);
}
.booking-widget__confirm { text-align: center; }
.booking-widget__confirm-icon {
  color: var(--accent); margin-bottom: 0.75rem;
}
.booking-widget__confirm h4 {
  font-size: 1.15rem; font-weight: 700;
  color: var(--black); margin-bottom: 0.4rem;
}
.booking-widget__confirm p {
  font-size: 0.85rem; color: var(--gray-500); line-height: 1.6;
}
.booking-widget__submit {
  display: block; width: 100%;
  background: var(--accent); color: var(--white);
  padding: 0.8rem; border-radius: 50px;
  font-size: 0.9rem; font-weight: 600;
  transition: all 0.3s var(--ease);
  cursor: pointer; border: none;
}
.booking-widget__submit:hover { background: var(--accent-dark); }

/* ============================================
   BOOKING MODAL
   ============================================ */
.modal {
  position: fixed; inset: 0; z-index: 200;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden;
  transition: all 0.35s var(--ease);
}
.modal.active { opacity: 1; visibility: visible; }
.modal__backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(6px);
}
.modal__container {
  position: relative; z-index: 1;
  background: var(--white);
  border-radius: 20px;
  width: 90%; max-width: 420px;
  max-height: 90vh; overflow-y: auto;
  box-shadow: 0 25px 80px rgba(0,0,0,0.25);
  transform: translateY(20px) scale(0.97);
  transition: transform 0.35s var(--ease);
}
.modal.active .modal__container { transform: translateY(0) scale(1); }
.modal__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 2rem 0;
}
.modal__title {
  font-size: 1.15rem; font-weight: 700; color: var(--black);
}
.modal__close {
  width: 36px; height: 36px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-500); background: var(--gray-100);
  transition: all 0.2s ease;
}
.modal__close:hover { background: var(--gray-300); color: var(--black); }
.modal .booking-widget {
  border: none; border-radius: 0;
  padding: 1.5rem 2rem 2rem;
  box-shadow: none;
}

/* ============================================
   FOOTER (enriched)
   ============================================ */
.footer-rich { background: var(--dark); padding: 4rem 0 0; }
.footer-rich__inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: 2rem;
}
.footer-rich__brand {
  font-size: 1.4rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.02em; margin-bottom: 1rem;
}
.footer-rich__brand span { color: var(--accent); }
.footer-rich__desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  line-height: 1.7; margin-bottom: 1.25rem; max-width: 280px;
}
.footer-rich__contact {
  font-size: 0.8rem; color: rgba(255,255,255,0.5); line-height: 1.8;
}
.footer-rich__contact strong { color: rgba(255,255,255,0.7); font-weight: 600; }
.footer-rich__contact a { color: var(--accent); transition: color 0.2s; }
.footer-rich__contact a:hover { color: var(--accent-dark); }
.footer-rich__col h4 {
  font-size: 0.8rem; font-weight: 700;
  color: var(--white); letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1rem;
}
.footer-rich__col ul { list-style: none; padding: 0; margin: 0; }
.footer-rich__col li { margin-bottom: 0.5rem; }
.footer-rich__col a {
  font-size: 0.82rem; color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-rich__col a:hover { color: var(--accent); }
.footer-rich__bottom {
  margin-top: 3rem; padding: 1.5rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.08); text-align: center;
}
.footer-rich__bottom p { font-size: 0.72rem; color: rgba(255,255,255,0.25); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 999px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .distances__inner { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
  .distances__also p { font-size: 0.82rem; line-height: 1.9; }
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .about__grid { grid-template-columns: 1fr; }
  .about__photo { max-width: 350px; margin: 0 auto; }
  .results__grid { grid-template-columns: repeat(2, 1fr); }
  .contact__grid { grid-template-columns: 1fr 1fr; }
  .footer-rich__inner { grid-template-columns: 1fr 1fr 1fr; gap: 1.5rem; }
}
@media (max-width: 690px) {
  .treatments__grid { grid-template-columns: repeat(2, 1fr); }
  .about__quals { grid-template-columns: 1fr; }
  .results__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .distances { padding: 2rem 0 2.5rem; }
  .distances__headline { margin-bottom: 1.25rem; }
  .distances__headline p { font-size: 0.92rem; }
  .distances { padding: 2rem 0 2.5rem; }
  .distances__headline { margin-bottom: 1.25rem; }
  .distances__headline p { font-size: 0.92rem; }
  .distances__inner {
    display: flex; overflow-x: auto; overflow-y: hidden;
    padding: 0 1.25rem 0.5rem; gap: 0.6rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    touch-action: pan-x pan-y;
  }
  .distances__inner::-webkit-scrollbar { display: none; }
  .distance-card {
    min-width: 140px; max-width: 160px;
    padding: 1rem; border-radius: 12px;
  }
  .distance-card__name { font-size: 0.78rem; margin-bottom: 0.5rem; }
  .distance-card__row { font-size: 0.75rem; padding: 0.2rem 0; gap: 0.35rem; }
  .distance-card__row svg { width: 14px; height: 14px; }
  .distance-card__row strong { min-width: 36px; font-size: 0.78rem; }
  .distances__also { padding: 0 1.25rem; margin-top: 1rem; }
  .distances__also p { font-size: 0.75rem; line-height: 1.8; }
  .distances__city { font-size: 0.72rem; padding: 0.15rem 0.45rem; }
  .contact__grid { grid-template-columns: 1fr; }
  .booking-widget__slots-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-rich__inner { grid-template-columns: 1fr; gap: 2rem; }
}
