* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --text: #e5e5e5;
  --muted: rgba(229,229,229,0.70);
  --glass: rgba(0,0,0,0.45);
  --glass2: rgba(0,0,0,0.55);
  --stroke: rgba(255,255,255,0.10);
}

body {
  min-height: 100vh;
  font-family: "Georgia", serif;
  color: var(--text);

  background:
    linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.88)),
    url("tlo.jpg");

  background-size: cover;
  background-position: center 5%;
  background-repeat: no-repeat;
}

/* ================= HEADER ================= */

.site-header {
  padding: 28px 18px 10px;
}

.brand {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.logo {
  font-size: 34px;
  letter-spacing: 2px;
  font-weight: 400;
}

.tag {
  font-size: 14px;
  letter-spacing: 3px;
  opacity: 0.7;
}

/* ================= MAIN ================= */

.wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px;
}

.hero-card {
  background: linear-gradient(180deg, var(--glass), var(--glass2));
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 22px 20px;
  text-align: center;
}

.hero-card h1 {
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 1px;
}

.lead {
  margin-top: 10px;
  color: var(--muted);
  font-size: 16px;
}

/* ================= HUB ================= */

.hub {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.tile {
  text-decoration: none;
  color: var(--text);
  background: rgba(0,0,0,0.38);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 18px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.25s ease;
}

.tile h2 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 1px;
}

.tile p {
  margin-top: 8px;
  font-size: 15px;
  color: var(--muted);
}

.tile:hover {
  transform: translateY(-3px);
  background: rgba(0,0,0,0.48);
  border-color: rgba(255,255,255,0.18);
}

/* ================= MANIFEST ================= */

.studio-manifest {
  margin-top: 30px;
  text-align: center;
  font-style: italic;
  font-size: 15px;
  letter-spacing: 1.5px;
  color: rgba(255, 215, 170, 0.8);
  opacity: 0.9;
}

/* ================= COPYRIGHT ================= */

.site-footer {
  padding: 24px 18px 26px;
  text-align: center;
}

.copyright {
  font-size: 13px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.5);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 800px) {
  .hub {
    grid-template-columns: 1fr;
  }

  .hero-card h1 {
    font-size: 32px;
  }
}