/*
Theme Name:   Ashe NeuroBoost
Theme URI:    https://aabdrabi.com
Description:  Thème enfant Ashe – Charte NeuroBoost (navy / or / teal)
Author:       Abdelali ABD-RABI
Template:     ashe
Version:      1.0.0
Text Domain:  ashe-neuroboost
*/

/* ============================================================
   VARIABLES & RESET
   ============================================================ */
:root {
  --navy:       #1B2E4B;
  --navy-dark:  #111E31;
  --navy-light: rgba(27, 46, 75, 0.06);
  --gold:       #C9A84C;
  --gold-light: rgba(201, 168, 76, 0.12);
  --gold-dark:  #A07C2A;
  --teal:       #2E7D8C;
  --teal-light: rgba(46, 125, 140, 0.12);
  --teal-dark:  #1F5E6B;
  --white:      #ffffff;
  --off-white:  #F7F5F0;
  --gray:       #6B7A8D;
  --light-gray: #E8E6E0;
  --text:       #1B2E4B;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(27,46,75,0.10);
  --shadow-lg:  0 8px 40px rgba(27,46,75,0.16);
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', 'Helvetica Neue', sans-serif;
  --transition:   0.3s ease;
}

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

body {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

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

p {
  line-height: 1.8;
  color: var(--gray);
  font-size: 1rem;
}

a {
  color: var(--teal);
  text-decoration: none;
  transition: color var(--transition);
}
a:hover { color: var(--gold); }

strong { font-weight: 500; color: var(--navy); }

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
#masthead,
.site-header {
  background: var(--navy) !important;
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(27,46,75,0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-branding .site-title a {
  color: var(--white) !important;
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 1px;
}
.site-branding .site-title a:hover { color: var(--gold) !important; }

.site-branding .site-description {
  color: rgba(255,255,255,0.5);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation principale */
.main-navigation ul li a {
  color: rgba(255,255,255,0.85) !important;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 14px !important;
  transition: color var(--transition);
  position: relative;
}
.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item > a::after { transform: scaleX(1); }
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a {
  color: var(--gold) !important;
}

/* Sous-menu */
.main-navigation ul ul {
  background: var(--navy-dark) !important;
  border-top: 2px solid var(--gold);
  box-shadow: var(--shadow);
}
.main-navigation ul ul li a {
  padding: 10px 20px !important;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ============================================================
   HERO / BANNER
   ============================================================ */
.hero-neuroboost {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
  text-align: center;
}
.hero-neuroboost::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    );
}
.hero-neuroboost::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-neuroboost .hero-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero-neuroboost .hero-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.4);
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-neuroboost h1 {
  color: var(--gold) !important;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 6vw, 4rem);
}
.hero-neuroboost h1 em {
  color: var(--gold) !important;
  font-style: italic;
  font-weight: 400;
}
.hero-neuroboost p.hero-desc {
  color: rgba(255,255,255,0.90);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.8;
}
.hero-neuroboost .hero-cta {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn,
.wp-block-button__link,
input[type="submit"],
button[type="submit"],
.wpcf7-submit {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary,
input[type="submit"],
.wpcf7-submit {
  background: var(--gold);
  color: var(--navy) !important;
  border-color: var(--gold);
}
.btn-primary:hover,
input[type="submit"]:hover,
.wpcf7-submit:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white) !important;
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46,125,140,0.35);
}

/* ============================================================
   MISE EN PAGE GÉNÉRALE
   ============================================================ */
.site-content,
#content {
  background: var(--white);
}

.container,
.entry-content,
.site-inner {
  max-width: 1140px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section-light { background: var(--white); padding: 80px 0; }
.section-off   { background: var(--off-white); padding: 80px 0; }
.section-navy  { background: var(--navy); padding: 80px 0; }
.section-teal  { background: var(--teal); padding: 80px 0; }

.section-title-wrap {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-eyebrow {
  display: block;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}
.section-title-wrap h2 { color: var(--teal); }
.section-title-wrap p  { margin-top: 14px; }
.title-rule {
  width: 50px;
  height: 3px;
  background: var(--gold);
  margin: 18px auto 0;
  border: none;
}

/* ============================================================
   CARTES
   ============================================================ */
.nb-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 36px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.nb-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nb-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(201,168,76,0.3);
}
.nb-card:hover::before { transform: scaleX(1); }

.nb-card-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--gold-dark);
  font-size: 1.5rem;
}
.nb-card h3 { margin-bottom: 12px; font-size: 1.3rem; }
.nb-card p  { font-size: 0.9rem; margin-bottom: 20px; }

/* Grille de cartes */
.nb-grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.nb-grid-2 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
}

/* ============================================================
   ARTICLES / BLOG
   ============================================================ */
.entry-header .entry-title {
  font-family: var(--font-display);
  color: var(--navy);
}
.entry-header .entry-title a { color: var(--navy); }
.entry-header .entry-title a:hover { color: var(--teal); }

