/* Veto Uccle – Styles (palette bleue + Fraunces / Source Sans 3) */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700&family=Source+Sans+3:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --vet-blue-50:   #e8f4f9;
  --vet-blue-100:  #c5e0ef;
  --vet-blue-400:  #4a9bc7;
  --vet-blue-600:  #1e5f8a;
  --vet-blue-800:  #0d3d56;
  --vet-cream:    #fdebd9;
  --color-primary:     var(--vet-blue-600);
  --color-primary-dark: var(--vet-blue-800);
  --color-primary-light: var(--vet-blue-400);
  --color-bg-subtle:   var(--vet-blue-50);
  --color-bg-soft:     var(--vet-blue-100);
  --color-text:        #374151;
  --color-text-muted:  #6b7280;
  --color-surface:     #ffffff;
  --font-heading: 'Fraunces', Georgia, serif;
  --font-body: 'Source Sans 3', system-ui, sans-serif;
  --header-height: 4rem;
  --page-padding: clamp(1.5rem, 4vw, 3rem);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --shadow-soft: 0 4px 20px rgba(13, 61, 86, 0.08);
  --shadow-medium: 0 8px 28px rgba(13, 61, 86, 0.12);
  --shadow-hover: 0 12px 36px rgba(13, 61, 86, 0.14);
  --content-max-width: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.2rem;
  line-height: 1.65;
  color: var(--color-text);
  background: var(--color-bg-subtle);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; transition: color 0.2s ease; }
a:hover { color: var(--color-primary-dark); text-decoration: underline; }
a:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
  border-radius: 2px;
}
button:focus-visible {
  outline: 2px solid var(--color-primary-light);
  outline-offset: 2px;
}

/* ----- Header ----- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(232, 244, 249, 0.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(13, 61, 86, 0.06);
}
.site-header .inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--color-primary-dark);
  letter-spacing: 0.02em;
}
.site-logo a { color: inherit; text-decoration: none; transition: opacity 0.2s; }
.site-logo a:hover { text-decoration: none; opacity: 0.88; }
.nav-main {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-main a {
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-main a:hover { color: var(--color-primary); text-decoration: none; }
.nav-main a[href*="contact"] {
  color: var(--color-primary);
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-primary-dark);
}
@media (max-width: 700px) {
  .menu-toggle { display: block; }
  .nav-main {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    background: var(--color-bg-subtle);
    flex-direction: column;
    padding: 1rem;
    gap: 0.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s, opacity .2s;
  }
  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ----- Hero (vidéo en fond + 6 boxes transparentes) ----- */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(1.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-surface);
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  background: #0a0a0a;
}
.hero-video-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  background: #0a0a0a;
}
.hero-video-clip.is-visible {
  opacity: 1;
  z-index: 0;
}
/* Filtre qui assombrit l'image – toujours visible par-dessus la vidéo */
.hero-video::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, rgba(13, 61, 86, 0.5) 50%, rgba(0, 0, 0, 0.4) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 4rem var(--page-padding) 5rem;
  box-sizing: border-box;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(3.75rem, 10vw, 6.5rem);
  font-weight: 700;
  margin: 0 0 0;
  text-shadow: 0 2px 6px rgba(0,0,0,0.45);
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeInUp 1.1s ease-out forwards;
}
.hero .tagline {
  font-size: 1.65rem;
  margin: 2.5rem 0 1.5rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  line-height: 1.45;
  opacity: 0;
  animation: heroFadeInUp 0.9s ease-out 2.4s forwards;
}
.hero .cta {
  display: inline-block;
  padding: 1.2rem 2.75rem;
  background: var(--color-surface);
  color: var(--color-primary-dark);
  font-weight: 700;
  font-size: 1.35rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background 0.25s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.25s ease;
  margin-bottom: 2.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  opacity: 0;
  animation: heroFadeInUp 0.9s ease-out 3.1s forwards;
}
.hero .cta:hover {
  background: var(--vet-blue-100);
  color: var(--color-primary-dark);
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.25);
}
.hero-services-label {
  font-size: 1.4rem;
  margin: -1.25rem 0 1.75rem;
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  opacity: 0;
  animation: heroFadeInUp 0.9s ease-out 0.5s forwards;
}
/* Grille 6 boxes dans le hero – fond transparent type verre pour voir la vidéo */
.hero-services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2.5rem;
  width: 100%;
  margin: 0 auto;
  text-align: left;
}
.hero-service-card {
  opacity: 0;
  animation: heroFadeInUp 0.85s ease-out forwards;
}
.hero-service-card:nth-child(1) { animation-delay: 1s; }
.hero-service-card:nth-child(2) { animation-delay: 1.3s; }
.hero-service-card:nth-child(3) { animation-delay: 1.6s; }
.hero-service-card:nth-child(4) { animation-delay: 1.9s; }
.hero-service-card {
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-lg);
  padding: 3rem;
  color: var(--color-surface);
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 200px;
}
.hero-service-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}
.hero-service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--color-surface);
  text-shadow: 0 1px 3px rgba(0,0,0,0.35);
  line-height: 1.25;
}
.hero-service-card p {
  margin: 0 0 1.15rem;
  font-size: 1.35rem;
  opacity: 0.95;
  line-height: 1.55;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}
