:root {
  --ink: #f7f1e2;
  --muted: #c9bfa6;
  --gold: #d7a84f;
  --gold-strong: #f0c873;
  --dark: #080808;
  --panel: rgba(18, 16, 13, 0.88);
  --line: rgba(240, 200, 115, 0.24);
  --red: #8f171c;
  --green: #0d4638;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.46);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--dark);
  color: var(--ink);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.5;
}

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

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

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 4vw, 54px);
  transition: background 0.25s ease, border-color 0.25s ease, padding 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(8, 8, 8, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-strong);
  font-family: "Cinzel", serif;
  font-weight: 700;
  letter-spacing: 0;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
}

.brand small {
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  color: #efe4c9;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-nav a {
  transition: color 0.2s ease;
}

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

.site-nav .back-to-main {
  border: 1px solid rgba(218, 166, 45, 0.58);
  border-radius: 999px;
  padding: 10px 14px;
  color: var(--gold-strong);
  background: rgba(8, 8, 8, 0.42);
}

.site-nav .back-to-main:hover {
  background: var(--gold);
  color: #080808;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--ink);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 132px 0 54px;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.08);
  opacity: 0.62;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 42%, rgba(0, 0, 0, 0.28) 100%),
    linear-gradient(0deg, #080808 0%, rgba(8, 8, 8, 0.2) 34%, rgba(8, 8, 8, 0.22) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-bottom: 4vh;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cinzel", Georgia, serif;
  letter-spacing: 0;
}

h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 11vw, 8.6rem);
  line-height: 0.87;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.12rem;
}

.hero-lead {
  max-width: 710px;
  color: #eadfc4;
  font-size: clamp(1.02rem, 2vw, 1.32rem);
}

.hero-actions,
.platform-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, var(--gold-strong), #aa7927);
  color: #150f07;
  border-color: transparent;
}

.button.secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero-stats span {
  min-width: 190px;
  border-left: 2px solid var(--gold);
  padding: 4px 18px 4px 14px;
  color: var(--muted);
}

.hero-stats strong {
  display: block;
  color: var(--ink);
  font-size: 1.32rem;
}

section {
  position: relative;
}

.intro-section,
.music-section,
.catalog-section,
.platform-section,
.projects-section,
.contact-section {
  padding: clamp(72px, 9vw, 128px) 0;
}

.intro-grid,
.licensing-grid,
.platform-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.intro-copy {
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.featured-video {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: stretch;
  border-color: rgba(240, 200, 115, 0.72);
  background:
    linear-gradient(135deg, rgba(215, 168, 79, 0.12), rgba(143, 23, 28, 0.15)),
    var(--panel);
}

.video-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.youtube-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #111;
}

.youtube-embed img,
.youtube-embed iframe {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 0;
}

.youtube-play {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  place-items: center;
  width: 100%;
  align-items: center;
  justify-content: center;
  border: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.58));
  cursor: pointer;
}

.youtube-play span {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  border: 1px solid rgba(240, 200, 115, 0.9);
  border-radius: 50%;
  background: rgba(8, 8, 8, 0.72);
  color: var(--gold-strong);
  font-size: 2.1rem;
  line-height: 1;
  padding-left: 4px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.youtube-play:hover span {
  transform: scale(1.06);
  background: rgba(8, 8, 8, 0.9);
}

.youtube-play strong {
  border: 1px solid rgba(240, 200, 115, 0.58);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(8, 8, 8, 0.76);
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.youtube-play:hover strong,
.youtube-play:focus-visible strong {
  opacity: 1;
  transform: translateY(0);
}

.video-card div {
  padding: 20px;
}

.video-card .youtube-embed {
  padding: 0;
}

.featured-video .youtube-embed {
  height: 100%;
  min-height: 360px;
}

.featured-video div:last-child {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(24px, 4vw, 46px);
}

.featured-video h3 {
  font-family: "Cinzel", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3.5rem);
  line-height: 1;
}

.view-badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  border: 1px solid rgba(240, 200, 115, 0.48);
  border-radius: 999px;
  padding: 8px 12px;
  background: rgba(215, 168, 79, 0.12);
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.video-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.licensing-section {
  padding: clamp(72px, 9vw, 126px) 0;
  background:
    linear-gradient(135deg, rgba(143, 23, 28, 0.48), rgba(13, 70, 56, 0.44)),
    url("https://i.ytimg.com/vi/O9-HlQoTGCo/maxresdefault.jpg") center / cover fixed;
}

.licensing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.68);
}

.licensing-section .container {
  position: relative;
  z-index: 1;
}

.licensing-panel {
  max-width: 620px;
}

.licensing-panel p {
  color: #eadfc4;
  font-size: 1.08rem;
}

.use-list {
  display: grid;
  gap: 14px;
}

.use-list div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: rgba(8, 8, 8, 0.7);
  backdrop-filter: blur(12px);
}

.use-list span {
  color: var(--gold-strong);
  font-weight: 900;
}

.use-list p {
  color: var(--muted);
  margin-bottom: 0;
}

.catalog-section {
  background: #0e0c09;
}

.compact {
  margin-bottom: 24px;
}

.track-list,
.store-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.track-list a,
.store-cloud a,
.platform-missing span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: #efe3c7;
  font-weight: 700;
}

.track-list a,
.store-cloud a {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.track-list a:hover,
.track-list a:focus-visible,
.store-cloud a:hover,
.store-cloud a:focus-visible {
  border-color: rgba(240, 200, 115, 0.78);
  background: rgba(215, 168, 79, 0.16);
  color: var(--gold-strong);
  transform: translateY(-2px);
}

.catalog-note {
  margin: 28px 0 0;
  color: var(--muted);
}

.platform-section {
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 168, 79, 0.13), transparent 28%),
    linear-gradient(180deg, #080808, #11100d);
}

.platform-grid p {
  color: var(--muted);
}

.store-cloud,
.platform-missing {
  align-content: start;
}

.platform-missing {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.platform-missing p {
  width: 100%;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

.platform-missing span {
  border-color: rgba(201, 191, 166, 0.18);
  background: rgba(255, 255, 255, 0.025);
  color: rgba(239, 227, 199, 0.58);
}

.projects-section {
  padding-top: 0;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.projects-grid a {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.projects-grid span {
  display: block;
  color: var(--gold-strong);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.projects-grid strong {
  display: block;
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: 1.25rem;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(28px, 6vw, 70px);
  background:
    linear-gradient(135deg, rgba(215, 168, 79, 0.16), rgba(143, 23, 28, 0.18)),
    rgba(18, 16, 13, 0.94);
  box-shadow: var(--shadow);
}

.contact-card p {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  border: 1px solid rgba(240, 200, 115, 0.38);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(215, 168, 79, 0.1);
  color: #f2dfb8;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  background: #050505;
  color: var(--muted);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-weight: 700;
}

@media (max-width: 820px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    padding: 18px 20px 24px;
    background: rgba(8, 8, 8, 0.96);
    border-bottom: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: grid;
  }

  .hero {
    min-height: 86vh;
  }

  .intro-grid,
  .licensing-grid,
  .platform-grid,
  .video-grid,
  .featured-video,
  .projects-grid {
    grid-template-columns: 1fr;
  }

  .featured-video .youtube-embed {
    min-height: auto;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .platform-missing {
    grid-column: auto;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .site-header {
    padding: 14px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

  .hero {
    padding-top: 112px;
  }

  h1 {
    font-size: clamp(3rem, 17vw, 4.6rem);
  }

  .button {
    width: 100%;
  }

  .hero-stats span {
    width: 100%;
  }
}
