/* =============================================================================
   AESTELL STUDIOS — COMPANY PORTFOLIO
   styles.css  |  v2.0
   ============================================================================= */

/* ── RESET & BASE ─────────────────────────────────────────────────────────── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg:       #080810;
  --bg-2:     #0e0e1a;
  --surface:  #131320;
  --border:   rgba(200, 0, 54, 0.25);
  --border-h: rgba(255, 105, 105, 0.6);
  --cream:    #FFF0D6;
  --cream-60: rgba(255, 240, 214, 0.6);
  --cream-30: rgba(255, 240, 214, 0.3);
  --accent:   #FF4D6A;
  --accent-2: #FF8C69;
  --theme:    #C80036;
  --glow:     rgba(255, 77, 106, 0.35);

  --font-display: 'Orbitron', monospace;
  --font-body:    'Rajdhani', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --section-pad: clamp(4rem, 10vw, 8rem);
  --container:   1280px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:  cubic-bezier(0.7, 0, 0.84, 0);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

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

/* ── SCANLINES ────────────────────────────────────────────────────────────── */
.scanlines {
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.04) 2px,
    rgba(0,0,0,0.04) 4px
  );
  animation: scanline-drift 8s linear infinite;
}

@keyframes scanline-drift {
  from { background-position: 0 0; }
  to   { background-position: 0 80px; }
}

/* ── BACKGROUND CANVAS ────────────────────────────────────────────────────── */
#bg-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* ── UTILITY ──────────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
}

.section {
  padding: var(--section-pad) 0;
  position: relative;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  opacity: 0.8;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--theme), var(--accent));
  border-radius: 2px;
}

/* ── BUTTONS ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  transition: all 0.3s var(--ease-out);
  text-transform: uppercase;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--theme), var(--accent));
  color: var(--cream);
  box-shadow: 0 0 20px var(--glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 35px var(--glow), 0 4px 20px rgba(0,0,0,0.4);
  filter: brightness(1.1);
}

.btn-ghost {
  border: 1.5px solid rgba(255, 240, 214, 0.45);
  color: var(--cream);
  background: rgba(255, 240, 214, 0.05);
  backdrop-filter: blur(8px);
}

.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(255, 240, 214, 0.12);
  transform: translateY(-2px);
}

.btn-pill {
  border-radius: 999px !important;
  padding: 0.8rem 2.2rem !important;
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.72rem; }
.btn-full { width: 100%; justify-content: center; }

/* ── NAVIGATION ───────────────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  padding: 0 clamp(1.25rem, 5vw, 3rem);
  height: 70px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease, border-color 0.3s ease;
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(8, 8, 16, 0.92);
  backdrop-filter: blur(16px);
  border-bottom-color: var(--border);
}

.nav-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

/* ── STUDIO LOGO ──────────────────────────────────────────────────────────── */
.studio-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-emblem { flex-shrink: 0; position: relative; }

.logo-svg { width: 40px; height: 40px; overflow: visible; }

.logo-hex {
  transform-origin: 24px 24px;
  animation: logo-spin 12s linear infinite;
}

.logo-a { animation: logo-pulse 3s ease-in-out infinite; }

.logo-dot {
  animation: logo-spin 12s linear infinite;
  transform-origin: 24px 24px;
}

@keyframes logo-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes logo-pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.55; filter: drop-shadow(0 0 6px var(--accent)); }
}

.logo-wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: var(--cream);
  text-shadow: 0 0 20px var(--glow);
}

.logo-sub {
  font-family: var(--font-mono);
  font-size: 0.5rem;
  letter-spacing: 0.35em;
  color: var(--accent);
  text-transform: uppercase;
  margin-top: 1px;
}

.studio-logo--sm .logo-svg  { width: 30px; height: 30px; }
.studio-logo--sm .logo-name { font-size: 0.9rem; }
.studio-logo--sm .logo-sub  { font-size: 0.42rem; }

/* ── NAV LINKS ────────────────────────────────────────────────────────────── */
.nav-links {
  display: flex;
  gap: 0.15rem;
  align-items: center;
  justify-content: center;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: white;
  padding: 0.5rem 0.85rem;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--cream);
  background: rgba(255, 77, 106, 0.08);
}
.nav-socials {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.25rem;
}

.nav-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  color: var(--cream-60);
  transition: color 0.2s, background 0.2s;
}

