/* ═══════════════════════════════════════════════════════
   HILDÉLIA CONSULTING — index.css
   Styles spécifiques à la page d'accueil
   ═══════════════════════════════════════════════════════ */

/* ── HERO ────────────────────────────────────────────── */
#hero {
  min-height: calc(100vh - var(--nav-h));
  padding-top: var(--nav-h);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 5vw;
  background: var(--ink);
  position: relative;
  overflow: hidden;
}
.hero__left::before {
  content: '';
  position: absolute; top: -100px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(107,158,138,.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero__left::after {
  content: '';
  position: absolute; bottom: -80px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(196,147,90,.12) 0%, transparent 65%);
  pointer-events: none;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage-light);
  margin-bottom: 2rem;
}
.hero__tag::before {
  content: '';
  display: block;
  width: 28px; height: 1px;
  background: var(--sage);
}

.hero__left h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.6rem, 3.5vw, 4rem);
  font-weight: 300;
  line-height: 1.12;
  color: var(--cream);
  margin-bottom: 1.8rem;
}
.hero__left h1 em { font-style: italic; color: var(--gold-light); }

.hero__left p {
  color: rgba(250, 247, 242, .6);
  font-size: 1rem;
  font-weight: 300;
  max-width: 420px;
  margin-bottom: 3rem;
}

.hero__btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Hero right — cartes audience */
.hero__right {
  display: grid;
  grid-template-rows: 1fr 1fr;
  background: var(--cream);
}

.audience-card {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  color: inherit;
}
.audience-card:first-child {
  background: var(--sage-pale);
  border-bottom: 1px solid var(--border);
}
.audience-card:last-child { background: var(--cream); }
.audience-card:first-child:hover { background: #daeae3; }
.audience-card:last-child:hover  { background: #f0ebe2; }

.audience-card__label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: .8rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}
.audience-card__label--gold { color: var(--gold); }
.audience-card__dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.audience-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: .8rem;
}
.audience-card p {
  font-size: .92rem;
  color: var(--muted);
  font-weight: 300;
  max-width: 320px;
}

.audience-card__arrow {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  font-size: 1.4rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--border);
  transition: color .2s, transform .2s;
}
.audience-card:hover .audience-card__arrow { transform: translate(3px, -3px); }
.audience-card:first-child:hover .audience-card__arrow { color: var(--sage); }
.audience-card:last-child:hover  .audience-card__arrow { color: var(--gold); }

/* ── À PROPOS ─────────────────────────────────────────── */
#apropos { background: var(--white); }

.apropos__grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: center;
}

.photo-wrap { position: relative; }

.photo-box {
  width: 380px;
  max-width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: linear-gradient(145deg, var(--sage) 0%, #4a7a6b 100%);
}
.photo-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.photo-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 1rem;
}
.photo-placeholder__icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: rgba(255,255,255,.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
}
.photo-placeholder p { color: rgba(255,255,255,.65); font-size: .85rem; text-align: center; }

.exp-badge {
  position: absolute;
  bottom: -1.5rem; right: -1.5rem;
  width: 90px; height: 90px;
  background: var(--gold);
  color: #fff;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
}
.exp-badge__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 600; line-height: 1;
}
.exp-badge__txt { font-size: .65rem; letter-spacing: .06em; text-align: center; line-height: 1.3; }

.apropos__lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ink);
  border-left: 2px solid var(--gold);
  padding-left: 1.2rem;
  margin: 1.5rem 0 2rem;
  font-weight: 400;
  line-height: 1.55;
}
.apropos__text p { color: var(--muted); font-weight: 300; margin-bottom: 1rem; font-size: .97rem; }

.chips { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }

/* ── STATS BAR ────────────────────────────────────────── */
.stats-bar {
  background: var(--ink);
  padding: 3.5rem 5vw;
}
.stats-bar__inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; text-align: center;
}
.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--cream); line-height: 1;
}
.stat__num span { color: var(--gold); font-style: italic; }
.stat__label {
  font-size: .78rem;
  color: rgba(250, 247, 242, .5);
  letter-spacing: .06em;
  margin-top: .4rem;
  font-weight: 300;
}

