:root {
  --bg: #0b0b0d;
  --bg-soft: #151519;
  --text: #f7f4ef;
  --muted: #c7c1b8;
  --dark-text: #18171a;
  --orange: #ff7a00;
  --orange-dark: #d75d00;
  --white: #ffffff;
  --line: rgba(255,255,255,.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, .28);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark-text);
  background: #faf7f2;
  line-height: 1.6;
}

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 11, 13, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: .02em; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), #ffb000);
  color: #111;
  font-family: "Bebas Neue", sans-serif;
  font-size: 25px;
}
.brand-text { text-transform: uppercase; font-size: 14px; }

.nav-links { display: flex; align-items: center; gap: 26px; font-size: 14px; font-weight: 700; }
.nav-links a { color: rgba(255,255,255,.86); transition: color .2s ease; }
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
}

.nav-toggle { display: none; }
.nav-toggle-label { display: none; }

.hero {
  position: relative;
  min-height: 780px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 22%, rgba(255,122,0,.42), transparent 34%),
    linear-gradient(110deg, #08080a 0%, #151515 55%, #2b1705 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.hero::after {
  content: "KICK BOXING";
  position: absolute;
  right: -80px;
  bottom: 40px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(82px, 15vw, 230px);
  line-height: .8;
  color: rgba(255,255,255,.055);
  letter-spacing: .04em;
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr .75fr;
  gap: 56px;
  align-items: center;
  padding: 90px 0;
}

.eyebrow, .section-kicker {
  color: var(--orange);
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .16em;
  margin: 0 0 14px;
}

h1, h2, h3 { margin: 0; line-height: 1.05; }
h1, h2 { font-family: "Bebas Neue", sans-serif; letter-spacing: .02em; }
h1 { font-size: clamp(58px, 8vw, 112px); max-width: 820px; }
h2 { font-size: clamp(42px, 5vw, 70px); }
h3 { font-size: 23px; }

.hero-subtitle {
  max-width: 690px;
  color: rgba(255,255,255,.78);
  font-size: 19px;
  margin: 28px 0 34px;
}

