/* ============================================================================
   Le Fauteuil de Nelly — feuille de style
   Esthetique retro/vintage : crème + rose/vert pastel + script Pacifico
   ============================================================================ */

/* --- Variables -------------------------------------------------------------- */
:root {
  --cream: #FAF5E6;
  --cream-alt: #F0E9D2;
  --cream-dark: #E5DCBF;
  --pink: #F4D9E0;
  --pink-dark: #E8B4C4;
  --green: #C9E2B5;
  --green-dark: #A6CC8E;
  --red: #C44A3A;
  --red-dark: #A33B2D;
  --text: #2C2018;
  --text-mid: #6B5D52;
  --text-light: #968578;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(60, 40, 30, 0.08);
  --shadow-md: 0 6px 18px rgba(60, 40, 30, 0.12);
  --shadow-lg: 0 12px 32px rgba(60, 40, 30, 0.15);
  --radius: 14px;
  --radius-lg: 22px;
  --container: 1100px;
  --font-script: 'Pacifico', 'Brush Script MT', cursive;
  --font-serif: 'Lora', Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* --- Reset léger ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); text-decoration: none; transition: color .2s; }
a:hover { color: var(--red-dark); }
h1, h2, h3 { margin: 0 0 .4em; line-height: 1.15; }
p { margin: 0 0 1em; }

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

/* --- Boutons --------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s, border-color .2s;
  text-decoration: none;
}
.btn-lg { font-size: 18px; padding: 15px 30px; }
.btn-primary {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: var(--red-dark); border-color: var(--red-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}
.btn-ghost:hover { background: var(--text); color: var(--cream); transform: translateY(-2px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 245, 230, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-script);
  font-size: 24px;
  color: var(--text);
}
.brand img { width: 48px; height: auto; }
.site-nav {
  display: flex; gap: 28px;
  font-family: var(--font-sans); font-size: 15px; font-weight: 500;
}
.site-nav a { color: var(--text); }
.site-nav a:hover { color: var(--red); }
.header-cta { font-size: 15px; padding: 10px 18px; }

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  padding: 80px 0 100px;
  background:
    radial-gradient(circle at 20% 10%, var(--pink) 0%, transparent 35%),
    radial-gradient(circle at 90% 80%, var(--green) 0%, transparent 35%),
    var(--cream);
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}
.hero-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 12px;
}
.brand-title {
  font-family: var(--font-script);
  font-size: clamp(56px, 8vw, 96px);
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2.3vw, 26px);
  color: var(--red);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 18px;
  max-width: 480px;
  color: var(--text-mid);
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 14px;
  margin-top: 30px;
}
.hero-illu img {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  filter: drop-shadow(0 18px 30px rgba(60, 40, 30, 0.18));
}

/* --- Sections génériques --------------------------------------------------- */
.section { padding: 90px 0; }
.section-alt { background: var(--cream-alt); }
.section-head { text-align: center; max-width: 600px; margin: 0 auto 56px; }
.section-eyebrow {
  font-family: var(--font-sans);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: var(--red);
  font-weight: 600;
  margin-bottom: 8px;
}
.section-title {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--text);
}
.section-sub {
  color: var(--text-mid);
  font-style: italic;
  font-size: 17px;
}

/* --- Services ------------------------------------------------------------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: relative;
  /* double bordure rose/verte inspirée de la carte originale */
  border: 2px solid var(--pink-dark);
  outline: 2px solid var(--green-dark);
  outline-offset: -8px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.service-card h3 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 21px;
  color: var(--text);
  margin-bottom: 8px;
}
.service-desc { color: var(--text-mid); font-size: 15px; margin-bottom: 18px; }
.service-price {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--red);
  margin: 0;
}

/* --- À propos ------------------------------------------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text .section-title { text-align: left; }
.about-text .section-eyebrow { text-align: left; }
.about-signature {
  font-family: var(--font-script);
  font-size: 28px;
  color: var(--red);
  margin-top: 28px;
}
.about-visual { display: flex; justify-content: center; }

/* --- Placeholders (image manquantes) -------------------------------------- */
.placeholder {
  background: repeating-linear-gradient(
    45deg,
    var(--cream-alt),
    var(--cream-alt) 16px,
    var(--cream-dark) 16px,
    var(--cream-dark) 32px
  );
  border: 2px dashed var(--text-light);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-mid);
  font-family: var(--font-sans);
  font-size: 14px;
  text-align: center;
  padding: 16px;
}
.placeholder-portrait { width: 100%; max-width: 360px; aspect-ratio: 4/5; }
.placeholder-square { aspect-ratio: 1/1; }

/* --- Galerie -------------------------------------------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* --- Avis ---------------------------------------------------------------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.testimonial {
  background: var(--cream-alt);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  margin: 0;
  position: relative;
  border-top: 4px solid var(--pink-dark);
  box-shadow: var(--shadow-sm);
}
.testimonial::before {
  content: '"';
  font-family: var(--font-script);
  font-size: 80px;
  color: var(--pink-dark);
  position: absolute;
  top: -12px; left: 18px;
  line-height: 1;
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-style: italic;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
}
.testimonial figcaption {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--red);
}

/* --- Appel à avis (bouton Google + formulaire de témoignage) ------------ */
.review-cta {
  margin-top: 56px;
  padding: 40px 32px;
  background: var(--cream);
  border-radius: var(--radius-lg);
  border: 2px solid var(--pink-dark);
  outline: 2px solid var(--green-dark);
  outline-offset: -8px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}
.review-cta-title {
  font-family: var(--font-script);
  font-size: clamp(28px, 4vw, 38px);
  color: var(--text);
  margin-bottom: 8px;
}
.review-cta-text {
  color: var(--text-mid);
  font-style: italic;
  margin-bottom: 28px;
}
.review-cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.review-or {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--text-mid);
}

