*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green: #57bb8a;
  --green-dark: #3d9b6e;
  --green-deeper: #2d7a55;
  --green-light: #e8f7f0;
  --green-mid: #b3dfc9;
  --white: #ffffff;
  --off-white: #f7faf8;
  --ink: #151f1a;
  --ink-mid: #3a4a41;
  --ink-light: #7a9186;
  --border: rgba(87,187,138,0.18);
}

html { scroll-behavior: smooth; }

body {
  background: var(--white);
  color: var(--ink);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 2.5rem;
  height: 68px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(87,187,138,0.12); }

.logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.35rem; font-weight: 800;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.logo span { color: var(--green); }

.nav-links {
  display: flex; gap: 2.2rem; list-style: none;
}
.nav-links a {
  color: var(--ink-mid);
  text-decoration: none;
  font-size: 0.9rem; font-weight: 500;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--green); }

.btn-nav {
  background: var(--green);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 0.9rem;
  padding: 0.6rem 1.4rem;
  border-radius: 100px;
  border: none; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  letter-spacing: 0.01em;
}
.btn-nav:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--green);
  display: flex; flex-direction: column; justify-content: center;
  padding: 8rem 2.5rem 5rem;
  position: relative; overflow: hidden;
}

/* Organic circles background */
.hero::before {
  content: '';
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -25%; left: -8%;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 2rem;
  width: fit-content;
  position: relative; z-index: 1;
  animation: fadeUp 0.5s ease both;
}
.hero-eyebrow::before {
  content: '📍';
  font-size: 0.9rem;
}

.hero h1 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: #fff;
  max-width: 820px;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.08s ease both;
}

.hero h1 em {
  font-style: normal;
  display: block;
  color: rgba(255,255,255,0.45);
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.82);
  max-width: 500px;
  margin-top: 1.75rem;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.16s ease both;
}

.hero-ctas {
  display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.24s ease both;
}

.btn-white {
  background: #fff;
  color: var(--green-deeper);
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: none; cursor: pointer;
  text-decoration: none;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(0,0,0,0.18); }

.btn-outline-white {
  background: transparent;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 1rem;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 1.5px solid rgba(255,255,255,0.5);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, background 0.2s;
}
.btn-outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.1); }

.hero-stats {
  display: flex; gap: 3rem; margin-top: 4rem; flex-wrap: wrap;
  position: relative; z-index: 1;
  animation: fadeUp 0.55s 0.32s ease both;
}
.hero-stat strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 2.2rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.hero-stat span {
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 0.05em;
  margin-top: 0.2rem; display: block;
}

/* ─── WAVE DIVIDER ─── */
.wave {
  display: block; line-height: 0;
  background: var(--green);
}
.wave svg { width: 100%; height: auto; display: block; }

/* ─── INTRO STRIP ─── */
.intro-strip {
  background: var(--off-white);
  padding: 4rem 2.5rem;
  display: flex; justify-content: center;
}
.intro-inner {
  max-width: 780px; text-align: center;
}
.intro-inner p {
  font-size: 1.25rem;
  color: var(--ink-mid);
  line-height: 1.7;
}
.intro-inner strong { color: var(--green-deeper); }

/* ─── SERVICES ─── */
.services-section {
  padding: 5rem 2.5rem 6rem;
  background: var(--white);
}

.section-header {
  margin-bottom: 3rem;
}
.section-label {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}


.service-card-img {
  width: calc(100% + 4.5rem);
  margin: -2.25rem -2.25rem 1.5rem -2.25rem;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 18px 18px 0 0;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.9) saturate(0.85);
}
.service-card:hover .service-card-img {
  transform: scale(1.04);
  filter: brightness(1) saturate(1);
}
.service-card { overflow: hidden; }

.service-card {
  background: var(--off-white);
  border-radius: 20px;
  padding: 2.25rem;
  position: relative;
  border: 1.5px solid transparent;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  border-color: var(--green-mid);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(87,187,138,0.15);
}
.service-card:hover::after { transform: scaleX(1); }

.service-emoji {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: block;
}
.service-num {
  position: absolute; top: 1.5rem; right: 1.75rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 4rem; font-weight: 800;
  color: rgba(87,187,138,0.1);
  line-height: 1;
}
.service-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.5rem; font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}
.service-desc {
  color: var(--ink-light);
  font-size: 0.95rem; line-height: 1.7;
  margin-bottom: 1.5rem;
}
.service-badges {
  display: flex; flex-wrap: wrap; gap: 0.5rem;
}
.badge {
  background: var(--green-light);
  color: var(--green-deeper);
  font-size: 0.75rem; font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  letter-spacing: 0.02em;
}

/* ─── WHY US ─── */
.why-section {
  background: var(--green);
  padding: 6rem 2.5rem;
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; top: -30%; right: -15%;
  width: 550px; height: 550px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}

.why-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}

