/* Forages Baie de Somme — direction "Terre & Marée" */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Work+Sans:wght@400;500;600;700&display=swap');

:root{
  --ink:#1c2b2b;
  --ink-soft:#263b3a;
  --sand:#f4eee0;
  --sand-deep:#e9dfc8;
  --clay:#ba6a34;
  --clay-dark:#9a5527;
  --bay:#3f6b67;
  --bay-dark:#2c4b48;
  --white:#fffaf2;
  --text:#23302f;
  --text-soft:#56635f;
  --radius-s:6px;
  --radius-m:14px;
  --radius-l:30px;
  --shadow:0 24px 48px -28px rgba(20,30,30,.5);
  --container:1160px;
  --space-xs:.5rem;
  --space-s:1rem;
  --space-m:2rem;
  --space-l:4rem;
  --space-xl:6rem;
}

*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Work Sans',system-ui,sans-serif;
  color:var(--text);
  background:var(--sand);
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}
img,svg{max-width:100%;display:block}
a{color:inherit}
.container{max-width:var(--container);margin-inline:auto;padding-inline:1.5rem}
section[id]{scroll-margin-top:86px}

h1,h2,h3{
  font-family:'Fraunces',Georgia,serif;
  line-height:1.08;
  margin:0 0 .5em;
  color:var(--ink);
  font-weight:600;
}
h1{font-size:clamp(2.1rem,4.4vw,3.4rem);letter-spacing:-.01em}
h2{font-size:clamp(1.6rem,3vw,2.2rem)}
h3{font-size:1.15rem;font-weight:600}
p{line-height:1.6;color:var(--text-soft);margin:0 0 1em}
.eyebrow{
  display:inline-flex;align-items:center;gap:.5rem;
  font-family:'Work Sans',sans-serif;
  font-weight:600;font-size:.78rem;letter-spacing:.09em;text-transform:uppercase;
  color:var(--clay-dark);
  margin-bottom:.9rem;
}
.eyebrow .dash{width:22px;height:2px;background:var(--clay);display:inline-block}

.js .reveal{opacity:0;transform:translateY(18px);transition:opacity .6s ease,transform .6s ease}
.js .reveal.is-visible{opacity:1;transform:none}
@media (prefers-reduced-motion:reduce){
  .js .reveal{opacity:1;transform:none;transition:none}
}

/* ===== Buttons ===== */
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:.55rem;
  padding:.9rem 1.6rem;
  border-radius:999px;
  font-family:'Work Sans',sans-serif;
  font-weight:600;font-size:.98rem;
  text-decoration:none;
  border:1.5px solid transparent;
  cursor:pointer;
  transition:transform .18s ease,box-shadow .18s ease,background .18s ease,border-color .18s ease;
  white-space:nowrap;
}
.btn svg{width:19px;height:19px;flex:none}
.btn-primary{background:var(--clay-dark);color:var(--white);box-shadow:0 14px 26px -14px rgba(154,85,39,.65)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 18px 32px -14px rgba(154,85,39,.75)}
.btn-outline{background:transparent;border-color:rgba(28,43,43,.28);color:var(--ink)}
.btn-outline:hover{border-color:var(--ink);transform:translateY(-2px)}
.btn-outline-light{background:transparent;border-color:rgba(255,250,242,.4);color:var(--white)}
.btn-outline-light:hover{border-color:var(--white);transform:translateY(-2px)}
.btn-light{background:var(--white);color:var(--ink)}
.btn-light:hover{transform:translateY(-2px)}

/* ===== Header ===== */
.site-header{
  position:sticky;top:0;z-index:60;
  background:rgba(244,238,224,.86);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(28,43,43,.08);
}
.site-header .container{
  display:flex;align-items:center;justify-content:space-between;
  height:76px;
}
.brand{display:flex;align-items:center;gap:.65rem;text-decoration:none}
.brand-logo{width:42px;height:42px;flex:none}
.brand-name{
  font-family:'Fraunces',serif;font-weight:600;font-size:1.05rem;color:var(--ink);
  line-height:1.05;
}
.brand-name small{display:block;font-family:'Work Sans',sans-serif;font-weight:500;font-size:.68rem;letter-spacing:.06em;text-transform:uppercase;color:var(--text-soft);margin-top:.15rem}

