:root {
  --green: #0a8a3f;
  --green-dark: #066a2e;
  --green-light: #e8f5ee;
  --grey-bg: #f6f7f9;
  --text: #1c2128;
  --text-soft: #5a6470;
  --border: #e3e6ea;
  --white: #fff;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0,0,0,.06);
  --max: 1200px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.55;
  background: var(--white);
}

a { color: var(--green-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

/* Disclaimer banner */
.disclaimer {
  background: #fff8e1;
  border-bottom: 1px solid #f0d97a;
  color: #6b5a18;
  font-size: 13px;
  padding: 8px 0;
  text-align: center;
}
.disclaimer a { color: #6b5a18; text-decoration: underline; }

/* Header */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}
.brand-cross {
  width: 36px;
  height: 36px;
  background: var(--green);
  border-radius: 6px;
  position: relative;
  flex-shrink: 0;
}
.brand-cross::before, .brand-cross::after {
  content: "";
  position: absolute;
  background: var(--white);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.brand-cross::before { width: 70%; height: 18%; }
.brand-cross::after  { width: 18%; height: 70%; }
.brand-name {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .2px;
}
.brand-name span { color: var(--green); }

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
}
.main-nav a {
  color: var(--text);
  font-weight: 500;
  font-size: 15px;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: border-color .15s;
}
.main-nav a:hover { border-bottom-color: var(--green); text-decoration: none; }
.main-nav a.active { border-bottom-color: var(--green); color: var(--green-dark); }

.header-cta {
  background: var(--green);
  color: var(--white) !important;
  padding: 9px 18px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 14px;
}
.header-cta:hover { background: var(--green-dark); text-decoration: none; }

/* Mobile menu toggle (CSS only) */
.menu-toggle { display: none; }
.menu-toggle-label {
  display: none;
  cursor: pointer;
  font-size: 24px;
  user-select: none;
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--green-light) 0%, #f6fbf8 100%);
  padding: 64px 0 56px;
}
.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px;
  color: var(--text);
}
.hero h1 span { color: var(--green); }
.hero p { font-size: 18px; color: var(--text-soft); margin: 0 0 24px; }
.hero-cta {
  display: inline-block;
  background: var(--green);
  color: var(--white);
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  margin-right: 12px;
}
.hero-cta:hover { background: var(--green-dark); text-decoration: none; }
.hero-cta.outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green);
}
.hero-cta.outline:hover { background: var(--green); color: var(--white); }
.hero-visual {
  background: var(--white);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.hero-visual h3 { margin: 0 0 12px; color: var(--green-dark); font-size: 18px; }
.hero-hours { list-style: none; padding: 0; margin: 0; }
.hero-hours li {
  display: flex; justify-content: space-between;
  padding: 8px 0; border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.hero-hours li:last-child { border-bottom: none; }
.hero-hours li strong { color: var(--text); }
.hero-hours li.closed span { color: #c0392b; }

/* Section commune */
.section { padding: 56px 0; }
.section-alt { background: var(--grey-bg); }
.section-title {
  font-size: 30px;
  margin: 0 0 12px;
  color: var(--text);
  text-align: center;
}
.section-title::after {
  content: "";
  display: block;
  width: 60px; height: 3px;
  background: var(--green);
  margin: 12px auto 0;
}
.section-lead {
  text-align: center;
  color: var(--text-soft);
  max-width: 720px;
  margin: 0 auto 40px;
  font-size: 17px;
}

/* Cards grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.card-icon {
  width: 48px; height: 48px;
  background: var(--green-light);
  color: var(--green-dark);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
  font-weight: 700;
}
.card h3 { margin: 0 0 8px; font-size: 18px; }
.card p { color: var(--text-soft); margin: 0 0 12px; font-size: 15px; }
.card a.more { font-size: 14px; font-weight: 600; }

/* Conseils / blog list */
.posts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.post {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.post-thumb {
  background: var(--green-light);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-dark);
  font-size: 36px;
  font-weight: 700;
}
.post-body { padding: 20px; }
.post-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-dark);
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px;
}
.post h3 { margin: 0 0 8px; font-size: 17px; line-height: 1.35; }
.post p { color: var(--text-soft); font-size: 14px; margin: 0 0 12px; }

/* Generic content page */
.page-header {
  background: var(--green-light);
  padding: 48px 0;
  text-align: center;
}
.page-header h1 {
  font-size: 36px;
  margin: 0 0 8px;
  color: var(--green-dark);
}
.page-header .breadcrumb {
  font-size: 14px;
  color: var(--text-soft);
}
.page-header .breadcrumb a { color: var(--text-soft); }

.content {
  padding: 56px 0;
}
.content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: 0 24px;
}
.content-inner h2 {
  font-size: 24px;
  margin: 32px 0 12px;
  color: var(--green-dark);
}
.content-inner h3 {
  font-size: 19px;
  margin: 24px 0 8px;
}
.content-inner p, .content-inner ul, .content-inner ol {
  margin: 0 0 16px;
  color: var(--text);
  font-size: 16px;
}
.content-inner ul, .content-inner ol { padding-left: 22px; }
.content-inner li { margin-bottom: 6px; }
.content-inner table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
}
.content-inner th, .content-inner td {
  text-align: left;
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
}
.content-inner th { background: var(--grey-bg); }

