/*
Theme Name: Christopher Gadoury Child
Theme URI: https://cgadoury.sportelite.ai
Description: Site vitrine 2 pages pour Christopher Gadoury — préparateur physique certifié. Thème enfant de Twenty Twenty-Five.
Author: TechSprint
Template: twentytwentyfive
Version: 1.0.0
License: GPL-2.0-or-later
Text Domain: cgadoury-child
*/

/* ===========================================================
   Christopher Gadoury — Préparateur physique certifié
   Design system shared across pages
   =========================================================== */

/* Google Fonts loaded via wp_enqueue_style in functions.php (no @import for perf) */

:root {
  --navy:        #15233F;
  --navy-800:    #1B2C4D;
  --navy-900:    #0E1830;
  --gold:        #F4B324;
  --gold-700:    #D89906;
  --gold-soft:   #FBE7B0;
  --gold-tint:   #FDF3D6;
  --green:       #2F7D38;
  --green-700:   #246029;
  --green-soft:  #E7F1E8;
  --cream:       #F6F4EE;
  --paper:       #FFFFFF;
  --ink:         #1A2336;
  --muted:       #5E6878;
  --line:        #E4E1D8;

  --radius:      14px;
  --radius-sm:   9px;
  --shadow-sm:   0 1px 2px rgba(21,35,63,.06), 0 4px 14px rgba(21,35,63,.06);
  --shadow-md:   0 8px 30px rgba(21,35,63,.12);
  --shadow-lg:   0 24px 60px rgba(14,24,48,.22);
  --container:   1180px;
  --ease:        cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: 'Barlow', system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: .01em;
  margin: 0;
  color: var(--navy);
}

p { margin: 0 0 1em; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Eyebrow with flanking gold rules ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 14px;
  color: var(--gold-700);
}
.eyebrow::before,
.eyebrow::after {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.eyebrow.solo::after { display: none; }
.eyebrow.solo::before { display: none; }
.eyebrow.lead::after { display: none; }
.eyebrow.on-dark { color: var(--gold); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: 15px;
  padding: 14px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), background .2s, color .2s, border-color .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 10px 24px rgba(244,179,36,.35);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(244,179,36,.45); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { transform: translateY(-2px); background: var(--navy-800); }
.btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.4); }
.btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }
.btn-ghost-navy { background: transparent; color: var(--navy); border-color: rgba(21,35,63,.25); }
.btn-ghost-navy:hover { border-color: var(--navy); background: rgba(21,35,63,.05); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-family: 'Oswald', sans-serif;
}
.brand-mark {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: var(--navy);
  color: var(--gold);
  display: grid; place-items: center;
  font-weight: 700; font-size: 20px;
  letter-spacing: .02em;
  flex: none;
}
.brand-name { font-weight: 700; font-size: 16px; line-height: 1.05; color: var(--navy); letter-spacing: .03em; white-space: nowrap; }
.brand-sub { font-family: 'Barlow', sans-serif; font-size: 10px; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 600; white-space: nowrap; }
.nav-links { display: flex; align-items: center; gap: 26px; }
.nav-links a { white-space: nowrap; }
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
  font-size: 15px;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--gold);
  transition: width .25s var(--ease);
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--gold-700); }
.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle svg { width: 28px; height: 28px; color: var(--navy); }

/* ---------- Sections ---------- */
section { position: relative; }
.section { padding: 96px 0; }
.section-head { max-width: 720px; }
.section-head.center { margin: 0 auto; text-align: center; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(32px, 4.4vw, 52px); text-transform: uppercase; }
.section-head p { color: var(--muted); margin-top: 16px; font-size: 18px; }

.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.bg-navy { background: var(--navy); color: #fff; }
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }

/* ---------- Cards ---------- */
.card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ---------- Reveal animation (transform-only: always legible even if the
   animation clock is throttled/frozen in a capture or background tab) ---------- */
