/* ============================================================
   WOLF CONSULT — Feuille de style principale
   Thème : kaki/olive tactique haut de gamme, fond sombre
   Polices : Oswald (titres) + Inter (corps)
   ============================================================ */

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* --- Variables --- */
:root {
  --bg:         #0d0e0b;
  --bg-alt:     #13150e;
  --bg-card:    #1a1c13;
  --bg-hover:   #222419;
  --kaki:       #9a9159;
  --kaki-light: #c4bd8f;
  --kaki-dark:  #6b6438;
  --sand:       #d8d2b4;
  --text:       #e9e7dc;
  --text-muted: #9d9a88;
  --white:      #ffffff;
  --border:          rgba(196, 189, 143, 0.14);
  --border-hover:    rgba(196, 189, 143, 0.34);
  --radius:    4px;
  --radius-lg: 8px;
  --container: 1200px;
  --transition: .3s ease;
  --shadow:    0 4px 24px rgba(0, 0, 0, 0.55);
  --shadow-lg: 0 8px 48px rgba(0, 0, 0, 0.75);
  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Inter', sans-serif;
}

/* --- Base typo --- */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

a {
  color: var(--kaki-light);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--sand);
}

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

ul {
  list-style: none;
}

/* --- Container --- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================================
   BOUTONS
   ============================================================ */
.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  padding: 0.85rem 2.1rem;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: all var(--transition);
  text-align: center;
  white-space: nowrap;
}

.btn--primary {
  background: var(--kaki);
  color: #14150d;
  border-color: var(--kaki);
  box-shadow: 0 4px 18px rgba(154, 145, 89, 0.25);
}

.btn--primary:hover {
  background: var(--kaki-light);
  border-color: var(--kaki-light);
  color: #14150d;
  transform: translateY(-2px);
  box-shadow: 0 6px 26px rgba(154, 145, 89, 0.38);
}

.btn--outline {
  background: transparent;
  border-color: var(--kaki);
  color: var(--kaki-light);
}

.btn--outline:hover {
  background: var(--kaki);
  color: #14150d;
  transform: translateY(-2px);
}

.btn--sm {
  padding: 0.55rem 1.3rem;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
  display: block;
}

/* ============================================================
   HEADER STICKY
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(13, 14, 11, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition), border-color var(--transition);
}

.header.scrolled {
  background: rgba(13, 14, 11, 0.97);
  border-bottom-color: rgba(196, 189, 143, 0.22);
}

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

.header__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo img {
  height: 42px;
  width: auto;
}

/* Navigation */
.header__nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.nav__link {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text);
  position: relative;
  padding: 0.25rem 0;
  transition: color var(--transition);
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--kaki);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link.active {
  color: var(--kaki-light);
}

.nav__link:hover::after,
.nav__link.active::after {
  width: 100%;
}

/* Burger */
.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px 4px;
  width: 36px;
  height: 36px;
}

.burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
  transform-origin: center;
}

.burger[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================================
   HERO PLEIN ECRAN
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  z-index: 0;
  transform: scale(1.03);
  transition: transform 8s ease;
}

.hero:hover .hero__bg {
  transform: scale(1.0);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13, 14, 11, 0.55) 0%,
    rgba(13, 14, 11, 0.38) 40%,
    rgba(13, 14, 11, 0.72) 100%
  );
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  max-width: 860px;
}

.hero__eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--kaki-light);
  border: 1px solid var(--border-hover);
  padding: 0.4rem 1.1rem;
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards 0.2s;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.06;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards 0.45s;
}

.hero__title em {
  color: var(--kaki-light);
  font-style: normal;
}

.hero__subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(233, 231, 220, 0.82);
  letter-spacing: 0.06em;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards 0.65s;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards 0.85s;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: heroFadeUp 0.75s ease forwards 1.05s;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--kaki), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1;   transform: scaleY(1.15); }
}

/* PAGE HERO (pages intérieures) */
.page-hero {
  position: relative;
  padding: 8.5rem 0 3.5rem;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(154, 145, 89, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero__content {
  position: relative;
  z-index: 1;
}

.page-hero__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--kaki);
  margin-bottom: 0.75rem;
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--bg-alt);
}

.section--dark {
  background-color: #0b0c09;
}

.section__label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--kaki);
  margin-bottom: 0.65rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.section__subtitle--center {
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__head {
  text-align: center;
  margin-bottom: 3.5rem;
}

/* Séparateur décoratif kaki */
.section__divider {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--kaki);
  margin: 1rem 0;
}

.section__divider--center {
  margin: 1rem auto;
}

/* ============================================================
   GRILLES GÉNÉRIQUES
   ============================================================ */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* ============================================================
   CARTES GÉNÉRIQUES .card
   ============================================================ */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

.card__cover {
  position: relative;
  overflow: hidden;
}

.card__cover img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.card:hover .card__cover img {
  transform: scale(1.04);
}

.card__badge {
  position: absolute;
  top: 0.9rem;
  left: 0.9rem;
  background: var(--kaki);
  color: #14150d;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.7rem;
  border-radius: var(--radius);
}

.card__body {
  padding: 1.5rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.card__text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

/* ============================================================
   STATS
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.stat {
  padding: 2.25rem 1.5rem;
  text-align: center;
  background: var(--bg-card);
  border-right: 1px solid var(--border);
  transition: background var(--transition);
}

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

.stat:hover {
  background: var(--bg-hover);
}

.stat__num {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--kaki-light);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat__label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

/* ============================================================
   FEATURE ALTERNÉ texte / image
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.feature--reverse {
  direction: rtl;
}

.feature--reverse > * {
  direction: ltr;
}

.feature__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.feature__media img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.feature__media:hover img {
  transform: scale(1.03);
}

.feature__media::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.feature__body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.feature__body p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
}

.feature__list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 0.25rem;
}

.feature__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.92rem;
  color: var(--text);
}

.feature__list svg {
  color: var(--kaki);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================================
   DISCIPLINES — CARTES
   ============================================================ */
.discipline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.discipline-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.discipline-card__img {
  position: relative;
  overflow: hidden;
}

.discipline-card__img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.discipline-card:hover .discipline-card__img img {
  transform: scale(1.05);
}

.discipline-card__body {
  padding: 1.4rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.discipline-card__title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.discipline-card__text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.discipline-card__footer {
  margin-top: auto;
}

/* Grille disciplines : 3 + 2 centré */
.disciplines-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.disciplines-grid__row2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  max-width: calc(66.66% - 0.6rem);
  margin: 0 auto;
}

/* ============================================================
   TARIFS
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.price-card--featured {
  border-color: var(--kaki);
  background: linear-gradient(160deg, var(--bg-hover) 0%, var(--bg-card) 100%);
}

.price-card__label {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--kaki);
  margin-bottom: 0.6rem;
}

.price-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1rem;
}

.price-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 1.25rem;
}

.price-card__amount {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--kaki-light);
  line-height: 1;
}

.price-card__currency {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--kaki);
}

.price-card__unit {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.price-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
  flex: 1;
}

.price-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.price-card__features svg {
  color: var(--kaki);
  flex-shrink: 0;
  margin-top: 2px;
}

.price-card .btn {
  margin-top: auto;
}

/* ============================================================
   BANDEAU CTA
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--kaki-dark) 0%, #4a4425 50%, var(--kaki-dark) 100%);
  border-top: 1px solid rgba(196, 189, 143, 0.2);
  border-bottom: 1px solid rgba(196, 189, 143, 0.2);
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(196, 189, 143, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-band__content {
  flex: 1;
  min-width: 260px;
}

.cta-band__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band__text {
  color: rgba(216, 210, 180, 0.8);
  font-size: 0.97rem;
}

.cta-band__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   PARTENAIRES
   ============================================================ */
.partners {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  background: var(--bg-alt);
}

.partners__label {
  font-family: var(--font-heading);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 1.5rem;
}

.partners__list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem 2.5rem;
}

