:root {
  --black: #0a0a0a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --red: #c0392b;
  --red-hot: #e74c3c;
  --gold: #d4a017;
  --white: #f5f0e8;
  --grey: #888;
  --light-grey: #ccc;
  --font-display: "Barlow Condensed", sans-serif;
  --font-body: "Barlow", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
}

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

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4rem;
  height: 68px;
  background: rgba(10, 10, 10, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(192, 57, 43, 0.2);
  transition: background 0.3s;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.nav-logo-img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--dark2);
  padding: 2px;
  filter: brightness(1.15) contrast(1.08);
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  text-decoration: none;
}

.nav-logo span {
  color: var(--red);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--red);
}

.nav-cta {
  background: var(--red);
  color: var(--white) !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--red-hot) !important;
  color: var(--white) !important;
}

.nav-inscriptions {
  color: var(--gold) !important;
  border-bottom: 1px solid rgba(212,160,23,0.4);
  transition: color 0.2s, border-color 0.2s !important;
}

.nav-inscriptions:hover {
  color: #f0c040 !important;
  border-color: #f0c040 !important;
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  padding: 110px 4rem 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.72) 38%, rgba(0, 0, 0, 0.36) 68%, rgba(0, 0, 0, 0.18) 100%),
    radial-gradient(ellipse 80% 60% at 72% 50%, rgba(192, 57, 43, 0.16) 0%, transparent 72%),
    url("hero-armwrestling.png") center right / cover no-repeat,
    linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(192, 57, 43, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(192, 57, 43, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 760px) 220px;
  gap: 3.5rem;
  align-items: center;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.hero-side {
  display: flex;
  justify-content: flex-end;
  align-self: center;
}

.hero-eyebrow {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.hero-eyebrow::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--red);
}

h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 1.6rem;
}

h1 em {
  font-style: normal;
  color: var(--red);
  display: block;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(245, 240, 232, 0.7);
  max-width: 580px;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-primary {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: var(--red);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
  background: var(--red-hot);
  transform: translateY(-1px);
}

.btn-outline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  color: var(--white);
  padding: 0.9rem 2rem;
  border: 1px solid rgba(245, 240, 232, 0.65);
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(192,57,43,0.06);
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-end;
  background: rgba(10,10,10,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  border-right: 3px solid var(--red);
  padding: 1.5rem 1.8rem;
  backdrop-filter: blur(8px);
}

.stat {
  text-align: right;
  padding: 1.1rem 0;
  width: 100%;
}

.stat + .stat {
  border-top: 1px solid rgba(255,255,255,0.07);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 3.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  text-shadow: 0 0 40px rgba(192,57,43,0.25);
}

.stat-number span {
  color: var(--red);
}

.stat-label {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  margin-top: 0.2rem;
}

.hero-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.55);
  z-index: 2;
  cursor: pointer;
  transition: color 0.2s;
}

.hero-scroll:hover {
  color: var(--white);
}

.scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, var(--red), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% {
    opacity: 0.5;
    transform: scaleY(1) translateY(0);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.15) translateY(4px);
  }
}

/* ===== GLOBAL SECTIONS ===== */
section {
  padding: 6rem 4rem;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.section-tag::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--red);
}

h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
}

h2 span {
  color: var(--red);
}

.section-intro {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.65);
  max-width: 620px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.divider {
  height: 1px;
  background: linear-gradient(to right, var(--red), transparent);
  margin: 0 4rem;
  opacity: 0.3;
}

/* ===== ABOUT ===== */
#about {
  background: var(--dark);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.about-visual {
  position: relative;
}

.about-card {
  background: var(--dark2);
  border: 1px solid rgba(192, 57, 43, 0.2);
  padding: 2rem;
  position: relative;
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--red);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.about-card p {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.6);
}

.about-card .tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  margin-bottom: 0.8rem;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.about-text-top,
.about-text-bottom {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-text p {
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.72);
  margin-bottom: 0;
  line-height: 1.75;
}

.federation-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border: 1px solid rgba(212, 160, 23, 0.4);
  padding: 0.6rem 1.2rem;
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

/* ===== TRAINING ===== */
#entrainement {
  background: var(--black);
}

.training-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.training-card {
  background: var(--dark);
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.training-card:hover {
  background: var(--dark2);
}

.training-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}

.training-card:hover::after {
  transform: scaleX(1);
}

.card-club-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.card-location {
  font-size: 0.85rem;
  color: var(--grey);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.card-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.card-detail-icon {
  color: var(--red);
  font-size: 1rem;
  margin-top: 0.1rem;
}

.card-detail-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
}

.card-detail-value {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--white);
}

.card-focus {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.7;
}

