/*
Theme Name: Platel Corporation
Theme URI: https://platel-corporation.fr
Author: Theo (freelance) pour Platel Corporation
Author URI: https://platel-corporation.fr
Description: Theme vitrine "bold sport" pour Platel Corporation (coaching, sejours sportifs, organisation de tournoi, produits pickleball). V13 : section Diadem renommee Produits Pickleball (multi-marques, retrait tennis site entier), DA unifiee lime (plus de teal), formulaires BtoC (Nom/Prenom/Email/Telephone) et BtoB (4 profils) mis a jour.
Version: 10.0.3
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: platel-corp
*/

/* ============================================================
/* ============================================================
   BASE - shell + hero + intro + contact-cta + footer + responsive + reveal
   (issu de index.html)
   ============================================================ */
:root {
  /* Palette Platel Corporation */
  --lime:        #AFD639;
  --lime-hover:  #AEDB2B;
  --lime-blend:  #b7e349;
  --lime-text:   #4d7811; /* Lime sombre pour texte sur fond clair (ratio AA OK) */
  --orange:      #ec9937;
  --orange-deep: #c97a1c;
  --ink:         #0F0F0F;
  --ink-soft:    #1c1c1c;
  --text:        #656565;
  --text-light:  #898989;
  --paper:       #F6F5F9;
  --white:       #FFFFFF;
  --border:      #E6E4E0;
  --dark:        #121212;

  /* Typos */
  --f-display: 'Barlow Condensed', sans-serif;
  --f-body:    'DM Sans', sans-serif;
  --f-edito:   'DM Sans', sans-serif; /* Italique éditorial signature (sans-serif) */
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, h4, h5 {
  font-family: var(--f-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}

/* Accessibilité, focus clavier visible */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 2px;
}

/* Screen-reader only, pour h1 sémantique masqué visuellement */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Italique éditorial signature (sans-serif DM Sans italic) */
.f-edito {
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

/* ============ BANDEAU PROMO ============ */
.promo {
  background: var(--ink);
  color: var(--white);
  padding: 12px 24px;
  position: relative;
  overflow: hidden;
}
.promo::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--orange); /* Orange = signal urgence/promo, distinct du lime brand */
}
.promo-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  letter-spacing: 0.04em;
}
.promo-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange); /* Orange pour distinguer urgence/promo du brand lime */
  color: var(--ink);
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 12px;
  border-radius: 2px;
}
.promo-badge .dot {
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.promo-text { color: var(--white); }
.promo-text strong { font-weight: 600; }
.promo-link {
  font-family: var(--f-display);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--lime);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.promo-link:hover { border-color: var(--lime); }
.promo-link .arrow { display: inline-block; transition: transform 0.2s; margin-left: 4px; }
.promo-link:hover .arrow { transform: translateX(3px); }

/* ============ NAV ============ */
.nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 8px 24px;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}
.nav-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0;
}
.logo-img {
  height: 80px;
  width: auto;
  display: block;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  position: relative;
  padding: 6px 0;
  transition: color 0.2s;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--lime-text); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  padding: 0;
  position: relative;
  transition: background 0.2s, border-color 0.2s;
}
.nav-toggle:hover { background: var(--ink); }
.nav-toggle:hover .nav-toggle-bar { background: var(--lime); }
.nav-toggle-bar {
  position: absolute;
  left: 11px;
  right: 11px;
  height: 2px;
  background: var(--ink);
  transition: transform 0.25s, opacity 0.2s, top 0.25s, background 0.2s;
}
.nav-toggle-bar:nth-child(1) { top: 14px; }
.nav-toggle-bar:nth-child(2) { top: 21px; }
.nav-toggle-bar:nth-child(3) { top: 28px; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }

/* Mobile dropdown menu */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 12px 28px rgba(0,0,0,0.08);
  padding: 12px 24px 20px;
  flex-direction: column;
  gap: 4px;
  z-index: 99;
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-link {
  font-family: var(--f-display);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  text-decoration: none;
  padding: 16px 4px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-link:hover { color: var(--lime-text); padding-left: 8px; }
.nav-mobile-link .arrow { font-size: 14px; opacity: 0.6; }
.nav-mobile-link-pickleball {
  background: var(--ink);
  color: var(--lime);
  margin-left: -24px;
  margin-right: -24px;
  padding-left: 28px;
  padding-right: 28px;
  border-bottom: none;
  margin-top: 8px;
}
.nav-mobile-link-pickleball .arrow { color: var(--lime); opacity: 1; }
.nav-mobile-link-pickleball:hover {
  background: var(--lime);
  color: var(--ink);
  padding-left: 28px;
}
.nav-mobile-link-pickleball:hover .arrow { color: var(--ink); }
.nav-mobile-btn {
  margin-top: 14px;
  justify-content: center;
  width: 100%;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s, color 0.2s;
  border-radius: 2px;
}
.btn-lime {
  background: var(--lime);
  color: var(--ink);
}
.btn-lime:hover {
  background: var(--ink);
  color: var(--lime);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--ink);
  color: var(--white);
}
.btn-dark:hover {
  background: var(--lime);
  color: var(--ink);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-ghost-light:hover {
  background: var(--white);
  color: var(--ink);
}
.btn .arrow {
  font-size: 18px;
  transition: transform 0.2s;
}
.btn:hover .arrow { transform: translateX(4px); }

/* ============ HERO ============ */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--white);
  padding: 40px 24px;
  min-height: auto;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-inner { width: 100%; }
.hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 65%);
  opacity: 0.32;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: 10%;
  width: 380px; height: 380px;
  background: radial-gradient(circle, var(--orange) 0%, transparent 70%);
  opacity: 0.22;
  pointer-events: none;
}
.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 36px;
}
.hero-eyebrow::before {
  content: '';
  width: 48px; height: 2px;
  background: var(--lime);
}
.hero h1 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(64px,11vw,180px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero h1 .accent {
  color: var(--lime);
  font-style: italic;
}
.hero-sub {
  font-family: var(--f-body);
  font-size: clamp(16px,1.4vw,20px);
  color: var(--paper);
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.55;
  opacity: 0.85;
}
.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

/* Hero, blocs services */
.hero-blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 72px;
  max-width: 980px;
}
.hero-blocks-solo {
  margin: 0 auto;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  max-width: 1400px;
}
.hero-blocks-solo .hero-block {
  padding: 52px 36px 44px;
  min-height: 340px;
  justify-content: space-between;
}
.hero-blocks-solo .hero-block h2 {
  font-size: clamp(32px,3.2vw,48px);
}
.hero-blocks-solo .hero-block p {
  font-size: 16px;
}
.hero-blocks-solo .hero-block-arrow {
  width: 48px; height: 48px;
  font-size: 20px;
}

/* ---- Variante PHOTO (bloc avec image de fond + overlay) ---- */
.hb-photo {
  isolation: isolate;
  border-color: rgba(255,255,255,0.05) !important;
}
.hb-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(180deg, rgba(15,15,15,0.15) 0%, rgba(15,15,15,0.42) 55%, rgba(15,15,15,0.82) 100%),
    var(--hb-photo) center/cover no-repeat;
  transition: transform 0.6s ease;
  pointer-events: none;
}
.hb-photo::before { z-index: 2; } /* lime bar par-dessus la photo */
.hb-photo > * { position: relative; z-index: 1; }
.hb-photo:hover { background: transparent !important; }
.hb-photo:hover::after { transform: scale(1.04); }
.hb-photo .hero-block-num { color: var(--white); }
.hero-block {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 36px 32px 32px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  cursor: pointer;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  overflow: hidden;
}
.hero-block::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--lime);
  transform: scaleY(0.3);
  transform-origin: top;
  transition: transform 0.35s;
}
.hero-block:hover {
  background: rgba(175,214,57,0.07);
  border-color: rgba(175,214,57,0.4);
  transform: translateY(-4px);
}
.hero-block:hover::before { transform: scaleY(1); }
.hero-block-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.hero-block-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--lime);
}
.hero-block-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--white);
  transition: background 0.3s, color 0.3s, border-color 0.3s, transform 0.3s;
}
.hero-block:hover .hero-block-arrow {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
  transform: rotate(-45deg);
}
.hero-block h2 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(28px,3vw,40px);
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1;
}
.hero-block p {
  font-family: var(--f-body);
  font-size: 15px;
  color: var(--paper);
  opacity: 0.7;
  line-height: 1.6;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 32px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: clamp(40px,4vw,64px);
  line-height: 1;
  color: var(--lime);
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--f-body);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
}

/* ============ INTRO ============ */
.intro {
  background: var(--paper);
  padding: 60px 24px;
}
.intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}
.intro-photo {
  position: relative;
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  border-radius: 4px;
  overflow: hidden;
}
.intro-photo::before {
  /* Cadre offset lime, signature brand */
  content: '';
  position: absolute;
  inset: 18px -18px -18px 18px;
  border: 2px solid var(--lime);
  border-radius: 4px;
  z-index: -1;
}
.intro-text h2 { margin-bottom: 36px; }
.intro-tag {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 20px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.intro-tag::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--lime);
}
.intro h2 {
  font-size: clamp(40px,5vw,72px);
  margin-bottom: 0;
}
.intro h2 .lime {
  color: var(--ink);
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
}
.intro h2 .lime::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--lime);
  z-index: -1;
  opacity: 0.85;
}
.intro-body {
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
}
.intro-body p + p { margin-top: 18px; }
.intro-body .sig {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
  margin-top: 28px;
  display: block;
}

/* ============ CONTACT CTA ============ */
.contact-cta {
  background: var(--ink);
  color: var(--white);
  padding: 60px 24px;
  position: relative;
  overflow: hidden;
}
.contact-cta::before {
  content: '';
  position: absolute;
  right: -200px; top: 50%;
  transform: translateY(-50%);
  width: 700px; height: 700px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  opacity: 0.22;
  pointer-events: none;
}
.contact-cta::after {
  content: '';
  position: absolute;
  right: -100px; top: 50%;
  transform: translateY(-50%);
  width: 500px; height: 500px;
  border: 1.5px solid var(--lime);
  border-radius: 50%;
  opacity: 0.14;
  pointer-events: none;
}
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.contact-tag {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.contact-tag::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--lime);
}
.contact-cta h2 {
  font-size: clamp(48px,6.5vw,104px);
  margin-bottom: 32px;
  line-height: 0.92;
}
.contact-cta h2 .lime { color: var(--lime); font-style: italic; }
.contact-text {
  font-size: 18px;
  color: var(--paper);
  opacity: 0.78;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 540px;
}
.contact-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-left: 2px solid var(--lime);
  padding-left: 36px;
}
.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.contact-info-label {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
}
.contact-info-value {
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 500;
  color: var(--white);
}
.contact-info-value a:hover { color: var(--lime); }

/* ============ FOOTER ============ */
.footer {
  background: var(--dark);
  color: var(--paper);
  padding: 80px 24px 32px;
}
.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand .logo-img {
  height: 88px;
  width: auto;
  margin-bottom: 24px;
  background: var(--white);
  padding: 6px;
  border-radius: 6px;
}

