/*
Theme Name: CAMA Studio
Theme URI: https://cama-studio.fr
Author: CAMA Studio
Author URI: https://cama-studio.fr
Description: Theme sur mesure pour CAMA Studio - Pilates Reformer a Nogent-sur-Marne
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cama-studio
Tags: pilates, wellness, custom-theme, acf
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
*/

:root {
  --terracotta: #ab3d1f;
  --terracotta-light: #c95a3d;
  --marron: #210d05;
  --beige: #ffebdb;
  --blanc: #ffffff;
  --bleu-clair: #b5cccc;
  --bleu-canard: #084f57;

  --font-display: "Syncopate", sans-serif;
  --font-subtitle: "Wix Madefor Text", sans-serif;
  --font-body: "DM Sans", sans-serif;

  --border-radius-btn: 5rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--beige);
  color: var(--marron);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(60px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes scrollIndicator {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.5;
  }
}

@keyframes textReveal {
  from {
    clip-path: inset(0 100% 0 0);
  }
  to {
    clip-path: inset(0 0 0 0);
  }
}

@keyframes zoomSlow {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.5rem 3rem;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(33, 13, 5, 0.95);
  backdrop-filter: blur(20px);
  padding: 1rem 3rem;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.navbar-container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar-logo img {
  height: 65px;
  transition: all 0.3s ease;
  filter: brightness(0) invert(1);
}

.navbar.scrolled .navbar-logo img {
  filter: brightness(0) invert(1);
}

.navbar-logo:hover img {
  transform: scale(1.05);
}

.navbar-menu {
  display: flex;
  gap: 3rem;
  list-style: none;
}

.navbar-menu a {
  font-family: var(--font-subtitle);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--beige);
  text-decoration: none;
  position: relative;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.navbar-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--beige);
  transition: width 0.3s ease;
}

.navbar-menu a:hover::after {
  width: 100%;
}

.navbar-cta {
  background: var(--beige);
  color: var(--marron);
  padding: 0.9rem 1.8rem;
  border-radius: var(--border-radius-btn);
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 0.8rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.navbar-cta:hover {
  background: var(--terracotta);
  color: var(--beige);
  transform: translateY(-2px);
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  position: relative;
}

.mobile-toggle span {
  width: 28px;
  height: 2px;
  background: var(--beige);
  transition: all 0.3s ease;
  transform-origin: center;
}

/* Hamburger to X transformation */
.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== HERO SECTION - FULLSCREEN STYLE ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    var(--marron) 0%,
    var(--terracotta) 50%,
    var(--bleu-canard) 100%
  );
  background-size: 400% 400%;
  animation: zoomSlow 20s ease-in-out infinite alternate;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-video-placeholder img,
.hero-video-placeholder video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-text {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  color: var(--beige);
  opacity: 0.3;
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    180deg,
    rgba(33, 13, 5, 0.4) 0%,
    rgba(33, 13, 5, 0.2) 40%,
    rgba(33, 13, 5, 0.5) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 235, 219, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 235, 219, 0.2);
  color: var(--beige);
  padding: 0.75rem 1.5rem;
  font-family: var(--font-subtitle);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2px;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.hero-badge--bottom-right {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
  margin-bottom: 0;
}

.hero-logo {
  width: 280px;
  margin-bottom: 2rem;
  animation: scaleIn 1s ease-out 0.4s both;
  filter: brightness(0) invert(1);
}

.hero-subtitle {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  font-weight: 400;
  color: var(--beige);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 2rem;
  opacity: 0.9;
  animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
  color: var(--beige);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-slogan {
  font-family: var(--font-subtitle);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  color: var(--beige);
  margin-bottom: 3rem;
  opacity: 0.95;
  animation: fadeInUp 1s ease-out 0.8s both;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
  animation: fadeInUp 1s ease-out 1s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius-btn);
}

.btn-primary {
  background: var(--beige);
  color: var(--marron);
}

.btn-primary:hover {
  background: var(--terracotta);
  color: var(--beige);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--beige);
  border: 1px solid rgba(255, 235, 219, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 235, 219, 0.1);
  border-color: var(--beige);
  transform: translateY(-3px);
}

