/* ═══════════════════════════════════════════════════════════
   components.css — Cabinet de l'Amandolier
   Buttons · Nav · Hero · Ticker · Stats · About · Services ·
   Feature · Team · Partners · Emergency · Contact · FAQ · Footer ·
   Cookie consent · Forms
   Mobile-first: base = mobile, scale up with min-width
   ═══════════════════════════════════════════════════════════ */

/* ─── Buttons ─────────────────────────────────────────────── */
/* All button text white on --color-blue-btn (#1570C4): 4.68:1 ✅ AA */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  min-height: 44px; /* tap target */
  font-family: var(--font-body);
  font-size: 0.875rem; /* 14px */
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform 0.2s;
}

.btn:hover  { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--color-blue-btn);
  color: var(--color-white);
  border-color: var(--color-blue-btn);
}
.btn-primary:hover {
  background: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-outline {
  background: transparent;
  color: var(--color-blue-btn);
  border-color: var(--color-blue-btn);
}
.btn-outline:hover {
  background: var(--color-blue-btn);
  color: var(--color-white);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-navy);  /* navy on white: 14:1 ✅ */
  border-color: var(--color-white);
}
.btn-white:hover { background: var(--color-grey-light); border-color: var(--color-grey-light); }

.btn-urgent {
  background: var(--color-urgent);
  color: var(--color-white);
  border-color: var(--color-urgent);
}
.btn-urgent:hover { background: #a81a1a; border-color: #a81a1a; }

.read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--color-navy);   /* navy on white: 14:1 ✅ */
  min-height: 44px;
  transition: gap var(--transition), color var(--transition);
}
.read-more:hover { gap: 10px; color: var(--color-blue-btn); }
.read-more svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── Cookie consent banner ──────────────────────────────── */
#cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 1rem;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cookie-banner__text {
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

.cookie-banner__text strong {
  color: var(--color-white);
  font-weight: 700;
  display: block;
  margin-bottom: 4px;
}

.cookie-banner__text a {
  color: #93c5fd;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.cookie-banner__actions .btn {
  font-size: 0.75rem;
  padding: 9px 18px;
  min-height: 40px;
}

@media (min-width: 768px) {
  .cookie-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-banner__text { max-width: 600px; }
  .cookie-banner__actions { flex-shrink: 0; }
}

/* ─── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-white);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.nav {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  align-items: center;
  height: 68px;
  gap: 1rem;
}

@media (min-width: 768px) {
  .nav { height: 76px; gap: 1.5rem; }
}

.nav__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.nav__logo-pill {
  background: var(--color-navy);
  padding: 7px 14px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
}

.nav__logo-pill img {
  height: 20px;
  width: auto;
  display: block;
}

@media (min-width: 768px) {
  .nav__logo-pill { padding: 8px 16px; }
  .nav__logo-pill img { height: 22px; }
}

/* ─── Hamburger button ───────────────────────────────────── */
.nav__hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  margin-left: auto;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.nav__hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-near-black);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
  transform-origin: center;
}

.nav__hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.nav__hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (min-width: 900px) {
  .nav__hamburger { display: none; }
}

/* Mobile: nav links hidden, show hamburger */
.nav__links {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1;
  justify-content: center;
  list-style: none;
}

/* Mobile drawer */
.nav__links.is-open {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: fixed;
  inset: 68px 0 0 0;
  background: var(--color-white);
  padding: 1.5rem var(--container-pad);
  gap: 4px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  overflow-y: auto;
}

.nav__links.is-open a {
  font-size: 1.0625rem;
  padding: 14px 16px;
  min-height: 52px;
  border-bottom: 1px solid var(--color-grey-light);
}

@media (min-width: 900px) {
  .nav__links { display: flex; }
  .nav__links.is-open {
    position: static;
    flex-direction: row;
    padding: 0;
    gap: 2px;
    box-shadow: none;
    overflow: visible;
    inset: unset;
  }
  .nav__links.is-open a {
    font-size: 0.9375rem;
    padding: 8px 14px;
    min-height: 44px;
    border-bottom: none;
  }
}

.nav__links a {
  display: block;
  padding: 8px 14px;
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  color: var(--color-grey-dark);
  border-radius: var(--radius);
  transition: color var(--transition), background var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.nav__links a:hover,
.nav__links a.active {
  color: var(--color-navy);
  background: var(--color-blue-pale);
}

.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.nav__phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-near-black);
  min-height: 44px;
}