.nav-social-link:hover {
  color: var(--accent);
  background: rgba(255, 77, 106, 0.08);
}

.mobile-socials {
  display: flex;
  gap: 1rem;
  padding: 1.5rem 0 0.5rem;
  border-top: 1px solid var(--border);
  margin-top: 0.5rem;
}

.nav-link--social {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link--social:hover svg { color: var(--accent); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 70px 0 0 0;
  z-index: 899;
  background: rgba(8, 8, 16, 0.97);
  backdrop-filter: blur(24px);
  padding: 2rem;
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}

.mobile-menu.open { transform: translateX(0); }

.mobile-link {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--cream-60);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-link:hover { color: var(--accent); }

/* ── HERO BASE ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--cream-30);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0;
  animation: fade-in 1s ease 1.8s forwards;
}

.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { transform: scaleY(1); opacity: 0.5; }
  50%       { transform: scaleY(0.6); opacity: 1; }
}

/* ── HERO FULLSCREEN CAROUSEL ────────────────────────────────────────────── */
.hero--showcase {
  min-height: 100svh;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: block;
}

.hero-carousel {
  position: relative;
  width: 100%;
  height: 100svh;
}

/* Each slide */
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.9s var(--ease-out);
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

/* Full-bleed video */
.hero-slide-media {
  position: absolute;
  inset: 0;
}

.hero-slide-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s;
}

.hero-slide.active .hero-slide-media video {
  opacity: 1;
}

/* ── SCRIM — deep left/bottom vignette, open right (Rockstar layout) ─────── */
.hero-slide-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.55) 25%,
      rgba(0,0,0,0.10) 55%,
      transparent      80%
    ),
    linear-gradient(
      to right,
      rgba(0,0,0,0.80) 0%,
      rgba(0,0,0,0.45) 30%,
      rgba(0,0,0,0.08) 60%,
      transparent      100%
    ),
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.50) 0%,
      transparent      18%
    ); */
}

/* ── GAME LOGO — bottom-left, large, like GTA V wordmark ─────────────────── */
.hero-slide-logo {
  position: absolute;
  bottom: clamp(6rem, 14vh, 11rem);
  left:   clamp(2rem,  7vw,  7rem);
  z-index: 3;
  width:  clamp(110px, 13vw, 190px);
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity   0.80s var(--ease-out) 0.05s,
    transform 0.80s var(--ease-out) 0.05s;
}

.hero-slide.active .hero-slide-logo {
  opacity: 1;
  transform: translateY(0);
}

.hero-slide-logo img {
  width: 100%;
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 2px 12px rgba(0,0,0,0.95))
    drop-shadow(0 0  32px rgba(0,0,0,0.65));
}

/* ── SLIDE CONTENT — label / headline / sub / CTAs ───────────────────────── */
.hero-slide-content {
  position: absolute;
  bottom: clamp(5.5rem, 13vh, 10rem);
  left:   clamp(2rem,   7vw,  7rem);
  max-width: 540px;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity   0.85s var(--ease-out) 0.18s,
    transform 0.85s var(--ease-out) 0.18s;
}

/* Logo present → push content right so they sit side-by-side */
.hero-slide-logo ~ .hero-slide-content {
  left: clamp(
    calc(2rem   + 110px + 2rem),
    calc(7vw    + 13vw  + 2.5rem),
    calc(7rem   + 190px + 3.5rem)
  );
  bottom: clamp(5.5rem, 13vh, 10rem);
  max-width: 480px;
}

.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translateY(0);
}

/* Genre · Status label */
.hero-slide-label {
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.28em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.1rem;
}

/* Main title */
.hero-slide-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.6rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.0;
  letter-spacing: 0.01em;
  text-shadow:
    0 3px 20px rgba(0,0,0,0.85),
    0 0  60px rgba(0,0,0,0.40);
}

/* Subtitle */
.hero-slide-sub {
  font-family: var(--font-body);
  font-size: clamp(0.78rem, 1.1vw, 0.88rem);
  color:white
  line-height: 1.65;
  max-width: 420px;
  margin-top: 0.15rem;
}

/* CTA row */
.hero-slide-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Pill shape for all hero buttons */
.hero-slide-actions .btn {
  border-radius: 999px;
  padding: 0.75rem 2.1rem;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  white-space: nowrap;
}