.why-text .section-label { color: rgba(255,255,255,0.6); }
.why-text .section-title { color: #fff; }

.why-text p {
  color: rgba(255,255,255,0.78);
  margin-top: 1.25rem; font-size: 1.05rem; max-width: 420px;
}

.why-text .btn-white { margin-top: 2rem; }

.pillars {
  display: flex; flex-direction: column; gap: 1.25rem;
  position: relative; z-index: 1;
}

.pillar {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  display: flex; gap: 1rem; align-items: flex-start;
  transition: background 0.2s;
}
.pillar:hover { background: rgba(255,255,255,0.18); }

.pillar-icon {
  font-size: 1.5rem; flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.pillar-body strong {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 1rem;
  color: #fff; margin-bottom: 0.2rem;
}
.pillar-body span { font-size: 0.88rem; color: rgba(255,255,255,0.68); line-height: 1.5; }

/* ─── TÉMOIGNAGES ─── */
.reviews-section {
  padding: 5.5rem 2.5rem;
  background: var(--off-white);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid rgba(87,187,138,0.15);
}
.review-stars {
  color: var(--green); font-size: 1rem;
  margin-bottom: 0.75rem;
}
.review-text {
  color: var(--ink-mid); font-size: 0.92rem; line-height: 1.65;
  margin-bottom: 1rem; font-style: italic;
}
.review-author {
  font-weight: 600; font-size: 0.88rem; color: var(--ink);
}

/* ─── CTA BOOKING ─── */
.cta-section {
  background: var(--white);
  padding: 6rem 2.5rem;
  text-align: center;
}
.cta-inner {
  max-width: 620px; margin: 0 auto;
}
.cta-badge {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-deeper);
  font-size: 0.8rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.cta-section h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
}
.cta-section h2 span { color: var(--green); }
.cta-section p {
  color: var(--ink-light); font-size: 1.05rem;
  max-width: 420px; margin: 0 auto 2.5rem;
}
.btn-green-big {
  background: var(--green);
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600; font-size: 1.05rem;
  padding: 1rem 2.4rem;
  border-radius: 100px;
  border: none; cursor: pointer;
  text-decoration: none; display: inline-block;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(87,187,138,0.35);
}
.btn-green-big:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(87,187,138,0.45);
}
.cta-note { font-size: 0.82rem; color: var(--ink-light); margin-top: 1rem; }

/* ─── FOOTER ─── */
footer {
  background: var(--ink);
  padding: 3rem 2.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.3rem; font-weight: 800;
  color: #fff; text-decoration: none;
}
.footer-logo span { color: var(--green); }
.footer-info { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer-info a { color: var(--green-mid); text-decoration: none; }
.footer-info a:hover { text-decoration: underline; }
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.2); }

/* ─── PLANNING ─── */
.planning-section {
  padding: 5.5rem 2.5rem;
  background: var(--off-white);
}
.section-sub {
  color: var(--ink-light); font-size: 0.95rem; margin-top: 0.5rem;
}
.planning-legend {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.legend-item {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.85rem; font-weight: 600; color: var(--ink-mid);
}
.legend-dot {
  width: 12px; height: 12px; border-radius: 3px; flex-shrink: 0;
}
.dot-wod     { background: var(--green); }
.dot-cardio  { background: #7dd4a8; }
.dot-kids    { background: #3b9dc9; }
.dot-gym     { background: #2c6ea5; }

.planning-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
  overflow-x: auto;
}
.day-col {
  min-width: 130px;
}
.day-header {
  background: var(--green);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700; font-size: 0.9rem;
  text-align: center;
  padding: 0.6rem 0.5rem;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.03em;
}
.day-slots {
  display: flex; flex-direction: column; gap: 6px;
  padding: 8px 0;
}
.slot {
  border-radius: 8px;
  padding: 0.55rem 0.65rem;
  display: flex; flex-direction: column; gap: 2px;
  transition: transform 0.15s;
  cursor: default;
}
.slot:hover { transform: scale(1.02); }
.slot-name {
  font-weight: 700; font-size: 0.78rem; line-height: 1.2;
  letter-spacing: 0.01em;
}
.slot-time {
  font-size: 0.72rem; opacity: 0.85; font-weight: 500;
}
.slot-wod    { background: var(--green);    color: #fff; }
.slot-cardio { background: #7dd4a8;          color: #0d4a2a; }
.slot-kids   { background: #3b9dc9;          color: #fff; }
.slot-gym    { background: #2c6ea5;          color: #fff; }

.planning-cta {
  margin-top: 2.5rem;
  background: var(--green-light);
  border: 1.5px solid var(--green-mid);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.planning-cta p { color: var(--ink); font-size: 1rem; }
.planning-cta strong { color: var(--green-deeper); }


/* ─── GALLERY ─── */
.gallery-section {
  padding: 5.5rem 2.5rem;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  margin-top: 2.5rem;
  max-width: 1100px;
}
.gallery-item {
  overflow: hidden;
  border-radius: 16px;
  position: relative;
}
.gallery-item:first-child {
  grid-row: 1 / 3;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
  filter: brightness(0.92);
}
.gallery-item:hover img {
  transform: scale(1.04);
  filter: brightness(1);
}
.gallery-item .img-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem 1rem;
  background: linear-gradient(to top, rgba(21,31,26,0.75) 0%, transparent 100%);
  color: #fff;
  font-weight: 700; font-size: 0.85rem;
  letter-spacing: 0.06em; text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .img-label { opacity: 1; }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr; grid-template-rows: auto; }
  .gallery-item:first-child { grid-row: auto; }
  .gallery-item img { height: 260px; }
}

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  nav { padding: 0 1.25rem; }
  .nav-links { display: none; }
  .hero { padding: 6rem 1.25rem 4rem; }
  .hero-stats { gap: 2rem; }
  .services-section,
  .reviews-section,
  .cta-section,
  .intro-strip { padding-left: 1.25rem; padding-right: 1.25rem; }
  .why-section { padding: 4rem 1.25rem; }
  .why-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  footer { flex-direction: column; text-align: center; padding: 2rem 1.25rem; }
}