/* ═══════════════════════════════════════════════
   VÉTIPHYSIO · Feuille de style principale
   ═══════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --navy:    #2d3561;
  --teal:    #4ab8c0;
  --sky:     #a8dce4;
  --cream:   #f5f0e8;
  --warm:    #f9f5ef;
  --sand:    #e8dcc8;
  --white:   #ffffff;
  --dark:    #1a1e38;
  --mid:     #5b6284;
  --light:   #8a93b4;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  --radius:    16px;
  --radius-lg: 28px;
  --shadow:    0 8px 32px rgba(45,53,97,0.10);
  --shadow-lg: 0 20px 60px rgba(45,53,97,0.18);

  --section-pad: 100px;
  --container:   1200px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--warm);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Container ── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Section base ── */
.section {
  padding: var(--section-pad) 0;
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section__title em {
  font-style: italic;
  color: var(--teal);
}

.section__intro {
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 600px;
  margin-bottom: 48px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
}
.btn--primary:hover {
  background: var(--teal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(74,184,192,0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--sand);
}
.btn--ghost:hover {
  border-color: var(--navy);
  background: rgba(45,53,97,0.05);
}

.btn--outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn--outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn--insta {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
}
.btn--insta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(220,39,67,0.35); }

.btn--large {
  padding: 15px 34px;
  font-size: 1rem;
}

/* ═══ NAVIGATION ═══ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 16px 0;
}

.header.scrolled {
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(45,53,97,0.10);
  padding: 10px 0;
}

.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

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

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s;
}

.nav__links a:hover {
  background: rgba(45,53,97,0.07);
  color: var(--teal);
}

.nav__cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  margin-left: 8px;
}
.nav__cta:hover {
  background: var(--teal) !important;
}

.nav__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.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); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 120px 28px 80px;
  max-width: var(--container);
  margin: 0 auto;
  position: relative;
}

.hero__bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__blob--1 {
  width: 600px; height: 600px;
  background: var(--sky);
  top: -200px; right: -100px;
  animation: drift 14s ease-in-out infinite;
}
.hero__blob--2 {
  width: 400px; height: 400px;
  background: var(--sand);
  bottom: 0; left: -100px;
  animation: drift 18s ease-in-out infinite reverse;
}
.hero__blob--3 {
  width: 300px; height: 300px;
  background: #c9e8d4;
  top: 40%; right: 30%;
  animation: drift 20s ease-in-out infinite 5s;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(30px, -30px) scale(1.05); }
  66%       { transform: translate(-20px, 20px) scale(0.97); }
}

.hero__content {
  z-index: 1;
}

.hero__tag {
  display: inline-block;
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--mid);
  letter-spacing: 0.05em;
  margin-bottom: 24px;
  animation: fadeUp 0.6s ease both;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeUp 0.7s ease 0.1s both;
}
.hero__title em { font-style: italic; color: var(--teal); }

.hero__sub {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeUp 0.7s ease 0.3s both;
}

.hero__animals {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.7s ease 0.4s both;
}
.hero__animals span {
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.hero__photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 220px 160px;
  gap: 12px;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero__photo {
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
  overflow: hidden;
  position: relative;
}
.hero__photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(45,53,97,0.25) 100%);
  border-radius: inherit;
}

.hero__photo--1 { grid-column: 1; grid-row: 1 / 3; }
.hero__photo--2 { grid-column: 2; grid-row: 1; }
.hero__photo--3 { grid-column: 2; grid-row: 2; }

/* ── Placeholder photo styles (before real photos added) ── */
.hero__photo:empty::before,
[style*="background-image:url('')"]::before,
[style*='background-image:url("")']::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  opacity: 0.3;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══ PRÉSENTATION ═══ */
.presentation {
  background: var(--white);
}

.presentation__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s ease;
}
.presentation__grid.visible { opacity: 1; transform: none; }

.presentation__text p {
  color: var(--mid);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.presentation__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--warm);
  border: 1.5px solid var(--sand);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}
.badge__icon { font-size: 1rem; }

.presentation__image-stack {
  position: relative;
}

.img-frame {
  border-radius: var(--radius-lg);
  background-size: cover;
  background-position: center;
  background-color: var(--sand);
}

