/* ============================================================
   MAQUETTE 2 — Caractère & Terrain — CSS complet
   Source : rework/maquette-2/index-photo.html
   ============================================================ */

:root {
  --terra:      #c0622a;
  --terra-light:#f5e8de;
  --terra-dark: #8a3d15;
  --brown:      #3d2b1f;
  --brown-mid:  #6b4c38;
  --ivory:      #fdf6ec;
  --ivory-dark: #f5ead8;
  --sand:       #e8d9c4;
  --slate:      #2e3a40;
  --white:      #ffffff;
  --text:       #2a1f18;
  --text-soft:  #6b5540;
  --border:     #ddd0bc;
  --radius:     8px;
  --radius-lg:  20px;
  --shadow:     0 4px 20px rgba(60,30,10,.1);
  --shadow-lg:  0 16px 60px rgba(60,30,10,.18);
}

html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px; line-height: 1.7;
  color: var(--text); background: var(--ivory);
  overflow-x: hidden;
}

.inner      { max-width: 860px;  margin: 0 auto; padding: 0 24px; }
.inner-wide { max-width: 1100px; margin: 0 auto; padding: 0 24px; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--brown); padding: 16px 0;
}
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 20px; font-weight: 700; color: var(--ivory);
  text-decoration: none; letter-spacing: -.01em;
}
.nav-logo em { font-style: italic; color: var(--terra-light); }
.nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
.nav-links a {
  text-decoration: none; color: rgba(255,255,255,.65);
  font-size: 14px; font-weight: 400; transition: color .2s;
}
.nav-links a:hover { color: #fff; }
.nav-cta {
  background: var(--terra) !important; color: #fff !important;
  padding: 9px 22px; border-radius: 4px; font-weight: 600 !important;
}
.nav-cta:hover { background: var(--terra-dark) !important; }
.nav-cta-mobile { display: none; }

/* ── HERO ── */
.hero {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 92vh; overflow: hidden;
}
.hero-text-col {
  background: var(--brown);
  position: relative; z-index: 1;
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px;
  background-image: radial-gradient(ellipse at 30% 70%, rgba(192,98,42,.18) 0%, transparent 55%);
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 12px; margin-bottom: 28px;
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--terra); }
.hero-eyebrow span {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--terra-light); opacity: .8;
}
.hero h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.05; color: var(--ivory); margin-bottom: 20px; font-weight: 700;
}
.hero h1 em { font-style: italic; color: var(--terra-light); font-weight: 300; }
.hero-desc { color: rgba(253,246,236,.7); font-size: 16px; margin-bottom: 6px; font-weight: 300; }
.hero-name { color: rgba(253,246,236,.5); font-size: 14px; margin-bottom: 32px; font-weight: 300; }
.hero-name strong { color: rgba(253,246,236,.85); font-weight: 600; }
.hero-geo {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); font-size: 13px; font-weight: 500;
  padding: 6px 14px; border-radius: 50px; margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-terra {
  background: var(--terra); color: #fff;
  padding: 15px 30px; border-radius: 4px;
  text-decoration: none; font-weight: 600; font-size: 15px;
  transition: background .2s, transform .15s; display: inline-block;
}
.btn-terra:hover { background: var(--terra-dark); transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.3);
  padding: 14px 28px; border-radius: 4px;
  text-decoration: none; font-weight: 500; font-size: 15px;
  transition: all .2s; display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,255,255,.7); color: #fff; }

.hero-photo-col {
  position: relative; overflow: hidden;
}
.hero-photo-col img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top; display: block;
}
.hero-photo-col::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(61,43,31,.6) 0%, transparent 35%);
  pointer-events: none;
}
.hero-text-inner {
  background: transparent; border: none; padding: 0;
}
.hero-spacer { display: none; }

