@font-face {
  font-family: 'OCR A BT';
  src: url('OCR-a___.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: block;
}

*, ::after, ::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --concrete: #1a1815;
  --raw: rgba(31, 29, 26, 0.08);
  --deep: #d5c7ad;
  --void: #dfd0b7;
  --dust: #80786b;
  --form: #a8a195;
  --gold: #9c8454;
  --gold-gleam: linear-gradient(135deg, #a38b58 0%, #c2ac7e 40%, #8a7345 60%, #5c4b2b 100%);
  --lux-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --tech-ease: cubic-bezier(0.16, 1, 0.3, 1);
}

body.dark-mode {
  --concrete: #e8e6e1;
  --raw: rgba(232, 230, 225, 0.06);
  --deep: #161514;
  --void: #121110;
  --dust: #8a8782;
  --form: #524e4a;
  --gold: #bda573;
  --gold-gleam: linear-gradient(135deg, #c7af7e 0%, #e6d6b3 40%, #bda573 60%, #917c50 100%);
}

body, html {
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: var(--void);
  cursor: none;
  transition: background .8s var(--lux-ease);
}

body {
  font-family: 'OCR A BT';
  color: var(--concrete);
  text-transform: lowercase;
  letter-spacing: .05em;
  position: relative;
}

#cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10000;
  width: 5px;
  height: 5px;
  background: var(--concrete);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width .3s var(--tech-ease), height .3s var(--tech-ease), background .3s ease, box-shadow .3s ease;
  pointer-events: none;
}

body.cursor-hover #cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--gold-gleam);
  background-size: 200% auto;
  box-shadow: 0 0 12px rgba(189, 165, 115, .6);
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 600;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.15'/%3E%3C/svg%3E");
  background-size: 300px 300px;
  opacity: .08;
  mix-blend-mode: multiply;
  pointer-events: none;
}

body.dark-mode .grain {
  mix-blend-mode: overlay;
  opacity: .12;
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 25%, rgba(0, 0, 0, .04) 55%, rgba(0, 0, 0, .15) 100%);
  transition: opacity .8s var(--lux-ease);
  pointer-events: none;
}

body.dark-mode .vignette {
  background: radial-gradient(ellipse 80% 80% at 50% 50%, transparent 25%, rgba(0, 0, 0, .08) 55%, rgba(0, 0, 0, .3) 100%);
}

.page {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 10;
  width: 100%;
  height: 100%;
  padding: 0;
}

.block-top {
  padding: 48px 56px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  opacity: 0;
  animation: appear 1.5s var(--tech-ease) .8s forwards;
  flex-shrink: 0;
}

.wordmark-wrap {
  text-decoration: none;
  cursor: none;
  opacity: .8;
  transition: all .4s var(--lux-ease);
}

.wordmark {
  font-size: 14px;
  letter-spacing: .45em;
  color: var(--dust);
  line-height: 2.2;
  transition: all .4s var(--lux-ease);
}

.wordmark-primary {
  color: var(--concrete);
  font-size: 15px;
}

.wordmark-wrap:hover .wordmark {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(189, 165, 115, .4);
}

.top-right-actions {
  display: flex;
  gap: 24px;
  align-items: center;
}

.open-tag, .theme-btn {
  font-family: inherit;
  background: 0 0;
  border: none;
  text-decoration: none;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--dust);
  text-align: right;
  cursor: none;
  transition: all .4s var(--lux-ease);
}

.open-tag:hover, .theme-btn:hover {
  color: var(--gold);
  text-shadow: 0 0 10px rgba(189, 165, 115, .4);
}

.block-center {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 56px 40px;
  flex-grow: 1;
  flex-shrink: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
}

.block-center::-webkit-scrollbar {
  display: none;
}

.view {
  position: relative;
  height: 100%;
  display: none;
  flex-direction: column;
  justify-content: flex-start;
  width: 100%;
  min-height: 0;
}

.view.active {
  display: flex;
  animation: massReveal .8s var(--tech-ease) forwards;
}

#view-home {
  justify-content: center;
}

.sec-num {
  font-size: 12px;
  letter-spacing: .3em;
  margin-bottom: 12px;
  flex-shrink: 0;
  background: var(--gold-gleam);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% auto;
  animation: 4s linear infinite gleam;
}