/* Conteneur dépliable du formulaire (élément <details>) */
.review-form-wrapper {
  width: 100%;
  max-width: 580px;
}
.review-form-wrapper > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
}
.review-form-wrapper > summary::-webkit-details-marker { display: none; }
.review-form-wrapper[open] > summary {
  margin-bottom: 24px;
}

/* Formulaire lui-même */
.review-form {
  text-align: left;
  background: var(--cream-alt);
  border-radius: var(--radius);
  padding: 28px 26px;
  box-shadow: var(--shadow-sm);
}
.review-form .form-row { margin-bottom: 18px; }
.review-form label {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14px;
  color: var(--text);
  margin-bottom: 6px;
}
.review-form input[type="text"],
.review-form input[type="email"],
.review-form textarea {
  width: 100%;
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  border: 1.5px solid var(--cream-dark);
  border-radius: 10px;
  padding: 11px 14px;
  transition: border-color .2s, box-shadow .2s;
}
.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 74, 58, 0.15);
}
.review-form textarea {
  resize: vertical;
  min-height: 130px;
  font-family: var(--font-serif);
  line-height: 1.55;
}
.review-form .form-hint {
  display: block;
  margin-top: 5px;
  font-family: var(--font-sans);
  font-size: 13px;
  color: var(--text-light);
  font-style: italic;
}
/* Honeypot anti-bots : retiré du flux visuel mais soumis avec le formulaire */
.review-form .form-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none;
}
.review-form button[type="submit"] { margin-top: 6px; }
.form-rgpd {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: 12.5px;
  color: var(--text-light);
  line-height: 1.55;
}

/* --- Infos pratiques ----------------------------------------------------- */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  grid-template-areas:
    "header ."
    "block  map";
  column-gap: 50px;
  row-gap: 0;
  align-items: stretch;
}
.info-header { grid-area: header; margin-bottom: 30px; }
.info-block  { grid-area: block; }
.info-map    { grid-area: map; }
.info-header .section-title { text-align: left; }
.info-header .section-eyebrow { text-align: left; }
.info-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 26px 28px;
  margin-bottom: 20px;
  border: 1px solid var(--cream-dark);
  box-shadow: var(--shadow-sm);
}
.info-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text);
}
.hours-list { list-style: none; margin: 0; padding: 0; }
.hours-list li {
  display: flex; justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px dashed var(--cream-dark);
  font-size: 16px;
}
.hours-list li:last-child { border-bottom: none; }
.hours-list .closed { color: var(--text-light); font-style: italic; }
address { font-style: normal; line-height: 1.7; color: var(--text); }
.link-tel {
  display: inline-block;
  margin-top: 10px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 18px;
  color: var(--red);
}
.info-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
  min-height: 450px;
}
.info-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 450px;
}

/* --- CTA final ----------------------------------------------------------- */
.cta-final {
  background:
    radial-gradient(circle at 50% 0%, var(--pink) 0%, transparent 60%),
    var(--cream);
  text-align: center;
  padding: 80px 0;
}
.cta-title {
  font-family: var(--font-script);
  font-size: clamp(36px, 5vw, 52px);
  color: var(--text);
  margin-bottom: 12px;
}
.cta-text { color: var(--text-mid); font-size: 19px; margin-bottom: 28px; }

/* --- Footer -------------------------------------------------------------- */
.site-footer {
  background: var(--text);
  color: var(--cream-alt);
  padding: 50px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px;
  align-items: center;
  text-align: center;
}
.footer-brand {
  display: flex; align-items: center; gap: 14px;
  text-align: left;
}
.footer-brand p { margin: 0; font-size: 14px; }
.footer-brand strong { font-family: var(--font-script); font-size: 22px; color: var(--cream); font-weight: normal; display: inline-block; }
.footer-nav { display: flex; gap: 22px; justify-content: center; font-size: 14px; font-family: var(--font-sans); }
.footer-nav a { color: var(--cream-alt); }
.footer-nav a:hover { color: var(--white); }
.footer-legal {
  text-align: right;
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 900px) {
  .hero { padding: 50px 0 60px; }
  .hero-inner { grid-template-columns: 1fr; gap: 30px; text-align: center; }
  .hero-text { order: 2; }
  .hero-illu { order: 1; }
  .hero-illu img { max-width: 280px; }
  .hero-actions { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }

  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .info-grid {
    grid-template-columns: 1fr;
    grid-template-areas: "header" "block" "map";
    row-gap: 36px;
  }
  .info-header { margin-bottom: 0; }
  .about-text .section-title, .info-header .section-title { text-align: center; }
  .about-text .section-eyebrow, .info-header .section-eyebrow { text-align: center; }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); }

  .review-cta { padding: 32px 22px; margin-top: 44px; }
  .review-cta-actions { flex-direction: column; gap: 14px; }
  .review-or { font-size: 20px; }
  .review-form-wrapper { max-width: 100%; }

  .site-nav { display: none; }
  .header-cta span:first-child + * { display: none; }

  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
  .footer-legal { text-align: center; }
}

@media (max-width: 520px) {
  body { font-size: 16px; }
  .section { padding: 60px 0; }
  .section-head { margin-bottom: 40px; }
  .container { padding: 0 18px; }
  .header-inner { gap: 10px; }
  .brand span { display: none; }
  .header-cta { font-size: 14px; padding: 9px 14px; }
  .service-card { padding: 22px 20px; }
  .gallery-grid { grid-template-columns: 1fr; }

  .review-cta { padding: 26px 18px; }
  .review-form { padding: 22px 18px; }
}
