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

:root {
  --blue: #3399CC;
  --blue-dark: #1f7aad;
  --blue-dim: rgba(51,153,204,.15);
  --black: #0a0a0a;
  --dark: #101010;
  --dark2: #181818;
  --dark3: #222;
  --dark4: #2a2a2a;
  --white: #ffffff;
  --grey: #aaa;
  --grey2: #666;
  --border: #2e2e2e;
  --border-light: #3a3a3a;
  --text: #e0e0e0;
  --text-muted: #888;
  --font-display: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
  --font-body: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif;
}

body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif; background:var(--black); color:var(--text); line-height:1.65; font-size:15px; }
a { color:var(--blue); }

.container { width:100%; max-width:1200px; margin:0 auto; padding:0 40px; }

/* ── HEADER ── */
#header {
  background:var(--blue);
  border-bottom:3px solid var(--blue-dark);
  position:sticky; top:0; z-index:200;
}
.header-inner {
  display:flex; align-items:center;
  justify-content:space-between;
  height:64px; padding:0 40px; gap:20px;
}
.logo { display:flex; align-items:baseline; gap:10px; text-decoration:none; }
.logo-fmp {
  font-family:var(--font-display); font-size:26px;
  letter-spacing:3px; color:var(--black); font-weight:900;
}
.logo-full { font-size:11px; color:rgba(0,0,0,.6); letter-spacing:1px; text-transform:uppercase; }
.nav { display:flex; align-items:center; gap:4px; }
.nav-link {
  color:var(--black); text-decoration:none; font-size:12px; font-weight:700;
  letter-spacing:1px; text-transform:uppercase;
  padding:6px 12px; border:1px solid transparent; transition:.2s;
}
.nav-link:hover, .nav-link.active {
  background:rgba(0,0,0,.15); border-color:rgba(0,0,0,.2); color:var(--black);
}
.nav-r100 {
  background:var(--black) !important; color:var(--blue) !important;
  border-color:var(--black) !important;
}
.nav-r100:hover { background:var(--dark2) !important; }
.burger { display:none; background:none; border:none; color:var(--black); font-size:22px; cursor:pointer; }