.main-nav{display:flex;align-items:center;gap:2.1rem}
.main-nav a{
  font-size:.92rem;font-weight:500;text-decoration:none;color:var(--text);
  white-space:nowrap;position:relative;
}
.main-nav a::after{
  content:'';position:absolute;left:0;right:0;bottom:-6px;height:2px;background:var(--clay);
  transform:scaleX(0);transform-origin:left;transition:transform .2s ease;
}
.main-nav a:hover::after{transform:scaleX(1)}

.header-cta{display:flex;align-items:center;gap:.7rem}
.burger{
  display:none;width:44px;height:44px;border-radius:50%;border:1.5px solid rgba(28,43,43,.25);
  background:transparent;align-items:center;justify-content:center;cursor:pointer;flex:none;
}
.burger span{display:block;width:18px;height:1.5px;background:var(--ink);position:relative;transition:background .15s ease}
.burger span::before,.burger span::after{content:'';position:absolute;left:0;width:18px;height:1.5px;background:var(--ink);transition:transform .2s ease,top .2s ease}
.burger span::before{top:-6px}
.burger span::after{top:6px}
body.nav-open .burger span{background:transparent}
body.nav-open .burger span::before{top:0;transform:rotate(45deg)}
body.nav-open .burger span::after{top:0;transform:rotate(-45deg)}

.mobile-nav{
  display:none;position:fixed;top:76px;right:0;bottom:0;left:0;background:var(--sand);z-index:55;
  padding:2rem 1.5rem;flex-direction:column;gap:1.6rem;
  overflow-y:auto;
}
.mobile-nav a{font-family:'Fraunces',serif;font-size:1.5rem;text-decoration:none;color:var(--ink)}
.mobile-nav .header-cta{flex-direction:column;align-items:stretch;margin-top:1rem}
body.nav-open .mobile-nav{display:flex}
body.nav-open{overflow:hidden}

@media (max-width:900px){
  .main-nav{display:none}
  .site-header .header-cta .btn-outline{display:none}
  .burger{display:flex}
}
@media (max-width:560px){
  .header-cta .btn span.btn-label-full{display:none}
}

/* ===== Hero ===== */
.hero{position:relative;padding:3.6rem 0 4.4rem;overflow:hidden}
.hero-bg-spiral{position:absolute;top:-120px;right:-160px;width:520px;height:520px;opacity:.16;pointer-events:none}
.hero-grid{
  display:grid;grid-template-columns:1.05fr .95fr;gap:3.5rem;align-items:center;position:relative;z-index:1;
}
.hero-copy p.lead{font-size:1.08rem;max-width:46ch;color:var(--text-soft)}
.hero-badge{
  display:inline-flex;align-items:center;gap:.6rem;
  background:var(--white);border:1px solid rgba(28,43,43,.1);
  padding:.55rem .95rem;border-radius:999px;margin-bottom:1.5rem;
  text-decoration:none;box-shadow:var(--shadow);
}
.hero-badge .stars{color:var(--clay-dark);letter-spacing:1px;font-size:.85rem}
.hero-badge .badge-text{font-size:.82rem;font-weight:600;color:var(--ink)}
.hero-cta{display:flex;flex-wrap:wrap;gap:.9rem;margin-top:1.9rem}
.hero-meta{
  display:flex;gap:1.6rem;margin-top:2.4rem;flex-wrap:wrap;
}
.hero-meta div{display:flex;align-items:center;gap:.55rem;font-size:.88rem;color:var(--text-soft)}
.hero-meta svg{width:18px;height:18px;color:var(--clay-dark);flex:none}

.hero-visual{position:relative}
.hero-illustration{
  background:linear-gradient(160deg,var(--ink) 0%,var(--ink-soft) 55%,var(--bay-dark) 100%);
  border-radius:var(--radius-l);
  aspect-ratio:4/3;
  position:relative;overflow:hidden;
  box-shadow:var(--shadow);
}
.hero-illustration svg{width:100%;height:100%}

/* ===== Sections generic ===== */
.section{padding:var(--space-xl) 0}
.section-tight{padding:var(--space-l) 0}
.section-head{max-width:640px;margin-bottom:2.6rem}
.section-alt{background:var(--white)}
.section-dark{background:var(--ink);color:var(--white)}
.section-dark h2,.section-dark h3{color:var(--white)}
.section-dark p{color:rgba(255,250,242,.72)}

