:root {
  --bg: #0a0d12;
  --surface: rgba(18, 25, 38, 0.72);
  --text: #f6f7fb;
  --muted: #a4b0c3;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ff6b2c;
  --accent-soft: #ffb36a;
  --accent-2: #2dd4bf;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.32);
  --radius: 26px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 107, 44, 0.3), transparent 26%),
    radial-gradient(circle at 80% 20%, rgba(45, 212, 191, 0.16), transparent 24%),
    linear-gradient(180deg, #05070b 0%, #0a0d12 48%, #0e131b 100%);
  min-height: 100vh;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
code { font-family: "Montserrat", sans-serif; }

.site-shell { position: relative; overflow: hidden; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 11, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-bar, .footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
  min-width: 0;
}

.brand-logo {
  width: clamp(4.8rem, 10vw, 8rem);
  height: auto;
  flex: 0 0 auto;
  display: block;
}

.brand-text {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.75rem 1rem;
  padding-left: 2rem;
  color: var(--muted);
  border-radius: 999px;
  transition: 0.25s ease;
  position: relative;
}

.nav-links a:hover, .nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.nav-links a::before {
  content: "\263C";
  position: absolute;
  left: 0.85rem;
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  opacity: 0;
  color: var(--accent-soft);
  transition: 0.25s ease;
}

.nav-links a:hover::before,
.nav-links a.is-active::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.nav-toggle {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font: inherit;
}

.hero, .page-hero { position: relative; padding: 6rem 0 3rem; }
.hero-home { min-height: 78vh; display: grid; align-items: center; }
.hero-grid, .split-layout, .feature-grid, .card-grid, .artist-grid, .equipment-grid, .legal-layout, .admin-grid {
  display: grid;
  gap: 1.35rem;
}

.hero-grid, .split-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; align-items: center; }
.feature-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card-grid.two-col, .equipment-grid, .legal-layout { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.artist-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.admin-grid { grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr); }

.hero h1, .page-hero h1, .section-heading h2, .split-copy h2 {
  font-family: "Montserrat", sans-serif;
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0;
}

.hero h1 { font-size: clamp(2.5rem, 5.2vw, 4.8rem); }
.page-hero h1, .section-heading h2, .split-copy h2 { font-size: clamp(2.4rem, 5vw, 4.3rem); }

.hero-title-animated {
  --hero-title-gradient: linear-gradient(
    120deg,
    #ff3b2f 0%,
    #ffce3a 34%,
    #f3ffbd 50%,
    #52d66b 72%,
    #ff4a36 100%
  );
  background: var(--hero-title-gradient);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  animation: rangoGradientShift 8s ease-in-out infinite;
  text-wrap: balance;
}

.hero-title-marked {
  position: relative;
  display: inline-block;
  padding: 0.02em 0.16em 0.22em;
  margin-right: 0.12em;
  background: var(--hero-title-gradient);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero-title-marked::before,
.hero-title-marked::after {
  content: "";
  position: absolute;
  left: -0.08em;
  right: -0.06em;
  bottom: 0.02em;
  height: 0.52em;
  pointer-events: none;
  opacity: 0;
}

.hero-title-marked::before {
  border-bottom: 3px solid rgba(255, 255, 255, 0.96);
  border-radius: 0 0 55% 45%;
  transform: rotate(-1.6deg) scaleX(0.94);
  animation: pencilOutlineA 1.35s ease-out 0.3s forwards;
}

.hero-title-marked::after {
  left: 0.02em;
  right: -0.12em;
  bottom: -0.06em;
  border-bottom: 2px solid rgba(255, 255, 255, 0.82);
  border-radius: 0 0 60% 40%;
  transform: rotate(1.2deg) scaleX(0.98);
  animation: pencilOutlineB 1.05s ease-out 1.2s forwards;
}


.eyebrow, .micro-label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: var(--accent-soft);
}

.hero-text, .page-intro, .split-copy p, .feature-card p, .legal-card p, .timeline-item p, .checklist p, .studio-notes p, .equipment-item p, .artist-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2rem; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.25s ease, background 0.25s ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: linear-gradient(135deg, var(--accent), #ff8640); color: #090c12; }
.button-secondary { border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.03); }