.reveal { transform: translateY(22px); }
.reveal.in { animation: revealUp .7s var(--ease) forwards; }
.reveal.d1.in { animation-delay: .07s; }
.reveal.d2.in { animation-delay: .14s; }
.reveal.d3.in { animation-delay: .21s; }
.reveal.d4.in { animation-delay: .28s; }
@keyframes revealUp {
  from { transform: translateY(22px); }
  to   { transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal.in { transform: none !important; animation: none !important; }
  html { scroll-behavior: auto; }
}
/* Forced resting state — guarantees final layout even if the animation clock is throttled */
.reveal.rdone { animation: none !important; transform: none !important; }

/* ---------- Image placeholder ---------- */
.ph {
  position: relative;
  background:
    repeating-linear-gradient(135deg, rgba(21,35,63,.05) 0 12px, rgba(21,35,63,.09) 12px 24px),
    var(--cream);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  overflow: hidden;
  color: var(--muted);
}
.ph span {
  font-family: 'Barlow', monospace;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: rgba(255,255,255,.78);
  padding: 7px 13px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.ph.dark {
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,.05) 0 12px, rgba(255,255,255,.09) 12px 24px),
    var(--navy-800);
  border-color: rgba(255,255,255,.12);
}
.ph.dark span { background: rgba(14,24,48,.55); color: #cfd6e4; border-color: rgba(255,255,255,.15); }
.ph > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #cdd5e3; }
.footer-top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px; }
.footer-top h4 { color: #fff; text-transform: uppercase; letter-spacing: .12em; font-size: 15px; margin-bottom: 18px; }
.footer-col a { display: block; color: #aeb8cb; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-brand .brand-name { color: #fff; }
.footer-brand .brand-sub { color: #8c97ac; }
.footer-brand p { color: #97a2b8; margin-top: 16px; max-width: 320px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 14px; color: #8c97ac;
}
.social { display: flex; gap: 12px; }
.social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.18);
  display: grid; place-items: center; color: #cdd5e3;
  transition: all .2s;
}
.social a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); transform: translateY(-2px); }
.social svg { width: 18px; height: 18px; }