.btn-secondary {
  background: var(--terracotta);
  color: var(--beige);
}

.btn-secondary:hover {
  background: var(--marron);
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(171, 61, 31, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--terracotta);
  border: 2px solid var(--terracotta);
}

.btn-outline:hover {
  background: var(--terracotta);
  color: var(--beige);
}

.hero-socials {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.social-link {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 235, 219, 0.1);
  border: 1px solid rgba(255, 235, 219, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--beige);
  color: var(--marron);
  transform: translateY(-5px) scale(1.1);
  border-color: var(--beige);
}

.hero-scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  color: var(--beige);
  opacity: 0.7;
  animation: fadeIn 1s ease-out 1.5s both;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.hero-scroll:hover {
  opacity: 1;
}

.hero-scroll span {
  font-family: var(--font-subtitle);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-scroll i {
  animation: scrollIndicator 2s ease-in-out infinite;
}

.hero-location {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
  z-index: 10;
  text-align: right;
  animation: fadeIn 1s ease-out 1.5s both;
}

.hero-location p {
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  color: var(--beige);
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-location h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--beige);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

/* ===== INTRO BANNER ===== */
.intro-banner {
  background: var(--terracotta);
  color: var(--beige);
  padding: 1.5rem 2rem;
  text-align: center;
}

.intro-banner p {
  font-family: var(--font-subtitle);
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

/* ===== SECTIONS COMMON ===== */
section {
  padding: 7rem 2rem;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
}

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

.section-tag {
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--marron);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.section-subtitle {
  font-family: var(--font-subtitle);
  font-size: 1.1rem;
  color: var(--marron);
  opacity: 0.75;
  max-width: 650px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ===== ABOUT SECTION ===== */
.about {
  background: var(--blanc);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  width: 100%;
  height: 550px;
  background: linear-gradient(
    135deg,
    var(--terracotta),
    var(--terracotta-light)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-family: var(--font-subtitle);
  overflow: hidden;
}

.about-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-img-secondary {
  position: absolute;
  bottom: -40px;
  right: -40px;
  width: 250px;
  height: 300px;
  background: linear-gradient(135deg, var(--bleu-canard), var(--bleu-clair));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-family: var(--font-subtitle);
  box-shadow: 0 30px 60px rgba(33, 13, 5, 0.2);
  overflow: hidden;
}

.about-img-secondary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--marron);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-content p {
  margin-bottom: 1.5rem;
  color: var(--marron);
  opacity: 0.85;
  line-height: 1.8;
}

.about-founders {
  display: flex;
  gap: 2.5rem;
  margin-top: 2.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(33, 13, 5, 0.1);
}

.founder {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.founder-avatar {
  width: 65px;
  height: 65px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  overflow: hidden;
}

.founder-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  color: var(--marron);
  font-size: 1.1rem;
}

.founder-info span {
  font-size: 0.85rem;
  color: var(--terracotta);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 5rem;
}

.value-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--beige);
  transition: all 0.4s ease;
}

.value-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(33, 13, 5, 0.1);
}

.value-icon {
  width: 70px;
  height: 70px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--beige);
}

.value-card h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  color: var(--marron);
  margin-bottom: 0.75rem;
  font-size: 1.1rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--marron);
  opacity: 0.75;
}

/* ===== COURSES SECTION ===== */
.courses {
  background: var(--marron);
  color: var(--beige);
  position: relative;
  overflow: hidden;
}

.courses::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("assets/images/pattern-terracotta.svg");
  background-repeat: repeat;
  background-size: 80px 80px;
  transform: rotate(-15deg);
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

.courses > * {
  position: relative;
  z-index: 1;
}

.courses .section-title,
.courses .section-subtitle {
  color: var(--beige);
}

.courses .section-tag {
  color: var(--bleu-clair);
}

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

.course-card {
  background: rgba(255, 235, 219, 0.05);
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 235, 219, 0.08);
  overflow: hidden;
}

