/* =================================================================
   MAKA SERVICES : feuille de style partagée
   Direction : clair & raffiné, ivoire / vert forêt / cuivre
   Typographie : Cormorant Garamond (titres) + Outfit (corps)
================================================================= */

/* ---------- 1. Variables ---------- */
:root {
  /* Couleurs */
  --ivory:        #F6F1E7;
  --ivory-deep:   #EFE8D9;
  --paper:        #FBF8F1;
  --forest:       #15211B;   /* near-black vert, fonds sombres + texte */
  --forest-2:     #1E2E25;
  --green:        #33503F;   /* vert primaire */
  --green-soft:   #46624F;
  --sage:         #8A9885;   /* vert atténué */
  --copper:       #B47A45;   /* accent cuivre */
  --copper-deep:  #9C6536;
  --copper-glow:  #CE9B66;
  --ink:          #1B2620;   /* texte sur clair */
  --ink-soft:     #4C594F;
  --line:         rgba(27, 38, 32, 0.12);
  --line-light:   rgba(246, 241, 231, 0.16);

  /* Typo */
  --display: "Cormorant Garamond", Georgia, serif;
  --sans:    "Outfit", system-ui, sans-serif;

  /* Espacement & rythme */
  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 14px;
  --radius-lg: 22px;

  /* Ombres architecturées */
  --shadow-sm: 0 1px 2px rgba(21,33,27,.06), 0 4px 14px rgba(21,33,27,.05);
  --shadow-md: 0 6px 18px rgba(21,33,27,.08), 0 18px 50px rgba(21,33,27,.09);
  --shadow-lg: 0 18px 44px rgba(21,33,27,.12), 0 40px 90px rgba(21,33,27,.14);

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }
::selection { background: var(--copper); color: var(--paper); }

/* ---------- 3. Typographie ---------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 600; line-height: 1.04; letter-spacing: -.01em; color: var(--ink); }
.display-1 { font-size: clamp(3rem, 8vw, 6.2rem); font-weight: 500; }
.display-2 { font-size: clamp(2.4rem, 5.2vw, 4.2rem); }
.display-3 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
p { text-wrap: pretty; }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.32rem); color: var(--ink-soft); font-weight: 300; line-height: 1.55; }

.eyebrow {
  font-family: var(--sans);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--copper-deep);
  display: inline-block;
}
.serif-accent { font-style: italic; color: var(--copper-deep); }

/* ---------- 4. Layout ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 11vw, 148px); position: relative; }
.section--tight { padding-block: clamp(56px, 8vw, 100px); }
.section-head { max-width: 660px; margin-bottom: clamp(40px, 5vw, 70px); }
.section-head .lead { margin-top: 1.1rem; }
.center { text-align: center; }
.center.section-head { margin-inline: auto; }

.bg-paper { background: var(--paper); }
.bg-ivory-deep { background: var(--ivory-deep); }
.bg-forest { background: var(--forest); color: var(--ivory); }
.bg-forest h1, .bg-forest h2, .bg-forest h3, .bg-forest h4 { color: var(--paper); }
.bg-forest .lead { color: rgba(246,241,231,.74); }

/* texture grain subtile */
.grain::after {
  content: "";
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
  opacity: .04;
  pointer-events: none;
  mix-blend-mode: multiply;
}
.bg-forest.grain::after { mix-blend-mode: screen; opacity: .05; }