.img-frame--main {
  width: 100%;
  height: 400px;
  box-shadow: var(--shadow-lg);
}

.img-frame--accent {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 200px;
  height: 200px;
  border-radius: var(--radius);
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
}

.presentation__stat {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.stat__number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--teal);
  line-height: 1;
}
.stat__label {
  font-size: 0.75rem;
  opacity: 0.8;
}

/* ═══ SPÉCIALITÉS ═══ */
.specialites {
  background: var(--warm);
}

.specialites__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spec-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(24px);
}
.spec-card.visible { opacity: 1; transform: none; }
.spec-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.spec-card--wide {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.spec-card--wide .spec-card__img { height: 100%; min-height: 240px; }

.spec-card__img {
  height: 200px;
  background-size: cover;
  background-position: center;
  background-color: var(--sky);
  position: relative;
  overflow: hidden;
}
.spec-card__img::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(45,53,97,0.3) 100%);
}

.spec-card__body {
  padding: 24px 28px 28px;
}

.spec-card__icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.spec-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 10px;
}

.spec-card__body p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

.spec-card__tag {
  display: inline-block;
  margin-top: 14px;
  background: var(--cream);
  color: var(--navy);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 100px;
  border: 1px solid var(--sand);
}

/* ═══ PRATICIENS ═══ */
.praticiens {
  background: var(--white);
}

.praticiens__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
  margin-bottom: 50px;
}

.praticien-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--warm);
  border: 2px solid var(--sand);
  opacity: 0;
  transform: translateY(24px);
  transition: all 0.5s ease;
}
.praticien-card.visible { opacity: 1; transform: none; }

.praticien-card--main {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  background: var(--navy);
  border-color: var(--navy);
}

.praticien-card__photo {
  min-height: 320px;
  background-size: cover;
  background-position: center top;
  background-color: var(--sky);
}

.photo-placeholder {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--sand);
  color: var(--mid);
  font-size: 2rem;
}
.photo-placeholder small { font-size: 0.75rem; font-family: var(--font-body); color: var(--light); }

.praticien-card__body {
  padding: 32px 28px;
}

.praticien-card--main .praticien-card__body {
  color: var(--white);
}

.praticien-card__role {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 8px;
}

.praticien-card__body h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  margin-bottom: 14px;
  color: inherit;
}

.praticien-card--main .praticien-card__body h3 { color: var(--white); }

.praticien-card__body p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 18px;
}
.praticien-card--main .praticien-card__body p { color: rgba(255,255,255,0.75); }

.praticien-card__skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.praticien-card__skills span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: rgba(74,184,192,0.15);
  color: var(--teal);
  border: 1px solid rgba(74,184,192,0.3);
}
.praticien-card--main .praticien-card__skills span {
  background: rgba(74,184,192,0.2);
  border-color: rgba(74,184,192,0.4);
}

.instagram-strip {
  background: var(--warm);
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.instagram-strip__text {
  display: flex;
  align-items: center;
  gap: 18px;
}

.instagram-strip__icon {
  font-size: 2.2rem;
}

.instagram-strip__text strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.instagram-strip__text p {
  font-size: 0.88rem;
  color: var(--mid);
  margin: 0;
}

/* ═══ TARIFS ═══ */
.tarifs {
  background: var(--warm);
}

.tarifs__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}

.tarif-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  border: 2px solid var(--sand);
  position: relative;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(20px);
}
.tarif-card.visible { opacity: 1; transform: none; }
.tarif-card:hover {
  border-color: var(--teal);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tarif-card--featured {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}
.tarif-card--featured h4 { color: var(--white); }
.tarif-card--featured p { color: rgba(255,255,255,0.65); }

.tarif-card__badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}

.tarif-card__icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.tarif-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 8px;
}

.tarif-card__price {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 6px;
}
.tarif-card--featured .tarif-card__price { color: var(--sky); }

.tarif-card p {
  font-size: 0.83rem;
  color: var(--light);
}

.tarifs__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--mid);
  background: var(--white);
  border: 1.5px solid var(--sand);
  border-radius: var(--radius);
  padding: 14px 20px;
}

/* ═══ HORAIRES ═══ */
.horaires {
  background: var(--white);
}

