:root {
  --bg: #080808;
  --panel: #181818;
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4ede7;
  --muted: #b9adb8;
  --orange: #ff7a1a;
  --orange-soft: #ffb067;
  --purple: #7d3cff;
  --white: #ffffff;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --radius: 26px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  background: #0b0b0d;
  color: var(--text);
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: rgba(8, 8, 8, 0.82);
  border-bottom: 1px solid var(--line);
}

.nav-shell {
  display: flex;
  align-items: center;
  gap: 24px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  padding: 0;
}

.brand img {
  width: auto;
  height: 40px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
  transition: color 0.25s ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: var(--white);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.site-nav a:hover::after,
.site-nav a.is-active::after {
  width: 100%;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 18px 38px rgba(255, 122, 26, 0.22);
  text-transform: uppercase;
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.04);
}

.menu-toggle {
  display: none;
  margin-left: auto;
  min-height: 46px;
  min-width: 46px;
  padding: 0;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
  font-size: 0;
  position: relative;
}

.menu-toggle::before {
  content: "";
  width: 18px;
  height: 12px;
  display: block;
  background:
    linear-gradient(var(--white), var(--white)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--white), var(--white)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--white), var(--white)) 0 100% / 100% 2px no-repeat;
}

.menu-toggle[aria-expanded="true"]::before {
  background:
    linear-gradient(var(--orange), var(--orange)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 0 50% / 100% 2px no-repeat,
    linear-gradient(var(--orange), var(--orange)) 0 100% / 100% 2px no-repeat;
}

.hero-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero-slider {
  position: relative;
}

.hero-slide {
  display: none;
}

.hero-slide.is-active {
  display: block;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video-mobile {
  display: none;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(0, 0, 0, 0.56);
}

.slider-controls {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 3;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.slider-dot {
  width: 14px;
  height: 14px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.38);
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease;
}

.slider-dot.is-active {
  background: var(--orange);
  transform: scale(1.15);
}

.hero-grid,
.page-hero-grid,
.split-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 40px;
  align-items: center;
}

.hero-grid {
  min-height: calc(100vh - 84px);
  padding: 32px 0 74px;
  grid-template-columns: 1fr;
  justify-items: center;
  align-content: center;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.release-copy strong,
.contract-panel h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
}

.hero-copy h1 {
  margin: 14px auto 18px;
  font-size: clamp(4.2rem, 9vw, 7.2rem);
  line-height: 0.95;
  max-width: 13ch;
  text-align: center;
}

.hero-copy p {
  font-size: 0.98rem;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-copy {
  width: min(60%, 860px);
  text-align: center;
  margin: 0 auto;
}

.hero-card h2 {
  font-size: 1.2rem;
}

.hero-card p {
  font-size: 0.95rem;
}

.hero-copy p,
.section-heading p,
.show-info p,
.release-copy p,
.release-mini p,
.timeline article p,
.contact-card a,
.info-card p,
.record-card p,
.agenda-entry-copy p,
.contract-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.kicker,
.card-tag,
.hero-card-label,
.record-year {
  display: inline-block;
  color: var(--orange-soft);
  text-transform: uppercase;
  letter-spacing: 2.2px;
  font-size: 0.8rem;
  font-weight: 800;
}

.hero-actions,
.contract-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
  justify-content: center;
}

.social-fixed {
  position: fixed;
  left: 18px;
  top: 50%;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transform: translateY(-50%);
}

.social-fixed a {
  min-width: 54px;
  min-height: 54px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.9);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.8px;
}

.social-fixed svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-fixed a[aria-label="YouTube"] svg path:first-child,
.social-fixed a[aria-label="Spotify"] svg circle {
  fill: currentColor;
  stroke: none;
}

.social-fixed a[aria-label="YouTube"] svg path:last-child {
  fill: #0b0b0d;
  stroke: none;
}

.social-fixed a[aria-label="Spotify"] svg path {
  stroke: #0b0b0d;
  stroke-width: 1.6;
}

.contact-overlay {
  position: fixed;
  inset: 0;
  z-index: 35;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.contact-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.contact-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  width: min(420px, 100%);
  height: 100vh;
  padding: 96px 28px 28px;
  background: #111114;
  border-left: 1px solid var(--line);
  box-shadow: -20px 0 50px rgba(0, 0, 0, 0.3);
  transform: translateX(100%);
  transition: transform 0.28s ease;
}