/* ---------- 5. Boutons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  font-family: var(--sans); font-weight: 500; font-size: .98rem;
  letter-spacing: .01em;
  padding: 1em 1.9em;
  border-radius: 999px;
  transition: transform .4s var(--ease), background .35s var(--ease), color .35s var(--ease), box-shadow .4s var(--ease), border-color .35s var(--ease);
  position: relative; will-change: transform;
}
.btn svg { width: 1.1em; height: 1.1em; transition: transform .4s var(--ease); }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--copper); color: var(--paper); box-shadow: 0 8px 24px rgba(180,122,69,.32); }
.btn-primary:hover { background: var(--copper-deep); box-shadow: 0 14px 34px rgba(180,122,69,.42); }
.btn-primary:hover svg { transform: translateX(4px); }
.btn-dark { background: var(--forest); color: var(--ivory); }
.btn-dark:hover { background: var(--forest-2); }
.btn-outline { border: 1.5px solid currentColor; color: var(--ink); }
.bg-forest .btn-outline { color: var(--ivory); }
.btn-outline:hover { background: var(--ink); color: var(--paper); }
.bg-forest .btn-outline:hover { background: var(--ivory); color: var(--forest); }
.btn-ghost { color: var(--ink); padding-inline: .4em; }
.btn-ghost::after { content:""; position:absolute; left:.4em; right:.4em; bottom:.55em; height:1.5px; background: currentColor; transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.btn-ghost:hover::after { transform: scaleX(1); }

/* ---------- 6. Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .45s var(--ease), box-shadow .45s var(--ease), padding .45s var(--ease);
  padding-block: 22px;
}
.site-header.scrolled {
  background: rgba(251,248,241,.86);
  backdrop-filter: blur(14px) saturate(1.4);
  box-shadow: 0 1px 0 var(--line), 0 6px 24px rgba(21,33,27,.06);
  padding-block: 13px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }

.brand { display: inline-flex; align-items: center; gap: .5em; font-family: var(--display); line-height: 1; color: var(--ink); }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; transition: transform .6s var(--ease); }
.brand:hover .brand-mark { transform: rotate(8deg); }
.brand b { font-weight: 600; font-size: 1.7rem; letter-spacing: -.01em; color: var(--ink); }
.brand span { font-weight: 500; font-size: 1.7rem; color: var(--copper-deep); font-style: italic; }

.nav { display: flex; align-items: center; gap: clamp(1.4rem, 2.6vw, 2.6rem); }
.nav a { font-size: .96rem; font-weight: 400; position: relative; padding-block: .3em; color: var(--ink); transition: color .3s; }
.nav a::after { content:""; position:absolute; left:0; bottom:0; width:100%; height:1.5px; background: var(--copper); transform: scaleX(0); transform-origin:left; transition: transform .4s var(--ease); }
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a[aria-current="page"] { color: var(--copper-deep); }

.header-actions { display: flex; align-items: center; gap: 1.2rem; }

/* En tête sur hero sombre : éléments clairs tant que non scrollé */
.header-on-dark:not(.scrolled) .brand { color: var(--paper); }
.header-on-dark:not(.scrolled) .brand b { color: var(--paper); }
.header-on-dark:not(.scrolled) .nav a { color: rgba(246,241,231,.82); }
.header-on-dark:not(.scrolled) .nav a[aria-current="page"] { color: var(--copper-glow); }
.header-on-dark:not(.scrolled) .nav a::after { background: var(--copper-glow); }
.header-on-dark:not(.scrolled) .burger span { background: var(--paper); }

.burger { display: none; width: 30px; height: 22px; position: relative; }
.burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .4s var(--ease), opacity .3s; }
.burger span:nth-child(1){ top: 0; }
.burger span:nth-child(2){ top: 10px; }
.burger span:nth-child(3){ top: 20px; }
body.nav-open .burger span:nth-child(1){ transform: translateY(10px) rotate(45deg); }
body.nav-open .burger span:nth-child(2){ opacity: 0; }
body.nav-open .burger span:nth-child(3){ transform: translateY(-10px) rotate(-45deg); }

