/* ═══════════════════════════════════════════════
   Clinique Vétérinaire du Val d'Aurore — style.css
   Partagé par toutes les pages
   ═══════════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; -webkit-font-smoothing: antialiased; }
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ── TOKENS ── */
:root {
  --primary:     #1D3829;
  --primary-mid: #274E39;
  --accent:      #C8870B;
  --accent-text: #8A5D00;
  --bg:          #FFFFFF;
  --bg-alt:      #F5F7F5;
  --bg-dark:     #1D3829;
  --border:      #D8E0D8;
  --border-mid:  #BBC9BC;
  --text:        #1A2620;
  --muted:       #546A5C;
  --faint:       #5E7268;
  --h-font:      'Lora', Georgia, serif;
  --b-font:      'Inter', system-ui, sans-serif;
  --r:    6px;
  --r-md: 10px;
  --r-lg: 14px;
  --nav-h: 68px;
  --transition: 200ms ease;
}

body {
  font-family: var(--b-font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
}

/* ── CONTAINER ── */
.container {
  width: min(1160px, 100% - 2.5rem);
  margin-inline: auto;
}

/* ── SECTION SPACING ── */
.section { padding-block: 80px; }
.section--sm { padding-block: 56px; }
.section--lg { padding-block: 112px; }

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-family: var(--h-font); line-height: 1.25; }
h1 { font-size: clamp(2rem, 4vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); font-weight: 700; }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); font-weight: 600; }
h4 { font-size: 1.125rem; font-weight: 600; }
p { max-width: 68ch; }

.eyebrow {
  display: inline-block;
  font-family: var(--b-font);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: .75rem;
}
.page-hero .eyebrow,
.hero .eyebrow {
  color: var(--accent);
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.5rem;
  border-radius: var(--r-md);
  font-family: var(--b-font);
  font-size: .9375rem;
  font-weight: 600;
  min-height: 44px;
  transition: background var(--transition), color var(--transition), border-color var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #a86e09; box-shadow: 0 4px 16px rgba(200,135,11,.28); }
.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border-mid);
  color: var(--text);
}
.btn-outline:hover { border-color: var(--primary); background: var(--bg-alt); }
.btn-outline-white {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.45);
  color: #fff;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.7); }
.btn-danger {
  background: #C0392B;
  color: #fff;
}
.btn-danger:hover { background: #a02e22; box-shadow: 0 4px 18px rgba(192,57,43,.32); }
.btn-lg { padding: 1rem 2rem; font-size: 1.0625rem; }
.btn-xl { padding: 1.125rem 2.5rem; font-size: 1.125rem; border-radius: var(--r-lg); }

/* ── TAGS / BADGES ── */
.tag {
  display: inline-flex;
  align-items: center;
  padding: .25rem .75rem;
  border-radius: 100px;
  font-size: .8125rem;
  font-weight: 600;
}
.tag-urgence {
  background: #C0392B;
  color: #fff;
  letter-spacing: .06em;
  text-transform: uppercase;
}

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--primary);
  color: #fff;
  padding: .5rem 1rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  font-size: .875rem;
  font-weight: 600;
  z-index: 9999;
  transition: top .2s;
  text-decoration: none;
}
.skip-link:focus { top: 0; }