.free-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: var(--red);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  margin-top: 1.2rem;
  border-radius: 1px;
}

/* ===== EQUIPMENT ===== */
#equipement {
  background: var(--dark);
}

.equipment-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.equip-item {
  background: var(--dark2);
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.equip-icon {
  width: 36px;
  height: 36px;
  background: rgba(192, 57, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.equip-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--red);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
}

.equip-name {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.2rem;
}

.equip-desc {
  font-size: 0.8rem;
  color: var(--grey);
}

/* ===== LICENCE ===== */
#licence {
  background: var(--black);
}

.licence-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.price-block {
  background: var(--dark);
  padding: 2.5rem;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.price-amount {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
}

.price-amount sup {
  font-size: 2rem;
  vertical-align: top;
  margin-top: 0.8rem;
  display: inline-block;
}

.price-period {
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--grey);
  margin-bottom: 2rem;
}

.price-includes {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.price-includes li {
  font-size: 0.9rem;
  color: rgba(245, 240, 232, 0.75);
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.price-includes li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--red);
  flex-shrink: 0;
}

.licence-info p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.highlight-box {
  background: rgba(192, 57, 43, 0.08);
  border-left: 3px solid var(--red);
  padding: 1.2rem 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
}

/* ===== COMPETITION ===== */
#competition {
  background: var(--dark);
}

.competition-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.competition-numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 2rem;
  background: rgba(192,57,43,.2);
  border: 1px solid rgba(192,57,43,.25);
}

.comp-number {
  background: rgba(10,5,5,.92);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.2s;
}

.comp-number:hover {
  background: rgba(20,8,8,.98);
}

.comp-num-val {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  color: var(--white);
  text-shadow: 0 0 30px rgba(192,57,43,.2);
}

.comp-num-val span {
  color: var(--red);
}

.comp-num-label {
  font-size: 0.72rem;
  color: rgba(245,240,232,.45);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-family: var(--font-display);
  font-weight: 700;
  margin-top: 0.5rem;
}

.competition-text p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.65);
  margin-bottom: 1.2rem;
  line-height: 1.85;
}

.event-card {
  background: var(--black);
  border: 1px solid rgba(245, 240, 232, 0.06);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.event-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.3rem;
}

.event-detail {
  font-size: 0.82rem;
  color: var(--grey);
}

/* ===== LOCALISATION ===== */
#localisation {
  background: var(--dark);
}

.location-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.location-panel {
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.location-panel-header {
  padding: 1.6rem 1.6rem 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.location-panel-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.4rem;
}

.location-panel-subtitle {
  font-size: 0.9rem;
  color: var(--grey);
}

.location-address {
  padding: 1.3rem 1.6rem 0.3rem;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.82);
  line-height: 1.8;
}

.location-address strong {
  color: var(--white);
  font-weight: 600;
}

.map-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  padding: 1.4rem 1.6rem 1.6rem;
}

.map-card {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem;
}

.map-card-label {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.65rem;
}

.map-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.45rem;
}

.map-card p {
  font-size: 0.86rem;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.7;
  margin-bottom: 0.9rem;
  min-height: 72px;
}

.map-link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.map-link-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.35);
  color: var(--white);
  text-decoration: none;
  padding: 0.7rem 1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  flex: 1 1 180px;
}

.map-link-btn:hover {
  background: rgba(192, 57, 43, 0.2);
  border-color: var(--red);
  color: var(--red-hot);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--black);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contact-card {
  background: var(--dark);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s;
}

.contact-card:hover {
  border-color: rgba(192, 57, 43, 0.3);
}

.contact-club {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--grey);
  margin-bottom: 0.5rem;
}

.contact-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.contact-role {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}

.contact-phone {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-phone:hover {
  color: var(--red);
}

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 3rem;
  flex-wrap: wrap;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.7rem 1.2rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--light-grey);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.social-link:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2.5rem 4rem;
}

footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
}

.footer-logo span {
  color: var(--red);
}

footer p {
  font-size: 0.78rem;
  color: var(--grey);
  letter-spacing: 0.03em;
}

.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SECTION ALIGNMENT ===== */
.about-grid,
.training-grid,
.equipment-list,
.licence-layout,
.competition-layout,
.contact-grid,
.proof-grid,
.faq-grid,
.seo-pages-grid,
.start-grid {
  margin-left: auto;
  margin-right: auto;
}

.proof-grid,
.faq-grid,
.seo-pages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1100px;
}

.proof-card,
.faq-item,
.seo-page-card,
.start-card {
  background: var(--dark);
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.proof-card h3,
.faq-item h3,
.seo-page-card h3,
.start-card h3,
.section-subtitle {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.7rem;
}

.proof-card p,
.faq-item p,
.seo-page-card p,
.start-card p {
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.68);
  line-height: 1.8;
}