/* ---------- 7. Hero ---------- */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  background: radial-gradient(120% 120% at 80% 0%, var(--forest-2) 0%, var(--forest) 55%);
  color: var(--ivory);
  overflow: hidden;
  padding-top: 120px; padding-bottom: 80px;
}
.hero__glow {
  position: absolute; width: 60vw; height: 60vw; max-width: 760px; max-height: 760px;
  right: -8vw; top: -12vw;
  background: radial-gradient(circle, rgba(180,122,69,.28) 0%, rgba(180,122,69,0) 62%);
  filter: blur(8px); pointer-events: none;
}
.hero__ring {
  position: absolute; right: 4vw; bottom: -16vw;
  width: 46vw; height: 46vw; max-width: 620px; max-height: 620px;
  border: 1px solid rgba(206,155,102,.22); border-radius: 50%;
  pointer-events: none;
}
.hero__ring::after { content:""; position:absolute; inset: 12%; border: 1px solid rgba(206,155,102,.14); border-radius: 50%; }
.hero .container { position: relative; z-index: 2; }
.hero__inner { max-width: 920px; }
.hero h1 { color: var(--paper); margin: 1.1rem 0; }
.hero h1 em { font-style: italic; color: var(--copper-glow); }
.hero__sub { color: rgba(246,241,231,.76); max-width: 560px; font-weight: 300; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 1.6rem 2.4rem; margin-top: 3.4rem; padding-top: 2rem; border-top: 1px solid var(--line-light); }
.hero__meta-item { display: flex; flex-direction: column; gap: .15rem; }
.hero__meta-item b { font-family: var(--display); font-size: 1.9rem; font-weight: 600; color: var(--copper-glow); line-height: 1; }
.hero__meta-item span { font-size: .82rem; letter-spacing: .04em; color: rgba(246,241,231,.62); }

/* ---------- 8. Stats / About ---------- */
.about-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(40px, 6vw, 88px); align-items: center; }
.stat-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stat-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.stat-card b { display: block; font-family: var(--display); font-size: clamp(2.1rem, 3.4vw, 2.8rem); font-weight: 600; color: var(--green); line-height: 1; }
.stat-card span { font-size: .9rem; color: var(--ink-soft); margin-top: .4rem; display: block; }
.stat-card:nth-child(even) { margin-top: 28px; }

/* ---------- 9. Pôles (double cards) ---------- */
.poles { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(18px, 2.4vw, 28px); }
.pole {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: clamp(30px, 4vw, 50px); min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end;
  box-shadow: var(--shadow-md);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease);
}
.pole:hover { transform: translateY(-7px); box-shadow: var(--shadow-lg); }
.pole--num { background: linear-gradient(160deg, var(--forest-2), var(--forest)); color: var(--ivory); }
.pole--dom { background: linear-gradient(160deg, #3d5a47, var(--green)); color: var(--ivory); }
.pole__media { position: absolute; inset: 0; opacity: .5; }
.pole__icon { width: 54px; height: 54px; border-radius: 12px; display: grid; place-items: center; background: rgba(246,241,231,.12); border: 1px solid rgba(246,241,231,.18); margin-bottom: auto; }
.pole__icon svg { width: 26px; height: 26px; color: var(--copper-glow); }
.pole h3 { color: var(--paper); font-size: clamp(1.8rem, 2.8vw, 2.4rem); margin-bottom: .5rem; margin-top: 1.6rem; }
.pole p { color: rgba(246,241,231,.78); font-weight: 300; max-width: 38ch; margin-bottom: 1.5rem; }
.pole__link { display: inline-flex; align-items: center; gap: .5em; font-weight: 500; color: var(--copper-glow); font-size: .98rem; }
.pole__link svg { width: 1.05em; height: 1.05em; transition: transform .4s var(--ease); }
.pole:hover .pole__link svg { transform: translateX(5px); }
.pole__tags { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 1.2rem; }
.pole__tags span { font-size: .76rem; padding: .35em .9em; border-radius: 999px; background: rgba(246,241,231,.1); border: 1px solid rgba(246,241,231,.16); color: rgba(246,241,231,.82); }

/* ---------- 10. Grille de services (pages internes) ---------- */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: clamp(16px, 2vw, 24px); }
.svc-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 40px);
  box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s;
  position: relative; overflow: hidden;
}
.svc-card::before { content:""; position:absolute; left:0; top:0; height:3px; width:100%; background: linear-gradient(90deg, var(--copper), var(--copper-glow)); transform: scaleX(0); transform-origin:left; transition: transform .55s var(--ease); }
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.svc-card:hover::before { transform: scaleX(1); }
.svc-card__icon { width: 60px; height: 60px; border-radius: 14px; display: grid; place-items: center; background: linear-gradient(150deg, var(--ivory-deep), var(--ivory)); border: 1px solid var(--line); margin-bottom: 1.5rem; transition: transform .5s var(--ease); }
.svc-card:hover .svc-card__icon { transform: rotate(-6deg) scale(1.05); }
.svc-card__icon svg { width: 28px; height: 28px; color: var(--green); }
.svc-card h3 { font-size: 1.5rem; margin-bottom: .55rem; }
.svc-card p { color: var(--ink-soft); font-size: .98rem; }
.svc-num { position:absolute; top: 26px; right: 30px; font-family: var(--display); font-size: 1.1rem; color: var(--sage); font-style: italic; }