.sec-title {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--concrete);
  font-weight: 400;
  letter-spacing: -.02em;
  line-height: 1;
  margin-bottom: 24px;
  flex-shrink: 0;
}

.home-layout {
  display: flex;
  gap: 64px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  flex-grow: 1;
  min-height: 0;
}

.home-left {
  flex: 1;
}

.home-right {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.logo-img {
  object-fit: contain;
  height: auto;
  display: block;
  width: clamp(200px, 35vw, 600px);
  margin-bottom: 20px;
  opacity: .85;
  filter: invert(1);
  transition: filter .8s var(--lux-ease), opacity .8s var(--lux-ease);
}

body.dark-mode .logo-img {
  filter: none;
  opacity: .92;
}

.datum {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: var(--raw);
  margin: 32px 0 24px;
  transition: background .8s var(--lux-ease);
}

.descriptor {
  color: var(--dust);
  font-size: 13px;
  letter-spacing: .5em;
}

.home-blurb {
  color: var(--dust);
  font-size: 13px;
  line-height: 2;
  letter-spacing: .15em;
  text-transform: uppercase;
  text-align: justify;
}

.home-blurb strong {
  color: var(--concrete);
  font-weight: 400;
}

.blurb-mobile {
  display: none;
}

.home-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--raw);
  transition: border-color .8s var(--lux-ease);
}

.hc-row {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  letter-spacing: .2em;
}

.hc-label {
  color: var(--dust);
  width: 140px;
  flex-shrink: 0;
}

.hc-link {
  text-decoration: none;
  color: var(--concrete);
  cursor: none;
  transition: color .3s;
}

.hc-link:hover {
  color: var(--gold);
}

.roster-wrap, .schedule-wrap {
  width: 100%;
  border-top: 1px solid var(--raw);
  flex-grow: 1;
  overflow-y: auto;
  scrollbar-width: none;
  transition: border-color .8s var(--lux-ease);
}

.schedule-wrap::-webkit-scrollbar, .roster-wrap::-webkit-scrollbar {
  display: none;
}

.roster-row, .schedule-row, .tour-accordion {
  border-bottom: 1px solid var(--raw);
}

.schedule-row {
  position: relative;
  text-decoration: none;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr auto;
  align-items: center;
  padding: 32px 24px;
  color: var(--dust);
  cursor: none;
  overflow: hidden;
  transition: color .6s;
}

.schedule-row:hover {
  color: var(--concrete);
}

.schedule-row:hover::before {
  height: 100%;
}

button.schedule-row {
  font-family: inherit;
  background: 0 0;
  border: none;
  width: 100%;
  text-align: left;
  border-bottom: 1px solid var(--raw);
  outline: 0;
}

button.schedule-row:hover {
  background: rgba(168, 144, 96, .05);
}

.schedule-row::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--raw);
  transition: height .5s cubic-bezier(.76, 0, .24, 1);
  z-index: 0;
}

.r-data, .s-data {
  position: relative;
  z-index: 1;
}

.s-date, .s-location {
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: .2em;
}

.s-artist {
  color: var(--concrete);
  font-size: clamp(32px, 4vw, 64px);
  letter-spacing: -.02em;
  line-height: 1;
  transition: color .5s, transform .5s;
  opacity: .8;
}

.schedule-row:hover .s-artist {
  color: var(--concrete);
  transform: translateX(8px);
  opacity: 1;
}

.s-action {
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--form);
  transition: color .5s;
}

.schedule-row:hover .s-action {
  color: var(--gold);
}

.tour-accordion .schedule-row {
  border-bottom: none;
}

.accordion-content {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows .5s cubic-bezier(.76, 0, .24, 1), opacity .4s;
}

.tour-accordion.open .accordion-content {
  grid-template-rows: 1fr;
  opacity: 1;
}