.horaires__wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: center;
}

.horaires__text .section__title { margin-bottom: 16px; }
.horaires__text p { color: var(--mid); margin-bottom: 28px; font-size: 1rem; }
.horaires__text .btn { margin-right: 12px; margin-top: 8px; }

.horaires__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 6px;
}

.horaires__table tr { border-radius: 10px; }

.horaires__table td {
  padding: 14px 18px;
  font-size: 0.95rem;
}

.horaires__table td:first-child { border-radius: 12px 0 0 12px; }
.horaires__table td:last-child  { border-radius: 0 12px 12px 0; }

.horaires__table .day {
  font-weight: 600;
  color: var(--navy);
  min-width: 110px;
}

.horaires__table .hours { color: var(--mid); }

.horaires__table tr.open td   { background: rgba(74,184,192,0.08); }
.horaires__table tr.partial td { background: rgba(168,220,228,0.15); }
.horaires__table tr.closed td  { background: rgba(232,220,200,0.25); }

.pill {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}
.pill.open    { background: rgba(74,184,192,0.15); color: var(--teal); }
.pill.partial { background: rgba(45,53,97,0.08);   color: var(--navy); }
.pill.closed  { background: var(--sand);           color: var(--light); }

/* ═══ ACCÈS ═══ */
.acces {
  background: var(--warm);
}

.acces__grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
  margin-top: 40px;
}

.acces__address {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  border: 1.5px solid var(--sand);
}

.acces__icon { font-size: 1.5rem; margin-top: 2px; }

.acces__address strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--navy);
  display: block;
  margin-bottom: 4px;
}

.acces__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.acces__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--mid);
}
.acces__item span:first-child { font-size: 1.1rem; }

.acces__map iframe {
  width: 100%;
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ═══ RDV ═══ */
.rdv {
  position: relative;
  background: var(--navy);
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

.rdv__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.rdv__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.2;
}

.rdv__blob--1 {
  width: 500px; height: 500px;
  background: var(--teal);
  top: -200px; right: -100px;
}

.rdv__blob--2 {
  width: 350px; height: 350px;
  background: var(--sky);
  bottom: -100px; left: 10%;
}

.rdv__content {
  position: relative;
  z-index: 1;
}

.rdv .section__label { color: var(--sky); }
.rdv .section__title { color: var(--white); margin: 0 auto 16px; }
.rdv .section__title em { color: var(--teal); }

.rdv > .container > p,
.rdv__content > p {
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  margin: 0 auto 40px;
  font-size: 1rem;
}

.rdv__actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.rdv .btn--outline {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.rdv .btn--outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.rdv .btn--ghost {
  border-color: rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
}
.rdv .btn--ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.rdv__animals {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.rdv__animal {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.rdv__animal-icon {
  font-size: 2.5rem;
  background: rgba(255,255,255,0.08);
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1.5px solid rgba(255,255,255,0.15);
}

.rdv__animal span:last-child {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--dark);
  color: var(--white);
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding: 60px 28px 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.footer__brand span {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--teal);
}

.footer__brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 18px;
}

.footer__links ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer__links a:hover { color: var(--teal); }

.footer__contact p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
}

.footer__contact a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer__contact a:hover { color: var(--teal); }

.footer__insta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 8px 18px;
  border-radius: 100px;
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: opacity 0.2s;
}
.footer__insta:hover { opacity: 0.85; }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 28px;
  text-align: center;
}
.footer__bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
}

/* ═══ PATHOLOGIES ═══ */
.pathologies {
  background: var(--white);
}

.patho__breeds-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 40px;
  position: relative;
  border: 2px solid var(--sand);
}

.patho__breeds-img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.patho__breeds-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(45,53,97,0.75));
  color: rgba(255,255,255,0.9);
  font-size: 0.82rem;
  font-style: italic;
  padding: 20px 20px 12px;
  text-align: center;
}

/* Tabs */
.patho__tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.patho__tab {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 100px;
  border: 2px solid var(--sand);
  background: var(--warm);
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--mid);
  transition: all 0.22s ease;
}

.patho__tab:hover {
  border-color: var(--teal);
  color: var(--navy);
}

.patho__tab.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(45,53,97,0.25);
}

.patho__tab-icon { font-size: 1.2rem; }

