
:root {
  --primary:       #e60023;
  --primary-h:     rgba(230, 0, 35, 0.80);
  --primary-glow:  rgba(230, 0, 35, 0.50);
  --primary-light: rgba(230, 0, 35, 0.08);
  --bg:            #f5f5f5;
  --white:         #ffffff;
  --dark:          #000000;
  --dark-2:        #111111;
  --dark-3:        #1a1a1a;
  --text:          #333333;
  --text-mid:      #555555;
  --text-light:    #aaaaaa;
  --radius:        10px;
  --transition:    all 0.35s ease;
  --shadow:        0 4px 22px rgba(0,0,0,0.10);
  --shadow-red:    0 8px 32px rgba(230,0,35,0.22);
  --max-w:         1200px;
}

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

html, body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
}

h1, h2, h3, h4 {
  font-family: 'Barlow Condensed', 'Poppins', sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
}

h1 { font-size: clamp(1.8rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1rem, 2vw, 1.25rem); }

p { text-align: justify; line-height: 1.85; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

section { padding: 90px 5%; }

.section-light  { background: var(--bg); }
.section-white  { background: var(--white); }
.section-dark   { background: var(--dark-3); color: var(--white); }
.section-black  { background: var(--dark); color: var(--white); }

.section-header { text-align: center; margin-bottom: 55px; }

.section-header h2 {
  display: inline-block;
  position: relative;
  margin-bottom: 12px;
  color: var(--text);
}

.section-dark .section-header h2,
.section-black .section-header h2 { color: var(--white); }

.section-header h2::after {
  content: '';
  display: block;
  width: 52px;
  height: 3px;
  background: var(--primary);
  margin: 10px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 0.95rem;
  margin-top: 6px;
}

#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 5%;
  background: transparent;
  transition: var(--transition);
}

#header.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.45);
  padding: 6px 5%;
}

.logo-img {
  height: 52px;
  width: auto;
  max-width: 190px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.5));
}

#nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}

#nav a {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 4px;
  transition: var(--transition);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

#nav a:hover {
  color: var(--primary);
  text-shadow: 0 0 14px var(--primary-glow);
}

#nav a.nav-location {
  background: var(--primary);
  color: var(--white);
}

#nav a.nav-location:hover {
  background: var(--primary-h);
  text-shadow: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
  padding: 4px;
}

.menu-close {
  display: none;
  position: absolute;
  top: 18px; right: 22px;
  color: var(--white);
  font-size: 1.4rem;
  cursor: pointer;
}

@media (max-width: 960px) {
  .menu-toggle { display: block; }
  .menu-close  { display: block; }

  #nav {
    position: fixed;
    top: 0; right: -100%;
    width: 270px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    align-items: flex-start;
    padding: 72px 28px 30px;
    gap: 4px;
    transition: right 0.35s ease;
    z-index: 999;
    box-shadow: -4px 0 30px rgba(0,0,0,0.45);
  }

  #nav.active { right: 0; }
  #nav a { font-size: 0.9rem; padding: 10px 0; width: 100%; border-bottom: 1px solid rgba(255,255,255,0.04); }
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: opacity;
}

.hero-bg-1 {
  z-index: 1;
  animation: heroCycle1 14s infinite ease-in-out;
}

.hero-bg-2 {
  z-index: 2;
  animation: heroCycle2 14s infinite ease-in-out;
}

@keyframes heroCycle1 {
  0%,  42%         { opacity: 1; }
  48%, 96%, 100%   { opacity: 0; }
}

@keyframes heroCycle2 {
  0%,  42%       { opacity: 0; }
  48%, 96%, 100% { opacity: 1; }
  /* Reset at end so loop is seamless */
}

/* Re-run: at 100% bg2 fades out and bg1 comes back via cycle1 */
@keyframes heroCycle2 {
  0%          { opacity: 0; }
  48%         { opacity: 0; }
  54%         { opacity: 1; }
  94%         { opacity: 1; }
  100%        { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.55) 0%,
    rgba(0,0,0,0.25) 45%,
    rgba(0,0,0,0.72) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 4;
  text-align: center;
  color: var(--white);
  padding: 0 6%;
  max-width: 900px;
}

.hero-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 5px 18px;
  border-radius: 30px;
  margin-bottom: 18px;
}

.hero-content h1 {
  font-size: clamp(1.9rem, 5.5vw, 4.2rem);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.5);
  font-weight: 900;
}

.hero-content h1 span { color: var(--primary); }

