/* =============================================
   RG LIFE — Design System
   Police : Syne (titres) + DM Sans (corps)
   Thème : Dark premium avec accent jaune-or
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ---- VARIABLES ---- */
:root {
  --bg:        #080808;
  --bg2:       #111111;
  --bg3:       #1a1a1a;
  --surface:   #161616;
  --border:    rgba(255,255,255,0.07);
  --gold:      #F5CC27;
  --gold-dim:  rgba(245,204,39,0.18);
  --gold-glow: rgba(245,204,39,0.35);
  --text:      #f0f0f0;
  --text-dim:  #888;
  --text-muted:#555;
  --radius:    16px;
  --radius-lg: 28px;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow:    0 8px 40px rgba(0,0,0,0.6);
  --shadow-gold: 0 0 30px rgba(245,204,39,0.2);
}

/* ---- RESET ---- */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width:100%; display:block; }
a { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; font-family:inherit; border:none; background:none; }

/* =============================================
   HEADER
   ============================================= */
.header {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 500;
  padding: 0;
  background: rgba(8,8,8,0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--border);
  transition: background var(--transition), box-shadow var(--transition);
}

.header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity var(--transition);
}
.logo:hover { opacity:0.8; }
.logo-dot {
  width: 8px; height: 8px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform:scale(1); opacity:1; }
  50%      { transform:scale(1.6); opacity:0.5; }
}

/* Nav desktop */
.nav-desktop { display:none; }

.nav-desktop ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.nav-desktop a {
  font-family: var(--font-head);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-dim);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  transition: color var(--transition), background var(--transition);
}
.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--gold);
  background: var(--gold-dim);
}

/* Scrolled */
.header.scrolled {
  background: rgba(8,8,8,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border), 0 4px 30px rgba(0,0,0,0.5);
}

/* Burger */
.burger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  background: var(--surface);
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: border-color var(--transition);
}
.burger-btn span {
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.burger-btn:hover { border-color: var(--gold); }
.burger-btn:hover span { background: var(--gold); }

/* Sidebar mobile */
.sidebar {
  position: fixed;
  inset: 0;
  background: rgba(8,8,8,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77,0,0.175,1);
}
.sidebar.active { transform: translateX(0); }

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
}

.close-btn {
  width: 42px; height: 42px;
  display: flex; align-items:center; justify-content:center;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.4rem;
  line-height: 1;
  transition: all var(--transition);
}
.close-btn:hover { background:var(--gold); color:#000; border-color:var(--gold); }

.nav-mobile ul { display:flex; flex-direction:column; gap:0.5rem; }
.nav-mobile a {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--text-muted);
  padding: 0.6rem 0;
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), padding-left var(--transition);
}
.nav-mobile a:hover { color: var(--gold); padding-left: 1rem; }

.sidebar-socials {
  margin-top: auto;
  display: flex;
  gap: 1rem;
}
.sidebar-socials a {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  color: var(--text-dim);
  font-size: 1rem;
  transition: all var(--transition);
}
.sidebar-socials a:hover { background:var(--gold-dim); border-color:var(--gold); color:var(--gold); }




/* =============================================
   HERO (index uniquement)
   ============================================= */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-slides {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  transition: none;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.08) translateZ(0);
  filter: blur(3px);
  transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              filter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: opacity, transform, filter;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1) translateZ(0);
  filter: blur(0);
  animation: none;
}

/* Animation pour l'entrée initiale */
.hero-slide.active:first-child {
  animation: heroEnter 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes heroEnter {
  0% {
    opacity: 0;
    transform: scale(1.12) translateZ(0);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8,8,8,0.3) 0%,
    rgba(8,8,8,0.15) 40%,
    rgba(8,8,8,0.7) 80%,
    rgba(8,8,8,1) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 1.5rem;
  animation: fadeUp 1s ease 0.3s both;
}
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}

