/* Fresh & Natural — Clinique Vétérinaire des Jardins */

:root {
  --bg:           #FAFAF8;
  --white:        #FFFFFF;
  --green:        #6aba41;
  --green-dark:   #559932;
  --green-light:  #edf7e5;
  --green-pale:   #f5fbf0;
  --text:         #1A1A1A;
  --text-muted:   #6B7280;
  --border:       #E5E7EB;
  --urgent:       #C0392B;
  --urgent-bg:    #FDF2F1;
  --display: 'Syne', system-ui, sans-serif;
  --sans:         'Inter', system-ui, -apple-system, sans-serif;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --max:          1200px;
  --nav-h:        72px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text);
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.8rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.5rem); }
h4 { font-size: 1.05rem; }

.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ─── Layout ─── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 1.5rem; }
.section   { padding: 6rem 0; }
.section-alt { background: var(--green-pale); }

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}
.section-header h2  { margin-bottom: 0.85rem; }
.section-header p   { color: var(--text-muted); font-size: 1.05rem; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.9rem;
  border-radius: var(--radius-sm);
  font-family: var(--sans);
  font-size: 0.93rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.22s ease;
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
}
.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(74,124,89,0.28);
}
.btn-outline {
  background: transparent;
  color: var(--green);
  border-color: var(--green);
}
.btn-outline:hover {
  background: var(--green);
  color: #fff;
  transform: translateY(-2px);
}
.btn-white {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.btn-white:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

/* ─── Navigation ─── */
#nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
#nav.scrolled {
  background: rgba(250,250,248,0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: clamp(158px, 10vw, 180px); width: auto; object-fit: contain; position: relative; top: 10px; }
.nav-links {
  display: flex;
  list-style: none;
  gap: 0.1rem;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 0.38rem 0.7rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
#nav.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover, .nav-links a.active {
  color: var(--green) !important;
  background: var(--green-light);
}
.nav-tel {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
  flex-shrink: 0;
}
#nav.scrolled .nav-tel { color: var(--text); }
.nav-tel:hover { color: var(--green) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.9);
  border-radius: 2px;
  transition: all 0.3s;
}
#nav.scrolled .nav-hamburger span { background: var(--text); }

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-tel { font-size: 0.82rem; }
}

.nav-links.open {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--border);
  gap: 0.1rem;
}
.nav-links.open a { color: var(--text) !important; }
.nav-links.open a:hover, .nav-links.open a.active { color: var(--green) !important; }

/* ─── Hero ─── */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('/images/consult.jpg');
  background-size: cover;
  background-position: center 40%;
  background-color: #2d4a38;
  will-change: transform;
}
/*.hero-bg::after {*/
/*  content: '';*/
/*  position: absolute;*/
/*  inset: 0;*/
/*  background: linear-gradient(*/
/*    160deg,*/
/*    rgba(20,35,25,0.72) 0%,*/
/*    rgba(58,99,72,0.55) 60%,*/
/*    rgba(20,35,25,0.65) 100%*/
/*  );*/
/*}*/
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: #fff;
  padding: 2rem 1.5rem;
  max-width: 820px;
}
.hero-logo-wrap {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid rgba(255,255,255,0.35);
  margin: 0 auto 2rem;
  background: rgba(255,255,255,0.1);
}
.hero-logo-wrap img { width: 100%; height: 100%; object-fit: cover; }
.hero-content h1 {
  color: #fff;
  margin-bottom: 0.75rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.25);
}
.hero-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.3rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 1;
  animation: bounce 2.2s ease-in-out infinite;
  text-decoration: none;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); opacity: 0.6; }
  50%       { transform: translateX(-50%) translateY(-10px); opacity: 1; }
}

/* ─── Bienvenue ─── */
.bienvenue-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem;
  align-items: start;
}
.bienvenue-text h2   { margin-bottom: 1.25rem; }
.bienvenue-text p    { color: var(--text-muted); }
.bienvenue-text .btn { margin-top: 1.5rem; }