.partners__item {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  opacity: 0.7;
  transition: opacity var(--transition), color var(--transition);
}

.partners__item:hover {
  opacity: 1;
  color: var(--kaki-light);
}

/* ============================================================
   ACTUALITÉS — GRILLE + CARTES
   ============================================================ */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.post-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.post-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.5);
}

.post-card__cover {
  overflow: hidden;
  flex-shrink: 0;
}

.post-card__cover img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card__cover img {
  transform: scale(1.04);
}

.post-card__body {
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.post-card__meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-bottom: 0.65rem;
}

.post-card__date {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.post-card__tag {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--kaki);
  background: rgba(154, 145, 89, 0.12);
  padding: 0.15rem 0.55rem;
  border-radius: var(--radius);
}

.post-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 0.55rem;
  line-height: 1.3;
}

.post-card__excerpt {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
}

.post-card__link {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--kaki-light);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition), color var(--transition);
}

.post-card:hover .post-card__link {
  gap: 0.7rem;
  color: var(--sand);
}

/* ============================================================
   PAGE ARTICLE COMPLET
   ============================================================ */
.article {
  max-width: 800px;
  margin: 0 auto;
}

.article__cover {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.article__cover img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.article__meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}

.article__date,
.article__category {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

.article__category { color: var(--kaki); }

.article__content {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text);
}

.article__content h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin: 2.5rem 0 1rem;
}

.article__content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--kaki-light);
  margin: 2rem 0 0.75rem;
}

.article__content p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.article__content ul,
.article__content ol {
  margin: 0 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article__content li {
  margin-bottom: 0.45rem;
  list-style: disc;
}

.article__content ol li {
  list-style: decimal;
}

.article__content blockquote {
  border-left: 3px solid var(--kaki);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-card);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
  font-style: italic;
  color: var(--sand);
}

.article__content img {
  border-radius: var(--radius-lg);
  margin: 1.5rem 0;
  width: 100%;
  height: auto;
}

.article__content a {
  color: var(--kaki-light);
  text-decoration: underline;
  text-decoration-color: rgba(196, 189, 143, 0.4);
}

.article__content a:hover {
  color: var(--sand);
  text-decoration-color: var(--sand);
}

/* ============================================================
   ARTICLE GALLERY (images supplémentaires)
   ============================================================ */
.article-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  margin: 2rem 0;
}

.article-gallery__item {
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(196, 189, 143, 0.14);
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-gallery__item:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.article-gallery__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 640px) {
  .article-gallery {
    grid-template-columns: 1fr;
  }

  .article-gallery__img {
    height: 200px;
  }
}

/* ============================================================
   FORMULAIRE DE CONTACT
   ============================================================ */
.form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.form__label {
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.form__input,
.form__textarea,
.form__select {
  width: 100%;
  padding: 0.85rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  -webkit-appearance: none;
  appearance: none;
}

.form__input::placeholder,
.form__textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
  outline: none;
  border-color: var(--kaki);
  background: rgba(154, 145, 89, 0.04);
}

.form__textarea {
  resize: vertical;
  min-height: 140px;
}

.form__select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239d9a88' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}

.form__select option {
  background: var(--bg-card);
  color: var(--text);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: #0a0b08;
  border-top: 2px solid var(--kaki-dark);
  padding-top: 4rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer__col {}

.footer__logo {
  height: 38px;
  width: auto;
  margin-bottom: 1.1rem;
}

.footer__tagline {
  color: var(--text-muted);
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 0;
  font-style: italic;
}

.footer__title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--kaki-light);
  margin-bottom: 1.1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer__links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  transition: color var(--transition), padding-left var(--transition);
}

.footer__links a:hover {
  color: var(--kaki-light);
  padding-left: 4px;
}

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.87rem;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.footer__contact-item svg {
  color: var(--kaki);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer__contact-item a {
  color: var(--text-muted);
}

.footer__contact-item a:hover {
  color: var(--kaki-light);
}

.footer__socials {
  display: flex;
  gap: 0.85rem;
  margin-top: 0.25rem;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: rgba(196, 189, 143, 0.07);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  transition: all var(--transition);
}

.footer__socials a:hover {
  background: rgba(154, 145, 89, 0.18);
  border-color: var(--border-hover);
  color: var(--kaki-light);
  transform: translateY(-2px);
}

.footer__bottom {
  border-top: 1px solid var(--border);
  padding: 1.4rem 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer__copyright {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.footer__legal a:hover {
  color: var(--kaki-light);
}

/* ============================================================
   ATOUTS / AVANTAGES
   ============================================================ */
.atouts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.atout-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  transition: border-color var(--transition), transform var(--transition);
}

.atout-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-3px);
}

.atout-card__icon {
  width: 44px;
  height: 44px;
  background: rgba(154, 145, 89, 0.12);
  border: 1px solid rgba(154, 145, 89, 0.22);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--kaki);
}

.atout-card__body {}

.atout-card__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.atout-card__text {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================================
   SCROLL REVEAL (data-reveal)
   ============================================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal][data-delay="1"] { transition-delay: 0.1s; }
[data-reveal][data-delay="2"] { transition-delay: 0.2s; }
[data-reveal][data-delay="3"] { transition-delay: 0.3s; }
[data-reveal][data-delay="4"] { transition-delay: 0.4s; }
[data-reveal][data-delay="5"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .hero__bg { transition: none; }
  .hero__eyebrow,
  .hero__title,
  .hero__subtitle,
  .hero__actions,
  .hero__scroll {
    opacity: 1;
    animation: none;
    transform: none;
  }
  .hero__scroll-line { animation: none; }
}

/* ============================================================
   UTILITAIRES
   ============================================================ */
.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;
}

