/*
Theme Name : PALA V - Maquette
Description : Maquette HTML statique destinee a etre portee en theme enfant WordPress.
Version : 0.1.0
Author : Agence SW
Structure calquee sur un theme WP : .site-header, .main-navigation, .entry-content, .site-footer
*/

/* ==========================================================================
   1. Variables et reset
   ========================================================================== */
:root {
  /* Couleurs initiales conservees pour compatibilite ; la refonte PALA V surcharge ces variables en fin de fichier. */
  --c-navy: #0d1b2a;
  --c-navy-2: #16283f;
  --c-green: #330072;      /* violet marque PALA V */
  --c-green-d: #250052;
  --c-orange: #330072;     /* violet marque PALA V */
  --c-orange-d: #250052;
  --c-bg: #f6f7f9;
  --c-white: #ffffff;
  --c-text: #22303f;
  --c-muted: #64748b;
  --c-border: #e2e8f0;

  --font-head: "Barlow Condensed", "Arial Narrow", sans-serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;

  --radius: 12px;
  --shadow: 0 6px 24px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 14px 40px rgba(13, 27, 42, 0.16);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--c-green-d); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  color: var(--c-navy);
  margin: 0 0 0.5em;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.4rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

.container {
  width: min(var(--container), 92%);
  margin-inline: auto;
}

