:root {
  --bg: #f7f3ea;
  --surface: #ffffff;
  --primary: #2f6b3b;
  --accent: #c49355;
  --text: #2a2f2a;
  --muted: #5b635b;
  --border: rgba(42, 47, 42, 0.12);
  --shadow: 0 12px 30px rgba(20, 30, 20, 0.12);
  --radius: 16px;
}

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.65;
}

h1, h2, h3, h4, h5 {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-weight: 600;
  color: var(--text);
}

p, li {
  color: var(--muted);
}

.container {
  max-width: 1140px;
}

.site-section {
  padding: 4.5rem 0;
}

@media (max-width: 768px) {
  .site-section {
    padding: 3.25rem 0;
  }
}

/* Navigation */
.site-navbar {
  background: rgba(47, 107, 59, 0.95);
  box-shadow: 0 10px 24px rgba(20, 30, 20, 0.18);
  padding: 0.5rem 0;
}

.site-logo a,
.site-menu .nav-link {
  color: #fff;
  font-weight: 600;
}

.site-logo a {
  white-space: nowrap;
  font-size: 1.05rem;
}

@media (max-width: 991px) {
  .site-logo a {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  .site-logo a {
    font-size: 0.95rem;
  }
}

.site-menu .nav-link:hover,
.site-menu .nav-link:focus {
  color: #fff;
}

/* Hero overlay */
.site-section-cover.overlay:before {
  background: rgba(31, 42, 31, 0.55);
}

/* Buttons */
.btn.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 20px rgba(47, 107, 59, 0.2);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.btn.btn-primary:hover,
.btn.btn-primary:focus {
  background-color: #245430;
  border-color: #245430;
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(47, 107, 59, 0.25);
}

/* Cards & surfaces */
.service-1,
.img-years img,
.place,
.bg-white {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.bg-light {
  background-color: #e6efe0 !important;
}

.scissors:before,
.scissors:after {
  background: var(--accent);
}

.year {
  background: #b0332f;
}

.year span {
  color: #fff;
}

.item-1-contents {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.contact-note {
  font-weight: 600;
  color: rgba(42, 47, 42, 0.8);
}

.site-footer {
  background-color: var(--bg);
}

.site-footer p {
  color: rgba(42, 47, 42, 0.7);
}

/* Localisation images */
.place img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius);
}

@media (max-width: 768px) {
  .place img {
    height: 200px;
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Contact reveal */
.contact-reveal {
  margin-top: 1rem;
}

.contact-reveal__btn {
  width: 100%;
  max-width: 320px;
}

.contact-reveal__container {
  margin-top: 1rem;
}

.contact-reveal__panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.contact-reveal__status {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-reveal__captcha {
  display: flex;
  justify-content: center;
}

.contact-reveal__legal {
  color: #111;
  font-size: 0.85rem;
  text-align: center;
}

.contact-reveal__captcha > div {
  transform: scale(1.08);
  transform-origin: center;
}

.contact-reveal__legal {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

.contact-reveal__details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow);
}

.contact-reveal__line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 0.5rem;
}

.contact-reveal__label {
  font-weight: 600;
  color: var(--text);
}

.contact-reveal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

/* FAQ text on "Comment ça marche" page */
.faq-text-dark .service-1 h3,
.faq-text-dark .service-1 p,
.faq-text-dark .service-1 li,
.faq-text-dark p {
  color: #111 !important;
}

@media (max-width: 576px) {
  .contact-reveal__actions .btn {
    width: 100%;
  }
}

/* Hero title sizing */
.hero-title {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.hero-title-small {
  font-size: 1.15rem;
  font-weight: 500;
}

.hero-title-main {
  font-size: 2.7rem;
  font-weight: 700;
}

.hero-title-sub {
  font-size: 1.15rem;
  font-weight: 500;
}

@media (max-width: 768px) {
  .hero-title-small {
    font-size: 0.95rem;
  }
  .hero-title-main {
    font-size: 2.1rem;
  }
  .hero-title-sub {
    font-size: 0.95rem;
  }
}

/* Ensure CTA button is clickable on the "Comment ça marche" section */
.section-3 {
  position: relative;
}

.section-3:before {
  pointer-events: none;
}

.section-3 .container {
  position: relative;
  z-index: 2;
}

.section-3 .btn {
  position: relative;
  z-index: 2;
}
