/* =====================================================
   Feather’s Digitale — styles.css (FINAL CLEAN)
   - Warm beige + brun premium
   - Home + pages
   - Sans menu burger
===================================================== */

:root{
  --bg:#F8F8F0;
  --panel:#FFFFFF;

  --text:#1C1C1C;
  --muted:#5A514A;
  --stroke:rgba(28,28,28,.10);

  --accent:#6B4F3A;
  --accent-dark:#4A3426;

  --shadow:0 18px 60px rgba(28,28,28,.08);
  --radius:18px;
}

/* RESET */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(900px 520px at 20% -10%, rgba(107,79,58,.10), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(107,79,58,.16), transparent 60%),
    var(--bg);
}
img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
strong{ font-weight:900; }

.container{ width:min(1100px, 92%); margin:0 auto; }

/* =====================================================
   HEADER / NAV
===================================================== */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(248,248,240,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--stroke);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav a{
  font-weight:700;
  padding:10px 14px;
  border-radius:12px;
  color:var(--muted);
  transition:.2s ease;
}

.nav a:hover{
  background:rgba(107,79,58,.08);
  color:var(--text);
}

.nav a[aria-current="page"]{
  background:rgba(107,79,58,.10);
  color:var(--text);
}

/* =====================================================
   BUTTONS
===================================================== */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:14px;
  background:var(--accent);
  color:#fff !important;
  font-weight:900;
  border:none;
  transition:.2s ease;
  box-shadow:0 10px 24px rgba(107,79,58,.18);
}
.btn:hover{ background:var(--accent-dark); }

.btn--small{
  padding:10px 14px;
  border-radius:12px;
}

.btn--ghost{
  background:#fff;
  border:1px solid var(--accent);
  color:var(--accent) !important;
  box-shadow:none;
}
.btn--ghost:hover{
  background:rgba(107,79,58,.08);
}

/* =====================================================
   HOME (Hero)
===================================================== */
.hero{
  padding:90px 0 110px;
}

/* Pastille au-dessus des 2 colonnes (texte + grand) */
.hero-badge--top{
  position:relative;
  left:50%;
  transform:translateX(-50%);
  display:block;
  width:max-content;
  max-width:92%;
  text-align:center;

  margin:0 0 50px 0;
  padding:14px 26px;
  font-size:16px;          /* ✅ plus grand */
  font-weight:800;
  letter-spacing:.25px;
  border-radius:999px;

  background:rgba(107,79,58,.10);
  border:1px solid rgba(107,79,58,.25);
  box-shadow:0 6px 18px rgba(107,79,58,.06);
}

.hero__grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;      /* ✅ équilibre */
}

/* Colonne gauche */
.hero-head{
  text-align:center;
  padding-right:40px;      /* ✅ structure visuelle */
}

/* Titre + animation */
.hero-title{
  font-size:40px;   /* plus équilibré */
  line-height:1.1;
  margin:0 0 34px;

  opacity:0;
  transform:translateY(20px);
  animation:titleFadeUp .8s ease-out forwards;
}
@keyframes titleFadeUp{
  to{ opacity:1; transform:translateY(0); }
}

/* Mot final + underline */
.highlight-word{
  position:relative;
  display:inline-block;
  color:var(--accent-dark);
  margin-top:6px;
  animation:wordPop 1s ease-out .2s both;
}
@keyframes wordPop{
  0%{ transform:translateY(12px); opacity:0; }
  60%{ transform:translateY(-3px); }
  100%{ transform:translateY(0); opacity:1; }
}
.highlight-word::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0%;
  height:3px;
  background:var(--accent);
  border-radius:2px;
  animation:underlineGrow .8s ease-out .6s forwards;
}
@keyframes underlineGrow{ to{ width:100%; } }

.lead{
  font-size:18px;
  line-height:1.50;
  color:var(--muted);
  max-width:720px;
  margin:0 auto 20px;
}

/* CTA hero */
.hero__cta{
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  margin-top:50px;
}

/* =====================================================
   TRUST (Badges) — à placer sous les 2 colonnes
   -> dans le HTML: <ul class="trust trust--bottom">...</ul>
===================================================== */
.trust{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:12px 14px;
}

