/* ================================================
   Les Délices de Lectoure — Stylesheet (v2)
   Base palette  : cream · beige · brown · gold
   Accent colours: --orange (#c97a20) · --green (#4a8018)
   Fonts         : Cormorant Garamond + Jost
   ================================================ */

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

:root {
  /* Core palette — warmer, slightly deeper than v1 */
  --cream:        #f5efe6;
  --beige:        #e8d9c4;
  --beige-mid:    #d4bc99;
  --brown:        #8b6240;
  --brown-dark:   #5c3d1e;
  --brown-deepest:#3a2510;
  --gold:         #c9974a;

  /* Brand accents */
  --orange:       #c97a20;
  --green:        #4a8018;

  --text:         #241608;
  --text-light:   #6b5340;
  --white:        #ffffff;
  --charcoal:     #18100a;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Jost', sans-serif;

  --radius:    12px;
  --shadow:    0 4px 24px rgba(44,26,14,.12);
  --shadow-lg: 0 12px 48px rgba(44,26,14,.18);

  --max-width: 1200px;
  --nav-h:     72px;
}

html { font-size: 16px; scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.7; -webkit-font-smoothing: antialiased; }


img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }

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

/* ── Section labels ── */
.section-eyebrow {
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 3px solid var(--orange);
}

.centered-eyebrow {
  text-align: center;
  padding-left: 0;
  border-left: none;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--brown-dark);
  margin-bottom: 40px;
}
.section-title em { font-style: italic; color: var(--orange); }

.centered-title { text-align: center; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 50px;
  cursor: pointer;
  transition: all .25s ease;
  border: 1.5px solid transparent;
}
.btn-light { background: var(--white); color: var(--brown-dark); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }

.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,.7); }
.btn-outline-light:hover { background: var(--white); color: var(--brown-dark); }

.btn-dark { background: var(--brown-dark); color: var(--white); border-color: var(--brown-dark); }
.btn-dark:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(92,61,30,.3); }

.btn-outline-dark { background: transparent; color: var(--brown-dark); border-color: var(--brown-dark); }
.btn-outline-dark:hover { background: var(--brown-dark); color: var(--white); }

.btn-full { width: 100%; text-align: center; }


/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(245,239,230,.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--beige-mid);
  transition: box-shadow .3s;
}
#navbar.scrolled { box-shadow: 0 2px 20px rgba(44,26,14,.10); }

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav-logo-img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown-dark);
}

.nav-links { list-style: none; display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: .78rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1.5px;
  background: var(--green);
  transition: width .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--brown-dark); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--brown-dark); transition: all .25s; }


/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 16s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to   { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36,22,8,.75) 0%, rgba(92,61,30,.50) 55%, rgba(201,151,74,.18) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 80px 24px 80px 64px;
  animation: heroFade 1.2s ease both;
}
@keyframes heroFade {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: .78rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  font-family: var(--font-body);
  font-weight: 400;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hero-eyebrow::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.08;
  color: var(--white);
  margin-bottom: 16px;
}
.hero h1 em { font-style: italic; color: #f0d9b5; }

.hero-sub {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(255,255,255,.75);
  margin-bottom: 24px;
}
.hero-desc {
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  max-width: 520px;
  margin-bottom: 40px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }


/* ================================================
   À PROPOS
   ================================================ */
.apropos { padding: 100px 0 0; background: var(--beige); }
.apropos-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding-bottom: 72px;
}
.apropos-text p { color: var(--text-light); margin-bottom: 20px; font-size: 1rem; line-height: 1.85; }
.apropos-text p:last-child { margin-bottom: 0; }

.apropos-text .section-title {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.apropos-img {
  position: relative;
  height: 520px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.apropos-img-badge {
  position: absolute;
  bottom: -24px; left: -24px;
  background: var(--brown-dark);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  text-align: center;
  line-height: 1.4;
  padding: 20px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}


/* ── Pourquoi nous choisir ── */
.pourquoi-strip {
  background: var(--beige);
  padding: 64px 0 80px;
}

.pourquoi-eyebrow {
  margin-bottom: 40px;
}

.pourquoi-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.pourquoi-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px 26px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  border-top: 3px solid transparent;
}
.pourquoi-card:nth-child(odd)  { border-top-color: var(--orange); }
.pourquoi-card:nth-child(even) { border-top-color: var(--green); }
.pourquoi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }

