:root {
  --bg: #ffffff;
  --muted: #6b7280;
  --accent: #f97316;
  --accent-2: #fdba74;
  --card: #fff7ed;
  --maxw: 1100px;
}

/* RESET */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial;
  color: #0f172a;
  background: var(--bg);
  line-height: 1.6;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition: 0.3s;
}

/* HEADER */
.sticky-header {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #fff7ed 0%, #ffffff 100%);
  border-bottom: 1px solid #e6edf0;
  z-index: 999;
}
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 20px;
}
.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
}
.brand-name {
  font-weight: 700;
}
.brand-desc {
  color: var(--muted);
  font-size: 13px;
}
nav {
  display: flex;
  gap: 14px;
  align-items: center;
}
nav a:hover {
  color: var(--accent-2);
}
.alert-btn {
  background: var(--accent);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 700;
  animation: pulse 1.5s infinite;
  transition: 0.3s;
}
.alert-btn:hover {
  opacity: 0.8;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* HERO */
.hero {
  padding: 70px 0;
  text-align: center;
}
h1 {
  font-size: 36px;
  margin-bottom: 20px;
}
.lead {
  color: var(--muted);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 20px;
}
.credit {
  font-size: 28px;
  font-weight: 900;
  color: var(--accent);
  margin-top: 25px;
  text-transform: uppercase;
  background: #fff1e6;
  display: inline-block;
  padding: 12px 24px;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.cta {
  margin-top: 25px;
}
.btn {
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
}
.btn:hover {
  background: var(--accent-2);
}

/* GRID SERVICES */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.card {
  background: var(--card);
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.1);
  transition: 0.3s;
}
.card:hover {
  transform: translateY(-4px);
}
.card h3 {
  margin-bottom: 10px;
  color: var(--accent);
}
.muted {
  color: var(--muted);
  font-size: 15px;
}
.card-large {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 20px;
}
.card-large img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  margin-top: 20px;
}
.gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  transition: 0.3s;
}
.gallery img:hover {
  transform: scale(1.05);
}

/* MAP */
.map-container {
  margin-top: 40px;
  text-align: center;
}
.map-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  border-radius: 12px;
  border: 2px solid var(--accent);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-top: 15px;
}

/* CONTACT */
.contact-section {
  background: #fff8f0;
  padding: 50px 20px;
  text-align: center;
  border-radius: 12px;
  margin-top: 50px;
}
.contact-section h2 {
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-section .lead {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 40px;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  justify-items: center;
}
.contact-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  width: 100%;
  max-width: 280px;
}
.contact-card:hover {
  transform: translateY(-5px);
}
.contact-card h3 {
  color: var(--accent);
  margin-bottom: 10px;
}
.contact-card p {
  color: var(--muted);
  font-size: 14px;
  margin-bottom: 15px;
}
.btn-small {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: 0.3s;
}
.btn-small:hover {
  background: var(--accent-2);
}

/* HORAIRES TABLE */
.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}
.hours-table td {
  padding: 4px 8px;
  text-align: left;
  font-size: 14px;
  color: var(--muted);
}
.hours-table tr:nth-child(even) {
  background: #fff3e6;
  border-radius: 4px;
}
.hours-table td:first-child {
  font-weight: 600;
  color: var(--accent);
}

/* FOOTER */
footer {
  padding: 25px 0;
  margin-top: 40px;
  color: var(--muted);
  border-top: 1px solid #eef2f3;
  text-align: center;
}

/* MEDIA QUERIES */
@media (max-width: 700px) {
  h1 { font-size: 28px; }
  .credit { font-size: 22px; }
  .card-large {
    flex-direction: column;
    align-items: flex-start;
  }
  .card-large img { margin-bottom: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
}