.course-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 235, 219, 0.1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.course-image {
  height: 220px;
  background: linear-gradient(135deg, var(--terracotta), var(--bleu-canard));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.course-image-placeholder {
  color: var(--beige);
  font-family: var(--font-subtitle);
  opacity: 0.7;
}

/* Level Indicator - Visual stairs/bars */
.level-indicator {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--beige);
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

.level-bars {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 16px;
}

.level-bar {
  width: 5px;
  background: var(--terracotta);
  border-radius: 2px;
  opacity: 0.25;
  transition: opacity 0.3s ease;
}

.level-bar-1 {
  height: 6px;
}

.level-bar-2 {
  height: 11px;
}

.level-bar-3 {
  height: 16px;
}

.level-bar.active {
  opacity: 1;
}

.level-label {
  font-family: var(--font-subtitle);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--terracotta);
}

.course-content {
  padding: 2rem;
}

.course-content h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.course-description {
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.course-description p {
  margin-bottom: 0.75rem;
}

.course-description p:last-child {
  margin-bottom: 0;
}

.course-meta {
  display: flex;
  gap: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 235, 219, 0.1);
}

.course-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.7;
}

.coming-soon-section {
  margin-top: 4rem;
  text-align: center;
  padding: 3.5rem;
  background: rgba(181, 204, 204, 0.08);
  border: 1px dashed rgba(181, 204, 204, 0.25);
}

.coming-soon-section h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--bleu-clair);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.coming-soon-section p {
  opacity: 0.7;
  font-size: 0.95rem;
}

/* ===== PRICING SECTION ===== */
.pricing {
  background: var(--beige);
}

.pricing-subsection {
  margin-bottom: 4rem;
}

.pricing-subsection:last-child {
  margin-bottom: 0;
}

.pricing-subsection-header {
  margin-bottom: 3rem;
}

.pricing-subsection-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--marron);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-subsection-title::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--marron);
  opacity: 0.2;
}

.pricing-subsection-description {
  color: var(--marron);
  opacity: 0.7;
  font-size: 0.95rem;
  max-width: 600px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.pricing-card {
  background: var(--blanc);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
  border: 1px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(33, 13, 5, 0.12);
}

.pricing-card.featured {
  border-color: var(--terracotta);
  transform: scale(1.03);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-12px);
}

.pricing-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--terracotta);
  color: var(--beige);
  padding: 0.5rem 2rem;
  font-family: var(--font-subtitle);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-icon {
  width: 60px;
  height: 60px;
  background: var(--beige);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--terracotta);
}

.pricing-card h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--marron);
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-tagline {
  font-size: 0.8rem;
  color: var(--marron);
  opacity: 0.6;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--terracotta);
  margin: 1rem 0;
}

.pricing-price span {
  font-size: 0.85rem;
  opacity: 0.6;
}

.pricing-features {
  list-style: none;
  margin: 1.5rem 0;
  text-align: left;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--beige);
  font-size: 0.85rem;
}

.pricing-features li i {
  color: var(--terracotta);
  flex-shrink: 0;
}

.payment-info svg {
  vertical-align: middle;
}

.promo-section {
  padding: 4rem 2rem;
  background: var(--blanc);
}

.promo-banner {
  background: var(--terracotta);
  color: var(--beige);
  padding: 3.5rem 4rem;
}

.promo-top {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 0rem;
  margin-bottom: 1.5rem;
}

.promo-left {
  text-align: left;
}

.promo-banner h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.promo-subtitle {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.promo-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex-shrink: 0;
}

.promo-old-price {
  font-size: 1.2rem;
  text-decoration: line-through;
  opacity: 0.5;
}

.promo-new-price {
  font-family: var(--font-display);
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1;
}

.promo-price-detail {
  font-size: 0.85rem;
  opacity: 0.8;
  font-style: italic;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}

.promo-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.promo-description {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 2rem;
}

.promo-description p {
  margin-bottom: 0.75rem;
}

.promo-description strong {
  font-weight: 700;
}

.promo-description em {
  font-style: italic;
  opacity: 0.85;
}

.promo-banner .btn {
  background: var(--beige);
  color: var(--terracotta);
}

.promo-banner .btn:hover {
  background: var(--marron);
  color: var(--beige);
}

/* ===== BOOKING SECTION ===== */
.booking {
  background: var(--bleu-canard);
  color: var(--beige);
}

.booking .section-title,
.booking .section-subtitle {
  color: var(--beige);
}

.booking .section-tag {
  color: var(--bleu-clair);
}

