@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800&family=Space+Grotesk:wght@600;700&display=swap");
:root {
  --pink: #ff35c9;
  --blue: #318fff;
  --ink: #f8f5ff;
  --muted: #aaa4b8;
  --panel: rgba(21, 16, 32, 0.86);
  --line: #ffffff1f;
}
* {
  box-sizing: border-box;
}
html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: Inter, sans-serif;
  background-color: #07050c;
  background-image:
    radial-gradient(circle at 15% 10%, #39134c 0, transparent 30%),
    radial-gradient(circle at 90% 20%, #12295b 0, transparent 35%);
}
img {
  max-width: 100%;
  height: auto;
}
a {
  transition:
    color 0.2s,
    border-color 0.2s,
    background 0.2s,
    transform 0.2s;
}
.site-navbar {
  background: #08060fe8;
}
.page {
  width: min(1100px, 92%);
  margin: 0 auto;
  padding: 34px 0 80px;
}
.back-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #ddd4ed;
  text-decoration: none;
  font-weight: 700;
  padding: 10px 15px;
  border: 1px solid var(--line);
  border-radius: 99px;
  background: #ffffff09;
}
.back-btn:hover {
  color: #fff;
  border-color: #ff35c966;
  transform: translateY(-2px);
}
.hero {
  text-align: center;
  padding: 52px 0 42px;
}
.hero > span,
.eyebrow {
  color: #ff8fe1;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  font-weight: 800;
}
.hero h1 {
  margin: 14px 0 12px;
  font: 700 clamp(2.5rem, 7vw, 5rem) / 1 Space Grotesk;
  background: linear-gradient(120deg, #fff 35%, #ff83e2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 em {
  font-style: normal;
  color: #ff83e2;
}
.hero p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}
.cards {
  width: min(1100px, 92%);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.card,
.lead-card,
.staff-grid article,
.contact-card,
.notice {
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: 0 16px 45px #0008;
}
.card {
  overflow: hidden;
  border-radius: 22px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.card:hover {
  transform: translateY(-6px);
  border-color: #ff35c966;
  box-shadow:
    0 22px 55px #000a,
    0 0 28px #ff35c922;
}
.card img {
  display: block;
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.card .info {
  padding: 18px;
}
.card .info span {
  color: #ff77dc;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  font-weight: 800;
}
.card h2 {
  margin: 8px 0 0;
  font: 700 1.25rem Space Grotesk;
}
.gallery-grid {
  width: min(1100px, 92%);
  margin: 0 auto 80px;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}
.gallery-photo {
  position: relative;
  min-height: 230px;
  grid-column: span 4;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--panel);
  box-shadow: 0 16px 45px #0008;
}
.gallery-photo:nth-child(1),
.gallery-photo:nth-child(4) {
  grid-column: span 5;
}
.gallery-photo:nth-child(2),
.gallery-photo:nth-child(5) {
  grid-column: span 7;
}
.gallery-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 230px;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-photo:hover img {
  transform: scale(1.05);
}
.gallery-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 28px 18px 16px;
  color: #fff;
  font-weight: 700;
  background: linear-gradient(transparent, #07050ce8);
}
.team {
  display: grid;
  gap: 20px;
}
.lead-card {
  display: flex;
  gap: 22px;
  align-items: center;
  padding: 26px;
  border-radius: 22px;
}
.avatar {
  display: grid;
  place-items: center;
  flex: none;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--blue));
  font-size: 2rem;
}
.lead-card span,
.staff-grid span,
.role {
  color: #ff8fe1;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  font-weight: 800;
}
.lead-card h2,
.staff-grid h3 {
  font-family: Space Grotesk;
  margin: 7px 0;
}
.lead-card p,
.staff-grid p,
.contact-card p,
.notice p {
  color: var(--muted);
  line-height: 1.6;
}
.staff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.staff-grid article {
  padding: 22px;
  border-radius: 22px;
}
.staff-grid article > i {
  color: #ff55cf;
  font-size: 1.4rem;
}
.staff-grid article > i + span {
  margin-left: 8px;
}
.contacts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.contact-card {
  display: flex;
  gap: 18px;
  padding: 22px;
  border-radius: 22px;
}
.contact-card .avatar {
  width: 70px;
  height: 70px;
  font-size: 1.5rem;
}
.contact-card h3 {
  font: 700 1.3rem Space Grotesk;
  margin: 7px 0;
}
.instagram-btn {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: #ff77dc;
  text-decoration: none;
  font-weight: 700;
}
.instagram-btn:hover {
  color: #fff;
}
.notice {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  padding: 22px;
  border-radius: 22px;
}
.notice > i {
  color: #6df4bd;
  font-size: 1.5rem;
}
.notice h2 {
  margin: 0;
  font: 700 1.2rem Space Grotesk;
}
.notice p {
  margin-bottom: 0;
}
footer {
  text-align: center;
  padding: 25px;
  color: #767080;
  border-top: 1px solid #ffffff0d;
}
@media (max-width: 650px) {
  .page {
    padding-top: 24px;
  }
  .hero {
    padding: 40px 0 30px;
  }
  .hero > span {
    display: block;
    line-height: 1.5;
  }
  .staff-grid,
  .contacts-grid {
    grid-template-columns: 1fr;
  }
  .lead-card,
  .contact-card {
    align-items: flex-start;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .card {
    border-radius: 16px;
  }
  .card .info {
    padding: 12px;
  }
  .card h2 {
    font-size: 1rem;
  }
  .notice {
    align-items: flex-start;
  }
  .notice p {
    font-size: 0.9rem;
  }
}
@media (max-width: 380px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.35rem;
  }
  .lead-card,
  .contact-card {
    padding: 18px;
    gap: 14px;
  }
  .avatar {
    width: 64px;
    height: 64px;
    font-size: 1.4rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *:before,
  *:after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