.section { padding: 72px 0; }
.section--alt { background: var(--c-white); }
.section--dark { background: var(--c-navy); color: #d7e0ea; }
.section--dark h2, .section--dark h3 { color: var(--c-white); }

.section-head { max-width: 720px; margin: 0 auto 44px; text-align: center; }
.section-head .kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 6px;
}
.section-head p { color: var(--c-muted); margin: 0; }
.section--dark .section-head p { color: #9fb2c5; }

/* ==========================================================================
   2. Boutons
   ========================================================================== */
.btn {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 13px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  text-decoration: none;
}
.btn:hover { text-decoration: none; transform: translateY(-2px); box-shadow: var(--shadow); }

.btn--primary { background: var(--c-green); color: var(--c-white); }
.btn--primary:hover { background: var(--c-green-d); color: var(--c-white); }

.btn--orange { background: var(--c-orange); color: var(--c-white); }
.btn--orange:hover { background: var(--c-orange-d); color: var(--c-white); }

.btn--ghost { border-color: var(--c-white); color: var(--c-white); background: transparent; }
.btn--ghost:hover { background: var(--c-white); color: var(--c-navy); }

.btn--ghost-dark { border-color: var(--c-navy); color: var(--c-navy); background: transparent; }
.btn--ghost-dark:hover { background: var(--c-navy); color: var(--c-white); }

.btn--whatsapp { background: #25d366; color: #fff; }
.btn--whatsapp:hover { background: #1eb857; color: #fff; }

/* ==========================================================================
   3. Header / navigation (equivalent header.php)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--c-navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo:hover { text-decoration: none; }
.site-logo__mark {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--c-green) 0 50%, var(--c-orange) 50% 100%);
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--c-white);
}
.site-logo__text {
  font-family: var(--font-head);
  font-size: 1.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-white);
  text-transform: uppercase;
}
.site-logo__text span { color: var(--c-orange); }
.site-logo__tagline {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: #8da4bb;
  white-space: nowrap;
}

.main-navigation ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-navigation a {
  display: block;
  padding: 24px 13px;
  color: #cfdae6;
  font-size: 0.92rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}
.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--c-white); }
.main-navigation .current-menu-item > a { box-shadow: inset 0 -3px 0 var(--c-orange); }

/* Sous-menus */
.menu-item-has-children { position: relative; }
.menu-item-has-children > a::after { content: " \25BE"; font-size: 0.7em; }
.sub-menu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 230px;
  background: var(--c-white);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0 !important;
  display: none !important;
  flex-direction: column;
  align-items: stretch;
}
.menu-item-has-children:hover .sub-menu,
.menu-item-has-children:focus-within .sub-menu { display: flex !important; }
.sub-menu a { color: var(--c-navy) !important; padding: 10px 18px; box-shadow: none !important; }
.sub-menu a:hover { background: var(--c-bg); }

.header-cta { display: flex; align-items: center; gap: 10px; }
.header-cta .btn { padding: 10px 22px; font-size: 0.95rem; }

/* Burger mobile */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 3px;
  margin-inline: auto;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

/* ==========================================================================
   4. Hero
   ========================================================================== */
.hero {
  position: relative;
  background:
    radial-gradient(900px 420px at 85% 15%, rgba(244,119,46,0.28), transparent 60%),
    radial-gradient(800px 460px at 10% 85%, rgba(20,160,90,0.30), transparent 60%),
    linear-gradient(155deg, var(--c-navy) 0%, var(--c-navy-2) 100%);
  color: var(--c-white);
  padding: 96px 0;
  overflow: hidden;
}
.hero--page { padding: 64px 0; }

.hero__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero h1 { color: var(--c-white); }
.hero h1 .accent-green { color: #3ddc84; }
.hero h1 .accent-orange { color: #ff9b57; }
.hero__lead { font-size: 1.12rem; color: #c4d2e0; max-width: 560px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.badge {
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.18);
  color: #dbe6f1;
}

.breadcrumb { font-size: 0.85rem; color: #8da4bb; margin-bottom: 14px; }
.breadcrumb a { color: #b9c9d9; }

/* ==========================================================================
   5. Placeholders visuels (a remplacer par vraies photos)
   ========================================================================== */
.ph {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 220px;
  color: rgba(255,255,255,0.92);
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 16px;
  background: linear-gradient(135deg, var(--c-navy-2), var(--c-navy));
}
.ph::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ph > * { position: relative; }
.ph--green { background: linear-gradient(135deg, var(--c-green-d), #0a5c33); }
.ph--orange { background: linear-gradient(135deg, var(--c-orange-d), #a34612); }
.ph--tall { min-height: 420px; }
.ph--short { min-height: 160px; }

/* ==========================================================================
   6. Cartes et grilles
   ========================================================================== */
.grid { display: grid; gap: 26px; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 30px;
  border-top: 4px solid transparent;
}
.card--green { border-top-color: var(--c-green); }
.card--orange { border-top-color: var(--c-orange); }
.card--navy { border-top-color: var(--c-navy); }
.card h3 { margin-top: 0; }
.card .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  display: grid; place-items: center;
  font-size: 1.5rem;
  margin-bottom: 16px;
  background: var(--c-bg);
}

.card--flat { box-shadow: none; border: 1px solid var(--c-border); }

/* Chiffres cles */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat__num {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 800;
  color: var(--c-white);
  line-height: 1;
}
.stat__num .unit { font-size: 0.5em; color: var(--c-orange); }
.stat__label { font-size: 0.9rem; color: #9fb2c5; margin-top: 6px; }

/* Listes a coches */
.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li { padding: 7px 0 7px 30px; position: relative; }
.checklist li::before {
  content: "\2713";
  position: absolute; left: 0; top: 7px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--c-green);
  color: #fff;
  font-size: 0.72rem;
  display: grid; place-items: center;
}
.checklist--orange li::before { background: var(--c-orange); }
.checklist--cross li::before { content: "\2715"; background: #cbd5e1; }

/* ==========================================================================
   7. Tarifs
   ========================================================================== */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  font-size: 0.95rem;
}
.pricing-table th, .pricing-table td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--c-border); }
.pricing-table thead th {
  background: var(--c-navy);
  color: var(--c-white);
  font-family: var(--font-head);
  font-size: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table .price { font-weight: 700; color: var(--c-navy); white-space: nowrap; }

.table-scroll { overflow-x: auto; }

.plan {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 34px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.plan--featured { border: 2px solid var(--c-green); box-shadow: var(--shadow-lg); }
.plan__flag {
  position: absolute; top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--c-green);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan__price {
  font-family: var(--font-head);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-navy);
  line-height: 1;
  margin: 10px 0 2px;
}
.plan__price .unit { font-size: 0.42em; color: var(--c-muted); font-weight: 600; }
.plan__sub { color: var(--c-muted); font-size: 0.88rem; margin-bottom: 18px; }
.plan .checklist { flex: 1; margin-bottom: 22px; }
.plan .btn { align-self: stretch; text-align: center; }

/* ==========================================================================
   8. Etapes (comment reserver)
   ========================================================================== */
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.step {
  counter-increment: step;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;
}
.step::before {
  content: counter(step);
  display: grid; place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-orange);
  color: #fff;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}
.step h3 { font-size: 1.15rem; }
.step p { font-size: 0.92rem; color: var(--c-muted); margin: 0; }

/* ==========================================================================
   9. Equipe / associes
   ========================================================================== */
.team-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: center;
}
.team-card__photo { aspect-ratio: 3 / 3.4; overflow: hidden; }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.team-card__photo .ph { border-radius: 0; height: 100%; min-height: 0; }
.team-card__avatar {
  height: 100%;
  display: grid; place-items: center;
  font-family: var(--font-head);
  font-size: 4rem;
  font-weight: 800;
  color: rgba(255,255,255,0.85);
}
.team-card__pending {
  align-content: center;
  gap: 10px;
}
.team-card__photo-note {
  position: relative;
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
.team-card__body { padding: 22px 20px 26px; }
.team-card__role {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-orange);
  margin-bottom: 6px;
}
.team-card h3 { margin-bottom: 8px; }
.team-card p { font-size: 0.88rem; color: var(--c-muted); margin: 0; }
.team-card__legal {
  color: var(--c-purple) !important;
  font-size: 0.74rem !important;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px !important;
}
.photo-credit { font-size: 0.75rem; color: var(--c-muted); margin-top: 6px; }

/* ==========================================================================
   10. Avis clients
   ========================================================================== */
.review {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
}
.review__stars { color: #f5b301; letter-spacing: 2px; margin-bottom: 10px; }
.review p { font-style: italic; color: var(--c-text); }
.review footer { font-size: 0.85rem; color: var(--c-muted); font-style: normal; }
.review footer strong { color: var(--c-navy); }

/* ==========================================================================
   11. Galerie
   ========================================================================== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery .ph { min-height: 240px; }
.gallery .ph--wide { grid-column: span 2; }

/* ==========================================================================
   12. FAQ (accordeon)
   ========================================================================== */
.faq-item {
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 20px 54px 20px 24px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--c-navy);
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute; right: 22px; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--c-bg);
  display: grid; place-items: center;
  font-size: 1.2rem;
  color: var(--c-orange);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "\2212"; }
.faq-item .faq-answer { padding: 0 24px 22px; color: var(--c-muted); }

/* ==========================================================================
   13. Bandeaux CTA
   ========================================================================== */
.cta-band {
  background:
    radial-gradient(600px 300px at 90% 20%, rgba(244,119,46,0.35), transparent 60%),
    linear-gradient(135deg, var(--c-green-d), var(--c-navy));
  border-radius: var(--radius);
  color: var(--c-white);
  padding: 52px 48px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.cta-band h2 { color: var(--c-white); margin: 0 0 6px; }
.cta-band p { margin: 0; color: #d3e6da; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Encart appli */
.app-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 44px;
}
.store-badges { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 20px; }
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--c-navy);
  color: #fff;
  border-radius: 10px;
  padding: 10px 18px;
  text-decoration: none;
  line-height: 1.15;
}
.store-badge:hover { background: var(--c-navy-2); text-decoration: none; color: #fff; }
.store-badge small { display: block; font-size: 0.7rem; opacity: 0.75; }
.store-badge strong { font-size: 0.95rem; }
.store-badge .sb-icon { font-size: 1.5rem; }

/* ==========================================================================
   14. Partenaires
   ========================================================================== */
.partners { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.partner-logo {
  background: var(--c-white);
  border: 1px dashed var(--c-border);
  border-radius: 10px;
  min-height: 90px;
  display: grid; place-items: center;
  color: var(--c-muted);
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-align: center;
  padding: 10px;
}

/* ==========================================================================
   15. Infos pratiques / contact
   ========================================================================== */
.info-line { display: flex; gap: 14px; align-items: flex-start; padding: 12px 0; border-bottom: 1px solid var(--c-border); }
.info-line:last-child { border-bottom: 0; }
.info-line .icon { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: var(--c-bg); display: grid; place-items: center; font-size: 1.1rem; }
.info-line strong { display: block; color: var(--c-navy); }
.info-line span { color: var(--c-muted); font-size: 0.92rem; }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.hours-table td { padding: 8px 0; border-bottom: 1px solid var(--c-border); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--c-navy); }

.map-placeholder { min-height: 340px; }

/* Formulaire (structure type Gravity Forms) */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-weight: 600; font-size: 0.9rem; color: var(--c-navy); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1px solid var(--c-border);
  border-radius: 8px;
  background: var(--c-white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--c-green);
  outline-offset: 1px;
  border-color: var(--c-green);
}

/* ==========================================================================
   16. Actualites / evenements
   ========================================================================== */
.post-card {
  background: var(--c-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}
.post-card__body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.post-card__meta { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-orange); margin-bottom: 8px; }
.post-card h3 { font-size: 1.25rem; }
.post-card p { font-size: 0.92rem; color: var(--c-muted); flex: 1; }
.post-card .more { font-weight: 600; }

.event-row {
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 22px;
  align-items: center;
  background: var(--c-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px 24px;
  margin-bottom: 14px;
}
.event-date {
  text-align: center;
  background: var(--c-navy);
  color: #fff;
  border-radius: 10px;
  padding: 10px 6px;
  font-family: var(--font-head);
}
.event-date .day { display: block; font-size: 1.8rem; font-weight: 800; line-height: 1; }
.event-date .month { display: block; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-orange); }
.event-row h3 { margin: 0 0 4px; font-size: 1.2rem; }
.event-row p { margin: 0; font-size: 0.9rem; color: var(--c-muted); }

.tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 999px;
  margin-right: 6px;
}
.tag--padel { background: rgba(20,160,90,0.12); color: var(--c-green-d); }
.tag--basket { background: rgba(244,119,46,0.14); color: var(--c-orange-d); }

/* ==========================================================================
   17. Footer (equivalent footer.php)
   ========================================================================== */
.site-footer { background: var(--c-navy); color: #9fb2c5; padding: 64px 0 0; font-size: 0.92rem; }
.site-footer a { color: #cfdae6; }
.site-footer a:hover { color: var(--c-white); }
.footer-widgets {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 44px;
}
.footer-widgets h3 {
  color: var(--c-white);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-widgets ul { list-style: none; margin: 0; padding: 0; }
.footer-widgets li { padding: 6px 0; }
.footer-widgets a { display: inline-block; padding: 2px 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  font-size: 0.8rem;
}

/* ==========================================================================
   18. Divers
   ========================================================================== */
.note {
  background: #fff8ed;
  border-left: 4px solid var(--c-orange);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  font-size: 0.9rem;
  color: #7c5a2e;
}

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.split--rev > :first-child { order: 2; }

.sport-panel { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--c-white); }
.sport-panel__head { padding: 28px 30px 0; }
.sport-panel__body { padding: 20px 30px 30px; }

/* ==========================================================================
   19. Responsive
   ========================================================================== */
@media (max-width: 1080px) {
  .main-navigation a { padding: 24px 9px; font-size: 0.85rem; }
}

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .stats { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .hero__grid, .split, .app-panel { grid-template-columns: 1fr; }
  .split--rev > :first-child { order: 0; }
  .partners { grid-template-columns: repeat(3, 1fr); }
  .footer-widgets { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery .ph--wide { grid-column: span 2; }

  .site-header__inner { gap: 12px; }

  /* Menu mobile */
  .nav-toggle { display: flex; }
  .main-navigation {
    position: fixed;
    inset: 72px 0 0 0;
    background: var(--c-navy);
    overflow-y: auto;
    display: none;
    padding: 20px 4%;
  }
  .main-navigation.is-open { display: block; }
  .main-navigation ul { flex-direction: column; align-items: stretch; gap: 0; }
  .main-navigation a { padding: 14px 8px; font-size: 1.05rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .main-navigation .current-menu-item > a { box-shadow: inset 3px 0 0 var(--c-orange); }
  .sub-menu {
    position: static;
    display: flex !important;
    box-shadow: none;
    background: transparent;
    padding: 0 0 0 18px !important;
  }
  .sub-menu a { color: #9fb2c5 !important; }
  .header-cta .btn--ghost { display: none; }
}

@media (max-width: 480px) {
  /* La tagline ferait deborder le header et fausserait sa hauteur (menu mobile cale a 72px) */
  .site-logo__tagline { display: none; }
  .header-cta .btn { padding: 9px 16px; font-size: 0.85rem; }
}

@media (max-width: 620px) {
  .section { padding: 52px 0; }
  .grid--2, .grid--3, .grid--4, .steps { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: 1fr; }
  .gallery .ph--wide { grid-column: auto; }
  .partners { grid-template-columns: repeat(2, 1fr); }
  .footer-widgets { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .event-row { grid-template-columns: 72px 1fr; }
  .event-row .btn { grid-column: 1 / -1; text-align: center; }
  .cta-band { padding: 36px 26px; }
  .app-panel { padding: 30px 24px; }
  .hero { padding: 64px 0; }
}

/* ==========================================================================
   20. Refonte premium PALA V - charte issue du logo
   ========================================================================== */
:root {
  --c-navy: #09070d;
  --c-navy-2: #141019;
  --c-green: #330072;
  --c-green-d: #250052;
  --c-orange: #330072;
  --c-orange-d: #250052;
  --c-purple: #330072;
  --c-purple-2: #330072;
  --c-gold: #d8b66a;
  --c-ink: #09070d;
  --c-bg: #f5f2ec;
  --c-surface: #fffdf8;
  --c-white: #ffffff;
  --c-text: #1c1822;
  --c-muted: #746c7d;
  --c-border: #dfd7ca;
  --font-head: Georgia, "Times New Roman", serif;
  --font-body: "Inter", "Segoe UI", Arial, sans-serif;
  --radius: 8px;
  --shadow: 0 18px 46px rgba(9, 7, 13, 0.08);
  --shadow-lg: 0 26px 70px rgba(9, 7, 13, 0.18);
}

body {
  color: var(--c-text);
  background:
    linear-gradient(90deg, rgba(9, 7, 13, 0.035) 1px, transparent 1px),
    linear-gradient(#f8f5ef, #eee8dc);
  background-size: 48px 48px, auto;
}

a { color: var(--c-purple); }

h1, h2, h3, h4 {
  color: var(--c-ink);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
}

h1 {
  font-size: clamp(2.85rem, 5.8vw, 5.1rem);
  line-height: 0.95;
}

h2 {
  font-size: clamp(2rem, 4.2vw, 3.8rem);
  line-height: 1;
}

h3 { font-size: clamp(1.25rem, 2vw, 1.65rem); }

.section {
  position: relative;
  padding: 92px 0;
}

.section--alt {
  background: rgba(255, 253, 248, 0.78);
  border-block: 1px solid rgba(9, 7, 13, 0.08);
}

.section--dark {
  background:
    linear-gradient(130deg, rgba(51, 0, 114, 0.22), transparent 42%),
    #09070d;
  color: #eee9f7;
  border-block: 1px solid rgba(216, 182, 106, 0.24);
}

.section-head .kicker,
.kicker {
  color: var(--c-purple-2) !important;
  font-family: var(--font-body) !important;
  font-size: 0.74rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.24em !important;
}

.section-head p,
.step p,
.card p,
.post-card p,
.info-line span,
.event-row p { color: var(--c-muted); }

.btn {
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 15px 26px;
  box-shadow: none;
}

.btn--primary,
.btn--orange {
  background: var(--c-purple);
  border-color: var(--c-purple);
  color: #fff;
}

.btn--primary:hover,
.btn--orange:hover {
  background: #fff;
  border-color: var(--c-purple);
  color: var(--c-purple);
  box-shadow: 0 16px 34px rgba(51, 0, 114, 0.18);
}

.btn--ghost,
.btn--ghost-dark {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}

.btn--ghost:hover,
.btn--ghost-dark:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}

.btn--whatsapp {
  background: #111;
  border-color: #111;
  color: #fff;
}

.site-header {
  background: rgba(255, 253, 248, 0.92);
  border-bottom: 1px solid rgba(9, 7, 13, 0.12);
  box-shadow: 0 14px 40px rgba(9, 7, 13, 0.08);
  backdrop-filter: blur(18px);
}

.site-header__inner { min-height: 82px; }

.site-logo {
  gap: 0;
  min-width: 132px;
}

.site-logo__mark { display: none; }

.site-logo__image {
  width: 126px;
  height: 48px;
  object-fit: contain;
}

.site-logo__text {
  display: none;
  font-family: var(--font-body);
  font-size: 0;
  letter-spacing: 0;
  color: var(--c-ink);
}

.site-logo__text span { color: inherit; }

.site-logo__tagline {
  color: #5c5266;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.2em;
}

.main-navigation a {
  color: #2b2531;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a { color: var(--c-purple); }

.main-navigation .current-menu-item > a {
  box-shadow: inset 0 -2px 0 var(--c-purple);
}

.sub-menu {
  background: #fffdf8;
  border: 1px solid rgba(9, 7, 13, 0.1);
  border-radius: 0 0 8px 8px;
}

.sub-menu a { color: #241d2c !important; }
.sub-menu a:hover { background: #f2ece2; }

.nav-toggle span { background: var(--c-ink); }

.hero {
  min-height: min(680px, calc(100vh - 142px));
  display: grid;
  align-items: center;
  padding: 62px 0 48px;
  background:
    linear-gradient(90deg, rgba(9, 7, 13, 0.88) 0%, rgba(9, 7, 13, 0.7) 37%, rgba(9, 7, 13, 0.16) 74%),
    url("../img/palav-premium-club-hero.png") center / cover no-repeat;
  color: #fff;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 182, 106, 0.7), transparent);
}

.hero--page {
  min-height: 330px;
  padding: 74px 0;
  background:
    linear-gradient(90deg, rgba(9, 7, 13, 0.9), rgba(9, 7, 13, 0.5)),
    url("../img/palav-premium-club-hero.png") center / cover no-repeat;
}

.hero__grid {
  grid-template-columns: minmax(0, 760px);
  gap: 54px;
}

.hero h1 {
  max-width: 760px;
  color: #fff;
}

.hero h1 .accent-green,
.hero h1 .accent-orange,
.hero .accent-orange {
  color: var(--c-gold);
}

.hero__lead {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.55;
}

.hero__badges { gap: 12px; }

.badge {
  border-radius: 2px;
  border-color: rgba(216, 182, 106, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  letter-spacing: 0.04em;
}

.breadcrumb,
.breadcrumb a { color: rgba(255, 255, 255, 0.72); }

.hero-visual {
  margin: 0;
  border: 1px solid rgba(216, 182, 106, 0.34);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.45);
  transform: translateY(18px);
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.ph {
  border-radius: 4px;
  border: 1px solid rgba(216, 182, 106, 0.24);
  background:
    linear-gradient(145deg, rgba(9, 7, 13, 0.78), rgba(51, 0, 114, 0.58)),
    url("../img/palav-premium-club-hero.png") center / cover no-repeat;
  box-shadow: var(--shadow);
  color: #fff;
}

.ph::before {
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  opacity: 0.36;
}

.ph--green,
.ph--orange {
  background:
    linear-gradient(145deg, rgba(9, 7, 13, 0.8), rgba(51, 0, 114, 0.5)),
    url("../img/palav-premium-club-hero.png") center / cover no-repeat;
}

.card,
.step,
.review,
.plan,
.post-card,
.team-card,
.event-row,
.pricing-table,
.app-panel,
.faq-item {
  background: var(--c-surface);
  border: 1px solid rgba(9, 7, 13, 0.08);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.card,
.plan {
  border-top: 1px solid rgba(9, 7, 13, 0.08);
}

.card--green,
.card--orange,
.card--navy,
.plan--featured {
  border-color: rgba(51, 0, 114, 0.28);
}

.card .icon,
.info-line .icon {
  background: #130f18;
  color: var(--c-gold);
  border-radius: 4px;
}

.stats {
  gap: 0;
  border: 1px solid rgba(216, 182, 106, 0.22);
}

.stat {
  padding: 30px 20px;
  border-right: 1px solid rgba(216, 182, 106, 0.18);
}

.stat:last-child { border-right: 0; }

.stat__num { color: #fff; }
.stat__num .unit,
.stat__label,
.review__stars,
.event-date .month { color: var(--c-gold); }

.step::before,
.checklist li::before,
.checklist--orange li::before,
.plan__flag {
  background: var(--c-purple);
}

.sport-panel {
  border-radius: 6px;
  border: 1px solid rgba(9, 7, 13, 0.08);
  box-shadow: var(--shadow-lg);
}

.cta-band {
  border-radius: 6px;
  background:
    linear-gradient(120deg, rgba(51, 0, 114, 0.3), transparent 44%),
    #09070d;
  border: 1px solid rgba(216, 182, 106, 0.28);
  box-shadow: var(--shadow-lg);
}

.partner-logo {
  background: #fffdf8;
  border: 1px solid rgba(9, 7, 13, 0.12);
  border-radius: 4px;
}

.pricing-table thead th,
.event-date {
  background: var(--c-ink);
  color: #fff;
}

.pricing-table .price,
.plan__price,
.review footer strong,
.info-line strong,
.hours-table td:last-child { color: var(--c-purple); }

.tag--padel,
.tag--basket {
  background: rgba(51, 0, 114, 0.1);
  color: var(--c-purple);
}

.site-footer {
  background: #09070d;
  color: rgba(255, 255, 255, 0.62);
  border-top: 1px solid rgba(216, 182, 106, 0.24);
}

.site-footer a { color: rgba(255, 255, 255, 0.78); }
.site-footer a:hover { color: #fff; }
.footer-widgets h3 { color: #fff; }

.form-field input,
.form-field select,
.form-field textarea {
  border-radius: 4px;
  background: #fffdf8;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline-color: rgba(51, 0, 114, 0.42);
  border-color: var(--c-purple);
}

@media (max-width: 1080px) {
  .site-logo__image { width: 112px; }
  .main-navigation a { font-size: 0.72rem; padding-inline: 8px; }
}

@media (max-width: 960px) {
  .site-header { background: rgba(255, 253, 248, 0.98); }
  .main-navigation {
    inset: 82px 0 0 0;
    background: #fffdf8;
  }
  .main-navigation a {
    color: var(--c-ink);
    border-bottom-color: rgba(9, 7, 13, 0.08);
  }
  .main-navigation .current-menu-item > a { box-shadow: inset 3px 0 0 var(--c-purple); }
  .sub-menu a { color: #5c5266 !important; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero-visual { transform: none; }
}

@media (max-width: 620px) {
  /* Titres reduits en mobile : les clamp precedents (12.5vw / 11vw) donnaient des paves de 41-47px */
  h1 { font-size: clamp(1.9rem, 8vw, 2.4rem); line-height: 1.08; }
  h2 { font-size: clamp(1.5rem, 6.4vw, 1.9rem); line-height: 1.14; }
  h3 { font-size: clamp(1.12rem, 4.6vw, 1.3rem); }
  .hero__lead { font-size: 0.98rem; }
  .section-head { margin-bottom: 34px; }
  .plan__price { font-size: 2.1rem; }
  .stat__num { font-size: clamp(1.8rem, 8vw, 2.3rem); }
  .faq-item summary { font-size: 1.02rem; padding: 16px 48px 16px 18px; }
  .section { padding: 64px 0; }
  .hero,
  .hero--page {
    min-height: auto;
    padding: 46px 0 34px;
  }
  .hero-visual img { min-height: 280px; }
  .stats { border: 0; }
  .stat {
    border: 1px solid rgba(216, 182, 106, 0.18);
  }
}

@media (max-width: 480px) {
  .site-logo { min-width: 104px; }
  .site-logo__image { width: 100px; height: 40px; }
  .site-logo__tagline { display: none; }
  .header-cta .btn { padding: 10px 13px; font-size: 0.7rem; }
}

/* ==========================================================================
   21. Finitions - centrage des chiffres dans les ronds & FAQ soignee
   ========================================================================== */

/* 21.1 Chiffres dans les ronds.
   Georgia utilise des chiffres bas-de-casse (le 3, 4, 7, 9 descendent sous la
   ligne de base) : dans un rond ils paraissent decentres. On repasse ces
   chiffres en Inter, a hauteur de capitale, avec un centrage a la ligne. */
.step::before,
.event-date .day {
  font-family: var(--font-body);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: lining-nums tabular-nums;
  font-feature-settings: "lnum" 1, "tnum" 1;
}
.step::before { font-size: 1.2rem; }

/* Coches de liste : centrage precis du symbole dans la pastille */
.checklist li::before { line-height: 1; }

/* 21.2 FAQ - accordeon retravaille (casse normale, pastille + chevron anime) */
.faq-item {
  border: 1px solid rgba(9, 7, 13, 0.1);
  border-radius: 8px;
  margin-bottom: 12px;
  box-shadow: 0 2px 10px rgba(9, 7, 13, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item:hover { border-color: rgba(51, 0, 114, 0.3); }
.faq-item[open] {
  border-color: rgba(51, 0, 114, 0.42);
  box-shadow: var(--shadow);
}

.faq-item summary {
  padding: 22px 64px 22px 24px;
  font-family: var(--font-head);
  font-size: 1.18rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.3;
  color: var(--c-ink);
  transition: color 0.2s ease;
}
.faq-item summary:hover,
.faq-item[open] summary { color: var(--c-purple); }

/* Pastille ronde + chevron (remplace le +/- d'origine) */
.faq-item summary::before {
  content: "";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(51, 0, 114, 0.08);
  transition: background 0.2s ease;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 29px;
  top: 50%;
  width: 8px;
  height: 8px;
  margin: 0;
  border: 0;
  border-right: 2px solid var(--c-purple);
  border-bottom: 2px solid var(--c-purple);
  border-radius: 0;
  background: none;
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.25s ease, border-color 0.2s ease;
}
.faq-item summary:hover::before { background: rgba(51, 0, 114, 0.15); }
.faq-item[open] summary::before { background: var(--c-purple); }
.faq-item[open] summary::after {
  content: "";
  border-color: #fff;
  transform: translateY(-30%) rotate(225deg);
}

.faq-item .faq-answer {
  padding: 2px 24px 24px;
  line-height: 1.7;
}

@media (max-width: 620px) {
  .faq-item summary {
    font-size: 1.04rem;
    padding: 17px 56px 17px 18px;
    line-height: 1.35;
  }
  .faq-item summary::before { right: 14px; width: 30px; height: 30px; }
  .faq-item summary::after { right: 24px; }
  .faq-item .faq-answer { padding: 2px 18px 20px; }
}

/* ==========================================================================
   22. Blocs Gutenberg natifs rendus a l'identique du design
   (boutons core/button, surtitres, chiffres, badges, avis, partenaires)
   ========================================================================== */

/* Boutons natifs core/button = boutons .btn de la charte */
.wp-block-button__link {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 15px 26px;
  border: 2px solid transparent;
  border-radius: 2px;
  text-decoration: none;
  box-shadow: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.wp-block-button__link:hover { transform: translateY(-2px); text-decoration: none; }

.wp-block-button.is-style-primary .wp-block-button__link,
.wp-block-button.is-style-orange .wp-block-button__link {
  background: var(--c-purple);
  border-color: var(--c-purple);
  color: #fff;
}
.wp-block-button.is-style-primary .wp-block-button__link:hover,
.wp-block-button.is-style-orange .wp-block-button__link:hover {
  background: #fff;
  border-color: var(--c-purple);
  color: var(--c-purple);
  box-shadow: 0 16px 34px rgba(51, 0, 114, 0.18);
}
.wp-block-button.is-style-ghost .wp-block-button__link,
.wp-block-button.is-style-ghost-dark .wp-block-button__link {
  border-color: currentColor;
  color: inherit;
  background: transparent;
}
.wp-block-button.is-style-ghost .wp-block-button__link:hover,
.wp-block-button.is-style-ghost-dark .wp-block-button__link:hover {
  background: var(--c-ink);
  border-color: var(--c-ink);
  color: #fff;
}
.wp-block-button.is-style-whatsapp .wp-block-button__link {
  background: #111;
  border-color: #111;
  color: #fff;
}

/* Rangees de boutons : reprennent l'espacement des rangees .btn du design */
.wp-block-buttons.hero__actions { margin-top: 28px; }

/* Groupes natifs : neutralise la largeur de contenu heritee pour ne pas casser les grilles */
.wp-block-group.container { max-width: none; }

/* Surtitre (kicker) en bloc paragraphe */
.section-head .kicker { margin-top: 0; }
.section-head--left { text-align: left; margin: 0 0 20px; }

/* Chiffres cles : numero et libelle en paragraphes, unite en exposant stylise */
.stat__num { margin: 0; }
.stat__num sup { font-size: 0.5em; color: var(--c-gold); vertical-align: baseline; top: 0; }
.stat__label { margin: 6px 0 0; }

/* Badges (pastilles) en paragraphes */
.hero__badges .badge { margin: 0; }

/* Zones photo : legende en paragraphe centre */
.ph p { margin: 0; }

/* Logos partenaires en paragraphes */
.partner-logo { margin: 0; }

/* Avis : etoiles dorees + signature, non italiques */
.review .review__stars { color: var(--c-gold); font-style: normal; margin: 0 0 10px; }
.review .review-footer { font-size: 0.85rem; color: var(--c-muted); font-style: normal; margin: 12px 0 0; }
.review .review-footer strong { color: var(--c-navy); }

/* Surtitres (kicker) : toujours en capitales, meme hors section-head */
.kicker { text-transform: uppercase; }

/* Listes a coches natives (core/list) */
.checklist.wp-block-list { padding: 0; }

/* Cartes : icone (emoji) en bloc paragraphe */
.card .icon { margin: 0 0 16px; }

/* Etiquettes sport autonomes en bloc paragraphe (les span inline restent inchanges) */
p.tag { margin: 0 0 14px; }

/* Formules : unite du prix en exposant stylise */
.plan__price sup { font-size: 0.42em; color: var(--c-muted); font-weight: 600; vertical-align: baseline; top: 0; }

/* Cartes equipe : image native (core/image) dans le cadre photo */
.team-card__photo .wp-block-image,
.team-card__photo figure { margin: 0; height: 100%; }
.team-card__photo .wp-block-image img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }

/* Cartes actus : meta et lien "lire la suite" en blocs, sans etirement flex */
.post-card .post-card__meta { flex: 0 0 auto; }
.post-card p.more { flex: 0 0 auto; margin: 0; }

/* Petit texte de mention (remplace les <small>) */
.u-small { font-size: 0.8rem; color: var(--c-muted); }

/* Helper de centrage pour les compositions (cartes crédits, boutons isoles) */
.u-center { text-align: center; }