/* Panels */
.patho__panel { display: none; }
.patho__panel.active { display: block; animation: fadeUp 0.4s ease both; }

.patho__panel-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
  background: var(--warm);
  border: 2px solid var(--sand);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.patho__panel-header {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.patho__panel-emoji {
  font-size: 2.8rem;
  line-height: 1;
  flex-shrink: 0;
}

.patho__panel-header h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.patho__panel-subtitle {
  font-size: 0.88rem;
  color: var(--teal);
  font-weight: 600;
  margin: 0;
}

.patho__panel-races {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.race-chip {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
  border: 1.5px solid var(--sand);
  color: var(--mid);
  background: var(--white);
}

.race-chip--active {
  background: rgba(74,184,192,0.12);
  border-color: rgba(74,184,192,0.35);
  color: var(--navy);
}

.patho__panel-text > p {
  color: var(--mid);
  font-size: 0.97rem;
  margin-bottom: 16px;
  line-height: 1.7;
}
.patho__panel-text > p strong { color: var(--navy); }

.patho__symptoms {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}

.patho__symptoms li {
  font-size: 0.88rem;
  color: var(--mid);
  padding-left: 20px;
  position: relative;
}
.patho__symptoms li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.patho__recommandations {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1.5px solid var(--sand);
}

.patho__reco-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 16px;
}

.patho__reco-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.reco-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--warm);
  border: 1.5px solid var(--sand);
}

.reco-card--primary {
  background: rgba(74,184,192,0.08);
  border-color: rgba(74,184,192,0.3);
}

.reco-card__icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.reco-card strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 3px;
}

.reco-card p {
  font-size: 0.82rem;
  color: var(--mid);
  margin: 0;
  line-height: 1.5;
}

.patho__tip {
  margin-top: 14px;
  padding: 14px 16px;
  background: rgba(255,210,77,0.15);
  border: 1.5px solid rgba(255,190,0,0.3);
  border-radius: 10px;
  font-size: 0.85rem;
  color: var(--navy);
  line-height: 1.55;
}
.patho__tip strong { color: var(--dark); }

/* Breed cards visual */
.patho__breed-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.patho__breed-cards--duo {
  grid-template-columns: 1fr 1fr;
}

.breed-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  border: 2px solid var(--sand);
  text-align: center;
  transition: transform 0.2s;
}
.breed-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }

.breed-card__img {
  height: 150px;
  background-size: cover;
  background-position: center;
  background-color: var(--sky);
}

.breed-card--large .breed-card__img { height: 190px; }

.breed-card span {
  display: block;
  padding: 8px 10px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--navy);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  :root { --section-pad: 72px; }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 48px;
  }

  .hero__photo-grid {
    order: -1;
    max-width: 480px;
    margin: 0 auto;
  }

  .presentation__grid,
  .praticiens__grid,
  .horaires__wrapper {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .presentation__image-stack { max-width: 420px; }

  .patho__panel-inner {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .patho__breed-cards,
  .patho__breed-cards--duo {
    grid-template-columns: 1fr 1fr;
  }



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

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

  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / 3; }
}

@media (max-width: 768px) {
  :root { --section-pad: 56px; }

  .nav__links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(245,240,232,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    padding: 20px 28px;
    gap: 4px;
    box-shadow: 0 8px 30px rgba(45,53,97,0.15);
  }
  .nav__links.open { display: flex; }
  .nav__burger { display: flex; }

  .specialites__grid { grid-template-columns: 1fr; }
  .spec-card--wide { grid-column: 1; display: block; }
  .spec-card--wide .spec-card__img { height: 220px; }

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

  .instagram-strip { flex-direction: column; text-align: center; }
  .instagram-strip__text { flex-direction: column; }

  .praticien-card--main { grid-template-columns: 1fr; }
  .praticien-card__photo { min-height: 260px; }

  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: auto; }

  .rdv__actions { flex-direction: column; align-items: center; }
  .btn--large { width: 100%; justify-content: center; max-width: 340px; }
}

@media (max-width: 480px) {
  .tarifs__grid { grid-template-columns: 1fr; }
  .hero__photo-grid { grid-template-rows: 180px 120px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { justify-content: center; }
}