/* ── HERO ── */
.hero {
  background:var(--dark); min-height:88vh;
  display:flex; align-items:center;
  position:relative; overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hero-media { position:absolute; inset:0; }
.hero-media video { width:100%; height:100%; object-fit:cover; opacity:.35; }
.hero-bg {
  position:absolute; inset:0;
  background:linear-gradient(135deg,rgba(10,10,10,.9) 0%,rgba(13,26,36,.7) 60%,rgba(10,10,10,.9) 100%);
}
/* hero-bg::after supprimé */
.hero-inner { position:relative; z-index:1; padding:80px 40px; }
.hero-badge {
  display:inline-block; font-size:10px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase; color:var(--blue);
  border:1px solid rgba(51,153,204,.35); padding:5px 14px; margin-bottom:28px;
}
h1 {
  font-family:var(--font-display); font-size:clamp(44px,7vw,90px);
  line-height:1; letter-spacing:2px; color:var(--white);
  margin-bottom:22px; font-weight:900;
}
h1 .blue { color:var(--blue); }
.hero-desc { font-size:16px; color:var(--grey); line-height:1.8; margin-bottom:36px; max-width:520px; }
.hero-desc a { color:var(--blue); text-decoration:none; }
.hero-btns { display:flex; gap:12px; flex-wrap:wrap; }
.hero-scroll {
  position:absolute; bottom:28px; left:50%;
  transform:translateX(-50%); color:var(--grey2); font-size:18px;
  animation:bounce 2s ease-in-out infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ── BOUTONS ── */
.btn {
  display:inline-block; padding:12px 28px; font-size:12px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase; text-decoration:none;
  transition:.2s; border:2px solid transparent;
}
.btn-blue { background:var(--blue); color:var(--black); border-color:var(--blue); }
.btn-blue:hover { background:var(--blue-dark); border-color:var(--blue-dark); color:var(--white); }
.btn-ghost { background:transparent; color:var(--white); border-color:var(--border-light); }
.btn-ghost:hover { border-color:var(--blue); color:var(--blue); }
.btn-outline { background:transparent; color:var(--blue); border-color:var(--blue); }
.btn-outline:hover { background:var(--blue); color:var(--black); }

/* ── SECTIONS ── */
.section { padding:72px 40px; }
.section-alt { background:var(--dark2); border-top:1px solid var(--border); border-bottom:1px solid var(--border); }
.section-label {
  font-size:10px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--blue); margin-bottom:10px;
}
.section-title {
  font-family:var(--font-display); font-size:clamp(26px,3.5vw,40px);
  letter-spacing:2px; margin-bottom:40px; color:var(--white); font-weight:900;
  position:relative; padding-bottom:14px;
}
.section-title::after {
  content:''; position:absolute; bottom:0; left:0;
  width:40px; height:3px; background:var(--blue);
}

/* ── PAGE HERO ── */
.page-hero {
  background:var(--dark); padding:80px 40px 52px;
  border-bottom:1px solid var(--border);
}
.page-label {
  display:block; font-size:10px; font-weight:700;
  letter-spacing:3px; text-transform:uppercase; color:var(--blue); margin-bottom:12px;
}
.page-title {
  font-family:var(--font-display); font-size:clamp(36px,5vw,64px);
  color:var(--white); letter-spacing:2px; font-weight:900;
}

/* ── ACCUEIL STATS ── */
.stats-bar {
  max-width:1200px; margin:0 auto;
  display:grid; grid-template-columns:repeat(4,1fr);
  border:1px solid var(--border);
}
.stat-item {
  padding:28px 40px; border-right:1px solid var(--border);
  text-align:center;
}
.stat-item:last-child { border-right:none; }
.stat-n {
  font-family:var(--font-display); font-size:36px; font-weight:900;
  color:var(--blue); line-height:1;
}
.stat-l { font-size:11px; letter-spacing:2px; text-transform:uppercase; color:var(--grey); margin-top:6px; }

/* ── SÉRIE AFFICHES ── */
.series-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:16px;
}
.serie-poster-card {
  display:block; text-decoration:none;
  position:relative; overflow:hidden;
  background:var(--dark2); border:1px solid var(--border);
  transition:transform .25s, box-shadow .25s;
}
.serie-poster-card:hover {
  transform:scale(1.03); box-shadow:0 16px 48px rgba(51,153,204,.25); z-index:2;
}
.serie-poster-card .img-wrap {
  aspect-ratio:400/560; background:var(--dark3); position:relative; overflow:hidden;
}
.serie-poster-card img {
  width:100%; height:100%; object-fit:cover; display:block;
}
.serie-poster-placeholder {
  width:100%; height:100%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--dark2),var(--dark4));
  font-family:var(--font-display); font-size:56px; font-weight:900; color:var(--blue);
}
.serie-poster-overlay {
  position:absolute; inset:0;
  background:linear-gradient(to top,rgba(0,0,0,.95) 0%,transparent 55%);
  display:flex; flex-direction:column; justify-content:flex-end;
  padding:18px 16px;
}
.serie-poster-overlay .badge-encours {
  display:inline-block; background:var(--blue); color:var(--black);
  font-size:9px; font-weight:700; letter-spacing:2px; padding:2px 8px;
  text-transform:uppercase; margin-bottom:6px; width:fit-content;
}
.serie-poster-overlay .titre {
  font-family:var(--font-display); font-size:20px; font-weight:900; color:var(--white);
}
.serie-poster-overlay .meta {
  font-size:11px; color:rgba(255,255,255,.6); margin-top:4px;
}

/* ── ONGLETS SAISONS (style R100) ── */
.saison-tabs {
  background:var(--dark2); border-bottom:1px solid var(--border);
  padding:0 40px;
}
.saison-tabs-inner { max-width:1200px; margin:0 auto; display:flex; gap:3px; }
.saison-tab {
  display:inline-flex; align-items:center; gap:6px;
  padding:10px 18px; font-size:11px; font-weight:700;
  letter-spacing:1.5px; text-transform:uppercase;
  color:var(--grey); text-decoration:none;
  border-bottom:3px solid transparent;
  transition:.2s; white-space:nowrap;
}
.saison-tab:hover { color:var(--white); }
.saison-tab.active { color:var(--white); border-bottom-color:var(--blue); }
.saison-tab .ep-count {
  font-size:9px; background:var(--dark3); padding:1px 6px;
  color:var(--grey2); letter-spacing:1px;
}
.saison-tab.active .ep-count { background:var(--blue); color:var(--black); }

