/* ==========================================================================
   TOKENS
   ========================================================================== */
:root {
  --ink: #0B1620;
  --deep: #122A3E;
  --ocean: #2F6690;
  --gold: #C9A24B;
  --gold-soft: #E4C87A;
  --sand: #EFE7D4;
  --sand-deep: #E2D6B8;
  --paper: #F6F2E7;
  --white: #FCFAF4;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --max-width: 1180px;
  --pad: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ==========================================================================
   RESET
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--sand);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--font-display); margin: 0; font-weight: 500; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 3px;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ==========================================================================
   LOADER
   ========================================================================== */
.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
.loader.loader--hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.loader__logo {
  width: min(60vw, 320px);
  mix-blend-mode: screen;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
@keyframes loaderPulse {
  0%, 100% { opacity: 0.85; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.03); }
}
@media (prefers-reduced-motion: reduce) {
  .loader__logo { animation: none; }
}

/* Logos are supplied on a black background; screen blend drops the
   black out on any dark or photo background across the site. */
/* Logo is supplied on a black background; screen blend on the loader
   drops the black out against the loader's solid dark background. The
   nav/footer use a pre-processed transparent PNG instead, since those
   sit over varying backgrounds where blend-mode alone isn't reliable. */

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 30px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 2px;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-soft); transform: translateY(-2px); }

.btn--ghost {
  border-color: rgba(246, 242, 231, 0.35);
  color: var(--sand);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold-soft); color: var(--gold-soft); transform: translateY(-2px); }

.btn--ghost-dark {
  border-color: rgba(11, 22, 32, 0.3);
  color: var(--ink);
  background: transparent;
}
.btn--ghost-dark:hover { border-color: var(--ocean); color: var(--ocean); transform: translateY(-2px); }
/* .btn--ghost-dark is reserved for buttons placed on light (--paper) backgrounds. */

/* ==========================================================================
   NAV
   ========================================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  transition: background 0.3s var(--ease), padding 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}
.nav.scrolled {
  background: rgba(11, 22, 32, 0.82);
  backdrop-filter: blur(10px);
  padding-top: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(201, 162, 75, 0.15);
}
.nav__mark {
  display: flex;
  align-items: center;
  height: 40px;
}
.nav__mark img {
  height: 100%;
  width: auto;
  transition: height 0.3s var(--ease);
}
.nav.scrolled .nav__mark {
  height: 32px;
}
.nav__links {
  display: flex;
  gap: 36px;
}
.nav__links a {
  font-size: 0.92rem;
  color: var(--sand);
  position: relative;
  padding-bottom: 4px;
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover::after { width: 100%; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav__toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--sand);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  animation: heroLive 22s ease-in-out infinite;
  transform-origin: 52% 30%;
}
@keyframes heroLive {
  0%   { transform: scale(1) translate3d(0, 0, 0); }
  50%  { transform: scale(1.08) translate3d(-0.6%, -1%, 0); }
  100% { transform: scale(1) translate3d(0, 0, 0); }
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,22,32,0.38) 0%, rgba(11,22,32,0.08) 30%, rgba(11,22,32,0.32) 62%, rgba(11,22,32,0.92) 100%);
}
.hero__content {
  position: relative;
  max-width: 640px;
  padding: 0 var(--pad) 96px;
  opacity: 0;
  transform: translateY(24px);
  animation: heroIn 1s var(--ease) 0.2s forwards;
}
@keyframes heroIn {
  to { opacity: 1; transform: translateY(0); }
}
.hero__logo {
  width: clamp(280px, 34vw, 560px);
  margin-bottom: 28px;
  filter: drop-shadow(0 8px 30px rgba(0,0,0,0.45));
}
.hero__sub {
  font-size: 1.08rem;
  color: rgba(246, 242, 231, 0.82);
  max-width: 480px;
  margin-bottom: 34px;
}
.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 40px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(246, 242, 231, 0.65);
  font-size: 0.78rem;
  writing-mode: vertical-rl;
}
.hero__scroll svg { writing-mode: horizontal-tb; }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: stretch;
}
.about__image {
  overflow: hidden;
  min-height: 480px;
}
.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}
.about__content {
  padding: clamp(48px, 7vw, 96px) clamp(28px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
  max-width: 620px;
}
.about__content h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  margin-bottom: 6px;
}
.about__content p {
  font-size: 1.03rem;
  line-height: 1.75;
  color: #33302a;
}

/* ==========================================================================
   SECTION HEAD (shared)
   ========================================================================== */
