:root {
  --bg-night: #070c17;
  --bg-ink: #0f1a2d;
  --bg-panel: rgba(16, 24, 41, 0.78);
  --gold: #edc47a;
  --gold-2: #b88539;
  --silver: #e8edf7;
  --muted: #b9c0d3;
  --line: rgba(237, 196, 122, 0.25);
  --shadow-soft: 0 20px 45px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --ease-fluid: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  scroll-behavior: auto;
}

body {
  min-height: 100vh;
  color: var(--silver);
  font-family: "Outfit", sans-serif;
  background: radial-gradient(circle at 12% 4%, #18345f 0%, transparent 27%),
    radial-gradient(circle at 86% 18%, #4f2f0f 0%, transparent 24%),
    linear-gradient(130deg, var(--bg-night), var(--bg-ink));
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background: radial-gradient(
    circle at var(--mx, 50%) var(--my, 50%),
    rgba(237, 196, 122, 0.08),
    transparent 35%
  );
  transition: opacity 0.3s ease;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: rgba(255, 255, 255, 0.08);
  z-index: 40;
}

#scrollProgressBar {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #f8dfad, var(--gold-2));
  box-shadow: 0 0 12px rgba(237, 196, 122, 0.6);
  transition: width 0.15s linear;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(255, 255, 255, 0.34) 0.5px, transparent 0.5px);
  background-size: 3px 3px;
}

.halo {
  position: fixed;
  width: 36vw;
  height: 36vw;
  z-index: -1;
  filter: blur(78px);
  pointer-events: none;
  opacity: 0.35;
}

.halo-left {
  top: -10vw;
  left: -8vw;
  background: #d4a357;
  animation: none;
}

.halo-right {
  right: -9vw;
  bottom: -12vw;
  background: #26589b;
  animation: none;
}

.shell {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.hero {
  padding: 1.4rem 0 4.6rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.62rem 1rem;
  backdrop-filter: blur(8px);
  background: rgba(8, 14, 25, 0.64);
  transition: opacity 0.2s ease;
}

.brand {
  color: var(--silver);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.68rem;
}

.brand-mark {
  width: 2.15rem;
  height: 2.15rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: #211405;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
}

.brand-name {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.08rem;
}

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

.nav-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.94rem;
  transition: color 0.25s ease;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.25rem;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.25s ease;
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.hero-layout {
  margin-top: 2.7rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 1.3rem;
}

.hero-copy {
  border: 1px solid rgba(237, 196, 122, 0.14);
  border-radius: var(--radius-lg);
  padding: clamp(1.2rem, 2.8vw, 2.25rem);
  background: linear-gradient(145deg, rgba(15, 23, 40, 0.78), rgba(19, 13, 8, 0.58));
  box-shadow: var(--shadow-soft);
  transition: border-color 0.35s ease;
}

.hero-copy:hover {
  border-color: rgba(237, 196, 122, 0.3);
}

.kicker {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.72rem;
  color: var(--gold);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Playfair Display", serif;
}

h1 {
  margin-top: 0.85rem;
  font-size: clamp(2.2rem, 6.8vw, 4.7rem);
  line-height: 1.07;
}

.depth-line {
  display: block;
}

h2 {
  margin-top: 0.66rem;
  font-size: clamp(1.8rem, 4.6vw, 3.1rem);
  line-height: 1.1;
}

.lead {
  margin: 1.1rem 0 0;
  max-width: 58ch;
  color: var(--muted);
  line-height: 1.75;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.45rem;
}

.btn {
  text-decoration: none;
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: color 0.24s ease, border-color 0.24s ease, background-color 0.24s ease;
}

.btn:hover {
  transform: none;
}

.btn:active {
  transform: none;
}

.btn-solid {
  color: #2b1a07;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  box-shadow: 0 10px 26px rgba(237, 196, 122, 0.28);
}

.btn-ghost {
  color: var(--silver);
  border-color: var(--line);
  background: rgba(14, 21, 34, 0.62);
}

.hero-portrait {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(237, 196, 122, 0.18);
  border-radius: var(--radius-lg);
  background: rgba(9, 14, 24, 0.72);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.35s ease;
}

.portrait-image {
  position: relative;
  z-index: 3;
}

.hero-portrait:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.3);
}

.hero-portrait img {
  width: 100%;
  display: block;
  max-height: 760px;
  object-fit: cover;
}

.portrait-caption {
  position: absolute;
  right: 0.9rem;
  bottom: 0.9rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--silver);
  background: rgba(7, 11, 18, 0.7);
  border: 1px solid rgba(237, 196, 122, 0.22);
  z-index: 4;
}

section {
  padding: 4.3rem 0;
}

.section-head {
  max-width: 760px;
}

.about-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1.2rem;
  background: var(--bg-panel);
  box-shadow: var(--shadow-soft);
  transition: border-color 0.28s ease;
}

.panel:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.38);
}

.panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.panel p + p {
  margin-top: 0.95rem;
}

.pillars {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar {
  border-radius: var(--radius-md);
  border: 1px solid rgba(237, 196, 122, 0.18);
  padding: 1rem;
  background: linear-gradient(160deg, rgba(21, 31, 53, 0.72), rgba(22, 14, 8, 0.44));
  transition: border-color 0.28s ease;
}

.pillar:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.4);
}

.pillar h3 {
  font-size: 1.28rem;
}

.pillar p {
  margin: 0.6rem 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.masonry {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 0.75rem;
  grid-auto-rows: 100px;
}

.photo {
  margin: 0;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  position: relative;
  transition: border-color 0.25s ease;
}

.photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.45s ease;
}

.photo::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(transparent 35%, rgba(4, 8, 14, 0.66));
  transition: opacity 0.3s ease;
}

.photo:hover::after {
  opacity: 1;
}

.photo:hover img {
  transform: none;
  filter: saturate(1.1);
}

.photo:nth-child(1) {
  grid-column: span 4;
  grid-row: span 3;
}

.photo:nth-child(2) {
  grid-column: span 4;
  grid-row: span 4;
}

.photo:nth-child(3) {
  grid-column: span 4;
  grid-row: span 4;
}

.photo:nth-child(4) {
  grid-column: span 3;
  grid-row: span 3;
}

.photo:nth-child(5) {
  grid-column: span 3;
  grid-row: span 3;
}

.photo:nth-child(6) {
  grid-column: span 6;
  grid-row: span 4;
}

.spotify {
  padding-top: 3.4rem;
  padding-bottom: 2.6rem;
}

.spotify-card {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 23, 39, 0.86), rgba(15, 31, 24, 0.72));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: border-color 0.3s ease;
}

.spotify-card:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.38);
}

.spotify-card p {
  margin: 0 0 0.95rem;
  color: var(--muted);
  line-height: 1.68;
}

.spotify-help {
  font-size: 0.92rem;
  opacity: 0.95;
}

.spotify-card iframe {
  border-radius: 14px;
}

.spotify-link {
  margin-top: 0.9rem;
  display: inline-flex;
}

.events {
  padding-top: 3rem;
  padding-bottom: 2.6rem;
}

#events .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.events-card {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(14, 22, 37, 0.88), rgba(18, 12, 9, 0.72));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: border-color 0.3s ease;
}

.events-card:hover {
  transform: none;
  border-color: var(--line);
}

.events-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 0.75rem;
}

.events-label {
  color: var(--muted);
  font-size: 0.88rem;
}

.events-filter {
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(11, 16, 28, 0.78);
  color: var(--silver);
  padding: 0.45rem 0.8rem;
  font-family: "Outfit", sans-serif;
}

.events-refresh {
  padding-top: 0.45rem;
  padding-bottom: 0.45rem;
}

.events-status {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.65;
  min-height: 1.65em;
}

.events-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.event-item {
  border: 1px solid rgba(237, 196, 122, 0.16);
  border-radius: 12px;
  padding: 0.85rem;
  background: rgba(10, 15, 26, 0.5);
  display: grid;
  gap: 0.35rem;
  cursor: pointer;
  transition: none;
}

.event-item:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.16);
}

.event-item.active {
  border-color: rgba(237, 196, 122, 0.16);
  box-shadow: none;
}

.event-title {
  color: var(--silver);
  font-weight: 600;
}

.event-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.event-link {
  margin-top: 0.2rem;
  color: var(--gold);
  text-decoration: none;
  font-size: 0.88rem;
}

.event-link:hover {
  text-decoration: underline;
}

.events-map-wrap {
  margin-top: 0.9rem;
  border: 1px solid rgba(237, 196, 122, 0.18);
  border-radius: 14px;
  padding: 0.65rem;
  background: rgba(9, 14, 24, 0.62);
}

.events-map-title {
  margin: 0 0 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
  min-height: 1.25rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#eventsMap {
  width: 100%;
  border: 0;
  border-radius: 10px;
  height: 260px;
}

#eventsMapOpen {
  margin-top: 0.6rem;
  display: inline-flex;
}

.press {
  padding-top: 3rem;
  padding-bottom: 2.6rem;
}

.press-card {
  margin-top: 1.3rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(16, 24, 40, 0.86), rgba(22, 14, 9, 0.74));
  box-shadow: var(--shadow-soft);
  padding: clamp(1rem, 3vw, 1.5rem);
  transition: border-color 0.3s ease;
}

.press-card:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.38);
}

.press-status {
  margin: 0 0 0.85rem;
  color: var(--muted);
  line-height: 1.65;
}

.press-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.press-item {
  border: 1px solid rgba(237, 196, 122, 0.14);
  border-radius: 12px;
  padding: 0.8rem;
  background: rgba(10, 15, 26, 0.5);
  transition: border-color 0.24s ease;
}