.hero-content p {
  font-size: clamp(0.88rem, 1.4vw, 1.05rem);
  text-align: center;
  color: rgba(255,255,255,0.88);
  line-height: 1.75;
  margin-bottom: 8px;
}

.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  font-family: 'Poppins', sans-serif;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-primary:hover {
  background: transparent;
  color: var(--primary);
  box-shadow: 0 0 22px var(--primary-glow);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}

.btn-outline-red {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-red:hover {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px var(--primary-glow);
}

.whatsapp-btn {
  background: #25D366;
  color: var(--white) !important;
  border-color: #25D366;
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.whatsapp-btn:hover { background: #1da851; border-color: #1da851; }

.instagram-btn {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: var(--white);
  border-color: transparent;
}
.instagram-btn:hover { opacity: 0.88; }

#backToTop {
  display: none;
  position: fixed;
  bottom: 100px;
  right: 28px;
  z-index: 998;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 50%;
  width: 46px; height: 46px;
  font-size: 1.05rem;
  cursor: pointer;
  box-shadow: 0 4px 18px var(--primary-glow);
  transition: var(--transition);
}
#backToTop:hover { background: var(--dark-2); transform: translateY(-3px); }

.apropos-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.apropos-text p {
  color: var(--text-mid);
  margin-bottom: 16px;
}

.apropos-quote {
  border-left: 4px solid var(--primary);
  padding-left: 18px;
  margin: 24px 0;
}

.apropos-quote p {
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text);
  text-align: left;
}

.label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  border: 1px solid rgba(230,0,35,0.3);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.apropos-img-wrap {
  position: relative;
}

.apropos-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.apropos-badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--primary);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-red);
}

.apropos-badge strong {
  display: block;
  font-size: 2rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
}

.apropos-badge span { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.07em; }

@media (max-width: 768px) {
  .apropos-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .apropos-badge { bottom: -14px; left: 12px; }
}

.stats {
  background: var(--dark);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 60px 5%;
  gap: 0;
}

.stat {
  text-align: center;
  padding: 30px 20px;
  position: relative;
}

.stat::after {
  content: '';
  position: absolute;
  right: 0; top: 20%; height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.08);
}

.stat:last-child::after { display: none; }

.stat i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: block;
}

.stat h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 900;
}

.stat p {
  color: var(--text-light);
  text-align: center;
  font-size: 0.88rem;
  margin-top: 4px;
}

@media (max-width: 560px) {
  .stats { grid-template-columns: 1fr; }
  .stat::after { display: none; }
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto 50px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 3px solid transparent;
}

.card:hover {
  border-top-color: var(--primary);
  box-shadow: var(--shadow-red);
  transform: translateY(-6px);
}

.card i {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 16px;
  display: block;
}

.card h3 { color: var(--text); margin-bottom: 10px; }
.card p  { color: var(--text-mid); font-size: 0.88rem; }

/* MAP */
.map-container {
  max-width: var(--max-w);
  margin: 0 auto;
}

.map-container > h3 {
  text-align: center;
  color: var(--text);
  margin-bottom: 20px;
}

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 2px solid rgba(230,0,35,0.18);
}

.map-info {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 24px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  padding: 12px 20px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  font-size: 0.88rem;
  color: var(--text-mid);
  transition: var(--transition);
}

.info-item:hover { box-shadow: var(--shadow-red); transform: translateY(-2px); }
.info-item i { color: var(--primary); font-size: 1rem; width: 16px; }

.team-container {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.team-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.06);
}

.team-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 28px var(--primary-glow);
  transform: translateY(-4px);
}

.team-card h3  { color: var(--white); margin-bottom: 6px; }
.team-card .role { color: var(--primary); font-size: 0.84rem; display: block; }

.card-icon {
  width: 50px; height: 50px;
  background: rgba(230,0,35,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  transition: var(--transition);
}

.team-card:hover .card-icon { background: rgba(230,0,35,0.22); }
.card-icon i { color: var(--primary); font-size: 1.2rem; }

.main-leader { max-width: 310px; width: 100%; }

.main-leader .card-inner { display: flex; flex-direction: column; align-items: center; }

.main-leader img {
  width: 118px; height: 118px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary);
  margin: 0 auto 14px;
}

.role-badge {
  background: var(--primary);
  color: var(--white);
  font-size: 0.73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  width: 100%;
}

.team-card.highlight { border-color: rgba(230,0,35,0.25); }

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.filter-btn {
  background: var(--white);
  border: 2px solid #e0e0e0;
  color: var(--text-mid);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.83rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}

.filter-btn:hover, .filter-btn.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.schedule {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.schedule-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 18px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-bottom: 3px solid transparent;
}