.hero-service-card .link {
  font-weight: 600;
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.98);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  transition: color 0.2s ease, opacity 0.2s ease;
}
.hero-service-card .link:hover {
  color: var(--color-surface);
  text-decoration: underline;
  opacity: 1;
}
@media (max-width: 900px) {
  .hero-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .hero-service-card {
    padding: 2rem;
    min-height: 160px;
  }
  .hero-service-card h3 { font-size: 1.4rem; }
  .hero-service-card p { font-size: 1.1rem; }
}
@media (max-width: 500px) {
  .hero-content {
    padding: 2.5rem 1.25rem 3rem;
  }
  .hero .tagline { font-size: 1.2rem; }
  .hero .cta { padding: 0.9rem 1.75rem; font-size: 1.05rem; }
  .hero-services-label { font-size: 1.05rem; }
  .hero-services-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .hero-service-card {
    padding: 1.75rem;
    min-height: auto;
  }
  .hero-service-card h3 { font-size: 1.35rem; }
  .hero-service-card p { font-size: 1.05rem; }
  .hero-service-card .link { font-size: 1.05rem; }
}

/* ----- Sections communes ----- */
section {
  padding: 5.5rem 0;
}
section + section {
  margin-top: 0;
}
.section-inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  box-sizing: border-box;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 2.5rem;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.section-title::after {
  content: '';
  display: block;
  width: 4rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--color-primary-light);
  border-radius: 2px;
  opacity: 0.8;
}
.section-subtitle {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
}

/* ----- Intro : pleine largeur, style split (texte à gauche / zone à droite) ----- */
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 36rem;
  padding: 0;
  margin: 0;
}
.intro-text {
  background: var(--color-primary-dark);
  color: var(--color-surface);
  padding: 4rem var(--page-padding);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.intro-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  margin: 0 0 1.5rem;
  letter-spacing: 0.02em;
}
.intro-text p {
  font-size: 1.85rem;
  text-align: left;
  max-width: none;
  margin: 0;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 400;
  letter-spacing: 0.01em;
}
.intro-image {
  background: var(--vet-blue-100);
  min-height: 24rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-dark);
  font-size: 1rem;
  font-weight: 600;
  overflow: hidden;
  position: relative;
}
.intro-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.intro-image:not(:has(img)) span {
  position: relative;
  z-index: 0;
}
@media (max-width: 768px) {
  .intro {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .intro-text { padding: 3rem var(--page-padding); }
  .intro-text p { font-size: 1.5rem; }
}

/* ----- Section vidéo (2e vidéo du dossier Vidéos) ----- */
.video-section {
  padding: 4rem 1.5rem;
  background: var(--color-bg-subtle);
}
.video-section-inner {
  width: 100%;
  padding: 0 var(--page-padding);
  margin: 0 auto;
  box-sizing: border-box;
}
.video-section .section-title {
  margin-bottom: 1.75rem;
}
.video-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}
.video-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-medium);
  background: var(--color-primary-dark);
  aspect-ratio: 16 / 9;
  transition: box-shadow 0.3s ease;
}
.video-section:hover .video-wrapper {
  box-shadow: var(--shadow-hover);
}
.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ----- Grille 6 boxes services ----- */
.services-boxes {
  background: var(--color-bg-subtle);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  width: 100%;
  margin: 0 auto;
}
.service-card {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(13, 61, 86, 0.08);
  transition: box-shadow .2s, transform .2s;
  border: 1px solid var(--vet-blue-100);
}
.service-card:hover {
  box-shadow: 0 8px 24px rgba(13, 61, 86, 0.12);
  transform: translateY(-2px);
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.5rem;
}
.service-card p {
  margin: 0 0 1rem;
  font-size: 0.9375rem;
  color: var(--color-text);
}
.service-card .link {
  font-weight: 600;
  font-size: 0.9375rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}
