
:root {
  --primary: #1F1F1F;
  --primary-dark: #000000;
  --rose: #F4D9D0;
  --or: #C9A876;
  --or-dark: #a88857;
  --bg: #FAF7F2;
  --bg-alt: #FFFFFF;
  --text: #2A2A2A;
  --muted: #7A7A7A;
  --border: #E8E2D8;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
  font-weight: 300;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; color: var(--primary); line-height: 1.2; font-weight: 400; }
h1 { font-size: 3.5rem; margin-bottom: 1.25rem; font-weight: 300; font-style: italic; letter-spacing: -0.01em; }
h2 { font-size: 2.25rem; margin: 3.5rem 0 1.25rem; font-weight: 400; font-style: italic; }
h3 { font-size: 1.3rem; margin: 1.75rem 0 0.75rem; font-weight: 500; }
p { margin-bottom: 1.1rem; }
a { color: var(--primary); text-decoration: none; position: relative; display: inline-block; }
a:hover { color: var(--or-dark); }
a:focus-visible { outline: 1px solid var(--or); outline-offset: 4px; }
.container { max-width: 1080px; margin: 0 auto; padding: 0 2rem; }
header.site-header { background: transparent; padding: 2rem 0; }
.nav { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.brand { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 400; font-style: italic; color: var(--primary); text-decoration: none; letter-spacing: 0.03em; }
.brand span { color: var(--or); font-style: normal; font-size: 0.8em; vertical-align: super; margin-left: 0.3rem; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text); font-size: 0.85rem; font-weight: 400; text-transform: uppercase; letter-spacing: 0.2em; padding-bottom: 4px; border-bottom: 1px solid transparent; transition: border-color 0.3s; }
.nav-links a:hover { border-bottom-color: var(--or); color: var(--primary); }
.hero { padding: 5rem 0 5.5rem; background: var(--bg); position: relative; }
.hero::after { content: ""; display: block; width: 100px; height: 1px; background: var(--or); margin-top: 3rem; }
.hero p.lead { font-size: 1.15rem; color: var(--muted); max-width: 650px; margin-bottom: 1.5rem; line-height: 1.75; font-style: italic; font-family: 'Cormorant Garamond', serif; font-weight: 400; font-size: 1.4rem; }
.cta-row { display: flex; gap: 2rem; flex-wrap: wrap; margin-top: 2.5rem; align-items: center; }
.btn { display: inline-block; padding: 0.4rem 0; font-weight: 400; text-decoration: none; transition: all 0.3s; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; }
.btn-primary { background: transparent; color: var(--primary); border-bottom: 1px solid var(--primary); padding: 0.85rem 0; }
.btn-primary:hover { color: var(--or-dark); border-bottom-color: var(--or-dark); letter-spacing: 0.3em; }
.btn-secondary { background: transparent; color: var(--muted); border-bottom: 1px solid var(--or); padding: 0.85rem 0; }
.btn-secondary:hover { color: var(--primary); letter-spacing: 0.3em; }
section { padding: 5rem 0; }
section.alt { background: var(--bg-alt); }
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3.5rem; margin-top: 3rem; }
.card { background: transparent; padding: 0; position: relative; }
.card::before { content: ""; display: block; width: 24px; height: 1px; background: var(--or); margin-bottom: 1.5rem; }
.card h3 { margin-top: 0; color: var(--primary); font-style: italic; }
.card p { color: var(--muted); }
.badge { display: inline-block; background: transparent; color: var(--or-dark); padding: 0.3rem 0; font-size: 0.75rem; font-weight: 400; margin-bottom: 1.5rem; letter-spacing: 0.3em; text-transform: uppercase; }
ul.checklist { list-style: none; }
ul.checklist li { padding-left: 2rem; position: relative; margin-bottom: 0.85rem; color: var(--text); }
ul.checklist li::before { content: "—"; position: absolute; left: 0; color: var(--or); font-weight: 300; }
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 3rem; margin-top: 3rem; }
.step { padding: 0; position: relative; }
.step-num { font-family: 'Cormorant Garamond', serif; color: var(--or); font-size: 3.5rem; font-weight: 300; line-height: 1; margin-bottom: 1rem; font-style: italic; }
form { display: grid; gap: 1.5rem; max-width: 600px; }
label { display: block; font-weight: 400; margin-bottom: 0.5rem; font-size: 0.78rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); }
input, select, textarea { width: 100%; padding: 0.85rem 0; border: none; border-bottom: 1px solid var(--border); border-radius: 0; font-family: inherit; font-size: 1rem; background: transparent; }
input:focus, textarea:focus, select:focus { outline: none; border-bottom-color: var(--or); }
textarea { min-height: 130px; resize: vertical; }
button[type=submit] { background: transparent; color: var(--primary); border: none; border-bottom: 1px solid var(--primary); padding: 0.85rem 0; font-weight: 400; cursor: pointer; font-size: 0.85rem; letter-spacing: 0.25em; text-transform: uppercase; margin-top: 1rem; transition: all 0.3s; }
button[type=submit]:hover { color: var(--or-dark); border-bottom-color: var(--or-dark); letter-spacing: 0.3em; }
footer { background: var(--bg); color: var(--muted); padding: 4rem 0 2.5rem; font-size: 0.82rem; line-height: 1.85; margin-top: 5rem; border-top: 1px solid var(--or); font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 0.95rem; }
footer .legal { letter-spacing: 0.02em; }
footer a { color: var(--or-dark); font-style: normal; font-family: 'Inter', sans-serif; font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase; }
footer .footer-links { margin-top: 1.5rem; display: flex; gap: 2.5rem; flex-wrap: wrap; }
.faq dt { font-weight: 500; margin-top: 1.75rem; color: var(--primary); font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-style: italic; }
.faq dd { margin: 0.5rem 0 0; color: var(--muted); }
article.post h1 { margin-bottom: 0.5rem; }
article.post .meta { color: var(--or-dark); font-size: 0.75rem; margin-bottom: 2.5rem; letter-spacing: 0.25em; text-transform: uppercase; }
.post-cta { background: var(--rose); padding: 3rem; margin-top: 3rem; }
.post-cta h3 { color: var(--primary); font-style: italic; margin-top: 0; }
.urgency-banner { background: var(--bg-alt); border-bottom: 1px solid var(--or); color: var(--text); padding: 0.7rem 0; font-size: 0.78rem; font-family: 'Cormorant Garamond', serif; font-style: italic; letter-spacing: 0.05em; font-size: 0.92rem; }
.urgency-banner .container { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; justify-content: center; text-align: center; }
.urgency-banner strong { color: var(--or-dark); font-style: normal; font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; }
@media (max-width: 640px) {
  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.7rem; }
  .hero { padding: 3rem 0 3.5rem; }
  .nav-links { gap: 1.5rem; font-size: 0.75rem; }
  .urgency-banner { font-size: 0.78rem; }
}
/* Pricing table — boutique raffiné */
.pricing-table { width: 100%; border-collapse: collapse; margin: 2rem auto; max-width: 720px; }
.pricing-table th { padding: 1rem; text-align: left; font-family: 'Cormorant Garamond', serif; font-style: italic; font-weight: 400; font-size: 1.05rem; color: var(--primary); border-bottom: 1px solid var(--primary); }
.pricing-table td { padding: 0.85rem 1rem; border-bottom: 1px solid var(--border); }
.pricing-table tbody tr:last-child td { border-bottom: none; padding-top: 1.25rem; }
.pricing-table td strong { font-family: 'Cormorant Garamond', serif; font-weight: 500; font-size: 1.15rem; }