.schedule-card:hover {
  transform: translateY(-7px);
  border-bottom-color: var(--primary);
  box-shadow: var(--shadow-red);
}

.schedule-card .day {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 3px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.schedule-card h3 { font-size: 0.92rem; color: var(--text); margin-bottom: 8px; }

.schedule-card .age {
  color: var(--text-mid);
  font-size: 0.80rem;
  text-align: center;
  margin-bottom: 6px;
}

.schedule-card .time {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.05rem;
  text-align: center;
}

.programmes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

.prog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.prog-card:hover,
.prog-card.open {
  box-shadow: var(--shadow-red);
  transform: translateY(-5px);
}

.prog-header {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 20px 14px;
}

.prog-icon {
  width: 46px; height: 46px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.prog-card:hover .prog-icon,
.prog-card.open .prog-icon { background: rgba(230,0,35,0.18); }

.prog-icon i { color: var(--primary); font-size: 1.15rem; }

.prog-meta { flex: 1; }
.prog-meta h3 { font-size: 0.96rem; color: var(--text); margin-bottom: 4px; }

.prog-age {
  display: inline-block;
  font-size: 0.75rem;
  color: var(--primary);
  font-weight: 600;
  background: var(--primary-light);
  padding: 2px 10px;
  border-radius: 20px;
}

.prog-toggle-icon {
  color: var(--text-light);
  font-size: 0.85rem;
  transition: transform 0.35s ease;
  padding: 0 4px;
}

.prog-card:hover .prog-toggle-icon,
.prog-card.open .prog-toggle-icon {
  transform: rotate(90deg);
  color: var(--primary);
}

.prog-hint {
  font-size: 0.72rem;
  color: var(--text-light);
  padding: 0 20px 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: color 0.3s ease;
}

.prog-card:hover .prog-hint,
.prog-card.open .prog-hint { color: var(--primary); }

.prog-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4,0,0.2,1), padding 0.3s ease;
  border-top: 1px solid transparent;
  padding: 0 20px;
}

.prog-card:hover .prog-body,
.prog-card.open .prog-body {
  max-height: 520px;
  padding: 16px 20px 22px;
  border-top-color: rgba(230,0,35,0.10);
}

.prog-body p {
  font-size: 0.87rem;
  color: var(--text-mid);
  text-align: justify;
  line-height: 1.78;
}

.programmes-cta { text-align: center; margin-top: 8px; }

.gallery-cta { text-align: center; margin-top: 8px; }

.gallery-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 38px;
}

.gallery-tab {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.12);
  color: var(--text-light);
  padding: 8px 24px;
  border-radius: 30px;
  font-size: 0.84rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  transition: var(--transition);
}

.gallery-tab:hover, .gallery-tab.active {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.gallery-panel { display: none; }
.gallery-panel.active { display: block; }

.gallery-images {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 20px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.gallery-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: zoom-in;
}

.gallery-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.gallery-img-wrap:hover img { transform: scale(1.07); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(230,0,35,0);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.35s ease;
}

.gallery-img-wrap:hover .gallery-overlay { background: rgba(230,0,35,0.22); }

.gallery-overlay i {
  color: var(--white);
  font-size: 1.8rem;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.gallery-img-wrap:hover .gallery-overlay i {
  opacity: 1;
  transform: scale(1);
}

/* VIDEOS */
.gallery-videos {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.video-card {
  background: var(--dark-3);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.05);
  transition: var(--transition);
}

.video-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 28px var(--primary-glow);
}

.video-card video {
  width: 100%;
  display: block;
  background: var(--dark);
  max-height: 280px;
  cursor: pointer;
  object-fit: cover;
}

.video-card video:hover {
  opacity: 0.9;
  filter: brightness(0.95);
}

.video-label {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.87rem;
}

.video-label i { color: var(--primary); font-size: 1rem; }

.galerie-fixed-column {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 28px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.galerie-item {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(255,255,255,0.05);
}

.galerie-item:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-red);
}

.event-header {
  background: var(--dark-3);
  padding: 14px 18px;
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 2px solid var(--primary);
}

.event-header i { color: var(--primary); }

.galerie-item a { display: block; overflow: hidden; }

.galerie-item a img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.galerie-item:hover a img { transform: scale(1.05); }

.description { padding: 18px; }

.description p {
  color: var(--text-light);
  font-size: 0.87rem;
  margin-bottom: 8px;
  text-align: left;
}

.description .names {
  font-weight: 600;
  color: var(--white);
}

