:root {
  --bg: #f6f5f1;
  --surface: #ffffff;
  --text: #1d1d1b;
  --muted: #555555;
  --accent: #48644f;
  --accent-soft: #7c967f;
  --border: #e4e2dd;
  --shadow: 0 18px 45px rgba(24, 31, 31, 0.08);
  --radius: 24px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(246, 245, 241, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(148, 145, 139, 0.12);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand h1 {
  margin: 0;
  font-size: 1.35rem;
}

.brand-tag {
  margin: 0 0 0.45rem;
  color: var(--accent-soft);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}

.site-nav a {
  color: var(--text);
  font-size: 0.96rem;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 22px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 3px;
  background: var(--text);
  border-radius: 999px;
}

.section {
  padding: 4rem 0;
}

.section-alt {
  background: #ffffff;
}

.section-hero {
  padding-top: 2rem;
  padding-bottom: 4rem;
}

.hero {
  background: linear-gradient(135deg, rgba(72, 100, 79, 0.08), rgba(246, 245, 241, 0.95));
  border-radius: 36px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent-soft);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.hero-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.05;
}

.hero-copy p {
  margin: 0 0 1.5rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #3d5b47;
}

.button-secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-info {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.card {
  background: var(--surface);
  padding: 1.5rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-heading h2 {
  margin: 0;
  font-size: 2rem;
}

.section-heading p {
  margin: 0;
  color: var(--muted);
}

.service-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.service-text p,
.service-text ul {
  margin: 0 0 1rem;
}

.service-text ul {
  padding-left: 1.2rem;
}

.service-text li {
  margin-bottom: 0.6rem;
}

.hours-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(180px, 1fr));
  gap: 1rem;
}

.hours-card,
.contact-card {
  background: var(--surface);
  padding: 1.4rem;
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.hours-card span,
.contact-card h3 {
  display: block;
  color: var(--accent-soft);
  margin-bottom: 0.55rem;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hours-card strong,
.contact-card p {
  font-size: 1rem;
  color: var(--text);
  line-height: 1.6;
}

.section-contact {
  padding-bottom: 3rem;
}

.section-cgu {
  background: #fefcf8;
}

.section-cgu h2 {
  margin-bottom: 1rem;
}

.section-cgu h3 {
  margin-top: 1.7rem;
}

.section-cgu p {
  margin: 0.8rem 0;
  color: var(--muted);
}

.site-footer {
  padding: 2rem 0;
  background: #1d1d1b;
  color: #fff;
}

.site-footer p {
  margin: 0.4rem 0;
  color: #d9d9d9;
}

@media (max-width: 900px) {
  .service-grid,
  .hours-grid,
  .contact-grid,
  .hero-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .site-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0.8rem;
    padding: 1rem 0;
  }

  .site-nav.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .section {
    padding: 3rem 0;
  }

  .hero-actions {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .section-heading h2 {
    font-size: 1.75rem;
  }

  .button {
    width: 100%;
  }
}