.hero-actions, .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--orange); color: #111; box-shadow: 0 14px 30px rgba(255, 122, 0, .28); }
.btn-primary:hover { background: #ff9a22; }
.btn-secondary { border: 1px solid rgba(255,255,255,.22); color: var(--white); }
.btn-secondary.dark { border-color: rgba(0,0,0,.18); color: var(--dark-text); }

.hero-badges { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-badges span {
  padding: 9px 13px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
  font-size: 13px;
  font-weight: 700;
}

.hero-card {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: var(--shadow);
  border-radius: var(--radius);
  padding: 30px;
  backdrop-filter: blur(20px);
}
.hero-card-top { display: flex; gap: 10px; align-items: center; margin-bottom: 18px; }
.status-dot { width: 12px; height: 12px; border-radius: 50%; background: #20e271; box-shadow: 0 0 0 8px rgba(32,226,113,.12); }
.hero-card p { color: rgba(255,255,255,.78); margin: 0 0 20px; }
.hero-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.hero-card li { padding: 13px 0; border-top: 1px solid rgba(255,255,255,.12); font-weight: 700; }

.section { padding: 100px 0; }
.section-dark { background: var(--bg); color: var(--white); }
.section-muted { background: #efe8de; }
.two-columns { display: grid; grid-template-columns: .9fr 1.1fr; gap: 70px; }
.align-center { align-items: center; }
.text-block { color: #585047; font-size: 17px; }
.text-block p:first-child { margin-top: 0; }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature-card {
  min-height: 260px;
  background: linear-gradient(180deg, rgba(255,255,255,.09), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 30px;
}
.card-number { color: var(--orange); font-family: "Bebas Neue", sans-serif; font-size: 46px; }
.feature-card h3 { margin: 18px 0 12px; }
.feature-card p { color: rgba(255,255,255,.7); margin: 0; }

.section-header { max-width: 720px; margin-bottom: 42px; }
.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-header p:last-child { color: #635b51; font-size: 17px; }

.program-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.program-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 18px 55px rgba(55, 38, 18, .09);
  border: 1px solid rgba(0,0,0,.06);
}
.program-card.highlighted { background: var(--bg); color: var(--white); transform: translateY(-12px); }
.program-card p { color: #62594f; margin-bottom: 0; }
.program-card.highlighted p { color: rgba(255,255,255,.72); }

.schedule-card {
  background: #111;
  color: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.schedule-row {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.schedule-row span { color: rgba(255,255,255,.62); }
.schedule-note { margin-top: 18px; color: var(--orange); font-weight: 800; }

.cta-section { background: linear-gradient(135deg, #ff7a00, #ffb000); padding: 72px 0; }
.cta-box { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-box .section-kicker { color: #211306; }
.cta-box p { max-width: 680px; color: #2d1b0a; font-weight: 600; }
.cta-box .btn-primary { background: #111; color: var(--white); box-shadow: none; }

.contact-grid { display: grid; grid-template-columns: 1fr .9fr; gap: 60px; align-items: start; }
.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 18px 55px rgba(55, 38, 18, .09);
  display: grid;
  gap: 16px;
}
.contact-card a { color: var(--orange-dark); font-weight: 800; }
.contact-card p { margin: 0; }
.small-text { color: #7a7168; font-size: 13px; }

.footer { background: #09090a; color: rgba(255,255,255,.68); padding: 30px 0; }
.footer-content { display: flex; justify-content: space-between; gap: 20px; font-size: 14px; }
.footer p { margin: 0; }
.footer a { color: var(--orange); font-weight: 700; }

@media (max-width: 900px) {
  .nav-toggle-label { display: block; cursor: pointer; width: 34px; height: 24px; position: relative; }
  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    position: absolute;
    width: 34px;
    height: 2px;
    background: #fff;
    border-radius: 10px;
    content: "";
    left: 0;
  }
  .nav-toggle-label span { top: 11px; }
  .nav-toggle-label span::before { top: -9px; }
  .nav-toggle-label span::after { top: 9px; }
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    background: #0b0b0d;
    padding: 24px;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle:checked ~ .nav-links { display: flex; }
  .hero { min-height: auto; }
  .hero-grid, .two-columns, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .cards-grid, .program-grid { grid-template-columns: 1fr; }
  .program-card.highlighted { transform: none; }
  .section { padding: 72px 0; }
  .cta-box { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .brand-text { display: none; }
  .hero-grid { padding: 64px 0; }
  h1 { font-size: 54px; }
  h2 { font-size: 42px; }
  .hero-subtitle { font-size: 16px; }
  .btn { width: 100%; }
  .schedule-row { flex-direction: column; gap: 4px; }
  .footer-content { flex-direction: column; }
}

/* Logo et pages informations */
.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.section-logo {
  width: 150px;
  margin-bottom: 18px;
}

.info-hero {
  background:
    radial-gradient(circle at 15% 15%, rgba(255,122,0,.26), transparent 34%),
    linear-gradient(135deg, #0b0b0d, #18181d 62%, #2a1400);
  color: var(--white);
  padding: 120px 0 80px;
}

.info-hero-content { max-width: 850px; }
.info-hero h1 { margin-bottom: 18px; }

.info-layout {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 28px;
  align-items: stretch;
}

.info-main-card,
.info-contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: 0 18px 55px rgba(55, 38, 18, .09);
  border: 1px solid rgba(0,0,0,.06);
}

.info-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 26px;
}

.info-list div {
  background: #111;
  color: var(--white);
  border-radius: 18px;
  padding: 18px;
}

.info-list strong {
  display: block;
  color: var(--orange);
  margin-bottom: 6px;
}

.info-list span { color: rgba(255,255,255,.82); }

.info-contact-card {
  background: #111;
  color: var(--white);
}

.info-contact-card img {
  width: 170px;
  margin-bottom: 20px;
}

.info-contact-card p { color: rgba(255,255,255,.74); }

.flyer-showcase {
  max-width: 850px;
  margin: 0 auto;
  background: #111;
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
}

.flyer-showcase img {
  border-radius: 18px;
  width: 100%;
}

/* Section coachs */
.coach-section {
  background: linear-gradient(135deg, #fffaf3, #f3eee7);
}

.coach-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}

.coach-photo-wrap {
  position: relative;
  border-radius: var(--radius);
  padding: 12px;
  background: linear-gradient(135deg, var(--orange), #111);
  box-shadow: var(--shadow);
}

.coach-photo-wrap::after {
  content: "BKB";
  position: absolute;
  right: 22px;
  bottom: 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 58px;
  line-height: 1;
  color: rgba(255,255,255,.22);
  letter-spacing: .04em;
}

.coach-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 20px;
}

.coach-content p {
  color: #5f564d;
  font-size: 17px;
}

.coach-content .btn { margin-top: 14px; }

@media (max-width: 900px) {
  .info-layout,
  .coach-grid {
    grid-template-columns: 1fr;
  }

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

  .brand-logo {
    width: 50px;
    height: 50px;
  }
}