.footer-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
  max-width: 360px;
}
.footer-col h4 {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--lime);
  margin-bottom: 20px;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  font-size: 14px;
  color: var(--paper);
  opacity: 0.88; /* Avant 0.7, ratio AA OK sur dark */
  transition: color 0.2s, opacity 0.2s;
}
.footer-col a:hover {
  color: var(--lime);
  opacity: 1;
}
.footer-col li.muted span {
  font-size: 14px;
  color: var(--paper);
  opacity: 0.45;
  font-style: italic;
}
.footer-col li.muted::after {
  content: ' · bientôt';
  font-size: 11px;
  color: var(--lime-text);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
}
.footer-bottom {
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}
.footer-bottom .socials {
  display: flex;
  gap: 24px;
}
.footer-bottom .socials a:hover { color: var(--lime); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .intro-inner { grid-template-columns: 1fr; gap: 50px; }
  .intro-photo { max-width: 480px; margin: 0 auto; }
  .intro-photo::before { inset: 14px -14px -14px 14px; }
  .contact-inner { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 28px; }
  .hero-blocks-solo { grid-template-columns: repeat(2,1fr); max-width: 760px; gap: 18px; }
  .hero-blocks-solo .hero-block { min-height: 240px; padding: 36px 32px 32px; }
}
@media (max-width: 900px) {
  .contact-grid { display: flex; flex-direction: column; gap: 40px; }
  .contact-form-wrap { width: 100%; box-sizing: border-box; }
  .page-header { padding: 30px 24px 28px; }
  .nav-cta .btn { padding: 11px 18px; font-size: 13px; letter-spacing: 0.08em; }
  .nav-cta { gap: 10px; }
  .nav-links { display: none; } /* Liens texte planqués sur tablette/mobile */
  .nav-cta-pickleball { display: none; } /* Pickleball bascule dans le menu déroulant */
  .nav-toggle { display: block; } /* Hamburger visible */
}
@media (max-width: 720px) {
  .promo-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; padding: 4px 0; }
  .promo-badge { font-size: 11px; padding: 4px 10px; }
  .hero-blocks { grid-template-columns: 1fr; }
  .hero-blocks-solo { grid-template-columns: 1fr; max-width: 620px; }
  .hero-blocks-solo .hero-block { padding: 40px 28px 36px; min-height: 220px; }
  .nav-cta .btn { padding: 9px 12px; font-size: 12px; }
  .nav-cta .btn .arrow { display: none; } /* Gagne de la place sur mobile */
  .hide-sm { display: none; } /* Raccourcit "Produits Pickleball" → "Pickleball" */
  .hero { padding: 24px 24px 20px; }
  .hero-stats { grid-template-columns: repeat(2,1fr); gap: 24px; }
  .intro,.contact-cta { padding: 36px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .page-header { padding: 24px 20px 20px; }
  .logo-img { height: 56px; }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s, transform 0.8s; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGES INTERNES - page-header, contact-section, form, location strip
   + etat actif nav + focus-visible des champs (issu de contact.html)
   ============================================================ */
:focus { outline: none; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
  border-radius: 2px;
}
.nav-links a.active { color: var(--lime-text); }
.nav-links a.active::after { transform: scaleX(1); }
.nav-mobile-link.active { color: var(--lime-text); }
/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--ink);
  color: var(--white);
  padding: 40px 24px 36px;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: var(--ph-photo);
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: contrast(1.05);
}
.page-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 0%, var(--ink) 100%);
  pointer-events: none;
}
.page-header::before {
  content: '';
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, var(--lime) 0%, transparent 65%);
  opacity: 0.28;
  pointer-events: none;
  z-index: 1;
}
.page-header-inner {
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.breadcrumb {
  font-family: var(--f-display);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 32px;
  font-weight: 600;
}
.breadcrumb a { color: var(--paper); opacity: 0.75; transition: opacity 0.2s, color 0.2s; }
.breadcrumb a:hover { color: var(--lime); opacity: 1; }
.breadcrumb .sep { margin: 0 12px; color: var(--paper); opacity: 0.4; }
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 28px;
}
.page-eyebrow::before {
  content: '';
  width: 48px; height: 2px;
  background: var(--lime);
}
.page-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(64px, 11vw, 168px);
  line-height: 0.88;
  letter-spacing: -0.015em;
  text-transform: uppercase;
}
.page-title .accent {
  color: var(--lime);
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}
.page-lead {
  font-family: var(--f-body);
  font-size: clamp(16px, 1.4vw, 19px);
  max-width: 640px;
  margin-top: 32px;
  color: var(--paper);
  opacity: 0.82;
  line-height: 1.6;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
  background: var(--paper);
  padding: 50px 24px;
  overflow-x: clip;
}
.contact-grid {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-grid > * { min-width: 0; }

/* V10 fix : contact-grid mobile — re-asserte l'empilement APRES la regle de base
   (la base 2 colonnes etant declaree plus bas que le bloc responsive partage,
   elle ecrasait l'empilement mobile -> formulaire restait sur le cote). */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; gap: 60px; }
}
@media (max-width: 900px) {
  .contact-grid { display: flex; flex-direction: column; gap: 40px; }
  .contact-form-wrap { width: 100%; box-sizing: border-box; }
}

.contact-info-block .section-num {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--lime);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-transform: uppercase;
}
.contact-info-block .section-num::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--lime);
}
.contact-info-block h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.015em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.contact-info-block h2 .accent {
  color: var(--ink);
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
  letter-spacing: -0.005em;
  display: inline-block;
  padding: 0;
  margin-left: -0.03em;
}
.contact-info-block .lead {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 480px;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.contact-block {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  align-items: start;
}
.contact-block .icon {
  width: 28px; height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--ink);
  font-size: 10px;
}
.contact-block .label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 6px;
}
.contact-block .value {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.005em;
  text-transform: uppercase;
  line-height: 1.15;
  color: var(--ink);
}
.contact-block .value a { transition: color 0.2s; }
.contact-block .value a:hover { color: var(--lime-text); }
.contact-block .sub {
  font-family: var(--f-body);
  font-size: 14px;
  color: var(--text-light);
  margin-top: 6px;
  line-height: 1.5;
}

.contact-socials { margin-top: 40px; }
.contact-socials .label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 16px;
}
.contact-socials .links { display: flex; gap: 10px; }
.contact-socials .links a {
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border: 1.5px solid var(--border);
  background: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  transition: all 0.2s;
  border-radius: 2px;
}
.contact-socials .links a:hover {
  background: var(--ink);
  color: var(--lime);
  border-color: var(--ink);
  transform: translateY(-2px);
}

/* ============ FORM ============ */
.contact-form-wrap {
  background: var(--ink);
  color: var(--white);
  padding: 36px 40px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.contact-form-wrap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 80px; height: 80px;
  border-top: 2px solid var(--lime);
  border-left: 2px solid var(--lime);
  pointer-events: none;
}
.contact-form-wrap::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  border-bottom: 2px solid var(--lime);
  border-right: 2px solid var(--lime);
  pointer-events: none;
}
.form-eyebrow {
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.form-eyebrow::before {
  content: '';
  width: 32px; height: 2px;
  background: var(--lime);
}
.form-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  margin-bottom: 36px;
}
.form-title .accent {
  color: var(--lime);
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: uppercase;
}

.contact-form { display: flex; flex-direction: column; gap: 26px; }
.contact-form input, .contact-form select, .contact-form textarea { box-sizing: border-box; max-width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-field { display: flex; flex-direction: column; gap: 8px; position: relative; }
.form-field label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.7;
}
.form-field label .req { color: var(--lime); margin-left: 4px; }
.form-field input,
.form-field select,
.form-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding: 12px 0 14px;
  color: var(--white);
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255,255,255,0.4);
  font-family: var(--f-body);
  font-style: italic;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--lime); }
.form-field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--lime) 50%),
    linear-gradient(135deg, var(--lime) 50%, transparent 50%);
  background-position: calc(100% - 12px) 22px, calc(100% - 6px) 22px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 30px;
  cursor: pointer;
}
.form-field select option { background: var(--ink); color: var(--white); }
.form-field textarea { resize: vertical; min-height: 140px; line-height: 1.5; }

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--paper);
  opacity: 0.85;
  line-height: 1.5;
}
.form-consent input[type="checkbox"] {
  appearance: none;
  width: 18px; height: 18px;
  border: 1.5px solid rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: all 0.2s;
  border-radius: 2px;
}
.form-consent input[type="checkbox"]:checked {
  background: var(--lime);
  border-color: var(--lime);
}
.form-consent input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  color: var(--ink); font-size: 13px; font-weight: bold;
}
.form-consent a {
  color: var(--lime);
  text-decoration: underline;
  text-decoration-color: rgba(175,214,57,0.4);
  text-underline-offset: 3px;
}
.form-consent a:hover { text-decoration-color: var(--lime); }

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.form-submit {
  background: var(--lime);
  color: var(--ink);
  border: none;
  padding: 16px 32px;
  font-family: var(--f-display);
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  transition: all 0.2s;
  border-radius: 2px;
}
.form-submit:hover {
  background: var(--white);
  color: var(--ink);
  transform: translateY(-2px);
}
.form-submit .arrow { font-size: 18px; transition: transform 0.2s; }
.form-submit:hover .arrow { transform: translateX(6px); }
.form-note {
  font-family: var(--f-body);
  font-style: italic;
  font-size: 13px;
  color: var(--paper);
  opacity: 0.7;
}

.form-success {
  display: none;
  padding: 28px;
  background: rgba(175,214,57,0.12);
  border: 1px solid var(--lime);
  color: var(--lime);
  font-family: var(--f-body);
  font-size: 16px;
  text-align: center;
  border-radius: 2px;
  line-height: 1.5;
}
.form-success.visible { display: block; }
.form-success .check {
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--lime);
  display: block;
  margin-bottom: 8px;
  line-height: 1;
}

/* ============ LOCATION STRIP ============ */
.location-strip {
  background: var(--white);
  padding: 50px 24px;
  border-top: 1px solid var(--border);
}
.location-inner {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.location-text .eyebrow {
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--lime-text);
  margin-bottom: 20px;
}
.location-text .eyebrow::before { content: ''; }
.location-text h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 68px);
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
}
.location-text h3 .accent {
  color: var(--ink);
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-transform: none;
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
}
.location-text h3 .accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.08em;
  height: 0.32em;
  background: var(--lime);
  z-index: -1;
  opacity: 0.85;
}
.location-text p {
  font-family: var(--f-body);
  font-size: 17px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 480px;
}
.location-visual {
  aspect-ratio: 5 / 4;
  background: var(--ink);
  position: relative;
  overflow: hidden;
  background-image: var(--loc-photo);
  background-size: cover;
  background-position: center;
  border-radius: 4px;
}
.location-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(175,214,57,0.22), transparent 60%);
}
.location-visual .pin-card {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--ink);
  color: var(--white);
  padding: 18px 22px;
  z-index: 2;
  border-radius: 2px;
  border-left: 3px solid var(--lime);
}
.location-visual .pin-card .pin-label {
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin-bottom: 6px;
  text-transform: uppercase;
}
.location-visual .pin-card .pin-city {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 30px;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
}


/* ============================================================
   GALERIES EVENEMENTS (mosaique + carrousel + lightbox)
   (issu de organisation-tournoi.html)
   ============================================================ */