.accordion-inner {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.accordion-icon {
  display: inline-block;
  margin-right: 4px;
  color: var(--form);
  transition: color .3s;
  font-weight: 700;
}

button.schedule-row:hover .accordion-icon {
  color: var(--gold);
}

.accordion-inner .schedule-row {
  background: 0 0;
  border-top: 1px solid var(--raw);
}

@media (min-width: 851px) {
  .accordion-inner .schedule-row {
    padding-left: 56px;
  }
  .accordion-inner .s-artist {
    font-size: clamp(24px, 3vw, 40px);
    opacity: .6;
  }
}

.schedule-row.past-deemphasize {
  opacity: .4;
  pointer-events: none;
}

.schedule-row.past-deemphasize .s-artist {
  color: var(--dust);
}

.roster-row {
  position: relative;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 12px 32px;
  cursor: none;
  overflow: hidden;
  transition: border-color .8s var(--lux-ease);
}

.roster-row:hover::before {
  height: 100%;
}

.roster-row:active {
  transform: scale(.99);
}

.roster-row::before, .service-card::before, .nav-item::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--raw);
  transition: height .6s var(--lux-ease), background .8s var(--lux-ease);
  z-index: 0;
}

.r-avatar {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  margin-right: 24px;
  background: var(--deep);
  overflow: hidden;
  border-radius: 50%;
  opacity: .9;
  transition: background .8s var(--lux-ease);
}

.r-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(100%) contrast(1.1) brightness(.85);
  transition: filter .6s var(--lux-ease), transform .6s var(--lux-ease);
}

.roster-row:hover .r-avatar img {
  filter: grayscale(20%) contrast(1.05) brightness(1);
  transform: scale(1.04);
}

.r-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.r-name {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--concrete);
  line-height: 1;
  letter-spacing: -.02em;
  transition: transform .6s var(--lux-ease);
  opacity: .9;
}

.roster-row:hover .r-name {
  opacity: 1;
  transform: translateX(8px);
}

.r-role, .r-tag {
  transition: color .5s;
}

.roster-row:hover .r-role {
  color: var(--concrete);
}

.r-role {
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--dust);
}

.r-tag {
  font-size: 11px;
  letter-spacing: .4em;
  color: var(--form);
  margin-left: auto;
  text-align: right;
}

.roster-row:hover .r-tag {
  color: var(--gold);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  background: var(--raw);
  border: 1px solid var(--raw);
  flex-grow: 1;
  min-height: 0;
  width: calc(100% - 2px);
  margin-bottom: 2px;
  transition: background .8s var(--lux-ease), border-color .8s var(--lux-ease);
}

.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px 40px;
  text-align: left;
  background: var(--void);
  overflow: hidden;
  outline: 0;
  transition: background .8s var(--lux-ease);
  border: none;
  font-family: inherit;
  cursor: none;
}

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

.service-card:active {
  transform: scale(.995);
}

.svc-content {
  position: relative;
  display: flex;
  flex-direction: column;
  z-index: 1;
  height: 100%;
  justify-content: center;
}

.svc-title {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--concrete);
  line-height: 1.1;
  margin-bottom: 0;
  transition: color .6s var(--lux-ease), transform .6s var(--lux-ease);
  font-weight: 400;
  opacity: .9;
}

.service-card:hover .svc-title {
  opacity: 1;
  transform: translateX(8px);
  background: var(--gold-gleam);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-size: 200% auto;
  animation: 3s linear infinite gleam;
}

.svc-extended {
  display: none;
}
/* --- CUSTOM FORM STYLING --- */
.ao-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  max-width: 400px;
}

.ao-input {
  background: transparent;
  border: 1px solid var(--raw);
  color: var(--concrete);
  font-family: inherit;
  padding: 12px 16px;
  font-size: 12px;
  outline: none;
  letter-spacing: 0.15em;
  transition: border-color 0.4s var(--lux-ease);
  cursor: none; /* Keeps your custom dot active over inputs */
}

.ao-input::placeholder {
  color: var(--dust);
  opacity: 0.6;
}

.ao-input:focus {
  border-color: var(--gold);
}

.ao-textarea {
  min-height: 100px;
  resize: vertical;
}

.ao-submit {
  background: var(--raw);
  color: var(--concrete);
  border: 1px solid var(--raw);
  font-family: inherit;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  cursor: none;
  transition: all 0.4s var(--lux-ease);
}