.nav__phone svg { width: 15px; height: 15px; color: var(--color-blue); }

@media (min-width: 640px) { .nav__phone { display: flex; } }

.nav__btn-urgent {
  font-size: 0.75rem;
  padding: 8px 14px;
  min-height: 44px;
}

.nav__btn-rdv { display: none; }

@media (min-width: 768px) {
  .nav__btn-rdv { display: inline-flex; font-size: 0.8125rem; padding: 9px 18px; }
  .nav__btn-urgent { font-size: 0.8125rem; padding: 9px 14px; }
}

/* ─── Hero ───────────────────────────────────────────────── */
.hero {
  background: var(--color-white);
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero { padding: 4rem 0; min-height: 90vh; }
}

.hero__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  width: 100%;
}

@media (min-width: 900px) {
  .hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
  }
}

.hero__iso {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-blue-pale);
  border: 1.5px solid rgba(36, 144, 235, 0.2);
  border-radius: 40px;
  padding: 6px 16px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-navy);        /* navy on pale-blue: 12:1 ✅ */
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero__iso-dot {
  width: 7px;
  height: 7px;
  background: var(--color-blue);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

.hero h1 {
  margin-bottom: 1.25rem;
}

.hero h1 .blue { color: var(--color-blue); } /* 72px bold, large text 3.4:1 ✅ */

.hero__desc {
  font-size: 1.0625rem;
  color: var(--color-grey-mid);
  max-width: 32rem;
  margin-bottom: 2rem;
}

.hero__ctas {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

@media (min-width: 900px) {
  .hero__ctas { margin-bottom: 0; }
}

.hero__stats {
  display: flex;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.hero__stat-num {
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--color-near-black);
  line-height: 1;
}

.hero__stat-num span { color: var(--color-blue); }

.hero__stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-grey-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 3px;
}

/* Hero right — hidden on mobile, shown on md+ */
.hero__right {
  display: none;
  position: relative;
}

@media (min-width: 900px) { .hero__right { display: block; } }

.hero__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 5 / 6;
}

.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.hero__img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero__img-badge-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: var(--color-blue-btn);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__img-badge-icon svg { width: 20px; height: 20px; color: var(--color-white); }

.hero__img-badge-text strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-near-black);
}

.hero__img-badge-text span {
  font-size: 0.75rem;
  color: var(--color-grey-mid);
}

.hero__circle,
.hero__circle-2 {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero__circle {
  top: -2.5rem;
  right: -2.5rem;
  width: 200px;
  height: 200px;
  border: 2px dashed rgba(36, 144, 235, 0.2);
}

.hero__circle-2 {
  top: -5rem;
  right: -5rem;
  width: 280px;
  height: 280px;
  border: 1.5px dashed rgba(36, 144, 235, 0.1);
}

/* ─── Marquee ticker ─────────────────────────────────────── */
.ticker {
  background: var(--color-blue);
  padding: 13px 0;
  overflow: hidden;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.ticker:hover .ticker__track { animation-play-state: paused; }

.ticker__item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0 1.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-white);
  white-space: nowrap;
}

.ticker__dot {
  width: 5px;
  height: 5px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  flex-shrink: 0;
}

/* ─── Stats bar ──────────────────────────────────────────── */
.stats { padding: 3.75rem 0; }

.stats__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
}

.stat-item {
  background: var(--color-grey-light);
  padding: 2rem 1.25rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stat-item { padding: 2.5rem 2rem; }
}

.stat-item__icon {
  width: 56px;
  height: 56px;
  background: var(--color-blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.stat-item__icon svg { width: 26px; height: 26px; color: var(--color-blue); }

.stat-item__num {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-near-black);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__num span { color: var(--color-blue); }

/* navy on grey-light: 14:1 ✅ */
.stat-item__label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-navy);
}

.stat-item__desc {
  font-size: 0.8125rem;
  color: var(--color-grey-mid);
  margin-top: 4px;
}

/* ─── About / Le cabinet ─────────────────────────────────── */
.about__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }
}

.about__img-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

.about__img-wrap img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .about__img-wrap img { height: 440px; }
}

@media (min-width: 900px) {
  .about__img-wrap img { height: 500px; }
}