.glass {
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card, .feature-card, .service-card, .artist-card, .equipment-item, .legal-card, .studio-notes, .news-card { padding: 1.5rem; }
.service-card {
  position: relative;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    background 0.28s ease,
    box-shadow 0.28s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(255, 122, 24, 0), rgba(255, 90, 54, 0.16));
  transition: height 0.28s ease;
  pointer-events: none;
}

.service-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(255, 154, 61, 0.38);
  background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,122,24,0.05));
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.service-card:hover::before {
  height: 100%;
}

.service-card:hover h3 {
  color: #fff4ec;
}

.service-card:hover p:last-child {
  color: #d9e0ec;
}

.service-title-animated {
  background: linear-gradient(
    120deg,
    #ff7a18 0%,
    #ff3b2f 30%,
    #fff6ef 50%,
    #ff5a36 72%,
    #ff9a3d 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rangoGradientShift 8s ease-in-out infinite;
}
.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.production-visual-section {
  padding-top: 0.5rem;
}

.production-hero-media {
  position: relative;
  overflow: hidden;
  padding: 0;
  min-height: 24rem;
  isolation: isolate;
}

.production-hero-media::before {
  content: "";
  position: absolute;
  inset: -8%;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 90, 54, 0.26), transparent 24%),
    radial-gradient(circle at 78% 24%, rgba(76, 49, 255, 0.24), transparent 28%);
  animation: floatGlow 10s ease-in-out infinite;
}

.production-hero-media.is-fallback {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 90, 54, 0.42), transparent 24%),
    radial-gradient(circle at 80% 25%, rgba(72, 53, 255, 0.34), transparent 30%),
    linear-gradient(180deg, #12060a 0%, #0d1118 100%);
}

.production-hero-image {
  position: relative;
  z-index: 1;
  width: 100%;
  height: min(68vh, 42rem);
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  animation: heroPhotoDrift 14s ease-in-out infinite;
}

.production-hero-media.is-fallback .production-hero-image {
  display: none;
}

.production-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(8, 10, 15, 0.08), rgba(8, 10, 15, 0.38)),
    linear-gradient(120deg, rgba(255, 122, 24, 0.14), transparent 36%, rgba(255, 255, 255, 0.05) 54%, transparent 70%);
  pointer-events: none;
}


.stat-stack, .timeline, .checklist { display: grid; gap: 1rem; }
.stat-stack div {
  display: grid;
  gap: 0.3rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.stat-stack div:last-child { border-bottom: 0; }
.stat-stack span, .floating-band span { color: var(--muted); }

.service-spotlight-card {
  border-radius: 18px;
  padding: 1rem 1.1rem;
  transition:
    transform 0.35s ease,
    background 0.35s ease,
    box-shadow 0.35s ease;
  border: 0;
  min-height: 0;
}

.service-spotlight-card strong,
.service-spotlight-card span {
  display: block;
}

.service-spotlight-card strong {
  margin-bottom: 0.3rem;
}

.service-spotlight-card span {
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  line-height: 1.55;
}

.service-spotlight-card.is-active {
  transform: translateY(-2px) scale(1.01);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 122, 24, 0.07));
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.18);
}

.service-spotlight-card.is-active strong {
  color: #fff4ec;
}

.service-spotlight-card.is-active span {
  color: #d7dfec;
}
.floating-band { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1rem; }
.floating-band span {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.section { padding: 2rem 0 5rem; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(0,0,0,0)); }
.section-heading { max-width: 52rem; margin-bottom: 2rem; }
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.news-card {
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.news-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 179, 106, 0.28);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,122,24,0.04));
  box-shadow: 0 28px 68px rgba(0, 0, 0, 0.28);
}

.news-type {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  color: var(--accent-soft);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.news-card h3 {
  margin: 0 0 0.55rem;
}

.news-date,
.news-empty-state {
  color: var(--muted);
}

.news-empty-state {
  margin: 0;
}

.section-heading-booking { max-width: 64rem; }

.booking-heading-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.2rem;
}