/* ── FOCUS ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(29,56,41,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1rem, 4vw, 2.5rem);
  z-index: 999;
  transition: box-shadow var(--transition);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.25); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-family: var(--h-font);
  font-size: .875rem;
  font-weight: 600;
  line-height: 1.3;
  flex-shrink: 0;
}
.nav-logo span { opacity: .65; font-weight: 400; font-size: .75rem; display: block; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .45rem .75rem;
  border-radius: var(--r);
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,.1);
}
.nav-links a.active { color: #fff; }

.nav-link-urgence {
  color: #e85d4a !important;
  font-weight: 600 !important;
}
.nav-link-urgence:hover { background: rgba(232,93,74,.15) !important; }

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .45rem .9rem !important;
  border: 1.5px solid rgba(255,255,255,.3);
  border-radius: 100px !important;
  color: #fff !important;
  font-size: .8125rem !important;
  font-weight: 600 !important;
  background: transparent !important;
  transition: border-color var(--transition), background var(--transition) !important;
}
.nav-phone:hover { border-color: rgba(255,255,255,.7) !important; background: rgba(255,255,255,.08) !important; }

/* burger */
.nav-burger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: .5rem;
  border-radius: var(--r);
  border: 1.5px solid rgba(255,255,255,.2);
  color: #fff;
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.nav-burger:hover { border-color: rgba(255,255,255,.45); background: rgba(255,255,255,.06); }
.nav-burger.open { border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.08); }
.nav-burger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s cubic-bezier(.22,1,.36,1), opacity .2s, width .2s;
}
.nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── PAGE HERO (petite) ── */
.page-hero {
  background: radial-gradient(ellipse at 25% 50%, #274E39 0%, #1D3829 68%);
  padding-top: calc(var(--nav-h) + 56px);
  padding-bottom: 64px;
  text-align: center;
  color: #fff;
}
.page-hero h1 { color: #fff; margin-bottom: .75rem; }
.page-hero p { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 52ch; margin-inline: auto; }

/* ── SECTION HEADER ── */
.section-header { margin-bottom: 52px; }
.section-header h2 { margin-bottom: .5rem; }
.section-header p { color: var(--muted); font-size: 1.0625rem; }
.section-header.centered { text-align: center; }
.section-header.centered h2 { text-align: center !important; }
.section-header.centered p { text-align: center !important; margin-inline: auto; }
.section-header:not(.centered) {
  border-left: 3px solid var(--accent);
  padding-left: 1.25rem;
}
.section-header.centered .eyebrow {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: .875rem;
}
.section-header.centered .eyebrow::before,
.section-header.centered .eyebrow::after {
  content: '';
  flex: 0 0 1.75rem;
  height: 1px;
  background: currentColor;
  opacity: .4;
}

/* ── GRID HELPERS ── */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── CARD ── */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 6px 28px rgba(29,56,41,.14); }

/* ── QUICK-INFO BAR ── */
.info-bar {
  background: var(--primary);
  color: #fff;
  padding-block: 20px;
  border-bottom: 3px solid var(--accent);
}
.info-bar .container { display: flex; gap: 0; }
.info-bar-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,.15);
  font-size: .9375rem;
}
.info-bar-item:last-child { border-right: none; }
.info-bar-item strong { display: block; font-weight: 600; margin-bottom: .15rem; }
.info-bar-item span { color: rgba(255,255,255,.72); font-size: .875rem; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--bg-dark);
  color: #fff;
  padding-block: 72px;
  border-top: 2px solid rgba(200,135,11,.28);
  border-bottom: 2px solid rgba(200,135,11,.28);
}
.stats-strip .container { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; text-align: center; }
.stat-num {
  font-family: var(--h-font);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: .4rem;
}
.stat-label {
  font-size: .9375rem;
  color: rgba(255,255,255,.62);
  font-weight: 500;
}
.stat-unit {
  font-family: var(--h-font);
  font-size: 1.25rem;
  color: var(--accent-text);
  margin-bottom: .25rem;
}