.pourquoi-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
}
.pourquoi-icon svg { width: 100%; height: 100%; }

.pourquoi-card h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}
.pourquoi-card p {
  font-size: .85rem;
  color: var(--text-light);
  line-height: 1.65;
}


/* ================================================
   PRODUITS
   ================================================ */
.produits { padding: 100px 0; background: var(--cream); }

.produits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
}

.produit-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .3s ease, box-shadow .3s ease;
  border-left: 3px solid transparent;
}
.produit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.produit-img {
  width: 100%; height: 220px;
  background-size: cover;
  background-position: center;
  transition: transform .4s ease;
}
.produit-card:hover .produit-img { transform: scale(1.04); }

.produit-body { padding: 22px 24px 26px; }
.produit-body h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.produit-body p { font-size: .9rem; color: var(--text-light); line-height: 1.65; }

.produits-grid--trois { grid-template-columns: repeat(3, 1fr); }

.produits-grid--trois .produit-card:nth-child(1) { border-left-color: var(--orange); }
.produits-grid--trois .produit-card:nth-child(2) { border-left-color: var(--brown); }
.produits-grid--trois .produit-card:nth-child(3) { border-left-color: var(--green); }

.produits-grid--trois .produit-card:nth-child(1) .produit-body h3 { color: var(--orange); }
.produits-grid--trois .produit-card:nth-child(2) .produit-body h3 { color: var(--brown-dark); }
.produits-grid--trois .produit-card:nth-child(3) .produit-body h3 { color: var(--green); }


/* ================================================
   COMMANDES SUR MESURE
   ================================================ */
.commandes {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  color: var(--white);
}

.commandes-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: commandesZoom 22s ease-in-out infinite alternate;
}
@keyframes commandesZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}
.commandes-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(36,22,8,.82) 0%, rgba(92,61,30,.65) 55%, rgba(36,22,8,.70) 100%);
}
.commandes-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.commandes .section-eyebrow { color: var(--orange); border-left-color: var(--orange); }
.commandes .section-title   { color: var(--white); }
.commandes .section-title em { color: #f0d9b5; }
.commandes .section-title {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.commandes-text p {
  color: rgba(255,255,255,.78);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.85;
}
.commandes-text p:last-of-type { margin-bottom: 0; }

.commandes-icon {
  width: 140px;
  flex-shrink: 0;
  opacity: .85;
}
.commandes-icon svg { width: 100%; height: auto; }

.commandes .btn-dark {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--brown-dark);
}
.commandes .btn-dark:hover {
  background: #b8832e;
  border-color: #b8832e;
  color: var(--white);
}


/* ================================================
   SALON DE THÉ
   ================================================ */
.salon-the {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.salon-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: salonZoom 20s ease-in-out infinite alternate;
}
@keyframes salonZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.10); }
}

.salon-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(260deg, rgba(36,22,8,.85) 0%, rgba(92,61,30,.60) 50%, rgba(201,151,74,.15) 100%);
}

.salon-inner {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  display: flex;
  justify-content: flex-end;
}

.salon-content {
  max-width: 580px;
}

.salon-the .section-eyebrow {
  color: var(--orange);
  border-left: none;
  border-right: 3px solid var(--orange);
  padding-left: 0;
  padding-right: 12px;
  text-align: right;
}
.salon-the .section-title { color: var(--white); margin-bottom: 24px; text-align: right; }
.salon-the .section-title em { color: #f0d9b5; }

.salon-desc {
  color: rgba(255,255,255,.82);
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 16px;
  text-align: right;
}
.salon-desc:last-of-type { margin-bottom: 32px; }

.salon-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.salon-tag {
  display: inline-block;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.90);
  font-size: .8rem;
  letter-spacing: .05em;
  padding: 7px 16px;
  border-radius: 50px;
  backdrop-filter: blur(4px);
  transition: background .2s, border-color .2s;
}
.salon-tag:hover {
  background: rgba(201,122,32,.25);
  border-color: var(--orange);
}