/* ── MISSION STRIP ── */
.mission-strip { background: var(--terra); padding: 24px 0; }
.mission-items { display: flex; gap: 0; flex-wrap: wrap; }
.mission-item {
  flex: 1; min-width: 160px;
  display: flex; align-items: center; gap: 14px; padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.2);
}
.mission-item:last-child { border-right: none; }
.mission-number {
  font-family: 'Fraunces', serif;
  font-size: 32px; font-weight: 700; color: rgba(255,255,255,.3); line-height: 1;
}
/* SVG inline dans le bandeau de confiance (v2 — remplace .mission-number) */
.mission-item > svg {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  color: rgba(255,255,255,.85);
}
.mission-text { color: #fff; font-size: 14px; font-weight: 500; }

/* ── SERVICES ── */
.services { padding: 96px 0; background: var(--ivory); }
.section-label { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.section-label-line { width: 28px; height: 2px; background: var(--terra); }
.section-label span {
  font-size: 11px; font-weight: 600; letter-spacing: .15em;
  text-transform: uppercase; color: var(--terra);
}
.section-h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(30px, 4vw, 48px); line-height: 1.1; color: var(--brown); margin-bottom: 16px;
}
.section-h2 em { font-style: italic; color: var(--terra); font-weight: 300; }
.section-lead { font-size: 16px; color: var(--text-soft); max-width: 520px; margin-bottom: 56px; }
.services-layout {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  grid-template-rows: auto auto;
  gap: 0 16px;
  align-items: center;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px 28px; border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
}
.service-item:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-num {
  font-family: 'Fraunces', serif; font-size: 13px; letter-spacing: .1em;
  color: var(--terra); opacity: .7; margin-bottom: 18px; font-weight: 400;
}
.service-item h3 {
  font-family: 'Fraunces', serif; font-size: 20px; color: var(--brown); margin-bottom: 10px;
}
.service-item p { font-size: 14px; color: var(--text-soft); line-height: 1.7; }

/* ── APPROCHE ── */
.approach { background: var(--brown); padding: 0; overflow: hidden; }
.approach-grid { display: grid; grid-template-columns: 1fr 1fr; }
.approach-image { position: relative; }
.approach-image img { width: 100%; height: 100%; min-height: 500px; object-fit: cover; display: block; }
.approach-image-caption {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(61,43,31,.85); color: rgba(253,246,236,.7);
  font-size: 12px; padding: 8px 14px; border-radius: 4px;
}
.approach-content {
  padding: 72px 60px; display: flex; flex-direction: column; justify-content: center;
}
.approach-content h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(26px, 3.5vw, 42px); color: var(--ivory); margin-bottom: 24px; line-height: 1.15;
}
.approach-content h2 em { font-style: italic; color: var(--terra-light); font-weight: 300; }
.approach-content p { color: rgba(253,246,236,.7); font-size: 15px; margin-bottom: 16px; line-height: 1.8; }
.approach-content strong { color: rgba(253,246,236,.95); }
.skills-list { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 28px; }
.skill-tag {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.75); font-size: 12px; font-weight: 500;
  padding: 5px 13px; border-radius: 50px;
}
.philosophy {
  background: rgba(192,98,42,.2); border-left: 3px solid var(--terra);
  padding: 18px 22px; border-radius: 0 var(--radius) var(--radius) 0;
  font-style: italic; font-size: 15px; color: rgba(253,246,236,.85); line-height: 1.75;
}