.divider-augers{
  display:flex;align-items:center;justify-content:center;gap:.5rem;
  padding:0 0 var(--space-l);opacity:.55;
}
.divider-augers svg{width:26px;height:26px}

/* ===== Qui sommes-nous ===== */
.about-grid{display:grid;grid-template-columns:.9fr 1.1fr;gap:3.5rem;align-items:center}
.about-visual{
  aspect-ratio:1/1;border-radius:var(--radius-l);
  background:var(--sand-deep);position:relative;overflow:hidden;
  border:1px solid rgba(28,43,43,.08);
}
.about-visual svg{width:100%;height:100%}
.about-facts{display:grid;grid-template-columns:1fr 1fr;gap:1rem;margin-top:1.8rem}
.fact{
  background:var(--sand);border:1px solid rgba(28,43,43,.08);border-radius:var(--radius-m);
  padding:1.1rem 1.2rem;
}
.fact strong{display:block;font-family:'Fraunces',serif;font-size:1.15rem;color:var(--ink);margin-bottom:.2rem}
.fact span{font-size:.85rem;color:var(--text-soft)}

/* ===== Activités / cards ===== */
.card-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.6rem}
.activity-card{
  background:var(--white);border:1px solid rgba(28,43,43,.08);
  border-radius:var(--radius-m);padding:2rem 1.9rem;
  box-shadow:var(--shadow);
  display:flex;flex-direction:column;gap:1rem;
}
.activity-card .icon{
  width:52px;height:52px;border-radius:14px;
  background:var(--sand);display:flex;align-items:center;justify-content:center;flex:none;
}
.activity-card .icon svg{width:28px;height:28px;color:var(--clay-dark)}
.activity-card h3{margin-bottom:.1rem}
.activity-card p{margin:0;font-size:.95rem}
.activity-card .tag{
  align-self:flex-start;font-size:.72rem;font-weight:600;letter-spacing:.06em;text-transform:uppercase;
  color:var(--bay-dark);background:rgba(63,107,103,.12);padding:.3rem .7rem;border-radius:999px;
}

/* ===== Pourquoi / preuves ===== */
.proof-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.4rem}
.proof-card{
  border:1px solid rgba(28,43,43,.1);border-radius:var(--radius-m);
  padding:1.7rem 1.5rem;background:var(--sand);
  text-align:left;
}
.proof-card .icon{width:38px;height:38px;color:var(--clay-dark);margin-bottom:.9rem}
.proof-card h3{font-size:1.02rem;margin-bottom:.35rem}
.proof-card p{font-size:.88rem;margin:0}

/* ===== Avis ===== */
.reviews-head{display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:1.5rem;margin-bottom:2.4rem}
.reviews-score{display:flex;align-items:center;gap:1rem}
.reviews-score .num{font-family:'Fraunces',serif;font-size:2.6rem;color:var(--ink);line-height:1}
.reviews-score .stars{color:var(--clay-dark);font-size:1.05rem;letter-spacing:2px}
.reviews-score .count{font-size:.85rem;color:var(--text-soft)}
.reviews-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:1.5rem}
.review-card{
  background:var(--white);border:1px solid rgba(28,43,43,.08);border-radius:var(--radius-m);
  padding:1.7rem 1.6rem;display:flex;flex-direction:column;gap:.9rem;box-shadow:var(--shadow);
}
.review-card .stars{color:var(--clay-dark);letter-spacing:2px;font-size:.9rem}
.review-card p{margin:0;color:var(--text);font-size:.96rem;line-height:1.55}
.review-card footer{display:flex;align-items:center;justify-content:space-between;font-size:.8rem;color:var(--text-soft)}
.review-card footer .google-g{
  display:inline-flex;align-items:center;gap:.35rem;font-weight:600;
}
.reviews-link{margin-top:2rem;text-align:center}

/* ===== Déroulement ===== */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:1.6rem;counter-reset:step}
.step{position:relative;padding:1.8rem 1.6rem 1.6rem;background:var(--white);border:1px solid rgba(28,43,43,.08);border-radius:var(--radius-m)}
.step .step-num{
  font-family:'Fraunces',serif;font-size:2.1rem;color:var(--clay);opacity:.55;margin-bottom:.5rem;
}
.step h3{margin-bottom:.35rem;font-size:1.05rem}
.step p{margin:0;font-size:.9rem}