.booking-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* Stacked layout - Planning full width, features below */
.booking-content--stacked {
  grid-template-columns: 1fr;
  gap: 4rem;
}

.booking-features {
  display: grid;
  gap: 2.5rem;
}

/* Horizontal features grid - 4 columns */
.booking-features--horizontal {
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.booking-features--horizontal .booking-feature {
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}

.booking-features--horizontal .booking-feature-icon {
  margin: 0 auto;
}

/* Full width calendar */
.booking-calendar--full {
  width: 100%;
  max-width: 100%;
  padding: 2rem;
}

.booking-calendar--full h3 {
  margin-bottom: 1.5rem;
}

.booking-calendar--full .sportigo-widget {
  min-height: 600px;
}

/* CTA centered */
.booking-cta {
  text-align: center;
}

.booking-feature {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.booking-feature-icon {
  width: 55px;
  height: 55px;
  background: rgba(255, 235, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.booking-feature h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.booking-feature p {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.7;
}

.booking-calendar {
  background: rgba(255, 235, 219, 0.05);
  padding: 3rem;
  text-align: center;
}

.booking-calendar h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.calendar-placeholder {
  background: rgba(255, 235, 219, 0.03);
  padding: 4rem;
  margin-bottom: 2rem;
  border: 1px dashed rgba(255, 235, 219, 0.15);
}

.calendar-placeholder p {
  opacity: 0.6;
  font-size: 0.9rem;
}

/* Sportigo Widget Styles */
.sportigo-widget {
  background: var(--blanc);
  border-radius: 12px;
  min-height: 500px;
  overflow: hidden;
  margin-bottom: 0;
}

/* Sportigo Widget Customization - Override default styles */
#sportigo-container {
  --sportigo-primary: var(--terracotta);
  --sportigo-font: var(--font-body);
}

#sportigo-container * {
  font-family: var(--font-body) !important;
}

/* Style overrides for Sportigo elements */
#sportigo-container button,
#sportigo-container .btn {
  border-radius: var(--border-radius-btn) !important;
  font-family: var(--font-subtitle) !important;
  text-transform: uppercase !important;
  letter-spacing: 0.05em !important;
  font-size: 0.85rem !important;
}

/* Loading state */
.sportigo-widget:empty {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 235, 219, 0.03);
  border: 1px dashed rgba(255, 235, 219, 0.15);
}

.sportigo-widget:empty::after {
  content: "Chargement du planning...";
  color: var(--beige);
  opacity: 0.6;
  font-size: 0.9rem;
}

/* ===== STUDIO SECTION ===== */
.studio {
  background: var(--blanc);
  position: relative;
  overflow: hidden;
}

.studio::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: url("assets/images/pattern-bleu-clair.svg");
  background-repeat: repeat;
  background-size: 80px 80px;
  transform: rotate(-15deg);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.studio > * {
  position: relative;
  z-index: 1;
}

.studio-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 280px);
  gap: 1rem;
  margin-bottom: 5rem;
}

.studio-img {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.studio-img:hover .studio-img-overlay {
  opacity: 1;
}

.studio-img:hover .studio-img-placeholder {
  transform: scale(1.1);
}

.studio-img:hover img {
  transform: scale(1.1);
}

.studio-img:nth-child(1) {
  grid-column: span 2;
  grid-row: span 2;
}

.studio-img-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  font-family: var(--font-subtitle);
  padding: 1rem;
  text-align: center;
  transition: transform 0.6s ease;
}