.section-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(2rem, 3.4vw, 2.6rem);
  color: var(--white);
  margin-bottom: 12px;
}
.section-head p {
  color: rgba(246, 242, 231, 0.68);
  font-size: 1.02rem;
}

/* ==========================================================================
   MUSIC
   ========================================================================== */
.music {
  background: var(--ink);
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.tracklist {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}
.track {
  display: grid;
  grid-template-columns: 48px 96px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(201, 162, 75, 0.2);
  transition: padding-left 0.3s var(--ease);
}
.track:hover { padding-left: 8px; }
.track__num {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: rgba(246, 242, 231, 0.4);
}
.track__cover {
  width: 96px;
  height: 96px;
  border-radius: 3px;
  overflow: hidden;
  background: linear-gradient(155deg, var(--deep), var(--ocean));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.track__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.track__cover--generated .track__cover-title {
  font-family: var(--font-display);
  color: var(--gold-soft);
  font-size: 0.95rem;
  text-align: center;
  padding: 6px;
  line-height: 1.15;
}
.track__info h3 {
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 4px;
  font-weight: 500;
}
.track__info p {
  font-size: 0.92rem;
  color: rgba(246, 242, 231, 0.6);
}
.track__tag {
  display: inline-block;
  font-size: 0.72rem;
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 75, 0.4);
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.track__link {
  font-size: 0.88rem;
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
  white-space: nowrap;
}
.track__link:hover { border-color: var(--gold-soft); }

.stream-row {
  margin-top: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  padding-top: 36px;
  border-top: 1px solid rgba(201, 162, 75, 0.2);
}
.stream-row__label {
  font-size: 1rem;
  color: var(--white);
}
.stream-row__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}
.stream-row__links a {
  font-size: 0.92rem;
  color: rgba(246, 242, 231, 0.75);
  transition: color 0.25s var(--ease);
}
.stream-row__links a:hover { color: var(--gold-soft); }

/* ==========================================================================
   WATCH
   ========================================================================== */
.watch {
  background: var(--deep);
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.section-head--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.text-link {
  font-size: 0.92rem;
  color: var(--gold-soft);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease);
  white-space: nowrap;
  padding-bottom: 2px;
}
.text-link:hover { border-color: var(--gold-soft); }

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}
.video-card {
  position: relative;
}
.video-card--portrait {
  max-width: 300px;
}
.video-card__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
  cursor: pointer;
}
.video-card__frame--portrait {
  aspect-ratio: 9 / 16;
}
.video-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.video-card__frame:hover img { transform: scale(1.04); }
.video-card__frame iframe,
.video-card__frame video {
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  background: #000;
}
.video-card__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(11,22,32,0.05) 40%, rgba(11,22,32,0.65) 100%);
}
.video-card__play svg {
  width: 54px;
  height: 54px;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.4));
}
.video-card__meta {
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
}
.video-card__meta h3 {
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
}
.video-card__tag {
  font-size: 0.75rem;
  color: var(--gold-soft);
  white-space: nowrap;
}
.watch__empty {
  border: 1px solid rgba(201, 162, 75, 0.25);
  padding: clamp(40px, 6vw, 64px);
  max-width: 640px;
}
.watch__empty h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 14px; }
.watch__empty p { color: rgba(246, 242, 231, 0.7); }

/* ==========================================================================
   GALLERY
   ========================================================================== */