/* ── TRUST BADGES ── */
.trust-badges {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.trust-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── FOOTER ── */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,.78);
  padding-top: 64px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: #fff;
  font-family: var(--h-font);
  font-size: .9375rem;
  font-weight: 600;
  margin-bottom: .25rem;
}
.footer-logo span { color: rgba(255,255,255,.55); font-weight: 400; font-size: .8125rem; display: block; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.62); max-width: 100%; }
.footer-brand p a { color: inherit; }
.footer-social { display: flex; gap: .75rem; margin-top: .25rem; }
.footer-social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.65);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: rgba(255,255,255,.16); color: #fff; }
.footer-col h4 {
  font-family: var(--b-font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-col ul a {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #fff; }
.footer-col ul li.urgence a { color: #e85d4a; }
.footer-col ul li.urgence a:hover { color: #f07567; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 20px;
  font-size: .8125rem;
  color: rgba(255,255,255,.38);
}
.footer-bottom a { color: rgba(255,255,255,.55); text-decoration: underline; }
.footer-bottom a:hover { color: #fff; }

/* ── SCROLL-REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── URGENCES ── */
.urgences-hero {
  background: var(--primary);
  padding-top: calc(var(--nav-h) + 64px);
  padding-bottom: 80px;
  text-align: center;
  color: #fff;
}
.urgences-hero h1 { color: #fff; margin-bottom: 1rem; }
.urgences-hero p { color: rgba(255,255,255,.72); font-size: 1.0625rem; max-width: 52ch; margin-inline: auto; margin-bottom: 2rem; }

.urgence-card-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
}
.urgence-card-dark p { max-width: 100%; }
.urgence-card-dark .note {
  margin-top: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
}

.symptomes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem 2rem;
}
.symptome-item {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .75rem 1rem;
  border-radius: var(--r);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: .9375rem;
  font-weight: 500;
}
.symptome-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C0392B;
  flex-shrink: 0;
}

.conseils-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.conseil-item {
  display: flex;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--border);
}
.conseil-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: .875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.conseil-item p { max-width: 100%; font-size: .9375rem; color: var(--muted); }

/* ── HORAIRES TABLE ── */
.table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--r); }
.horaires-table { width: 100%; border-collapse: collapse; min-width: 380px; }
.horaires-table th {
  text-align: left;
  font-family: var(--b-font);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  padding: .5rem 1rem .5rem 0;
  border-bottom: 2px solid var(--border);
}
.horaires-table td {
  padding: .875rem 1rem .875rem 0;
  border-bottom: 1px solid var(--border);
  font-size: .9375rem;
  vertical-align: middle;
}
.horaires-table tr:last-child td { border-bottom: none; }
.horaires-table .closed { color: var(--faint); }
.horaires-table .jour { font-weight: 600; color: var(--text); }

/* ── INFO CARDS ── */
.info-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.5rem;
}
.info-card-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .5rem;
}
.info-card-value {
  font-family: var(--h-font);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
}
.info-card a.big-phone {
  font-family: var(--h-font);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-top: .25rem;
}
.info-card a.big-phone:hover { color: var(--accent-text); }
.info-card p { font-size: .875rem; color: var(--muted); max-width: 100%; margin-top: .35rem; }

/* ── MAPS EMBED ── */
.maps-wrapper {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 400px;
}
.maps-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ── ACCES GRID ── */
.acces-list { display: flex; flex-direction: column; gap: .75rem; }
.acces-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-radius: var(--r-md);
  background: var(--bg);
  border: 1px solid var(--border);
}
.acces-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.acces-item strong { font-weight: 600; color: var(--text); }
.acces-item span { font-size: .875rem; color: var(--muted); margin-left: auto; }

/* ── EQUIPE CARDS ── */
.vet-card {
  display: flex;
  gap: 2rem;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2rem 2.5rem;
  align-items: flex-start;
}
.vet-avatar {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--h-font);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -.02em;
}
.vet-info { flex: 1; }
.vet-info h3 { margin-bottom: .2rem; font-size: 1.25rem; }
.vet-title { font-size: .875rem; color: var(--accent-text); font-weight: 600; margin-bottom: .75rem; }
.vet-info p { font-size: .9375rem; color: var(--muted); max-width: 100%; }
.vet-domains {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}
.vet-domain {
  padding: .25rem .75rem;
  border-radius: 100px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: .8125rem;
  color: var(--muted);
  font-weight: 500;
}