/* ── TARIFS ── */
.pricing { background: var(--ivory-dark); padding: 96px 0; }
.pricing-table {
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  overflow: hidden; margin-top: 48px; background: var(--white);
}
.pricing-row {
  display: grid; grid-template-columns: 1fr auto;
  padding: 24px 36px; border-bottom: 1px solid var(--border);
  align-items: center; gap: 24px; transition: background .15s;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row:hover { background: var(--ivory); }
.pricing-row.featured { background: var(--brown); border-bottom: none; }
.pricing-row.featured:hover { background: var(--brown-mid); }
.pr-name { font-family: 'Fraunces', serif; font-size: 20px; color: var(--brown); margin-bottom: 4px; }
.pricing-row.featured .pr-name { color: var(--ivory); }
.pr-desc { font-size: 13px; color: var(--text-soft); }
.pricing-row.featured .pr-desc { color: rgba(253,246,236,.6); }
.pr-badge {
  background: var(--terra); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; padding: 3px 10px; border-radius: 50px;
  line-height: 14px;
  display: block;
  width: 90px;
  height: 19px;
}
.pr-price { text-align: right; flex-shrink: 0; }
.pr-amount {
  font-family: 'Fraunces', serif; font-size: 36px; font-weight: 700;
  color: var(--brown); line-height: 1;
}
.pricing-row.featured .pr-amount { color: var(--ivory); }
.pr-unit { font-size: 12px; color: var(--text-soft); margin-top: 2px; }
.pricing-row.featured .pr-unit { color: rgba(253,246,236,.5); }
.pricing-footer { text-align: center; margin-top: 20px; font-size: 14px; color: var(--text-soft); }
.tarifs-content { margin-top: 32px; }

/* ── TÉMOIGNAGES ── */
.testimonials { background: var(--ivory); padding: 96px 0; }
.testimonials-scroll {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px; margin-top: 52px;
}

/* Card : image pleine hauteur, ratio portrait */
.testi-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border-radius: 10px;
  background: var(--brown); /* fallback si image manquante */
  -webkit-box-shadow: 0px 9px 21px 5px rgb(from var(--brown) r g b / 50%); 
  box-shadow: 0px 9px 21px 5px rgb(from var(--brown) r g b / 50%);
}

/* Image de fond */
.testi-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: center top;
  display: block;
}

/* Placeholder patte si pas de photo */
.testi-img-placeholder {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(160deg, var(--brown-mid) 0%, var(--brown) 100%);
  color: rgba(253,246,236,.2);
}
.testi-img-placeholder svg { width: 64px; height: 64px; }

/* Overlay blur — calqué sur .hero-text-inner mobile */
.testi-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 54%;
  padding: 16px 20px 20px;
  background: rgba(20, 10, 5, 0.62);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,.12);
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: flex-end;
}

/* Citation */
.testi-text {
  font-size: 13px; line-height: 1.65;
  color: rgba(253,246,236,.88);
  margin-bottom: auto;
  /* clamp la hauteur si la citation déborde malgré la troncature PHP */
  /*display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical;*/
  overflow: hidden;
}
.testi-voir-plus {
  display: inline;
  margin-left: 4px;
  font-size: 12px; font-weight: 600;
  color: var(--terra-light);
  text-decoration: none;
  border-bottom: 1px solid rgba(245,232,222,.4);
  transition: border-color .15s, color .15s;
  white-space: nowrap;
}
.testi-voir-plus:hover { color: #fff; border-bottom-color: rgba(255,255,255,.7); }

/* Lien centré sous la grille */
.testi-all-reviews {
  margin-top: 40px; text-align: center;
}
.testi-all-reviews-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600;
  color: var(--terra-dark);
  text-decoration: none;
  border-bottom: 1.5px solid var(--terra-light);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.testi-all-reviews-link:hover { color: var(--terra); border-color: var(--terra); }

/* Séparateur */
.testi-sep {
  height: 1px;
  background: rgba(255,255,255,.15);
  border: none; margin: 0 0 10px;
}

/* Méta : étoiles + nom + date */
.testi-meta { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.testi-stars { color: #f59e0b; font-size: 11px; flex-shrink: 0; }
.testi-name  { font-weight: 600; font-size: 12px; color: rgba(253,246,236,.9); }
.testi-loc   { font-size: 11px; color: rgba(253,246,236,.5); }

/* ── INSTAGRAM ── */
.insta-section { background: var(--sand); padding: 60px 0; text-align: center; }
.insta-text {
  font-family: 'Fraunces', serif; font-size: 24px; color: var(--brown);
  margin-bottom: 8px; font-style: italic; font-weight: 300;
}
.insta-sub { font-size: 15px; color: var(--text-soft); margin-bottom: 24px; }
.instagram-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, #f9ce34, #ee2a7b, #6228d7);
  color: #fff; text-decoration: none; font-size: 15px; font-weight: 600;
  padding: 14px 28px; border-radius: 50px;
  transition: transform .15s, box-shadow .15s;
}
.instagram-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(238,42,123,.4); }

/* ── CTA ── */
.cta-section {
  background: var(--terra); padding: 80px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -60px; left: 50%; transform: translateX(-50%);
  width: 400px; height: 400px; background: rgba(255,255,255,.05); border-radius: 50%;
  pointer-events: none;
}
.cta-section h2 {
  font-family: 'Fraunces', serif; font-size: clamp(28px, 4.5vw, 50px);
  color: #fff; margin-bottom: 16px; line-height: 1.1;
}
.cta-section h2 em { font-style: italic; font-weight: 300; }
.cta-section p { color: rgba(255,255,255,.8); font-size: 16px; margin-bottom: 36px; }
.btn-ivory {
  background: var(--ivory); color: var(--terra-dark);
  padding: 16px 36px; border-radius: 4px;
  text-decoration: none; font-weight: 700; font-size: 16px;
  transition: transform .15s, box-shadow .15s; display: inline-block;
}
.btn-ivory:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,.2); }
.cta-details { margin-top: 24px; color: rgba(255,255,255,.65); font-size: 14px; }
.cta-details a { color: rgba(255,255,255,.9); text-decoration: none; }

