* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Aptos Display", system-ui, Arial, sans-serif;
  color: white;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.4), rgba(0,0,0,0.85)),
    radial-gradient(900px 500px at 20% 10%, rgba(255,215,0,0.15), transparent 60%),
    radial-gradient(900px 500px at 80% 90%, rgba(30,144,255,0.15), transparent 60%),
    url("studio.jpg") no-repeat center center fixed;

  background-size: cover;
}

.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.site-header {
  padding: 18px 24px;
  border-bottom: 1px solid rgba(255,215,0,0.25);
  background: rgba(0,0,0,0.7);
}

.logo {
  font-weight: bold;
  letter-spacing: 1px;
}

.hero {
  margin-top: 28px;
  text-align: center;
  padding: 40px 20px;
  background: rgba(0,0,0,0.65);
  border-radius: 24px;
  border: 1px solid rgba(255,215,0,0.25);
  box-shadow: 0 12px 45px rgba(0,0,0,0.6);
}

.hero h1 {
  margin-bottom: 10px;
  color: gold;
}

.hero p {
  opacity: 0.9;
}

.gallery {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  display: block;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255,215,0,0.2);
  transition: 0.3s ease;
  box-shadow: 0 10px 28px rgba(0,0,0,0.5);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 25px rgba(255,215,0,0.3),
    0 0 35px rgba(30,144,255,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.site-footer {
  text-align: center;
  margin-top: 50px;
  padding: 20px;
  border-top: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.7);
}