.service-card .link:hover { text-decoration: none; color: var(--color-primary-light); }

/* ----- CTA bandeau ----- */
.cta-bandeau {
  background: var(--color-bg-subtle);
  color: var(--color-text);
  text-align: center;
  padding: 3.5rem 1.5rem;
}
.cta-bandeau .cta-text {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--color-primary-dark);
  margin: 0;
  letter-spacing: 0.01em;
}
.cta-bandeau a {
  color: var(--color-primary);
  text-decoration: none;
}
.cta-bandeau .btn {
  display: inline-block;
  margin-top: 1.25rem;
  padding: 0.9rem 2rem;
  background: var(--color-primary);
  color: var(--color-surface);
  font-weight: 700;
  border-radius: var(--radius-md);
  transition: background 0.25s ease, color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
  box-shadow: 0 4px 16px rgba(30, 95, 138, 0.28);
}
.cta-bandeau .btn:hover {
  background: var(--color-primary-dark);
  color: var(--color-surface);
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(13, 61, 86, 0.35);
  transform: translateY(-1px);
}

/* CTA bandeau contact – pleine largeur */
.cta-bandeau--contact {
  width: 100%;
  padding: 5rem var(--page-padding);
  background: var(--color-bg-subtle);
}
.cta-bandeau-inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  box-sizing: border-box;
  text-align: center;
}
.cta-bandeau-address {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  letter-spacing: 0.02em;
}
.cta-bandeau-tel {
  margin: 0.5rem 0 0;
  font-size: 1.1rem;
  color: var(--color-text);
  font-weight: 500;
}
.cta-bandeau--contact .btn {
  margin-top: 1.5rem;
}
.cta-bandeau--contact .btn--large {
  padding: 1.25rem 3rem;
  font-size: 1.35rem;
  border-radius: var(--radius-md);
  box-shadow: 0 4px 20px rgba(13, 61, 86, 0.25);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.cta-bandeau--contact .btn--large:hover {
  box-shadow: 0 6px 26px rgba(13, 61, 86, 0.32);
  transform: translateY(-2px);
}
.cta-bandeau--contact .btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ----- Modal Prendre contact ----- */
.modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--page-padding);
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.25s ease, opacity 0.25s ease;
}
.modal.is-open {
  visibility: visible;
  opacity: 1;
}
.modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(13, 61, 86, 0.5);
  cursor: pointer;
}
.modal-box {
  position: relative;
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
  padding: 2.25rem 2rem;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: none;
  background: var(--color-bg-subtle);
  color: var(--color-primary-dark);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}