/* ── FOOTER PARTAGÉ — .cd-footer ── */
.cd-footer { background: var(--brown); color: #fff; padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand h3 {
  font-family: 'Fraunces', serif; font-size: 22px; margin-bottom: 12px;
  color: var(--ivory); font-weight: 700;
}
.footer-brand h3 em { font-style: italic; font-weight: 300; color: var(--terra-light); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,.45); line-height: 1.75; margin-bottom: 16px; }
.footer-instagram {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .2s;
}
.footer-instagram:hover { color: var(--terra-light); }
.cd-footer h4 {
  font-size: 11px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 16px;
}
.cd-footer ul { list-style: none; padding: 0; margin: 0; }
.cd-footer ul li { margin-bottom: 10px; font-size: 14px; color: rgba(255,255,255,.55); }
.cd-footer ul a { color: rgba(255,255,255,.55); text-decoration: none; transition: color .2s; }
.cd-footer ul a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding-top: 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: rgba(255,255,255,.25); flex-wrap: wrap; gap: 8px;
}

/* ── SERVICES — icône SVG (v2) ── */
.service-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--terra-light); color: var(--terra);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  grid-column: 1; grid-row: 1;
  margin: 0;
}
.service-icon svg { width: 28px; height: 28px; display: block; }
.service-item h3 {
  grid-column: 2; grid-row: 1;
  margin-bottom: 0;
  align-self: center;
}
.service-item p {
  grid-column: 1 / -1; grid-row: 2;
  margin-top: 14px;
}

/* ── BLOG ── */
.blog-section { background: var(--ivory-dark); padding: 96px 0; }
.blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 52px;
}
.blog-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 10px 32px rgba(61,43,31,.1); }
.blog-card-img { display: block; overflow: hidden; aspect-ratio: 16/9; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 24px 28px; display: flex; flex-direction: column; flex: 1; }
.blog-card-meta { font-size: 11px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--terra); margin-bottom: 10px; }
.blog-card-title { font-family: 'Fraunces', serif; font-size: 19px; color: var(--brown); margin-bottom: 10px; line-height: 1.3; }
.blog-card-title a { color: inherit; text-decoration: none; }
.blog-card-title a:hover { color: var(--terra); }
.blog-card-excerpt { font-size: 14px; color: var(--text-soft); line-height: 1.7; flex: 1; margin-bottom: 18px; }
.blog-card-link { font-size: 13px; font-weight: 600; color: var(--terra); text-decoration: none; }
.blog-card-link:hover { text-decoration: underline; }