/* ---------- Contact band ---------- */
.contact-band {
  background: var(--navy);
  border-radius: var(--radius);
  color: #fff;
  padding: 30px 40px;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.contact-item { display: flex; align-items: center; gap: 14px; }
.contact-item .ci-icon {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--navy);
  display: grid; place-items: center; flex: none;
}
.contact-item .ci-icon svg { width: 20px; height: 20px; }
.contact-item .ci-label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: #9fb0cc; }
.contact-item .ci-value { font-family: 'Oswald', sans-serif; font-size: 21px; font-weight: 600; color: #fff; }
.contact-divider { width: 1px; height: 44px; background: rgba(255,255,255,.18); }

/* ---------- Utilities ---------- */
.text-gold { color: var(--gold); }
.text-green { color: var(--green); }
.mono-quote {
  font-family: 'Barlow', sans-serif;
  font-style: italic;
  font-weight: 500;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1000px) {
  .nav-links, .nav-cta .btn { display: none; }
  .nav-toggle { display: block; }
  .nav-cta { gap: 8px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .contact-band { gap: 22px; padding: 26px; }
  .contact-divider { display: none; }
}

/* ---------- Mobile drawer ---------- */
.drawer {
  position: fixed; inset: 0; z-index: 60;
  background: rgba(14,24,48,.5);
  backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer.open { opacity: 1; pointer-events: auto; }
.drawer-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: min(80%, 320px);
  background: var(--navy); padding: 28px 26px;
  transform: translateX(100%); transition: transform .35s var(--ease);
  display: flex; flex-direction: column; gap: 6px;
}
.drawer.open .drawer-panel { transform: none; }
.drawer-panel a {
  font-family: 'Oswald', sans-serif; text-transform: uppercase; letter-spacing: .08em;
  color: #fff; font-size: 22px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,.1);
}
.drawer-panel a:hover { color: var(--gold); }
.drawer-close { align-self: flex-end; background: none; border: 0; color: #fff; cursor: pointer; margin-bottom: 12px; }
.drawer-close svg { width: 30px; height: 30px; }
.drawer-panel .btn { margin-top: 22px; justify-content: center; }

/* ===========================================================
   Page-specific styles (merged from Accueil.html + Tarifs.html inline)
   =========================================================== */

/* ============ HOME PAGE ============ */
.hero {
  background:
    radial-gradient(1100px 600px at 78% -10%, rgba(244,179,36,.16), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  padding: 92px 0 100px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(46px, 7vw, 90px);
  text-transform: uppercase;
  letter-spacing: .005em;
  line-height: 1.12;
  margin-top: 22px;
}
.hero h1 .accent { color: var(--gold); display: block; }
.hero-lead { color: #c7d0e2; font-size: 20px; max-width: 480px; margin: 24px 0 14px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 26px 0 34px; }
.hero-tags span {
  font-family: 'Oswald', sans-serif; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16);
  padding: 8px 15px; border-radius: 999px; color: #dde4f0;
}
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-media { position: relative; }
.hero-photo { aspect-ratio: 4/5; border-radius: 18px; box-shadow: var(--shadow-lg); }
.hero-badge {
  position: absolute; left: -26px; bottom: 36px;
  background: var(--gold); color: var(--navy);
  border-radius: 14px; padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 14px; max-width: 250px;
}
.hero-badge .hb-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 38px; line-height: 1; }
.hero-badge .hb-txt { font-size: 13px; font-weight: 600; line-height: 1.25; }
.hero-quote {
  position: absolute; right: -18px; top: 30px;
  background: #fff; color: var(--navy); border-radius: 14px;
  padding: 14px 18px; box-shadow: var(--shadow-md); max-width: 210px;
  font-style: italic; font-weight: 500; font-size: 14px;
  border-left: 4px solid var(--green);
}

/* ---- Stats strip ---- */
.stats { background: var(--gold); }
.stats-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: 30px 24px; text-align: center; border-right: 1px solid rgba(21,35,63,.16); }
.stat:last-child { border-right: 0; }
.stat .s-num { font-family: 'Oswald', sans-serif; font-weight: 700; font-size: 42px; color: var(--navy); line-height: 1; }
.stat .s-lbl { font-size: 13px; letter-spacing: .12em; text-transform: uppercase; color: var(--navy-800); font-weight: 600; margin-top: 8px; }

/* ---- Services ---- */
.svc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; }
.svc {
  display: flex; flex-direction: column;
  padding: 30px; border-radius: var(--radius);
  background: var(--paper); border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s, border-color .3s;
}
.svc:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: var(--gold-soft); }
.svc-icon {
  width: 56px; height: 56px; border-radius: 14px; display: grid; place-items: center;
  background: var(--navy); color: var(--gold); margin-bottom: 20px;
}
.svc.green .svc-icon { background: var(--green); color: #fff; }
.svc.gold .svc-icon { background: var(--gold); color: var(--navy); }
.svc-icon svg { width: 28px; height: 28px; }
.svc h3 { font-size: 23px; text-transform: uppercase; margin-bottom: 10px; }
.svc p { color: var(--muted); margin-bottom: 18px; }
.svc .svc-link {
  margin-top: auto; font-family: 'Oswald', sans-serif; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; font-size: 14px; color: var(--gold-700);
  display: inline-flex; align-items: center; gap: 8px;
}
.svc .svc-link svg { width: 16px; height: 16px; transition: transform .25s var(--ease); }
.svc:hover .svc-link svg { transform: translateX(5px); }

/* ---- Included block ---- */
.incl-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.incl-photo { aspect-ratio: 5/6; border-radius: 18px; }
.incl-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 16px; }
.incl-list li { display: flex; align-items: flex-start; gap: 14px; font-size: 18px; }
.incl-check {
  width: 30px; height: 30px; border-radius: 50%; background: var(--green); color: #fff;
  display: grid; place-items: center; flex: none; margin-top: 1px;
}
.incl-check svg { width: 17px; height: 17px; }

/* ---- About ---- */
.about-wrap { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: center; }
.about-photo { aspect-ratio: 4/5; border-radius: 18px; }
.about-text p { font-size: 18px; color: #3a4458; }
.about-sign {
  font-family: 'Oswald', sans-serif; font-weight: 600; font-size: 22px;
  color: var(--navy); margin-top: 8px;
}
.about-sign small { display: block; font-family: 'Barlow', sans-serif; font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-700); margin-top: 4px; }
.credns { display: flex; gap: 28px; margin-top: 26px; flex-wrap: wrap; }
.cred { display: flex; align-items: center; gap: 12px; }
.cred .c-ic { width: 40px; height: 40px; border-radius: 10px; background: var(--gold-tint); color: var(--gold-700); display: grid; place-items: center; }
.cred .c-ic svg { width: 20px; height: 20px; }
.cred b { font-family: 'Oswald', sans-serif; font-size: 16px; color: var(--navy); }
.cred span { font-size: 13px; color: var(--muted); display: block; }