.text-kaki    { color: var(--kaki-light); }
.text-muted   { color: var(--text-muted); }
.text-center  { text-align: center; }
.text-upper   { text-transform: uppercase; letter-spacing: 0.1em; }
.mb-0 { margin-bottom: 0 !important; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(3) { border-top: 1px solid var(--border); border-right: 1px solid var(--border); }
  .stat:nth-child(4) { border-top: 1px solid var(--border); border-right: none; }

  .feature {
    gap: 3rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disciplines-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .disciplines-grid__row2 {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing {
    grid-template-columns: repeat(2, 1fr);
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .atouts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  /* Burger mobile */
  .burger {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: 72px;
    left: 0;
    width: 100%;
    height: calc(100dvh - 72px);
    background: rgba(13, 14, 11, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.38s ease;
    z-index: 999;
  }

  .header__nav.is-open {
    transform: translateX(0);
  }

  .nav__list {
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
  }

  .nav__link {
    font-size: 1.3rem;
    letter-spacing: 0.12em;
  }

  /* Hero */
  .hero__title {
    font-size: 2.8rem;
    letter-spacing: 0.04em;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  /* Feature */
  .feature,
  .feature--reverse {
    grid-template-columns: 1fr;
    direction: ltr;
    gap: 2rem;
  }

  .feature--reverse .feature__media { order: -1; }

  .feature__media img {
    height: 280px;
  }

  /* Stats */
  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Disciplines */
  .disciplines-grid {
    grid-template-columns: 1fr;
  }

  .disciplines-grid__row2 {
    grid-template-columns: 1fr;
    max-width: 100%;
  }

  /* Cards */
  .cards-grid {
    grid-template-columns: 1fr;
  }

  /* Pricing */
  .pricing {
    grid-template-columns: 1fr;
  }

  /* Posts */
  .posts-grid {
    grid-template-columns: 1fr;
  }

  /* Atouts */
  .atouts-grid {
    grid-template-columns: 1fr;
  }

  /* CTA band */
  .cta-band__inner {
    flex-direction: column;
    text-align: center;
  }

  .cta-band__actions {
    justify-content: center;
  }

  /* Footer */
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__contact-item {
    justify-content: center;
  }

  .footer__socials {
    justify-content: center;
  }

  .footer__bottom-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* Forms */
  .form__row {
    grid-template-columns: 1fr;
  }

  /* Section */
  .section {
    padding: 3.5rem 0;
  }

  .section__title {
    font-size: 1.8rem;
  }

  .page-hero {
    padding: 7rem 0 2.5rem;
  }
}

/* ============================================================
   RESPONSIVE — 560px
   ============================================================ */
@media (max-width: 560px) {
  .hero__title {
    font-size: 2.1rem;
  }

  .stat {
    padding: 1.75rem 1rem;
  }

  .stat__num {
    font-size: 1.9rem;
  }

  .section {
    padding: 3rem 0;
  }

  .article__cover img {
    height: 220px;
  }

  .price-card {
    padding: 1.5rem 1.25rem;
  }

  .footer__grid {
    gap: 2rem;
  }

  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   BOUTIQUE — STYLES SPÉCIFIQUES
   ============================================================ */

/* --- Header cart toggle --- */
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-toggle {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 5px;
  transition: color var(--transition);
}

.cart-toggle:hover {
  color: var(--kaki-light);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--kaki);
  color: #14150d;
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 1;
  padding: 2px 5px;
  border-radius: 999px;
  min-width: 18px;
  text-align: center;
  transition: transform 0.2s ease;
}

.cart-badge.pop {
  transform: scale(1.4);
}

/* --- Loading spinner --- */
.shop-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 4rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.shop-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid var(--border);
  border-top-color: var(--kaki);
  border-radius: 50%;
  animation: spinShop 0.8s linear infinite;
}

@keyframes spinShop {
  to { transform: rotate(360deg); }
}

/* --- Empty state --- */
.shop-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 5rem 2rem;
  text-align: center;
  color: var(--text-muted);
}

.shop-empty svg {
  color: var(--kaki-dark);
  opacity: 0.5;
}

.shop-empty h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text);
}

.shop-empty p {
  font-size: 0.95rem;
}

/* --- Shop grid --- */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

/* --- Product card --- */
.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-hover);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
}

.product-card__cover {
  position: relative;
  overflow: hidden;
  background: var(--bg-alt);
}

.product-card__cover img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.product-card:hover .product-card__cover img {
  transform: scale(1.05);
}

.product-card__placeholder {
  width: 100%;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kaki-dark);
  opacity: 0.4;
}

.product-card__badge {
  position: absolute;
  top: 0.8rem;
  left: 0.8rem;
  background: var(--kaki);
  color: #14150d;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius);
  z-index: 1;
}

.product-card__body {
  padding: 1.25rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  line-height: 1.2;
}

.product-card__price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--kaki-light);
}

.product-card__btn {
  margin-top: auto;
  align-self: flex-start;
}

/* --- Stock badges --- */
.stock-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius);
}

.stock-badge--in {
  background: rgba(74, 183, 107, 0.15);
  color: #6fcf97;
  border: 1px solid rgba(74, 183, 107, 0.25);
}

.stock-badge--low {
  background: rgba(242, 153, 74, 0.15);
  color: #f2994a;
  border: 1px solid rgba(242, 153, 74, 0.25);
}

.stock-badge--out {
  background: rgba(235, 87, 87, 0.12);
  color: #eb5757;
  border: 1px solid rgba(235, 87, 87, 0.22);
}

/* On product card cover, stock badge is positioned */
.product-card__cover .stock-badge--out {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 1;
}

/* --- Product view modal --- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  z-index: 1100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.modal-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

body.modal-open {
  overflow: hidden;
}

.product-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -44%);
  z-index: 1200;
  width: min(92vw, 960px);
  max-height: 90dvh;
  overflow-y: auto;
  background: var(--bg-card);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.8);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  scrollbar-width: thin;
  scrollbar-color: var(--kaki-dark) transparent;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.product-modal__close {
  position: sticky;
  top: 0.75rem;
  float: right;
  margin: 0.75rem 0.75rem 0 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all var(--transition);
}

.product-modal__close:hover {
  background: rgba(235, 87, 87, 0.15);
  border-color: rgba(235, 87, 87, 0.3);
  color: #eb5757;
}

.product-modal__inner {
  padding: 0 2rem 2rem;
  clear: both;
}

/* Product view layout inside modal */
.pv__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 0.5rem;
}

.pv__gallery {}

.pv__main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-alt);
  margin-bottom: 0.75rem;
}

.pv__main-img img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.pv__main-img:hover img {
  transform: scale(1.03);
}

.pv__main-img--empty {
  width: 100%;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kaki-dark);
  opacity: 0.3;
}

.pv__thumbs {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.pv__thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  background: none;
  padding: 0;
  transition: border-color var(--transition);
  flex-shrink: 0;
}

.pv__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pv__thumb.is-active {
  border-color: var(--kaki);
}

.pv__thumb:hover {
  border-color: var(--border-hover);
}

/* Product info panel */
.pv__info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.pv__category {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--kaki);
  background: rgba(154, 145, 89, 0.12);
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius);
}

.pv__name {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0;
}