.ao-submit:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: transparent;
}
.media-workspace, .svc-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--void);
  z-index: 100;
  display: flex;
  flex-direction: column;
  clip-path: circle(0px at var(--click-x, 50%) var(--click-y, 50%));
  transition: clip-path .9s var(--lux-ease), background .8s var(--lux-ease), opacity .4s ease;
  opacity: 0;
  pointer-events: none;
}

.media-index, .svc-overlay {
  overflow-y: auto;
  scrollbar-width: none;
}

.svc-overlay::-webkit-scrollbar {
  display: none;
}

.media-workspace.active, .svc-overlay.active {
  clip-path: circle(150% at var(--click-x, 50%) var(--click-y, 50%));
  pointer-events: all;
  opacity: 1;
}

.svc-overlay-inner {
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--lux-ease) .3s;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 56px 80px;
}
/* --- POPUP MODAL & FORM STYLING --- */
.form-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--lux-ease);
}

.form-modal.active {
  opacity: 1;
  pointer-events: all;
}

.form-modal-inner {
  background: var(--void);
  border: 1px solid var(--raw);
  width: 90%;
  max-width: 400px;
  padding: 32px;
  transform: translateY(20px);
  transition: transform 0.5s var(--lux-ease), background 0.8s var(--lux-ease);
}

.form-modal.active .form-modal-inner {
  transform: translateY(0);
}

.form-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--raw);
  padding-bottom: 16px;
}

.ao-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ao-input {
  background: transparent;
  border: 1px solid var(--raw);
  color: var(--concrete);
  font-family: inherit;
  padding: 12px 16px;
  font-size: 12px;
  outline: none;
  letter-spacing: 0.15em;
  transition: border-color 0.4s var(--lux-ease), color 0.8s var(--lux-ease);
  cursor: none;
  width: 100%;
}

.ao-input::placeholder {
  color: var(--dust);
  opacity: 0.6;
}

.ao-input:focus {
  border-color: var(--gold);
}

.ao-submit {
  background: var(--concrete);
  color: var(--void);
  border: 1px solid var(--concrete);
  font-family: inherit;
  padding: 14px;
  font-size: 11px;
  letter-spacing: 0.3em;
  cursor: none;
  transition: all 0.4s var(--lux-ease);
  margin-top: 8px;
}

.ao-submit:hover {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.media-workspace.active .media-container, .media-workspace.active .media-ws-header, .svc-overlay.active .svc-overlay-inner {
  opacity: 1;
  transform: translateY(0);
}

.overlay-close-btn {
  border: none;
  font-family: inherit;
  cursor: none;
  align-self: flex-start;
  background: 0 0;
  font-size: 12px;
  letter-spacing: .4em;
  color: var(--dust);
  margin-bottom: 40px;
  transition: color .4s var(--lux-ease);
  padding: 0;
}

.overlay-close-btn:hover {
  background: var(--gold-gleam);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: 3s linear infinite gleam;
}

.svc-overlay-title {
  font-size: clamp(40px, 6vw, 80px);
  color: var(--concrete);
  margin-bottom: 32px;
  font-weight: 400;
}

.svc-overlay-body p {
  font-size: 16px;
  line-height: 2;
  letter-spacing: .05em;
  color: var(--dust);
  margin-bottom: 24px;
  text-align: justify;
}

.svc-media-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--deep);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 32px 0;
  color: var(--dust);
  font-size: 12px;
  letter-spacing: .2em;
  font-family: inherit;
  border: 1px solid var(--raw);
  transition: background .8s var(--lux-ease), border-color .8s var(--lux-ease);
}

.media-index {
  display: flex;
  flex-direction: column;
  width: 100%;
  flex-grow: 1;
  min-height: 0;
}

.display-area, .nav-item {
  position: relative;
  overflow: hidden;
}

.media-workspace {
  padding: 20px 56px 40px;
}

.media-ws-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .8s var(--lux-ease) .3s;
}
/* --- CUSTOM DROPDOWN STYLING --- */
select.ao-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg fill="%2380786b" height="24" viewBox="0 0 24 24" width="24" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/><path d="M0 0h24v24H0z" fill="none"/></svg>');
  background-repeat: no-repeat;
  background-position-x: calc(100% - 8px);
  background-position-y: center;
  padding-right: 32px;
}