/* ============ GALERIES ÉVÉNEMENTS (2 variantes à arbitrer) ============ */
.galleries { background: var(--paper); padding: 100px 24px; }
.gallery-wrap { max-width: 1280px; margin: 0 auto; }
.gallery-variant + .gallery-variant { margin-top: 90px; padding-top: 90px; border-top: 1px solid var(--border); }
.variant-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--f-display); font-size: 12px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink); background: var(--lime); padding: 6px 12px; border-radius: 2px; margin-bottom: 18px; }
.gallery-head h2 { font-size: clamp(30px, 4vw, 52px); margin-bottom: 12px; }
.gallery-head h2 .lime { color: var(--ink); font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
.gallery-head p { color: var(--text); margin-bottom: 32px; max-width: 660px; font-size: 16px; line-height: 1.6; }

/* Variante A : mosaïque cliquable */

/* Variante B : carrousel pleine largeur */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; border-radius: 8px; }
.carousel-track { display: flex; transition: transform .5s ease; }
.slide { min-width: 100%; height: clamp(320px, 46vw, 520px); position: relative; background: #1c1c1c; background-size: cover; background-repeat: no-repeat; background-position: center; display: flex; align-items: flex-end; }
.slide:nth-child(even) { background-color: #232323; }
.slide::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,15,15,.08), rgba(15,15,15,.7)); }
.slide-cap { position: relative; z-index: 2; padding: 36px 40px; }
.slide-cap .ph-num { font-family: var(--f-display); font-size: 12px; letter-spacing: .2em; color: var(--lime); display: block; margin-bottom: 8px; }
.slide-cap h3 { font-family: var(--f-display); font-size: clamp(24px, 3vw, 40px); text-transform: uppercase; color: #fff; line-height: 1; }
.carousel-btn { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 48px; height: 48px; border-radius: 50%; border: none; background: rgba(255,255,255,.9); color: var(--ink); font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s, color .2s; }
.carousel-btn:hover { background: var(--lime); }
.carousel-btn.prev { left: 16px; }
.carousel-btn.next { right: 16px; }
.carousel-dots { display: flex; justify-content: center; gap: 10px; margin-top: 22px; }
.carousel-dots button { width: 10px; height: 10px; box-sizing: content-box; padding: 14px; margin: -8px; border-radius: 50%; border: none; background-color: var(--border); background-clip: content-box; cursor: pointer; transition: background-color .2s, transform .2s; }
.carousel-dots button.active { background-color: var(--lime); transform: scale(1.35); }



/* ============================================================
   PRODUITS PICKLEBALL — V13 — 3 pages scopées
   body.page-pickleball-hub  → produits-pickleball (split-screen)
   body.page-pickleball-btoc → pickleball-particuliers (catalogue + wishlist)
   body.page-pickleball-btob → pickleball-partenaires (BtoB + form)

   Portage 1:1 depuis les maquettes HTML validées V13/*.html.
   Palette unifiée : plus de teal Diadem, lime partout (cf. retour client V13).
   ============================================================ */

/* ---- HUB split-screen (page-pickleball-hub) ---- */
body.page-pickleball-hub .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.page-pickleball-hub .f-edito { font-family: var(--f-edito); font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; }
body.page-pickleball-hub .promo { background: var(--ink); color: var(--white); padding: 12px 24px; position: relative; overflow: hidden; }
body.page-pickleball-hub .promo::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }
body.page-pickleball-hub .promo-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 13px; letter-spacing: 0.04em; }
body.page-pickleball-hub .promo-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 2px; }
body.page-pickleball-hub .promo-badge .dot { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
body.page-pickleball-hub .promo-text { color: var(--white); }
body.page-pickleball-hub .promo-text strong { font-weight: 600; }
body.page-pickleball-hub .promo-link { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--lime); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.2s; }
body.page-pickleball-hub .promo-link:hover { border-color: var(--lime); }
body.page-pickleball-hub .promo-link .arrow { display: inline-block; transition: transform 0.2s; margin-left: 4px; }
body.page-pickleball-hub .promo-link:hover .arrow { transform: translateX(3px); }
body.page-pickleball-hub .nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 24px; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
body.page-pickleball-hub .nav-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
body.page-pickleball-hub .logo { display: flex; align-items: center; }
body.page-pickleball-hub .logo-img { height: 80px; width: auto; display: block; }
body.page-pickleball-hub .nav-cta { display: flex; align-items: center; gap: 14px; }
body.page-pickleball-hub .nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 24px; }
body.page-pickleball-hub .nav-links a { font-family: var(--f-display); font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); position: relative; padding: 6px 0; transition: color 0.2s; }
body.page-pickleball-hub .nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
body.page-pickleball-hub .nav-links a:hover { color: var(--lime-text); }
body.page-pickleball-hub .nav-links a:hover::after { transform: scaleX(1); }
body.page-pickleball-hub .nav-links a.active { color: var(--lime-text); }
body.page-pickleball-hub .nav-links a.active::after { transform: scaleX(1); }
body.page-pickleball-hub .nav-toggle { display: none; background: transparent; border: 1.5px solid var(--ink); border-radius: 2px; width: 44px; height: 44px; cursor: pointer; padding: 0; position: relative; transition: background 0.2s, border-color 0.2s; }
body.page-pickleball-hub .nav-toggle:hover { background: var(--ink); }
body.page-pickleball-hub .nav-toggle:hover .nav-toggle-bar { background: var(--lime); }
body.page-pickleball-hub .nav-toggle-bar { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s, top 0.25s, background 0.2s; }
body.page-pickleball-hub .nav-toggle-bar:nth-child(1) { top: 14px; }
body.page-pickleball-hub .nav-toggle-bar:nth-child(2) { top: 21px; }
body.page-pickleball-hub .nav-toggle-bar:nth-child(3) { top: 28px; }
body.page-pickleball-hub .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.page-pickleball-hub .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.page-pickleball-hub .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }
body.page-pickleball-hub .nav-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 12px 28px rgba(0,0,0,0.08); padding: 12px 24px 20px; flex-direction: column; gap: 4px; z-index: 99; }
body.page-pickleball-hub .nav-mobile-menu.open { display: flex; }
body.page-pickleball-hub .nav-mobile-link { font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); padding: 16px 4px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; transition: color 0.2s, padding-left 0.2s; }
body.page-pickleball-hub .nav-mobile-link:hover { color: var(--lime-text); padding-left: 8px; }
body.page-pickleball-hub .nav-mobile-link.active { color: var(--lime-text); }
body.page-pickleball-hub .nav-mobile-link .arrow { font-size: 14px; opacity: 0.6; }
body.page-pickleball-hub .nav-mobile-link-pickleball { background: var(--ink); color: var(--lime); margin-left: -24px; margin-right: -24px; padding-left: 28px; padding-right: 28px; border-bottom: none; margin-top: 8px; }
body.page-pickleball-hub .nav-mobile-link-pickleball .arrow { color: var(--lime); opacity: 1; }
body.page-pickleball-hub .nav-mobile-link-pickleball:hover { background: var(--lime); color: var(--ink); padding-left: 28px; }
body.page-pickleball-hub .nav-mobile-link-pickleball:hover .arrow { color: var(--ink); }
body.page-pickleball-hub .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: var(--f-display); font-size: 15px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: transform 0.2s, background 0.2s, color 0.2s; border-radius: 2px; }
body.page-pickleball-hub .btn-lime { background: var(--lime); color: var(--ink); }
body.page-pickleball-hub .btn-lime:hover { background: var(--ink); color: var(--lime); transform: translateY(-2px); }
body.page-pickleball-hub .btn-dark { background: var(--ink); color: var(--white); }
body.page-pickleball-hub .btn-dark:hover { background: var(--lime); color: var(--ink); transform: translateY(-2px); }
body.page-pickleball-hub .btn .arrow { font-size: 18px; transition: transform 0.2s; }
body.page-pickleball-hub .btn:hover .arrow { transform: translateX(4px); }
body.page-pickleball-hub .footer { background: var(--dark); color: var(--paper); padding: 80px 24px 32px; }
body.page-pickleball-hub .footer-inner { max-width: 1440px; margin: 0 auto; }
body.page-pickleball-hub .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.page-pickleball-hub .footer-brand .logo-img { height: 88px; width: auto; margin-bottom: 24px; background: var(--white); padding: 6px; border-radius: 6px; }
body.page-pickleball-hub .footer-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; max-width: 360px; }
body.page-pickleball-hub .footer-col h4 { font-family: var(--f-display); font-size: 14px; font-weight: 700; letter-spacing: 0.2em; color: var(--lime); margin-bottom: 20px; }
body.page-pickleball-hub .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
body.page-pickleball-hub .footer-col a { font-size: 14px; color: var(--paper); opacity: 0.88; transition: color 0.2s, opacity 0.2s; }
body.page-pickleball-hub .footer-col a:hover { color: var(--lime); opacity: 1; }
body.page-pickleball-hub .footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
body.page-pickleball-hub .footer-bottom .socials { display: flex; gap: 24px; }
body.page-pickleball-hub .footer-bottom .socials a:hover { color: var(--lime); }
@media (max-width: 1024px) {
  body.page-pickleball-hub .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  body.page-pickleball-hub .nav-links { display: none; }
  body.page-pickleball-hub .nav-cta-pickleball { display: none; }
  body.page-pickleball-hub .nav-toggle { display: block; }
  body.page-pickleball-hub .nav-cta .btn { padding: 11px 18px; font-size: 13px; }
}
@media (max-width: 720px) {
  body.page-pickleball-hub .promo-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; }
  body.page-pickleball-hub .promo-badge { font-size: 11px; padding: 4px 10px; }
  body.page-pickleball-hub .logo-img { height: 56px; }
  body.page-pickleball-hub .hide-sm { display: none; }
  body.page-pickleball-hub .footer-grid { grid-template-columns: 1fr; }
}
body.page-pickleball-hub .hub-split {
  display: flex;
  min-height: 560px;
  height: calc(100vh - 150px);
  position: relative;
}
body.page-pickleball-hub .hub-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 56px 52px;
  text-decoration: none;
  color: #fff;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