/* ---- Motto band ---- */
.motto {
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(244,179,36,.14), transparent 60%),
    var(--navy);
  color: #fff; text-align: center;
}
.motto .container { padding-top: 80px; padding-bottom: 80px; }
.motto h2 { color: #fff; font-size: clamp(30px, 4.4vw, 52px); text-transform: uppercase; margin: 16px 0 0; }
.motto .quote { font-size: clamp(20px, 2.6vw, 28px); color: var(--gold); font-style: italic; font-weight: 500; max-width: 760px; margin: 0 auto; }
.motto .divider { width: 60px; height: 3px; background: var(--gold); margin: 28px auto; border-radius: 3px; }

/* ---- Final CTA ---- */
.cta-final { background: var(--cream); }
.cta-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-md); padding: 56px; text-align: center;
  background-image: radial-gradient(600px 300px at 50% -20%, var(--gold-tint), transparent 70%);
}
.cta-box h2 { font-size: clamp(30px, 4vw, 46px); text-transform: uppercase; }
.cta-box p { color: var(--muted); max-width: 520px; margin: 16px auto 30px; font-size: 18px; }
.cta-box .hero-cta { justify-content: center; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 44px; padding: 64px 0 72px; }
  .hero-media { max-width: 420px; }
  .svc-grid { grid-template-columns: 1fr; }
  .incl-wrap, .about-wrap { grid-template-columns: 1fr; gap: 34px; }
  .incl-photo, .about-photo { max-width: 460px; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(21,35,63,.16); }
}
@media (max-width: 760px) {
  .cta-box { padding: 36px 22px; }
  .hero-quote { display: none; }
  .hero-badge { left: 8px; }
}