.press-item:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.44);
}

.press-item a {
  color: var(--silver);
  text-decoration: none;
  font-weight: 500;
  line-height: 1.5;
}

.press-item a:hover {
  color: var(--gold);
}

.press-meta {
  margin-top: 0.35rem;
  font-size: 0.84rem;
  color: var(--muted);
}

.press-link {
  margin-top: 0.9rem;
  display: inline-flex;
  cursor: pointer;
  font-family: "Outfit", sans-serif;
}

.press-link[hidden] {
  display: none;
}

.contact {
  padding-top: 3.6rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, rgba(18, 27, 45, 0.86), rgba(25, 16, 10, 0.8));
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
  transition: border-color 0.3s ease;
}

.contact-card:hover {
  transform: none;
  border-color: rgba(237, 196, 122, 0.4);
}

.contact-card p {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.68;
  max-width: 64ch;
}

.social-icon {
  width: 1.05rem;
  height: 1.05rem;
  display: inline-flex;
  margin-right: 0.4rem;
}

.social-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.footer {
  text-align: center;
  border-top: 1px solid rgba(237, 196, 122, 0.2);
  color: var(--muted);
  font-size: 0.9rem;
  padding: 1.15rem;
  margin-top: 2.2rem;
}

.lightbox {
  border: none;
  width: min(92vw, 920px);
  border-radius: 20px;
  padding: 0.7rem;
  color: var(--silver);
  background: rgba(7, 12, 22, 0.96);
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(4px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 12px;
}

#lightboxCaption {
  text-align: center;
  margin: 0.7rem 0 0.3rem;
  color: var(--muted);
}

.close-lightbox {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--silver);
  background: rgba(13, 19, 32, 0.82);
  cursor: pointer;
}

.reveal {
  opacity: 1;
  transform: none;
  transition: none;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

.hero-copy,
.hero-portrait,
.nav {
  opacity: 1;
  transform: none;
}

body.loaded .nav,
body.loaded .hero-copy,
body.loaded .hero-portrait {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-portrait img {
    max-height: 620px;
  }

  .about-grid,
  .pillars {
    grid-template-columns: 1fr;
  }

  .masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 190px;
  }

  .photo,
  .photo:nth-child(1),
  .photo:nth-child(2),
  .photo:nth-child(3),
  .photo:nth-child(4),
  .photo:nth-child(5),
  .photo:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) {
  .nav {
    border-radius: var(--radius-md);
  }

  .nav-links {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    padding-bottom: 3.2rem;
  }

  section {
    padding: 3.4rem 0;
  }

  .masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .hero-copy,
  .panel,
  .contact-card {
    padding: 1rem;
  }
}

@media (hover: none), (pointer: coarse) {
  body {
    background: linear-gradient(130deg, var(--bg-night), var(--bg-ink));
  }

  body::before {
    display: none;
  }

  .scroll-progress {
    background: rgba(255, 255, 255, 0.04);
  }

  #scrollProgressBar {
    box-shadow: none;
    transition: none;
  }

  .nav-links a::after,
  .photo::after {
    display: none;
  }

  .nav {
    backdrop-filter: none;
    background: rgba(8, 14, 25, 0.9);
  }

  .btn,
  .hero-copy,
  .hero-portrait,
  .panel,
  .pillar,
  .photo,
  .spotify-card,
  .events-card,
  .event-item,
  .press-card,
  .press-item,
  .contact-card,
  .section-head {
    transition-duration: 0.01ms !important;
    transform: none !important;
  }

  .photo img {
    transition-duration: 0.01ms !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-copy,
  .hero-portrait,
  .panel,
  .pillar,
  .spotify-card,
  .events-card,
  .press-card,
  .contact-card,
  .event-item,
  .press-item {
    box-shadow: none;
  }

  .halo-left,
  .halo-right {
    animation: none !important;
    display: none;
  }

  .grain {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }

}

/* Static mode: remove all visual effects and motion feedback. */
* ,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}

html,
body {
  scroll-behavior: auto !important;
}

body::before,
.grain,
.halo,
.scroll-progress {
  display: none !important;
}

.reveal,
.reveal.in,
.hero-copy,
.hero-portrait,
.nav,
.section-head {
  opacity: 1 !important;
  transform: none !important;
}

.nav-links a:hover {
  color: var(--muted) !important;
}

.nav-links a:hover::after {
  transform: scaleX(0) !important;
}

.btn:hover,
.btn:active,
.hero-copy:hover,
.hero-portrait:hover,
.panel:hover,
.pillar:hover,
.photo:hover,
.photo:hover::after,
.photo:hover img,
.spotify-card:hover,
.events-card:hover,
.event-item:hover,
.press-card:hover,
.press-item:hover,
.contact-card:hover {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

.event-link:hover,
.press-item a:hover {
  text-decoration: none !important;
}

.press-item a:hover {
  color: var(--silver) !important;
}