/* ── GRILLE ÉPISODES (identique R100 emission.php) ── */
.ep-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
  max-width:1200px;
  margin:0 auto;
}
.ep-grid-5 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:4px;
  max-width:1200px;
  margin:0 auto;
}
.ep-card {
  display:block; text-decoration:none;
  background:var(--dark2); border:1px solid var(--dark3);
  transition:border-color .2s, transform .2s;
  position:relative;
}
.ep-card:hover { border-color:var(--blue); transform:translateY(-2px); }
.ep-card-thumb {
  aspect-ratio:16/9; overflow:hidden;
  background:var(--dark3); position:relative;
}
.ep-card-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition:transform .3s; }
.ep-card:hover .ep-card-thumb img { transform:scale(1.04); }
.ep-card-bientot {
  aspect-ratio:16/9; background:var(--dark3);
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:6px;
}
.ep-card-body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif; padding:10px 12px; }
.ep-card-label {
  font-size:9px; font-weight:700; letter-spacing:1px;
  color:var(--blue); text-transform:uppercase; margin-bottom:3px;
}
.ep-card-titre {
  font-size:13px; font-weight:700; color:var(--white); line-height:1.3;
}
.ep-card-date { font-size:11px; color:var(--grey2); margin-top:3px; }

/* ── PERSONNAGES ── */
.perso-grid {
  display:flex; flex-wrap:wrap; gap:12px;
}
.perso-card {
  background:var(--dark2); border:1px solid var(--border);
  border-top:2px solid var(--blue); overflow:hidden;
  position:relative; cursor:default;
  /* taille réelle de l'image 244×300 */
  width:244px;
}
.perso-card img {
  width:244px; height:300px; object-fit:cover; display:block;
}
.perso-card-placeholder {
  width:244px; height:300px;
  background:var(--dark3); display:flex; align-items:center;
  justify-content:center; font-family:var(--font-display);
  font-size:56px; font-weight:900; color:var(--blue);
}
.perso-card-body {
  font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif; padding:10px 12px; }
.perso-card-name { font-weight:700; font-size:14px; color:var(--white); }
.perso-card-role { font-size:11px; color:var(--grey); margin-top:2px; }
/* Survol - description */
.perso-card-hover {
  position:absolute; inset:0;
  background:rgba(0,0,0,.88);
  display:flex; flex-direction:column; justify-content:center;
  align-items:center; text-align:center; padding:20px;
  opacity:0; transition:opacity .25s;
}
.perso-card:hover .perso-card-hover { opacity:1; }
.perso-card-hover-name {
  font-family:var(--font-display); font-size:18px; font-weight:900;
  color:var(--blue); margin-bottom:8px;
}
.perso-card-hover-role {
  font-size:11px; font-weight:700; letter-spacing:1px;
  text-transform:uppercase; color:var(--white); margin-bottom:10px;
}
.perso-card-hover-desc { font-size:13px; color:var(--grey); line-height:1.6; }