.studio-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.studio-img:nth-child(1) .studio-img-placeholder {
  background: linear-gradient(135deg, var(--terracotta), #c95a3d);
}
.studio-img:nth-child(2) .studio-img-placeholder {
  background: linear-gradient(135deg, var(--bleu-canard), #0a6b75);
}
.studio-img:nth-child(3) .studio-img-placeholder {
  background: linear-gradient(135deg, var(--marron), #3d261c);
}
.studio-img:nth-child(4) .studio-img-placeholder {
  background: linear-gradient(135deg, var(--bleu-clair), #8fb3b3);
}
.studio-img:nth-child(5) .studio-img-placeholder {
  background: linear-gradient(135deg, var(--terracotta), var(--marron));
}

.studio-img-overlay {
  position: absolute;
  inset: 0;
  background: rgba(33, 13, 5, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.studio-img-overlay i {
  color: var(--beige);
  font-size: 2rem;
}

.studio-info {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}

.studio-address {
  background: var(--beige);
  padding: 2.5rem;
}

.studio-address h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--marron);
  margin-bottom: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.address-item {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.address-item i {
  color: var(--terracotta);
  margin-top: 3px;
}

.address-item h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  color: var(--marron);
  margin-bottom: 0.25rem;
}

.address-item p {
  font-size: 0.9rem;
  color: var(--marron);
  opacity: 0.8;
}

.studio-map {
  height: 400px;
  background: var(--bleu-clair);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.studio-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.map-placeholder {
  text-align: center;
  color: var(--bleu-canard);
}

.map-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}

/* ===== PARTNERS SECTION ===== */
.partners {
  background: var(--beige);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.partner-card {
  background: var(--blanc);
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s ease;
}

.partner-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(33, 13, 5, 0.1);
}

.partner-logo {
  width: 90px;
  height: 90px;
  background: var(--beige);
  margin: 0 auto 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  overflow: hidden;
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

.partner-card h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  color: var(--marron);
  margin-bottom: 0.5rem;
}

.partner-card span {
  font-size: 0.85rem;
  color: var(--terracotta);
}

/* ===== CONTACT SECTION ===== */
.contact {
  background: var(--marron);
  color: var(--beige);
}

.contact .section-title,
.contact .section-subtitle {
  color: var(--beige);
}

.contact .section-tag {
  color: var(--bleu-clair);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
}

.contact-info {
  display: grid;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.contact-icon {
  width: 55px;
  height: 55px;
  background: var(--terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.contact-item p,
.contact-item a {
  color: var(--beige);
  opacity: 0.8;
  text-decoration: none;
  font-size: 0.95rem;
}

.contact-item a:hover {
  opacity: 1;
  color: var(--bleu-clair);
}

.contact-form {
  background: rgba(255, 235, 219, 0.03);
  padding: 3rem;
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-group label {
  display: block;
  font-family: var(--font-subtitle);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1.1rem;
  border: none;
  background: rgba(255, 235, 219, 0.08);
  color: var(--beige);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 235, 219, 0.4);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  background: rgba(255, 235, 219, 0.12);
  box-shadow: 0 0 0 2px var(--terracotta);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== BLOG SECTION ===== */
.blog {
  background: var(--blanc);
}

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

.blog-card {
  background: var(--beige);
  overflow: hidden;
  transition: all 0.4s ease;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 50px rgba(33, 13, 5, 0.12);
}

.blog-image {
  height: 220px;
  background: linear-gradient(135deg, var(--bleu-canard), var(--bleu-clair));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-card:hover .blog-image-placeholder {
  transform: scale(1.1);
}

.blog-image-placeholder {
  color: var(--beige);
  font-family: var(--font-subtitle);
  opacity: 0.7;
  transition: transform 0.6s ease;
}

.blog-content {
  padding: 2rem;
}

.blog-category {
  font-family: var(--font-subtitle);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.blog-content h3 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--marron);
  margin: 0.75rem 0;
  line-height: 1.5;
}

.blog-content p {
  font-size: 0.9rem;
  color: var(--marron);
  opacity: 0.75;
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.blog-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--terracotta);
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: gap 0.3s ease;
}

.blog-link:hover {
  gap: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--marron);
  color: var(--beige);
  padding: 5rem 2rem 2rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  height: 65px;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 0.9rem;
  opacity: 0.7;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.footer-socials a {
  width: 45px;
  height: 45px;
  background: rgba(255, 235, 219, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--beige);
  transition: all 0.3s ease;
}

.footer-socials a:hover {
  background: var(--terracotta);
  transform: translateY(-3px);
}

.footer-column h4 {
  font-family: var(--font-subtitle);
  font-weight: 700;
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 1rem;
}

.footer-column a {
  color: var(--beige);
  opacity: 0.65;
  text-decoration: none;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.footer-column a:hover {
  opacity: 1;
  color: var(--bleu-clair);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 235, 219, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.8rem;
  opacity: 0.5;
}

.footer-legal {
  display: flex;
  gap: 2.5rem;
}

.footer-legal a {
  font-size: 0.8rem;
  color: var(--beige);
  opacity: 0.5;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-legal a:hover {
  opacity: 1;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--marron);
  z-index: 999;
  padding: 11rem 2rem 2rem;
  transform: translateX(100%);
  transition: transform 0.4s ease;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu li {
  margin-bottom: 2rem;
}

.mobile-menu a {
  font-family: var(--font-display);
  font-size: 1.75rem;
  color: var(--beige);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.mobile-menu .mobile-cta {
  display: inline-block;
  background: var(--terracotta);
  color: var(--beige);
  padding: 1rem 2rem;
  font-family: var(--font-subtitle);
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1rem;
  border-radius: var(--border-radius-btn);
}

/* ===== SINGLE POST ===== */
.single-post {
  padding: 8rem 2rem 5rem;
  background: var(--blanc);
}

.single-post-container {
  max-width: 800px;
  margin: 0 auto;
}

.single-post-header {
  margin-bottom: 3rem;
}

.single-post-category {
  font-family: var(--font-subtitle);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--terracotta);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  display: inline-block;
}

.single-post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--marron);
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.single-post-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--marron);
  opacity: 0.7;
}

.single-post-image {
  width: 100%;
  height: 400px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.single-post-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-post-content {
  line-height: 1.9;
  color: var(--marron);
}

.single-post-content h2,
.single-post-content h3,
.single-post-content h4 {
  font-family: var(--font-subtitle);
  color: var(--marron);
  margin: 2rem 0 1rem;
}

.single-post-content p {
  margin-bottom: 1.5rem;
}

.single-post-content a {
  color: var(--terracotta);
}

.single-post-content img {
  max-width: 100%;
  height: auto;
  margin: 2rem 0;
}

/* ===== ARCHIVE ===== */
.archive-header {
  background: var(--marron);
  color: var(--beige);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.archive-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.archive-header p {
  font-size: 1.1rem;
  opacity: 0.8;
}

.archive-content {
  background: var(--blanc);
  padding: 5rem 2rem;
}

.archive-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* ===== PAGE TEMPLATE ===== */
.page-header {
  background: var(--marron);
  color: var(--beige);
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  text-transform: uppercase;
}

.page-content {
  background: var(--blanc);
  padding: 5rem 2rem;
}

.page-content-container {
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.9;
}

.page-content-container h2,
.page-content-container h3 {
  font-family: var(--font-subtitle);
  color: var(--marron);
  margin: 2rem 0 1rem;
}

.page-content-container p {
  margin-bottom: 1.5rem;
}

/* ===== ACF FORM STYLES ===== */
.acf-form {
  background: rgba(255, 235, 219, 0.03);
  padding: 3rem;
}

.acf-form .acf-field {
  margin-bottom: 1.75rem;
}

.acf-form .acf-label label {
  display: block;
  font-family: var(--font-subtitle);
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--beige);
}

.acf-form .acf-input input[type="text"],
.acf-form .acf-input input[type="email"],
.acf-form .acf-input textarea {
  width: 100%;
  padding: 1.1rem;
  border: none;
  background: rgba(255, 235, 219, 0.08);
  color: var(--beige);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.acf-form .acf-input input:focus,
.acf-form .acf-input textarea:focus {
  outline: none;
  background: rgba(255, 235, 219, 0.12);
  box-shadow: 0 0 0 2px var(--terracotta);
}

.acf-form input[type="submit"] {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--font-subtitle);
  font-weight: 600;
  font-size: 0.85rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  cursor: pointer;
  border: none;
  background: var(--beige);
  color: var(--marron);
  width: 100%;
  justify-content: center;
  border-radius: var(--border-radius-btn);
}

.acf-form input[type="submit"]:hover {
  background: var(--terracotta);
  color: var(--beige);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-img-secondary {
    right: 20px;
    bottom: -20px;
  }

  .studio-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }

  .studio-img:nth-child(1) {
    grid-column: span 2;
  }

  .studio-info {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 992px) {
  .navbar {
    padding: 4rem 1rem 1.5rem;
  }

  .navbar-menu {
    display: none;
  }

  .navbar-cta {
    display: none;
  }

  .mobile-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
  }

  .hero-logo {
    width: 200px;
  }

  .hero-location {
    display: none;
  }

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .contact-grid,
  .booking-content {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 768px) {
  section {
    padding: 5rem 1.5rem;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 11rem 1rem 10rem;
  }

  .hero-content {
    padding: 0 1rem;
  }

  .hero-badge--bottom-right {
    bottom: 1.5rem;
    right: 1rem;
    left: 1rem;
    text-align: center;
    justify-content: center;
    font-size: 0.7rem;
    padding: 0.5rem 1rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
  }

  .hero-title {
    font-size: clamp(1.4rem, 7vw, 1.8rem);
    margin-bottom: 1rem;
  }

  .hero-slogan {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-slogan br {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 1rem;
  }

  .btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
    padding: 0.9rem 1.5rem;
  }

  .hero-socials {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .hero-location {
    display: none;
  }

  .section-title {
    font-size: 1.5rem;
    word-break: break-word;
  }

  .courses-grid,
  .pricing-grid,
  .partners-grid,
  .blog-grid,
  .archive-grid {
    grid-template-columns: 1fr;
  }

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

  .booking-features--horizontal .booking-feature {
    flex-direction: row;
    text-align: left;
  }

  .booking-features--horizontal .booking-feature-icon {
    margin: 0;
  }

  .booking-calendar--full {
    padding: 1rem;
  }

  .booking-calendar--full .sportigo-widget {
    min-height: 450px;
  }

  .studio-gallery {
    grid-template-columns: 1fr;
  }

  .studio-img:nth-child(1) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-img-secondary {
    position: relative;
    right: auto;
    bottom: auto;
    width: 100%;
    height: 200px;
    margin-top: 1rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
  }

  .about-founders {
    flex-direction: column;
    gap: 1.5rem;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .promo-banner {
    padding: 2.5rem 1.5rem;
  }

  .promo-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .promo-left {
    text-align: center;
  }

  .promo-banner h3 {
    justify-content: center;
  }

  .promo-right {
    align-items: center;
    text-align: center;
  }

  .promo-new-price {
    font-size: 3.5rem;
  }

  .promo-bottom {
    padding-top: 1.5rem;
  }

  .single-post-image {
    height: 250px;
  }
}

/* ============================================
   LIGHTBOX
============================================ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  z-index: 1;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
}

.lightbox-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  padding: 0.5rem;
  transition: opacity 0.3s ease;
}

.lightbox-close:hover {
  opacity: 0.7;
}

.lightbox-caption {
  text-align: center;
  color: white;
  margin-top: 1rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

/* ============================================
   FORM SUCCESS STATE
============================================ */
.form-success {
  text-align: center;
  padding: 3rem 2rem;
  background: linear-gradient(
    135deg,
    rgba(164, 175, 145, 0.1),
    rgba(164, 175, 145, 0.05)
  );
  border-radius: 16px;
  border: 1px solid var(--sage);
}

.form-success h3 {
  margin: 1rem 0 0.5rem;
  color: var(--charcoal);
  font-family: var(--font-display);
  font-size: 1.5rem;
}

.form-success p {
  color: var(--gray);
  margin: 0;
}

/* ============================================
   LOADING ANIMATIONS
============================================ */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.animate-spin {
  animation: spin 1s linear infinite;
}

/* ============================================
   ACCESSIBILITY
============================================ */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Focus states */
a:focus,
button:focus,
input:focus,
textarea:focus,
select:focus {
  outline: 2px solid var(--sage);
  outline-offset: 2px;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100%;
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  color: white;
  padding: 1rem 2rem;
  z-index: 100000;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
}

/* ============================================
   WORDPRESS ALIGNMENTS
============================================ */
.alignleft {
  float: left;
  margin-right: 1.5rem;
  margin-bottom: 1rem;
}

.alignright {
  float: right;
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.alignwide {
  margin-left: -2rem;
  margin-right: -2rem;
  max-width: calc(100% + 4rem);
}

.alignfull {
  margin-left: calc(-50vw + 50%);
  margin-right: calc(-50vw + 50%);
  max-width: 100vw;
  width: 100vw;
}

/* WordPress captions */
.wp-caption {
  max-width: 100%;
  margin-bottom: 1.5rem;
}

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

.wp-caption-text {
  font-size: 0.875rem;
  color: var(--gray);
  margin-top: 0.5rem;
  text-align: center;
}

/* WordPress galleries */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  margin: 0;
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

/* ===== LEGAL PAGE ===== */
.legal-content {
  min-height: 100vh;
}

.legal-hero {
  background: linear-gradient(
    135deg,
    var(--bleu-canard) 0%,
    var(--marron) 100%
  );
  color: var(--blanc);
  padding: 8rem 0 4rem;
  text-align: center;
}

.legal-hero .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-hero .section-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  color: var(--blanc);
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.legal-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.legal-updated {
  font-size: 0.9rem;
  opacity: 0.8;
}

.legal-body {
  padding: 4rem 0;
}

.legal-body .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-wrapper {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 4rem;
  align-items: start;
}

.legal-sidebar {
  position: sticky;
  top: 120px;
}

.legal-toc {
  background: var(--blanc);
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-toc h3 {
  font-family: var(--font-subtitle);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--beige);
  color: var(--marron);
}

.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-nav li {
  margin-bottom: 0.5rem;
}

.legal-nav li.toc-sub {
  padding-left: 1rem;
}

.legal-nav a {
  display: block;
  color: var(--marron);
  text-decoration: none;
  font-size: 0.9rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.legal-nav a:hover {
  background: var(--beige);
  color: var(--terracotta);
}

.legal-article {
  background: var(--blanc);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.legal-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--marron);
}

.legal-text h2 {
  font-family: var(--font-subtitle);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--beige);
  color: var(--marron);
}

.legal-text h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.legal-text h3 {
  font-family: var(--font-subtitle);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 2rem 0 0.75rem;
  color: var(--bleu-canard);
}

.legal-text p {
  margin-bottom: 1rem;
}

.legal-text ul,
.legal-text ol {
  margin: 1rem 0 1.5rem 1.5rem;
}

.legal-text li {
  margin-bottom: 0.5rem;
}

.legal-text a {
  color: var(--terracotta);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-text a:hover {
  color: var(--terracotta-light);
}

.legal-text strong {
  font-weight: 600;
  color: var(--marron);
}

.legal-back-top {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--beige);
  text-align: center;
}

.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--marron);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  background: var(--beige);
  transition: all 0.3s ease;
}

.back-to-top:hover {
  background: var(--terracotta);
  color: var(--blanc);
}

.back-to-top svg {
  transition: transform 0.3s ease;
}

.back-to-top:hover svg {
  transform: translateY(-3px);
}

.legal-contact {
  padding: 4rem 0;
  background: var(--beige);
}

.legal-contact .container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.legal-contact-box {
  background: linear-gradient(
    135deg,
    var(--bleu-canard) 0%,
    var(--marron) 100%
  );
  color: var(--blanc);
  border-radius: 20px;
  padding: 3rem;
  text-align: center;
}

.legal-contact-box h3 {
  font-family: var(--font-subtitle);
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.legal-contact-box p {
  font-size: 1rem;
  opacity: 0.9;
  margin-bottom: 1.5rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.legal-contact-box .btn-outline {
  border-color: var(--blanc);
  color: var(--blanc);
}

.legal-contact-box .btn-outline:hover {
  background: var(--blanc);
  color: var(--bleu-canard);
}

/* Legal page responsive */
@media (max-width: 992px) {
  .legal-wrapper {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .legal-sidebar {
    position: static;
    order: 2;
  }

  .legal-toc {
    display: none;
  }

  .legal-article {
    order: 1;
  }
}

@media (max-width: 768px) {
  .legal-hero {
    padding: 7rem 0 3rem;
  }

  .legal-title {
    font-size: 1.75rem;
  }

  .legal-body {
    padding: 2rem 0;
  }

  .legal-article {
    padding: 2rem 1.5rem;
    border-radius: 16px;
  }

  .legal-text h2 {
    font-size: 1.3rem;
  }

  .legal-text h3 {
    font-size: 1.1rem;
  }

  .legal-contact-box {
    padding: 2rem 1.5rem;
  }
}