/* ── VALEURS ── */
.valeur-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
}
.valeur-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.25rem;
}
.valeur-card h3 { margin-bottom: .5rem; font-size: 1.125rem; }
.valeur-card p { color: var(--muted); font-size: .9375rem; max-width: 100%; }

/* ── SERVICE SPLIT ── */
.service-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
}
.service-split.reverse { direction: rtl; }
.service-split.reverse > * { direction: ltr; }
.service-split-img {
  position: relative;
  min-height: 380px;
}
.service-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.service-split-body {
  padding: 3rem 3rem;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-split-body h2 { margin-bottom: 1rem; }
.service-split-body p { color: var(--muted); margin-bottom: 1.5rem; }
.service-actes {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.service-acte {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: var(--text);
  padding: .5rem 0;
  border-bottom: 1px solid var(--border);
}
.service-acte:last-child { border-bottom: none; }
.service-acte::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── CTA FINAL BLOCK ── */
.cta-block {
  text-align: center;
  padding: 72px 2rem;
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  background: var(--bg-alt);
}
.cta-block h2 { margin-bottom: .75rem; }
.cta-block p { color: var(--muted); margin-inline: auto; margin-bottom: 2rem; }
.cta-phone {
  font-family: var(--h-font);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 1.75rem;
}
.cta-phone:hover { color: var(--accent-text); }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── HOMEPAGE HERO ── */
@keyframes heroReveal {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: none; }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(18,35,24,.90) 45%, rgba(18,35,24,.55) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding-block: 80px;
  animation: heroReveal .95s cubic-bezier(.22,1,.36,1) both;
}
.hero-content h1 { color: #fff; margin-bottom: 1.25rem; }
.hero-content h1 em { font-style: italic; color: var(--accent); }
.hero-content > p { color: rgba(255,255,255,.78); font-size: 1.125rem; margin-bottom: 2rem; max-width: 56ch; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }

/* ── SERVICE CARDS (homepage) ── */
.service-card .card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .card-img img { transform: scale(1.04); }
.service-card .card-body { padding: 1.25rem 1.5rem 1.5rem; }
.service-card .card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-text);
  font-size: 1.0625rem;
  font-weight: 400;
  font-family: var(--h-font);
  font-style: italic;
  margin-bottom: .875rem;
  letter-spacing: .02em;
  flex-shrink: 0;
}
.service-card h3 { font-size: 1.125rem; margin-bottom: .4rem; }
.service-card p { font-size: .875rem; color: var(--muted); max-width: 100%; margin-bottom: .75rem; }
.service-card .card-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--transition), gap var(--transition);
}
.service-card .card-link:hover { color: var(--accent-text); gap: .55rem; }
.service-card { cursor: pointer; position: relative; }
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s cubic-bezier(.22,1,.36,1);
}
.service-card:hover::after { transform: scaleX(1); }

/* ── EQUIPE PREVIEW ── */
.equipe-preview-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}
.equipe-preview-card:hover { box-shadow: 0 8px 28px rgba(29,56,41,.1); transform: translateY(-2px); }
.equipe-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-family: var(--h-font);
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto .75rem;
}
.equipe-preview-card h3 { font-size: 1.0625rem; margin-bottom: .2rem; }
.equipe-preview-card .spec { font-size: .8125rem; color: var(--accent-text); font-weight: 600; margin-bottom: .6rem; }
.equipe-preview-card p { font-size: .875rem; color: var(--muted); max-width: 100%; }