.trust li{
  background:#fff;
  border:1px solid rgba(107,79,58,.25);
  padding:10px 18px;
  border-radius:12px;
  font-weight:750;
  font-size:14px;
  color:var(--muted);
  box-shadow:0 6px 16px rgba(28,28,28,.04);
}

/* Variante en bas du hero */
.trust--bottom{
  margin:40px auto 0;
  max-width:920px;
}

/* =====================================================
   PANELS / LISTS
===================================================== */
.panel{
  background:var(--panel);
  border:1px solid rgba(107,79,58,.18);
  border-radius:var(--radius);
  padding:34px;
  box-shadow:0 24px 70px rgba(28,28,28,.08);
}

.panel h2{
  margin:0 0 14px;
  font-size:24px;
}

.list{
  margin:0;
  padding-left:20px;
  line-height:2;
  color:var(--muted);
}

.panel__cta{
  margin-top:24px;
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}

/* Panel home un peu plus premium */
.hero .panel{
  max-width:460px;
  margin-left:auto;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(4px);
  margin-top:18px; /* léger décalage */
}

/* =====================================================
   PAGES (Services/Offres/À propos/Contact)
===================================================== */
.page{
  padding:70px 0 90px;
}

.page__head{
  margin-bottom:34px;
}

.page__head h1{
  margin:0 0 10px;
  font-size:42px;
  letter-spacing:-.3px;
}

.page__sub{
  margin:0;
  color:var(--muted);
  line-height:1.8;
  max-width:820px;
}

/* 3 cards sur une ligne */
.cards-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  align-items:stretch;
}

.card h2{
  margin:0 0 12px;
  font-size:22px;
}

/* CTA page hors cards */
.page-cta{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

/* =====================================================
   STEPS (Comment ça se passe ?)
===================================================== */
.steps-wrap{ margin-top:60px; }

.steps-head{
  text-align:center;
  margin-bottom:22px;
}

.steps-head h2{
  margin:0 0 8px;
  font-size:28px;
  letter-spacing:-.2px;
}

.steps-head p{
  margin:0 auto;
  max-width:720px;
  color:var(--muted);
  line-height:1.8;
}

.steps-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
  align-items:stretch;
}

.step-card{ padding:28px; }

.step-n{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(107,79,58,.12);
  color:var(--accent-dark);
  font-weight:900;
  margin-bottom:14px;
}

.step-card h3{
  margin:0 0 10px;
  font-size:20px;
}

.step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.85;
}

/* =====================================================
   FOOTER
===================================================== */
.footer{
  margin-top:100px;
  border-top:1px solid var(--stroke);
  padding:30px 0;
  color:var(--muted);
}

.footer__inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
}

.footer__links{
  display:flex;
  gap:16px;
}

.footer__links a:hover{ color:var(--text); }

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width:1000px){
  .hero{
    padding:72px 0 80px;
  }

  .hero__grid{
    grid-template-columns:1fr;
    gap:44px;
  }

  .hero-head{
    padding-right:0;
  }

  .hero-title{
    font-size:38px;
  }

  .hero .panel{
    max-width:680px;
    margin:0 auto;
    margin-top:0;
  }

  .trust--bottom{
    margin-top:32px;
  }

  .cards-3{
    grid-template-columns:1fr;
  }

  .steps-3{
    grid-template-columns:1fr;
  }
}

@media (max-width:520px){
  .nav{ gap:10px; }
  .nav a{ padding:8px 10px; }
  .btn{ width:100%; }
  .btn--ghost{ width:100%; }
}

/* =====================================================
   ACCESSIBILITÉ (réduction animations)
===================================================== */
@media (prefers-reduced-motion: reduce){
  .hero-title,
  .highlight-word,
  .highlight-word::after{
    animation:none;
    opacity:1;
    transform:none;
    width:100%;
  }
}

/* =====================================================
   À PROPOS — VERSION PREMIUM VISUELLE
===================================================== */

/* HERO plus impactant */
.page__head{
  padding:30px 0 50px;
  text-align:center;
}

.page__head h1{
  font-size:46px;
  margin-bottom:16px;
  letter-spacing:-.5px;
}

.page__sub{
  font-size:20px;
  max-width:760px;
  margin:0 auto;
  line-height:1.8;
}

/* Panels plus élégants */
.page .panel{
  border:1px solid rgba(107,79,58,.12);
  box-shadow:0 20px 60px rgba(28,28,28,.06);
  padding:40px;
}

