:root {
  --bg-0: #101114;
  --bg-1: #151b24;
  --bg-2: #1d2733;
  --panel: rgba(23, 27, 35, 0.78);
  --text: #eaf1f7;
  --muted: #9fb2c5;
  --cyan: #33e6ff;
  --cyan-2: #00bcd4;
  --border: rgba(51, 230, 255, 0.42);
  --glow: 0 0 14px rgba(51, 230, 255, 0.42), 0 0 26px rgba(51, 230, 255, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.5;
  background:
    radial-gradient(circle at 15% 15%, rgba(51, 230, 255, 0.12), transparent 40%),
    radial-gradient(circle at 82% 10%, rgba(0, 188, 212, 0.16), transparent 36%),
    radial-gradient(circle at 44% 94%, rgba(51, 230, 255, 0.1), transparent 38%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 48%, var(--bg-2) 100%);
}

.page-wrap {
  min-height: 100vh;
  width: min(1080px, 93vw);
  margin: 0 auto;
  padding: 2.2rem 0 2.9rem;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 1.35rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.95rem;
  animation: rise-in 620ms ease-out both;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 11px;
  border: 1px solid var(--border);
  box-shadow: var(--glow);
  object-fit: cover;
}

.brand h1 {
  margin: 0;
  letter-spacing: 0.02em;
  font-size: clamp(1.35rem, 2.7vw, 2rem);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
}

.brand p {
  margin: 0;
  color: var(--muted);
  font-size: 0.93rem;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  padding: 0.42rem;
  border: 1px solid rgba(51, 230, 255, 0.24);
  border-radius: 999px;
  background: rgba(17, 21, 27, 0.68);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
  animation: rise-in 700ms ease-out both;
}

.tab {
  text-decoration: none;
  color: var(--text);
  padding: 0.56rem 1rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 200ms ease, border-color 200ms ease, background 200ms ease;
}

.tab:hover,
.tab:focus-visible {
  border-color: var(--border);
  box-shadow: var(--glow);
  transform: translateY(-1px);
  outline: none;
}

.tab.active {
  background: linear-gradient(180deg, rgba(51, 230, 255, 0.18), rgba(51, 230, 255, 0.08));
  border-color: var(--border);
  box-shadow: var(--glow);
}

.card {
  background: var(--panel);
  border: 1px solid rgba(51, 230, 255, 0.2);
  border-radius: 22px;
  padding: clamp(1.2rem, 2.3vw, 2rem);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  animation: rise-in 840ms ease-out both;
}

.hero-title {
  margin: 0 0 0.52rem;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 700;
  line-height: 1.1;
}

.hero-sub {
  margin: 0;
  color: var(--muted);
  max-width: 66ch;
}

.feature-bullets {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: var(--text);
}

.feature-bullets li {
  margin: 0.22rem 0;
}

.direct-email {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.direct-email a {
  color: var(--cyan);
  font-weight: 700;
  text-decoration: none;
}

.direct-email a:hover,
.direct-email a:focus-visible {
  text-decoration: underline;
  outline: none;
}

.places-played {
  margin-top: 0.95rem;
  border: 1px solid rgba(51, 230, 255, 0.2);
  border-radius: 14px;
  padding: 0.8rem 0.95rem;
  background: rgba(8, 14, 20, 0.42);
}

.places-played h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
}

.places-played p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.social-row {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.55rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.44rem 0.82rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 230, 255, 0.34);
  background: rgba(9, 18, 24, 0.72);
  color: var(--text);
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.link-mark {
  margin-left: 0.35rem;
  font-size: 0.9em;
  line-height: 1;
}

.social-btn:hover,
.social-btn:focus-visible {
  transform: translateY(-1px);
  border-color: var(--border);
  box-shadow: var(--glow);
  outline: none;
}

.social-youtube {
  border-color: rgba(255, 86, 86, 0.45);
  background: linear-gradient(180deg, rgba(255, 86, 86, 0.34), rgba(120, 22, 22, 0.55));
}

.social-youtube:hover,
.social-youtube:focus-visible {
  border-color: rgba(255, 138, 138, 0.75);
  box-shadow: 0 0 12px rgba(255, 86, 86, 0.45);
}

.social-facebook {
  border-color: rgba(86, 132, 255, 0.45);
  background: linear-gradient(180deg, rgba(58, 90, 170, 0.42), rgba(19, 34, 78, 0.74));
}

.social-facebook:hover,
.social-facebook:focus-visible {
  border-color: rgba(129, 165, 255, 0.72);
  box-shadow: 0 0 12px rgba(86, 132, 255, 0.4);
}

.social-instagram {
  border-color: rgba(255, 101, 191, 0.48);
  background: linear-gradient(180deg, rgba(255, 117, 204, 0.4), rgba(136, 38, 111, 0.68));
}

.social-instagram:hover,
.social-instagram:focus-visible {
  border-color: rgba(255, 160, 220, 0.76);
  box-shadow: 0 0 12px rgba(255, 101, 191, 0.45);
}

.places-pill-list {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  gap: 0.55rem;
}

.place-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(51, 230, 255, 0.3);
  background: rgba(8, 18, 25, 0.6);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.band-grid {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-evenly;
  gap: 0.9rem;
}

.band-item {
  flex: 1 1 220px;
  max-width: 245px;
  border: 1px solid rgba(51, 230, 255, 0.24);
  border-radius: 14px;
  padding: 0.85rem 0.95rem;
  background: rgba(10, 13, 18, 0.42);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.band-item:hover {
  border-color: var(--border);
  box-shadow: var(--glow);
  transform: translateY(-2px);
}

.band-item h3 {
  margin: 0;
  font-size: 1rem;
}

.band-item p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.gallery {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 95px;
  grid-auto-flow: dense;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: 14px;
  border: 1px solid rgba(51, 230, 255, 0.22);
  min-height: 200px;
  margin: 0;
  grid-column: span 3;
  grid-row: span 3;
  background: rgba(8, 12, 17, 0.68);
  cursor: zoom-in;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: zoom-in;
}

.shot-hero {
  grid-column: span 6;
  grid-row: span 4;
}

.shot-cover {
  grid-column: span 12;
  grid-row: span 5;
}

.shot-wide {
  grid-column: span 6;
}

.shot-tall {
  grid-row: span 4;
}

.shot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.36));
}

