/* ============================================================
   Laverie de Saint-Pétersbourg — feuille de style
   Identité : rose & bordeaux sur fond crème (réf. logo)
   ============================================================ */

:root {
  --bg:          #FCF4F5;
  --surface:     #FFFFFF;
  --surface-alt: #F8E7EC;
  --primary:     #6E1B33;   /* bordeaux profond */
  --primary-dk:  #50132457;
  --primary-dark:#501325;
  --accent:      #C25F7C;   /* rose */
  --accent-soft: #E9AEBF;
  --rose-bg:     #F4DAE1;
  --text:        #43343A;
  --muted:       #8C7077;
  --border:      #ECD3DA;
  --shadow:      0 18px 40px -24px rgba(110, 27, 51, .35);
  --radius:      16px;
  --maxw:        1120px;
  --serif:       "Playfair Display", Georgia, "Times New Roman", serif;
  --script:      "Cormorant Garamond", Georgia, serif;
  --sans:        "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  font-family: var(--sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); color: var(--primary); line-height: 1.15; font-weight: 600; }

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--primary); }

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

/* -------- Boutons -------- */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-weight: 600;
  font-size: .98rem;
  padding: .85rem 1.7rem;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: 0 10px 24px -12px rgba(110,27,51,.6); }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--primary); border-color: var(--accent-soft); }
.btn-ghost:hover { background: var(--rose-bg); color: var(--primary); transform: translateY(-2px); }