.contact-drawer.is-open {
  transform: translateX(0);
}

.contact-drawer-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font: inherit;
  cursor: pointer;
}

.contact-drawer h2 {
  margin: 0 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

.contact-drawer p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

.contact-drawer-links {
  display: grid;
  gap: 14px;
}

.contact-drawer-links a {
  display: block;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.contact-drawer-links strong {
  display: block;
  margin-bottom: 6px;
  color: var(--white);
}

.lightbox-overlay {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.lightbox-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-dialog {
  position: relative;
  width: min(1100px, 100%);
  max-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 64px);
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: var(--orange);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 38px rgba(255, 122, 26, 0.22);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
  width: min(100%, 860px);
}

.hero-metrics div,
.hero-card,
.show-card,
.release-card,
.release-mini,
.contact-card,
.info-card,
.record-card,
.agenda-entry,
.contract-panel {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero-metrics div {
  padding: 18px;
  border-radius: 20px;
  background: rgba(12, 12, 14, 0.55);
  backdrop-filter: blur(12px);
}

.hero-metrics strong {
  display: block;
  font-size: 1.5rem;
}

.hero-metrics span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-card h2,
.show-info h3,
.release-mini h3,
.contact-card h3,
.info-card h2,
.record-card h2,
.agenda-entry-copy h2 {
  margin: 10px 0;
  font-size: 1.4rem;
}

.dark-section {
  background: #101012;
}

.section,
.page-hero {
  padding: 88px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 38px;
  text-align: center;
}

.section-heading.left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.page-hero h1,
.contract-panel h2 {
  margin: 10px 0 16px;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 0.95;
}

.image-stack {
  position: relative;
  min-height: 540px;
}

.stack-main,
.stack-float,
.page-hero img,
.large-card img,
.gallery-grid img,
.record-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.stack-main {
  min-height: 540px;
}

.stack-float {
  position: absolute;
  right: -30px;
  bottom: 26px;
  width: 240px;
  height: 300px;
  border: 6px solid rgba(8, 8, 8, 0.9);
}

.text-link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--white);
  font-weight: 800;
}

.show-grid,
.release-grid,
.gallery-grid,
.contact-grid,
.cards-grid,
.discography-grid {
  display: grid;
  gap: 24px;
}

.show-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

#home-agenda-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.show-card {
  display: flex;
  gap: 22px;
  padding: 24px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
}

.show-card-past {
  opacity: 0.75;
}

.show-date {
  min-width: 92px;
  display: grid;
  gap: 4px;
  padding-right: 18px;
  border-right: 1px solid var(--line);
}

.show-date span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.show-date small,
.release-mini span,
.muted,
.agenda-entry-date small {
  color: var(--muted);
}

.show-info a,
.release-copy a,
.record-card a,
.contact-card a,
.info-card a {
  color: var(--white);
  font-weight: 800;
}

.section-cta {
  margin-top: 28px;
  text-align: center;
}

.media-wall {
  background: #111114;
}

.release-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
}

.release-card,
.release-mini,
.contact-card,
.info-card,
.record-card,
.agenda-entry,
.contract-panel {
  background: rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  overflow: hidden;
}

.release-card.large-card {
  grid-row: span 2;
}

.release-copy,
.release-mini,
.contact-card,
.info-card,
.record-card > div {
  padding: 24px;
}

.release-mini {
  min-height: 220px;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-grid a {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
}

.gallery-grid img {
  aspect-ratio: 4 / 3;
  transition: transform 0.35s ease;
}

.gallery-grid a:hover img {
  transform: scale(1.05);
}

.timeline-section {
  background: #101012;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.timeline article {
  padding: 24px;
  border-left: 3px solid var(--orange);
  background: rgba(255, 255, 255, 0.02);
  border-radius: 18px;
}

.timeline article span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  color: var(--white);
}

.contact-section {
  padding-bottom: 104px;
}

.contact-grid,
.cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.accent-orange {
  background: rgba(255, 122, 26, 0.14);
}

.accent-purple {
  background: rgba(125, 60, 255, 0.14);
}

.accent-soft {
  background: rgba(255, 255, 255, 0.05);
}

.contact-card-logo {
  width: auto;
  height: 28px;
  opacity: 0.92;
  object-fit: contain;
}

.logo-minha-casa {
  height: 34px;
}

