/* Club Propreté — marketing site */
:root {
  --paper: #f4efe6;
  --cream: #faf7f2;
  --sand: #e7dfd2;
  --line: #d8d0c3;
  --ink: #171512;
  --muted: #5a544c;
  --navy: #1a2f38;
  --navy-2: #243b45;
  --max: 1140px;
  --header: 70px;
  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans: "DM Sans", system-ui, sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--muted);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: var(--navy); text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
ul { list-style: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.18;
}
:focus-visible { outline: 2px solid var(--navy); outline-offset: 3px; }

.container { width: min(100% - 1.5rem, var(--max)); margin-inline: auto; }

.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  min-height: var(--header); gap: 1rem;
}
.logo {
  display: flex; align-items: baseline; gap: 0.15rem;
  color: var(--ink); font-family: var(--serif); font-size: 1.18rem;
  font-weight: 600; text-decoration: none; flex-shrink: 0;
}
.logo:hover { text-decoration: none; color: var(--ink); }
.logo em { font-style: italic; font-weight: 500; color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 0.5rem; }
.nav-toggle {
  display: none; background: transparent; border: 1px solid var(--line);
  border-radius: 6px; padding: 0.4rem 0.5rem; cursor: pointer; color: var(--ink);
}
.nav-toggle svg { width: 22px; height: 22px; }

.nav { display: flex; align-items: center; gap: 1.25rem; }
.nav a { color: var(--ink); font-size: 0.92rem; font-weight: 500; text-decoration: none; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--navy); }
.header-cta { white-space: nowrap; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.4rem;
  border-radius: 6px; font-weight: 600; font-size: 0.92rem;
  padding: 0.72rem 1.15rem; border: 0; cursor: pointer; text-decoration: none;
  white-space: nowrap;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--navy); color: #faf7f2; }