.booking-arrow-cue {
  position: relative;
  flex: 0 0 5rem;
  width: 5rem;
  height: 5.75rem;
  margin-top: 0.35rem;
  opacity: 0.9;
}

.booking-arrow-line,
.booking-arrow-head {
  position: absolute;
  display: block;
}

.booking-arrow-line {
  top: 0.2rem;
  left: 2.55rem;
  width: 2px;
  height: 4.2rem;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 214, 119, 0.2), rgba(255, 122, 24, 0.95));
  transform-origin: top center;
  animation: bookingArrowLine 2.2s ease-in-out infinite;
}

.booking-arrow-head {
  left: 2rem;
  bottom: 0.28rem;
  width: 1.12rem;
  height: 1.12rem;
  border-right: 3px solid rgba(255, 186, 92, 0.95);
  border-bottom: 3px solid rgba(255, 186, 92, 0.95);
  transform: rotate(45deg);
  animation: bookingArrowHead 2.2s ease-in-out infinite;
}

.contact-heading {
  margin-bottom: 1.5rem;
}

.contact-panel {
  padding: 1.6rem;
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-note {
  margin: 0;
  color: var(--muted);
}

.success-popup {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  z-index: 180;
  transform: translate(-50%, 1rem);
  opacity: 0;
  pointer-events: none;
  padding: 0.95rem 1.2rem;
  border-radius: 999px;
  background: rgba(10, 14, 20, 0.9);
  border: 1px solid rgba(255, 179, 106, 0.24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  color: var(--text);
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: center;
}

.success-popup.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}
.timeline-item, .checklist > div {
  padding: 1.25rem 1.4rem;
  border-left: 2px solid rgba(255, 107, 44, 0.7);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 0 20px 20px 0;
}

.production-point-title {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.production-point-icon {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  background: rgba(255, 122, 24, 0.12);
  box-shadow: inset 0 0 0 1px rgba(255, 179, 106, 0.14);
  font-size: 1rem;
  line-height: 1;
}

.artist-media {
  aspect-ratio: 4 / 4.7;
  border-radius: 18px;
  overflow: hidden;
  margin-bottom: 1.15rem;
  background: #0f1520;
}
.artist-card {
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease;
}

.artist-card:hover {
  transform: translateY(-8px) scale(1.012);
  border-color: rgba(255, 181, 120, 0.34);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.38);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,122,24,0.04));
}

.artist-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.artist-card:hover img {
  transform: scale(1.05);
}

.artist-meta { display: flex; justify-content: space-between; gap: 1rem; align-items: baseline; }
.artist-genre { color: var(--accent-soft); font-size: 0.9rem; }
.artist-name-animated {
  margin: 0;
  background: linear-gradient(
    120deg,
    #ff3b2f 0%,
    #ff6a2f 18%,
    #ffd34d 44%,
    #fff8ef 56%,
    #ff5a36 78%,
    #ff3b2f 100%
  );
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: rangoGradientShift 8s ease-in-out infinite;
}

.booking-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1rem;
  align-items: center;
}

.booking-carousel-wide {
  width: min(1360px, calc(100% - 2rem));
}

.artist-marquee {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  padding: 0.5rem 0;
  scrollbar-width: none;
  cursor: grab;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
}

.artist-marquee::-webkit-scrollbar {
  display: none;
}

.artist-marquee.drag-active {
  cursor: grabbing;
  user-select: none;
}

.artist-track {
  display: flex;
  gap: 1.35rem;
  width: max-content;
  padding: 0 0.35rem;
}

.artist-track .artist-card {
  width: min(26rem, calc(100vw - 3rem));
  flex: 0 0 auto;
}

.booking-nav-button {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 18, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 1.35rem;
  cursor: pointer;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.28);
}

.booking-nav-button:hover {
  transform: translateY(-2px);
  background: rgba(255, 122, 24, 0.12);
  border-color: rgba(255, 154, 61, 0.32);
}

