:root {
  --bg: #02030a;
  --bg-alt: #050817;
  --surface: #0b1220;
  --surface-soft: #0f172a;
  --primary: #2563eb; /* blue */
  --primary-soft: rgba(37, 99, 235, 0.18);
  --accent: #38bdf8; /* light blue */
  --text: #f9fafb; /* near white */
  --muted: #9ca3af;
  --border-subtle: rgba(148, 163, 184, 0.35);
  --radius-lg: 18px;
  --radius-pill: 999px;
  --shadow-soft: 0 22px 45px rgba(0, 0, 0, 0.65);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}

body {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #0b1120 0, #02030a 48%) fixed;
  color: var(--text);
  min-height: 100vh;
}

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(2, 6, 23, 0.94),
    rgba(2, 6, 23, 0.8),
    transparent
  );
  border-bottom: 1px solid rgba(148, 163, 184, 0.22);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.85rem;
  gap: 1.5rem;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.logo-mark {
  width: 22px;
  height: 22px;
  border-radius: 40%;
  background: conic-gradient(
    from 210deg,
    var(--primary),
    var(--accent),
    var(--primary)
  );
  box-shadow: 0 0 30px rgba(56, 189, 248, 0.65);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  font-size: 1.02rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  position: relative;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: width 0.22s ease;
}

.nav a:hover {
  color: var(--text);
}

.nav a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0;
  width: 30px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: #ffffff;
  border-radius: 999px;
}

.hero {
  position: relative;
  padding: 5.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 10% 0, rgba(56, 189, 248, 0.25), transparent 55%),
    radial-gradient(circle at 90% 0, rgba(37, 99, 235, 0.4), transparent 60%);
  opacity: 0.85;
}

.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) brightness(0.6);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: 3.25rem;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(3.5rem, 6vw, 4.75rem);
  margin: 0;
  letter-spacing: 0.2em;
  position: relative;
}

.hero-title-glow {
  position: relative;
  z-index: 1;
}

.hero-title-glow::before {
  content: "";
  position: absolute;
  inset: -40%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.35), transparent 65%);
  filter: blur(26px);
  z-index: -1;
}

.hero-subtitle {
  margin: 0.85rem 0 1.75rem;
  font-size: 1.05rem;
  max-width: 28rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.6rem;
}

.hero-actions .btn {
  position: relative;
  z-index: 1;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1rem;
  position: relative;
  z-index: 1;
}

.hero-social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  transition: color 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
  border-radius: 50%;
  padding: 0.5rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  cursor: pointer;
  text-decoration: none;
}