/* ================================================
   LOCALISATION & HORAIRES
   ================================================ */
.localisation { padding: 100px 0; background: var(--cream); }
.localisation .section-title {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}
.localisation-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.adresse {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 36px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.7;
}
.adresse svg { width: 22px; height: 22px; flex-shrink: 0; color: var(--orange); margin-top: 2px; }

.horaires-table { width: 100%; border-collapse: collapse; margin-bottom: 36px; font-size: .95rem; }
.horaires-table caption {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--green);
  text-align: left;
  caption-side: top;
  padding-bottom: 10px;
}
.horaires-table td { padding: 10px 0; border-bottom: 1px solid var(--beige-mid); color: var(--text); }
.horaires-table td:first-child { font-weight: 500; width: 45%; }
.horaires-table tr.closed td { color: var(--text-light); font-style: italic; }
.horaires-table tr:last-child td { border-bottom: none; }
.horaires-table tr:not(.closed) td:last-child { color: var(--green); font-weight: 500; }

.map-container { height: 420px; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.map-container iframe { width: 100%; height: 100%; border: none; }


/* ================================================
   AVIS CLIENTS
   ================================================ */
.avis { padding: 100px 0; background: var(--beige); }

.avis-stars-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.stars, .avis-stars-small { color: var(--orange); }
.stars  { font-size: 1.5rem; letter-spacing: 3px; }
.note   { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; color: var(--orange); }
.source { font-size: .85rem; color: var(--text-light); font-style: italic; }

.avis-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 48px;
}
.avis-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .3s ease;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 3px solid var(--orange);
}
.avis-card:nth-child(even) { border-top-color: var(--green); }
.avis-card:hover    { transform: translateY(-4px); }
.avis-name          { font-size: .95rem; font-weight: 500; color: var(--brown-dark); }
.avis-stars-small   { font-size: .85rem; letter-spacing: 2px; margin-bottom: 2px; }
.avis-card p        { font-size: .9rem; color: var(--text-light); line-height: 1.7; font-style: italic; }
.avis-cta           { text-align: center; }


/* ================================================
   CONTACT
   ================================================ */
.contact { padding: 100px 0; background: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.contact-details { margin-top: 8px; margin-bottom: 16px; display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: center; gap: 14px; font-size: .98rem; color: var(--text); }
.contact-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--orange); }
.contact-item a:hover { color: var(--brown); text-decoration: underline; }

.contact-info .section-title {
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-group   { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-light);
}
.form-group input,
.form-group textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid var(--beige-mid);
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(201,122,32,.12);
}
.form-success { display: none; text-align: center; font-size: .9rem; color: var(--brown); font-style: italic; }
.form-success.visible { display: block; }


/* ================================================
   FACEBOOK
   ================================================ */
.facebook { padding: 100px 0; background: var(--beige); }

.facebook-inner {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 72px;
  align-items: center;
}