select.ao-input option {
  background: var(--void);
  color: var(--concrete);
}
.ws-artist-title {
  font-size: clamp(32px, 5vw, 64px);
  color: var(--concrete);
  margin: 0;
  line-height: 1;
}

.media-container {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
  min-height: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: all .8s var(--lux-ease) .4s;
}

.display-area, .media-menu {
  flex-direction: column;
  display: flex;
}

.display-area {
  width: 100%;
  background: var(--deep);
  border: 1px solid var(--raw);
  transition: background .8s var(--lux-ease), border-color .8s var(--lux-ease);
}

#custom-video, #gallery-img {
  width: 100%;
  max-height: 52vh;
  background: 0 0;
  filter: grayscale(100%) contrast(1.1);
  transition: filter .8s var(--lux-ease);
}

#custom-video.is-playing, #gallery-img.is-active {
  filter: grayscale(0%) contrast(1);
}

.media-menu {
  justify-content: space-between;
  height: 100%;
  max-height: 60vh;
}

.menu-section-top {
  display: flex;
  flex-direction: column;
}

.menu-label, .v-sel {
  font-size: 11px;
  color: var(--dust);
}

.menu-label {
  letter-spacing: .4em;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--raw);
  padding-bottom: 8px;
  transition: border-color .8s var(--lux-ease);
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.v-sel {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: 0 0;
  font-family: inherit;
  cursor: none;
  border: 1px solid var(--raw);
  transition: all .4s var(--lux-ease);
}

.v-sel:hover {
  border-color: var(--gold);
  color: var(--concrete);
}

.v-sel.active {
  background: var(--concrete);
  color: var(--void);
  border-color: var(--concrete);
}

.active-media-name {
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--concrete);
  margin-bottom: 24px;
  text-transform: lowercase;
  min-height: 14px;
}

.btn-gallery {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 0;
  border: none;
  border-bottom: 1px solid var(--raw);
  background: 0 0;
  font-family: inherit;
  text-align: left;
  cursor: none;
  transition: color .4s var(--lux-ease);
}

.btn-gallery .g-name {
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--dust);
  transition: color .4s var(--lux-ease);
}

.btn-gallery .g-status {
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--form);
  transition: color .4s var(--lux-ease);
}

.btn-gallery:hover .g-name {
  color: var(--gold);
}

.btn-gallery.active .g-name, .btn-gallery.active .g-status {
  color: var(--concrete);
}

.media-controls-dock {
  padding: 16px 24px;
  background: var(--void);
  border-top: 1px solid var(--raw);
  width: 100%;
  transition: background .8s var(--lux-ease), border-color .8s var(--lux-ease);
}

.dock-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.m-btn-group {
  display: flex;
  gap: 24px;
}

.m-btn, .m-info {
  font-size: 12px;
  color: var(--dust);
}

.m-btn {
  background: 0 0;
  border: none;
  font-family: inherit;
  letter-spacing: .2em;
  cursor: none;
  transition: all .4s var(--lux-ease);
}

.m-btn:hover {
  color: var(--gold);
}

.m-info {
  letter-spacing: .1em;
}

.block-bottom {
  opacity: 0;
  animation: appear 2s var(--lux-ease) .8s forwards;
  flex-shrink: 0;
}

.nav-slab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--raw);
  transition: border-color .8s var(--lux-ease);
}

.nav-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 32px 20px;
  border-right: 1px solid var(--raw);
  text-decoration: none;
  cursor: none;
  color: var(--dust);
  transition: color .8s var(--lux-ease), border-color .8s var(--lux-ease);
}

.nav-item:last-child {
  border-right: none;
}

.nav-item.active, .nav-item:hover {
  color: var(--concrete);
}
.nav-item.active::before, 
.nav-item:hover::before {
  height: 100%;
}
.nav-item:hover .nav-label {
  background: var(--gold-gleam);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-size: 200% auto;
  animation: 3s linear infinite gleam;
}

.nav-jp, .nav-num {
  position: relative;
  z-index: 1;
  color: var(--form);
}

.nav-item.active .nav-jp, .nav-item.active .nav-num, .nav-item:hover .nav-jp, .nav-item:hover .nav-num {
  color: var(--dust);
}

.nav-num {
  font-size: 11px;
  margin-bottom: 6px;
  letter-spacing: .3em;
  transition: color .6s var(--lux-ease);
}