.hero-social-tooltip {
  position: absolute;
  bottom: calc(100% + 0.6rem);
  left: 50%;
  transform: translateX(-50%) scale(0.95);
  padding: 0.5rem 0.75rem;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  max-width: 12rem;
  text-align: center;
  color: var(--accent);
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 4px;
  box-shadow:
    0 0 0 1px rgba(56, 189, 248, 0.15),
    0 4px 20px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(56, 189, 248, 0.15);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.hero-social-link:hover .hero-social-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.hero-social-link:hover {
  color: var(--accent);
  filter: drop-shadow(0 0 12px var(--accent)) drop-shadow(0 0 24px rgba(56, 189, 248, 0.6));
}

.hero-social-icon {
  width: 2rem;
  height: 2rem;
  pointer-events: none;
}

.hero-social-icon-youtube {
  width: 2rem;
  height: 2rem;
}

.hero-social-icon-youtube,
.hero-social-icon-tiktok {
  width: 2rem;
  height: 2rem;
}

.hero-platforms {
  font-size: 0.8rem;
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(circle at top left, #26213d, #141321);
  font-size: 0.78rem;
}

.pill a {
  color: inherit;
  text-decoration: none;
}

.pill-icon {
  width: 14px;
  height: 14px;
  margin-left: 0.35rem;
  flex-shrink: 0;
}

.pill-muted {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  color: var(--muted);
}

.hero-card {
  border-radius: 4px;
  background: radial-gradient(circle at top left, #1d2945, #020617);
  border: 1px solid #1e3a5f;
  box-shadow: var(--shadow-soft);
  padding: 1.6rem 1.5rem 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.hero-card-link .hero-card {
  transition: box-shadow 0.25s ease;
}

.hero-card-link:hover .hero-card {
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.5), 0 0 56px rgba(37, 99, 235, 0.25), 0 14px 30px rgba(0, 0, 0, 0.6);
}

.hero-art {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 210px;
  display: flex;
  align-items: flex-end;
}

.hero-art-embed {
  min-height: 0;
  align-items: stretch;
}

.hero-art-embed iframe {
  display: block;
  border: 0;
  border-radius: 4px;
}

.hero-art-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  filter: saturate(1.1);
}

.hero-art-gradient {
  position: absolute;
  inset: 0;
  mix-blend-mode: screen;
  opacity: 0.7;
  background-image: linear-gradient(
    135deg,
    rgba(5, 4, 10, 0.5),
    rgba(255, 255, 255, 0.15)
  );
}

.hero-art-frame {
  position: relative;
  width: 100%;
  padding: 1.1rem 1.1rem 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  z-index: 1;
}

.hero-art-tag {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background: rgba(2, 6, 23, 0.8);
  border-radius: 999px;
  padding: 0.25rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-art-text {
  text-align: right;
}

.hero-art-title {
  margin: 0;
  font-weight: 600;
  letter-spacing: 0.16em;
  font-size: 0.8rem;
}

.hero-art-meta {
  margin: 0.25rem 0 0;
  font-size: 0.78rem;
  color: rgba(239, 237, 255, 0.78);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.stat-label {
  margin: 0 0 0.15rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.stat-value {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 600;
}

.section {
  padding: 4.5rem 0 4.25rem;
}

.section-alt {
  background: radial-gradient(circle at top, #020617, #02030a 55%);
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.section-header h2 {
  margin: 0.45rem 0 0;
  font-size: 1.9rem;
}

.heading-emoji {
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.5rem;
  vertical-align: middle;
  object-fit: contain;
}

.section-intro {
  margin: 0;
  max-width: 26rem;
  color: var(--muted);
  font-size: 0.98rem;
}

.overline {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.release-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.release-card-link .card {
  cursor: pointer;
  transition: box-shadow 0.25s ease;
}

.release-card-link:hover .card,
.release-card-glow:hover .card {
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.5), 0 0 56px rgba(37, 99, 235, 0.25), 0 14px 30px rgba(0, 0, 0, 0.6);
}

.release-card-glow {
  display: block;
}

.release-card-glow .card {
  cursor: default;
  transition: box-shadow 0.25s ease;
}

.card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, #111827, #020617);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.6);
}

.card-body {
  padding: 1.1rem 1.15rem 1.15rem;
}

.release-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.05rem;
}

.card-meta {
  margin: 0;
  font-size: 0.78rem;
  color: var(--muted);
}

.card-copy {
  margin: 0.85rem 0 1.1rem;
  font-size: 0.92rem;
  color: #e5e7eb;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  font-size: 0.84rem;
}

.card-art {
  height: 164px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
}

.card-art-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gradient-1 {
  background: radial-gradient(circle at 10% 0, #38bdf8, transparent 55%),
    radial-gradient(circle at 90% 100%, #1d4ed8, #020617 60%);
}

.gradient-2 {
  background: radial-gradient(circle at 0 0, #38bdf8, transparent 55%),
    radial-gradient(circle at 100% 100%, #0ea5e9, #020617 65%);
}

.gradient-3 {
  background: radial-gradient(circle at 20% 0, #1d4ed8, transparent 55%),
    radial-gradient(circle at 90% 100%, #38bdf8, #020617 65%);
}

.visuals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.visual-tile {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-height: 190px;
  background-size: cover;
  background-position: center;
  background-image: radial-gradient(circle at 0 0, #1d4ed8, transparent 55%),
    radial-gradient(circle at 100% 100%, #38bdf8, #02030a 60%);
}

.visual-tile.tall {
  grid-row: span 2;
  min-height: 260px;
}

.visual-tile.wide {
  grid-column: span 2;
}

.visual-tile.full {
  grid-column: 1 / -1;
  min-height: 260px;
}

.visual-tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  z-index: 0;
}

.visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(5, 4, 10, 0.75),
    rgba(5, 4, 10, 0.05)
  );
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
}

.visual-overlay p {
  margin: 0;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.visual-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.4fr);
  gap: 3rem;
  align-items: flex-start;
}

.about-copy p {
  margin: 0 0 0.9rem;
  color: #e5e7eb;
  font-size: 0.97rem;
}

.gallery-scroll-wrap {
  max-height: 75vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 2rem;
  -webkit-overflow-scrolling: touch;
  /* Clean, minimal scrollbar that matches dark theme */
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.5) transparent;
}

.gallery-scroll-wrap::-webkit-scrollbar {
  width: 8px;
}

.gallery-scroll-wrap::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-scroll-wrap::-webkit-scrollbar-thumb {
  background: rgba(148, 163, 184, 0.4);
  border-radius: 999px;
}

.gallery-scroll-wrap::-webkit-scrollbar-thumb:hover {
  background: rgba(148, 163, 184, 0.6);
}

.gallery-scroll-wrap .container.gallery-grid {
  padding-bottom: 0.5rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 80px;
  grid-auto-flow: dense;
  gap: 1.5rem;
}

.gallery-item-btn {
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
  width: 100%;
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item-btn.is-placeholder {
  cursor: default;
  pointer-events: none;
}

.gallery-item-btn.gallery-item-wide {
  grid-column: span 2;
}

.gallery-item {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  object-fit: cover;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

.gallery-item-btn:not(.is-placeholder):hover .gallery-item,
.gallery-video-wrap:hover .gallery-item {
  transform: translateY(-6px);
  box-shadow: 0 0 28px rgba(37, 99, 235, 0.5), 0 0 56px rgba(37, 99, 235, 0.25), 0 14px 30px rgba(0, 0, 0, 0.6);
}

.gallery-video-wrap {
  grid-column: span 1;
  grid-row: span 2;
  display: block;
  cursor: pointer;
}

.gallery-video-wrap .gallery-video {
  pointer-events: none;
}

.gallery-video {
  background: #000;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
  display: block;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 3, 10, 0.92);
  cursor: pointer;
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  max-height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-img {
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-video {
  display: none;
  max-width: 100%;
  max-height: 95vh;
  width: auto;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
}

.lightbox.is-video .lightbox-img {
  display: none;
}

.lightbox.is-video .lightbox-video {
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  z-index: 3;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  font-size: 1.75rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.lightbox-close:hover {
  background: rgba(30, 58, 95, 0.95);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 2.75rem;
  height: 6rem;
  border: none;
  background: rgba(37, 99, 235, 0.28); /* soft blue bar */
  color: rgba(239, 246, 255, 0.98); /* bright arrow */
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, opacity 0.35s ease;
  padding: 0;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(37, 99, 235, 0.45);
}

.lightbox-prev {
  left: 1rem;
  padding-right: 0.15em;
}

.lightbox-next {
  right: 1rem;
  padding-left: 0.15em;
}

.lightbox-prev.is-hidden,
.lightbox-next.is-hidden {
  opacity: 0.35;
  pointer-events: none;
}

/* Fade arrows after 1s idle; reappear on mousemove */
.lightbox.arrows-faded .lightbox-prev,
.lightbox.arrows-faded .lightbox-next {
  opacity: 0;
  pointer-events: none;
}

.shows-list {
  border-radius: 20px;
  border: 1px solid var(--border-subtle);
  background: radial-gradient(circle at top left, #020617, #02030a);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.7);
  padding: 1.1rem 1.1rem 0.7rem;
}

.show-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 0.4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.show-row:last-child {
  border-bottom: none;
}

.show-city {
  margin: 0 0 0.1rem;
  font-weight: 500;
}

.show-meta {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.show-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 2.4rem;
  align-items: flex-start;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  background: radial-gradient(circle at top left, #111827, #020617);
}

.pill-link:hover {
  border-color: var(--accent);
}

.contact-form {
  background: radial-gradient(circle at top left, #111827, #020617);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin-bottom: 0.9rem;
}

.form-row label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.form-row input,
.form-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(15, 23, 42, 0.9);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font: inherit;
  resize: vertical;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(56, 189, 248, 0.8);
  outline-offset: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  padding: 0.7rem 1.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  color: var(--text);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
}

.btn.primary {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: none;
}

.btn.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(37, 99, 235, 0.7);
}

.btn.outline {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.55);
  color: var(--accent);
}

.btn.outline:hover {
  border-color: var(--accent);
  background: rgba(15, 23, 42, 1);
}

.btn.full-width {
  width: 100%;
}

.btn.small {
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
}

.text-link {
  color: var(--accent);
  text-decoration: none;
  position: relative;
}

.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2rem;
  height: 1px;
  width: 100%;
  background: var(--accent);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.14s ease;
}

.text-link:hover::after {
  transform: scaleX(1);
}

.text-link.small {
  font-size: 0.82rem;
}

.site-footer {
  padding: 1.8rem 0 2.2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.3);
  background: radial-gradient(circle at top, #020617, #02030a 55%);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--muted);
}

/* Tablet & mobile: keep desktop look, optimize layout */
@media (max-width: 880px) {
  body {
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 1120px;
    margin-inline: auto;
    padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
  }

  .section {
    padding: 3.5rem 0 3rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2 {
    font-size: 1.65rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .hero-card {
    order: -1;
  }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cards-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.25rem;
  }

  .visuals-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .visual-tile.tall,
  .visual-tile.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

  .about-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    grid-auto-rows: 72px;
  }

  .gallery-item-btn.gallery-item-wide {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: env(safe-area-inset-top);
  }

  .header-inner {
    padding-block: 0.75rem;
    min-height: 52px;
  }

  .nav {
    position: absolute;
    inset-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
    top: 100%;
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    background: rgba(5, 4, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: none;
    flex-direction: column;
    gap: 0;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    min-height: 44px;
    padding: 0.6rem 0.5rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    padding: 0.5rem;
  }

  .hero {
    padding-top: 3.75rem;
    min-height: 100vh;
    min-height: 100dvh;
  }

  .hero-copy h1 {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
  }

  .hero-actions {
    gap: 0.65rem;
  }

  .hero-actions .btn {
    min-height: 44px;
    padding: 0.65rem 1.2rem;
  }

  .hero-social-link {
    min-width: 44px;
    min-height: 44px;
  }

  .hero-subtitle {
    max-width: none;
  }

  .section {
    padding: 2.75rem 0 2.5rem;
  }

  .section-header h2 {
    font-size: 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding-block: 1.25rem;
  }

  .lightbox {
    padding: 1rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .lightbox-content {
    max-width: 100%;
  }
}

/* Small phones: tighter layout, single-column gallery */
@media (max-width: 480px) {
  .container {
    padding-inline: max(0.75rem, env(safe-area-inset-left)) max(0.75rem, env(safe-area-inset-right));
  }

  .section {
    padding: 2.25rem 0 2rem;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .section-header h2 {
    font-size: 1.35rem;
  }

  .hero {
    padding-top: 3.25rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.25rem, 12vw, 3rem);
    letter-spacing: 0.12em;
  }

  .hero-inner {
    gap: 1.5rem;
  }

  .hero-social-tooltip {
    font-size: 0.65rem;
    padding: 0.4rem 0.6rem;
    max-width: 10rem;
  }

  .cards-grid {
    gap: 1rem;
  }

  .card-body {
    padding: 1rem;
  }

  .gallery-grid {
    grid-template-columns: minmax(0, 1fr);
    grid-auto-rows: 120px;
    gap: 0.75rem;
  }

  .gallery-item-btn.gallery-item-wide {
    grid-column: span 1;
  }

  .gallery-item-btn,
  .gallery-video-wrap {
    grid-row: span 2;
  }

  .about-grid {
    gap: 1.5rem;
  }

  .footer-inner {
    padding-block: 1rem;
    font-size: 0.8rem;
  }
}