.modal-close:hover {
  background: var(--vet-blue-100);
}
.modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.5rem;
}
.modal-intro {
  margin: 0 0 1.5rem;
  font-size: 1rem;
  color: var(--color-text-muted);
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 1rem;
}
.contact-form .form-row {
  margin-bottom: 1.25rem;
  grid-column: 1 / -1;
}
.contact-form .form-row--half {
  grid-column: span 1;
}
.contact-form label {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
  margin-bottom: 0.35rem;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid var(--vet-blue-100);
  border-radius: var(--radius-sm);
  color: var(--color-text);
  box-sizing: border-box;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 2px rgba(74, 155, 199, 0.25);
}
.contact-form textarea {
  resize: vertical;
  min-height: 100px;
}
.contact-form .form-actions {
  margin-top: 1.5rem;
}
.contact-form .form-actions .btn {
  margin-top: 0;
}
@media (max-width: 540px) {
  .contact-form .form-row--half {
    width: 100%;
    margin-right: 0;
  }
}

/* CTA avec horaires d'ouverture */
.cta-with-hours {
  max-width: 560px;
  margin: 0 auto;
}
.cta-with-hours .cta-text {
  margin: 0 0 1.5rem;
  font-size: 1.0625rem;
}
.opening-hours {
  background: var(--color-surface);
  border-radius: 8px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.25rem;
  text-align: left;
  border: 1px solid var(--vet-blue-100);
  box-shadow: 0 2px 12px rgba(13, 61, 86, 0.08);
}
.hours-title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--color-primary-dark);
}
.hours-days {
  font-size: 0.9375rem;
  margin: 0 0 0.75rem;
  color: var(--color-text);
}
.hours-list {
  list-style: none;
  margin: 0 0 0.5rem;
  padding: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--color-text);
}
.hours-list li {
  margin-bottom: 0.25rem;
}
.hours-list span {
  font-weight: 600;
  color: var(--color-primary-dark);
}
.hours-note {
  font-size: 0.8125rem;
  margin: 0;
  color: var(--color-text-muted);
}

/* ----- Notre approche : 3 blocs côte à côte, pleine largeur, nos couleurs ----- */
.values {
  background: var(--color-bg-subtle);
  padding: 0;
}
.values-inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 5rem var(--page-padding) 5.5rem;
  box-sizing: border-box;
}
.values-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
  text-align: center;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.values-title::after {
  content: '';
  display: block;
  width: 4rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--color-primary-light);
  border-radius: 2px;
  opacity: 0.8;
}
.values-inner .values-title {
  margin-bottom: 2.5rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  width: 100%;
  margin: 0;
  background: var(--color-bg-subtle);
}
.values-block {
  padding: 3rem 2.75rem;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.values-block:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}
.values-block--1 {
  background: var(--color-bg-subtle);
  box-shadow: var(--shadow-soft);
}
.values-block--1 .values-block-title {
  color: var(--color-primary-dark);
}
.values-block--1 p {
  color: #1f2937;
}
.values-block--2 {
  background: var(--vet-blue-100);
}
.values-block--2 .values-block-title {
  color: var(--color-primary-dark);
}
.values-block--2 p {
  color: #1e3a4a;
}
.values-block--3 {
  background: var(--color-primary-dark);
}
.values-block--3 .values-block-title {
  color: #ffffff;
}
.values-block--3 p {
  color: #e8f4f9;
}
.values-block-title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  font-weight: 700;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.values-block p {
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  .values-block {
    min-height: auto;
    padding: 2rem var(--page-padding);
  }
}