.gallery {
  background: var(--ink);
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 14px;
}
.gallery__grid button {
  border: none;
  padding: 0;
  background: none;
  overflow: hidden;
  position: relative;
}
.gallery__grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease), filter 0.5s var(--ease);
  filter: saturate(0.94);
}
.gallery__grid button:hover img {
  transform: scale(1.05);
  filter: saturate(1.05);
}
.gallery__grid button:nth-child(1) { grid-column: span 3; grid-row: span 3; }
.gallery__grid button:nth-child(2) { grid-column: span 3; grid-row: span 2; }
.gallery__grid button:nth-child(3) { grid-column: span 3; grid-row: span 2; }
.gallery__grid button:nth-child(4) { grid-column: span 2; grid-row: span 2; }
.gallery__grid button:nth-child(5) { grid-column: span 2; grid-row: span 2; }
.gallery__grid button:nth-child(6) { grid-column: span 2; grid-row: span 2; }

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(11, 22, 32, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s var(--ease);
}
.lightbox.open { opacity: 1; visibility: visible; }
.lightbox img {
  max-width: min(90vw, 900px);
  max-height: 85vh;
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

/* ==========================================================================
   EVENTS
   ========================================================================== */
.events {
  background: var(--deep);
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.events__empty {
  border: 1px solid rgba(201, 162, 75, 0.25);
  padding: clamp(40px, 6vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  max-width: 640px;
}
.events__empty h3 {
  font-size: 1.5rem;
  color: var(--white);
}
.events__empty p {
  color: rgba(246, 242, 231, 0.7);
}
.events__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.event-card {
  border: 1px solid rgba(201, 162, 75, 0.25);
  padding: 28px;
}
.event-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.event-card dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 14px; margin-bottom: 18px; }
.event-card dt { color: rgba(246,242,231,0.5); font-size: 0.85rem; }
.event-card dd { margin: 0; color: var(--sand); font-size: 0.92rem; }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact {
  background: var(--ink);
  padding: clamp(64px, 9vw, 120px) var(--pad);
}
.contact__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(32px, 5vw, 72px);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.field label {
  font-size: 0.85rem;
  color: rgba(246, 242, 231, 0.65);
}
.field input,
.field select,
.field textarea {
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(246, 242, 231, 0.28);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 2px;
  transition: border-color 0.25s var(--ease);
}
.field select option { color: var(--ink); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  outline: none;
}
.field textarea { resize: vertical; }

.contact__submit-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact__note {
  margin-top: 14px;
  font-size: 0.88rem;
  color: var(--gold-soft);
  min-height: 1.2em;
}

.contact__aside h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 20px;
}
.social-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.social-list a {
  display: flex;
  justify-content: space-between;
  font-size: 0.98rem;
  color: rgba(246, 242, 231, 0.85);
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(246, 242, 231, 0.12);
  transition: color 0.25s var(--ease);
}
.social-list a:hover { color: var(--gold-soft); }
.social-list a span.handle { color: rgba(246, 242, 231, 0.45); }
.contact__response {
  font-size: 0.88rem;
  color: rgba(246, 242, 231, 0.5);
}
.contact__phones {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}
.contact__phones a {
  font-size: 0.95rem;
  color: rgba(246, 242, 231, 0.85);
  transition: color 0.25s var(--ease);
}
.contact__phones a:hover { color: var(--gold-soft); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(201, 162, 75, 0.15);
  padding: 40px var(--pad) 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer__logo {
  height: 44px;
  width: auto;
}
.footer p {
  font-size: 0.85rem;
  color: rgba(246, 242, 231, 0.45);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 900px) {
  .about { grid-template-columns: 1fr; }
  .about__image { min-height: 340px; }
  .contact__grid { grid-template-columns: 1fr; }
  .field-row { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav__links {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(78vw, 320px);
    background: var(--deep);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 28px;
    padding: 40px;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1.1rem; }
  .nav__toggle { display: flex; }

  .track {
    grid-template-columns: 32px 64px 1fr;
    row-gap: 10px;
  }
  .track__link { grid-column: 2 / -1; }
  .track__cover { width: 64px; height: 64px; }

  .hero__content { padding-bottom: 72px; }
  .hero__scroll { display: none; }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery__grid button:nth-child(n) { grid-column: span 1; grid-row: span 2; }
  .gallery__grid button:nth-child(1) { grid-column: span 2; grid-row: span 3; }
}