.facebook-text .section-title {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.facebook-desc {
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 36px;
}

.facebook-btns { display: flex; gap: 14px; flex-wrap: wrap; }

.fb-frame-wrap {
  width: 480px;
  height: 500px;
  flex-shrink: 0;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  background: var(--white);
}


/* ================================================
   FOOTER
   ================================================ */
.footer { background: var(--charcoal); color: rgba(255,255,255,.72); padding: 60px 0 0; }

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.footer-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p { font-size: .9rem; line-height: 1.8; margin-bottom: 2px; }
.footer-brand a:hover { color: var(--gold); }

.footer-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.footer-logo {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: contain;
  opacity: .80;
  transition: opacity .3s ease;
  filter: brightness(0.9);
}
.footer-logo:hover { opacity: 1; }

.footer-social {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.footer-social p {
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: rgba(255,255,255,.45);
}
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.social-links a svg { width: 16px; height: 16px; color: rgba(255,255,255,.65); }
.social-links a:hover { background: var(--gold); border-color: var(--gold); }
.social-links a:hover svg { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 20px 24px;
  flex-wrap: wrap;
}
.footer-copy { font-size: .8rem; color: rgba(255,255,255,.28); }
.footer-legal-link {
  font-size: .8rem;
  color: rgba(255,255,255,.28);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  transition: color .2s;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal-link:hover { color: rgba(255,255,255,.65); }


/* ================================================
   MENTIONS LÉGALES MODAL
   ================================================ */
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(24,16,10,.75);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: all;
}
.modal-box {
  background: var(--cream);
  border-radius: var(--radius);
  max-width: 640px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 48px;
  position: relative;
  transform: translateY(16px);
  transition: transform .3s ease;
  box-shadow: var(--shadow-lg);
}
.modal-backdrop.is-open .modal-box { transform: translateY(0); }

.modal-close {
  position: absolute;
  top: 16px; right: 20px;
  background: none;
  border: none;
  font-size: 1.1rem;
  color: var(--text-light);
  cursor: pointer;
  line-height: 1;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.modal-close:hover { color: var(--brown-dark); background: var(--beige); }

.modal-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--brown-dark);
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--orange);
  display: inline-block;
}

.modal-body h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin: 24px 0 8px;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p {
  font-size: .92rem;
  color: var(--text-light);
  line-height: 1.8;
}


/* ================================================
   STICKY CALL BUTTON (mobile only)
   ================================================ */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(201,122,32,.45);
  transition: transform .2s ease, box-shadow .2s ease;
}
.sticky-call svg { width: 22px; height: 22px; }
.sticky-call:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(201,122,32,.55); }

@media (max-width: 768px) {
  .sticky-call { display: flex; }
}


/* ================================================
   OPENING STATUS BADGE
   ================================================ */
.open-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 500;
  font-style: normal;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 50px;
  margin-left: 10px;
  vertical-align: middle;
}
.open-status::before {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}
.open-status.is-open {
  background: rgba(74,128,24,.12);
  color: var(--green);
}
.open-status.is-open::before { background: var(--green); }
.open-status.is-closed {
  background: rgba(201,122,32,.12);
  color: var(--orange);
}
.open-status.is-closed::before { background: var(--orange); }


/* ================================================
   SCROLL PROGRESS BAR
   ================================================ */
#scrollProgress {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg, var(--green) 0%, var(--orange) 100%);
  z-index: 1001;
  transition: width .1s linear;
  pointer-events: none;
}


/* ================================================
   WAVE DIVIDERS
   ================================================ */
.wave-divider {
  display: block;
  line-height: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 90px;
}

/* Each wave sits on the background of the section ABOVE it */
.wave-apropos-to-produits   { background: var(--beige); }
.wave-localisation-to-avis  { background: var(--cream); }
.wave-avis-to-contact       { background: var(--beige); }
.wave-contact-to-facebook   { background: var(--cream); }
.wave-apropos-to-produits   + .produits     { padding-top: 60px; }
.wave-localisation-to-avis  + .avis         { padding-top: 60px; }
.wave-avis-to-contact       + .contact      { padding-top: 60px; }
.wave-contact-to-facebook   + .facebook     { padding-top: 60px; }


/* ================================================
   SOCIAL CARD
   ================================================ */
.social-card-wrap {
  width: 480px;
  flex-shrink: 0;
}

.social-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--beige-mid);
}

.social-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 24px 28px 20px;
  border-bottom: 1px solid var(--beige);
}

.social-card-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
}
.social-card-avatar svg { width: 100%; height: 100%; }

.social-card-identity strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.3;
}
.social-card-identity span {
  font-size: .78rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

.social-card-body {
  padding: 20px 28px 24px;
}
.social-card-body p {
  font-size: .95rem;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.social-card-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  padding: 16px;
  background: var(--beige);
  border-radius: 8px;
}
.social-stat {
  text-align: center;
}
.social-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 2px;
}
.social-stat span {
  font-size: .72rem;
  color: var(--text-light);
  letter-spacing: .04em;
}