.pv__price {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--kaki-light);
  letter-spacing: 0.03em;
}

.pv__desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.75;
}

/* Selector (size / color) */
.pv__selector {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.pv__selector-label {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-muted);
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.chip {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.45rem 0.9rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.chip:hover {
  border-color: var(--border-hover);
  color: var(--text);
}

.chip.is-active {
  background: var(--kaki);
  border-color: var(--kaki);
  color: #14150d;
}

/* Stock display in product view */
.pv__stock {
  min-height: 1.4rem;
}

/* Add row (qty + button) */
.pv__add-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.pv__add-btn {
  flex: 1;
  min-width: 180px;
}

/* --- Quantity picker --- */
.qty-picker {
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.qty-btn {
  width: 38px;
  height: 42px;
  background: rgba(255, 255, 255, 0.04);
  border: none;
  color: var(--text);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), color var(--transition);
}

.qty-btn:hover {
  background: rgba(154, 145, 89, 0.18);
  color: var(--kaki-light);
}

.qty-input {
  width: 46px;
  height: 42px;
  background: transparent;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: center;
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.qty-display {
  width: 46px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

.qty-picker--sm .qty-btn {
  width: 30px;
  height: 34px;
}

.qty-picker--sm .qty-display {
  width: 36px;
  height: 34px;
  font-size: 0.85rem;
}

/* ============================================================
   CART OVERLAY + DRAWER
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.cart-overlay.is-visible {
  opacity: 1;
  pointer-events: all;
}

body.cart-open {
  overflow: hidden;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(420px, 100vw);
  height: 100dvh;
  z-index: 1400;
  background: var(--bg-card);
  border-left: 1px solid var(--border-hover);
  box-shadow: -8px 0 48px rgba(0, 0, 0, 0.7);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.cart-drawer.is-open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-shrink: 0;
}

.cart-drawer__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--white);
}

.cart-drawer__close {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.cart-drawer__close:hover {
  background: rgba(235, 87, 87, 0.12);
  border-color: rgba(235, 87, 87, 0.3);
  color: #eb5757;
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
  scrollbar-width: thin;
  scrollbar-color: var(--kaki-dark) transparent;
}

.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
  padding: 4rem 1rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.cart-empty svg {
  color: var(--kaki-dark);
  opacity: 0.4;
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.85rem;
  align-items: start;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0.85rem;
  transition: border-color var(--transition);
}

.cart-item:hover {
  border-color: var(--border-hover);
}

.cart-item__img {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-hover);
  flex-shrink: 0;
}

.cart-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item__img-placeholder {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--kaki-dark);
  opacity: 0.4;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.cart-item__name {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cart-item__meta {
  font-size: 0.78rem;
  color: var(--kaki);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.cart-item__price {
  font-size: 0.82rem;
  color: var(--text-muted);
}

.cart-item__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}

.cart-item__remove {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}

.cart-item__remove:hover {
  background: rgba(235, 87, 87, 0.12);
  border-color: rgba(235, 87, 87, 0.3);
  color: #eb5757;
}

.cart-drawer__footer {
  padding: 1.2rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cart-subtotal strong {
  font-size: 1.2rem;
  color: var(--kaki-light);
}

/* Cart messages */
.cart-notice {
  font-size: 0.85rem;
  line-height: 1.55;
  padding: 0.7rem 0.9rem;
  border-radius: var(--radius);
  margin: 0;
}

.cart-notice--warn {
  background: rgba(242, 153, 74, 0.1);
  border: 1px solid rgba(242, 153, 74, 0.25);
  color: #f2994a;
}

.cart-notice--error {
  background: rgba(235, 87, 87, 0.1);
  border: 1px solid rgba(235, 87, 87, 0.25);
  color: #eb5757;
}

/* ============================================================
   CONFIRM PAGE
   ============================================================ */
.confirm-wrap {
  max-width: 680px;
  margin: 0 auto;
}

.confirm-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  text-align: center;
}

.confirm-icon {
  margin: 0 auto 1.5rem;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(74, 183, 107, 0.12);
  border: 2px solid rgba(74, 183, 107, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6fcf97;
}

.confirm-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.confirm-subtitle {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.confirm-details {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  text-align: left;
  margin-bottom: 0.5rem;
}

.confirm-items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.confirm-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--text);
}

.confirm-item__name {
  flex: 1;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.confirm-item__meta {
  color: var(--kaki);
  font-size: 0.8rem;
  text-transform: none;
  letter-spacing: 0;
  font-family: var(--font-body);
}

.confirm-item__qty {
  color: var(--text-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

.confirm-item__price {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--kaki-light);
  white-space: nowrap;
}

.confirm-total,
.confirm-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
  padding: 0.4rem 0;
}

.confirm-total strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--kaki-light);
}

.confirm-status__value {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--kaki);
}

/* ============================================================
   BOUTIQUE — RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .pv__content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pv__main-img img {
    height: 260px;
  }

  .product-modal__inner {
    padding: 0 1.25rem 1.5rem;
  }

  .cart-item {
    grid-template-columns: 54px 1fr auto;
    gap: 0.65rem;
  }

  .cart-item__img {
    width: 54px;
    height: 54px;
  }

  .cart-item__img-placeholder {
    width: 54px;
    height: 54px;
  }

  .confirm-box {
    padding: 2rem 1.25rem;
  }
}

@media (max-width: 560px) {
  .shop-grid {
    grid-template-columns: 1fr;
  }

  .pv__add-row {
    flex-direction: column;
    align-items: stretch;
  }

  .pv__add-btn {
    min-width: unset;
  }

  .cart-drawer {
    width: 100vw;
  }
}

/* ============================================================
   NAV — COMPTE MEMBRE
   ============================================================ */
.nav__link--account {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: rgba(154, 145, 89, 0.14);
  border: 1px solid rgba(154, 145, 89, 0.32);
  border-radius: var(--radius);
  padding: 0.3rem 0.8rem !important;
  color: var(--kaki-light) !important;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.nav__link--account:hover {
  background: rgba(154, 145, 89, 0.26);
  border-color: var(--border-hover);
  color: var(--sand) !important;
}

.nav__link--account::after {
  display: none !important;
}

/* ============================================================
   PAGE HERO — VARIANTE SECTION-TAG
   ============================================================ */
.page-hero .section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--kaki);
  margin-bottom: 0.75rem;
}

.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 540px;
}

/* ============================================================
   SECTION HEADER (centré, label + titre + sous-titre)
   ============================================================ */
.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.32em;
  color: var(--kaki);
  margin-bottom: 0.65rem;
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================================
   PLAN CARDS (abonnements)
   ============================================================ */
.plans-grid {
  display: grid;
  gap: 1.75rem;
}

.plans-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 860px;
  margin: 0 auto;
}

.plans-grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.plan-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  position: relative;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.plan-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.plan-card--featured {
  border-color: var(--kaki);
  background: linear-gradient(160deg, var(--bg-hover) 0%, var(--bg-card) 100%);
}

