/* =============================================
   MASSAGE DRAGUIGNAN - Style principal
   Design : beige / blanc / doré / zen
   ============================================= */

:root {
  --c-gold: #c4954a;
  --c-gold-light: #d4a85a;
  --c-dark: #2a1f17;
  --c-text: #4a3728;
  --c-muted: #8a7060;
  --c-bg: #faf7f2;
  --c-beige: #f5ede0;
  --c-beige2: #ede0d0;
  --c-white: #fff;
  --c-border: #e8ddd0;
  --radius: 12px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Segoe UI', Georgia, serif;
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--c-dark);
  color: rgba(255,255,255,0.75);
  text-align: center;
  font-size: 0.82rem;
  padding: 9px 16px;
  letter-spacing: 0.04em;
}
.topbar a { color: var(--c-gold-light); font-weight: 600; }

/* ---- NAVBAR ---- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,247,242,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--c-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
}
.navbar-logo { display: flex; align-items: center; }
.navbar-logo img { height: 44px; width: auto; display: block; }
.navbar-links { display: flex; gap: 28px; }
.navbar-links a { font-size: 0.88rem; font-weight: 600; color: var(--c-muted); letter-spacing: 0.04em; text-transform: uppercase; transition: color .2s; }
.navbar-links a:hover, .navbar-links a.active { color: var(--c-gold); }
.navbar-cta {
  background: var(--c-gold);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 9px 20px;
  border-radius: 50px;
  transition: opacity .2s;
  white-space: nowrap;
}
.navbar-cta:hover { opacity: .88; }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--c-dark); border-radius: 2px; }
.mobile-menu { display: none; flex-direction: column; background: var(--c-white); border-bottom: 1px solid var(--c-border); padding: 12px 5%; }
.mobile-menu a { padding: 11px 0; font-size: 1rem; font-weight: 600; color: var(--c-dark); border-bottom: 1px solid var(--c-border); letter-spacing: 0.03em; }
.mobile-menu.open { display: flex; position: fixed; top: 70px; left: 0; right: 0; z-index: 99; box-shadow: 0 4px 16px rgba(0,0,0,0.08); }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('image/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.52);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 60px 5%;
  max-width: 860px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  background: rgba(196,149,74,0.18);
  border: 1px solid var(--c-gold);
  color: var(--c-gold-light);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 6px 18px;
  border-radius: 50px;
  margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 18px;
  font-style: italic;
}
.hero h1 em { color: var(--c-gold-light); font-style: italic; }
.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.85);
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.btn-gold {
  background: var(--c-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.97rem;
  padding: 14px 28px;
  border-radius: 50px;
  transition: opacity .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gold:hover { opacity: .88; }
.btn-ghost {
  background: transparent;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,0.55);
  transition: border-color .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-ghost:hover { border-color: #fff; }
.btn-outline-gold {
  background: transparent;
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: 50px;
  border: 2px solid var(--c-gold);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-outline-gold:hover { background: var(--c-gold); color: #fff; }

/* ---- SECTIONS ---- */
.section { padding: 72px 5%; }
.section-white { background: var(--c-white); }
.section-beige { background: var(--c-beige); }
.section-dark { background: var(--c-dark); color: #fff; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--c-dark);
  line-height: 1.25;
  margin-bottom: 14px;
  font-style: italic;
}
.section-dark .section-title { color: #fff; }
.section-sub {
  font-size: 1rem;
  color: var(--c-muted);
  max-width: 620px;
  margin: 0 auto 40px;
}
.divider {
  width: 50px;
  height: 2px;
  background: var(--c-gold);
  margin: 14px 0 28px;
}
.divider-center { margin: 14px auto 28px; }

/* ---- CARDS ---- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 24px; }
.card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 32px rgba(42,31,23,.1); transform: translateY(-4px); }
.section-beige .card { background: var(--c-white); }
.card-icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { font-size: 1.05rem; font-weight: 700; color: var(--c-dark); margin-bottom: 8px; }
.card p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.65; }

/* ---- SERVICE CARDS ---- */
.service-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(310px, 1fr)); gap: 28px; }
.service-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--c-border);
  transition: box-shadow .25s, transform .25s;
}
.service-card:hover { box-shadow: 0 8px 36px rgba(42,31,23,.12); transform: translateY(-4px); }
.service-card img { width: 100%; height: 220px; object-fit: cover; }
.service-body { padding: 22px 22px 26px; }
.service-body h3 { font-size: 1.12rem; font-weight: 700; color: var(--c-dark); margin-bottom: 6px; font-style: italic; }
.service-body p { font-size: 0.88rem; color: var(--c-muted); margin-bottom: 14px; line-height: 1.6; }
.service-price { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.price-tag {
  background: var(--c-beige);
  border: 1px solid var(--c-border);
  color: var(--c-gold);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 4px 12px;
  border-radius: 20px;
}
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag {
  background: rgba(196,149,74,0.1);
  color: var(--c-gold);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.04em;
}

/* ---- AVANTAGES ---- */
.avantage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.avantage-item { text-align: center; padding: 28px 20px; }
.avantage-icon { font-size: 2.2rem; margin-bottom: 14px; }
.avantage-item h3 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 7px; }
.avantage-item p { font-size: 0.88rem; color: var(--c-muted); }