.social-card-footer {
  display: flex;
  gap: 10px;
  padding: 16px 28px 24px;
}

.social-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 50px;
  border: 1.5px solid var(--brown-dark);
  color: var(--white);
  background: var(--brown-dark);
  transition: all .25s ease;
  text-decoration: none;
}
.social-card-cta svg { width: 14px; height: 14px; flex-shrink: 0; }
.social-card-cta:hover { background: var(--brown); border-color: var(--brown); transform: translateY(-2px); }

.social-card-cta--ig {
  background: transparent;
  color: var(--brown-dark);
}
.social-card-cta--ig:hover { background: var(--brown-dark); color: var(--white); }

@media (max-width: 1060px) {
  .social-card-wrap { width: 100%; max-width: 480px; }
}


/* ================================================
   PILL / TAG SWEEP HOVER EFFECT
   ================================================ */
.salon-tag {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.salon-tag::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green);
  transform: translateX(-101%);
  transition: transform .28s cubic-bezier(.4,0,.2,1);
  z-index: -1;
  border-radius: inherit;
}
.salon-tag:hover {
  border-color: var(--green);
  color: var(--white);
}
.salon-tag:hover::before { transform: translateX(0); }

/* Specialty card image tint on hover */
.produit-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(201,122,32,0) 50%, rgba(201,122,32,.22) 100%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.produit-card { position: relative; }
.produit-card:hover::after { opacity: 1; }

/* Pourquoi cards — subtle green tint on hover */
.pourquoi-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: linear-gradient(160deg, rgba(74,128,24,.04) 0%, rgba(74,128,24,.08) 100%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.pourquoi-card { position: relative; }
.pourquoi-card:hover::before { opacity: 1; }


/* ================================================
   SCROLL REVEAL (handled by JS, declared here)
   ================================================ */
/* initial states set by JS */


/* ================================================
   RESPONSIVE
   ================================================ */
@media (max-width: 1060px) {
  .pourquoi-grid   { grid-template-columns: repeat(3, 1fr); }
  .facebook-inner  { grid-template-columns: 1fr; gap: 48px; }
  .fb-frame-wrap   { width: 100%; max-width: 480px; }
  .commandes-inner { grid-template-columns: 1fr; gap: 32px; }
  .commandes-icon  { display: none; }
}

@media (max-width: 900px) {
  .apropos-inner,
  .localisation-inner,
  .contact-inner   { grid-template-columns: 1fr; gap: 40px; }
  .apropos-img     { height: 360px; }
  .apropos-img-badge { bottom: -16px; left: 16px; }
  .map-container   { height: 320px; }
  .footer-inner    { grid-template-columns: 1fr; gap: 32px; text-align: center; }
  .footer-social   { align-items: center; }
  .footer-center   { order: -1; }
  .produits-grid--trois { grid-template-columns: 1fr 1fr; }
  .pourquoi-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 680px) {
  .hero-content    { padding: 60px 24px; }
  .hero h1         { font-size: 2.8rem; }
  .nav-links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px; gap: 20px;
    border-bottom: 1px solid var(--beige-mid);
    box-shadow: var(--shadow);
    display: none;
  }
  .nav-links.open   { display: flex; }
  .nav-toggle       { display: flex; }
  .produits-grid    { grid-template-columns: 1fr 1fr; }
  .produits-grid--trois { grid-template-columns: 1fr; }
  .hero-buttons     { flex-direction: column; align-items: flex-start; }
  .salon-the        { min-height: 480px; }
  .salon-features   { gap: 8px; }
  .pourquoi-grid    { grid-template-columns: 1fr 1fr; }
  .modal-box        { padding: 32px 24px; }
  .salon-inner      { padding-left: 24px; padding-right: 24px; }
}

@media (max-width: 480px) {
  .produits-grid  { grid-template-columns: 1fr; }
  .avis-grid      { grid-template-columns: 1fr; }
  .pourquoi-grid  { grid-template-columns: 1fr; }
  .salon-tag      { font-size: .75rem; padding: 6px 12px; }
  .footer-bottom  { flex-direction: column; gap: 8px; }
}