/* ── PLAYER ── */
.player-section { padding:0 40px 48px; }
.player-breadcrumb { padding:90px 40px 0; font-size:12px; color:var(--grey); }
.player-header { padding:16px 40px 20px; }
.player-wrap { max-width:960px; margin:0 auto; }
.player-video { aspect-ratio:16/9; background:#000; }
.player-video iframe { width:100%; height:100%; border:none; }
.player-bientot {
  aspect-ratio:16/9; background:var(--dark2); border:1px solid var(--border);
  display:flex; flex-direction:column; align-items:center;
  justify-content:center; gap:14px; color:var(--grey);
}
.player-links { display:flex; gap:10px; margin-top:12px; flex-wrap:wrap; }
.player-link-btn {
  display:inline-flex; align-items:center; gap:7px;
  padding:8px 16px; background:var(--dark2); border:1px solid var(--border);
  font-size:12px; font-weight:700; color:var(--grey);
  text-decoration:none; transition:.2s;
}
.player-link-btn:hover { border-color:var(--blue); color:var(--white); }
.player-synopsis {
  max-width:960px; background:var(--dark2);
  border:1px solid var(--border); border-left:3px solid var(--blue);
  padding:18px 22px; margin-top:18px;
}
.player-nav { display:flex; gap:10px; justify-content:space-between; max-width:960px; margin:14px auto 0; }

/* ── CARDS PROJETS ── */
.cards-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:2px; }
.card {
  display:block; background:var(--dark2); padding:28px;
  text-decoration:none; border-top:3px solid transparent; transition:.2s; position:relative;
}
.card:hover { background:var(--dark3); border-top-color:var(--blue); }
.card-tag { font-size:9px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--blue); margin-bottom:10px; }
.card-title { font-family:var(--font-display); font-size:18px; color:var(--white); margin-bottom:8px; font-weight:900; }
.card-desc { font-size:13px; color:var(--grey); line-height:1.6; }