/* === DEVIS FORM (variation par template + bloc commun) === */

.devis-form-section { padding: 5rem 0; background: var(--bg); border-top: 1px solid var(--or, var(--accent)); border-bottom: 1px solid var(--or, var(--accent)); }
.devis-form-section h2 { font-family: 'Playfair Display', serif; font-weight: 400; font-style: italic; }
.devis-form { display: grid; gap: 1.5rem; max-width: 580px; margin: 2rem auto 0; }
.devis-form .form-row label { display: block; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.18em; margin-bottom: 0.45rem; color: var(--muted); }
.devis-form input, .devis-form select, .devis-form textarea { width: 100%; padding: 0.7rem 0; border: none; border-bottom: 1px solid var(--or, var(--accent)); border-radius: 0; font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.05rem; background: transparent; color: var(--primary); }
.devis-form input:focus, .devis-form select:focus, .devis-form textarea:focus { outline: none; border-bottom-color: var(--primary); }
.devis-form .form-note { color: var(--muted); margin-top: 0.8rem; font-style: italic; }

.devis-form-section .container { position: relative; }
.devis-form .form-row { display: block; }
.devis-form textarea { min-height: 96px; resize: vertical; }
.devis-form .form-cta button { cursor: pointer; }
.devis-aside-sticky { display: block; }
.devis-aside-sticky .devis-form-section { padding: 2rem 0; }
@media (min-width: 1280px) {
  .devis-aside-sticky { position: fixed; top: 80px; right: 1.5rem; width: 360px; z-index: 5; box-shadow: 0 18px 40px rgba(0,0,0,0.08); border-radius: 6px; overflow: hidden; }
  .devis-aside-sticky .container { padding: 0 1.4rem; max-width: 100%; }
  .devis-aside-sticky .devis-form-section { padding: 1.5rem 0; }
  .devis-aside-sticky .devis-form { max-width: 100%; }
}
.devis-modal-flat { background: var(--bg-alt); padding: 2rem 0; border: 1px solid var(--border); border-radius: 4px; margin: 2rem 0; }
.devis-modal-flat .devis-form-section { padding: 1rem 0; background: transparent; border: none; }