/* ── CONTACT (avec CF7) ── */
.contact-section {
  background: var(--terra);
  background-image: radial-gradient(ellipse at 80% 20%, rgba(138,61,21,.45) 0%, transparent 60%);
  padding: 96px 0;
}
.contact-section .section-label-line { background: rgba(253,246,236,.5); }
.contact-section .section-label span { color: rgba(253,246,236,.75); letter-spacing: .15em; }
.contact-h2 { color: var(--ivory) !important; }
.contact-h2 em { color: rgba(253,246,236,.7) !important; font-weight: 300; }
.contact-grid {
  display: grid; grid-template-columns: 1fr 2fr;
  gap: 64px; margin-top: 48px; align-items: start;
}
.contact-intro p { font-size: 16px; color: rgba(253,246,236,.85); line-height: 1.8; margin-bottom: 28px; }
.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-details a {
  display: flex; align-items: center; gap: 10px;
  color: var(--ivory); text-decoration: none; font-size: 15px;
  font-weight: 500; transition: opacity .2s;
}
.contact-details a:hover { opacity: .75; }
.contact-details svg { flex-shrink: 0; color: rgba(253,246,236,.6); }
/* Formulaire sur fond terra — champs ivoire/blanc */
.contact-form .wpcf7-form { display: flex; flex-direction: column; gap: 14px; }
.contact-form .wpcf7-form p { margin: 0; }
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  width: 100%; padding: 12px 16px; border-radius: var(--radius);
  background: rgba(253,246,236,.15); border: 1.5px solid rgba(253,246,236,.3);
  color: var(--ivory); font-family: 'Poppins', sans-serif; font-size: 14px;
  box-sizing: border-box; transition: border-color .2s, background .2s;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(253,246,236,.45); }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none; border-color: var(--ivory);
  background: rgba(253,246,236,.22);
}
.contact-form select option { background: var(--terra-dark); color: var(--ivory); }
.contact-form textarea { min-height: 130px; resize: vertical; }
/* CTA ivoire sur terra — inversion pour se détacher du fond */
.contact-form input[type="submit"],
.contact-form .wpcf7-submit {
  background: var(--ivory); color: var(--terra-dark); border: none; cursor: pointer;
  padding: 14px 32px; border-radius: var(--radius); font-size: 15px;
  font-weight: 700; font-family: 'Poppins', sans-serif;
  transition: background .2s, transform .15s, box-shadow .15s;
  align-self: flex-start;
}
.contact-form input[type="submit"]:hover,
.contact-form .wpcf7-submit:hover {
  background: #fff; transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(61,43,31,.25);
}