.hours-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.hours-card h3 {
  font-size: 1.15rem;
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
}
.hours-list { list-style: none; display: flex; flex-direction: column; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.93rem;
  gap: 1rem;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li.closed { opacity: 0.45; }
.hours-list .day { font-weight: 500; }
.hours-list .time { color: var(--text-muted); font-variant-numeric: tabular-nums; }
.hours-note {
  background: #f9d2d2;
  border-radius: var(--radius-sm);
  padding: 0.9rem 1rem;
  text-align: center;
  margin-top: 1.25rem;
}
.hours-note strong { display: block; color: var(--urgent); font-size: 1rem; }
.hours-note p { font-size: 0.82rem; color: var(--text-muted); margin: 0.2rem 0 0; }

.bienvenue-images {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0.85rem;
  margin-top: 4rem;
  border-radius: var(--radius);
  overflow: hidden;
}
.bienvenue-images img { width: 100%; height: 270px; object-fit: cover; }

@media (max-width: 900px) {
  .bienvenue-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .bienvenue-images { grid-template-columns: 1fr; }
  .bienvenue-images img:last-child { display: none; }
}

/* ─── La Clinique ─── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.25rem;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  transition: box-shadow 0.25s, transform 0.25s;
}
.service-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--green-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}
.service-card h3 { font-size: 1.05rem; margin-bottom: 0.6rem; }
.service-card p  { color: var(--text-muted); font-size: 0.9rem; }

.clinique-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-top: 3.5rem;
}
.clinique-photos img {
  width: 100%; height: 210px;
  object-fit: cover;
  border-radius: var(--radius);
}
@media (max-width: 700px) {
  .clinique-photos { grid-template-columns: 1fr 1fr; }
  .clinique-photos img:last-child { display: none; }
}

/* ─── L'Équipe ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}
.team-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.team-photo {
  height: 650px;
  background: var(--green-light);
  overflow: hidden;
}
.team-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s ease;
}
.team-card:hover .team-photo img { transform: scale(1.04); }
.team-info { padding: 1.6rem; }
.team-info h3 { font-size: 1.15rem; margin-bottom: 0.2rem; }
.team-role {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.9rem;
}
.team-bio { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 1rem; }
.team-creds { list-style: none; display: flex; flex-direction: column; gap: 0.3rem; }
.team-creds li {
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-left: 1.1rem;
  position: relative;
}
.team-creds li::before {
  content: '✓';
  position: absolute; left: 0;
  color: var(--green);
  font-weight: 700;
}

.team-extra { margin-top: 4rem; }
.team-extra-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.visiting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.visiting-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
}
.visiting-card h4 { font-size: 1rem; margin-bottom: 0.2rem; }
.visiting-role {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.6rem;
}
.visiting-card p { font-size: 0.87rem; color: var(--text-muted); }

.asv-intro { color: var(--text-muted); font-size: 0.93rem; margin-bottom: 1.5rem; }
.asv-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.asv-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 160px;
}
.asv-photo {
  width: 140px;
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--green-light);
}
.asv-photo img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.asv-placeholder { height: 100%; display: flex; align-items: center; justify-content: center; font-size: 3rem; }
.asv-info { text-align: center; }
.asv-info strong { display: block; font-size: 0.95rem; color: var(--text); }
.asv-info span { font-size: 0.82rem; color: var(--green-dark); }

/* ─── L'Équipement ─── */
#equipement { padding-bottom: 0; }
#equipement > .container > .section-header { padding-bottom: 3rem; }

.equipment-list { display: flex; flex-direction: column; }

.equipment-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
  border-top: 1px solid var(--border);
}
.equipment-item.flip { direction: rtl; }
.equipment-item.flip > * { direction: ltr; }

.equip-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  overflow: hidden;
}
.equip-imgs img { width: 100%; height: 100%; object-fit: cover; }
.equip-imgs.one { grid-template-columns: 1fr; }

.equip-text {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.equipment-item:nth-child(even) .equip-text { background: var(--green-pale); }

.equip-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--green-light);
  line-height: 1;
  margin-bottom: 0.5rem;
}
#equipement { overflow-x: clip; }

.equip-text .section-label { margin-bottom: 0.4rem; }
.equip-text h3 { font-size: clamp(1.3rem, 2.2vw, 1.9rem); margin-bottom: 0.85rem; }
.equip-text p  { color: var(--text-muted); font-size: 0.94rem; }
.equip-text p + p { margin-top: 0.5rem; }

@media (max-width: 800px) {
  .equipment-item { grid-template-columns: 1fr; min-height: auto; }
  .equipment-item.flip { direction: ltr; }
  .equip-imgs { height: 220px; }
  .equip-text { padding: 2rem 1.5rem; }
}

/* ─── Tarifs ─── */
.tarifs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 700px) { .tarifs-grid { grid-template-columns: 1fr; } }

.tarifs-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.tarifs-head {
  background: var(--green);
  color: #fff;
  padding: 1.2rem 1.75rem;
}
.tarifs-head h3 { color: #fff; font-size: 1.05rem; }
.tarifs-rows { padding: 0 1.75rem; }
.tarif-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  gap: 1rem;
}
.tarif-row:last-child { border-bottom: none; }
.tarif-name  { font-size: 0.92rem; }
.tarif-price { font-weight: 700; color: var(--green); white-space: nowrap; }
.tarifs-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.83rem;
  font-style: italic;
  margin-top: 2rem;
}