/* ---- CHECK LIST ---- */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.check-list li { font-size: 0.95rem; color: var(--c-text); padding-left: 26px; position: relative; }
.check-list li::before { content: "✦"; position: absolute; left: 0; color: var(--c-gold); font-size: 0.75rem; top: 4px; }

/* ---- DEUX COLONNES ---- */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.two-col-text { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

/* ---- BON CADEAU ---- */
.gift-block {
  background: linear-gradient(135deg, #2a1f17 0%, #4a3020 100%);
  border-radius: 16px;
  padding: 48px 40px;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.gift-block::before {
  content: "🎁";
  position: absolute;
  font-size: 8rem;
  opacity: 0.06;
  right: -10px;
  bottom: -20px;
}
.gift-block .section-label { color: var(--c-gold-light); }
.gift-block h2 { font-size: 1.8rem; font-weight: 700; margin-bottom: 12px; font-style: italic; color: #fff; }
.gift-block p { color: rgba(255,255,255,0.75); max-width: 480px; margin: 0 auto 28px; }

/* ---- CAROUSEL AVIS ---- */
.carousel-outer { overflow: hidden; padding: 8px 0; }
.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scroll-avis 44s linear infinite;
}
.carousel-track:hover { animation-play-state: paused; }
@keyframes scroll-avis { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.avis-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 24px 22px;
  width: 290px;
  flex-shrink: 0;
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(42,31,23,.06);
}
.avis-stars { color: var(--c-gold); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.avis-text { font-size: 0.9rem; color: var(--c-muted); line-height: 1.6; margin-bottom: 14px; font-style: italic; }
.avis-author { font-size: 0.82rem; font-weight: 700; color: var(--c-dark); }
.avis-ville { font-size: 0.78rem; color: var(--c-gold); }

/* ---- FAQ ---- */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 800px; }
.faq-item { border: 1px solid var(--c-border); border-radius: var(--radius); overflow: hidden; background: var(--c-white); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.faq-question::after { content: "+"; font-size: 1.4rem; font-weight: 300; color: var(--c-gold); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-answer { max-height: 300px; padding: 0 22px 18px; }
.faq-answer p { font-size: 0.93rem; color: var(--c-muted); line-height: 1.7; }

/* ---- CTA SECTION ---- */
.cta-section {
  background: linear-gradient(135deg, var(--c-dark) 0%, #3a2a1a 100%);
  color: #fff;
  padding: 72px 5%;
  text-align: center;
}
.cta-section h2 { font-size: clamp(1.7rem, 2.8vw, 2.2rem); font-weight: 700; margin-bottom: 14px; font-style: italic; }
.cta-section p { font-size: 1rem; color: rgba(255,255,255,0.75); max-width: 520px; margin: 0 auto 32px; }

/* ---- TÉMOIGNAGES PAGE ---- */
.temoignage-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.temoignage-card {
  background: var(--c-white);
  border-radius: var(--radius);
  padding: 28px 24px;
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-gold);
}
.temoignage-card .stars { color: var(--c-gold); margin-bottom: 12px; letter-spacing: 2px; }
.temoignage-card .quote { font-size: 0.95rem; color: var(--c-muted); line-height: 1.7; margin-bottom: 16px; font-style: italic; }
.temoignage-card .auteur { font-weight: 700; color: var(--c-dark); font-size: 0.88rem; }
.temoignage-card .ville { font-size: 0.8rem; color: var(--c-gold); }

/* ---- CONTACT PAGE ---- */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--c-dark); letter-spacing: 0.04em; text-transform: uppercase; }
.form-group input, .form-group select, .form-group textarea {
  background: var(--c-white);
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 0.95rem;
  color: var(--c-text);
  font-family: inherit;
  transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--c-gold); }
.form-group textarea { min-height: 120px; resize: vertical; }
.contact-btns { display: flex; flex-direction: column; gap: 12px; }
.btn-phone {
  background: var(--c-gold);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 50px;
  text-align: center;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-phone:hover { opacity: .88; }
.btn-whatsapp {
  background: #25d366;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 24px;
  border-radius: 50px;
  text-align: center;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.btn-whatsapp:hover { opacity: .88; }
.contact-info-box {
  background: var(--c-beige);
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--c-border);
}
.contact-info-box h3 { font-size: 1.05rem; font-weight: 700; color: var(--c-dark); margin-bottom: 16px; }

/* ---- FLOAT CTA ---- */
.float-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--c-gold);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 13px 22px;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(196,149,74,.5);
  z-index: 999;
  transition: opacity .2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.float-cta:hover { opacity: .9; }

/* ---- FOOTER ---- */
.footer { background: var(--c-dark); color: rgba(255,255,255,0.65); padding: 52px 5% 0; }
.footer-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-logo { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 12px; font-style: italic; }
.footer-logo span { color: var(--c-gold); }
.footer-desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 16px; }
.footer-badge { display: inline-block; background: var(--c-gold); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 12px; border-radius: 20px; letter-spacing: 0.06em; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; color: #fff; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.08em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 0.87rem; color: rgba(255,255,255,0.55); transition: color .2s; }
.footer-col ul li a:hover { color: var(--c-gold); }
.footer-bottom { max-width: 1100px; margin: 0 auto; padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.08); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: 0.78rem; }

/* ---- REVEAL ANIMATION ---- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ---- HERO BACKGROUND (pseudo-element approach) ---- */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('image/hero.png');
  background-size: cover;
  background-position: center;
  filter: brightness(0.52);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 5%;
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
}
.hero-small { min-height: 52vh; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 22px;
  margin-bottom: 28px;
}
.hero-trust span { font-size: 0.87rem; color: rgba(255,255,255,0.88); font-weight: 600; }
.hero h1 span { color: var(--c-gold-light); font-style: italic; }