/* ── SERVICES SPLIT ───────────────────────────────────── */
.services-split { display: grid; grid-template-columns: 1fr 1fr; }

.split-col { padding: 5rem 5vw; }
.split-col:first-child { background: var(--sage-pale); }
.split-col:last-child  { background: var(--cream); }

.split-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 400; line-height: 1.2;
  margin-bottom: 1.2rem;
}
.split-col > p { color: var(--muted); font-size: .93rem; font-weight: 300; margin-bottom: 2rem; }

.service-list { list-style: none; margin-bottom: 2.5rem; }
.service-list li {
  font-size: .88rem;
  color: var(--muted);
  padding: .55rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 300;
  display: flex; align-items: center; gap: .75rem;
}
.service-list li::before        { content: '→'; color: var(--sage);  font-size: .8rem; flex-shrink: 0; }
.service-list--gold li::before  { color: var(--gold); }

/* ── TÉMOIGNAGES ──────────────────────────────────────── */
#temoignages { background: var(--white); }

.temoignages-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1.5px solid var(--border);
  margin-top: 3rem;
}

/* ── CTA CONTACT ──────────────────────────────────────── */
#contact-cta {
  background: var(--sage);
  padding: 5rem 5vw;
  text-align: center;
}
#contact-cta .display { color: var(--white); margin-bottom: 1rem; }
#contact-cta p {
  color: rgba(255,255,255,.75);
  font-size: 1rem; font-weight: 300;
  max-width: 500px; margin: 0 auto 2.5rem;
}
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── RESSOURCES ───────────────────────────────────────── */
#ressources { background: var(--cream); }

.ressources__intro {
  color: var(--muted);
  font-size: .97rem;
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 3rem;
}

.ressources-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.ressource-card {
  background: var(--white);
  padding: 2.2rem 2.5rem;
  border-top: 3px solid transparent;
  transition: border-color .25s, box-shadow .25s, transform .2s;
}
.ressource-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,.07);
  transform: translateY(-2px);
}
.ressource-card--sage { border-top-color: var(--sage-pale); }
.ressource-card--sage:hover { border-top-color: var(--sage); }
.ressource-card--gold { border-top-color: var(--gold-pale); }
.ressource-card--gold:hover { border-top-color: var(--gold); }

.ressource-card__tag {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: .9rem;
}
.ressource-card--sage .ressource-card__tag { color: var(--sage); }
.ressource-card--gold .ressource-card__tag { color: var(--gold); }

.ressource-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: .8rem;
  color: var(--ink);
}
.ressource-card p {
  font-size: .87rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.ressource-card__link {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .04em;
  transition: gap .2s, color .2s;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
}
.ressource-card--sage .ressource-card__link { color: var(--sage); }
.ressource-card--gold .ressource-card__link { color: var(--gold); }
.ressource-card__link:hover { gap: .6rem; }

.ressources__cta { text-align: center; margin-top: 1rem; }

/* ── RESPONSIVE RESSOURCES ────────────────────────────── */
@media (max-width: 900px) {
  .ressources-grid { grid-template-columns: 1fr; }
}

/* ── RESPONSIVE ───────────────────────────────────────── */
@media (max-width: 900px) {
  #hero               { grid-template-columns: 1fr; }
  .hero__left         { padding: 4rem 6vw; }
  .hero__right        { grid-template-rows: auto auto; }
  .audience-card      { padding: 2.5rem 6vw; }
  .apropos__grid      { grid-template-columns: 1fr; gap: 3rem; }
  .photo-wrap         { width: 380px; max-width: 100%; margin: 0 auto; }
  .photo-box          { width: 100%; }
  .stats-bar__inner   { grid-template-columns: repeat(2, 1fr); }
  .services-split     { grid-template-columns: 1fr; }
  .temoignages-grid   { grid-template-columns: 1fr; }
}