.about__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(20, 69, 123, 0.88), transparent);
  padding: 2rem 1.5rem 1.5rem;
}

.about__img-cert {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius);
  padding: 10px 16px;
}

.about__img-cert svg { width: 18px; height: 18px; color: var(--color-white); }

.about__img-cert span {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-white);
  letter-spacing: 0.04em;
}

.about__title { margin-bottom: 1rem; }

.about__desc {
  margin-bottom: 1.75rem;
}

.about__values { margin-bottom: 2rem; }

.about__value {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.about__value-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--color-blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.about__value-icon svg { width: 20px; height: 20px; color: var(--color-blue); }

.about__value-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 2px;
}

.about__value-text p { font-size: 0.9375rem; }

/* ─── Services ────────────────────────────────────────────── */
.services__header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.services__header h2 { margin-bottom: 1rem; }

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 480px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 768px) {
  .services__grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .services__grid { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
}

.service-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.07);
  transition: box-shadow var(--transition), transform var(--transition);
  min-width: 0; /* allow grid item to shrink below content size */
}

.service-card:hover {
  box-shadow: 0 10px 36px rgba(36, 144, 235, 0.12);
  transform: translateY(-3px);
}

.service-card__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.125rem;
  color: var(--color-blue);
}

.service-card__icon svg { width: 100%; height: 100%; }

.service-card h3 { margin-bottom: 0.625rem; overflow-wrap: break-word; }

/* ─── Feature banner ──────────────────────────────────────── */
.feature-banner {
  position: relative;
  overflow: hidden;
  background: var(--color-navy);
  padding: 4rem 0;
}

@media (min-width: 768px) { .feature-banner { padding: 5rem 0; } }

.feature-banner__bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.cabinet-amandolier.ch/wp-content/uploads/sites/2/2023/09/WEB-NR_DSC8394-2.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}

.feature-banner__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
}

@media (min-width: 900px) {
  .feature-banner__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.75rem;
    align-items: center;
  }
}

.feature-banner__eyebrow {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  margin-bottom: 1.25rem;
}

.feature-banner__left h2 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.feature-banner__desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
}

.feature-banner__right {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

@media (min-width: 900px) {
  .feature-banner__right { display: grid; margin-top: 0; }
}

.feature-item {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.375rem 1.25rem;
}

.feature-item__icon {
  width: 38px;
  height: 38px;
  background: rgba(36, 144, 235, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.feature-item__icon svg { width: 18px; height: 18px; color: var(--color-white); }

.feature-item__title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 5px;
}

.feature-item__text {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.55;
}

/* ─── Team ────────────────────────────────────────────────── */
.team__header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem;
}

.team__header h2 { margin-bottom: 0.75rem; }

.team__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

@media (min-width: 480px) {
  .team__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 900px) {
  .team__grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
}

.doctor-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
  text-align: center;
  transition: box-shadow var(--transition), transform var(--transition);
}

.doctor-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.doctor-card__photo-wrap {
  background: var(--color-grey-light);
  padding: 2rem 2rem 0;
  position: relative;
}

.doctor-card__photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(36,144,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.doctor-card__photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 4px solid var(--color-white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.doctor-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.doctor-card__body {
  padding: 1.25rem 1.5rem 1.75rem;
}

.doctor-card__name {
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin-bottom: 4px;
}

/* navy on white: 14:1 ✅ */
.doctor-card__specialty {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 1rem;
}

.doctor-card__divider {
  width: 36px;
  height: 2px;
  background: var(--color-blue);
  margin: 0 auto 1rem;
  border-radius: 1px;
}

.doctor-card__rdv {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-blue-btn);
  color: var(--color-white);
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
  min-height: 44px;
}

.doctor-card__rdv:hover { background: var(--color-navy); }

.team__staff-section {
  background: var(--color-grey-light);
  border-radius: var(--radius);
  overflow: hidden;
}

@media (min-width: 768px) {
  .team__staff-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.team__staff-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .team__staff-img { height: 100%; min-height: 280px; }
}

.team__staff-content {
  padding: 2rem 1.5rem;
}

@media (min-width: 768px) {
  .team__staff-content { padding: 3rem; }
}

.team__staff-content h3 {
  font-size: 1.625rem;
  margin-bottom: 0.75rem;
  margin-top: 0.5rem;
}

/* ─── Partners ────────────────────────────────────────────── */
.partners__header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.partners__header h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); }