/* ---- SECTION LIGHT (alias for section-white) ---- */
.section-light { background: var(--c-white); }

/* ---- FAQ aliases (faq-q / faq-a) ---- */
.faq-q {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 18px 22px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-family: inherit;
}
.faq-q::after { content: "+"; font-size: 1.4rem; font-weight: 300; color: var(--c-gold); flex-shrink: 0; transition: transform .2s; }
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 18px; }
.faq-a p { font-size: 0.93rem; color: var(--c-muted); line-height: 1.7; }

/* ---- AVANTAGES GRID (card version) ---- */
.avantages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-bottom: 40px; }
.avantage-card {
  background: var(--c-beige);
  border-radius: var(--radius);
  padding: 28px 22px;
  border: 1px solid var(--c-border);
  text-align: center;
}
.avantage-card .avantage-icon { font-size: 2rem; margin-bottom: 12px; }
.avantage-card h3 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 8px; }
.avantage-card p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.65; }

/* ---- SERVICES GRID (index page) ---- */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card { display: block; text-decoration: none; color: inherit; }
.service-card-img { overflow: hidden; border-radius: var(--radius) var(--radius) 0 0; }
.service-card-img img { width: 100%; height: 220px; object-fit: cover; transition: transform .4s; }
.service-card:hover .service-card-img img { transform: scale(1.04); }
.service-card-body { padding: 20px 22px 24px; }
.service-card-body h3 { font-size: 1.05rem; font-weight: 700; color: var(--c-dark); margin-bottom: 6px; font-style: italic; }
.service-card-body p { font-size: 0.88rem; color: var(--c-muted); margin-bottom: 12px; line-height: 1.6; }
.service-card-body .service-tags { margin-bottom: 10px; }
.service-card-body .service-price { font-size: 0.9rem; color: var(--c-muted); }
.service-card-body .service-price strong { color: var(--c-gold); font-size: 1.05rem; }
.service-card-full { grid-column: 1 / -1; max-width: 480px; }