.artist-booking-button {
  margin-top: 1rem;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 0.95rem 1.15rem;
  font: inherit;
  font-weight: 700;
  color: #090c12;
  background: linear-gradient(135deg, #ffb347, #ff5a36, #fff4ec);
  background-size: 180% 180%;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background-position 0.4s ease;
  box-shadow: 0 12px 24px rgba(255, 90, 54, 0.22);
}

.artist-booking-button:hover {
  transform: translateY(-2px) scale(1.01);
  background-position: 100% 50%;
  box-shadow: 0 16px 28px rgba(255, 90, 54, 0.28);
}

.booking-empty-state {
  margin: 1.25rem 0 0;
  color: var(--muted);
  text-align: center;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 1rem;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 7, 11, 0.76);
  backdrop-filter: blur(8px);
}

.booking-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 38rem);
  padding: 1.5rem;
  margin: auto;
  max-height: min(88vh, 52rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.booking-modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  border: 0;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 1.3rem;
  cursor: pointer;
}

.booking-modal-intro {
  color: var(--muted);
}

.booking-modal-form {
  display: grid;
  gap: 1rem;
}

body.modal-open {
  overflow: hidden;
}

.artist-detail-modal[hidden] {
  display: none;
}

.artist-detail-modal {
  position: fixed;
  inset: 0;
  z-index: 125;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.artist-detail-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 64rem);
  padding: 1.5rem;
}

.artist-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.5rem;
  align-items: center;
}

.artist-detail-media img {
  width: 100%;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  border-radius: 22px;
}

.artist-detail-genre,
.artist-detail-description {
  color: var(--muted);
  line-height: 1.7;
}

.artist-detail-booking {
  width: auto;
  min-width: 14rem;
}

.admin-shell {
  display: grid;
  gap: 1.5rem;
}

.admin-panel {
  display: none;
}

.admin-panel.is-open {
  display: block;
}

.admin-gate.is-hidden {
  display: none;
}

.admin-gate,
.admin-card {
  padding: 1.5rem;
}

.admin-card-wide {
  width: 100%;
}

.admin-news-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 1.25rem;
  align-items: start;
}

.admin-session-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.2rem;
  margin-bottom: 1.25rem;
}

.admin-gate {
  max-width: 32rem;
  margin: 0 auto;
}

.admin-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.admin-form {
  display: grid;
  gap: 1rem;
}

.admin-actions-row {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.admin-field {
  display: grid;
  gap: 0.45rem;
}

.admin-field span {
  color: var(--muted);
  font-size: 0.95rem;
}

.admin-field input,
.admin-field textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.95rem 1rem;
  font: inherit;
}

.admin-field textarea {
  resize: vertical;
  min-height: 8rem;
}

.admin-message,
.admin-empty {
  color: var(--accent-soft);
  margin: 0;
}

.admin-hint {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  line-height: 1.6;
  font-size: 0.92rem;
}

.admin-list {
  display: grid;
  gap: 1rem;
}