.start-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  max-width: 1100px;
}

.start-step {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.7rem;
}

.competition-photo-wrap {
  margin-top: 1rem;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.competition-photo-wrap img {
  display: block;
  width: 100%;
  height: auto;
}

.photo-caption {
  padding: 1rem 1.2rem;
  font-size: 0.88rem;
  color: rgba(245, 240, 232, 0.62);
  line-height: 1.7;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.cta-strip {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.5rem;
  background: rgba(192,57,43,0.08);
  border: 1px solid rgba(192,57,43,0.22);
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}

.cta-strip p {
  color: var(--white);
  font-size: 0.95rem;
  margin: 0;
}

.hero-highlight {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.45rem 0.85rem;
  border: 1px solid rgba(212, 160, 23, 0.35);
  background: rgba(212, 160, 23, 0.08);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.quick-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(100%, 980px);
  margin-top: 0.5rem;
  background: rgba(192,57,43,0.15);
  border: 1px solid rgba(192,57,43,0.25);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}

.quick-info-item {
  background: rgba(20, 10, 10, 0.92);
  padding: 1.15rem 1.2rem;
  min-width: 0;
  transition: background 0.2s;
}

.quick-info-item:hover {
  background: rgba(30,12,12,0.98);
}

.quick-info-label {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 0.35rem;
}

.quick-info-value {
  font-size: 0.92rem;
  color: rgba(245,240,232,0.9);
  font-weight: 500;
  line-height: 1.6;
}

.location-badge-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--light-grey);
}

.location-badge.strassen {
  color: var(--red);
  border-color: rgba(192, 57, 43, 0.35);
  background: rgba(192, 57, 43, 0.08);
}

.location-badge.munsbach {
  color: var(--gold);
  border-color: rgba(212, 160, 23, 0.35);
  background: rgba(212, 160, 23, 0.08);
}

.training-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.training-link {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 0.18rem;
}

.training-link:hover {
  color: var(--red);
  border-color: var(--red);
}

.whatsapp-float {
  position: fixed;
  right: 1.2rem;
  bottom: 1.2rem;
  z-index: 120;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.9rem 1rem;
  background: #111;
  border: 1px solid rgba(37, 211, 102, 0.35);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  color: #e8fff0;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.whatsapp-float:hover {
  border-color: rgba(37, 211, 102, 0.65);
}

.seo-page-card a,
.proof-card a {
  display: inline-block;
  margin-top: 1rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--red);
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  background: rgba(255,255,255,.05);
}
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  max-width: 1000px;
  margin: 0 auto;
}

.blog-card {
  background: var(--black);
  padding: 2.5rem;
  text-decoration: none;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: border-color 0.3s;
}

.blog-card:hover {
  border-color: rgba(192, 57, 43, 0.3);
}

.blog-card.gold:hover {
  border-color: rgba(212, 160, 23, 0.3);
}

/* ===== blocs centrés ===== */
.about-grid,
.training-grid,
.equipment-list,
.licence-layout,
.competition-layout,
.location-section-grid,
.contact-grid,
.proof-grid,
.faq-grid,
.seo-pages-grid,
.start-grid,
.blog-grid,
.social-row {
  margin-left: auto;
  margin-right: auto;
}

.training-grid,
.competition-layout,
.proof-grid,
.faq-grid,
.seo-pages-grid,
.start-grid {
  max-width: 1100px;
}

.equipment-list,
.contact-grid,
.blog-grid {
  max-width: 1000px;
}

.licence-layout {
  max-width: 1100px;
}

.location-section-grid,
.social-row {
  max-width: 1160px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  nav {
    padding: 0 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-burger {
    display: flex;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--dark);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(192, 57, 43, 0.2);
  }

  section {
    padding: 4rem 1.5rem;
  }

  .divider {
    margin: 0 1.5rem;
  }

  #hero {
    padding: 92px 1.5rem 4rem;
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .hero-side {
    justify-content: flex-start;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    width: 100%;
  }

  .stat {
    text-align: left;
  }

  .about-grid,
  .training-grid,
  .licence-layout,
  .competition-layout,
  .contact-grid,
  .location-section-grid,
  .map-cards,
  .proof-grid,
  .faq-grid,
  .seo-pages-grid,
  .start-grid,
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .map-card p {
    min-height: auto;
  }

  footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2rem 1.5rem;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 1rem;
  }

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

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    text-align: center;
  }

  .whatsapp-float {
    right: 0.9rem;
    bottom: 0.9rem;
    padding: 0.8rem 0.9rem;
    font-size: 0.72rem;
  }
}

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

  .competition-numbers {
    grid-template-columns: 1fr 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }
}