/* ----- Nos vétérinaires : photo large + dégradé côté texte, arrière-plan visible sous le texte ----- */
.team {
  background: var(--vet-blue-50);
  padding: 4rem 0 5rem;
}
.team .section-inner.team-inner {
  width: 100%;
  max-width: var(--content-max-width);
  margin: 0 auto;
  padding: 0 var(--page-padding);
  box-sizing: border-box;
}
.team-intro {
  text-align: center;
  color: var(--color-text-muted);
  margin: 0 0 2.5rem;
  font-size: 1.35rem;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.team-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.team-card {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(13, 61, 86, 0.18), 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease;
}
.team-card:hover {
  box-shadow: 0 12px 40px rgba(13, 61, 86, 0.22), 0 4px 16px rgba(0, 0, 0, 0.1);
}
.team-card-bg {
  position: relative;
  width: 100%;
  z-index: 0;
  background: var(--vet-blue-100);
  display: block;
  min-height: 18rem;
}
.team-card-bg:has(img) {
  min-height: 0;
  display: block;
}
.team-card-bg img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: bottom;
}
.team-card-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 18rem;
  color: var(--color-primary-dark);
  font-size: 0.95rem;
  font-weight: 600;
  opacity: 0.8;
}
.team-card-bg:has(img) .team-card-placeholder {
  display: none;
}
.team-card-overlay {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 1;
  background: linear-gradient(to right, rgba(13, 61, 86, 0.92) 0%, rgba(13, 61, 86, 0.55) 70%, transparent 100%);
  display: flex;
  align-items: center;
  padding: 2.5rem 3rem;
  box-sizing: border-box;
}
/* Second vétérinaire : dégradé à droite, texte à droite (vétérinaire visible à gauche) */
.team-card--overlay-right .team-card-overlay {
  left: auto;
  right: 0;
  background: linear-gradient(to left, rgba(13, 61, 86, 0.92) 0%, rgba(13, 61, 86, 0.55) 70%, transparent 100%);
  justify-content: flex-end;
  padding: 2rem 2.5rem 2rem 3rem;
}
.team-card--overlay-right .team-card-info {
  text-align: right;
}
.team-card-info {
  color: var(--color-surface);
  max-width: 55ch;
}
.team-card-name {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4.5vw, 3.25rem);
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.team-card-role {
  font-size: 1.65rem;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
  margin: 0 0 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}
.team-card-bio {
  font-size: 1.55rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.55;
  margin: 0;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
@media (max-width: 768px) {
  .team-card-overlay {
    width: 100%;
    background: linear-gradient(to top, rgba(13, 61, 86, 0.92) 0%, rgba(13, 61, 86, 0.6) 40%, transparent 100%);
    align-items: flex-end;
    padding: 2rem 1.5rem;
  }
}

/* ----- Accès : Tram et Vélo (Villo) ----- */
.access-section {
  background: var(--color-bg-subtle);
  padding: 5.5rem 0;
}
.access-subtitle {
  margin-bottom: 2.5rem;
  font-size: 1.25rem;
}
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}
.access-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 2rem 2.25rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  transition: box-shadow 0.25s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.8);
}
.access-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.access-card-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
.access-card-icon svg {
  width: 2rem;
  height: 2rem;
}
.access-card-content {
  min-width: 0;
}
.access-card-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
}
.access-card-text {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--color-text);
}
@media (max-width: 768px) {
  .access-grid {
    grid-template-columns: 1fr;
  }
  .access-card {
    padding: 1.75rem var(--page-padding);
  }
}

/* ----- Informations pratiques : 3 cartes Adresse, Horaires, Contact ----- */
.info-cards-section {
  background: var(--color-bg-subtle);
  padding: 5.5rem 0;
}
.info-cards-subtitle {
  margin-bottom: 3rem;
  font-size: 1.25rem;
}
.info-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  width: 100%;
  margin: 0 auto;
}
.info-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: var(--color-primary-dark);
  color: var(--color-surface);
  padding: 2rem 2.25rem;
  border-radius: 999px;
  transition: box-shadow 0.25s ease, transform 0.2s ease;
}
.info-card:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.info-card-icon {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary-light);
}
.info-card-icon svg {
  width: 2.25rem;
  height: 2.25rem;
}
.info-card-content {
  min-width: 0;
}
.info-card-label {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--color-surface);
}
.info-card-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}
.info-card-text a {
  color: var(--color-surface);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.info-card-text a:hover {
  color: var(--vet-blue-100);
}
@media (max-width: 768px) {
  .info-cards {
    grid-template-columns: 1fr;
    max-width: none;
  }
  .info-card {
    border-radius: var(--radius-lg);
  }
}

/* ----- Footer : bulles style Kindred (adv-list / adv-item / adv-name-desc) – palette Veto Uccle ----- */
.site-footer {
  width: 100%;
  background: var(--color-bg-subtle);
  color: var(--color-text);
  padding: 3.5rem 0 2rem;
}
.site-footer a { color: var(--color-primary); }
.site-footer a:hover { color: var(--color-primary-dark); text-decoration: underline; }

.footer-adv-wrap {
  width: 100%;
  margin: 0 0 2.5rem;
  padding: 0 1.5rem;
  max-width: 100%;
  box-sizing: border-box;
}
.footer-adv-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 0.75rem 2rem;
  width: 100%;
  align-items: start;
}
/* Zigzag : comme Kindred – gauche, droite, gauche, droite */
.footer-adv-list .adv-item:nth-child(1) { grid-column: 1; grid-row: 1; justify-self: start; }
.footer-adv-list .adv-item:nth-child(2) { grid-column: 2; grid-row: 2; justify-self: end; }
.footer-adv-list .adv-item:nth-child(3) { grid-column: 1; grid-row: 3; justify-self: start; }
.footer-adv-list .adv-item:nth-child(4) { grid-column: 2; grid-row: 4; justify-self: end; }