/* ---------- 11. Arguments / engagement (liste numérotée) ---------- */
.feature-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(20px, 3vw, 44px); }
.feature {
  border-top: 1px solid var(--line); padding-top: 1.6rem;
}
.feature .num { font-family: var(--display); font-style: italic; font-size: 1.4rem; color: var(--copper-deep); }
.feature h3 { font-size: 1.45rem; margin: .7rem 0 .5rem; }
.feature p { color: var(--ink-soft); font-size: .98rem; }
.bg-forest .feature { border-color: var(--line-light); }
.bg-forest .feature p { color: rgba(246,241,231,.7); }
.bg-forest .feature .num { color: var(--copper-glow); }

/* ---------- 12. Témoignages ---------- */
.reviews-top { display:flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-bottom: clamp(36px,5vw,60px); }
.rating-badge { display:flex; align-items:center; gap: 1rem; }
.rating-badge .score { font-family: var(--display); font-size: 3.4rem; font-weight: 600; color: var(--green); line-height: 1; }
.rating-badge .stars { color: var(--copper); display:flex; gap:2px; }
.rating-badge .stars svg { width: 18px; height: 18px; }
.rating-badge small { color: var(--ink-soft); font-size: .85rem; }
.reviews { columns: 3; column-gap: clamp(16px,2vw,24px); }
.review {
  break-inside: avoid; margin-bottom: clamp(16px,2vw,24px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; box-shadow: var(--shadow-sm);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}
.review:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.review .stars { display:flex; gap:2px; color: var(--copper); margin-bottom: 1rem; }
.review .stars svg { width: 15px; height: 15px; }
.review p { font-family: var(--display); font-size: 1.22rem; line-height: 1.4; color: var(--ink); font-weight: 500; }
.review footer { margin-top: 1.2rem; display:flex; align-items:center; gap:.75rem; }
.review .avatar { width: 38px; height: 38px; border-radius: 50%; background: linear-gradient(150deg, var(--green-soft), var(--green)); color: var(--paper); display:grid; place-items:center; font-family: var(--display); font-weight:600; font-size:1.05rem; }
.review .who b { display:block; font-family: var(--sans); font-weight: 600; font-size: .95rem; }
.review .who span { font-size: .82rem; color: var(--sage); }

/* ---------- 13. CTA band ---------- */
.cta-band { position: relative; overflow: hidden; }
.cta-band .container { position: relative; z-index: 2; text-align: center; max-width: 820px; }
.cta-band h2 { margin-bottom: 1rem; }
.cta-band .lead { margin-inline: auto; margin-bottom: 2.2rem; }
.cta-actions { display:flex; flex-wrap: wrap; gap: 1rem; justify-content: center; align-items: center; }
.phone-pill { display:inline-flex; align-items:center; gap:.7em; font-family: var(--display); font-size: 1.5rem; color: var(--copper-glow); font-weight: 600; }
.phone-pill svg { width: 1.05em; height: 1.05em; }
.cta-band__glow { position:absolute; width: 70vw; height:70vw; max-width:700px; max-height:700px; left:50%; top:50%; transform: translate(-50%,-50%); background: radial-gradient(circle, rgba(180,122,69,.18), transparent 60%); pointer-events:none; }

/* ---------- 14. Footer ---------- */
.site-footer { background: var(--forest); color: rgba(246,241,231,.7); padding-block: clamp(56px,7vw,84px) 32px; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1.2fr; gap: clamp(32px,5vw,72px); }
.site-footer .brand { color: var(--paper); }
.site-footer .brand b { color: var(--paper); }
.footer-about p { margin-top: 1.2rem; max-width: 34ch; font-weight: 300; font-size: .96rem; }
.footer-col h4 { font-family: var(--sans); font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--copper-glow); font-weight: 600; margin-bottom: 1.3rem; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col a, .footer-col li { font-size: .97rem; transition: color .3s; }
.footer-col a:hover { color: var(--paper); }
.footer-contact b { color: var(--paper); font-family: var(--display); font-size: 1.4rem; }
.footer-contact .hours { margin-top: 1rem; font-size: .92rem; line-height: 1.7; }
.socials { display:flex; gap: .7rem; margin-top: 1.6rem; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--line-light); display:grid; place-items:center; transition: background .4s var(--ease), transform .4s var(--ease), color .3s; }
.socials a svg { width: 17px; height: 17px; }
.socials a:hover { background: var(--copper); color: var(--forest); transform: translateY(-3px); border-color: var(--copper); }
.footer-bottom { margin-top: clamp(40px,5vw,64px); padding-top: 24px; border-top: 1px solid var(--line-light); display:flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-size: .85rem; color: rgba(246,241,231,.5); }