.partners__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .partners__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .partners__grid { grid-template-columns: repeat(3, 1fr); }
}

.partner-card {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  transition: box-shadow var(--transition);
}

.partner-card:hover { box-shadow: var(--shadow-md); }

.partner-card h3 { margin-bottom: 0.75rem; }

.partner-card p { margin-bottom: 1.125rem; font-size: 0.9375rem; }

/* ─── Emergency bar ──────────────────────────────────────── */
.emergency {
  background: var(--color-navy);
  padding: 2rem 0;
}

.emergency__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 900px) {
  .emergency__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.emergency__left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.emergency__icon-wrap {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(201, 31, 31, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.emergency__icon-wrap svg { width: 22px; height: 22px; color: #ff8080; }

.emergency__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-white);
}

.emergency__sub {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 2px;
}

.emergency__contacts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .emergency__contacts { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 900px) {
  .emergency__contacts { display: flex; gap: 1.75rem; }
}

.emergency__contact-name {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.emergency__contact-num {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-top: 3px;
}

.emergency__contact-num a { color: inherit; }
.emergency__contact-num a:hover { color: #93c5fd; }
.emergency__contact-num a:focus-visible { outline-color: #93c5fd; }

/* ─── Contact ─────────────────────────────────────────────── */
.contact__grid {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

@media (min-width: 900px) {
  .contact__grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}

.contact__left h2 { margin-bottom: 0.75rem; }

.contact__desc { margin-bottom: 2.5rem; }

.contact-items { display: flex; flex-direction: column; gap: 0; }

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.375rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.contact-item:first-child { border-top: 1px solid rgba(0, 0, 0, 0.07); }

.contact-item__icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--color-blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.contact-item__icon svg { width: 20px; height: 20px; color: var(--color-blue); }

/* navy on white: 14:1 ✅ */
.contact-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--color-navy);
  margin-bottom: 3px;
}

.contact-item__value {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--color-near-black);
  line-height: 1.4;
}

.contact-item__value a:hover { color: var(--color-blue-btn); }

.contact-item__note { font-size: 0.875rem; color: var(--color-grey-mid); margin-top: 3px; }

/* Contact right: map + appointment box */
.contact__right {}

.contact__map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.07);
}

.contact__map {
  width: 100%;
  height: 300px;
  display: block;
  border: 0;
}

@media (min-width: 768px) { .contact__map { height: 360px; } }

.contact__rdv-box {
  background: var(--color-blue-btn);
  padding: 1.375rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .contact__rdv-box {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.contact__rdv-text strong {
  display: block;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.contact__rdv-text span { font-size: 0.875rem; color: rgba(255, 255, 255, 0.75); }

/* ─── Contact form ────────────────────────────────────────── */
.contact-form {
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.contact-form h3 { margin-bottom: 1.375rem; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
}

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group--full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-near-black);
  letter-spacing: 0.02em;
}

.form-group label .req { color: var(--color-urgent); margin-left: 2px; }

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-near-black);
  background: var(--color-white);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  border-radius: var(--radius);
  padding: 11px 14px;
  min-height: 44px;
  transition: border-color var(--transition), box-shadow var(--transition);
  width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--color-grey-mid);
  font-weight: 400;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-blue-btn);
  box-shadow: 0 0 0 3px rgba(21, 112, 196, 0.12);
}

.form-group textarea { resize: vertical; min-height: 120px; }

/* Honeypot — hidden from all users */
.form-group--honey {
  position: absolute;
  left: -9999px;
  visibility: hidden;
  pointer-events: none;
}

.form-submit { margin-top: 0.5rem; }

.form-note {
  margin-top: 0.625rem;
  font-size: 0.8125rem;
  color: var(--color-grey-mid);
}

/* ─── Admin banner ────────────────────────────────────────── */
.admin-banner { background: var(--color-grey-light); padding: 3rem 0; }

.admin-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .admin-banner__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.admin-banner__text h2 {
  font-size: clamp(1.375rem, 3vw, 1.75rem);
  margin-bottom: 0.5rem;
  margin-top: 0.375rem;
}

.admin-banner__text p { max-width: 36rem; }