/* ── CONTACT — feedback CF7 ── */
@keyframes cd-feedback-in {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.contact-form .wpcf7-response-output {
  margin: 4px 0 0 !important;
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 13px; font-weight: 500; line-height: 1.55;
  border: none !important;
  animation: cd-feedback-in .25s ease both;
}

/* Succès — la classe est sur le <form>, pas sur le message */
.contact-form .wpcf7-form.sent .wpcf7-response-output {
  background: rgba(253,246,236,.18);
  border-left: 3px solid rgba(253,246,236,.7);
  color: var(--ivory);
}

/* Erreur validation / envoi / spam */
.contact-form .wpcf7-form.failed       .wpcf7-response-output,
.contact-form .wpcf7-form.invalid      .wpcf7-response-output,
.contact-form .wpcf7-form.spam         .wpcf7-response-output,
.contact-form .wpcf7-form.unacceptable .wpcf7-response-output {
  background: rgba(80,20,10,.25);
  border-left: 3px solid rgba(253,200,160,.7);
  color: rgba(253,220,200,.95);
}

/* Tip de validation champ invalide — écrase le rouge CF7 */
.contact-form .wpcf7-not-valid-tip {
  color: rgba(253,220,200,.95);
  font-size: 12px;
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta-mobile {
    display: inline-block;
    background: var(--terra); color: #fff;
    padding: 9px 18px; border-radius: 4px;
    font-size: 13px; font-weight: 600; text-decoration: none;
  }

  .hero {
    display: block;
    position: relative;
    min-height: 100svh;
    overflow: hidden;
  }
  .hero-photo-col {
    position: absolute; inset: 0; z-index: 0;
  }
  .hero-photo-col img {
    width: 100%;
    height: 80svh;
    object-fit: cover;
    object-position: 73% 16%;
    margin-top: -54px;
  }
  .hero-photo-col::before {
    background: linear-gradient(
      to bottom,
      rgba(30, 15, 8, 0.25) 0%,
      rgba(30, 15, 8, 0.6)  45%,
      rgba(30, 15, 8, 0.88) 100%
    );
  }
  .hero-text-col {
    position: relative; z-index: 1;
    background: transparent;
    background-image: none;
    padding: 0 20px 52px;
    margin-top: auto;
    display: flex; flex-direction: column; justify-content: flex-end;
    min-height: 100svh;
  }
  .hero-text-inner {
    background: rgba(20, 10, 5, 0.55);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-lg);
    padding: 28px 24px 32px;
  }
  .hero h1 { font-size: clamp(30px, 8vw, 48px); }
  .hero-actions { flex-direction: column; }
  .btn-terra, .btn-ghost { text-align: center; }

  .hero-spacer { height: 29svh; display: block; }

  .mission-strip { padding: 20px 0; }
  .mission-items { flex-direction: column; gap: 0; }
  .mission-item {
    border-right: none; border-bottom: 1px solid rgba(255,255,255,.15);
    padding: 14px 20px;
  }
  .mission-item:last-child { border-bottom: none; }
  .mission-number { font-size: 22px; }

  .services { padding: 64px 0; }
  .services-layout { grid-template-columns: 1fr; }

  /* layout mobile : padding réduit, même grille icône/titre qu'en desktop */
  .service-item { padding: 24px 20px; }
  .service-item p { margin-top: 12px; }

  .approach-grid { grid-template-columns: 1fr; }
  .approach-image img { min-height: 280px; max-height: 320px; }
  .approach-content { padding: 40px 20px; }

  .pricing { padding: 64px 0; }
  .pricing-table { border-radius: var(--radius); }
  .pricing-row { padding: 20px; gap: 16px; }
  .pr-name { font-size: 17px; }
  .pr-amount { font-size: 30px; }

  .testimonials { padding: 64px 0; }
  .testimonials-scroll { grid-template-columns: 1fr; gap: 16px; }
  .testi-overlay { max-height: 54%; padding: 14px 16px 18px; }
  .testi-all-reviews { margin-top: 32px; }
  .testi-all-reviews-link { display: block; text-align: center; }

  .blog-section { padding: 64px 0; }
  .blog-grid { grid-template-columns: 1fr; gap: 20px; }

  .contact-section { padding: 64px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }

  .insta-section { padding: 44px 20px; }
  .cta-section { padding: 60px 20px; }
  .cta-section h2 { font-size: clamp(26px, 8vw, 42px); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 28px; }
  .hero-eyebrow span { font-size: 10px; }
  .hero-text-inner { padding: 22px 18px 26px; border-radius: var(--radius); }
  .hero-text-col { padding: 0 16px 40px; }
  .section-h2 { font-size: 28px; }
  .pricing-row { flex-wrap: wrap; }
  .pr-price { width: 100%; text-align: left; }
  .pr-amount { font-size: 28px; }
  /*.pr-badge { display: block; margin: 4px 0 0; }*/
  .approach-content { padding: 32px 16px; }
  .blog-card-body { padding: 18px 20px; }
  .inner, .inner-wide { padding: 0 16px; }
}