body.page-pickleball-hub .hub-panel:hover { flex: 1.38; }
body.page-pickleball-hub .hub-panel-bg {
  position: absolute;
  inset: 0;
  background-image: var(--panel-photo);
  background-size: cover;
  background-position: center;
  transition: transform 0.65s ease;
}
body.page-pickleball-hub .hub-panel:hover .hub-panel-bg { transform: scale(1.05); }
body.page-pickleball-hub .hub-btoc .hub-panel-bg { background-position: center 30%; }
body.page-pickleball-hub .hub-panel-overlay {
  position: absolute;
  inset: 0;
}
body.page-pickleball-hub .hub-btoc .hub-panel-overlay {
  background: linear-gradient(to top, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.35) 45%, rgba(0,0,0,0.15) 100%);
}
body.page-pickleball-hub .hub-btob .hub-panel-overlay {
  background: linear-gradient(to top, rgba(15,15,15,0.92) 0%, rgba(15,15,15,0.35) 45%, rgba(0,0,0,0.15) 100%);
}
body.page-pickleball-hub .hub-content {
  position: relative;
  z-index: 2;
  max-width: 440px;
}
body.page-pickleball-hub .hub-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
body.page-pickleball-hub .hub-label::before { content: ''; width: 32px; height: 2px; flex-shrink: 0; }
body.page-pickleball-hub .hub-btoc .hub-label { color: var(--lime); }
body.page-pickleball-hub .hub-btoc .hub-label::before { background: var(--lime); }
body.page-pickleball-hub .hub-btob .hub-label { color: var(--lime); }
body.page-pickleball-hub .hub-btob .hub-label::before { background: var(--lime); }
body.page-pickleball-hub .hub-title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(44px, 5.5vw, 88px);
  line-height: 0.9;
  text-transform: uppercase;
  letter-spacing: -0.015em;
  color: #fff;
  margin-bottom: 18px;
}
body.page-pickleball-hub .hub-title .accent {
  display: block;
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85em;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.1;
}
body.page-pickleball-hub .hub-btoc .hub-title .accent { color: var(--lime); }
body.page-pickleball-hub .hub-btob .hub-title .accent { color: var(--lime); }
body.page-pickleball-hub .hub-desc {
  font-family: var(--f-body);
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 320px;
  margin-bottom: 36px;
}
body.page-pickleball-hub .hub-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}
body.page-pickleball-hub .hub-cta .arrow { font-size: 18px; transition: transform 0.2s; }
body.page-pickleball-hub .hub-panel:hover .hub-cta .arrow { transform: translateX(5px); }
body.page-pickleball-hub .hub-btoc .hub-cta { background: var(--lime); color: var(--ink); }
body.page-pickleball-hub .hub-btoc .hub-cta:hover { background: var(--ink); color: var(--lime); transform: translateY(-2px); }
body.page-pickleball-hub .hub-btob .hub-cta { background: var(--lime); color: var(--ink); }
body.page-pickleball-hub .hub-btob .hub-cta:hover { background: var(--ink); color: var(--lime); transform: translateY(-2px); }
body.page-pickleball-hub .hub-badge {
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(175,214,57,0.5);
  color: #fff;
  font-family: var(--f-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  white-space: nowrap;
  pointer-events: none;
}
body.page-pickleball-hub .hub-badge .dot-lime {
  width: 6px; height: 6px;
  background: var(--lime);
  border-radius: 50%;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  body.page-pickleball-hub .hub-split { flex-direction: column; height: auto; min-height: auto; }
  body.page-pickleball-hub .hub-panel { min-height: 52vh; padding: 36px 28px 40px; flex: none !important; transition: none; }
  body.page-pickleball-hub .hub-badge { display: none; }
  body.page-pickleball-hub .hub-title { font-size: clamp(36px, 8vw, 60px); }
}
@media (max-width: 480px) {
  body.page-pickleball-hub .hub-panel { padding: 28px 24px 36px; }
  body.page-pickleball-hub .hub-desc { font-size: 14px; }
}

/* ---- Catalogue BtoC (page-pickleball-btoc) ---- */
body.page-pickleball-btoc .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.page-pickleball-btoc .f-edito { font-family: var(--f-edito); font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; }
body.page-pickleball-btoc .promo { background: var(--ink); color: var(--white); padding: 12px 24px; position: relative; overflow: hidden; }
body.page-pickleball-btoc .promo::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }
body.page-pickleball-btoc .promo-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 13px; letter-spacing: 0.04em; }
body.page-pickleball-btoc .promo-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 2px; }
body.page-pickleball-btoc .promo-badge .dot { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
body.page-pickleball-btoc .promo-text { color: var(--white); }
body.page-pickleball-btoc .promo-text strong { font-weight: 600; }
body.page-pickleball-btoc .promo-link { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--lime); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.2s; }
body.page-pickleball-btoc .promo-link:hover { border-color: var(--lime); }
body.page-pickleball-btoc .promo-link .arrow { display: inline-block; transition: transform 0.2s; margin-left: 4px; }
body.page-pickleball-btoc .promo-link:hover .arrow { transform: translateX(3px); }
body.page-pickleball-btoc .nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 24px; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
body.page-pickleball-btoc .nav-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
body.page-pickleball-btoc .logo { display: flex; align-items: center; }
body.page-pickleball-btoc .logo-img { height: 80px; width: auto; display: block; }
body.page-pickleball-btoc .nav-cta { display: flex; align-items: center; gap: 14px; }
body.page-pickleball-btoc .nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 24px; }
body.page-pickleball-btoc .nav-links a { font-family: var(--f-display); font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); position: relative; padding: 6px 0; transition: color 0.2s; }
body.page-pickleball-btoc .nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
body.page-pickleball-btoc .nav-links a:hover { color: var(--lime-text); }
body.page-pickleball-btoc .nav-links a:hover::after { transform: scaleX(1); }
body.page-pickleball-btoc .nav-toggle { display: none; background: transparent; border: 1.5px solid var(--ink); border-radius: 2px; width: 44px; height: 44px; cursor: pointer; padding: 0; position: relative; transition: background 0.2s; }
body.page-pickleball-btoc .nav-toggle:hover { background: var(--ink); }
body.page-pickleball-btoc .nav-toggle:hover .nav-toggle-bar { background: var(--lime); }
body.page-pickleball-btoc .nav-toggle-bar { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s, top 0.25s, background 0.2s; }
body.page-pickleball-btoc .nav-toggle-bar:nth-child(1) { top: 14px; }
body.page-pickleball-btoc .nav-toggle-bar:nth-child(2) { top: 21px; }
body.page-pickleball-btoc .nav-toggle-bar:nth-child(3) { top: 28px; }
body.page-pickleball-btoc .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.page-pickleball-btoc .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.page-pickleball-btoc .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }
body.page-pickleball-btoc .nav-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 12px 28px rgba(0,0,0,0.08); padding: 12px 24px 20px; flex-direction: column; gap: 4px; z-index: 99; }
body.page-pickleball-btoc .nav-mobile-menu.open { display: flex; }
body.page-pickleball-btoc .nav-mobile-link { font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); padding: 16px 4px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; transition: color 0.2s, padding-left 0.2s; }
body.page-pickleball-btoc .nav-mobile-link:hover { color: var(--lime-text); padding-left: 8px; }
body.page-pickleball-btoc .nav-mobile-link .arrow { font-size: 14px; opacity: 0.6; }
body.page-pickleball-btoc .nav-mobile-link-pickleball { background: var(--ink); color: var(--lime); margin-left: -24px; margin-right: -24px; padding-left: 28px; padding-right: 28px; border-bottom: none; margin-top: 8px; }
body.page-pickleball-btoc .nav-mobile-link-pickleball .arrow { color: var(--lime); opacity: 1; }
body.page-pickleball-btoc .nav-mobile-link-pickleball:hover { background: var(--lime); color: var(--ink); padding-left: 28px; }
body.page-pickleball-btoc .nav-mobile-link-pickleball:hover .arrow { color: var(--ink); }
body.page-pickleball-btoc .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: var(--f-display); font-size: 15px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: transform 0.2s, background 0.2s, color 0.2s; border-radius: 2px; }
body.page-pickleball-btoc .btn-lime { background: var(--lime); color: var(--ink); }
body.page-pickleball-btoc .btn-lime:hover { background: var(--ink); color: var(--lime); transform: translateY(-2px); }
body.page-pickleball-btoc .btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
body.page-pickleball-btoc .btn-ghost-light:hover { background: var(--white); color: var(--ink); }
body.page-pickleball-btoc .btn .arrow { font-size: 18px; transition: transform 0.2s; }
body.page-pickleball-btoc .btn:hover .arrow { transform: translateX(4px); }
body.page-pickleball-btoc .page-header { background: var(--ink); color: var(--white); padding: 44px 24px 40px; position: relative; overflow: hidden; }
body.page-pickleball-btoc .page-header-bg { position: absolute; inset: 0; background-image: var(--ph-photo); background-size: cover; background-position: center; opacity: 0.2; filter: contrast(1.05); }
body.page-pickleball-btoc .page-header::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, var(--ink) 100%); pointer-events: none; }
body.page-pickleball-btoc .page-header::before { content: ''; position: absolute; top: -180px; right: -180px; width: 560px; height: 560px; background: radial-gradient(circle, var(--lime) 0%, transparent 65%); opacity: 0.2; pointer-events: none; z-index: 1; }
body.page-pickleball-btoc .page-header-inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; }
body.page-pickleball-btoc .breadcrumb { font-family: var(--f-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); margin-bottom: 28px; font-weight: 600; }
body.page-pickleball-btoc .breadcrumb a { color: var(--paper); opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
body.page-pickleball-btoc .breadcrumb a:hover { color: var(--lime); opacity: 1; }
body.page-pickleball-btoc .breadcrumb .sep { margin: 0 12px; color: var(--paper); opacity: 0.35; }
body.page-pickleball-btoc .page-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--f-display); font-size: 13px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lime); margin-bottom: 24px; }
body.page-pickleball-btoc .page-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--lime); }
body.page-pickleball-btoc .page-title { font-family: var(--f-display); font-weight: 800; font-size: clamp(56px, 9vw, 140px); line-height: 0.88; letter-spacing: -0.015em; text-transform: uppercase; }
body.page-pickleball-btoc .page-title .accent { color: var(--lime); font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
body.page-pickleball-btoc .page-lead { font-family: var(--f-body); font-size: clamp(15px, 1.3vw, 18px); max-width: 580px; margin-top: 28px; color: var(--paper); opacity: 0.8; line-height: 1.65; }
body.page-pickleball-btoc .page-header-switch { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
body.page-pickleball-btoc .switch-link { font-family: var(--f-display); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime); border-bottom: 1px solid rgba(175,214,57,0.4); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
body.page-pickleball-btoc .switch-link:hover { color: #fff; border-color: #fff; }
body.page-pickleball-btoc .switch-sep { color: rgba(175,214,57,0.85); font-size: 12px; font-family: var(--f-display); letter-spacing: 0.1em; text-transform: uppercase; }
body.page-pickleball-btoc .catalogue { padding: 0 24px 80px; }
body.page-pickleball-btoc .catalogue-inner { max-width: 1320px; margin: 0 auto; }
body.page-pickleball-btoc .cat-filters { position: sticky; top: 97px; z-index: 50; background: var(--white); border-bottom: 1px solid var(--border); padding: 0 24px; margin: 0 -24px; }
body.page-pickleball-btoc .cat-filters-inner { max-width: 1320px; margin: 0 auto; display: flex; align-items: stretch; gap: 0; flex-wrap: nowrap; overflow-x: auto; }
body.page-pickleball-btoc .cat-filter-btn {
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  padding: 18px 28px 15px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.page-pickleball-btoc .cat-filter-btn:hover { color: var(--ink); }
body.page-pickleball-btoc .cat-filter-btn.active { color: var(--lime); border-bottom-color: var(--lime); }
body.page-pickleball-btoc .cat-filter-btn .count-pill {
  background: var(--paper);
  color: var(--text-light);
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 100px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: background 0.2s, color 0.2s;
}
body.page-pickleball-btoc .cat-filter-btn.active .count-pill { background: var(--lime); color: #fff; }
body.page-pickleball-btoc .sport-section { padding-top: 64px; }
body.page-pickleball-btoc .sport-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--border);
}
body.page-pickleball-btoc .sport-section-head h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(32px, 3.5vw, 52px);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 20px;
}
body.page-pickleball-btoc .sport-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 100px;
  flex-shrink: 0;
}
body.page-pickleball-btoc .sport-tag-pk { background: rgba(175,214,57,0.18); color: var(--lime); }
body.page-pickleball-btoc .sport-section-count { font-family: var(--f-display); font-size: 13px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }
body.page-pickleball-btoc .prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
body.page-pickleball-btoc .prod-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  position: relative;
}
body.page-pickleball-btoc .prod-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0,0,0,0.09); border-color: var(--lime); }
body.page-pickleball-btoc .prod-card.in-wishlist { border-color: var(--lime); }
body.page-pickleball-btoc .prod-card.in-wishlist .prod-add-btn { background: var(--lime); color: #fff; }
body.page-pickleball-btoc .prod-card.in-wishlist .prod-add-btn .btn-text-add { display: none; }
body.page-pickleball-btoc .prod-card.in-wishlist .prod-add-btn .btn-text-remove { display: flex; }
body.page-pickleball-btoc .prod-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(175,214,57,0.14) 0%, rgba(175,214,57,0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
body.page-pickleball-btoc .prod-img-inner { display: flex; flex-direction: column; align-items: center; gap: 10px; }
body.page-pickleball-btoc .prod-img.has-photo { background: var(--white); }
body.page-pickleball-btoc .prod-photo { width: 100%; height: 100%; object-fit: contain; display: block; }
body.page-pickleball-btoc .prod-brand-tag-corner { position: absolute; bottom: 10px; right: 10px; font-family: var(--f-display); font-weight: 700; font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime-text); background: rgba(255,255,255,0.88); padding: 3px 9px; border-radius: 100px; }
body.page-pickleball-btoc .prod-monogram { font-family: var(--f-display); font-weight: 900; font-size: 72px; line-height: 1; letter-spacing: -0.04em; color: var(--lime); opacity: 0.18; }
body.page-pickleball-btoc .prod-brand-tag { font-family: var(--f-display); font-weight: 700; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); opacity: 0.55; }
body.page-pickleball-btoc .prod-level {
  position: absolute;
  top: 12px;
  left: 12px;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
body.page-pickleball-btoc .level-comp { background: var(--lime); color: #fff; }
body.page-pickleball-btoc .level-poly { background: rgba(175,214,57,0.2); color: var(--lime); }
body.page-pickleball-btoc .level-init { background: rgba(0,0,0,0.07); color: var(--text); }
body.page-pickleball-btoc .level-acc { background: rgba(0,0,0,0.06); color: var(--text-light); }
body.page-pickleball-btoc .prod-body { padding: 20px 20px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
body.page-pickleball-btoc .prod-cat { font-family: var(--f-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-light); }
body.page-pickleball-btoc .prod-name { font-family: var(--f-display); font-size: 22px; font-weight: 800; text-transform: uppercase; line-height: 1.05; letter-spacing: -0.01em; }
body.page-pickleball-btoc .prod-desc { font-family: var(--f-body); font-size: 13px; color: var(--text); line-height: 1.55; margin-top: 4px; flex: 1; }
body.page-pickleball-btoc .prod-footer { padding: 0 20px 20px; }
body.page-pickleball-btoc .prod-add-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  font-family: var(--f-display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--lime);
  border: 1.5px solid var(--lime);
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
body.page-pickleball-btoc .prod-add-btn:hover { background: var(--lime); color: #fff; transform: translateY(-1px); }
body.page-pickleball-btoc .btn-text-remove { display: none; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); }
body.page-pickleball-btoc .btn-text-remove::before { content: '✓'; font-size: 14px; }
body.page-pickleball-btoc .wishlist-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: var(--ink);
  border-top: 2px solid var(--lime);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -8px 32px rgba(0,0,0,0.25);
}
body.page-pickleball-btoc .wishlist-bar.visible { transform: translateY(0); }
body.page-pickleball-btoc .wishlist-bar-left {
  display: flex;
  align-items: center;
  gap: 16px;
}
body.page-pickleball-btoc .wishlist-count-badge {
  width: 40px;
  height: 40px;
  background: var(--lime);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.2s;
}
body.page-pickleball-btoc .wishlist-count-badge.bump { animation: bump 0.3s ease; }
body.page-pickleball-btoc .wishlist-bar-info { display: flex; flex-direction: column; gap: 2px; }
body.page-pickleball-btoc .wishlist-bar-label { font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
body.page-pickleball-btoc .wishlist-bar-summary { font-family: var(--f-display); font-size: 16px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: #fff; }
body.page-pickleball-btoc .wishlist-open-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--lime);
  color: #fff;
  font-family: var(--f-display);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  flex-shrink: 0;
}
body.page-pickleball-btoc .wishlist-open-btn:hover { background: var(--lime); transform: translateY(-1px); }
body.page-pickleball-btoc .wishlist-open-btn .arrow { font-size: 16px; transition: transform 0.2s; }
body.page-pickleball-btoc .wishlist-open-btn:hover .arrow { transform: translateX(4px); }
body.page-pickleball-btoc .drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  backdrop-filter: blur(4px);
}
body.page-pickleball-btoc .drawer-overlay.open { opacity: 1; pointer-events: all; }
body.page-pickleball-btoc .drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--ink);
  z-index: 310;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -24px 0 60px rgba(0,0,0,0.3);
}
body.page-pickleball-btoc .drawer.open { transform: translateX(0); }
body.page-pickleball-btoc .drawer-header {
  padding: 28px 28px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-shrink: 0;
}
body.page-pickleball-btoc .drawer-header-left { display: flex; flex-direction: column; gap: 4px; }
body.page-pickleball-btoc .drawer-eyebrow { font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase; color: var(--lime); display: flex; align-items: center; gap: 10px; }
body.page-pickleball-btoc .drawer-eyebrow::before { content: ''; width: 24px; height: 2px; background: var(--lime); }
body.page-pickleball-btoc .drawer-title { font-family: var(--f-display); font-weight: 800; font-size: 32px; text-transform: uppercase; letter-spacing: -0.01em; color: #fff; display: flex; align-items: baseline; gap: 12px; }
body.page-pickleball-btoc .drawer-title .drawer-count { font-size: 20px; color: var(--lime); font-weight: 700; }
body.page-pickleball-btoc .drawer-close-btn { width: 44px; height: 44px; border-radius: 2px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.6); font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s; flex-shrink: 0; }
body.page-pickleball-btoc .drawer-close-btn:hover { background: rgba(255,255,255,0.15); color: #fff; }
body.page-pickleball-btoc .drawer-list {
  flex: 1;
  overflow-y: auto;
  padding: 8px 0;
}
body.page-pickleball-btoc .drawer-list::-webkit-scrollbar { width: 4px; }
body.page-pickleball-btoc .drawer-list::-webkit-scrollbar-track { background: transparent; }
body.page-pickleball-btoc .drawer-list::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.15); border-radius: 2px; }
body.page-pickleball-btoc .drawer-item {
  display: grid;
  grid-template-columns: 52px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: background 0.15s;
}
body.page-pickleball-btoc .drawer-item:hover { background: rgba(255,255,255,0.04); }
body.page-pickleball-btoc .drawer-item:last-child { border-bottom: none; }
body.page-pickleball-btoc .drawer-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: 6px;
  background: rgba(175,214,57,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}