.nav-label {
  position: relative;
  z-index: 1;
  font-size: clamp(11px, 1vw, 14px);
  letter-spacing: .3em;
  transition: opacity .4s;
}

.nav-jp {
  font-size: 10px;
  letter-spacing: .2em;
  margin-top: 6px;
  transition: color .6s var(--lux-ease);
}

.loader {
  position: fixed;
  inset: 0;
  background: var(--void);
  z-index: 5000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s var(--tech-ease), background .8s var(--lux-ease);
}

.loader-inner {
  font-size: 12px;
  letter-spacing: .6em;
  color: var(--concrete);
  text-transform: lowercase;
  animation: loaderFade 1.2s var(--lux-ease) .8s forwards;
}

.loader.gone {
  transform: translateY(-100%);
}

@keyframes gleam {
  to { background-position: 200% center; }
}

@keyframes loaderFade {
  to { opacity: 0; filter: blur(4px); }
}

@keyframes appear {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes massReveal {
  0% { opacity: 0; filter: blur(8px); }
  100% { opacity: 1; filter: blur(0); }
}

@media(max-width: 850px) {
  body { 
    cursor: auto; 
  }
  
  #cursor-dot, .blurb-desktop, .cur { 
    display: none; 
  }
  
  body, html { 
    overflow: hidden; 
    height: 100vh; 
    height: 100dvh; 
    position: fixed; 
    width: 100%; 
  }
  
  .page { 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
  }
  
.block-top { 
    padding: 24px 24px 0; /* Snaps alignment back to the 24px body margins */
    flex-shrink: 0;
  }

  .wordmark {
    font-size: 14px; /* Restored to original size */
    letter-spacing: 0.15em; /* Tightened the spacing instead of shrinking the font */
  }
  
  .wordmark-primary {
    font-size: 15px; /* Restored to original size */
  }

  .theme-btn {
    font-size: 12px; /* Restored to original size */
    letter-spacing: 0.15em;
    white-space: nowrap; 
  }
  
  .block-center { 
    padding: 24px 24px; /* Wider side margins */
    flex-grow: 1; 
    flex-shrink: 1; 
    min-height: 0; 
    display: flex; 
    flex-direction: column; 
    overflow: hidden; 
  }
  
  .view { 
    flex: 1; 
    min-height: 0; 
    justify-content: flex-start; 
  }
  
  #view-home { 
    justify-content: center; 
  }
  
  .sec-title { 
    font-size: 24px; 
    margin-bottom: 24px; /* Doubled margin below section titles */
    flex-shrink: 0; 
  }
  
  .blurb-mobile, .hc-row { 
    font-size: 12px; 
  }
  
  .sec-num { 
    margin-bottom: 8px; 
    flex-shrink: 0; 
  }
  
  .home-layout { 
    flex: none; 
    flex-direction: column; 
    align-items: flex-start; 
    justify-content: center; 
    gap: 40px; /* Massive jump from 24px to let the sections breathe */
    margin: auto 0; 
    width: 100%; 
  }
  
  .home-left, .home-right { 
    flex: none; 
    width: 100%; 
    display: block; 
    max-width: none; 
  }
  
  .logo-img { 
    margin-bottom: 0; 
    max-height: 24px; 
    width: auto; 
    flex-shrink: 0; 
  }
  
  .datum { 
    margin: 24px 0; /* Doubled the space around the divider line */
    flex-shrink: 0; 
  }
  
  .blurb-mobile { 
    display: block; 
    line-height: 1.9; /* Pushed from 1.7 to 1.9 for ultimate readability */
  }
  
  .home-contact { 
    margin-top: 40px; /* Big gap before contact info */
    padding-top: 32px; 
    gap: 24px; /* More space between email and press link */
    flex-shrink: 0; 
    border-top: 1px solid var(--raw); 
  }
  