.footer-adv-list .adv-item {
  background: var(--vet-blue-100);
  border-radius: 3.5rem;
  padding: 3.5rem 3rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow-soft);
  min-height: 26rem;
  width: 100%;
  max-width: min(800px, 42vw);
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}
.footer-adv-list .adv-item:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.footer-adv-list .adv-name-desc {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.footer-adv-list .adv-name-desc .name {
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 1.15rem;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.footer-adv-list .adv-name-desc .desc {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--color-text);
  flex: 1;
}
.footer-adv-list .adv-name-desc .desc > a {
  color: var(--color-primary);
  text-decoration: none;
  font-weight: 600;
}
.footer-adv-list .adv-name-desc .desc > a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

/* Horaires (adv-item--hours) */
.footer-adv-list .adv-hours-list {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
}
.footer-adv-list .adv-hours-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 1.2rem;
  color: var(--color-text);
  flex-wrap: wrap;
}
.footer-adv-list .adv-hours-list .day {
  display: inline-block;
  padding: 0.45rem 1rem;
  background: var(--color-primary);
  color: var(--color-surface);
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.1rem;
  min-width: 6rem;
  text-align: center;
}
.footer-adv-list .adv-hours-list .time {
  font-weight: 600;
  color: var(--color-text);
  font-size: 1.2rem;
}
.footer-adv-list .adv-note {
  margin: 0;
  font-size: 1.05rem;
  color: var(--color-text-muted);
}

/* Contact */
.footer-adv-list .adv-socials {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.footer-adv-list .adv-socials a {
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
  color: var(--color-primary);
}
.footer-adv-list .adv-socials a:hover { text-decoration: underline; }
.footer-adv-list .adv-phone,
.footer-adv-list .adv-email {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary-dark);
  margin-bottom: 0.5rem;
}
.footer-adv-list .adv-email {
  font-size: 1.15rem;
  word-break: break-all;
  margin-bottom: 0;
}
.footer-adv-list .adv-phone:hover,
.footer-adv-list .adv-email:hover { color: var(--color-primary); text-decoration: none; }

/* Menu */
.footer-adv-list .adv-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-adv-list .adv-menu-list li { margin-bottom: 0.65rem; }
.footer-adv-list .adv-menu-list a {
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--color-primary);
}
.footer-adv-list .adv-menu-list a:hover { text-decoration: underline; color: var(--color-primary-dark); }

.footer-bottom {
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 0;
  border-top: 1px solid rgba(197, 224, 239, 0.8);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-align: center;
  letter-spacing: 0.01em;
}
.footer-copy { margin: 0; }

