:root {
  --cream: #f1ebda;
  --cream-soft: #f6f1e4;
  --cream-deep: #e7e0cc;
  --ink: #2c3320;
  --green-deep: #38431f;
  --green: #4a5a2a;
  --green-mid: #5c6f37;
  --green-soft: #e3e6d5;
  --green-badge: #dde3cb;
  --text-muted: #6b6a5c;
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

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

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

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

.container.narrow {
  max-width: 720px;
  text-align: center;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(241, 235, 218, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(74, 90, 42, 0.12);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--green-deep);
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.brand-mark { color: var(--green-mid); display: inline-flex; }

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14.5px;
  font-weight: 500;
}

.site-nav a { color: var(--green-deep); transition: opacity 0.2s ease; }
.site-nav a:hover { opacity: 0.65; }

.nav-cta {
  background: var(--green);
  color: var(--cream-soft) !important;
  padding: 9px 18px;
  border-radius: 999px;
}

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: fixed;
    inset: 68px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--cream-soft);
    padding: 14px 24px 24px;
    gap: 4px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    border-bottom: 1px solid rgba(74, 90, 42, 0.12);
  }
  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .site-nav a {
    padding: 12px 4px;
    border-bottom: 1px solid rgba(74, 90, 42, 0.08);
  }
  .nav-cta {
    text-align: center;
    margin-top: 8px;
    border-bottom: none;
  }
}

@media (min-width: 861px) {
  .nav-toggle { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(241,235,218,0.55) 0%, rgba(235,228,208,0.72) 45%, rgba(241,235,218,0.95) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 120px 28px 80px;
  text-align: center;
}

.eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-mid);
  margin: 0 0 14px;
}

.hero h1 {
  font-family: var(--serif);
  font-size: clamp(46px, 9vw, 72px);
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 22px;
  line-height: 1.05;
}

.hero-sub {
  font-size: 18px;
  color: var(--ink);
  margin: 0 0 36px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 380px;
  padding: 17px 28px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-filled {
  background: var(--green);
  color: #f8f5ea;
  box-shadow: 0 10px 24px rgba(56, 67, 31, 0.25);
}

.btn-filled:hover { transform: translateY(-2px); box-shadow: 0 14px 28px rgba(56, 67, 31, 0.3); }

.btn-outline {
  background: rgba(255,255,255,0.35);
  color: var(--green-deep);
  border: 1.5px solid rgba(74, 90, 42, 0.35);
}

.btn-outline:hover { background: rgba(255,255,255,0.6); }

.btn-block { max-width: none; }

/* Sections */
.section { padding: 84px 0; }

.section h2 {
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 700;
  color: var(--green-deep);
  margin: 0 0 16px;
  text-align: center;
}

.section-sub {
  max-width: 520px;
  margin: 0 auto 44px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

.section-sub.left { margin-bottom: 36px; }

.prestations { background: var(--cream); }

.card {
  background: var(--cream-soft);
  border: 1px solid rgba(74, 90, 42, 0.12);
  border-radius: 22px;
  padding: 32px 28px;
  margin: 0 auto 24px;
  max-width: 640px;
  position: relative;
  overflow: hidden;
}

.card-main { padding-top: 56px; }

.ribbon {
  position: absolute;
  top: 22px;
  right: -8px;
  background: var(--green-deep);
  color: #f2efe1;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 20px 8px 16px;
  border-radius: 999px 0 0 999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ribbon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  font-size: 11px;
}

.card h3 {
  font-family: var(--serif);
  font-size: 28px;
  color: var(--green-deep);
  margin: 0 0 22px;
  font-weight: 700;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(74, 90, 42, 0.1);
}

.service-list li:last-child { border-bottom: none; padding-bottom: 0; }

.icon-badge {
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-badge);
  color: var(--green-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-badge-lg {
  width: 56px;
  height: 56px;
  margin: 0 auto 22px;
}

.fine-print {
  margin: 22px 0 0;
  font-size: 12.5px;
  line-height: 1.6;
  color: var(--text-muted);
  border-top: 1px solid rgba(74, 90, 42, 0.1);
  padding-top: 18px;
}

.card-secondary { padding: 30px 28px; }

.other-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  text-align: left;
}

.other-item h4 {
  font-size: 17px;
  margin: 4px 0 6px;
  color: var(--green-deep);
}

.other-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* Zone */
.zone { background: var(--cream-deep); text-align: center; }

.pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 0 0 30px;
}

.pill {
  background: var(--cream-soft);
  border: 1px solid rgba(74, 90, 42, 0.18);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  color: var(--ink);
}

.pill-outline {
  background: transparent;
  border: 1.5px solid var(--green-mid);
  color: var(--green-deep);
}

.zone-text {
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
}

/* Devis / contact */
.devis { background: var(--cream); }

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 420px;
  margin: 0 auto 48px;
  text-align: left;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 2px;
}

.contact-value {
  display: block;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
}

.quote-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  text-align: left;
}

.quote-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.quote-form input,
.quote-form textarea {
  font-family: var(--sans);
  font-size: 15px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(74, 90, 42, 0.22);
  background: var(--cream-soft);
  color: var(--ink);
  resize: none;
}

.quote-form input::placeholder,
.quote-form textarea::placeholder { color: #a19d87; }

.quote-form input:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(74, 90, 42, 0.12);
}

.form-note {
  min-height: 20px;
  font-size: 14px;
  color: var(--green-deep);
  text-align: center;
  margin: 0;
}

/* Footer */
.site-footer {
  background: var(--green-deep);
  color: #ece7d5;
  padding: 72px 24px 40px;
  text-align: center;
}

.footer-inner { max-width: 480px; margin: 0 auto; }

.site-footer h3 {
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #f5f1e2;
}

.site-footer p { margin: 0 0 6px; font-size: 15px; color: rgba(236, 231, 213, 0.85); }

.footer-mark {
  display: block;
  height: 90px;
  width: auto;
  margin: 28px auto 24px;
  opacity: 0.92;
}

.footer-phone, .footer-email {
  font-size: 15px;
  font-weight: 500;
  color: #ece7d5;
}

.site-footer hr {
  border: none;
  border-top: 1px solid rgba(236, 231, 213, 0.18);
  margin: 30px 0 24px;
}

.copyright {
  font-size: 13px;
  color: rgba(236, 231, 213, 0.55);
}

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .btn { width: auto; }
}