.callout {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  padding: 16px 20px;
  border-radius: 4px;
  margin: 24px 0;
}
.callout strong { color: var(--green-dark); }

/* Equipe */
.team {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.member {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
}
.member-avatar {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
  margin: 0 auto 16px;
  font-weight: 700;
}
.member h3 { margin: 0 0 4px; font-size: 17px; }
.member p { margin: 0; color: var(--text-soft); font-size: 14px; }

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin: 32px 0;
}
.contact-info {
  background: var(--grey-bg);
  border-radius: var(--radius);
  padding: 28px;
}
.contact-info h3 { margin-top: 0; }
.contact-info ul { list-style: none; padding: 0; margin: 16px 0 0; }
.contact-info ul li { padding: 6px 0; border-bottom: 1px solid var(--border); font-size: 14px; display: flex; justify-content: space-between; }
.contact-info ul li:last-child { border-bottom: none; }
.map-placeholder {
  background: var(--green-light);
  border-radius: var(--radius);
  min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green-dark);
  font-weight: 600;
  text-align: center;
  padding: 24px;
}

form.contact-form { display: grid; gap: 14px; max-width: 640px; }
form.contact-form label { font-weight: 600; font-size: 14px; }
form.contact-form input,
form.contact-form textarea,
form.contact-form select {
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
}
form.contact-form textarea { min-height: 140px; resize: vertical; }
form.contact-form button {
  background: var(--green);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}
form.contact-form button:hover { background: var(--green-dark); }

/* Links list */
.links-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  list-style: none;
  padding: 0;
}
.links-list li {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 20px;
}
.links-list li a { font-weight: 600; }
.links-list li small { display: block; color: var(--text-soft); margin-top: 4px; }

/* Footer */
.site-footer {
  background: #1c2128;
  color: #c8ced6;
  padding: 56px 0 24px;
  margin-top: 64px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
}
.site-footer h4 {
  color: var(--white);
  font-size: 15px;
  margin: 0 0 16px;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li { padding: 4px 0; font-size: 14px; }
.site-footer ul li a { color: #c8ced6; }
.site-footer ul li a:hover { color: var(--white); }
.site-footer p { font-size: 14px; margin: 4px 0; }
.footer-bottom {
  border-top: 1px solid #2d343c;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
  color: #8b939e;
  text-align: center;
}
.footer-bottom a { color: #c8ced6; }

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero h1 { font-size: 32px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .menu-toggle-label { display: block; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow);
    gap: 8px;
  }
  .menu-toggle:checked ~ .main-nav { display: flex; }
  .main-nav a { padding: 10px 0; width: 100%; }
  .header-inner { position: relative; }
  .section-title { font-size: 24px; }
  .page-header h1 { font-size: 28px; }
  .footer-grid { grid-template-columns: 1fr; }
}