/* Primary — Rockstar gold "Watch Trailer" */
.hero-slide-actions .btn-primary {
  background: linear-gradient(135deg, var(--theme), var(--accent)); 
  /* background: linear-gradient(135deg, #c89a14, #e8b830);  */
  color: #0a0a0a;
  box-shadow: 0 0 20px rgba(200, 155, 20, 0.45);
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.hero-slide-actions .btn-primary:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 34px rgba(200, 155, 20, 0.70);
  transform: translateY(-2px);
}

/* Ghost — Rockstar frosted "Learn More" */
.hero-slide-actions .btn-ghost {
  background: rgba(15, 15, 22, 0.52);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1.5px solid rgba(255, 240, 214, 0.55);
  color: var(--cream);
}

.hero-slide-actions .btn-ghost:hover {
  background: rgba(255, 240, 214, 0.10);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* ── CAROUSEL CONTROLS — bottom-right like Rockstar ─────────────────────── */
.carousel-controls {
  position: absolute;
  bottom: clamp(1.75rem, 4vh, 3rem);
  right: clamp(1.5rem, 5vw, 5rem);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.carousel-dots {
  display: flex;
  align-items: center;
  gap: 6px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 240, 214, 0.3);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.3s, width 0.35s var(--ease-out), border-radius 0.35s var(--ease-out);
}

.carousel-dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--cream);
}

.carousel-arrows {
  display: flex;
  gap: 0.5rem;
}

.carousel-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 240, 214, 0.25);
  background: rgba(8, 8, 16, 0.5);
  backdrop-filter: blur(8px);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.25s, background 0.25s, transform 0.2s;
}

.carousel-arrow:hover {
  border-color: var(--cream);
  background: rgba(255, 240, 214, 0.12);
  transform: scale(1.08);
}

.carousel-counter {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  color: var(--cream-30);
  user-select: none;
}

.carousel-counter span { color: var(--cream-60); }

/* Progress bar */
.carousel-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--theme), var(--accent));
  z-index: 10;
  width: 0%;
  transition: width linear;
}

/* Hide scroll indicator on carousel hero */
.hero--showcase .scroll-indicator {
  display: none;
}

/* ── ABOUT ────────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}

.about-text p {
  color: var(--cream-60);
  line-height: 1.8;
  font-size: 1.05rem;
  margin-bottom: 1.25rem;
}

.about-text strong { color: var(--cream); }

.about-stats {
  display: flex;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item { display: flex; flex-direction: column; }

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--cream-60);
  text-transform: uppercase;
  margin-top: 0.25rem;
}

.about-card { position: sticky; top: 90px; }

.about-card-inner {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color 0.3s;
}

.about-card-inner:hover {
  border-color: var(--border-h);
  box-shadow: 0 0 30px rgba(200,0,54,0.12);
}

.about-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--theme), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 0 30px var(--glow);
}

.about-info-list { display: flex; flex-direction: column; gap: 1rem; }

.info-row {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.info-row:last-child { border-bottom: none; padding-bottom: 0; }

.info-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--cream-30);
  text-transform: uppercase;
}

.info-value {
  font-size: 0.95rem;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-green 2s ease infinite;
}

@keyframes pulse-green {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.7; transform: scale(0.85); }
}

/* ── GAMES GRID ───────────────────────────────────────────────────────────── */
.games-section {
  background: linear-gradient(180deg, transparent, rgba(200,0,54,0.03), transparent);
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.game-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out),
    border-color 0.35s,
    box-shadow 0.35s;
}

.game-card.revealed { opacity: 1; transform: translateY(0); }

.game-card:hover {
  border-color: var(--border-h);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 40px rgba(200,0,54,0.18);
}

.game-poster {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-2);
  cursor: pointer;
}

.game-poster-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
  transition: opacity 0.35s, transform 0.5s var(--ease-out);
}

.game-card:hover .game-poster-video {
  opacity: 1;
  transform: scale(1.04);
}

.game-poster-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 8, 16, 0.4);
  transition: background 0.35s;
}

.game-card:hover .game-poster-overlay { background: rgba(8, 8, 16, 0.05); }

.game-poster-gradient {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, var(--surface) 0%, transparent 100%);
  pointer-events: none;
}

.game-hover-hint {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  color: var(--cream-60);
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.3s;
}

.game-poster:not(:hover) .game-hover-hint { opacity: 1; transform: translateY(0); }