.fa-medal.gold, .fa-award.gold { color: #FFD700; }
.fa-medal.silver { color: #C0C0C0; }

.cta-container {
  grid-column: 1 / -1;
  text-align: center;
  padding: 20px 0;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.shop-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.shop-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-red);
}

.shop-image {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

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

.shop-card:hover .shop-image img { transform: scale(1.06); }

.price-tag {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--primary);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 4px;
}

.shop-info { padding: 16px; }
.shop-info h3 { font-size: 1rem; margin-bottom: 6px; color: var(--text); }
.shop-info p  { font-size: 0.84rem; color: var(--text-mid); text-align: left; margin-bottom: 10px; }

.category {
  display: inline-block;
  font-size: 0.72rem;
  background: var(--primary-light);
  color: var(--primary);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
  border: 1px solid rgba(230,0,35,0.2);
}

.shop-notice {
  text-align: center;
  margin: 30px auto 0;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  max-width: 600px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--primary);
}

.shop-notice p {
  text-align: center;
  color: var(--text-mid);
  font-size: 0.88rem;
}

.shop-notice i { color: var(--primary); }

.contact-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.contact-inner p.intro {
  color: var(--text-light);
  text-align: center;
  margin-bottom: 36px;
  font-size: 0.95rem;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 28px;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 12px 20px;
  border-radius: 6px;
  color: var(--text-light);
  font-size: 0.88rem;
  transition: var(--transition);
}

.contact-detail-item:hover {
  border-color: var(--primary);
  color: var(--white);
}

.contact-detail-item i { color: var(--primary); }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  border-left: 4px solid var(--primary);
  transition: box-shadow 0.3s ease;
}

.faq-item:hover { box-shadow: var(--shadow-red); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  transition: background 0.25s ease;
  user-select: none;
  gap: 12px;
}

.faq-question:hover { background: var(--primary-light); }

.faq-question h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--text);
  font-weight: 700;
}

.faq-question h3 i { color: var(--primary); flex-shrink: 0; }

.faq-chevron {
  color: var(--text-light);
  transition: transform 0.35s ease;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); color: var(--primary); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.55s ease;
}

.faq-item.open .faq-answer { max-height: 3000px; }

.faq-answer-inner {
  padding: 0 24px 24px;
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.85;
  border-top: 1px solid rgba(230,0,35,0.1);
  padding-top: 18px;
}

.faq-answer-inner p { margin-bottom: 12px; text-align: justify; }
.faq-answer-inner strong { color: var(--text); }

.palmares-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.palmares-gallery img {
  border-radius: 6px;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.palmares-gallery img:hover { transform: scale(1.04); }

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

.btn-flottant {
  position: fixed;
  bottom: 30px;
  right: 28px;
  z-index: 997;
  background: var(--primary);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 22px var(--primary-glow);
  transition: var(--transition);
}

.btn-flottant:hover {
  background: var(--dark-2);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
}

.icon-tkd { width: 18px; height: 18px; }

footer {
  background: var(--dark);
  color: var(--white);
  padding: 60px 5% 30px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  max-width: var(--max-w);
  margin: 0 auto 40px;
}

@media (max-width: 680px) {
  .footer-inner { grid-template-columns: 1fr; }
}

.footer-section h3 {
  color: var(--primary);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.footer-section p {
  color: var(--text-light);
  font-size: 0.84rem;
  margin-bottom: 8px;
  text-align: left;
  line-height: 1.6;
}

.footer-section a {
  color: var(--text-light);
  font-size: 0.84rem;
  display: block;
  margin-bottom: 8px;
  transition: color 0.25s ease;
}

.footer-section a:hover { color: var(--primary); }

.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.footer-socials a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  font-size: 0.9rem;
  transition: var(--transition);
  margin-bottom: 0;
}

.footer-socials a:hover {
  background: var(--primary);
  color: var(--white);
}

.footer-hr {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  max-width: var(--max-w);
  margin: 0 auto 24px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  max-width: var(--max-w);
  margin: 0 auto;
}

.footer-bottom p {
  color: var(--text-light);
  font-size: 0.78rem;
  text-align: left;
}

@media (max-width: 768px) {
  section { padding: 68px 5%; }
  .programmes-grid { grid-template-columns: 1fr; }
  .gallery-images   { grid-template-columns: 1fr; }
  .gallery-videos   { grid-template-columns: 1fr; }
  .schedule         { grid-template-columns: 1fr 1fr; }
  .cards            { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .schedule { grid-template-columns: 1fr; }
  .cards    { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; }
  .filter-btn { font-size: 0.76rem; padding: 6px 12px; }
}