@import url("fonts.css");

:root {
  --ink: #1a1916;
  --ink-2: #5a5a54;
  --ink-3: #9a9990;
  --cream: #f5f3ee;
  --warm-line: #e0ddd5;
  --accent: #3b5c3a;
  --accent-light: #eef3ee;
  --accent-2: #c8a96e;
  --bg: #faf9f6;
  --radius: 6px;
}
html { scroll-behavior: smooth; }
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
.container { max-width: 920px; margin: 0 auto; padding: 0 2rem; }
a { color: inherit; }
img { max-width: 100%; display: block; }

/* ---------- NAV ---------- */
nav { padding: 1.25rem 0; border-bottom: 1px solid var(--warm-line); position: sticky; top: 0; background: rgba(250,249,246,0.92); backdrop-filter: blur(8px); z-index: 50; }
nav .inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-family: 'DM Serif Display', serif; font-size: 19px; letter-spacing: -0.02em; color: var(--ink); text-decoration: none; }
.logo em { font-style: italic; color: var(--accent); }
.nav-links { display: flex; gap: 28px; list-style: none; align-items: center; }
.nav-links a { font-size: 12px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2); text-decoration: none; transition: color .15s; }
.nav-links a:hover { color: var(--accent); }
.nav-links a.nav-cta { background: var(--accent); color: #fff; padding: 9px 16px; border-radius: 3px; }
.nav-links a.nav-cta:hover { color: #fff; opacity: .9; }
.burger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); margin: 4px 0; transition: .25s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: #fff; font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 13px 26px; border-radius: 3px; border: none; cursor: pointer; text-decoration: none; white-space: nowrap; transition: opacity .15s, transform .15s; }
.btn-primary:hover { opacity: .9; }
.btn-primary[aria-disabled="true"], .btn-primary:disabled { opacity: .4; pointer-events: none; cursor: not-allowed; }
.btn-secondary { display: inline-flex; align-items: center; justify-content: center; gap: 8px; background: transparent; color: var(--ink); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 12px 24px; border-radius: 3px; border: 1px solid var(--warm-line); cursor: pointer; text-decoration: none; white-space: nowrap; transition: border-color .15s; }
.btn-secondary:hover { border-color: var(--accent); }

/* ---------- HERO ---------- */
.hero { padding: 4.5rem 0 3.5rem; }
.eyebrow { font-size: 12px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.hero h1 { font-family: 'DM Serif Display', serif; font-size: 46px; line-height: 1.12; letter-spacing: -0.02em; margin-bottom: 1.5rem; max-width: 680px; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero-sub { font-size: 17px; font-weight: 300; color: var(--ink-2); line-height: 1.7; max-width: 540px; margin-bottom: 2rem; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 1.75rem; }
.trust-row { display: flex; gap: 1.5rem; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-3); font-weight: 400; }
.trust-row span { display: inline-flex; align-items: center; gap: 6px; }
.trust-row span::before { content: '✓'; color: var(--accent); font-weight: 700; }

/* ---------- SECTION LABELS ---------- */
.section-label { display: flex; align-items: center; gap: 14px; margin: 4rem 0 2rem; }
.section-label span { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500; color: var(--ink-3); white-space: nowrap; }
.section-label::after { content: ''; flex: 1; height: 1px; background: var(--warm-line); }
.section-intro { font-size: 14px; color: var(--ink-2); font-weight: 300; max-width: 560px; margin-bottom: 2rem; margin-top: -1rem; }

/* ---------- ABOUT ---------- */
.about { display: grid; grid-template-columns: 200px 1fr; gap: 2rem; align-items: center; background: var(--cream); border: 1px solid var(--warm-line); border-radius: var(--radius); padding: 2rem; }
.about-photo { width: 100%; aspect-ratio: 1; border-radius: var(--radius); object-fit: cover; background: var(--accent-light); display: flex; align-items: center; justify-content: center; color: var(--ink-3); font-size: 12px; text-align: center; }
.about h2 { font-family: 'DM Serif Display', serif; font-size: 24px; margin-bottom: .75rem; }
.about p { font-size: 14px; color: var(--ink-2); font-weight: 300; line-height: 1.7; margin-bottom: .75rem; }
.about .signature { font-family: 'DM Serif Display', serif; font-style: italic; color: var(--accent); font-size: 16px; }

/* ---------- OFFERS ---------- */
.offer-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-bottom: 1rem; }
.offer-card { background: var(--cream); border: 1px solid var(--warm-line); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; position: relative; }
.offer-card.featured { border-color: var(--accent); background: #fff; box-shadow: 0 1px 3px rgba(59,92,58,0.08); }
.badge { position: absolute; top: -11px; left: 1.75rem; background: var(--accent); color: #fff; font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border-radius: 3px; }
.offer-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; gap: 1rem; }
.offer-name { font-family: 'DM Serif Display', serif; font-size: 21px; color: var(--ink); }
.offer-price { font-family: 'DM Serif Display', serif; font-size: 26px; color: var(--accent); white-space: nowrap; }
.offer-price span { font-size: 13px; color: var(--ink-3); font-family: 'DM Sans', sans-serif; font-weight: 300; }
.offer-list { list-style: none; display: flex; flex-direction: column; gap: 7px; margin-bottom: 1.5rem; flex: 1; }
.offer-list li { font-size: 13px; color: var(--ink-2); font-weight: 300; display: flex; gap: 8px; line-height: 1.5; }
.offer-list li::before { content: '—'; color: var(--accent-2); flex-shrink: 0; }
.offer-note { font-size: 12px; color: var(--ink-3); font-style: italic; margin-bottom: 1rem; }

.options-strip { display: flex; gap: 1px; background: var(--warm-line); border: 1px solid var(--warm-line); border-radius: var(--radius); overflow: hidden; margin-bottom: 1rem; }
.option-item { background: var(--cream); padding: 1rem 1.25rem; flex: 1; }
.option-item .opt-name { font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 2px; }
.option-item .opt-desc { font-size: 12px; color: var(--ink-3); font-weight: 300; }
.option-item .opt-price { font-size: 13px; font-weight: 500; color: var(--accent); margin-top: 4px; }

.ponctuel-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.ponctuel-card { background: #fff; border: 1px solid var(--accent-2); border-radius: var(--radius); padding: 1.75rem; display: flex; flex-direction: column; }
.ponctuel-card .offer-list { margin-bottom: 1.25rem; }

/* ---------- TIMELINE ---------- */
.timeline { position: relative; padding-left: 2.75rem; margin-bottom: 1rem; }
.timeline::before { content: ''; position: absolute; left: 13px; top: 8px; bottom: 8px; width: 1px; background: var(--warm-line); }
.step { position: relative; padding-bottom: 1.75rem; }
.step:last-child { padding-bottom: 0; }
.step::before { content: attr(data-n); position: absolute; left: -2.75rem; top: -2px; width: 27px; height: 27px; border-radius: 50%; background: var(--accent); color: #fff; font-size: 12px; font-weight: 500; display: flex; align-items: center; justify-content: center; }
.step-title { font-size: 15px; font-weight: 500; color: var(--ink); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--ink-2); font-weight: 300; max-width: 480px; }

/* ---------- BOOKING ---------- */
.booking-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.booking-card { border: 1px solid var(--warm-line); border-radius: var(--radius); padding: 1.5rem; background: var(--cream); }
.booking-card h3 { font-family: 'DM Serif Display', serif; font-size: 19px; margin-bottom: 0.5rem; color: var(--ink); }
.booking-card .booking-price { font-size: 13px; color: var(--accent); font-weight: 500; margin-bottom: 1rem; }
.booking-steps { display: flex; flex-direction: column; gap: 8px; }
.booking-steps p.step-lbl { font-size: 13px; color: var(--ink-2); margin: .35rem 0; }
.cgv-check { display: flex; gap: 9px; align-items: flex-start; font-size: 12px; color: var(--ink-2); font-weight: 300; line-height: 1.45; margin: .5rem 0; cursor: pointer; }
.cgv-check input { margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; width: 15px; height: 15px; }
.cgv-check a { color: var(--accent); }

/* ---------- LEAD FORM ---------- */
.lead-wrap { background: var(--accent); border-radius: 10px; padding: 2.5rem; color: #fff; }
.lead-wrap h2 { font-family: 'DM Serif Display', serif; font-size: 28px; margin-bottom: .5rem; }
.lead-wrap h2 em { font-style: italic; color: var(--accent-2); }
.lead-wrap .lead-sub { font-size: 14.5px; font-weight: 300; opacity: .9; line-height: 1.65; max-width: 480px; margin-bottom: 1.75rem; }
.lead-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: flex; flex-direction: column; gap: 5px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 11px; letter-spacing: .08em; text-transform: uppercase; font-weight: 500; opacity: .85; }
.field input, .field select, .field textarea { font-family: 'DM Sans', sans-serif; font-size: 14px; padding: 11px 13px; border-radius: 4px; border: 1px solid rgba(255,255,255,0.25); background: rgba(255,255,255,0.08); color: #fff; width: 100%; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.55); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent-2); background: rgba(255,255,255,0.14); }
.field select option { color: var(--ink); }
.field textarea { resize: vertical; min-height: 84px; }
.consent { grid-column: 1/-1; display: flex; gap: 9px; align-items: flex-start; font-size: 12px; font-weight: 300; opacity: .9; line-height: 1.45; }
.consent input { margin-top: 2px; accent-color: var(--accent-2); flex-shrink: 0; width: 15px; height: 15px; }
.consent a { color: #fff; text-decoration: underline; }
.lead-form .btn-submit { grid-column: 1/-1; background: #fff; color: var(--accent); font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; padding: 14px; border-radius: 4px; border: none; cursor: pointer; transition: opacity .15s; }
.lead-form .btn-submit:hover { opacity: .9; }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--warm-line); }
.faq-item summary { font-size: 15px; font-weight: 500; color: var(--ink); padding: 1.1rem 0; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; color: var(--accent); font-size: 20px; font-weight: 400; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { font-size: 13.5px; color: var(--ink-2); font-weight: 300; line-height: 1.7; padding-bottom: 1.2rem; max-width: 640px; }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.testi-card { background: var(--cream); border: 1px solid var(--warm-line); border-radius: var(--radius); padding: 1.5rem; }
.testi-card .stars { color: var(--accent-2); font-size: 14px; letter-spacing: 2px; margin-bottom: .75rem; }
.testi-card blockquote { font-size: 14px; color: var(--ink); font-weight: 300; line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testi-card .who { font-size: 12.5px; color: var(--ink-3); font-weight: 500; }
.placeholder-soft { color: var(--ink-3); font-style: italic; }

/* ---------- CONTACT ---------- */
.contact-block { display: flex; align-items: center; justify-content: space-between; padding: 1.75rem 2rem; border: 1px solid var(--warm-line); border-radius: var(--radius); margin: 4rem 0; gap: 1.5rem; background: var(--cream); }
.contact-block h3 { font-family: 'DM Serif Display', serif; font-size: 22px; color: var(--ink); margin-bottom: 5px; }
.contact-block p { font-size: 14px; color: var(--ink-3); font-weight: 300; }

/* ---------- FOOTER ---------- */
footer { padding: 2.5rem 0; border-top: 1px solid var(--warm-line); margin-top: 4rem; }
footer .foot-inner { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; }
footer .foot-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
footer .foot-links a { font-size: 12px; color: var(--ink-2); text-decoration: none; }
footer .foot-links a:hover { color: var(--accent); }
footer .foot-copy { font-size: 12px; color: var(--ink-3); }

/* ---------- LEGAL PAGES ---------- */
.legal { padding: 3rem 0 1rem; max-width: 760px; }
.legal h1 { font-family: 'DM Serif Display', serif; font-size: 34px; margin-bottom: .5rem; }
.legal .updated { font-size: 12.5px; color: var(--ink-3); margin-bottom: 2.5rem; }
.legal h2 { font-family: 'DM Serif Display', serif; font-size: 20px; margin: 2.25rem 0 .75rem; color: var(--accent); }
.legal h3 { font-size: 15px; font-weight: 600; margin: 1.5rem 0 .5rem; }
.legal p, .legal li { font-size: 14px; color: var(--ink-2); font-weight: 300; line-height: 1.75; margin-bottom: .85rem; }
.legal ul, .legal ol { padding-left: 1.25rem; margin-bottom: .85rem; }
.legal li { margin-bottom: .35rem; }
.legal a { color: var(--accent); }
.legal strong { font-weight: 600; color: var(--ink); }
.legal .back { display: inline-block; margin-top: 2.5rem; font-size: 13px; color: var(--accent); text-decoration: none; }
.legal table { width: 100%; border-collapse: collapse; margin-bottom: 1rem; }
.legal th, .legal td { border: 1px solid var(--warm-line); padding: 9px 12px; font-size: 13px; text-align: left; font-weight: 300; }
.legal th { background: var(--cream); font-weight: 600; }

/* ---------- THANK YOU ---------- */
.thanks { text-align: center; padding: 5rem 0; max-width: 620px; margin: 0 auto; }
.thanks .check { width: 64px; height: 64px; border-radius: 50%; background: var(--accent-light); color: var(--accent); font-size: 30px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.thanks h1 { font-family: 'DM Serif Display', serif; font-size: 34px; margin-bottom: 1rem; }
.thanks p { font-size: 15px; color: var(--ink-2); font-weight: 300; line-height: 1.7; margin-bottom: 1.5rem; }
.thanks ol { text-align: left; max-width: 460px; margin: 0 auto 2rem; padding-left: 1.25rem; }
.thanks ol li { font-size: 14px; color: var(--ink-2); font-weight: 300; margin-bottom: .6rem; line-height: 1.6; }

/* ---------- COOKIE BANNER ---------- */
.cookie-banner { position: fixed; bottom: 1rem; left: 1rem; right: 1rem; max-width: 540px; margin: 0 auto; background: var(--ink); color: #fff; border-radius: 10px; padding: 1.25rem 1.5rem; box-shadow: 0 8px 30px rgba(0,0,0,0.25); z-index: 100; display: none; }
.cookie-banner.show { display: block; }
.cookie-banner p { font-size: 13px; font-weight: 300; line-height: 1.6; margin-bottom: 1rem; }
.cookie-banner p a { color: var(--accent-2); }
.cookie-banner .cookie-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
.cookie-banner button { font-family: 'DM Sans', sans-serif; font-size: 12px; font-weight: 500; letter-spacing: .05em; padding: 9px 18px; border-radius: 4px; cursor: pointer; border: none; }
.cookie-banner .c-accept { background: #fff; color: var(--ink); }
.cookie-banner .c-refuse { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.3); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 760px) {
  .about { grid-template-columns: 1fr; }
  .about-photo { max-width: 200px; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .hero h1 { font-size: 32px; }
  .hero { padding: 3rem 0 2.5rem; }
  .offer-grid, .ponctuel-grid, .booking-grid, .testi-grid, .lead-form { grid-template-columns: 1fr; }
  .options-strip { flex-direction: column; }
  .contact-block { flex-direction: column; align-items: flex-start; }
  .lead-wrap { padding: 1.75rem; }
  .nav-links { position: fixed; inset: 0 0 0 auto; width: 75%; max-width: 300px; background: var(--bg); flex-direction: column; align-items: flex-start; gap: 0; padding: 5rem 1.75rem 2rem; transform: translateX(100%); transition: transform .25s ease; box-shadow: -8px 0 30px rgba(0,0,0,0.1); border-left: 1px solid var(--warm-line); }
  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; border-bottom: 1px solid var(--warm-line); }
  .nav-links a { display: block; padding: 1rem 0; font-size: 13px; }
  .nav-links a.nav-cta { margin-top: 1rem; text-align: center; }
  .burger { display: block; z-index: 60; }
  footer .foot-inner { flex-direction: column; align-items: flex-start; }
}