/* ─── Galerie ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.7rem;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--green-light);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.07); }
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0,0,0,0.65));
  color: #fff;
  font-size: 0.78rem;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.gallery-item:hover .gallery-caption { transform: translateY(0); }
.gallery-item.size-big  { grid-column: span 2; grid-row: span 2; }
.gallery-item.size-wide { grid-column: span 2; }
.gallery-item.size-tall { grid-row: span 2; }

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 160px;
  }
}

/* ─── Lightbox ─── */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.93);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
#lightbox.open { display: flex; }
.lb-inner { position: relative; text-align: center; }
.lb-inner img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
}
.lb-caption {
  color: rgba(255,255,255,0.75);
  margin-top: 1rem;
  font-size: 0.88rem;
}
.lb-close {
  position: fixed;
  top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,0.12);
  border: none; color: #fff;
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.lb-close:hover { background: rgba(255,255,255,0.25); }

/* ─── Urgences ─── */
#urgences { background: var(--urgent-bg); }

.urgences-head {
  text-align: center;
  margin-bottom: 3rem;
}
.urgences-head .section-label { color: var(--urgent); }
.urgences-head h2 { color: var(--urgent); }
.urgences-head p  { color: var(--text-muted); max-width: 640px; margin: 0.75rem auto 0; font-size: 0.95rem; }

.urgences-def {
  background: var(--white);
  border-left: 4px solid var(--urgent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 820px;
}
.urgences-def p { color: var(--text-muted); font-size: 0.93rem; }
.urgences-def ul {
  margin-top: 0.75rem;
  padding-left: 1.2rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}
.urgences-def ul li { margin-bottom: 0.25rem; }

.urgences-table {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.urgences-table table {
  width: 100%;
  border-collapse: collapse;
}
.urgences-table th {
  background: var(--urgent);
  color: #fff;
  padding: 0.9rem 1.25rem;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.urgences-table td {
  padding: 0.9rem 1.25rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.urgences-table tr:last-child td { border-bottom: none; }
.urgences-table tr:hover td { background: rgba(192,57,43,0.04); }
.urgences-tel { font-weight: 700; color: var(--urgent); white-space: nowrap; }
.badge-home {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: var(--green-light); color: var(--green-dark);
  font-size: 0.72rem; font-weight: 600;
  padding: 0.18rem 0.55rem; border-radius: 100px;
  margin-left: 0.4rem;
}

@media (max-width: 600px) {
  .urgences-table th:nth-child(2), .urgences-table td:nth-child(2) { display: none; }
}

/* ─── Plan d'accès ─── */
.acces-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
@media (max-width: 900px) { .acces-grid { grid-template-columns: 1fr; } }

.acces-addr {
  background: var(--green-light);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
}
.acces-addr strong {
  display: block;
  font-size: 1.05rem;
  font-family: var(--serif);
  margin-bottom: 0.25rem;
}
.acces-addr p { color: var(--text-muted); font-size: 0.92rem; }
.acces-addr a { color: var(--green); font-weight: 600; text-decoration: none; }
.acces-addr a:hover { text-decoration: underline; }

.transport-block { margin-bottom: 1.5rem; }
.transport-block h4 {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  padding-bottom: 0.4rem;
  border-bottom: 1px solid var(--border);
}
.transport-list { list-style: none; display: flex; flex-direction: column; gap: 0.45rem; }
.transport-list li { font-size: 0.88rem; color: var(--text-muted); display: flex; gap: 0.5rem; }
.transport-list li strong { color: var(--text); white-space: nowrap; }

.acces-note {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  color: var(--text-muted);
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.map-wrap iframe { width: 100%; height: 430px; border: none; display: block; }

/* ─── Footer ─── */
footer { background: #141a11; color: rgba(255,255,255,0.62); padding: 3.5rem 0 0; }
.footer-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 3rem;
}
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } }

.footer-logo { height: 48px; width: auto; border-radius: 8px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; }

footer h4 {
  color: rgba(255,255,255,0.9);
  font-family: var(--sans);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.9); }

.footer-contact { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contact a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.footer-contact a:hover { color: rgba(255,255,255,0.9); }

.footer-bottom {
  max-width: var(--max);
  margin: 2.5rem auto 0;
  padding: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.45); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ─── AOS tweaks ─── */
[data-aos] { pointer-events: none; }
[data-aos].aos-animate { pointer-events: auto; }

/* ─── Responsive misc ─── */
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-actions { flex-direction: column; align-items: center; }
}