.logo-gibson {
  height: 24px;
}

.logo-ares {
  height: 34px;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.social-row a {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-footer {
  border-top: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.4);
}

.footer-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-cta {
  min-width: 180px;
}

.inner-page {
  min-height: calc(100vh - 162px);
}

.page-hero {
  background: #101012;
}

.page-hero img {
  aspect-ratio: 16 / 11;
  max-height: 420px;
}

.agenda-toolbar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.agenda-toolbar label {
  font-weight: 800;
}

.agenda-toolbar select {
  min-width: 220px;
  min-height: 48px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
}

.agenda-list {
  display: grid;
  gap: 18px;
}

.agenda-month-list {
  display: grid;
  gap: 32px;
}

.agenda-month-group {
  display: grid;
  gap: 18px;
}

.agenda-month-group h2 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2rem;
  letter-spacing: 1px;
}

.agenda-entry {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  grid-template-areas:
    "date copy"
    "action action";
  gap: 24px;
  align-items: center;
  padding: 24px;
}

.agenda-entry-date {
  grid-area: date;
  display: grid;
  gap: 4px;
}

.agenda-entry-date span {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3rem;
  line-height: 0.9;
}

.agenda-entry-copy strong {
  color: var(--white);
}

.agenda-entry-copy {
  grid-area: copy;
}

.agenda-entry-action {
  grid-area: action;
  display: flex;
  justify-content: stretch;
}

.agenda-entry-action .button {
  width: 100%;
  min-width: 0;
}

.status-pill {
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
}

