/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .container { padding: 0 32px; } }
@media (min-width: 1200px) { .container { padding: 0 40px; } }

/* Header sticky */
.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h-mobile);
  background: var(--bg);
  border-bottom: 1px solid transparent;
  display: flex;
  align-items: center;
  z-index: var(--z-header);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.site-header.scrolled {
  border-bottom-color: var(--border);
  box-shadow: 0 2px 12px rgba(44,42,32,0.07);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 100%;
}

/* Brand */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.brand-icon {
  color: var(--accent);
  flex-shrink: 0;
}
.brand-name {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}

/* Nav desktop */
.nav-desktop {
  display: none;
}
.nav-desktop a {
  font-family: var(--ff-ui);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  opacity: 0.8;
  padding: 8px 4px;
  transition: opacity 0.2s, color 0.2s;
  letter-spacing: 0.01em;
}
.nav-desktop a:hover { opacity: 1; color: var(--accent); }

/* CTA header */
.header-cta {
  display: none;
}

@media (min-width: 768px) {
  .site-header { height: var(--header-h); }
  .nav-desktop {
    display: flex;
    align-items: center;
    gap: clamp(16px, 2.5vw, 32px);
  }
  .header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--ff-ui);
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    background: var(--accent);
    padding: 10px 20px;
    border-radius: var(--r-md);
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
  }
  .header-cta:hover { background: oklch(40% 0.11 145); transform: translateY(-1px); }
}

/* Footer */
.site-footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 48px 20px 32px;
  margin-top: 0;
}
.site-footer .container { display: grid; gap: 32px; }
.footer-brand .brand-name { color: #fff; opacity: 0.95; }
.footer-brand .brand-icon { color: var(--accent-2); }
.footer-tagline { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-top: 8px; }
.footer-links { display: flex; flex-direction: column; gap: 6px; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-links a:hover { color: var(--accent-2); }
.footer-horaires { font-size: 0.85rem; }
.footer-horaires h4 { font-family: var(--ff-ui); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent-2); margin-bottom: 10px; }
.footer-horaires p { color: rgba(255,255,255,0.7); line-height: 1.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--accent-2); }
.footer-siren { font-size: 0.75rem; color: rgba(255,255,255,0.3); }

@media (min-width: 640px) {
  .site-footer .container { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 1024px) {
  .site-footer .container { grid-template-columns: 1.5fr 1fr 1fr; }
  .site-footer { padding: 64px 40px 40px; }
}

/* FAB appel mobile */
.fab-call {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  font-family: var(--ff-ui);
  font-size: 1rem;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(94,107,59,0.45);
  z-index: 900;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}
.fab-call:hover { transform: translateX(-50%) translateY(-2px); box-shadow: 0 8px 28px rgba(94,107,59,0.5); }
@media (min-width: 768px) { .fab-call { display: none; } }