.plan-card--premium {
  border-color: var(--kaki-dark);
  background: linear-gradient(160deg, rgba(107, 100, 56, 0.18) 0%, var(--bg-card) 100%);
}

.plan-card__badge {
  position: absolute;
  top: -1px;
  right: 1.5rem;
  background: var(--kaki);
  color: #14150d;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.3rem 0.85rem;
  border-radius: 0 0 var(--radius) var(--radius);
}

.plan-card--premium .plan-card__badge {
  background: var(--kaki-light);
}

.plan-card__header h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.plan-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  margin-bottom: 0.2rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--kaki-light);
  line-height: 1;
}

.plan-card__price > span:not(.plan-price) {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--kaki);
}

.plan-card__per {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-muted);
}

.plan-card__period {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.plan-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.plan-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.plan-card__features li::before {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--kaki);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.5rem;
}

.plan-card__sessions {
  font-size: 0.9rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.plan-sessions {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--kaki-light);
}

.plan-card__priority {
  padding-top: 0.25rem;
}

/* Priority badges */
.priority-badge {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.28rem 0.75rem;
  border-radius: var(--radius);
}

.priority-badge--standard {
  background: rgba(157, 154, 136, 0.12);
  color: var(--text-muted);
  border: 1px solid rgba(157, 154, 136, 0.22);
}

.priority-badge--vip {
  background: rgba(154, 145, 89, 0.14);
  color: var(--kaki-light);
  border: 1px solid rgba(154, 145, 89, 0.28);
}

.priority-badge--premium {
  background: rgba(196, 189, 143, 0.16);
  color: var(--sand);
  border: 1px solid rgba(196, 189, 143, 0.36);
}

/* ============================================================
   PRIORITY LADDER
   ============================================================ */
.priority-ladder {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.priority-step {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  transition: border-color var(--transition), transform var(--transition);
}

.priority-step:hover {
  border-color: var(--border-hover);
  transform: translateX(4px);
}

.priority-step--4 {
  border-left: 3px solid var(--kaki-light);
}

.priority-step--3 {
  border-left: 3px solid var(--kaki);
}

.priority-step--2 {
  border-left: 3px solid var(--kaki-dark);
}

.priority-step--1 {
  border-left: 3px solid var(--border);
  opacity: 0.75;
}

.priority-step__rank {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--kaki-dark);
  width: 36px;
  flex-shrink: 0;
  text-align: center;
}

.priority-step--4 .priority-step__rank { color: var(--kaki-light); }
.priority-step--3 .priority-step__rank { color: var(--kaki); }

.priority-step__info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.priority-step__info strong {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
}

.priority-step__info span {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item:last-child {
  border-bottom: none;
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-heading);
  font-size: 0.97rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  transition: color var(--transition), background var(--transition);
}

.faq__question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--kaki);
  flex-shrink: 0;
  transition: transform var(--transition), color var(--transition);
  line-height: 1;
}

.faq__question:hover,
.faq__item.is-open .faq__question {
  color: var(--kaki-light);
  background: rgba(154, 145, 89, 0.05);
}

.faq__item.is-open .faq__question::after {
  content: '−';
  color: var(--kaki-light);
}

.faq__answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
}

.faq__item.is-open .faq__answer {
  display: block;
}

.faq__answer p {
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

/* ============================================================
   BOOKING APP (réservations)
   ============================================================ */
.booking-app {
  max-width: 820px;
  margin: 0 auto;
}

/* Progress bar */
.booking-progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 3rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.booking-progress__step {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  border-right: 1px solid var(--border);
  position: relative;
  transition: background var(--transition), color var(--transition);
}

.booking-progress__step:last-child {
  border-right: none;
}

.booking-progress__step.is-active {
  background: rgba(154, 145, 89, 0.12);
  color: var(--kaki-light);
}

.booking-progress__step.is-done {
  background: rgba(154, 145, 89, 0.07);
  color: var(--kaki);
}

.booking-progress__num {
  display: block;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
  color: inherit;
}

/* Steps container */
.booking-steps {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
}

.booking-step {
  display: none;
}

.booking-step.is-active {
  display: block;
}

.booking-step__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.booking-step__subtitle {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 2rem;
}

/* Option cards (type de séance, discipline) */
.booking-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.booking-options--3 {
  grid-template-columns: repeat(3, 1fr);
}

.booking-option {
  background: var(--bg-alt);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  cursor: pointer;
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  text-align: left;
  width: 100%;
}

.booking-option:hover {
  border-color: var(--border-hover);
  background: var(--bg-hover);
  transform: translateY(-2px);
}

.booking-option.is-selected {
  border-color: var(--kaki);
  background: rgba(154, 145, 89, 0.08);
}

.booking-option__icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
  display: block;
}

.booking-option__label {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  display: block;
  margin-bottom: 0.3rem;
}

.booking-option__desc {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  display: block;
}

/* Calendar grid */
.booking-calendar {
  margin-bottom: 2rem;
}

.booking-calendar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.booking-calendar__title {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.booking-calendar__nav {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.booking-calendar__nav:hover {
  border-color: var(--border-hover);
  color: var(--kaki-light);
}

.booking-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.booking-calendar__day-label {
  font-family: var(--font-heading);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  text-align: center;
  padding: 0.4rem 0;
}

.booking-calendar__day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid transparent;
  background: none;
  color: var(--text-muted);
  transition: all var(--transition);
}

.booking-calendar__day--available {
  color: var(--text);
  border-color: var(--border);
  background: var(--bg-alt);
}

.booking-calendar__day--available:hover {
  border-color: var(--kaki);
  color: var(--kaki-light);
  background: rgba(154, 145, 89, 0.08);
}

.booking-calendar__day--selected {
  background: var(--kaki);
  border-color: var(--kaki);
  color: #14150d;
}

.booking-calendar__day--disabled {
  opacity: 0.25;
  cursor: not-allowed;
}

.booking-calendar__day--empty {
  border: none;
  cursor: default;
}

/* Booking nav buttons */
.booking-nav {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* Summary box */
.booking-summary {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  margin-bottom: 1.5rem;
}

.booking-summary__title {
  font-family: var(--font-heading);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--kaki);
  margin-bottom: 0.9rem;
}

.booking-summary__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-muted);
}

.booking-summary__row:last-child {
  border-bottom: none;
  padding-top: 0.6rem;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
}

.booking-summary__row span:last-child {
  color: var(--kaki-light);
  font-family: var(--font-heading);
  font-weight: 600;
}

/* Responsive — plans grid */
@media (max-width: 1024px) {
  .plans-grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .plans-grid--2,
  .plans-grid--3 {
    grid-template-columns: 1fr;
  }

  .plans-grid--2 {
    max-width: 100%;
  }

  .booking-options {
    grid-template-columns: 1fr;
  }

  .booking-options--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .booking-steps {
    padding: 1.75rem 1.25rem;
  }

  .booking-nav {
    flex-direction: column-reverse;
  }
}