.entry-meta,
.posted-on,
.byline {
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
}
.entry-meta a { color: var(--teal); }

/* Carte article */
article.post {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--light-gray);
  transition: all var(--transition);
  margin-bottom: 32px;
}
article.post:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.entry-thumbnail img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

/* Catégories */
.cat-links a {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 40px;
  margin-right: 6px;
  border: 1px solid rgba(46,125,140,0.2);
}
.cat-links a:hover {
  background: var(--teal);
  color: var(--white);
}

/* Lire la suite */
.read-more,
.more-link {
  display: inline-block;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 2px;
}
.read-more::after,
.more-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.read-more:hover::after,
.more-link:hover::after { transform: scaleX(1); }
.read-more:hover, .more-link:hover { color: var(--gold); }

/* ============================================================
   PAGE ARTICLE UNIQUE
   ============================================================ */
.single .entry-content {
  max-width: 760px;
  margin: 0 auto;
}
.single .entry-content h2,
.single .entry-content h3 {
  color: var(--navy);
  margin: 2rem 0 1rem;
}
.single .entry-content blockquote {
  border-left: 4px solid var(--gold);
  background: var(--gold-light);
  margin: 2rem 0;
  padding: 24px 28px;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--navy);
}

/* ============================================================
   PAGE À PROPOS
   ============================================================ */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 768px) {
  .about-split { grid-template-columns: 1fr; gap: 40px; }
}
.about-photo {
  position: relative;
}
.about-photo img {
  border-radius: 10px;
  width: 100%;
  box-shadow: var(--shadow-lg);
}
.about-photo::before {
  content: '';
  position: absolute;
  top: -16px; left: -16px;
  right: 16px; bottom: 16px;
  border: 2px solid var(--gold);
  border-radius: 10px;
  z-index: -1;
}
.about-content .eyebrow {
  font-size: 0.7rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--teal);
  font-weight: 500;
  margin-bottom: 12px;
  display: block;
}
.about-content h2 { margin-bottom: 20px; }

/* ============================================================
   TÉMOIGNAGES
   ============================================================ */
.temoignage-card {
  background: var(--white);
  border: 1px solid var(--light-gray);
  border-radius: 10px;
  padding: 32px 28px;
  position: relative;
}
.temoignage-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.3;
  position: absolute;
  top: 8px; left: 20px;
  line-height: 1;
}
.temoignage-card blockquote {
  border: none;
  background: none;
  padding: 0;
  margin: 0 0 20px;
  font-style: italic;
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.8;
}
.temoignage-card .author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.temoignage-card .author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.temoignage-card .author-name {
  font-weight: 500;
  color: var(--navy);
  font-size: 0.9rem;
}
.temoignage-card .author-role {
  font-size: 0.75rem;
  color: var(--gray);
  letter-spacing: 0.5px;
}
.temoignage-stars {
  color: var(--gold);
  font-size: 0.9rem;
  margin-bottom: 16px;
}

/* ============================================================
   COACHING & CONFÉRENCES
   ============================================================ */
.offre-header {
  background: linear-gradient(135deg, var(--navy) 0%, #243D5E 100%);
  color: var(--white);
  padding: 64px 0 48px;
  text-align: center;
  position: relative;
}
.offre-header h1 { color: var(--gold) !important; }
.offre-header h1 em { color: var(--gold) !important; font-style: italic; }
.offre-header p { color: rgba(255,255,255,0.90); margin: 0 auto; max-width: 600px; }
.offre-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 7px 20px;
  border-radius: 40px;
  margin-bottom: 20px;
}

/* Tableau tarifaire */
.tarif-wrap {
  background: var(--off-white);
  border-radius: 10px;
  padding: 32px;
  margin: 32px 0;
}
.tarif-wrap h3 {
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold);
  font-size: 1.3rem;
}
.tarif-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}
.tarif-table thead th {
  background: var(--navy);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 12px 18px;
  text-align: left;
}
.tarif-table thead th:first-child { border-radius: 6px 0 0 0; }
.tarif-table thead th:last-child  { border-radius: 0 6px 0 0; text-align: right; }
.tarif-table tbody tr {
  border-bottom: 1px solid rgba(27,46,75,0.08);
  transition: background var(--transition);
}
.tarif-table tbody tr:last-child { border-bottom: none; }
.tarif-table tbody td { padding: 12px 18px; color: var(--navy); }
.tarif-table tbody td:last-child { text-align: right; font-weight: 500; color: var(--teal); }
.tarif-table tbody tr:hover { background: var(--gold-light); }
.tarif-table .tarif-promo { color: var(--gold-dark); font-style: italic; font-size: 0.8rem; }