/* ---- SERVICE DETAIL (services page) ---- */
.service-detail { padding: 64px 5%; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; max-width: 1100px; margin: 0 auto; }
.service-detail-reverse { }
.service-detail-reverse .service-detail-img { order: 2; }
.service-detail-reverse .service-detail-content { order: 1; }
.service-detail-img img { width: 100%; height: 380px; object-fit: cover; border-radius: var(--radius); }
.service-detail-content h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; color: var(--c-dark); margin-bottom: 14px; font-style: italic; }
.service-detail-content p { color: var(--c-muted); line-height: 1.75; font-size: 0.97rem; }
.service-benefits { margin: 20px 0; padding: 20px; background: var(--c-beige); border-radius: var(--radius); border-left: 3px solid var(--c-gold); }
.service-benefits h4 { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-gold); margin-bottom: 12px; }
.tarif-block { display: flex; gap: 12px; flex-wrap: wrap; margin: 20px 0 24px; }
.tarif-item { background: var(--c-beige); border: 1px solid var(--c-border); border-radius: 10px; padding: 12px 18px; text-align: center; min-width: 90px; }
.tarif-item span { display: block; font-size: 0.78rem; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 4px; }
.tarif-item strong { display: block; font-size: 1.2rem; color: var(--c-dark); font-weight: 800; }
.tarif-highlight { background: var(--c-gold); border-color: var(--c-gold); }
.tarif-highlight span { color: rgba(255,255,255,0.8); }
.tarif-highlight strong { color: #fff; }

/* ---- TÉMOIGNAGES PAGE ---- */
.temoignages-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.temoignage-card { background: var(--c-white); border-radius: var(--radius); padding: 28px 24px; border: 1px solid var(--c-border); border-left: 4px solid var(--c-gold); display: flex; flex-direction: column; gap: 12px; }
.temoignage-large { grid-column: span 2; }
.temoignage-stars { color: var(--c-gold); font-size: 0.95rem; letter-spacing: 2px; }
.temoignage-text { font-size: 0.95rem; color: var(--c-muted); line-height: 1.75; font-style: italic; flex: 1; }
.temoignage-author { display: flex; align-items: center; gap: 12px; }
.temoignage-initials { width: 40px; height: 40px; background: var(--c-gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; flex-shrink: 0; }
.temoignage-author strong { display: block; font-size: 0.9rem; color: var(--c-dark); }
.temoignage-author span { display: block; font-size: 0.78rem; color: var(--c-muted); }

/* ---- CONTACT PAGE ---- */
.contact-main { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: start; }
.contact-info h2 { margin-bottom: 28px; }
.contact-form-block h2 { margin-bottom: 28px; }
.contact-method { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--c-border); }
.contact-method:last-child { border-bottom: none; }
.contact-method-icon { font-size: 1.6rem; flex-shrink: 0; margin-top: 2px; }
.contact-method-content h3 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 6px; }
.contact-method-content p { font-size: 0.88rem; color: var(--c-muted); line-height: 1.65; }
.contact-phone-link { font-size: 1.5rem; font-weight: 800; color: var(--c-gold); display: block; margin-bottom: 6px; }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-check { flex-direction: row; align-items: flex-start; gap: 10px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--c-gold); }
.form-check label { font-size: 0.82rem; color: var(--c-muted); text-transform: none; font-weight: 400; letter-spacing: 0; line-height: 1.5; }
.btn-full { width: 100%; justify-content: center; border: none; cursor: pointer; }
.form-note { font-size: 0.78rem; color: var(--c-muted); text-align: center; }