@media (max-width: 560px) {
  .booking-options--3 {
    grid-template-columns: 1fr;
  }

  .booking-calendar__grid {
    gap: 0.2rem;
  }

  .booking-calendar__day {
    font-size: 0.78rem;
  }
}

/* ============================================================
   CALENDAR COMPONENT (.wc-calendar)
   ============================================================ */

/* Calendar */
.wc-calendar {
    margin-top: 2rem;
}

.wc-calendar__filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.wc-cal-filter {
    padding: 6px 16px;
    border: 1px solid rgba(196,189,143,0.2);
    border-radius: 20px;
    background: transparent;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
}

.wc-cal-filter:hover,
.wc-cal-filter.active {
    background: rgba(154,145,89,0.15);
    border-color: var(--kaki);
    color: var(--kaki-light);
}

.wc-calendar__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.wc-calendar__month-label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.wc-calendar__nav-btn {
    background: rgba(154,145,89,0.1);
    border: 1px solid rgba(196,189,143,0.2);
    color: var(--kaki-light);
    width: 36px;
    height: 36px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.2s;
}

.wc-calendar__nav-btn:hover {
    background: rgba(154,145,89,0.25);
    border-color: var(--kaki);
}

.wc-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-bottom: 2rem;
}

.wc-cal-day-name {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.wc-cal-cell {
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.08);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    min-height: 48px;
}

.wc-cal-cell:hover {
    border-color: rgba(196,189,143,0.3);
    background: rgba(154,145,89,0.08);
}

.wc-cal-cell--empty {
    background: transparent;
    border-color: transparent;
    cursor: default;
}

.wc-cal-cell--today {
    border-color: var(--kaki);
    background: rgba(154,145,89,0.12);
}

.wc-cal-cell--selected {
    border-color: var(--kaki-light);
    background: rgba(154,145,89,0.2);
}

.wc-cal-cell--past {
    opacity: 0.4;
}

.wc-cal-cell__num {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
}

.wc-cal-cell--today .wc-cal-cell__num {
    color: var(--kaki-light);
    font-weight: 700;
}

.wc-cal-cell__dots {
    display: flex;
    gap: 3px;
    margin-top: 4px;
}

.wc-cal-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

/* Event cards in list */
.wc-events-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wc-event-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.12);
    border-radius: 10px;
    padding: 20px 24px;
    transition: all 0.25s;
}

.wc-event-card:hover {
    border-color: rgba(196,189,143,0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.wc-event-card__date {
    text-align: center;
    min-width: 60px;
    flex-shrink: 0;
}

.wc-event-card__day {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--kaki-light);
    line-height: 1;
}

.wc-event-card__month {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.wc-event-card__info {
    flex: 1;
    min-width: 0;
}

.wc-event-card__type {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.wc-event-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 4px;
}

.wc-event-card__meta {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.wc-event-card__actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
}

.wc-event-card__price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--kaki-light);
}

.wc-event-card__places {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.wc-event-card__places--full {
    color: #c44;
    font-weight: 600;
}

.wc-event-card__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 20px;
    background: var(--kaki);
    color: #0d0e0b;
    border: none;
    border-radius: 6px;
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.wc-event-card__btn:hover {
    background: var(--kaki-light);
}

.wc-event-card__btn--waitlist {
    background: transparent;
    border: 1px solid var(--kaki);
    color: var(--kaki-light);
}

.wc-event-card__btn--disabled {
    opacity: 0.4;
    pointer-events: none;
}

/* ============================================================
   BOOKING FLOW (additional styles)
   ============================================================ */

/* Booking forms */
.wc-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.wc-form__group {
    margin-bottom: 16px;
}

.wc-form__label {
    display: block;
    font-family: 'Oswald', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 6px;
}

.wc-form__input,
.wc-form__select,
.wc-form__textarea {
    width: 100%;
    padding: 10px 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(196,189,143,0.2);
    border-radius: 6px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.wc-form__input:focus,
.wc-form__select:focus,
.wc-form__textarea:focus {
    outline: none;
    border-color: var(--kaki);
    background: rgba(154,145,89,0.06);
}

.wc-form__textarea {
    resize: vertical;
    min-height: 100px;
}

/* Consent checkboxes */
.consent-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin: 1.5rem 0;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(196,189,143,0.1);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.consent-item:hover {
    border-color: rgba(196,189,143,0.25);
}

.consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--kaki);
    flex-shrink: 0;
}

.consent-item label {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    cursor: pointer;
}

/* Document upload in booking */
.doc-upload-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.doc-upload-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(196,189,143,0.12);
    border-radius: 8px;
}

.doc-upload-item__type {
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    min-width: 120px;
}

.doc-upload-item__status {
    font-size: 0.8rem;
    padding: 3px 10px;
    border-radius: 12px;
}

.doc-upload-item__status--pending {
    background: rgba(200,150,10,0.15);
    color: #c8960a;
}

.doc-upload-item__status--done {
    background: rgba(100,180,100,0.15);
    color: #64b464;
}

.doc-upload-item__status--error {
    background: rgba(200,60,60,0.15);
    color: #c83c3c;
}

.doc-upload-input {
    flex: 1;
}

/* Confirmation step */
.booking-confirmation {
    text-align: center;
    padding: 3rem 1rem;
}

.booking-confirmation__icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: rgba(100,180,100,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-confirmation__icon svg {
    width: 40px;
    height: 40px;
    color: #64b464;
}

.booking-confirmation h3 {
    color: #64b464;
    margin-bottom: 0.5rem;
}

/* ============================================================
   MEMBER AREA
   ============================================================ */

/* Member area */
.member-app {
    min-height: 60vh;
}

.member-auth {
    max-width: 420px;
    margin: 2rem auto;
}

.member-auth__card {
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.15);
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
}

.member-auth__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1.5rem;
}

.member-auth__toggle {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.member-auth__toggle a {
    color: var(--kaki-light);
    text-decoration: underline;
    cursor: pointer;
}

.member-area {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 2rem;
    min-height: 60vh;
}

.member-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: sticky;
    top: calc(var(--header-h, 80px) + 2rem);
    align-self: start;
}

.member-nav__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
}

.member-nav__link:hover {
    background: rgba(154,145,89,0.1);
    color: var(--text);
}

.member-nav__link.active {
    background: rgba(154,145,89,0.15);
    color: var(--kaki-light);
    font-weight: 600;
}

.member-nav__link svg,
.member-nav__link i {
    width: 18px;
    height: 18px;
    opacity: 0.6;
}

.member-nav__link.active svg,
.member-nav__link.active i {
    opacity: 1;
}

/* Member dashboard cards */
.member-dashboard {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 2rem;
}

.member-stat-card {
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.12);
    border-radius: 10px;
    padding: 20px;
}

.member-stat-card__label {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
}

.member-stat-card__value {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--kaki-light);
    line-height: 1;
}