/* Bénéfices */
.benefices-list {
  list-style: none;
  padding: 0; margin: 0;
}
.benefices-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.9rem;
  color: var(--gray);
}
.benefices-list li:last-child { border-bottom: none; }
.benefices-list li::before {
  content: '';
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='white' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.widget-area .widget {
  background: var(--off-white);
  border-radius: 10px;
  padding: 24px;
  margin-bottom: 24px;
  border-left: 3px solid var(--gold);
}
.widget-area .widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--light-gray);
}
.widget-area ul { list-style: none; padding: 0; margin: 0; }
.widget-area ul li {
  padding: 7px 0;
  border-bottom: 1px solid var(--light-gray);
  font-size: 0.88rem;
}
.widget-area ul li:last-child { border-bottom: none; }
.widget-area ul li a { color: var(--gray); }
.widget-area ul li a:hover { color: var(--teal); }

/* Widget recherche */
.widget_search .search-form { display: flex; gap: 0; }
.widget_search input[type="search"] {
  flex: 1;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius) 0 0 var(--radius);
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  outline: none;
  border-right: none;
}
.widget_search input[type="search"]:focus { border-color: var(--teal); }
.widget_search input[type="submit"] {
  background: var(--teal);
  color: var(--white) !important;
  border: 1px solid var(--teal);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 10px 16px;
  font-size: 0.78rem;
  letter-spacing: 1px;
}

/* ============================================================
   FORMULAIRE DE CONTACT
   ============================================================ */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 textarea,
input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--navy);
  transition: border-color var(--transition);
  background: var(--white);
}
.wpcf7 input:focus,
.wpcf7 textarea:focus,
input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(46,125,140,0.12);
}

/* ============================================================
   FOOTER
   ============================================================ */
#colophon,
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
  border-top: 3px solid var(--gold);
}
.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 48px;
}
.footer-widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.site-footer a { color: rgba(255,255,255,0.5); }
.site-footer a:hover { color: var(--gold); }
.site-info {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 24px;
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-align: center;
}
.site-info a { color: var(--gold); }

/* Gold accent footer */
.footer-gold-rule {
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 12px 0 16px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.nav-links a,
.page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
  color: var(--navy);
  font-size: 0.88rem;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-links a:hover,
.page-numbers:hover { background: var(--teal); color: var(--white); border-color: var(--teal); }
.page-numbers.current { background: var(--navy); color: var(--white); border-color: var(--navy); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .nb-grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
  .nb-grid-2 { grid-template-columns: 1fr; }
  .tarif-wrap { padding: 20px 16px; }
}

@media (max-width: 640px) {
  .hero-neuroboost { padding: 60px 0 50px; }
  .section-light, .section-off, .section-navy, .section-teal { padding: 48px 0; }
  .nb-card { padding: 24px 20px; }
  .tarif-table thead th,
  .tarif-table tbody td { padding: 10px 12px; font-size: 0.82rem; }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.text-gold  { color: var(--gold); }
.text-teal  { color: var(--teal); }
.text-navy  { color: var(--navy); }
.text-white { color: var(--white); }
.text-center { text-align: center; }

.bg-navy   { background: var(--navy); }
.bg-teal   { background: var(--teal); }
.bg-gold   { background: var(--gold); }
.bg-off    { background: var(--off-white); }

.mt-1 { margin-top: 8px;  }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 40px; }
.mb-1 { margin-bottom: 8px;  }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 40px; }

/* Barre dorée décorative */
.gold-bar {
  display: block;
  width: 50px; height: 3px;
  background: var(--gold);
  margin: 16px 0;
}
.gold-bar.centered { margin: 16px auto; }

/* Bandeau chiffres clés */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
}
.stat-item {
  background: var(--white);
  padding: 32px 20px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--gold); }
.stat-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray);
}

/* CTA bandeau */
.cta-band {
  background: var(--teal);
  padding: 56px 24px;
  text-align: center;
}
.cta-band h2 { color: var(--gold); margin-bottom: 12px; }
.cta-band p  { color: rgba(255,255,255,0.90); margin-bottom: 28px; }

/* ============================================================
   MENU MOBILE
   ============================================================ */
@media (max-width: 768px) {

  /* Afficher le bouton hamburger */
  .menu-toggle {
    display: block !important;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold) !important;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 1.4rem;
    line-height: 1;
    margin-left: auto;
  }

  .menu-toggle:focus { outline: none; }

  /* Masquer le menu horizontal */
  .main-navigation ul,
  #primary-menu,
  .nav-menu {
    display: none;
    flex-direction: column !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--navy-dark);
    border-top: 2px solid var(--gold);
    padding: 12px 0;
    z-index: 9999;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }

  /* Quand le menu est ouvert */
  .main-navigation ul[style*="block"],
  #primary-menu[style*="block"],
  .nav-menu[style*="block"] {
    display: flex !important;
  }

  .main-navigation ul li {
    display: block !important;
    width: 100%;
  }

  .main-navigation ul li a {
    display: block;
    padding: 14px 24px !important;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    color: var(--white) !important;
  }

  .main-navigation ul li a:hover {
    color: var(--gold) !important;
    background: rgba(201,168,76,0.08);
  }

  /* Positionner le header en relatif pour l'absolu du menu */
  #masthead, .site-header {
    position: relative;
  }
}