.hero-eyebrow {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content:'';
  height: 1px;
  width: 40px;
  background: var(--gold);
  opacity: 0.5;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(3rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 60px rgba(0,0,0,0.5);
}
.hero h1 span { color: var(--gold); }

.hero-sub {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.55);
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  margin-top: 2.5rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: #000;
  border: 2px solid var(--gold);
  box-shadow: var(--shadow-gold);
}
.btn-primary:hover {
  background: #fff;
  border-color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-head);
  animation: fadeIn 1s ease 1.2s both;
}
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(245,204,39,0.8), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Indicators */
.hero-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 0.75rem;
  animation: fadeIn 1s ease 0.8s both;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.35s ease;
}

.hero-dot:hover {
  background: rgba(245,204,39,0.4);
  border-color: rgba(245,204,39,0.5);
}

.hero-dot.active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(245,204,39,0.5);
}

/* =============================================
   LAYOUT COMMUN
   ============================================= */
.section {
  padding: 5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}
.section-full {
  padding: 5rem 1.5rem;
}

.section-label {
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.section-title em {
  font-style: normal;
  color: var(--gold);
}
.section-subtitle {
  color: var(--text-dim);
  font-size: 1rem;
  margin-top: 0.75rem;
  max-width: 500px;
}

/* Divider */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border);
}

/* =============================================
   CATEGORIES (index)
   ============================================= */
.categories-section {
  padding: 5rem 1.5rem 6rem;
  max-width: 1280px;
  margin: 0 auto;
}

.cat-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: block;
}

.js .cat-card {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.55s ease, transform 0.55s ease, border-color var(--transition), box-shadow var(--transition);
}

.js .cat-card.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger explicite pour 8 cartes (évite que 7-8 repartent avec 1-2) */
.js .cat-grid .cat-card { transition-delay: 0s !important; }
.js .cat-grid .cat-card:nth-child(1) { transition-delay: 0.06s !important; }
.js .cat-grid .cat-card:nth-child(2) { transition-delay: 0.12s !important; }
.js .cat-grid .cat-card:nth-child(3) { transition-delay: 0.18s !important; }
.js .cat-grid .cat-card:nth-child(4) { transition-delay: 0.24s !important; }
.js .cat-grid .cat-card:nth-child(5) { transition-delay: 0.30s !important; }
.js .cat-grid .cat-card:nth-child(6) { transition-delay: 0.36s !important; }
.js .cat-grid .cat-card:nth-child(7) { transition-delay: 0.42s !important; }
.js .cat-grid .cat-card:nth-child(8) { transition-delay: 0.48s !important; }

.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--gold-dim) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition);
}
.cat-card:hover { 
  transform: translateY(-4px);
  border-color: rgba(245,204,39,0.3);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), var(--shadow-gold);
}
.cat-card:hover::before { opacity: 1; }

.cat-icon {
  font-size: 2rem;
  margin-bottom: 1.25rem;
  display: block;
  transition: transform var(--transition);
}
.cat-card:hover .cat-icon { transform: scale(1.15) rotate(-5deg); }

.cat-card h3 {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 0.5rem;
  color: var(--text);
}
.cat-card p {
  font-size: 0.88rem;
  color: var(--text-dim);
  line-height: 1.5;
}
.cat-arrow {
  position: absolute;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--gold-dim);
  border: 1px solid rgba(245,204,39,0.25);
  display: flex; align-items:center; justify-content:center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all var(--transition);
}
.cat-card:hover .cat-arrow {
  background: var(--gold);
  color: #000;
  transform: translate(3px,-3px);
}

/* =============================================
   STATS STRIP (index)
   ============================================= */
.stats-strip {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 1.5rem;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.04em;
  line-height: 1;
}
.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 0.3rem;
}

/* =============================================
   TEAM PAGE
   ============================================= */