/* Donner plus d’air entre sections */
.page section{
  margin-bottom:60px;
}

/* Spécialisation : accent léger */
.page .panel h2{
  font-size:26px;
  margin-bottom:18px;
}

/* Liste plus élégante */
.page .list li{
  margin-bottom:8px;
  font-weight:500;
}

/* Valeurs plus premium */
.steps-3{
  gap:26px;
}

.step-card{
  transition:.3s ease;
}

.step-card:hover{
  transform:translateY(-4px);
  box-shadow:0 26px 70px rgba(28,28,28,.08);
}

/* Icônes valeurs plus subtiles */
.step-n{
  background:rgba(107,79,58,.08);
  font-size:18px;
}

/* Bloc "Ce que vous pouvez attendre" plus distinct */
.page section:nth-last-of-type(2){
  background:rgba(107,79,58,.05);
  border-radius:20px;
  padding:50px;
}

/* CTA final plus fort visuellement */
.page section:last-of-type{
  background:linear-gradient(
    135deg,
    rgba(107,79,58,.08),
    rgba(107,79,58,.02)
  );
  border-radius:22px;
  padding:60px 50px;
  text-align:center;
}

.page section:last-of-type h2{
  font-size:28px;
}

.page section:last-of-type .btn{
  padding:16px 30px;
  font-size:16px;
}

/* Responsive */
@media (max-width:1000px){

  .page__head h1{
    font-size:36px;
  }

  .page__sub{
    font-size:18px;
  }

  .page .panel{
    padding:28px;
  }

  .page section:last-of-type{
    padding:40px 24px;
  }
}

/* =====================================================
   À PROPOS — Branding + séparations subtiles (NO HTML change)
===================================================== */

/* 1) La page devient un "layout éditorial" */
.page{
  position:relative;
}

/* Ligne éditoriale verticale très légère (branding) */
.page::before{
  content:"";
  position:absolute;
  left:calc(50% - 560px); /* proche du bord du container */
  top:0;
  bottom:0;
  width:1px;
  background:linear-gradient(
    to bottom,
    transparent 0%,
    rgba(107,79,58,.16) 12%,
    rgba(107,79,58,.10) 60%,
    transparent 100%
  );
  pointer-events:none;
}

/* 2) Séparateur subtil entre sections */
.page > section{
  position:relative;
}

.page > section:not(:last-of-type)::after{
  content:"";
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  bottom:-32px;
  width:min(860px, 92%);
  height:1px;
  background:linear-gradient(
    90deg,
    transparent,
    rgba(107,79,58,.22),
    transparent
  );
  opacity:.7;
}

/* 3) Accent branding sur les titres de section */
.page .panel h2,
.steps-head h2{
  position:relative;
  padding-left:14px;
}

.page .panel h2::before,
.steps-head h2::before{
  content:"";
  position:absolute;
  left:0;
  top:.35em;
  width:6px;
  height:18px;
  border-radius:8px;
  background:rgba(107,79,58,.55);
}

/* 4) Bandeaux de fond très légers pour casser l'effet "empilement" */
.page > section:nth-of-type(2),
.page > section:nth-of-type(4){
  border-radius:22px;
  background:linear-gradient(
    135deg,
    rgba(107,79,58,.06),
    rgba(107,79,58,.02)
  );
  padding:34px;
}

/* 5) “Steps” plus différenciant */
.steps-wrap{
  padding-top:8px;
}

.step-n{
  border:1px solid rgba(107,79,58,.18);
}

/* 6) Mini signature visuelle sur le hero (branding discret) */
.page__head{
  position:relative;
}

.page__head::after{
  content:"";
  display:block;
  width:120px;
  height:3px;
  border-radius:999px;
  margin:22px auto 0;
  background:linear-gradient(
    90deg,
    rgba(107,79,58,.15),
    rgba(107,79,58,.65),
    rgba(107,79,58,.15)
  );
}

/* 7) Responsive : on enlève la ligne verticale si écran étroit */
@media (max-width:1200px){
  .page::before{
    display:none;
  }
}

@media (max-width:1000px){
  .page > section:nth-of-type(2),
  .page > section:nth-of-type(4){
    padding:18px;
  }

  .page > section:not(:last-of-type)::after{
    bottom:-22px;
  }
}