/* ---------- 15. Formulaire ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(36px,5vw,72px); align-items: start; }
.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px,4vw,48px); box-shadow: var(--shadow-md); }
.field { margin-bottom: 1.3rem; position: relative; }
.field label { display:block; font-size: .82rem; font-weight: 500; letter-spacing: .04em; color: var(--ink-soft); margin-bottom: .5rem; }
.field label .req { color: var(--copper-deep); }
.field input, .field textarea, .field select {
  width: 100%; padding: .95em 1.1em; border-radius: 10px;
  border: 1.5px solid var(--line); background: var(--ivory);
  color: var(--ink); transition: border-color .3s, box-shadow .3s, background .3s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' stroke='%234C594F' stroke-width='2'%3E%3Cpath d='M2 5l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1.1em center; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--copper); background: var(--paper); box-shadow: 0 0 0 4px rgba(180,122,69,.12); }
.field.error input, .field.error textarea, .field.error select { border-color: #b4453f; box-shadow: 0 0 0 4px rgba(180,69,63,.1); }
.field .err-msg { display:none; color: #b4453f; font-size: .78rem; margin-top: .4rem; }
.field.error .err-msg { display: block; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.3rem; }
.form-success { display:none; align-items:center; gap:.8rem; background: rgba(51,80,63,.1); border: 1px solid rgba(51,80,63,.25); color: var(--green); border-radius: 10px; padding: 1em 1.2em; margin-bottom: 1.4rem; font-size: .95rem; }
.form-success.show { display:flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.info-block { margin-bottom: 2rem; }
.info-block .ib-icon { width: 46px; height: 46px; border-radius: 12px; background: var(--ivory-deep); border: 1px solid var(--line); display:grid; place-items:center; color: var(--green); margin-bottom: .9rem; }
.info-block .ib-icon svg { width: 22px; height: 22px; }
.info-block h4 { font-family: var(--sans); font-size: .78rem; letter-spacing: .18em; text-transform: uppercase; color: var(--copper-deep); margin-bottom: .35rem; }
.info-block a, .info-block p { font-family: var(--display); font-size: 1.45rem; color: var(--ink); font-weight: 600; }
.info-block .small { font-family: var(--sans); font-size: .95rem; font-weight: 400; color: var(--ink-soft); line-height: 1.7; }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); margin-top: 1.5rem; }
.map-wrap iframe { width: 100%; height: 300px; border: 0; display: block; filter: grayscale(.3) contrast(1.05); }

/* ---------- 16. Page hero (intérieures) ---------- */
.page-hero { padding-top: clamp(150px, 18vh, 230px); padding-bottom: clamp(50px, 7vw, 96px); position: relative; overflow: hidden; }
.page-hero .eyebrow { color: var(--copper-glow); }
.page-hero h1 { margin: 1rem 0; max-width: 16ch; }
.page-hero h1 em { font-style: italic; color: var(--copper-glow); }
.page-hero .lead { max-width: 560px; }
.breadcrumb { display:flex; gap:.5em; align-items:center; font-size:.84rem; color: rgba(246,241,231,.55); margin-bottom: 1.4rem; }
.breadcrumb a:hover { color: var(--copper-glow); }
.page-hero__ring { position:absolute; right:-6vw; top:-8vw; width:38vw; height:38vw; max-width:480px; max-height:480px; border:1px solid rgba(206,155,102,.18); border-radius:50%; pointer-events:none; }