/* ─── FAQ ─────────────────────────────────────────────────── */
.faq__header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 2.5rem;
}

.faq__header h2 { margin-bottom: 0.75rem; }

.faq__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .faq__grid { grid-template-columns: 1fr 1fr; }
}

.faq-item {
  background: var(--color-white);
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item.open { border-color: var(--color-blue-btn); }

.faq-item__q {
  width: 100%;
  text-align: left;
  padding: 1.125rem 1.375rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--color-near-black);
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  transition: color var(--transition);
  min-height: 44px;
  font-family: var(--font-body);
}

.faq-item__q:hover { color: var(--color-navy); }
.faq-item.open .faq-item__q { color: var(--color-blue-btn); }

.faq-item__q-icon {
  width: 26px;
  height: 26px;
  min-width: 26px;
  background: var(--color-blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}

.faq-item__q-icon svg {
  width: 12px;
  height: 12px;
  color: var(--color-navy);
  transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-item__q-icon { background: var(--color-blue-btn); }
.faq-item.open .faq-item__q-icon svg { color: var(--color-white); transform: rotate(45deg); }

.faq-item__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}

.faq-item.open .faq-item__a { max-height: 500px; }

.faq-item__a-inner {
  padding: 0 1.375rem 1.25rem;
  padding-top: 1rem;
  font-size: 0.9375rem;
  color: var(--color-grey-mid);
  line-height: 1.7;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.faq-item__a-inner a { color: var(--color-blue-btn); text-decoration: underline; }

/* ─── Footer ──────────────────────────────────────────────── */
.footer-top {
  background: var(--color-grey-light);
  padding: 4rem 0 3.5rem;
}

.footer-top__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-top__grid { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-top__grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-top__brand { }

.footer-top__logo-pill {
  background: var(--color-navy);
  padding: 10px 18px;
  border-radius: var(--radius);
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-top__logo-pill img {
  height: 22px;
  width: auto;
  display: block;
}

.footer-top__brand p { font-size: 0.9375rem; max-width: 18rem; }

.footer-top__col-title {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-near-black);
  margin-bottom: 1rem;
}

.footer-top__links { display: flex; flex-direction: column; gap: 0.5rem; }

.footer-top__links a,
.footer-top__links li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-grey-mid);
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-top__links a:hover { color: var(--color-navy); }

/* Footer bar — Deep Navy background */
.footer-bar {
  background: var(--color-navy);
  padding: 1.25rem 0;
}

.footer-bar__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bar__inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bar__copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bar__legal {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.footer-bar__legal a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-bar__legal a:hover { color: var(--color-white); }

/* ─── Legal pages ─────────────────────────────────────────── */
.legal-page__header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.legal-page__header h1 {
  margin: 0.5rem 0 0.75rem;
}

.legal-page__header p {
  font-size: 0.9375rem;
  color: var(--color-grey-mid);
}

.legal-page__body {
  max-width: 800px;
}

.legal-page__body h2 {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--color-navy);
  margin: 2.5rem 0 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-blue-pale);
}

.legal-page__body h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-near-black);
  margin: 1.5rem 0 0.5rem;
}

.legal-page__body p {
  margin-bottom: 0.75rem;
}

.legal-page__body a {
  color: var(--color-blue-btn);
  text-decoration: underline;
}

.legal-page__body a:hover {
  color: var(--color-navy);
}

/* Footer inner layout alias (used on legal pages) */
.footer-top__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 640px) {
  .footer-top__inner { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 1024px) {
  .footer-top__inner { grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
}

.footer-top__col a,
.footer-top__col li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-grey-mid);
  transition: color var(--transition);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.footer-top__col a:hover { color: var(--color-navy); }

.footer-top__heading {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-near-black);
  margin-bottom: 1rem;
}

/* Footer bar <p> and <ul> direct children */
.footer-bar__inner > p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bar__inner > ul {
  display: flex;
  gap: 1.25rem;
  list-style: none;
}

.footer-bar__inner > ul a {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  transition: color var(--transition);
}

.footer-bar__inner > ul a:hover,
.footer-bar__inner > ul a[aria-current] {
  color: var(--color-white);
}

/* ─── Skip link (accessibility) ─────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  background: var(--color-navy);
  color: var(--color-white);
  padding: 12px 24px;
  font-weight: 700;
  font-size: 0.9375rem;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; }