@media (max-width: 900px) {
  .footer-adv-list {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto auto;
    gap: 1.5rem;
  }
  .footer-adv-list .adv-item:nth-child(1),
  .footer-adv-list .adv-item:nth-child(2),
  .footer-adv-list .adv-item:nth-child(3),
  .footer-adv-list .adv-item:nth-child(4) {
    grid-column: 1;
    justify-self: stretch;
  }
  .footer-adv-list .adv-item:nth-child(1) { grid-row: 1; }
  .footer-adv-list .adv-item:nth-child(2) { grid-row: 2; }
  .footer-adv-list .adv-item:nth-child(3) { grid-row: 3; }
  .footer-adv-list .adv-item:nth-child(4) { grid-row: 4; }
  .footer-adv-list .adv-item { max-width: none; }
}

@media (max-width: 600px) {
  .site-footer {
    padding: 2.5rem 1rem 1.5rem;
  }
  .footer-adv-wrap {
    padding: 0 0.5rem;
  }
  .footer-adv-list {
    gap: 1rem;
  }
  .footer-adv-list .adv-item {
    min-height: auto;
    padding: 1.75rem 1.5rem;
    border-radius: 1.25rem;
  }
  .footer-adv-list .adv-name-desc .name { font-size: 1.5rem; }
  .footer-adv-list .adv-hours-list li { font-size: 1.05rem; }
  .footer-adv-list .adv-hours-list .day { font-size: 0.95rem; min-width: 5rem; }
  .footer-adv-list .adv-hours-list .time { font-size: 1rem; }
  .footer-bottom { text-align: left; padding-left: 0.5rem; }
}

/* ----- Page service (détail) – même style que le site ----- */
body.has-page-header {
  padding-top: 0;
  background: var(--color-bg-subtle);
}
.page-header {
  padding-top: calc(var(--header-height) + 4rem);
  padding-bottom: 4rem;
  background: var(--color-bg-subtle);
  text-align: center;
}
.page-header .section-inner {
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--page-padding);
}
.page-header .breadcrumb {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}
.page-header .breadcrumb a { color: var(--color-primary); }
.page-header .breadcrumb a:hover { text-decoration: underline; }
.page-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 700;
  color: var(--color-primary-dark);
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.page-header h1::after {
  content: '';
  display: block;
  width: 4rem;
  height: 3px;
  margin: 0.85rem auto 0;
  background: var(--color-primary-light);
  border-radius: 2px;
  opacity: 0.8;
}
.service-content {
  padding: 0 var(--page-padding) 5.5rem;
  background: var(--color-bg-subtle);
}
/* Nouveau style : une carte unique avec bordure d’accent et typo lisible */
.service-sheet {
  max-width: 820px;
  margin: 0 auto;
  background: var(--vet-blue-100);
  color: #1e3a4a;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 3rem 2.75rem;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.service-sheet:hover {
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}
.service-sheet p {
  margin: 0 0 1.25rem;
  font-size: 1.35rem;
  line-height: 1.6;
  color: #1e3a4a;
}
.service-sheet p:last-of-type {
  margin-bottom: 0;
}
.service-sheet a {
  color: var(--color-primary-dark);
  font-weight: 600;
}
.service-sheet a:hover {
  color: var(--color-primary);
  text-decoration: underline;
}
.service-content .back-wrap {
  text-align: center;
  padding: 2.5rem var(--page-padding) 0;
}
.service-content .back {
  display: inline-block;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem 2.25rem;
  background: var(--color-primary);
  color: var(--color-surface);
  border-radius: var(--radius-md);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(30, 95, 138, 0.28);
  transition: background 0.25s ease, color 0.2s ease, box-shadow 0.25s ease, transform 0.2s ease;
}
.service-content .back:hover {
  background: var(--color-primary-dark);
  color: var(--color-surface);
  text-decoration: none;
  box-shadow: 0 6px 22px rgba(13, 61, 86, 0.35);
  transform: translateY(-1px);
}
@media (max-width: 640px) {
  .page-header {
    padding-top: calc(var(--header-height) + 2.5rem);
    padding-bottom: 2.5rem;
  }
  .service-sheet {
    padding: 2rem var(--page-padding);
  }
  .service-sheet p {
    font-size: 1.2rem;
  }
  .service-content .back {
    padding: 0.9rem 1.75rem;
    font-size: 1.05rem;
  }
}