/* ---------- 17. Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"]{ transition-delay: .08s; }
.reveal[data-delay="2"]{ transition-delay: .16s; }
.reveal[data-delay="3"]{ transition-delay: .24s; }
.reveal[data-delay="4"]{ transition-delay: .32s; }
.reveal[data-delay="5"]{ transition-delay: .40s; }

/* reveal au chargement du hero */
.load-up { opacity: 0; transform: translateY(30px); animation: loadUp 1s var(--ease) forwards; }
.load-up[data-delay="1"]{ animation-delay: .15s; }
.load-up[data-delay="2"]{ animation-delay: .3s; }
.load-up[data-delay="3"]{ animation-delay: .45s; }
.load-up[data-delay="4"]{ animation-delay: .6s; }
.load-up[data-delay="5"]{ animation-delay: .78s; }
@keyframes loadUp { to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .load-up { opacity: 1; transform: none; animation: none; }
}

/* ---------- 18. Responsive ---------- */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-about { grid-column: 1 / -1; }
}
@media (max-width: 860px) {
  .nav, .header-actions .btn { display: none; }
  .burger { display: block; }
  .mobile-nav { position: fixed; inset: 0; z-index: 99; background: var(--forest); color: var(--ivory);
    display: flex; flex-direction: column; justify-content: center; gap: 1.4rem; padding: var(--gutter);
    transform: translateX(100%); transition: transform .5s var(--ease); }
  body.nav-open .mobile-nav { transform: none; }
  .mobile-nav a { font-family: var(--display); font-size: 2rem; color: var(--paper); }
  .mobile-nav a[aria-current="page"] { color: var(--copper-glow); }
  .mobile-nav .btn { margin-top: 1rem; align-self: flex-start; }
  .poles { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 0; }
  .feature { margin-bottom: 1.6rem; }
  .reviews { columns: 2; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  body { font-size: 16px; }
  .stat-cards { grid-template-columns: 1fr 1fr; }
  .stat-card:nth-child(even) { margin-top: 0; }
  .reviews { columns: 1; }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .hero__meta { gap: 1.2rem 1.8rem; }
  .reviews-top { align-items: flex-start; }
}
.mobile-nav { display: none; }
@media (max-width: 860px) { .mobile-nav { display: flex; } }