.admin-artist-row {
  display: grid;
  grid-template-columns: 5rem minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-thumb {
  width: 5rem;
  height: 5rem;
  object-fit: cover;
  border-radius: 16px;
}

.admin-artist-copy {
  display: grid;
  gap: 0.25rem;
}

.admin-artist-copy span,
.admin-artist-copy p {
  color: var(--muted);
  margin: 0;
}

.admin-news-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.admin-news-copy {
  display: grid;
  gap: 0.3rem;
}

.admin-news-copy span,
.admin-news-copy p {
  color: var(--muted);
  margin: 0;
}

.admin-inbox-row {
  grid-template-columns: minmax(0, 1fr) auto;
}
.equipment-item ul { margin: 0.9rem 0 0; padding-left: 1.1rem; color: var(--muted); line-height: 1.8; }

.site-footer { padding: 2rem 0 3rem; }
.footer-shell {
  color: var(--muted);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.6rem;
  flex-direction: column;
  align-items: stretch;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: 100%;
}

.footer-menu {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  padding-top: 1rem;
}

.footer-menu a {
  padding: 0.8rem 1.05rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  transition: 0.25s ease;
}

.footer-menu a:hover,
.footer-menu a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.footer-admin-link {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 0.45rem;
}

.footer-legal-links {
  display: flex;
  justify-content: center;
  width: 100%;
  padding-top: 1rem;
}

.footer-legal-links a,
.footer-admin-link a {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.footer-legal-links a:hover,
.footer-admin-link a:hover {
  color: rgba(255, 255, 255, 0.72);
}
.legal-note { grid-column: 1 / -1; border-color: rgba(255, 179, 106, 0.3); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-delay { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@keyframes rangoGradientShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pencilOutlineA {
  0% {
    opacity: 0;
    clip-path: inset(0 100% 0 0);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes pencilOutlineB {
  0% {
    opacity: 0;
    clip-path: inset(0 0 0 100%);
  }
  15% {
    opacity: 1;
  }
  100% {
    opacity: 0.92;
    clip-path: inset(0 0 0 0);
  }
}


@keyframes heroPhotoDrift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
  50% {
    transform: scale(1.06) translate3d(0, -0.45rem, 0);
  }
  100% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }
}

@keyframes floatGlow {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(1rem, -0.7rem, 0) scale(1.04);
  }
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes bookingArrowLine {
  0% {
    opacity: 0.3;
    transform: scaleY(0.45) translateY(-0.35rem);
  }
  30% {
    opacity: 1;
  }
  55% {
    opacity: 1;
    transform: scaleY(1) translateY(0);
  }
  100% {
    opacity: 0.42;
    transform: scaleY(0.88) translateY(0.32rem);
  }
}

@keyframes bookingArrowHead {
  0% {
    opacity: 0.25;
    transform: rotate(45deg) translate(-0.18rem, -0.18rem);
  }
  35% {
    opacity: 1;
  }
  55% {
    opacity: 1;
    transform: rotate(45deg) translate(0, 0);
  }
  100% {
    opacity: 0.45;
    transform: rotate(45deg) translate(0.16rem, 0.22rem);
  }
}

@media (max-width: 980px) {
  .hero-grid, .split-layout, .feature-grid, .artist-grid, .card-grid.two-col, .equipment-grid, .legal-layout, .admin-grid, .news-grid {
    grid-template-columns: 1fr;
  }
  .footer-top { flex-direction: column; align-items: flex-start; }
  .booking-heading-row { align-items: flex-start; }
  .admin-news-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header { padding: 0.85rem 0; }
  .nav-bar { align-items: flex-start; }
  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    width: 100%;
    padding-top: 0.75rem;
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; }
  .hero, .page-hero { padding-top: 4.6rem; }
  .hero h1 { font-size: clamp(2.15rem, 10.5vw, 3.35rem); }
  .page-hero h1, .section-heading h2, .split-copy h2 { font-size: clamp(2rem, 10vw, 3rem); }
  .hero-title-marked {
    display: inline;
    padding: 0 0.1em 0.18em 0;
  }
  .production-hero-media {
    min-height: 16rem;
  }
  .production-hero-image {
    height: 16rem;
  }
  .brand {
    gap: 0;
  }
  .brand-logo {
    width: 4.1rem;
  }
  .contact-actions {
    align-items: flex-start;
  }
  .booking-heading-row {
    flex-direction: column;
    gap: 0.55rem;
  }
  .booking-arrow-cue {
    width: 3.8rem;
    height: 4.7rem;
    margin-left: 0.15rem;
  }
  .booking-arrow-line {
    left: 1.9rem;
    height: 3.45rem;
  }
  .booking-arrow-head {
    left: 1.36rem;
  }
  .artist-track {
    gap: 1rem;
  }
  .artist-track .artist-card {
    width: min(20rem, calc(100vw - 2.5rem));
  }
  .artist-detail-layout {
    grid-template-columns: 1fr;
  }
  .booking-carousel {
    grid-template-columns: 1fr;
  }
  .booking-nav-button {
    display: none;
  }
  .admin-card-head,
  .admin-artist-row,
  .admin-news-row {
    grid-template-columns: 1fr;
  }
  .admin-session-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .admin-thumb {
    width: 100%;
    height: 12rem;
  }
  .footer-menu {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.35rem;
  }
  .footer-menu a { white-space: nowrap; }
}