.btn-primary:hover { background: var(--navy-2); color: #fff; }
.btn-secondary { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-secondary:hover { background: var(--paper); color: var(--ink); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid currentColor; }
.btn-ghost:hover { background: rgba(255,255,255,.08); color: inherit; }
.btn-lg { padding: 0.9rem 1.3rem; font-size: 0.98rem; }
.btn-block { width: 100%; }

/* HERO */
.hero { background: var(--paper); }
.hero-grid { display: grid; gap: 0; }
.hero-copy { padding: 2.5rem 0 2.4rem; }
.hero-badge {
  display: inline-block; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.85rem;
}
.hero h1 { font-size: clamp(2.1rem, 5.2vw, 3.4rem); max-width: 16ch; margin-bottom: 1rem; }
.hero h1 em { font-style: italic; }
.hero-lead { font-size: 1.08rem; max-width: 40ch; margin-bottom: 1.4rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 1.3rem; }
.hero-points {
  display: flex; flex-wrap: wrap; gap: 0.4rem 1.1rem;
  font-size: 0.9rem; color: var(--ink); font-weight: 500;
}
.hero-points li { position: relative; padding-left: 0.9rem; }
.hero-points li::before {
  content: ""; position: absolute; left: 0; top: 0.55em;
  width: 6px; height: 6px; background: var(--navy); border-radius: 1px;
}

.hero-visual { position: relative; min-height: 280px; }
.hero-visual > img {
  width: 100%; height: 100%; object-fit: cover; min-height: 280px; max-height: 70vh;
}
.price-float {
  display: none;
}

/* PHOTO STRIP */
.photo-strip {
  display: grid; grid-template-columns: 1fr 1fr; gap: 0.4rem;
  padding: 0.4rem 0.75rem 0; background: var(--cream);
}
.photo-strip figure { margin: 0; position: relative; overflow: hidden; }
.photo-strip img { width: 100%; height: 130px; object-fit: cover; }
.photo-strip figcaption {
  position: absolute; left: 0.55rem; bottom: 0.45rem;
  color: #fff; font-size: 0.76rem; font-weight: 600;
  text-shadow: 0 1px 8px rgba(0,0,0,.5);
}

.section { padding: 3.6rem 0; }
.section-alt { background: var(--paper); }
.section-header { max-width: 38rem; margin-bottom: 2rem; }
.eyebrow {
  display: block; font-size: 0.74rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy);
  margin-bottom: 0.5rem;
}
.section h2 { font-size: clamp(1.55rem, 3vw, 2.2rem); margin-bottom: 0.6rem; }
.section-header p { font-size: 1.05rem; }

/* Asymmetric feature */
.feature {
  display: grid; gap: 1.6rem; align-items: center;
}
.feature img { width: 100%; height: 320px; object-fit: cover; }
.feature + .feature { margin-top: 2.6rem; }
.feature-flip .copy { order: 0; }
.why-list { margin-top: 1rem; display: grid; gap: 0.85rem; }
.why-list li { padding-top: 0.85rem; border-top: 1px solid var(--line); color: var(--ink); }
.why-list strong { display: block; font-weight: 600; margin-bottom: 0.15rem; }
.why-list span { color: var(--muted); font-weight: 400; }

/* Pricing */
.pricing-grid { display: grid; gap: 1rem; }
.plan {
  background: var(--cream); border: 1px solid var(--line); padding: 1.4rem 1.3rem;
}
.plan.featured {
  background: var(--navy); color: #c9c2b5; border-color: var(--navy);
}
.plan.featured h2, .plan.featured h3, .plan.featured .plan-name,
.plan.featured .plan-price { color: #faf7f2; }
.plan.featured .plan-tagline { color: #c9c2b5; }
.plan-badge {
  display: inline-block; font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-bottom: 0.5rem; color: #e8dcc8;
}
.plan-name { font-size: 1.35rem; margin-bottom: 0.25rem; }
.plan-price { font-family: var(--serif); font-size: 2.1rem; color: var(--ink); font-weight: 500; margin-bottom: 0.4rem; }
.plan-price small { font-family: var(--sans); font-size: 0.85rem; font-weight: 500; color: var(--muted); }
.plan.featured .plan-price small { color: #c9c2b5; }
.plan-tagline { font-size: 0.95rem; margin-bottom: 1rem; }
.plan-features { display: grid; gap: 0.4rem; margin-bottom: 1.2rem; font-size: 0.92rem; }
.plan-features li { padding-left: 0.9rem; position: relative; }
.plan-features li::before { content: "–"; position: absolute; left: 0; color: var(--navy); }
.plan.featured .plan-features li::before { color: #e8dcc8; }
.plan .btn { margin-top: 0.2rem; }
.plan.featured .btn-primary { background: #faf7f2; color: var(--navy); }
.plan.featured .btn-primary:hover { background: #fff; }

.note {
  margin-top: 1.4rem; padding: 1rem 1.1rem;
  border-left: 3px solid var(--navy); background: var(--paper);
  font-size: 0.95rem;
}
.text-center { text-align: center; }
.mt-1 { margin-top: 0.7rem; }
.mt-2 { margin-top: 1.4rem; }

/* Steps */
.steps { display: grid; gap: 0; }
.step {
  display: grid; grid-template-columns: 2.4rem 1fr; gap: 0.9rem;
  padding: 1.1rem 0; border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step-n {
  font-family: var(--serif); font-size: 1.4rem; color: var(--navy); font-weight: 500;
}
.step h3 { font-size: 1.15rem; margin-bottom: 0.25rem; }

/* CTA band with photo */
.cta-band {
  position: relative; color: #efe8dc; padding: 4rem 0;
  background: var(--navy);
  overflow: hidden;
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 { color: #faf7f2; font-size: clamp(1.6rem, 3vw, 2.2rem); max-width: 20ch; margin-bottom: 0.6rem; }
.cta-band p { max-width: 42ch; margin-bottom: 1.2rem; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.cta-band .btn-secondary { color: #faf7f2; border-color: rgba(250,247,242,.35); }
.cta-band .btn-secondary:hover { background: rgba(255,255,255,.08); color: #fff; }

/* Inner pages */
.page-hero {
  padding: 2.6rem 0 2.2rem; background: var(--paper);
}
.page-hero.with-photo {
  display: grid;
}
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); max-width: 18ch; margin: 0.4rem 0 0.7rem; }
.page-hero p { max-width: 44ch; }

.about-grid, .contact-grid { display: grid; gap: 1.6rem; align-items: start; }
.aside-card {
  background: var(--paper); border: 1px solid var(--line); padding: 1.4rem;
}
.aside-card h3 { margin-bottom: 0.5rem; }
.aside-photo { width: 100%; height: 200px; object-fit: cover; margin-bottom: 1rem; }

.prose h2 { font-size: 1.35rem; margin: 1.6rem 0 0.5rem; }
.prose p, .prose li { margin-bottom: 0.7rem; }
.prose ul { list-style: disc; padding-left: 1.2rem; }
.legal { max-width: 42rem; }
.legal table { width: 100%; border-collapse: collapse; margin: 0.8rem 0 1.2rem; font-size: 0.92rem; }
.legal th, .legal td { text-align: left; padding: 0.5rem 0.4rem; border-bottom: 1px solid var(--line); color: var(--ink); }

.addons { margin-top: 2.4rem; }
.addons h3 { margin-bottom: 0.9rem; }
.addon-list { display: grid; gap: 0; }
.addon {
  display: flex; justify-content: space-between; gap: 1rem; align-items: baseline;
  padding: 0.95rem 0; border-top: 1px solid var(--line);
}
.addon:last-child { border-bottom: 1px solid var(--line); }
.addon span { display: block; font-size: 0.88rem; color: var(--muted); font-weight: 400; }
.addon-price { font-family: var(--serif); color: var(--ink); font-weight: 500; white-space: nowrap; }

.compare-wrap { overflow-x: auto; margin-top: 2.2rem; }
.compare { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.compare th, .compare td { padding: 0.7rem 0.6rem; text-align: left; border-bottom: 1px solid var(--line); }
.compare th { font-family: var(--serif); font-weight: 500; color: var(--ink); }
.compare .check { color: var(--navy); font-weight: 600; }
.compare .dash { color: var(--line); }

.faq-list { display: grid; gap: 0; max-width: 42rem; }
.faq-item { border-top: 1px solid var(--line); }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer; padding: 1rem 0; font-weight: 600; color: var(--ink); list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-answer { padding: 0 0 1.1rem; }
.faq-answer p + p { margin-top: 0.6rem; }

.form-card { background: var(--cream); border: 1px solid var(--line); padding: 1.4rem; }
.form-row { display: grid; gap: 0.75rem; }
.form-group { margin-bottom: 0.75rem; }
label { display: block; font-weight: 600; color: var(--ink); font-size: 0.88rem; margin-bottom: 0.28rem; }
.hint { font-weight: 400; color: var(--muted); }
input, select, textarea {
  width: 100%; padding: 0.7rem 0.8rem;
  border: 1px solid var(--line); border-radius: 4px; background: #fff; color: var(--ink);
}
textarea { min-height: 120px; resize: vertical; }
.form-check { display: flex; gap: 0.55rem; align-items: flex-start; font-size: 0.88rem; margin: 0.4rem 0 1rem; }
.form-check input { width: auto; margin-top: 0.25rem; }
.form-success {
  display: none; background: var(--paper); border-left: 3px solid var(--navy);
  padding: 0.8rem 1rem; margin-bottom: 1rem; color: var(--ink);
}
.form-success.is-visible { display: block; }
.contact-info { display: grid; gap: 1.2rem; }
.info-item strong { display: block; color: var(--ink); font-family: var(--serif); font-weight: 500; font-size: 1.05rem; margin-bottom: 0.2rem; }

.split-photo { width: 100%; height: 280px; object-fit: cover; }

.site-footer {
  background: var(--navy); color: #b7b0a4; padding: 2.6rem 0 1.6rem;
}
.site-footer .logo { color: #faf7f2; }
.site-footer .logo em { color: #e8dcc8; }
.site-footer a { color: #faf7f2; }
.footer-grid { display: grid; gap: 1.5rem; margin-bottom: 1.8rem; }
.footer-brand p { margin-top: 0.6rem; font-size: 0.92rem; max-width: 28ch; }
.footer-col h4 { color: #faf7f2; font-size: 0.95rem; margin-bottom: 0.55rem; }
.footer-col a { display: block; font-size: 0.9rem; margin-top: 0.35rem; }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 0.6rem 1.2rem;
  padding-top: 1.2rem; border-top: 1px solid rgba(250,247,242,.12); font-size: 0.85rem;
}

@media (min-width: 840px) {
  .header-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; }
  .header-actions { order: 3; }
  .nav { justify-content: flex-end; margin-right: 0.35rem; }
  .hero-grid { grid-template-columns: 0.92fr 1.08fr; min-height: calc(100dvh - 70px); }
  .hero-copy { padding: 3.6rem 2.4rem 3.6rem 0; display: flex; flex-direction: column; justify-content: center; }
  .hero-visual { min-height: unset; }
  .hero-visual > img { position: absolute; inset: 0; min-height: 100%; max-height: none; }
  .price-float {
    display: block; position: absolute; left: -1.6rem; bottom: 2rem;
    background: var(--cream); color: var(--ink); padding: 1rem 1.15rem;
    width: 230px; border: 1px solid var(--line);
  }
  .price-float h2 { font-size: 0.95rem; margin-bottom: 0.55rem; }
  .price-row {
    display: flex; justify-content: space-between; gap: 0.5rem;
    font-size: 0.88rem; padding: 0.28rem 0; border-bottom: 1px solid var(--sand);
  }
  .price-row .price { font-weight: 600; color: var(--ink); }
  .price-float .btn { margin-top: 0.75rem; }
  .photo-strip { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; padding: 0.5rem 0 0; }
  .photo-strip img { height: 170px; }
  .feature { grid-template-columns: 1.1fr 0.9fr; }
  .feature-flip { grid-template-columns: 0.9fr 1.1fr; }
  .feature-flip .copy { order: -1; }
  .pricing-grid { grid-template-columns: repeat(3, 1fr); align-items: stretch; }
  .steps { grid-template-columns: 1fr 1fr; gap: 0 2rem; }
  .about-grid, .contact-grid { grid-template-columns: 1.2fr 0.8fr; }
  .form-row { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; }
  .page-hero { padding: 3.4rem 0 2.8rem; }
}
@media (max-width: 839px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: var(--cream); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; padding: 0.7rem 1rem 1.1rem; gap: 0;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 0.7rem 0; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

@media (max-width: 420px) {
  .header-cta { font-size: 0.82rem; padding: 0.55rem 0.7rem; }
}