/* ---- STATS INLINE ---- */
.stat-inline { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 28px; }
.stat-item { text-align: center; }
.stat-number { display: block; font-size: 2rem; font-weight: 800; color: var(--c-gold); line-height: 1; }
.stat-label { display: block; font-size: 0.78rem; color: var(--c-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 4px; }

/* ---- PORTRAIT BLOCK ---- */
.portrait-block { background: var(--c-beige); border-radius: var(--radius); overflow: hidden; }
.portrait-placeholder { background: linear-gradient(135deg, var(--c-beige) 0%, var(--c-beige2) 100%); min-height: 300px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--c-muted); }
.portrait-placeholder span { font-size: 3rem; opacity: 0.5; }
.portrait-caption { padding: 16px; text-align: center; font-size: 0.88rem; color: var(--c-muted); font-style: italic; border-top: 1px solid var(--c-border); }

/* ---- INFO BOXES ---- */
.info-box-beige { background: var(--c-beige); border-radius: var(--radius); padding: 22px 24px; border: 1px solid var(--c-border); }
.info-box-beige h3 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 10px; }
.info-box-beige p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; }
.info-box-gold { background: rgba(196,149,74,0.08); border-radius: var(--radius); padding: 22px 24px; border: 1px solid rgba(196,149,74,0.3); }
.info-box-gold h3 { font-size: 1rem; font-weight: 700; color: var(--c-gold); margin-bottom: 10px; }
.info-box-gold p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; }