.member-stat-card__sub {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* Sessions progress circle */
.sessions-progress {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.12);
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.sessions-progress__circle {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.sessions-progress__info h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: var(--text);
    margin-bottom: 4px;
}

.sessions-progress__info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Quota warning */
.quota-warning {
    padding: 14px 18px;
    background: rgba(200,150,10,0.1);
    border: 1px solid rgba(200,150,10,0.3);
    border-radius: 8px;
    color: #c8960a;
    font-size: 0.9rem;
    margin: 1rem 0;
}

/* Reservation cards in member area */
.member-reservation-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.1);
    border-radius: 10px;
    margin-bottom: 10px;
    transition: border-color 0.2s;
}

.member-reservation-card:hover {
    border-color: rgba(196,189,143,0.25);
}

.member-reservation-card__date {
    text-align: center;
    min-width: 50px;
}

.member-reservation-card__date .day {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--kaki-light);
    line-height: 1;
}

.member-reservation-card__date .month {
    font-size: 0.7rem;
    color: var(--text-muted);
    text-transform: uppercase;
}

.member-reservation-card__info {
    flex: 1;
}

.member-reservation-card__title {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
}

.member-reservation-card__meta {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Member tabs */
.member-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(196,189,143,0.12);
    padding-bottom: 4px;
}

.member-tab {
    padding: 8px 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Oswald', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
}

.member-tab:hover {
    color: var(--text);
}

.member-tab.active {
    color: var(--kaki-light);
    border-bottom-color: var(--kaki);
}