body.page-pickleball-btoc .drawer-item-info { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
body.page-pickleball-btoc .drawer-item-cat {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--f-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  background: rgba(175,214,57,0.2);
  padding: 2px 8px;
  border-radius: 100px;
  width: fit-content;
}
body.page-pickleball-btoc .drawer-item-name { font-family: var(--f-display); font-weight: 800; font-size: 17px; text-transform: uppercase; letter-spacing: -0.005em; color: #fff; line-height: 1.1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
body.page-pickleball-btoc .drawer-item-level { font-family: var(--f-body); font-size: 12px; color: rgba(255,255,255,0.45); }
body.page-pickleball-btoc .drawer-item-qty { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
body.page-pickleball-btoc .qty-btn { width: 44px; height: 44px; border-radius: 4px; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); color: rgba(255,255,255,0.7); font-size: 18px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s, border-color 0.2s; flex-shrink: 0; font-family: var(--f-body); font-weight: 400; }
body.page-pickleball-btoc .qty-btn:hover { background: var(--lime); border-color: var(--lime); color: #fff; }
body.page-pickleball-btoc .qty-btn.qty-dec:hover { background: rgba(220,50,50,0.22); border-color: rgba(220,50,50,0.3); color: #ff6b6b; }
body.page-pickleball-btoc .qty-val { font-family: var(--f-display); font-weight: 800; font-size: 17px; color: #fff; min-width: 22px; text-align: center; }
body.page-pickleball-btoc .drawer-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 60px 28px;
  text-align: center;
  color: rgba(255,255,255,0.35);
}
body.page-pickleball-btoc .drawer-empty-icon { font-size: 52px; opacity: 0.4; }
body.page-pickleball-btoc .drawer-empty-title { font-family: var(--f-display); font-size: 22px; text-transform: uppercase; font-weight: 700; color: rgba(255,255,255,0.4); }
body.page-pickleball-btoc .drawer-empty-text { font-family: var(--f-body); font-size: 14px; line-height: 1.6; max-width: 260px; }
body.page-pickleball-btoc .drawer-footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 28px 28px;
  flex-shrink: 0;
  background: rgba(255,255,255,0.03);
}
body.page-pickleball-btoc .drawer-form-eyebrow { font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
body.page-pickleball-btoc .drawer-form-eyebrow::before { content: ''; width: 22px; height: 2px; background: var(--lime); }
body.page-pickleball-btoc .drawer-form { display: flex; flex-direction: column; gap: 16px; }
body.page-pickleball-btoc .drawer-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
body.page-pickleball-btoc .dform-field { display: flex; flex-direction: column; gap: 6px; }
body.page-pickleball-btoc .dform-field label { font-family: var(--f-display); font-size: 10px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(255,255,255,0.5); }
body.page-pickleball-btoc .dform-field label .req { color: var(--lime); margin-left: 3px; }
body.page-pickleball-btoc .dform-field input,
body.page-pickleball-btoc .dform-field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  padding: 10px 0 12px;
  color: #fff;
  font-family: var(--f-body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
}
body.page-pickleball-btoc .dform-field input::placeholder,
body.page-pickleball-btoc .dform-field textarea::placeholder { color: rgba(255,255,255,0.3); font-style: italic; }
body.page-pickleball-btoc .dform-field input:focus,
body.page-pickleball-btoc .dform-field textarea:focus { border-color: var(--lime); }
body.page-pickleball-btoc .dform-field textarea { resize: none; min-height: 68px; line-height: 1.5; font-size: 16px; }
body.page-pickleball-btoc .drawer-recap {
  background: rgba(175,214,57,0.12);
  border: 1px solid rgba(175,214,57,0.3);
  border-radius: 4px;
  padding: 12px 16px;
  font-family: var(--f-body);
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-height: 110px;
  overflow-y: auto;
}
body.page-pickleball-btoc .drawer-recap .recap-label { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--lime); margin-bottom: 6px; }
body.page-pickleball-btoc .drawer-recap ul { list-style: none; padding: 0; }
body.page-pickleball-btoc .drawer-recap ul li .recap-bullet { color: var(--lime); margin-right: 6px; }
body.page-pickleball-btoc .drawer-send-btn {
  width: 100%;
  padding: 16px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}
body.page-pickleball-btoc .drawer-send-btn:hover { background: var(--lime-hover); color: var(--ink); transform: translateY(-1px); }
body.page-pickleball-btoc .drawer-send-btn .arrow { font-size: 18px; transition: transform 0.2s; }
body.page-pickleball-btoc .drawer-send-btn:hover .arrow { transform: translateX(5px); }
body.page-pickleball-btoc .drawer-note { font-family: var(--f-body); font-style: italic; font-size: 12px; color: rgba(255,255,255,0.4); text-align: center; margin-top: 10px; }
body.page-pickleball-btoc .drawer-success {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 40px 28px;
  text-align: center;
}
body.page-pickleball-btoc .drawer-success.visible { display: flex; }
body.page-pickleball-btoc .drawer-success-icon { font-size: 48px; color: var(--lime); }
body.page-pickleball-btoc .drawer-success-title { font-family: var(--f-display); font-size: 28px; text-transform: uppercase; font-weight: 800; color: #fff; }
body.page-pickleball-btoc .drawer-success-text { font-family: var(--f-body); font-size: 14px; color: rgba(255,255,255,0.65); line-height: 1.6; max-width: 300px; }
body.page-pickleball-btoc .footer { background: var(--dark); color: var(--paper); padding: 80px 24px 32px; }
body.page-pickleball-btoc .footer-inner { max-width: 1440px; margin: 0 auto; }
body.page-pickleball-btoc .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.page-pickleball-btoc .footer-brand .logo-img { height: 88px; width: auto; margin-bottom: 24px; background: var(--white); padding: 6px; border-radius: 6px; }
body.page-pickleball-btoc .footer-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; max-width: 360px; }
body.page-pickleball-btoc .footer-col h4 { font-family: var(--f-display); font-size: 14px; font-weight: 700; letter-spacing: 0.2em; color: var(--lime); margin-bottom: 20px; }
body.page-pickleball-btoc .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
body.page-pickleball-btoc .footer-col a { font-size: 14px; color: var(--paper); opacity: 0.88; transition: color 0.2s, opacity 0.2s; }
body.page-pickleball-btoc .footer-col a:hover { color: var(--lime); opacity: 1; }
body.page-pickleball-btoc .footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
body.page-pickleball-btoc .footer-bottom .socials { display: flex; gap: 24px; }
body.page-pickleball-btoc .footer-bottom .socials a:hover { color: var(--lime); }
@media (max-width: 1024px) {
  body.page-pickleball-btoc .prod-grid { grid-template-columns: repeat(2, 1fr); }
  body.page-pickleball-btoc .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  body.page-pickleball-btoc .nav-links { display: none; }
  body.page-pickleball-btoc .nav-cta-pickleball { display: none; }
  body.page-pickleball-btoc .nav-toggle { display: block; }
  body.page-pickleball-btoc .nav-cta .btn { padding: 11px 18px; font-size: 13px; }
  body.page-pickleball-btoc .cat-filters { top: 88px; }
}
@media (max-width: 720px) {
  body.page-pickleball-btoc .promo-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; }
  body.page-pickleball-btoc .promo-badge { font-size: 11px; padding: 4px 10px; }
  body.page-pickleball-btoc .logo-img { height: 56px; }
  body.page-pickleball-btoc .hide-sm { display: none; }
  body.page-pickleball-btoc .prod-grid { grid-template-columns: 1fr; }
  body.page-pickleball-btoc .footer-grid { grid-template-columns: 1fr; }
  body.page-pickleball-btoc .drawer { max-width: 100%; overflow-y: auto; -webkit-overflow-scrolling: touch; }
  body.page-pickleball-btoc .drawer-list { flex: 0 0 auto; overflow-y: visible; }
  body.page-pickleball-btoc .drawer-form-row { grid-template-columns: 1fr; }
  body.page-pickleball-btoc .wishlist-bar { padding: 14px 20px; }
  body.page-pickleball-btoc .cat-filter-btn { padding: 14px 18px 11px; font-size: 13px; }
  body.page-pickleball-btoc .page-header { padding: 28px 20px 24px; }
  body.page-pickleball-btoc .catalogue { padding: 0 20px 60px; }
}

/* ---- Partenaires BtoB (page-pickleball-btob) ---- */
body.page-pickleball-btob .sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
body.page-pickleball-btob .f-edito { font-family: var(--f-edito); font-style: italic; font-weight: 400; letter-spacing: 0; text-transform: none; }
body.page-pickleball-btob .promo { background: var(--ink); color: var(--white); padding: 12px 24px; position: relative; overflow: hidden; }
body.page-pickleball-btob .promo::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--orange); }
body.page-pickleball-btob .promo-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 18px; font-size: 13px; letter-spacing: 0.04em; }
body.page-pickleball-btob .promo-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--orange); color: var(--ink); font-family: var(--f-display); font-weight: 700; font-size: 13px; text-transform: uppercase; letter-spacing: 0.1em; padding: 5px 12px; border-radius: 2px; }
body.page-pickleball-btob .promo-badge .dot { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; animation: pulse 1.6s ease-in-out infinite; }
body.page-pickleball-btob .promo-text { color: var(--white); }
body.page-pickleball-btob .promo-text strong { font-weight: 600; }
body.page-pickleball-btob .promo-link { font-family: var(--f-display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; font-size: 13px; color: var(--lime); border-bottom: 1px solid transparent; padding-bottom: 2px; transition: border-color 0.2s; }
body.page-pickleball-btob .promo-link:hover { border-color: var(--lime); }
body.page-pickleball-btob .promo-link .arrow { display: inline-block; transition: transform 0.2s; margin-left: 4px; }
body.page-pickleball-btob .promo-link:hover .arrow { transform: translateX(3px); }
body.page-pickleball-btob .nav { background: var(--white); border-bottom: 1px solid var(--border); padding: 8px 24px; position: sticky; top: 0; z-index: 100; backdrop-filter: blur(10px); }
body.page-pickleball-btob .nav-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
body.page-pickleball-btob .logo { display: flex; align-items: center; }
body.page-pickleball-btob .logo-img { height: 80px; width: auto; display: block; }
body.page-pickleball-btob .nav-cta { display: flex; align-items: center; gap: 14px; }
body.page-pickleball-btob .nav-links { display: flex; align-items: center; gap: 28px; margin-left: auto; margin-right: 24px; }
body.page-pickleball-btob .nav-links a { font-family: var(--f-display); font-size: 14px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink); position: relative; padding: 6px 0; transition: color 0.2s; }
body.page-pickleball-btob .nav-links a::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 2px; background: var(--lime); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
body.page-pickleball-btob .nav-links a:hover { color: var(--lime-text); }
body.page-pickleball-btob .nav-links a:hover::after { transform: scaleX(1); }
body.page-pickleball-btob .nav-toggle { display: none; background: transparent; border: 1.5px solid var(--ink); border-radius: 2px; width: 44px; height: 44px; cursor: pointer; padding: 0; position: relative; transition: background 0.2s; }
body.page-pickleball-btob .nav-toggle:hover { background: var(--ink); }
body.page-pickleball-btob .nav-toggle:hover .nav-toggle-bar { background: var(--lime); }
body.page-pickleball-btob .nav-toggle-bar { position: absolute; left: 11px; right: 11px; height: 2px; background: var(--ink); transition: transform 0.25s, opacity 0.2s, top 0.25s, background 0.2s; }
body.page-pickleball-btob .nav-toggle-bar:nth-child(1) { top: 14px; }
body.page-pickleball-btob .nav-toggle-bar:nth-child(2) { top: 21px; }
body.page-pickleball-btob .nav-toggle-bar:nth-child(3) { top: 28px; }
body.page-pickleball-btob .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { top: 21px; transform: rotate(45deg); }
body.page-pickleball-btob .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
body.page-pickleball-btob .nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { top: 21px; transform: rotate(-45deg); }
body.page-pickleball-btob .nav-mobile-menu { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); box-shadow: 0 12px 28px rgba(0,0,0,0.08); padding: 12px 24px 20px; flex-direction: column; gap: 4px; z-index: 99; }
body.page-pickleball-btob .nav-mobile-menu.open { display: flex; }
body.page-pickleball-btob .nav-mobile-link { font-family: var(--f-display); font-size: 18px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink); padding: 16px 4px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; transition: color 0.2s, padding-left 0.2s; }
body.page-pickleball-btob .nav-mobile-link:hover { color: var(--lime-text); padding-left: 8px; }
body.page-pickleball-btob .nav-mobile-link .arrow { font-size: 14px; opacity: 0.6; }
body.page-pickleball-btob .nav-mobile-link-pickleball { background: var(--ink); color: var(--lime); margin-left: -24px; margin-right: -24px; padding-left: 28px; padding-right: 28px; border-bottom: none; margin-top: 8px; }
body.page-pickleball-btob .nav-mobile-link-pickleball .arrow { color: var(--lime); opacity: 1; }
body.page-pickleball-btob .nav-mobile-link-pickleball:hover { background: var(--lime); color: var(--ink); padding-left: 28px; }
body.page-pickleball-btob .nav-mobile-link-pickleball:hover .arrow { color: var(--ink); }
body.page-pickleball-btob .btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; font-family: var(--f-display); font-size: 15px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; border: none; cursor: pointer; transition: transform 0.2s, background 0.2s, color 0.2s; border-radius: 2px; }
body.page-pickleball-btob .btn-lime { background: var(--lime); color: var(--ink); }
body.page-pickleball-btob .btn-lime:hover { background: var(--ink); color: var(--lime); transform: translateY(-2px); }
body.page-pickleball-btob .btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--ink); }
body.page-pickleball-btob .btn-ghost:hover { background: var(--ink); color: var(--white); }
body.page-pickleball-btob .btn-ghost-light { background: transparent; color: var(--white); border: 1.5px solid var(--white); }
body.page-pickleball-btob .btn-ghost-light:hover { background: var(--white); color: var(--ink); }
body.page-pickleball-btob .btn .arrow { font-size: 18px; transition: transform 0.2s; }
body.page-pickleball-btob .btn:hover .arrow { transform: translateX(4px); }
body.page-pickleball-btob .page-header { background: var(--ink); color: var(--white); padding: 44px 24px 40px; position: relative; overflow: hidden; }
body.page-pickleball-btob .page-header-bg { position: absolute; inset: 0; background-image: var(--ph-photo); background-size: cover; background-position: center; opacity: 0.2; filter: contrast(1.05); }
body.page-pickleball-btob .page-header::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 0%, var(--ink) 100%); pointer-events: none; }
body.page-pickleball-btob .page-header::before { content: ''; position: absolute; top: -180px; right: -180px; width: 560px; height: 560px; background: radial-gradient(circle, var(--lime) 0%, transparent 65%); opacity: 0.2; pointer-events: none; z-index: 1; }
body.page-pickleball-btob .page-header-inner { max-width: 1440px; margin: 0 auto; position: relative; z-index: 2; }
body.page-pickleball-btob .breadcrumb { font-family: var(--f-display); font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); margin-bottom: 28px; font-weight: 600; }
body.page-pickleball-btob .breadcrumb a { color: var(--paper); opacity: 0.7; transition: opacity 0.2s, color 0.2s; }
body.page-pickleball-btob .breadcrumb a:hover { color: var(--lime); opacity: 1; }
body.page-pickleball-btob .breadcrumb .sep { margin: 0 12px; color: var(--paper); opacity: 0.35; }
body.page-pickleball-btob .page-eyebrow { display: inline-flex; align-items: center; gap: 14px; font-family: var(--f-display); font-size: 13px; font-weight: 500; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lime); margin-bottom: 24px; }
body.page-pickleball-btob .page-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--lime); }
body.page-pickleball-btob .page-title { font-family: var(--f-display); font-weight: 800; font-size: clamp(56px, 9vw, 140px); line-height: 0.88; letter-spacing: -0.015em; text-transform: uppercase; }
body.page-pickleball-btob .page-title .accent { color: var(--lime); font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
body.page-pickleball-btob .page-lead { font-family: var(--f-body); font-size: clamp(15px, 1.3vw, 18px); max-width: 580px; margin-top: 28px; color: var(--paper); opacity: 0.8; line-height: 1.65; }
body.page-pickleball-btob .page-header-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 36px; }
body.page-pickleball-btob .page-header-switch { margin-top: 24px; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
body.page-pickleball-btob .switch-link { font-family: var(--f-display); font-size: 13px; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--lime); border-bottom: 1px solid rgba(175,214,57,0.4); padding-bottom: 3px; transition: color 0.2s, border-color 0.2s; }
body.page-pickleball-btob .switch-link:hover { color: #fff; border-color: rgba(255,255,255,0.6); }
body.page-pickleball-btob .switch-sep { color: var(--lime); font-size: 12px; font-family: var(--f-display); letter-spacing: 0.1em; }
body.page-pickleball-btob .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.75s, transform 0.75s; }
body.page-pickleball-btob .reveal.in { opacity: 1; transform: translateY(0); }
body.page-pickleball-btob .pillars { background: var(--white); padding: 80px 24px; border-bottom: 1px solid var(--border); }
body.page-pickleball-btob .pillars-inner { max-width: 1280px; margin: 0 auto; }
body.page-pickleball-btob .section-eyebrow { font-family: var(--f-display); font-size: 13px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); display: inline-flex; align-items: center; gap: 14px; margin-bottom: 16px; }
body.page-pickleball-btob .section-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--lime); }
body.page-pickleball-btob .pillars-head { max-width: 700px; margin-bottom: 64px; }
body.page-pickleball-btob .pillars-head h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 18px; }
body.page-pickleball-btob .pillars-head h2 .accent { color: var(--lime); font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
body.page-pickleball-btob .pillars-head p { font-size: 17px; color: var(--text); line-height: 1.7; max-width: 560px; }
body.page-pickleball-btob .pillars-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--border); border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
body.page-pickleball-btob .pillar-card {
  background: var(--white);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.2s;
}
body.page-pickleball-btob .pillar-card:hover { background: var(--paper); }
body.page-pickleball-btob .pillar-num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 72px;
  line-height: 1;
  color: var(--lime);
  opacity: 0.15;
  letter-spacing: -0.04em;
  margin-bottom: -12px;
}
body.page-pickleball-btob .pillar-icon {
  width: 52px;
  height: 52px;
  background: rgba(175,214,57,0.14);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--lime);
}
body.page-pickleball-btob .pillar-title { font-family: var(--f-display); font-weight: 800; font-size: 26px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.05; }
body.page-pickleball-btob .pillar-desc { font-family: var(--f-body); font-size: 15px; color: var(--text); line-height: 1.65; }
body.page-pickleball-btob .pillar-detail {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.page-pickleball-btob .pillar-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--f-body);
  font-size: 13px;
  color: var(--text);
  line-height: 1.5;
}
body.page-pickleball-btob .pillar-detail-item::before { content: '\25CF'; color: var(--lime); font-size: 10px; margin-top: 5px; flex-shrink: 0; }
body.page-pickleball-btob .profiles { background: var(--paper); padding: 80px 24px; }
body.page-pickleball-btob .profiles-inner { max-width: 1280px; margin: 0 auto; }
body.page-pickleball-btob .profiles-head { text-align: center; max-width: 640px; margin: 0 auto 60px; }
body.page-pickleball-btob .profiles-head h2 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 16px; }
body.page-pickleball-btob .profiles-head h2 .accent { color: var(--lime); font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
body.page-pickleball-btob .profiles-head p { font-size: 16px; color: var(--text); line-height: 1.7; }
body.page-pickleball-btob .profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
body.page-pickleball-btob .profile-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
  cursor: default;
}
body.page-pickleball-btob .profile-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.08); border-color: var(--lime); }
body.page-pickleball-btob .profile-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: rgba(175,214,57,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--lime);
}
body.page-pickleball-btob .profile-label { font-family: var(--f-display); font-size: 11px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--lime); }
body.page-pickleball-btob .profile-title { font-family: var(--f-display); font-weight: 800; font-size: 24px; text-transform: uppercase; letter-spacing: -0.01em; line-height: 1.1; }
body.page-pickleball-btob .profile-desc { font-family: var(--f-body); font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
body.page-pickleball-btob .profile-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
body.page-pickleball-btob .profile-tag { font-family: var(--f-display); font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; padding: 4px 10px; background: rgba(175,214,57,0.14); color: var(--lime); border-radius: 100px; }
body.page-pickleball-btob .profile-cta { display: inline-flex; align-items: center; gap: 8px; font-family: var(--f-display); font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--lime); margin-top: 8px; transition: gap 0.2s; }
body.page-pickleball-btob .profile-card:hover .profile-cta { gap: 12px; }
body.page-pickleball-btob .profile-cta .arrow { font-size: 16px; }
body.page-pickleball-btob .form-section { background: var(--white); padding: 80px 24px; border-top: 1px solid var(--border); }
body.page-pickleball-btob .form-section-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: start; }
body.page-pickleball-btob .form-left {}
body.page-pickleball-btob .form-left .section-eyebrow { margin-bottom: 20px; }
body.page-pickleball-btob .form-left h2 { font-size: clamp(36px, 4.5vw, 64px); margin-bottom: 24px; }
body.page-pickleball-btob .form-left h2 .accent { color: var(--lime); font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
body.page-pickleball-btob .form-left .lead { font-size: 17px; color: var(--text); line-height: 1.7; margin-bottom: 44px; max-width: 440px; }
body.page-pickleball-btob .benefit-list { display: flex; flex-direction: column; border-top: 1px solid var(--border); }
body.page-pickleball-btob .benefit-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 18px;
  align-items: start;
}
body.page-pickleball-btob .benefit-num {
  width: 36px;
  height: 36px;
  background: rgba(175,214,57,0.14);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 16px;
  color: var(--lime);
  flex-shrink: 0;
  margin-top: 2px;
}
body.page-pickleball-btob .benefit-label { font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-light); margin-bottom: 5px; }
body.page-pickleball-btob .benefit-value { font-family: var(--f-display); font-weight: 700; font-size: 20px; text-transform: uppercase; letter-spacing: 0.005em; line-height: 1.15; }
body.page-pickleball-btob .benefit-sub { font-family: var(--f-body); font-size: 14px; color: var(--text-light); margin-top: 5px; line-height: 1.5; }
body.page-pickleball-btob .contact-form-wrap {
  background: var(--ink);
  color: var(--white);
  padding: 40px 44px;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
body.page-pickleball-btob .contact-form-wrap::before { content: ''; position: absolute; top: 0; left: 0; width: 80px; height: 80px; border-top: 2px solid var(--lime); border-left: 2px solid var(--lime); pointer-events: none; }
body.page-pickleball-btob .contact-form-wrap::after { content: ''; position: absolute; bottom: 0; right: 0; width: 80px; height: 80px; border-bottom: 2px solid var(--lime); border-right: 2px solid var(--lime); pointer-events: none; }
body.page-pickleball-btob .form-eyebrow { font-family: var(--f-display); font-size: 12px; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--lime); margin-bottom: 16px; display: inline-flex; align-items: center; gap: 12px; }
body.page-pickleball-btob .form-eyebrow::before { content: ''; width: 28px; height: 2px; background: var(--lime); }
body.page-pickleball-btob .form-title { font-family: var(--f-display); font-weight: 800; font-size: clamp(34px, 3.5vw, 52px); line-height: 0.95; letter-spacing: -0.01em; text-transform: uppercase; margin-bottom: 36px; }
body.page-pickleball-btob .form-title .accent { color: var(--lime); font-family: var(--f-edito); font-style: italic; font-weight: 500; letter-spacing: -0.005em; text-transform: none; }
body.page-pickleball-btob .contact-form { display: flex; flex-direction: column; gap: 24px; }
body.page-pickleball-btob .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
body.page-pickleball-btob .form-field { display: flex; flex-direction: column; gap: 8px; }
body.page-pickleball-btob .form-field label { font-family: var(--f-display); font-size: 11px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--paper); opacity: 0.65; }
body.page-pickleball-btob .form-field label .req { color: var(--lime); margin-left: 4px; }
body.page-pickleball-btob .form-field input,
body.page-pickleball-btob .form-field select,
body.page-pickleball-btob .form-field textarea { background: transparent; border: none; border-bottom: 1px solid rgba(255,255,255,0.22); padding: 12px 0 14px; color: var(--white); font-family: var(--f-body); font-size: 16px; outline: none; transition: border-color 0.2s; width: 100%; border-radius: 0; }
body.page-pickleball-btob .form-field input::placeholder,
body.page-pickleball-btob .form-field textarea::placeholder { color: rgba(255,255,255,0.35); font-style: italic; }
body.page-pickleball-btob .form-field input:focus,
body.page-pickleball-btob .form-field select:focus,
body.page-pickleball-btob .form-field textarea:focus { border-color: var(--lime); }
body.page-pickleball-btob .form-field select { appearance: none; background-image: linear-gradient(45deg,transparent 50%,var(--lime) 50%),linear-gradient(135deg,var(--lime) 50%,transparent 50%); background-position: calc(100% - 12px) 22px,calc(100% - 6px) 22px; background-size: 6px 6px,6px 6px; background-repeat: no-repeat; padding-right: 30px; cursor: pointer; }
body.page-pickleball-btob .form-field select option { background: var(--ink); color: var(--white); }
body.page-pickleball-btob .form-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
body.page-pickleball-btob .form-consent { display: flex; gap: 12px; align-items: flex-start; font-size: 13px; color: var(--paper); opacity: 0.82; line-height: 1.5; }
body.page-pickleball-btob .form-consent input[type="checkbox"] { appearance: none; width: 18px; height: 18px; border: 1.5px solid rgba(255,255,255,0.35); background: transparent; cursor: pointer; flex-shrink: 0; margin-top: 2px; position: relative; transition: all 0.2s; border-radius: 2px; }
body.page-pickleball-btob .form-consent input[type="checkbox"]:checked { background: var(--lime); border-color: var(--lime); }
body.page-pickleball-btob .form-consent input[type="checkbox"]:checked::after { content: '✓'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 13px; font-weight: bold; }
body.page-pickleball-btob .form-consent a { color: var(--lime); text-decoration: underline; text-decoration-color: rgba(175,214,57,0.4); text-underline-offset: 3px; }
body.page-pickleball-btob .form-consent a:hover { text-decoration-color: var(--lime); }
body.page-pickleball-btob .form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-top: 8px; }
body.page-pickleball-btob .form-submit { background: var(--lime); color: var(--ink); border: none; padding: 16px 32px; font-family: var(--f-display); font-size: 15px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700; cursor: pointer; display: inline-flex; align-items: center; gap: 14px; transition: all 0.2s; border-radius: 2px; }
body.page-pickleball-btob .form-submit:hover { background: var(--white); color: var(--ink); transform: translateY(-2px); }
body.page-pickleball-btob .form-submit .arrow { font-size: 18px; transition: transform 0.2s; }
body.page-pickleball-btob .form-submit:hover .arrow { transform: translateX(6px); }
body.page-pickleball-btob .form-note { font-family: var(--f-body); font-style: italic; font-size: 13px; color: var(--paper); opacity: 0.6; }
body.page-pickleball-btob .form-success { display: none; padding: 28px; background: rgba(175,214,57,0.16); border: 1px solid var(--lime); color: var(--lime); font-family: var(--f-body); font-size: 16px; text-align: center; border-radius: 2px; line-height: 1.5; }
body.page-pickleball-btob .form-success.visible { display: block; }
body.page-pickleball-btob .form-success .check { font-family: var(--f-display); font-size: 36px; color: var(--lime); display: block; margin-bottom: 8px; line-height: 1; }
body.page-pickleball-btob .footer { background: var(--dark); color: var(--paper); padding: 80px 24px 32px; }
body.page-pickleball-btob .footer-inner { max-width: 1440px; margin: 0 auto; }
body.page-pickleball-btob .footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
body.page-pickleball-btob .footer-brand .logo-img { height: 88px; width: auto; margin-bottom: 24px; background: var(--white); padding: 6px; border-radius: 6px; }
body.page-pickleball-btob .footer-desc { font-size: 14px; color: var(--text-light); line-height: 1.6; max-width: 360px; }
body.page-pickleball-btob .footer-col h4 { font-family: var(--f-display); font-size: 14px; font-weight: 700; letter-spacing: 0.2em; color: var(--lime); margin-bottom: 20px; }
body.page-pickleball-btob .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
body.page-pickleball-btob .footer-col a { font-size: 14px; color: var(--paper); opacity: 0.88; transition: color 0.2s, opacity 0.2s; }
body.page-pickleball-btob .footer-col a:hover { color: var(--lime); opacity: 1; }
body.page-pickleball-btob .footer-bottom { padding-top: 28px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-light); }
body.page-pickleball-btob .footer-bottom .socials { display: flex; gap: 24px; }
body.page-pickleball-btob .footer-bottom .socials a:hover { color: var(--lime); }
@media (max-width: 1100px) {
  body.page-pickleball-btob .form-section-inner { grid-template-columns: 1fr; gap: 60px; }
  body.page-pickleball-btob .form-left .lead { max-width: 100%; }
  body.page-pickleball-btob .pillars-grid { grid-template-columns: 1fr; }
  body.page-pickleball-btob .profiles-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 1024px) {
  body.page-pickleball-btob .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 900px) {
  body.page-pickleball-btob .nav-links { display: none; }
  body.page-pickleball-btob .nav-cta-pickleball { display: none; }
  body.page-pickleball-btob .nav-toggle { display: block; }
  body.page-pickleball-btob .nav-cta .btn { padding: 11px 18px; font-size: 13px; }
  body.page-pickleball-btob .pillars-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  body.page-pickleball-btob .promo-inner { flex-direction: column; gap: 6px; text-align: center; font-size: 12px; }
  body.page-pickleball-btob .promo-badge { font-size: 11px; padding: 4px 10px; }
  body.page-pickleball-btob .logo-img { height: 56px; }
  body.page-pickleball-btob .hide-sm { display: none; }
  body.page-pickleball-btob .profiles-grid { grid-template-columns: 1fr; }
  body.page-pickleball-btob .footer-grid { grid-template-columns: 1fr; }
  body.page-pickleball-btob .form-row { grid-template-columns: 1fr; }
  body.page-pickleball-btob .form-actions { flex-direction: column; align-items: stretch; }
  body.page-pickleball-btob .form-submit { justify-content: center; }
  body.page-pickleball-btob .contact-form-wrap { padding: 36px 24px; }
  body.page-pickleball-btob .pillar-card { padding: 32px 28px; }
  body.page-pickleball-btob .page-header { padding: 28px 20px 24px; }
  body.page-pickleball-btob .pillars,
body.page-pickleball-btob .profiles,
body.page-pickleball-btob .form-section { padding: 56px 20px; }
}
@media (prefers-reduced-motion: reduce) {
  body.page-pickleball-btob .reveal { opacity: 1; transform: none; }
}