/* ── REVIEWS ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 1.75rem;
}
.review-stars {
  color: #F59E0B;
  font-size: 1.05rem;
  margin-bottom: .75rem;
  letter-spacing: .05em;
}
.review-text {
  font-size: .9375rem;
  color: var(--text);
  line-height: 1.72;
  font-style: italic;
  margin-bottom: 1.25rem;
  max-width: 100%;
}
.review-author { display: flex; align-items: center; gap: .75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); color: #fff;
  font-size: .8125rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: .875rem; color: var(--text); }
.review-source { font-size: .73rem; color: var(--faint); margin-top: .1rem; }

/* ── CONTACT FORM ── */
.contact-form-wrapper {
  max-width: 760px;
  margin: 0 auto;
}
.contact-form {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.form-group label {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label span { color: var(--accent-text); }
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--b-font);
  font-size: .9375rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--r);
  padding: .65rem .875rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(29,56,41,.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--faint); }
.form-group select { cursor: pointer; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23546A5C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right .875rem center; padding-right: 2.25rem; }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-note {
  font-size: .8125rem;
  color: var(--faint);
  max-width: 100%;
}
.form-note a { color: var(--primary); text-decoration: underline; }
.form-submit { align-self: flex-start; gap: .5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-inner .footer-brand { grid-column: 1 / -1; }
  .service-split { grid-template-columns: 1fr; }
  .service-split.reverse { direction: ltr; }
  .service-split-img { min-height: 280px; order: -1; }
  .service-split.reverse .service-split-img { order: -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding-block: 56px; }
  .section--lg { padding-block: 72px; }
  .nav-links {
    display: none;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(24,42,32,.98);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    gap: .5rem;
    max-height: calc(100svh - var(--nav-h));
    overflow-y: auto;
    touch-action: pan-y;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .9rem 1.25rem;
    border-radius: var(--r-md);
    font-size: 1rem;
    text-align: center;
  }
  .nav-links li:last-child { margin-top: .5rem; }
  .nav-phone {
    display: flex !important;
    width: 100%;
    justify-content: center;
    padding: .875rem 1rem !important;
    border-radius: var(--r-md) !important;
    background: rgba(200,135,11,.12) !important;
    border-color: rgba(200,135,11,.35) !important;
    color: var(--accent) !important;
    font-size: 1rem !important;
    gap: .625rem;
  }
  .nav-phone:hover { background: rgba(200,135,11,.22) !important; border-color: rgba(200,135,11,.6) !important; }
  .nav-burger { display: flex; }
  .grid-3 { grid-template-columns: 1fr 1fr; gap: 1.25rem; }
  .grid-2 { grid-template-columns: 1fr; }
  .stats-strip .container { grid-template-columns: 1fr; gap: 2.5rem; }
  .info-bar .container { flex-direction: column; }
  .info-bar-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); padding: .75rem 0; }
  .info-bar-item:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; gap: .5rem; text-align: center; }
  .vet-card { flex-direction: column; padding: 1.5rem; gap: 1rem; }
  .symptomes-grid { grid-template-columns: 1fr; }
  .conseils-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 1.5rem; }
  .service-split-body { padding: 2rem 1.5rem; }
  .hero { min-height: 90svh; }
  .hero-content { max-width: 100%; }
}

@media (max-width: 640px) {
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .trust-badges { flex-direction: column; gap: .75rem; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .urgence-card-dark { padding: 1.5rem; }

  /* ── Hero centré sur mobile ── */
  .hero-content { text-align: center; }
  .hero-content > p { max-width: 100%; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-actions .btn { justify-content: center; width: 100%; }

  /* ── Eyebrow centré dans page-hero + section headers non-centered ── */
  .page-hero .eyebrow { display: block; text-align: center; }
  .section-header:not(.centered) {
    border-left: none;
    padding-left: 0;
    text-align: center;
  }
  .section-header:not(.centered) .eyebrow { display: block; }
  .section-header.centered h2,
  .section-header.centered p { text-align: center; }

  /* ── Page-hero padding réduit ── */
  .page-hero {
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 44px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 1.75rem; }
  h2 { font-size: 1.4rem; }
  .btn-xl { padding: .875rem 1.5rem; font-size: 1rem; }
  .cta-block { padding: 48px 1.25rem; }
  .maps-wrapper { height: 260px; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