/* Status badges (reusable) */
.status-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.status-badge--pending { background: rgba(200,150,10,0.15); color: #c8960a; }
.status-badge--confirmed { background: rgba(100,140,200,0.15); color: #648cc8; }
.status-badge--paid { background: rgba(100,180,100,0.15); color: #64b464; }
.status-badge--cancelled { background: rgba(200,60,60,0.15); color: #c83c3c; }
.status-badge--waitlisted { background: rgba(150,100,200,0.15); color: #9664c8; }
.status-badge--active { background: rgba(100,180,100,0.15); color: #64b464; }
.status-badge--expired { background: rgba(200,60,60,0.15); color: #c83c3c; }

/* Toast notifications */
.wc-toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text);
    z-index: 10000;
    animation: toastIn 0.3s ease;
    max-width: 400px;
}

.wc-toast--success {
    background: rgba(100,180,100,0.9);
    color: #fff;
}

.wc-toast--error {
    background: rgba(200,60,60,0.9);
    color: #fff;
}

@keyframes toastIn {
    from { transform: translateY(20px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============================================================
   RESPONSIVE — NEW COMPONENTS
   ============================================================ */
@media (max-width: 768px) {
    .wc-cal-grid {
        gap: 1px;
    }
    .wc-cal-cell {
        min-height: 40px;
        border-radius: 4px;
    }
    .wc-cal-cell__num {
        font-size: 0.8rem;
    }
    .wc-cal-cell__dots {
        gap: 2px;
    }
    .wc-cal-dot {
        width: 4px;
        height: 4px;
    }
    .wc-event-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    .wc-event-card__actions {
        flex-direction: row;
        width: 100%;
        justify-content: space-between;
        align-items: center;
    }
    .wc-form__row {
        grid-template-columns: 1fr;
    }
    .member-area {
        grid-template-columns: 1fr;
    }
    .member-nav {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        position: static;
        gap: 2px;
        padding-bottom: 8px;
        border-bottom: 1px solid rgba(196,189,143,0.12);
    }
    .member-nav__link {
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 0.82rem;
    }
    .member-dashboard {
        grid-template-columns: 1fr 1fr;
    }
    .booking-progress {
        overflow-x: auto;
        gap: 8px;
    }
    .bp-step__label {
        font-size: 0.6rem;
    }
}

@media (max-width: 480px) {
    .member-dashboard {
        grid-template-columns: 1fr;
    }
    .sessions-progress {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   MEMBER AREA v2 — Auth modal, nav, dashboard, cards, sessions
   ============================================================ */

/* ---- Auth / Login / Register modal ---- */
.member-modal {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 2rem 1rem;
}

.member-modal__box {
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 2.5rem 2rem;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 40px rgba(0,0,0,0.45);
}

.member-modal__box--wide {
    max-width: 600px;
}

.member-modal__logo {
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.member-modal__wolf {
    display: block;
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--kaki-light);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.member-modal__consult {
    display: block;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: var(--text-muted, rgba(233,231,220,0.55));
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 2px;
}

.member-modal__title {
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 1.75rem;
}

.member-modal__switch {
    text-align: center;
    font-size: 0.84rem;
    color: var(--text-muted, rgba(233,231,220,0.55));
    margin-top: 1.25rem;
}

.member-modal__link {
    background: none;
    border: none;
    padding: 0;
    color: var(--kaki-light);
    font-size: inherit;
    font-family: inherit;
    text-decoration: underline;
    cursor: pointer;
    transition: color 0.2s;
}

.member-modal__link:hover {
    color: var(--text);
}

/* ---- Forms ---- */
.member-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.member-form__group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.member-form__label {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-muted, rgba(233,231,220,0.55));
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

.member-form__input {
    width: 100%;
    background: #1e1f16;
    border: 1px solid rgba(196,189,143,0.18);
    border-radius: 8px;
    padding: 10px 14px;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.92rem;
    color: var(--text);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    box-sizing: border-box;
}

.member-form__input::placeholder {
    color: rgba(233,231,220,0.3);
}

.member-form__input:focus {
    border-color: var(--kaki);
    box-shadow: 0 0 0 3px rgba(154,145,89,0.15);
}

.member-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.member-form__error {
    padding: 10px 14px;
    background: rgba(200,60,60,0.12);
    border: 1px solid rgba(200,60,60,0.3);
    border-radius: 8px;
    color: #e57373;
    font-size: 0.85rem;
    line-height: 1.4;
}

.member-form__submit {
    margin-top: 0.5rem;
}

/* ---- Buttons ---- */
.btn-wolf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--kaki);
    color: #0d0e0b;
    border: none;
    border-radius: 8px;
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}

.btn-wolf:hover {
    background: #b0a868;
    box-shadow: 0 4px 16px rgba(154,145,89,0.3);
    transform: translateY(-1px);
}

.btn-wolf:active {
    transform: translateY(0);
    box-shadow: none;
}

.btn-wolf--outline {
    background: transparent;
    color: var(--kaki-light);
    border: 1px solid rgba(196,189,143,0.35);
}

.btn-wolf--outline:hover {
    background: rgba(154,145,89,0.1);
    border-color: var(--kaki);
    box-shadow: none;
    transform: none;
}

.btn-wolf--danger {
    background: rgba(200,60,60,0.15);
    color: #e57373;
    border: 1px solid rgba(200,60,60,0.25);
}

.btn-wolf--danger:hover {
    background: rgba(200,60,60,0.25);
    box-shadow: none;
    transform: none;
}

.btn-wolf--sm {
    padding: 6px 14px;
    font-size: 0.78rem;
}

/* ---- Messages ---- */
.member-msg {
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 0.88rem;
    line-height: 1.5;
    margin: 0.5rem 0;
    border: 1px solid transparent;
}

.member-msg--info {
    background: rgba(100,140,200,0.1);
    border-color: rgba(100,140,200,0.25);
    color: #8ab4e8;
}

.member-msg--error {
    background: rgba(200,60,60,0.1);
    border-color: rgba(200,60,60,0.25);
    color: #e57373;
}

.member-msg--success {
    background: rgba(100,180,100,0.1);
    border-color: rgba(100,180,100,0.25);
    color: #81c784;
}

/* ---- Sidebar nav (new btn-based variant) ---- */
.member-nav__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.member-nav__item {
    display: flex;
}

.member-nav__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    width: 100%;
    background: none;
    border: none;
    border-left: 3px solid transparent;
    border-radius: 0 8px 8px 0;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-muted, rgba(233,231,220,0.55));
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.member-nav__btn:hover {
    background: rgba(154,145,89,0.08);
    color: var(--text);
    border-left-color: rgba(154,145,89,0.35);
}

.member-nav__btn.is-active {
    background: rgba(154,145,89,0.13);
    color: var(--kaki-light);
    border-left-color: var(--kaki);
    font-weight: 600;
}

/* ---- Dashboard ---- */
.member-dashboard__welcome {
    margin-bottom: 1.5rem;
}

.member-dashboard__title {
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 4px;
}

.member-dashboard__sub {
    font-size: 0.88rem;
    color: var(--text-muted, rgba(233,231,220,0.55));
}

.member-dashboard__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 16px;
    margin-bottom: 2rem;
}

/* ---- Cards ---- */
.member-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.member-card:hover {
    border-color: rgba(196,189,143,0.25);
    box-shadow: 0 4px 20px rgba(0,0,0,0.25);
}

.member-card--cta {
    border-color: rgba(154,145,89,0.3);
    background: linear-gradient(135deg, var(--bg-card) 60%, rgba(154,145,89,0.05));
}

.member-card__title {
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--kaki-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 10px;
}

.member-card__body {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.88rem;
    color: var(--text);
    line-height: 1.55;
}

.member-card__meta {
    font-size: 0.78rem;
    color: var(--text-muted, rgba(233,231,220,0.55));
    margin-top: 8px;
}

.member-card__event-type {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
}

/* ---- Sessions progress circle ---- */
.member-sessions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.member-sessions__circle {
    position: relative;
    width: 90px;
    height: 90px;
    flex-shrink: 0;
}

.member-sessions__svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.member-sessions__track {
    fill: none;
    stroke: rgba(196,189,143,0.15);
    stroke-width: 6;
}

.member-sessions__fill {
    fill: none;
    stroke: var(--kaki);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.member-sessions__label {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    text-align: center;
}

.member-sessions__used {
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--kaki-light);
}

.member-sessions__sep {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.7rem;
    color: var(--text-muted, rgba(233,231,220,0.45));
}

.member-sessions__total {
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.78rem;
    color: var(--text-muted, rgba(233,231,220,0.55));
}

.member-sessions__info {
    flex: 1;
}

.member-sessions__quota-warn {
    margin-top: 8px;
    padding: 8px 12px;
    background: rgba(200,150,10,0.1);
    border: 1px solid rgba(200,150,10,0.25);
    border-radius: 6px;
    color: #c8960a;
    font-size: 0.82rem;
}

/* ---- Quick actions ---- */
.member-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 1rem 0;
}

/* ---- Reservations ---- */
.member-reservations {
    margin-top: 1.5rem;
}

.member-section-title {
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin: 0 0 1rem;
}

.member-tab.is-active {
    color: var(--kaki-light);
    border-bottom-color: var(--kaki);
}

.member-tab__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: rgba(154,145,89,0.2);
    color: var(--kaki-light);
    border-radius: 9px;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    margin-left: 5px;
    vertical-align: middle;
}

.member-reservations__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.member-resa-card {
    background: var(--bg-card);
    border: 1px solid rgba(196,189,143,0.1);
    border-radius: 10px;
    padding: 16px 20px;
    transition: border-color 0.2s;
}

.member-resa-card:hover {
    border-color: rgba(196,189,143,0.25);
}

.member-resa-card__header {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    margin-bottom: 8px;
}

.member-resa-card__title {
    font-family: var(--font-heading), 'Oswald', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 0 0 4px;
}

.member-resa-card__date {
    font-size: 0.82rem;
    color: var(--text-muted, rgba(233,231,220,0.55));
}

/* ---- Badges ---- */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 2px 9px;
    border-radius: 10px;
    font-family: var(--font-body), 'Inter', sans-serif;
    font-size: 0.69rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.badge--success {
    background: rgba(100,180,100,0.15);
    color: #81c784;
}

.badge--warning {
    background: rgba(200,150,10,0.15);
    color: #c8960a;
}

.badge--danger {
    background: rgba(200,60,60,0.15);
    color: #e57373;
}

.badge--accent {
    background: rgba(154,145,89,0.2);
    color: var(--kaki-light);
}

.badge--neutral {
    background: rgba(233,231,220,0.08);
    color: var(--text-muted, rgba(233,231,220,0.55));
}

/* ---- Misc states ---- */
.member-loading {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted, rgba(233,231,220,0.55));
    font-size: 0.9rem;
    font-style: italic;
}

.member-empty {
    text-align: center;
    padding: 2.5rem;
    color: var(--text-muted, rgba(233,231,220,0.45));
    font-size: 0.88rem;
}

.member-error {
    text-align: center;
    padding: 1.5rem;
    color: #e57373;
    font-size: 0.88rem;
}

/* ---- Responsive overrides for new member v2 classes ---- */
@media (max-width: 768px) {
    .member-modal {
        align-items: flex-start;
        padding: 1.25rem 0.75rem;
        min-height: unset;
    }

    .member-modal__box {
        padding: 2rem 1.25rem;
    }

    .member-form__row {
        grid-template-columns: 1fr;
    }

    .member-dashboard__grid {
        grid-template-columns: 1fr 1fr;
    }

    .member-sessions {
        flex-direction: column;
        text-align: center;
    }

    .member-nav__list {
        flex-direction: row;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        gap: 2px;
        padding-bottom: 6px;
    }

    .member-nav__btn {
        border-left: none;
        border-bottom: 3px solid transparent;
        border-radius: 8px 8px 0 0;
        white-space: nowrap;
        padding: 8px 12px;
        font-size: 0.82rem;
    }

    .member-nav__btn.is-active {
        border-left-color: transparent;
        border-bottom-color: var(--kaki);
    }

    .member-actions {
        flex-direction: column;
    }

    .member-actions .btn-wolf {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .member-dashboard__grid {
        grid-template-columns: 1fr;
    }

    .member-modal__box--wide {
        max-width: 100%;
    }
}