/* -------- En-tête -------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(252, 244, 245, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { height: 46px; width: auto; }
.brand-name { font-family: var(--serif); font-size: .82rem; line-height: 1.1; color: var(--primary); letter-spacing: .04em; text-transform: uppercase; }
.brand-name strong { font-size: .95rem; display: block; }

.main-nav { display: flex; align-items: center; gap: 28px; }
.main-nav a { color: var(--text); font-weight: 500; font-size: .96rem; }
.main-nav a:hover { color: var(--primary); }
.main-nav .nav-cta { background: var(--primary); color: #fff; padding: .55rem 1.2rem; border-radius: 999px; }
.main-nav .nav-cta:hover { background: var(--primary-dark); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--primary); transition: .25s; }

/* -------- Hero -------- */
.hero {
  text-align: center;
  padding: 84px 0 72px;
  background:
    radial-gradient(circle at 50% -10%, var(--rose-bg), transparent 60%),
    linear-gradient(180deg, #fff 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
}
.hero-logo { width: 210px; max-width: 60vw; height: auto; margin: 0 auto 22px; }
.hero-logo.is-missing { display: none; }
.hero-title { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: .4em; }
.hero-tagline { font-family: var(--script); font-size: clamp(1.2rem, 2.6vw, 1.6rem); color: var(--text); max-width: 640px; margin: 0 auto 1.3em; }
.hero-hours { display: inline-flex; align-items: center; gap: 9px; font-weight: 600; color: var(--primary); background: var(--surface); border: 1px solid var(--border); padding: .5rem 1.1rem; border-radius: 999px; margin-bottom: 2em; }
.hero-hours .dot { width: 9px; height: 9px; border-radius: 50%; background: #3aa76d; box-shadow: 0 0 0 4px rgba(58,167,109,.18); }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* -------- Points clés -------- */
.features { padding: 56px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feature { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; text-align: center; }
.feature h3 { font-size: 1.12rem; margin: 14px 0 6px; }
.feature p { color: var(--muted); font-size: .92rem; }
.ic { width: 38px; height: 38px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* -------- Sections -------- */
.section { padding: 84px 0; }
.section-alt { background: var(--surface-alt); }
.eyebrow { text-transform: uppercase; letter-spacing: .18em; font-size: .78rem; font-weight: 600; color: var(--accent); margin-bottom: .6em; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); margin-bottom: .5em; }
.section-lead { max-width: 720px; color: var(--text); font-size: 1.06rem; margin-bottom: 2.4em; }

/* -------- Machines -------- */
.machines { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 20px; }
.machine-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px 22px; position: relative; transition: transform .18s ease, box-shadow .2s ease; }
.machine-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.machine-card.featured { border-color: var(--accent); box-shadow: var(--shadow); }
.machine-size { display: inline-grid; place-items: center; width: 56px; height: 56px; border-radius: 50%; background: var(--rose-bg); color: var(--primary); font-family: var(--serif); font-weight: 700; font-size: 1.05rem; margin-bottom: 14px; }
.machine-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.machine-card p { color: var(--muted); font-size: .92rem; }
.machine-price { color: var(--primary) !important; font-weight: 700; font-size: 1.15rem; margin-top: 14px; font-family: var(--serif); }
.machine-price span { font-family: var(--sans); font-weight: 500; font-size: .82rem; color: var(--muted); }
.price-note { margin-top: 16px; font-size: .85rem; color: var(--muted); font-style: italic; }

/* -------- Sur place -------- */
.amenities { margin-top: 48px; }
.amenities h3 { font-size: 1.25rem; margin-bottom: 16px; }
.amenity-list { list-style: none; display: flex; flex-wrap: wrap; gap: 14px 32px; }
.amenity-list li { display: flex; align-items: center; gap: 10px; font-weight: 500; color: var(--text); }
.ic-sm { width: 24px; height: 24px; stroke: var(--accent); fill: none; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }

/* -------- Étapes -------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px 22px; }
.step-num { display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%; background: var(--primary); color: #fff; font-family: var(--serif); font-weight: 700; margin-bottom: 14px; }
.step h3 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: var(--muted); font-size: .92rem; }

/* -------- Teaser abonnement -------- */
.subscribe-teaser { margin-top: 44px; background: var(--surface); border: 1px solid var(--accent-soft); border-radius: var(--radius); padding: 32px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; box-shadow: var(--shadow); }
.subscribe-teaser h3 { font-size: 1.3rem; margin-bottom: 6px; }
.subscribe-teaser p { color: var(--muted); max-width: 520px; }

/* -------- Accès -------- */
.access-grid, .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-block { font-style: normal; line-height: 1.9; }
.contact-block .addr-line { font-size: 1.05rem; }
.map-link { font-weight: 600; }
.hours-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 36px; text-align: center; box-shadow: var(--shadow); }
.hours-card h3 { font-size: 1.2rem; margin-bottom: 12px; }
.hours-big { font-family: var(--serif); font-size: 2.6rem; color: var(--primary); font-weight: 700; }
.hours-days { font-weight: 600; color: var(--accent); margin-bottom: 16px; }
.hours-note { color: var(--muted); font-size: .92rem; }

/* -------- Contact -------- */
.contact-direct { list-style: none; margin-top: 20px; display: flex; flex-direction: column; gap: 8px; }
.contact-direct a { color: var(--text); font-weight: 500; }
.contact-direct a:hover { color: var(--primary); }
.contact-form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow); }
.field { margin-bottom: 18px; }
.field label { display: block; font-weight: 600; font-size: .9rem; margin-bottom: 6px; color: var(--primary); }
.field .opt { color: var(--muted); font-weight: 400; }
.field input, .field textarea {
  width: 100%; font-family: var(--sans); font-size: 1rem; color: var(--text);
  padding: .8rem .95rem; border: 1.5px solid var(--border); border-radius: 11px; background: #fff;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px rgba(194,95,124,.14); }
.field textarea { resize: vertical; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }
.contact-form .btn { width: 100%; }
.form-status { margin-top: 14px; font-size: .92rem; font-weight: 500; min-height: 1.2em; }
.form-status.ok { color: #2e8b57; }
.form-status.err { color: #c0392b; }

/* -------- Pied de page -------- */
.site-footer { background: var(--primary); color: #f3dde4; padding: 56px 0 28px; margin-top: 0; }
.site-footer .brand-name, .site-footer h3 { color: #fff; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px; padding-bottom: 32px; border-bottom: 1px solid rgba(255,255,255,.16); }
.site-footer a { color: #f3dde4; }
.site-footer a:hover { color: #fff; }
.footer-col p { margin-bottom: 8px; font-size: .95rem; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .85rem; color: #e3c3cd; flex-wrap: wrap; gap: 10px; }

/* -------- Responsive -------- */
@media (max-width: 900px) {
  .features-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .access-grid, .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .main-nav {
    position: fixed; inset: 72px 0 auto 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--surface); border-bottom: 1px solid var(--border);
    padding: 8px 24px 20px; transform: translateY(-130%); transition: transform .28s ease; box-shadow: var(--shadow);
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav a { padding: 14px 0; border-bottom: 1px solid var(--border); }
  .main-nav .nav-cta { text-align: center; margin-top: 12px; }
  .nav-toggle { display: flex; }
  .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); }
  .subscribe-teaser { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 480px) {
  .features-grid, .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
}