/* ── LINKS ROW ── */
.links-row { display:grid; grid-template-columns:repeat(auto-fit,200px); gap:16px; width:100%; }
.link-item {
  width:200px; height:200px;
  display:flex; flex-direction:column; align-items:center; justify-content:center; text-align:center;
  padding:20px; background:var(--dark2); text-decoration:none;
  border:1px solid var(--border); border-top:3px solid transparent; transition:.2s;
  box-sizing:border-box;
}
.link-item:hover { border-top-color:var(--blue); background:var(--dark3); }
.link-icon { width:56px; height:56px; display:flex; align-items:center; justify-content:center; font-size:22px; font-weight:900; margin-bottom:12px; overflow:hidden; }
.link-icon.yt { background:#ff0000; color:#fff; }
.link-icon.fb { background:#1877f2; color:#fff; }
.link-icon.tw { background:#111; color:#fff; border:1px solid var(--border); }
.link-icon.r100 { background:var(--blue); color:var(--black); font-family:var(--font-display); }
/* Logos réseaux — filtre bleu sur tout sauf YouTube */
.link-name { font-weight:700; font-size:13px; color:var(--white); margin-bottom:4px; white-space:nowrap; }
.link-sub { font-size:11px; color:var(--grey); white-space:nowrap; }

/* ── MAJS ── */
.maj-card { margin-bottom:20px; padding:22px 28px; background:var(--dark2); border-left:3px solid var(--border-light); }
.maj-card.major { border-left-color:var(--blue); }
.maj-card-head { display:flex; align-items:center; gap:14px; margin-bottom:12px; flex-wrap:wrap; }
.maj-card-num { font-family:var(--font-display); font-size:20px; font-weight:900; color:var(--white); }
.maj-card-badge { background:var(--blue); color:var(--black); font-size:9px; font-weight:700; letter-spacing:2px; padding:2px 8px; text-transform:uppercase; }
.maj-card-date { font-size:12px; color:var(--grey); }
.maj-card ul { list-style:none; padding:0; }
.maj-card li { padding:5px 0; color:var(--grey); font-size:13px; border-bottom:1px solid var(--border); }
.maj-card li::before { content:'— '; color:var(--blue); }
.maj-card li:last-child { border-bottom:none; }

/* ── RESPONSIVE ── */
@media (max-width:1100px) {
  .stats-bar { grid-template-columns:repeat(2,1fr); }
  .series-grid { grid-template-columns:repeat(3,1fr); }
  .perso-grid { justify-content:center; }
}
@media (max-width:900px) {
  .container, .section, .page-hero, .saison-tabs, 
  .header-inner { padding:0 20px; }
  .cards-grid { grid-template-columns:1fr; }
  .links-row { grid-template-columns:repeat(2,1fr); }
  
  
  .series-grid { grid-template-columns:repeat(2,1fr); }
}
@media (max-width:600px) {
  .nav { display:none; flex-direction:column; position:absolute; top:64px; left:0; right:0; background:var(--blue); padding:16px; border-bottom:3px solid var(--blue-dark); z-index:200; }
  .nav.open { display:flex; }
  .burger { display:block; }
  .links-row { grid-template-columns:1fr 1fr; }
  
  .ep-grid { grid-template-columns:1fr 1fr; }
  .ep-grid-5 { grid-template-columns:repeat(2,1fr); }
  .series-grid { grid-template-columns:1fr 1fr; }
  .stats-bar { grid-template-columns:1fr 1fr; }
}

/* ══════════════════════════════════════════
   FOOTER — style R100
══════════════════════════════════════════ */
.site-footer {
  background: var(--black);
  border-top: 1px solid var(--border);
  padding: 56px 40px 0;
}
.footer-grid {
  max-width:1200px; margin:0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 44px;
  padding-bottom: 44px;
}
.ft-brand-tag {
  font-size: 13px; color: var(--grey);
  line-height: 1.7; margin-bottom: 22px;
}
.ft-title {
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--grey); margin-bottom: 18px;
}
.ft-links { display: flex; flex-direction: column; gap: 10px; }
.ft-links a {
  font-size: 14px; color: rgba(255,255,255,.45);
  text-decoration: none; transition: color .2s;
}
.ft-links a:hover { color: var(--white); }
.socials { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 0; }
.soc-btn {
  width: 42px; height: 42px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: border-color .2s;
  text-decoration: none;
}
.soc-btn img { width: 28px; height: 28px; object-fit: contain; display: block; }
.soc-btn:hover { border-color: var(--blue); }
.footer-bottom {
  max-width:1200px; margin:0 auto;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(255,255,255,.22);
  padding: 20px 40px;
}
.footer-bottom-wrap {
  border-top: 1px solid var(--border);
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: var(--white); }
.footer-v {
  background: var(--dark3); padding: 4px 10px;
  font-size: 10px; color: var(--grey);
  letter-spacing: 1px; text-decoration: none !important;
}
.footer-v:hover { color: var(--white) !important; }
@media (max-width:900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width:600px) {
  .site-footer { padding: 40px 20px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ── HERO LAST RELEASE (style R100) ── */
.hero-last-release {
  position: absolute;
  bottom: 48px;
  right: 40px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(0,0,0,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--blue);
  padding: 14px 20px 14px 14px;
  text-decoration: none;
  max-width: 480px;
  backdrop-filter: blur(6px);
  transition: border-color .25s, background .25s;
  z-index: 10;
}
.hero-last-release:hover {
  background: rgba(0,0,0,.88);
  border-color: rgba(51,153,204,.5);
  border-left-color: var(--blue);
}
.hero-last-thumb {
  width: 144px; height: 88px;
  flex-shrink: 0; overflow: hidden;
}
.hero-last-thumb img { width:100%; height:100%; object-fit:cover; }
.hero-last-info { flex:1; min-width:0; }
.hero-last-label {
  font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 3px;
  display: flex; align-items: center; gap: 6px;
}
.hero-last-new {
  background: var(--blue); color: var(--black);
  font-size: 12px; padding: 3px 10px;
  letter-spacing: 2px; font-weight: 700;
}
.hero-last-titre {
  font-family: var(--font-display);
  font-size: 22px; letter-spacing: 1px;
  color: #fff; white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis;
}
.hero-last-date { font-size: 10px; color: var(--grey); margin-top: 2px; }
@media (max-width:900px) {
  .hero-last-release { right: 20px; bottom: 32px; max-width: calc(100% - 40px); }
  .hero-last-thumb { width: 90px; height: 52px; }
  .hero-last-titre { font-size: 16px; }
}
@media (max-width:600px) {
  .hero-last-release {
    position:relative; bottom:auto; right:auto;
    flex-direction:row; align-items:center;
    margin:16px 16px 0; max-width:calc(100% - 32px);
  }
  .hero-last-thumb { width:90px; height:56px; flex-shrink:0; }
  .hero-inner { padding-bottom:24px !important; }
}

/* Zone mystère — texte flouté */
.mystere {
  filter: blur(4px);
  user-select: none;
  cursor: default;
  display: inline-block;
  color: var(--white);
  transition: filter .3s;
}
.mystere:hover {
  filter: blur(4px); /* reste flouté même au survol */
}

/* Hints desktop/mobile */
.hint-mobile { display:none; }
.hint-desktop { display:inline; }
@media (hover:none) and (pointer:coarse) {
  .hint-mobile { display:inline; }
  .hint-desktop { display:none; }
}

/* Tap mobile pour les perso-cards */
.perso-card.active .perso-card-hover {
  opacity:1;
  transform:translateY(0);
}

/* Responsive — Prochaine sortie */
@media (max-width:768px) {
  .prochaine-grid { grid-template-columns:1fr !important; gap:32px !important; padding:0 20px !important; }
}

/* Responsive — padding général mobile */
@media (max-width:600px) {
  .section { padding:40px 0; }
  .container { padding:0 16px; }
  .page-hero { padding:100px 16px 32px; }
  .player-wrap, .player-nav { padding:0 16px; }
}

/* Responsive — perso cards sur mobile */
@media (max-width:480px) {
  .perso-grid { grid-template-columns:repeat(2,1fr) !important; gap:8px !important; }
  .perso-card { width:100% !important; }
}

/* ══════════════════════════════════════════
   RESPONSIVE — CORRECTIONS COMPLÈTES
══════════════════════════════════════════ */

/* Prochaine sortie — 2 colonnes → 1 colonne */
@media (max-width:768px) {
  .section > div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 0 20px !important;
  }
}

/* ep-grid-5 (projets) → 2 colonnes sur mobile */
@media (max-width:600px) {
  .ep-grid-5 { grid-template-columns: repeat(2,1fr) !important; }
  .saison-tabs-inner { flex-wrap: wrap; }
  .player-nav { flex-wrap: wrap; gap:8px; }
  .hero-inner { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .stats-bar { grid-template-columns: repeat(2,1fr); }
}

/* Footer sur très petit écran */
@media (max-width:480px) {
  .site-footer { padding: 32px 16px 0; }
  .footer-bottom { flex-direction: column; gap:8px; text-align:center; }
  .soc-row { justify-content: center; }
  .stats-bar { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: clamp(28px, 8vw, 48px); }
}

/* ══════════════════════════════════════════
   CONTACT
══════════════════════════════════════════ */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.3fr;
  gap:80px; align-items:start;
}
.contact-info-list {
  display:flex; flex-direction:column; gap:18px; margin-top:36px;
}
.contact-info-item {
  display:flex; align-items:center; gap:14px;
  font-size:14px; color:var(--grey);
}
.ci-icon {
  width:36px; height:36px; border:1px solid var(--border);
  display:flex; align-items:center; justify-content:center;
  font-size:16px; flex-shrink:0;
}
.form { display:flex; flex-direction:column; gap:12px; }
.form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.fg { display:flex; flex-direction:column; gap:5px; }
.fg label {
  font-size:9px; font-weight:700; letter-spacing:3px;
  text-transform:uppercase; color:var(--grey);
}
.fg input, .fg select, .fg textarea {
  background:var(--dark2); border:1px solid var(--border);
  color:var(--white); font-family:var(--font-body);
  font-size:14px; padding:13px 16px;
  outline:none; width:100%; box-sizing:border-box;
  transition:border-color .2s; -webkit-appearance:none;
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color:var(--blue); }
.fg select {
  cursor:pointer;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23555'/%3E%3C/svg%3E");
  background-repeat:no-repeat; background-position:right 14px center; padding-right:38px;
}
.fg select option { background:var(--dark2); }
.fg textarea { resize:vertical; min-height:130px; }
.form-submit {
  display:flex; align-items:center; justify-content:space-between;
  padding:15px 22px; background:var(--blue); color:var(--black);
  font-family:var(--font-body); font-size:11px; font-weight:700;
  letter-spacing:2.5px; text-transform:uppercase;
  border:none; cursor:pointer; transition:opacity .2s, transform .2s;
}
.form-submit:hover { opacity:.85; transform:translateY(-1px); }
@media (max-width:900px) {
  .contact-grid { grid-template-columns:1fr; gap:48px; }
  .form-row { grid-template-columns:1fr; }
}