.page-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
  background: linear-gradient(to bottom, var(--bg2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.members-grid {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  padding: 5rem 0;
}

.member-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 3rem;
  align-items: center;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .member-card {
  opacity: 0;
  transform: translateY(40px);
}
.member-card.visible { opacity:1; transform:none; }
.member-card.reverse { direction: rtl; }
.member-card.reverse > * { direction: ltr; }

.member-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.member-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease, filter 0.5s ease;
  filter: grayscale(20%);
}
.member-card:hover .member-img-wrap img {
  transform: scale(1.04);
  filter: grayscale(0%);
}
.member-glow {
  position: absolute;
  inset: -20px;
  border-radius: inherit;
  z-index: -1;
  opacity: 0.5;
  filter: blur(30px);
  transition: opacity 0.5s ease;
}
.member-card:hover .member-glow { opacity: 1; }

.member-body {
  padding: 2rem 0;
}
.member-role {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-dim);
  border: 1px solid rgba(245,204,39,0.2);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-bottom: 1rem;
}
.member-name {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.75rem;
}
.member-discord {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: #7289da;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  padding: 0.4rem 0.9rem;
  background: rgba(114,137,218,0.1);
  border-radius: 999px;
  border: 1px solid rgba(114,137,218,0.2);
}
.member-quote {
  font-style: italic;
  color: var(--text-dim);
  font-size: 1rem;
  line-height: 1.6;
  padding-left: 1.25rem;
  border-left: 3px solid var(--gold);
}

/* =============================================
   INFO PAGES (guide, règlement, etc.)
   ============================================= */
.info-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 920px;
  margin: 0 auto;
}

.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  box-shadow: var(--shadow);
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(212, 175, 55, 0.45);
  box-shadow: 0 18px 34px rgba(0, 0, 0, .35);
}

.info-card h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  margin-bottom: 0.9rem;
  color: var(--gold);
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  transition: color .2s ease, letter-spacing .2s ease;
}

.info-card h2:hover {
  color: var(--text);
  letter-spacing: .01em;
}

.info-card.is-collapsible h2::after {
  content: '+';
  width: 1.5rem;
  height: 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 1rem;
  line-height: 1;
  transition: transform .25s ease, background .25s ease, border-color .25s ease;
}

.info-card.is-collapsible.is-open h2::after {
  content: '−';
  transform: rotate(180deg);
  background: rgba(212, 175, 55, .08);
  border-color: rgba(212, 175, 55, .45);
}

.info-card ul {
  list-style: disc;
  padding-left: 1.15rem;
  color: var(--text-dim);
  display: grid;
  gap: 0.6rem;
}

.js .info-card.is-collapsible ul {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  margin-top: 0;
  transition: max-height .38s ease, opacity .24s ease, margin-top .24s ease;
}

.js .info-card.is-collapsible.is-open ul {
  opacity: 1;
  margin-top: .5rem;
}

.info-card h2:focus-visible {
  outline: 2px solid rgba(212, 175, 55, .65);
  outline-offset: 6px;
  border-radius: 8px;
}

.js .info-card {
  opacity: 0;
  transform: translateY(14px);
}

.js .info-card.visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}

.info-card a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.info-cta {
  padding-top: 0;
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}
.footer-brand .logo { font-size: 1.3rem; margin-bottom: 0.75rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1.25rem;
}
.footer-col ul { display:flex; flex-direction:column; gap:0.6rem; }
.footer-col a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  max-width: 1280px;
  margin: 3rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items:center; justify-content:center;
  color: var(--text-muted);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--gold-dim);
  border-color: var(--gold);
  color: var(--gold);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (min-width: 768px) {
  .nav-desktop { display: block; }
  .burger-btn  { display: none; }
}

@media (max-width: 900px) {
  .member-card {
    grid-template-columns: 1fr;
  }
  .member-card.reverse { direction: ltr; }
  .member-img-wrap { max-width: 280px; margin: 0 auto; }
  .member-body { text-align: center; }
  .member-quote { border-left: none; border-top: 3px solid var(--gold); padding: 1rem 0 0; }
  .member-discord { justify-content: center; }
  .members-grid { gap: 3.5rem; }
}

@media (max-width: 768px) {
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .footer-brand p { max-width: 100%; }
  .stats-inner { gap: 2rem; }
  .hero h1 { letter-spacing: -0.02em; }
  .info-layout { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .cat-grid { grid-template-columns: 1fr; }
  .hero-cta { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }
}
