* {
  box-sizing: border-box;
}

:root {
  --bg: #090509;
  --bg2: #170810;
  --panel: rgba(255, 255, 255, 0.065);
  --panel-border: rgba(255, 255, 255, 0.16);
  --text: #f7edf2;
  --muted: #c7aeb9;
  --accent: #c4143f;
  --accent2: #7b1fa2;
  --shadow: rgba(0, 0, 0, 0.55);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(196, 20, 63, 0.18), transparent 32rem),
    radial-gradient(circle at bottom right, rgba(123, 31, 162, 0.16), transparent 36rem),
    linear-gradient(135deg, var(--bg), var(--bg2) 60%, #030203);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), transparent 85%);
}

a {
  color: inherit;
}

.page {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  justify-items: center;
  text-align: center;
  padding: 0 0 34px;
}

.hero-image img {
  width: 100vw;
  height: clamp(320px, 32vw, 520px);
  display: block;
  object-fit: cover;
  object-position: center center;
  border: 0;
  border-radius: 0;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.72);
  background: #030203;
}

.actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 16px 36px rgba(196, 20, 63, 0.24);
}

.ghost {
  border: 1px solid var(--panel-border);
  background: rgba(255,255,255,0.04);
}

.panel,
.card {
  border: 1px solid var(--panel-border);
  border-radius: 28px;
  background: var(--panel);
  box-shadow: 0 18px 60px var(--shadow);
  backdrop-filter: blur(18px);
}

.panel {
  padding: clamp(26px, 5vw, 54px);
  margin: 22px 0;
}

.panel h2,
.card h3 {
  margin-top: 0;
  font-family: Georgia, "Times New Roman", serif;
  letter-spacing: -0.03em;
}

.panel h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.panel p,
.card p {
  color: var(--muted);
  margin-bottom: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 22px 0;
}

.card {
  padding: 28px;
  min-height: 220px;
}

.card h3 {
  font-size: 1.7rem;
}

.contact {
  text-align: center;
}

.socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.socials a {
  text-decoration: none;
  border: 1px solid var(--panel-border);
  border-radius: 999px;
  padding: 10px 18px;
  color: #fff;
  background: rgba(255,255,255,0.045);
}

footer {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: rgba(247,237,242,0.56);
  text-align: center;
  font-size: 0.92rem;
}

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

  .page {
    width: min(100% - 24px, 1120px);
  }

  .hero-image img {
    height: clamp(260px, 52vw, 420px);
    object-position: center center;
  }
}
/* FIX: Michael Horrorz banner + buttons */

.hero.hero-image {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 22px !important;
  padding: 56px 24px 42px !important;
  overflow: visible !important;
  text-align: center !important;
}

.hero.hero-image img {
  position: relative !important;
  display: block !important;
  width: min(100%, 1100px) !important;
  height: auto !important;
  max-width: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  margin: 0 auto !important;
  transform: none !important;
}

.hero.hero-image .actions {
  position: static !important;
  transform: none !important;
  inset: auto !important;
  right: auto !important;
  left: auto !important;
  top: auto !important;
  bottom: auto !important;

  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 12px !important;

  width: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.hero.hero-image .button {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  white-space: nowrap !important;
}

@media (max-width: 600px) {
  .hero.hero-image {
    padding: 28px 14px 28px !important;
  }

  .hero.hero-image .actions {
    flex-direction: column !important;
  }

  .hero.hero-image .button {
    width: min(100%, 280px) !important;
  }
}
/* SIZE FIX: shrink Michael Horrorz banner */

.hero.hero-image {
  max-width: 1000px !important;
  margin: 0 auto !important;
  padding: 34px 20px 36px !important;
  gap: 18px !important;
}

.hero.hero-image img {
  width: min(92vw, 900px) !important;
  max-width: 900px !important;
  height: auto !important;
  max-height: 430px !important;
  object-fit: contain !important;
  object-position: center center !important;
  display: block !important;
  margin: 0 auto !important;
  position: static !important;
  transform: none !important;
}

.hero.hero-image .actions {
  width: 100% !important;
  max-width: 900px !important;
  margin: 0 auto !important;
}