/* =================================================================
 * PAGES LÉGALES — mentions légales, confidentialité, CGP
 * ================================================================= */
.legal-header {
  background: var(--ink);
  padding: 90px 32px 60px;
  color: var(--white);
  text-align: center;
}
.legal-header .breadcrumb { justify-content: center; margin-bottom: 24px; }
.legal-header .page-eyebrow {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.legal-header h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 16px;
}
.legal-header h1 .accent { color: var(--lime); }
.legal-header .update-date { font-size: 13px; color: var(--text-light); font-style: italic; }

.legal-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}
.legal-block { margin-bottom: 56px; }
.legal-block:last-child { margin-bottom: 0; }
.legal-block h2 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-text);
  border-left: 3px solid var(--lime);
  padding-left: 14px;
  margin-bottom: 20px;
  line-height: 1.3;
}
.legal-block h3 {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 28px 0 10px;
}
.legal-block p,
.legal-block li {
  font-family: var(--f-body);
  font-size: 0.94rem;
  line-height: 1.75;
  color: var(--text);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.legal-block ul, .legal-block ol { padding-left: 20px; margin: 10px 0 16px; }
.legal-block li { margin-bottom: 6px; }
.legal-block a { color: var(--lime-text); text-decoration: underline; }
.legal-block a:hover { color: var(--ink); }
.legal-block strong { color: var(--ink); font-weight: 600; }
.legal-id-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  margin: 20px 0 24px;
  font-size: 0.92rem;
  line-height: 2;
  color: var(--text);
}
.legal-id-card strong { color: var(--ink); }