/* ===== Contact ===== */
.contact-grid{display:grid;grid-template-columns:1.05fr .95fr;gap:3rem;align-items:center}
.contact-list{list-style:none;margin:1.8rem 0 0;padding:0;display:flex;flex-direction:column;gap:1rem}
.contact-list li{display:flex;align-items:center;gap:.9rem}
.contact-list a{text-decoration:none;color:var(--white);font-weight:500}
.contact-list .icon-wrap{
  width:44px;height:44px;border-radius:50%;background:rgba(255,250,242,.1);
  display:flex;align-items:center;justify-content:center;flex:none;
}
.contact-list svg{width:20px;height:20px;color:var(--clay)}
.contact-cta{display:flex;flex-wrap:wrap;gap:1rem;margin-top:2.2rem}
.contact-visual{
  aspect-ratio:1/1;border-radius:var(--radius-l);overflow:hidden;position:relative;
  background:radial-gradient(circle at 32% 30%,rgba(186,106,52,.35),transparent 60%),var(--ink-soft);
  border:1px solid rgba(255,250,242,.1);
}
.contact-visual svg{width:100%;height:100%}

/* ===== Footer ===== */
.site-footer{background:var(--ink-soft);color:rgba(255,250,242,.7);padding:2.6rem 0 2rem}
.footer-grid{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:1.5rem}
.footer-brand{display:flex;align-items:center;gap:.6rem}
.footer-brand svg{width:30px;height:30px}
.footer-brand span{font-family:'Fraunces',serif;color:var(--white);font-size:.98rem}
.footer-links{display:flex;gap:1.6rem;flex-wrap:wrap;font-size:.85rem}
.footer-links a{text-decoration:none;color:rgba(255,250,242,.72)}
.footer-links a:hover{color:var(--white)}
.footer-bottom{
  margin-top:1.8rem;padding-top:1.6rem;border-top:1px solid rgba(255,250,242,.12);
  font-size:.78rem;display:flex;justify-content:space-between;flex-wrap:wrap;gap:.6rem;
  color:rgba(255,250,242,.5);
}

/* ===== WhatsApp float ===== */
.wa-float{
  position:fixed;right:1.4rem;bottom:1.4rem;z-index:70;
  width:58px;height:58px;border-radius:50%;
  background:#25D366;display:flex;align-items:center;justify-content:center;
  box-shadow:0 14px 30px -10px rgba(0,0,0,.4);
  text-decoration:none;
}
.wa-float svg{width:29px;height:29px;color:#fff}

/* ===== Legal page ===== */
.legal-page{padding:4rem 0 5rem}
.legal-page h1{margin-bottom:1.6rem}
.legal-page h2{font-size:1.2rem;margin-top:2.2rem}
.legal-page p,.legal-page li{color:var(--text-soft);font-size:.95rem}
.legal-page a{color:var(--clay-dark);font-weight:600}

/* ===== Responsive ===== */
@media (max-width:1000px){
  .hero-grid{grid-template-columns:1fr;gap:2.6rem}
  .hero-visual{order:-1;max-width:420px;margin-inline:auto;width:100%}
  .about-grid{grid-template-columns:1fr}
  .about-visual{max-width:360px;margin-inline:auto;width:100%}
  .card-grid{grid-template-columns:1fr}
  .proof-grid{grid-template-columns:1fr}
  .reviews-grid{grid-template-columns:1fr}
  .steps{grid-template-columns:1fr}
  .contact-grid{grid-template-columns:1fr}
  .contact-visual{max-width:340px;margin-inline:auto;width:100%;order:-1}
}
@media (max-width:640px){
  .section{padding:3.2rem 0}
  .section-tight{padding:2.4rem 0}
  .hero{padding:2.2rem 0 2.8rem}
  h1{font-size:clamp(1.9rem,8vw,2.6rem)}
  .hero-meta{gap:1rem}
  .btn{padding:.85rem 1.3rem;font-size:.92rem}
  .reviews-head{flex-direction:column;align-items:flex-start}
  .footer-grid{flex-direction:column;align-items:flex-start}
  .footer-bottom{flex-direction:column}
}
