/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: #000; color: #fff; overflow-x: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

/* ── VARIABLES ── */
:root {
  --red: #e80014;
  --bg: #000;
  --muted: #888;
  --border: #2a2a2a;
  --nav-h: 64px;
  --pad: 40px;
}
@media (max-width: 768px) {
  :root { --pad: 20px; --nav-h: 56px; }
}

/* ── HERO ── */
#hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 56px;
  padding: 80px var(--pad);
  background:
    radial-gradient(ellipse 120% 60% at 50% 0%, rgba(232,0,20,0.38) 0%, transparent 60%),
    radial-gradient(ellipse 55% 40% at 90% 80%, rgba(180,0,10,0.18) 0%, transparent 55%),
    #0d0a0a;
}
.main-logo {
  width: min(425px, 75vw);
  display: block;
}
@media (max-width: 600px) {
  .main-logo { width: min(300px, 80vw); }
}

/* ── LABEL CARDS ── */
.labels-row {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.label-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  border-radius: 12px;
  border: 1px solid transparent;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.label-card:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: var(--red);
  box-shadow: 0 0 50px rgba(232,0,20,0.22), 0 20px 60px rgba(0,0,0,0.5);
}
.label-card:active {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 0 30px rgba(232,0,20,0.15);
}
.label-card img {
  width: min(300px, 35vw);
  transition: filter 0.3s ease;
  filter: drop-shadow(0 4px 24px rgba(0,0,0,0.5));
}
.label-card:hover img {
  filter: drop-shadow(0 0 24px rgba(232,0,20,0.35));
}

@media (max-width: 900px) {
  .labels-row { gap: 40px; }
  .label-card img { width: min(260px, 40vw); }
  .label-card { padding: 28px 24px; }
}
@media (max-width: 600px) {
  .labels-row { flex-direction: column; gap: 32px; }
  .label-card img { width: min(240px, 72vw); }
  .label-card { padding: 24px 20px; }
}

/* ── FOOTER ── */
footer {
  background: #000;
  border-top: 1px solid var(--border);
  padding: 56px var(--pad);
  text-align: center;
}
.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.footer-slogan {
  height: 44px;
  opacity: 0.8;
}
.footer-socials {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}
.footer-socials a {
  color: var(--muted);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  letter-spacing: 0.06em;
}
.footer-socials a:hover { color: #fff; }
.footer-socials svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }
.footer-email {
  font-size: 14px;
  color: var(--muted);
}
.footer-email a { color: var(--red); transition: opacity 0.2s; }
.footer-email a:hover { opacity: 0.8; }
.footer-copy {
  font-size: 11px;
  color: #333;
  letter-spacing: 0.08em;
}