/* ---- GIFT BLOCK (enhanced) ---- */
.gift-block { padding: 64px 5%; }
.gift-inner { max-width: 800px; margin: 0 auto; background: linear-gradient(135deg, #2a1f17 0%, #4a3020 100%); border-radius: 20px; padding: 52px 48px; text-align: center; color: #fff; position: relative; overflow: hidden; display: flex; align-items: center; gap: 24px; justify-content: center; }
.gift-content { flex: 1; }
.gift-content h2 { font-size: 1.9rem; font-weight: 700; margin-bottom: 12px; font-style: italic; color: #fff; }
.gift-content p { color: rgba(255,255,255,0.75); margin-bottom: 28px; line-height: 1.7; }
.gift-btns { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.gift-deco { font-size: 2.5rem; flex-shrink: 0; opacity: 0.6; }
.gift-deco-right { }

/* ---- ZONE TAGS ---- */
.zone-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.zone-tag { background: var(--c-beige); border: 1px solid var(--c-border); color: var(--c-gold); font-size: 0.8rem; font-weight: 600; padding: 5px 12px; border-radius: 20px; letter-spacing: 0.04em; }

/* ---- STEPS ---- */
.steps { display: flex; flex-direction: column; gap: 0; }
.step-item { padding: 24px 24px 24px 64px; border-left: 2px solid var(--c-border); position: relative; }
.step-item::before { content: counter(step); counter-increment: step; position: absolute; left: -16px; top: 22px; width: 32px; height: 32px; background: var(--c-gold); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; font-weight: 700; }
.steps { counter-reset: step; }
.step-item h4 { font-size: 1rem; font-weight: 700; color: var(--c-dark); margin-bottom: 6px; }
.step-item p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; }

/* ---- CTA BTNS ---- */
.cta-btns { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
.btn-lg { padding: 16px 32px; font-size: 1.05rem; }

/* ---- FOOTER INNER (alias) ---- */
.footer-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .footer-logo { margin-bottom: 14px; }
.footer-brand .footer-logo img { height: 48px; width: auto; display: block; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }

/* ---- ANIMATED ZONE VAR MAP ---- */
.zone-var-section {
  background: var(--c-dark);
  padding: 80px 5%;
}
.zone-var-section .section-inner { max-width: 1100px; margin: 0 auto; }
.zone-map-container {
  max-width: 720px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(196,149,74,0.2);
  border-radius: 16px;
  padding: 16px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.zone-map-svg {
  min-width: 500px;
  width: 100%;
  display: block;
  overflow: visible;
}
.map-line {
  fill: none;
  stroke: #c4954a;
  stroke-width: 1.5;
  stroke-dasharray: 100 100;
  stroke-dashoffset: 100;
  opacity: 0;
  animation: drawMapLine 0.9s ease-out forwards;
  animation-delay: var(--d, 0s);
  animation-play-state: paused;
}
.zone-map-svg.animate-active .map-line { animation-play-state: running; }
@keyframes drawMapLine {
  from { stroke-dashoffset: 100; opacity: 0; }
  15% { opacity: 0.55; }
  to { stroke-dashoffset: 0; opacity: 0.55; }
}
.map-center-ring {
  fill: none;
  stroke: #c4954a;
  stroke-width: 1.5;
  transform-box: fill-box;
  transform-origin: center;
  animation: mapRingPulse 3s ease-out infinite;
  animation-play-state: paused;
}
.map-center-ring:nth-child(2) { animation-delay: 1s; }
.map-center-ring:nth-child(3) { animation-delay: 2s; }
.zone-map-svg.animate-active .map-center-ring { animation-play-state: running; }
@keyframes mapRingPulse {
  0%  { transform: scale(1); opacity: 0.9; }
  100%{ transform: scale(4); opacity: 0; }
}
.map-city {
  opacity: 0;
  animation: mapFadeIn 0.5s ease-out forwards;
  animation-delay: var(--d, 0s);
  animation-play-state: paused;
}
.zone-map-svg.animate-active .map-city { animation-play-state: running; }
@keyframes mapFadeIn { to { opacity: 1; } }
.map-dot-ring {
  fill: none;
  stroke: #c4954a;
  stroke-width: 1;
  transform-box: fill-box;
  transform-origin: center;
  animation: mapDotPulse 2.5s ease-out infinite;
  animation-delay: var(--d, 0s);
  animation-play-state: paused;
}
.zone-map-svg.animate-active .map-dot-ring { animation-play-state: running; }
@keyframes mapDotPulse {
  0%  { transform: scale(1); opacity: 0.8; }
  100%{ transform: scale(4); opacity: 0; }
}
.map-city-text {
  fill: rgba(255,255,255,0.82);
  font-size: 12px;
  font-family: 'Segoe UI', Georgia, serif;
}
.map-center-text {
  fill: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Segoe UI', Georgia, serif;
  text-anchor: middle;
}
.zone-stats {
  display: flex;
  justify-content: center;
  gap: 56px;
  margin-top: 44px;
  flex-wrap: wrap;
}
.zone-stat { text-align: center; }
.zone-stat-num {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-gold);
  line-height: 1;
}
.zone-stat-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .two-col, .two-col-text, .contact-wrapper, .contact-main { grid-template-columns: 1fr; }
  .footer-grid, .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-reverse .service-detail-img { order: unset; }
  .service-detail-reverse .service-detail-content { order: unset; }
  .temoignage-large { grid-column: auto; }
}
@media (max-width: 640px) {
  .navbar-links, .navbar-cta { display: none; }
  .burger { display: flex; }
  .footer-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero { min-height: 100svh; }
  .hero-small { min-height: 60vh; }
  .section { padding: 52px 5%; }
  .gift-block { padding: 36px 22px; }
  .gift-inner { flex-direction: column; padding: 36px 24px; }
  .gift-deco { display: none; }
  .service-card-full { max-width: 100%; }
  .temoignage-large { grid-column: auto; }
  .stat-inline { gap: 20px; }
  .contact-method { flex-direction: column; }
}