.game-logo-area {
  padding: 1.25rem 1.5rem 0.75rem;
  flex: 1;
}

.game-logo-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 900;
  color: var(--cream);
  letter-spacing: 0.08em;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.game-logo-sub {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
}

.game-actions {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
  flex-wrap: wrap;
}

/* ── CONTACT ──────────────────────────────────────────────────────────────── */
.contact-intro {
  font-size: 1.05rem;
  color: var(--cream-60);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 3rem;
  align-items: start;
}

.contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-group   { display: flex; flex-direction: column; gap: 0.5rem; }

.form-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cream-60);
  text-transform: uppercase;
}

.form-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--cream);
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  resize: none;
}

.form-input::placeholder { color: var(--cream-30); }

.form-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(255,77,106,0.12);
}

.form-input.error { border-color: var(--accent); }
.form-textarea    { min-height: 130px; }

.form-error {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--accent);
  min-height: 1em;
}

.form-status {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  min-height: 2.5rem;
  transition: all 0.3s;
}

.form-status.success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
}

.form-status.error-msg {
  background: rgba(255, 77, 106, 0.1);
  border: 1px solid rgba(255, 77, 106, 0.3);
  color: var(--accent);
}

.contact-info { display: flex; flex-direction: column; gap: 1rem; }

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}

.contact-card-title {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.contact-item:last-child { border-bottom: none; }

.contact-item-icon {
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-item-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--cream-30);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.contact-item-value { font-size: 0.95rem; color: var(--cream); }

a.contact-item-value:hover { color: var(--accent); }

.availability-card {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  background: rgba(74, 222, 128, 0.06);
  border-color: rgba(74, 222, 128, 0.2);
}

.avail-dot {
  width: 10px;
  height: 10px;
  background: #4ade80;
  border-radius: 50%;
  box-shadow: 0 0 10px #4ade80;
  flex-shrink: 0;
  margin-top: 4px;
  animation: pulse-green 2s ease infinite;
}

.avail-text { font-size: 0.9rem; color: var(--cream-60); line-height: 1.6; }
.avail-text strong { color: #4ade80; }

/* ── FOOTER ───────────────────────────────────────────────────────────────── */
footer {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

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

.footer-left { display: flex; align-items: center; gap: 1.25rem; }

.footer-nav { display: flex; gap: 1.5rem; }

.footer-nav a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--cream-60);
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--accent); }

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--cream-30);
}

/* ── ANIMATIONS ───────────────────────────────────────────────────────────── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.revealed { opacity: 1; transform: none; }

/* ── RESPONSIVE ───────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; }
  .about-card   { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
.nav-links    { display: none; }
  .nav-socials  { display: none; }
  .hamburger    { display: flex; }
  .mobile-menu  { display: block; }

  .games-grid { grid-template-columns: 1fr; }

  /* On mobile: stack logo above content, both left-aligned */
  .hero-slide-logo {
    width: 100px;
    bottom: auto;
    top: clamp(30vh, 38vh, 44vh);
    left: 1.5rem;
  }

  .hero-slide-logo ~ .hero-slide-content {
    left: 1.5rem !important;
    bottom: 5.5rem;
    max-width: calc(100% - 3rem);
  }

  .hero-slide-content {
    left: 1.5rem;
    right: 1.5rem;
    max-width: 100%;
    bottom: 5.5rem;
  }

  .carousel-controls {
    right: 1.5rem;
    bottom: 1.5rem;
  }

  .footer-inner       { flex-direction: column; text-align: center; }
  .footer-nav         { flex-wrap: wrap; justify-content: center; }
  .footer-left        { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .hero-slide-title   { font-size: 1.7rem; }
  .hero-slide-sub     { font-size: 0.8rem; }
  .hero-slide-actions .btn { padding: 0.7rem 1.4rem; font-size: 0.72rem; }
  .carousel-dot       { width: 6px; height: 6px; }
  .carousel-dot.active { width: 22px; }
  .game-poster        { aspect-ratio: 16 / 10; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}


/* ── CLIENTS SECTION ─────────────────────────────────────────────────────── */
.clients-section {
  background: linear-gradient(180deg, transparent, rgba(255,77,106,0.03), transparent);
}

.clients-intro {
  font-size: 1.05rem;
  color: var(--cream-60);
  max-width: 560px;
  margin-bottom: 3rem;
  line-height: 1.8;
}