.hc-label { 
    width: 80px; /* Reduced from 110px to give the link more horizontal room */
  }
  
  .hc-link {
    white-space: nowrap; /* Forces the text and arrow to stay glued together on one line */
  }
  
  .schedule-row { 
    display: grid; 
    grid-template-columns: 1fr auto; 
    grid-template-rows: auto auto auto; 
    gap: 8px 16px; /* Increased internal gaps */
    padding: 24px 16px; /* Substantially taller tour dates */
    align-items: center; 
  }
  
  .s-date { 
    grid-column: 1; 
    grid-row: 1; 
  }
  
  .s-artist { 
    grid-column: 1; 
    grid-row: 2; 
    font-size: 28px; 
    padding: 4px 0; 
  }
  
  .s-location { 
    grid-column: 1; 
    grid-row: 3; 
  }
  
  .s-action { 
    grid-column: 2; 
    grid-row: 1/-1; 
    margin-top: 0; 
    padding-top: 0; 
    border: none; 
    text-align: right; 
    justify-self: end; 
  }
  
  .roster-row { 
    padding: 16px; /* Doubled vertical padding for artist roster */
    display: flex; 
  }
  
  .r-avatar { 
    width: 44px; 
    height: 44px; 
    margin-right: 16px; 
  }
  
  .r-tag { 
    display: block; 
  }
  .text-arrow {
  font-variant-emoji: text; /* Explicitly tells the browser NOT to use emoji styling */
  font-family: Arial, Helvetica, sans-serif; /* A fallback that guarantees a text-based arrow */
}
  .r-name { 
    font-size: clamp(20px, 3.5vw, 32px); 
  }
  
  .services-grid { 
    grid-template-columns: 1fr 1fr; 
    grid-template-rows: 1fr 1fr; 
    flex-grow: 1; 
    flex-shrink: 1; 
    min-height: 0; 
    gap: 1px; 
    border: 1px solid var(--raw); 
    background: var(--raw); 
    width: calc(100% - 2px); 
    margin-bottom: 0; 
  }
  
  .service-card { 
    border: none; 
    padding: 24px 12px; /* Much taller service cards */
    justify-content: center; 
  }
  
  .svc-title { 
    font-size: clamp(12px, 3.5vw, 16px); 
    margin-bottom: 0; 
  }
  
  .svc-overlay-inner { 
    padding: 32px 24px 56px; /* Expanded the service popup modal */
  }
  
  .svc-overlay-title { 
    font-size: 28px; 
    margin-bottom: 24px;
  }
  
  .svc-overlay-body p { 
    font-size: 13px; 
    line-height: 1.8; 
  }
  
  .media-workspace { 
    padding: 24px 20px; /* Expanded media workspace */
  }
  
  .media-container { 
    grid-template-columns: 1fr; 
    gap: 20px; 
    flex-grow: 1; 
    min-height: 0; 
  }
  
  .display-area { 
    width: 100%; 
    flex-shrink: 1; 
    min-height: 0; 
    justify-content: center; 
    border: none; 
    background: 0 0; 
  }
  
  .media-controls-dock, .nav-slab { 
    border-top: 1px solid var(--raw); 
  }
  
  #custom-video, #gallery-img { 
    max-height: 100%; 
    object-fit: contain; 
  }
  
  .media-menu { 
    max-height: none; 
    gap: 16px; 
    flex-shrink: 0; 
  }
  
  .media-controls-dock { 
    padding: 16px 0 0; 
  }
  
  .block-bottom { 
    margin-top: 0; 
    flex-shrink: 0; 
  }
  
  .nav-slab { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .nav-item { 
    padding: 16px 4px 14px; /* Taller, chunkier bottom navigation buttons */
    align-items: center; 
    border-bottom: none; 
    border-right: 1px solid var(--raw); 
  }
  
  .nav-item:last-child { 
    border-right: none; 
  }
  
  .nav-item:nth-child(2n) { 
    border-right: 1px solid var(--raw); 
  }
  
  .nav-item:nth-child(n+3) { 
    border-top: none; 
  }
  
  .nav-num { 
    margin-bottom: 4px; 
    font-size: 9px; 
  }
  
  .nav-label { 
    font-size: 11px; 
    letter-spacing: .1em; 
  }
  
  .nav-item:hover .nav-label { 
    background: 0 0; 
    -webkit-text-fill-color: var(--gold); 
    text-shadow: 0 0 8px rgba(189,165,115,.4); 
  }
  
  .nav-jp { 
    margin-top: 4px; 
    font-size: 8px; 
  }
}