.shot figcaption {
  position: absolute;
  z-index: 1;
  left: 0.6rem;
  bottom: 0.45rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: #f9fbff;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.55);
}

.shot:hover {
  transform: translateY(-2px);
  box-shadow: var(--glow);
  border-color: var(--border);
}

.image-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: none;
  place-items: center;
  padding: clamp(0.9rem, 3vw, 2rem);
  background: rgba(2, 7, 11, 0.88);
  backdrop-filter: blur(3px);
}

.image-modal.is-open {
  display: grid;
}

.image-modal-frame {
  position: relative;
  width: min(1300px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  display: grid;
  place-items: center;
}

.image-modal img {
  width: auto;
  height: auto;
  max-width: min(1300px, calc(100vw - 2rem));
  max-height: calc(100vh - 2rem);
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(51, 230, 255, 0.38);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45), var(--glow);
}

.image-modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(8, 20, 26, 0.92);
  color: #f2fbff;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: var(--glow);
}

.image-modal-close:hover,
.image-modal-close:focus-visible {
  background: rgba(13, 35, 44, 0.98);
  outline: none;
}

form {
  margin-top: 1rem;
  display: grid;
  gap: 0.84rem;
  max-width: 700px;
}

label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(51, 230, 255, 0.28);
  border-radius: 12px;
  background: rgba(9, 14, 18, 0.75);
  color: var(--text);
  font: inherit;
  padding: 0.68rem 0.8rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

textarea {
  min-height: 130px;
  resize: vertical;
}

input:focus,
textarea:focus {
  border-color: var(--cyan);
  box-shadow: var(--glow);
  outline: none;
}

button {
  width: fit-content;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(51, 230, 255, 0.24), rgba(51, 230, 255, 0.1));
  color: var(--text);
  font: inherit;
  font-weight: 700;
  padding: 0.56rem 1rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

button:hover,
button:focus-visible {
  transform: translateY(-1px);
  box-shadow: var(--glow);
  outline: none;
}

footer {
  color: var(--muted);
  font-size: 0.87rem;
  text-align: center;
  padding-top: 0.5rem;
}

.policy-copy {
  max-width: 800px;
}

.policy-copy h3 {
  margin: 1.15rem 0 0.35rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.1rem;
}

.policy-copy p {
  margin: 0.5rem 0;
}

.policy-copy ul {
  margin: 0.45rem 0 0.85rem 1.1rem;
  padding: 0;
}

.policy-copy li {
  margin: 0.22rem 0;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 860px) {
  .gallery {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 90px;
  }

  .shot,
  .shot-cover,
  .shot-wide,
  .shot-tall,
  .shot-hero {
    grid-column: span 3;
    grid-row: span 3;
  }
}

@media (max-width: 640px) {
  .tabs {
    border-radius: 16px;
  }

  .tab {
    flex: 1 1 auto;
    text-align: center;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 120px;
  }

  .shot,
  .shot-cover,
  .shot-wide,
  .shot-tall,
  .shot-hero {
    grid-column: span 2;
    grid-row: span 2;
  }
}