/* ============ TARIFS PAGE ============ */
.page-hero {
  background:
    radial-gradient(900px 500px at 80% -20%, rgba(244,179,36,.16), transparent 60%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-900) 100%);
  color: #fff; padding: 70px 0 88px; text-align: center;
}
.page-hero h1 { color:#fff; font-size: clamp(42px, 6.5vw, 78px); text-transform: uppercase; margin-top: 16px; }
.page-hero h1 .y { color: var(--gold); }
.page-hero p { color:#c7d0e2; max-width: 600px; margin: 18px auto 0; font-size: 19px; }

.pricing { margin-top: -56px; padding-bottom: 96px; }

/* Programmes table */
.prog-card { padding: 0; overflow: hidden; }
.prog-head {
  display: flex; align-items: center; gap: 16px;
  padding: 26px 30px; border-bottom: 1px solid var(--line);
}
.prog-head .ph-ic { width: 50px; height: 50px; border-radius: 12px; background: var(--green); color:#fff; display:grid; place-items:center; flex:none; }
.prog-head .ph-ic svg { width: 26px; height: 26px; }
.prog-head h2 { font-size: 25px; text-transform: uppercase; line-height: 1.32; padding-top: 2px; text-wrap: balance; }
.prog-head > div { display: flex; flex-direction: column; gap: 5px; }
.prog-head .ph-sub { color: var(--muted); font-size: 14px; }

.ptable { width: 100%; border-collapse: collapse; }
.ptable thead th {
  background: var(--navy); color:#fff; text-align: left;
  font-family:'Oswald',sans-serif; font-weight:600; letter-spacing:.04em;
  padding: 18px 30px; font-size: 16px; text-transform: uppercase;
}
.ptable thead th:first-child { width: 28%; }
.ptable thead th.best { background: var(--gold); color: var(--navy); position: relative; }
.ptable tbody td { padding: 22px 30px; border-bottom: 1px solid var(--line); font-size: 18px; }
.ptable tbody tr:last-child td { border-bottom: 0; }
.ptable tbody tr:nth-child(even) { background: #FAF9F5; }
.ptable .dur { font-family:'Oswald',sans-serif; font-weight:600; font-size: 20px; color: var(--navy); }
.ptable .price { font-family:'Oswald',sans-serif; font-weight:700; font-size: 24px; color: var(--ink); }
.ptable td.best { background: var(--gold-tint); }
.ptable td.best .price { color: var(--gold-700); }
.tag-best {
  display:inline-block; font-family:'Barlow',sans-serif; font-size: 11px; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; background: var(--navy); color: var(--gold);
  padding: 3px 9px; border-radius: 999px; margin-left: 10px; vertical-align: middle;
}

/* two-up: coaching privé + included */
.two-up { display: grid; grid-template-columns: 1fr 1.05fr; gap: 24px; margin-top: 24px; }
.mini-card { padding: 30px; }
.mini-head { display:flex; align-items:center; gap:14px; margin-bottom: 22px; }
.mini-head .m-ic { width: 46px; height: 46px; border-radius: 11px; display:grid; place-items:center; flex:none; }
.mini-head.green .m-ic { background: var(--green); color:#fff; }
.mini-head.gold .m-ic { background: var(--gold); color: var(--navy); }
.mini-head .m-ic svg { width: 24px; height: 24px; }
.mini-head h3 { font-size: 22px; text-transform: uppercase; }

.srv-table { width:100%; border-collapse: collapse; }
.srv-table th { text-align:left; background: var(--green-soft); color: var(--green-700); font-family:'Oswald',sans-serif; font-weight:600; text-transform:uppercase; letter-spacing:.05em; font-size:14px; padding: 13px 18px; }
.srv-table th:last-child { text-align:right; }
.srv-table td { padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 17px; }
.srv-table tr:last-child td { border-bottom: 0; }
.srv-table td:last-child { text-align:right; font-family:'Oswald',sans-serif; font-weight:700; font-size:21px; color: var(--navy); }

.incl-list2 { list-style:none; padding:0; margin:0; display:grid; gap:14px; }
.incl-list2 li { display:flex; align-items:flex-start; gap:12px; font-size:17px; }
.incl-list2 .ck { width:26px;height:26px;border-radius:50%;background:var(--green);color:#fff;display:grid;place-items:center;flex:none;margin-top:1px; }
.incl-list2 .ck svg { width:15px;height:15px; }

/* group + family */
.three-up { display:grid; grid-template-columns: 1.15fr 1fr; gap: 24px; margin-top: 24px; }
.group-card { padding: 30px; }
.family-card {
  background: var(--navy); color:#fff; border-radius: var(--radius); padding: 34px;
  display:flex; flex-direction:column; justify-content:center; position: relative; overflow:hidden;
}
.family-card::after {
  content:""; position:absolute; right:-30px; bottom:-30px; width:160px; height:160px;
  border: 14px solid var(--gold); border-radius:50%; opacity:.16;
}
.family-card .fc-ic { width:54px;height:54px;border-radius:50%;border:2px solid var(--gold);color:var(--gold);display:grid;place-items:center;margin-bottom:18px; }
.family-card .fc-ic svg { width:28px;height:28px; }
.family-card h3 { color:#fff; font-size: 24px; text-transform:uppercase; }
.family-card .big { font-family:'Oswald',sans-serif; font-weight:700; font-size: 44px; color: var(--gold); line-height:1; margin: 8px 0; }
.family-card p { color:#c7d0e2; margin:0; }

/* notes */
.notes-card { padding: 30px; margin-top: 24px; border-left: 5px solid var(--gold); }
.notes-card .mini-head .m-ic { background: var(--gold-tint); color: var(--gold-700); }
.notes-list { list-style:none; padding:0; margin:0; display:grid; gap:12px; }
.notes-list li { display:flex; align-items:flex-start; gap:12px; color:#3a4458; font-size:16px; }
.notes-list .dot { width:8px;height:8px;border-radius:50%;background:var(--gold);flex:none;margin-top:9px; }

/* contact section */
.contact-sec { padding: 90px 0; }
.contact-grid { display:grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info .eyebrow { margin-bottom: 16px; }
.contact-info h2 { font-size: clamp(30px,4vw,46px); text-transform:uppercase; }
.contact-info p { color: var(--muted); font-size: 18px; margin-top: 14px; }
.contact-list { display:grid; gap:16px; margin-top: 28px; }
.cl-item { display:flex; align-items:center; gap:16px; background: var(--paper); border:1px solid var(--line); border-radius: 12px; padding: 16px 20px; box-shadow: var(--shadow-sm); transition: transform .2s, box-shadow .2s; }
.cl-item:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.cl-item .cl-ic { width:48px;height:48px;border-radius:50%;background:var(--gold);color:var(--navy);display:grid;place-items:center;flex:none; }
.cl-item .cl-ic svg { width:22px;height:22px; }
.cl-item > span + span { display:flex; flex-direction:column; gap:3px; min-width:0; }
.cl-item .cl-lbl { display:block; font-size:12px; letter-spacing:.14em; text-transform:uppercase; color: var(--muted); line-height:1.2; }
.cl-item .cl-val { display:block; font-family:'Oswald',sans-serif; font-weight:600; font-size:19px; color: var(--navy); line-height:1.2; word-break:break-word; }

.form-card { background: var(--paper); border:1px solid var(--line); border-radius: 18px; box-shadow: var(--shadow-md); padding: 36px; }
.form-card h3 { font-size:24px; text-transform:uppercase; margin-bottom: 6px; }
.form-card .fc-sub { color: var(--muted); font-size:15px; margin-bottom: 24px; }
.field { margin-bottom: 18px; }
.field label { display:block; font-family:'Oswald',sans-serif; font-weight:500; letter-spacing:.04em; text-transform:uppercase; font-size:13px; color: var(--navy); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width:100%; padding: 13px 15px; border:1.5px solid var(--line); border-radius: 10px;
  font-family:'Barlow',sans-serif; font-size:16px; color: var(--ink); background:#fff; transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline:none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(244,179,36,.18); }
.field textarea { resize: vertical; min-height: 110px; }
.two-fields { display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-card .btn { width:100%; justify-content:center; margin-top: 8px; }
.form-note { font-size:13px; color: var(--muted); text-align:center; margin-top:14px; }

/* Fluent Forms style overrides to match design */
.form-card .ff-el-group { margin-bottom: 18px; }
.form-card .ff-el-input--label label,
.form-card .frm-fluent-form label {
  display:block; font-family:'Oswald',sans-serif; font-weight:500; letter-spacing:.04em;
  text-transform:uppercase; font-size:13px; color: var(--navy); margin-bottom: 7px;
}
.form-card .ff-el-form-control,
.form-card .frm-fluent-form input[type="text"],
.form-card .frm-fluent-form input[type="email"],
.form-card .frm-fluent-form input[type="tel"],
.form-card .frm-fluent-form select,
.form-card .frm-fluent-form textarea {
  width:100%; padding: 13px 15px; border:1.5px solid var(--line); border-radius: 10px;
  font-family:'Barlow',sans-serif; font-size:16px; color: var(--ink); background:#fff;
  transition: border-color .2s, box-shadow .2s;
}
.form-card .ff-el-form-control:focus,
.form-card .frm-fluent-form input:focus,
.form-card .frm-fluent-form select:focus,
.form-card .frm-fluent-form textarea:focus {
  outline:none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(244,179,36,.18);
}
.form-card .ff-btn-submit,
.form-card .frm-fluent-form button[type="submit"] {
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  font-family:'Oswald',sans-serif; font-weight:600; letter-spacing:.06em; text-transform:uppercase;
  font-size:15px; padding:14px 26px; border-radius:999px; border:2px solid transparent;
  background: var(--gold); color: var(--navy);
  box-shadow: 0 10px 24px rgba(244,179,36,.35);
  width:100%; cursor:pointer; transition: transform .25s var(--ease), box-shadow .25s;
}
.form-card .ff-btn-submit:hover,
.form-card .frm-fluent-form button[type="submit"]:hover {
  transform: translateY(-2px); box-shadow: 0 14px 30px rgba(244,179,36,.45);
}

@media (max-width: 900px) {
  .two-up, .three-up, .contact-grid { grid-template-columns: 1fr; }
  .pricing { margin-top: -40px; }
}
@media (max-width: 600px) {
  .ptable thead th, .ptable tbody td { padding-left:16px; padding-right:16px; }
  .ptable thead th { font-size: 13px; }
  .ptable .price { font-size: 20px; }
  .prog-head { padding: 20px; }
  .two-fields { grid-template-columns: 1fr; }
}

/* ===========================================================
   WordPress block-editor neutralizations
   Twenty Twenty-Five injects defaults that fight our cream/navy.
   =========================================================== */
.wp-site-blocks { background: var(--cream); }
.entry-content > * { margin-top: 0; margin-bottom: 0; }
.wp-block-post-content { max-width: none !important; }
.wp-block-group.has-background { padding: 0; }
.wp-block-html { line-height: 1.6; }


/* === FIX V2: Position fixed (sticky cassé par TT5 wrapper) === */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  width: 100% !important;
  z-index: 1000 !important;
}
/* Compensate the fixed header height (76px = header height) */
.wp-site-blocks {
  padding-top: 76px;
}
/* Ensure parent wrapper doesn't constrain or hide */
.wp-block-template-part:has(> .site-header),
header.wp-block-template-part {
  position: relative;
  z-index: auto;
  background: transparent;
}
/* Mobile : header height plus petit */
@media (max-width: 768px) {
  .wp-site-blocks {
    padding-top: 64px;
  }
}
/* fin fix sticky v2 */


/* === FIX V3: scroll-padding pour ancrages (#services, #apropos, #contact) === */
html {
  scroll-padding-top: 96px;
}
@media (max-width: 768px) {
  html {
    scroll-padding-top: 80px;
  }
}
#services, #apropos, #contact,
[id] {
  scroll-margin-top: 96px;
}
/* fin fix scroll padding */