@media (max-width: 720px) {
  .legal-header { padding: 70px 20px 48px; }
  .legal-section { padding: 48px 20px 72px; }
}

/* =================================================================
 * PAGE FAQ
 * ================================================================= */
.faq-hero {
  background: var(--ink);
  padding: 90px 32px 64px;
  text-align: center;
  color: var(--white);
}
.faq-hero .breadcrumb { justify-content: center; margin-bottom: 24px; }
.faq-hero-eyebrow {
  font-family: var(--f-display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 16px;
}
.faq-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1;
}
.faq-hero h1 .accent { color: var(--lime); }
.faq-hero-lead {
  font-family: var(--f-body);
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin: 0 auto 32px;
  line-height: 1.65;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
}
.faq-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--f-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 4px;
  transition: background 0.2s, transform 0.15s;
}
.faq-hero-cta:hover { background: var(--lime-hover); transform: translateY(-1px); }

.faq-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 32px 96px;
}
.faq-category { margin-bottom: 56px; }
.faq-category:last-child { margin-bottom: 0; }
.faq-category-title {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime-text);
  border-left: 3px solid var(--lime);
  padding-left: 14px;
  margin-bottom: 24px;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-of-type { border-top: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  text-align: left;
  font-family: var(--f-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color: var(--ink);
  transition: color 0.2s;
}
.faq-question:hover { color: var(--lime-text); }
.faq-question[aria-expanded="true"] { color: var(--lime-text); }
.faq-icon {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 2px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 300;
  color: var(--text-light);
  transition: border-color 0.2s, color 0.2s, transform 0.25s;
  font-family: var(--f-body);
  font-style: normal;
  text-transform: none;
}
.faq-question[aria-expanded="true"] .faq-icon {
  border-color: var(--lime);
  color: var(--lime-text);
  transform: rotate(45deg);
}
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0;
}
.faq-answer.open { max-height: 600px; padding: 0 0 24px; }
.faq-answer p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  margin-bottom: 10px;
}
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer a { color: var(--lime-text); text-decoration: underline; }
.faq-answer a:hover { color: var(--ink); }
.faq-answer strong { color: var(--ink); font-weight: 600; }