.muted-pill {
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.full-gallery {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.contact-card {
  display: grid;
  gap: 12px;
}

.discography-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.record-card {
  display: grid;
  grid-template-columns: 220px 1fr;
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.course-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.course-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.course-card-copy {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.course-card-copy h2 {
  margin: 0;
  font-size: 1.35rem;
}

.course-card-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.spotify-player-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.video-feature {
  padding: 0 0 36px;
}

.video-feature-player {
  min-height: 100vh;
  background: #000000;
}

#featured-youtube-player,
#featured-youtube-player iframe {
  width: 100%;
  height: 100vh;
}

.video-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.local-preview-note {
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.local-preview-note strong {
  color: var(--white);
}

.local-preview-note code {
  color: var(--white);
  font-family: Consolas, monospace;
}

.video-thumb {
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}

.video-thumb.is-active {
  border-color: var(--orange);
}

.discography-home-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.disc-home-card {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.disc-home-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.disc-home-copy {
  padding: 18px;
  display: grid;
  gap: 8px;
}

.disc-home-copy span {
  color: var(--orange-soft);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 1px;
}

.disc-home-copy h3 {
  margin: 0;
  font-size: 1.15rem;
}

.disabled-button {
  opacity: 0.72;
  cursor: default;
  pointer-events: none;
}

.contract-panel {
  margin-top: 28px;
  padding: 28px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
}

.hide-mobile {
  display: inline-flex;
}

.flash-message {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--line);
  font-weight: 700;
}

.flash-success {
  background: rgba(42, 146, 66, 0.18);
  color: #c8ffd1;
}

.flash-error {
  background: rgba(255, 122, 26, 0.12);
  color: #ffd8bc;
}

.admin-body {
  min-height: 100vh;
  background: #09090b;
}

.admin-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.admin-header {
  border-bottom: 1px solid var(--line);
  background: rgba(8, 8, 8, 0.9);
}

.admin-header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.admin-header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.admin-main {
  padding: 48px 0 88px;
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.admin-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-weight: 800;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.admin-tab.is-active,
.admin-tab:hover {
  color: var(--white);
  border-color: rgba(255, 122, 26, 0.45);
  background: rgba(255, 122, 26, 0.14);
}

.admin-sections {
  display: grid;
  gap: 28px;
}

.admin-grid {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: 28px;
}

.admin-card,
.login-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.login-wrapper {
  min-height: calc(100vh - 84px);
  display: grid;
  place-items: center;
  padding: 40px 16px;
}

.login-card {
  width: min(460px, 100%);
}

.login-card h1,
.admin-card h2,
.admin-table-title {
  margin: 0 0 10px;
  font-family: "Bebas Neue", sans-serif;
  letter-spacing: 1px;
}

.login-card p,
.admin-card p,
.admin-note,
.admin-table td {
  color: var(--muted);
}

.admin-form,
.login-form {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.admin-form-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field label {
  font-size: 0.95rem;
  font-weight: 800;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  font: inherit;
}

.form-field textarea {
  min-height: 110px;
  resize: vertical;
}

.form-field-small {
  max-width: 110px;
}

.checkbox-field {
  display: flex;
  align-items: center;
  gap: 10px;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  padding: 0;
}

.admin-form-actions,
.admin-inline-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-danger {
  color: var(--white);
  background: #b3362f;
  border: 0;
}

.button-ghost {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
}

.admin-table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.admin-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.04);
}

.admin-table th,
.admin-table td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.admin-table td strong {
  color: var(--white);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
}

.status-active {
  background: rgba(42, 146, 66, 0.2);
  color: #c8ffd1;
}

.status-inactive {
  background: rgba(255, 122, 26, 0.12);
  color: #ffd8bc;
}

.admin-gallery-list {
  display: grid;
  gap: 18px;
  margin: 24px 0;
}

.admin-gallery-item {
  display: grid;
  grid-template-columns: 96px 110px minmax(220px, 1fr) auto;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
}

.admin-gallery-thumb {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 18px;
}

@media (max-width: 1080px) {
  .release-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .release-card.large-card {
    grid-column: span 2;
    grid-row: auto;
  }

  .gallery-grid,
  .full-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-gallery-item {
    grid-template-columns: 96px 1fr;
  }
}

@media (max-width: 920px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .hide-mobile {
    display: none;
  }

  .nav-shell {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    margin-left: 0;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
  }

  .site-header.open .site-nav {
    display: flex;
  }

  .nav-shell > .contact-trigger {
    display: none;
    width: 100%;
    margin-top: 12px;
    margin-left: 0;
    order: 4;
  }

  .site-header.open .nav-shell > .contact-trigger {
    display: inline-flex;
  }

  .site-nav a {
    width: 100%;
    padding: 14px 0;
  }

  .hero-grid,
  .page-hero-grid,
  .split-panel,
  .record-card,
  .admin-grid {
    grid-template-columns: 1fr;
  }

  #home-agenda-list {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 420px;
    max-height: none;
    padding: 36px 0 56px;
  }

  .hero-video-desktop {
    display: none;
  }

  .hero-video-mobile {
    display: block;
  }

  .slider-controls {
    bottom: 18px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    width: min(100%, 460px);
  }

  .stack-main {
    min-height: 420px;
  }

  .stack-float {
    right: 18px;
    width: 200px;
    height: 240px;
  }

  .agenda-entry {
    grid-template-columns: 1fr;
    grid-template-areas:
      "date"
      "copy"
      "action";
  }

  .agenda-entry-action {
    justify-content: stretch;
  }

  .contract-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .admin-form-row {
    grid-template-columns: 1fr;
  }

  .admin-gallery-item {
    grid-template-columns: 1fr;
  }

  .social-fixed {
    left: 10px;
  }
}

@media (max-width: 680px) {
  .section,
  .page-hero {
    padding: 72px 0;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-copy {
    width: min(100%, 92%);
  }

  .social-fixed {
    left: 12px;
    right: 12px;
    bottom: 14px;
    top: auto;
    flex-direction: row;
    justify-content: center;
    transform: none;
  }

  .social-fixed a {
    min-width: 46px;
    min-height: 46px;
    font-size: 0.66rem;
  }

  .hero-actions,
  .contract-actions,
  .social-row,
  .footer-shell,
  .agenda-toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .release-grid,
  .gallery-grid,
  .full-gallery,
  .contact-grid,
  .cards-grid,
  .discography-grid,
  .video-thumb-row {
    grid-template-columns: 1fr;
  }

  .release-card.large-card {
    grid-column: auto;
  }

  .show-card {
    flex-direction: column;
  }

  .show-date {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-right: 0;
    padding-bottom: 14px;
  }

  .footer-shell {
    padding: 18px 0;
    text-align: center;
  }

  .lightbox-overlay {
    padding: 20px;
  }

  .lightbox-dialog {
    max-height: calc(100vh - 40px);
  }

  .lightbox-image {
    max-height: calc(100vh - 40px);
    border-radius: 18px;
  }

  .lightbox-close {
    top: -10px;
    right: -4px;
    width: 42px;
    height: 42px;
    font-size: 1.7rem;
  }
}