.faq-contact-nudge {
  background: var(--ink);
  border-radius: 10px;
  padding: 48px 40px;
  text-align: center;
  margin-top: 72px;
}
.faq-contact-nudge h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 14px;
}
.faq-contact-nudge h2 .accent { color: var(--lime); }
.faq-contact-nudge p {
  font-family: var(--f-body);
  font-size: 0.95rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
  text-transform: none;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.6;
}

@media (max-width: 720px) {
  .faq-hero { padding: 70px 20px 48px; }
  .faq-section { padding: 48px 20px 72px; }
  .faq-contact-nudge { padding: 36px 24px; }
  .faq-question { font-size: 0.92rem; }
}


/* ==========================================================================
   CALENDRIER SEJOURS (V7 — template-sejours.php)
   ========================================================================== */

.cal-filters {
  background: var(--lime);
  padding: 22px 24px;
}
.cal-filters-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.cal-tabs {
  display: flex;
  gap: 4px;
  background: rgba(15,15,15,0.12);
  padding: 4px;
  border-radius: 2px;
}
.cal-tab {
  padding: 12px 36px;
  font-family: var(--f-display);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  border: none;
  color: var(--ink);
  opacity: 0.6;
  border-radius: 2px;
  transition: all 0.2s;
}
.cal-tab.active { background: var(--ink); color: var(--lime); opacity: 1; }
.cal-tab:not(.active):hover { opacity: 1; }

.sejours-upcoming { background: var(--paper); padding: 80px 24px; }
.sejours-past { background: var(--ink); color: var(--white); padding: 80px 24px; }
.cal-inner { max-width: 1440px; margin: 0 auto; }

.cal-section-label {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lime-text);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cal-section-label::before { content: ''; width: 40px; height: 2px; background: var(--lime); }
.sejours-past .cal-section-label { color: var(--lime); }

.cal-heading {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(48px, 6vw, 88px);
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.015em;
  margin-bottom: 52px;
  color: var(--ink);
}
.sejours-past .cal-heading { color: var(--white); }
.cal-heading .accent {
  color: var(--lime-text);
  font-family: var(--f-edito);
  font-style: italic;
  font-weight: 500;
  text-transform: none;
}
.sejours-past .cal-heading .accent { color: var(--lime); }

/* Upcoming cards */
.upcoming-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.up-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-radius: 2px;
}
.up-card:hover { transform: translateY(-4px); border-color: var(--ink); box-shadow: 0 12px 32px rgba(15,15,15,0.12); }
.up-card .visual {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 260px;
}
.up-card .visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,15,15,0.3), transparent 70%);
}
.up-card .date-pill {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--lime);
  color: var(--ink);
  padding: 10px 14px;
  font-family: var(--f-display);
  z-index: 2;
  text-align: center;
  line-height: 1;
  border-radius: 2px;
}
.up-card .date-pill .month { font-size: 11px; letter-spacing: 0.14em; font-weight: 700; text-transform: uppercase; }
.up-card .date-pill .day { display: block; font-size: 34px; font-weight: 900; margin: 4px 0; line-height: 1; }
.up-card .date-pill .year { font-size: 11px; opacity: 0.6; font-weight: 600; }
.up-card .badge-places {
  position: absolute;
  bottom: 16px; left: 16px;
  background: rgba(15,15,15,0.78);
  color: var(--lime);
  font-family: var(--f-display);
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 12px;
  z-index: 2;
  border-radius: 2px;
}
.up-card .body { padding: 24px 28px; display: flex; flex-direction: column; gap: 8px; }
.up-card .ev-cat { font-family: var(--f-display); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime-text); font-weight: 700; }
.up-card .ev-title { font-family: var(--f-display); font-weight: 800; font-size: 26px; text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; margin-top: 4px; color: var(--ink); }
.up-card .ev-sub { font-family: var(--f-body); font-style: italic; font-size: 14px; color: var(--text); line-height: 1.5; }
.up-card .ev-meta { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.up-card .ev-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--f-display); font-size: 12px;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text); font-weight: 600;
}
.up-card .ev-meta-item::before { content: ''; width: 6px; height: 6px; background: var(--lime); border-radius: 50%; flex-shrink: 0; }
.up-card .ev-cta {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: auto; padding-top: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--f-display); font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--ink); transition: color 0.2s;
}
.up-card:hover .ev-cta { color: var(--lime-text); }
.up-card .ev-cta .arrow { font-size: 14px; transition: transform 0.2s; }
.up-card:hover .ev-cta .arrow { transform: translateX(4px); }

/* Past cards */
.past-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.past-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s, border-color 0.3s;
  border-radius: 2px;
}
.past-card:hover { transform: translateY(-6px); border-color: var(--lime); }
.past-card .visual {
  aspect-ratio: 4/3; position: relative;
  background-size: cover; background-position: center; overflow: hidden;
}
.past-card .visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(15,15,15,0.75), transparent 60%);
}
.past-card .date-badge {
  position: absolute; top: 16px; right: 16px;
  background: var(--ink); color: var(--paper);
  font-family: var(--f-display); font-size: 12px; font-weight: 700;
  padding: 8px 14px; letter-spacing: 0.12em;
  text-transform: uppercase; z-index: 2; border-radius: 2px;
}
.past-card .joueurs-count {
  position: absolute; bottom: 16px; left: 16px;
  font-family: var(--f-display); font-size: 11px; font-weight: 700;
  color: var(--lime); letter-spacing: 0.16em;
  text-transform: uppercase; z-index: 2;
  display: inline-flex; align-items: center; gap: 8px;
}
.past-card .joueurs-count::before { content: '\25CF'; font-size: 10px; }
.past-card .body { padding: 22px 24px; }
.past-card .ev-cat { font-family: var(--f-display); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--lime); font-weight: 700; margin-bottom: 6px; }
.past-card .ev-title { font-family: var(--f-display); font-weight: 800; font-size: 22px; text-transform: uppercase; line-height: 1; letter-spacing: -0.01em; color: var(--white); margin-bottom: 14px; }
.past-card .ev-footer {
  display: flex; justify-content: space-between;
  padding-top: 14px; border-top: 1px solid rgba(255,255,255,0.1);
  font-family: var(--f-display); font-size: 12px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.past-card .ev-footer strong { color: var(--paper); font-weight: 700; }

/* CTA strip séjours */
.sejours-cta { background: var(--lime); padding: 80px 24px; text-align: center; }
.sejours-cta .cta-label {
  font-family: var(--f-display); font-size: 13px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--ink); opacity: 0.6;
  display: inline-flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.sejours-cta .cta-label::before,
.sejours-cta .cta-label::after { content: ''; width: 40px; height: 2px; background: var(--ink); opacity: 0.35; }
.sejours-cta h2 {
  font-family: var(--f-display); font-weight: 800;
  font-size: clamp(40px, 5.5vw, 80px);
  text-transform: uppercase; line-height: 0.95;
  letter-spacing: -0.015em; margin-bottom: 20px; color: var(--ink);
}
.sejours-cta h2 .accent { font-family: var(--f-edito); font-style: italic; font-weight: 500; text-transform: none; }
.sejours-cta p {
  font-family: var(--f-body); font-style: italic; font-size: 18px;
  color: var(--ink); opacity: 0.78; margin-bottom: 40px;
  max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.6;
}
.sejours-cta .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Responsive calendrier */
@media (max-width: 1024px) {
  .upcoming-grid { grid-template-columns: 1fr; }
  .up-card { grid-template-columns: 1fr; }
  .up-card .visual { min-height: 220px; }
  .past-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .sejours-upcoming, .sejours-past, .sejours-cta { padding: 60px 20px; }
  .past-grid { grid-template-columns: 1fr; }
  .cal-tab { padding: 10px 22px; font-size: 13px; }
}


/* ============================================================
   FORMULAIRES — anti-spam + message d'erreur (V11)
   ============================================================ */
.hp-field { position: absolute !important; left: -9999px !important; top: auto;
  width: 1px; height: 1px; overflow: hidden; }
.form-error {
  background: #fcecec; border: 1px solid #e3b3b3; color: #8a1f1f;
  font-family: var(--f-body); font-size: 15px; line-height: 1.45;
  padding: 12px 16px; border-radius: 10px; margin: 0 0 18px;
}
.contact-form button[type="submit"][disabled],
.drawer-form button[type="submit"][disabled] { opacity: .6; cursor: progress; }
