:root {
  --orange: #f07918;
  --ember: #ff9a28;
  --orange-2: #b84608;
  --paper: #f3efe6;
  --bone: #efe4cf;
  --heading: #b8a48d;
  --heading-soft: #9f8d79;
  --muted: #b9aea2;
  --line: rgba(240, 121, 24, 0.38);
  --panel: rgba(11, 10, 9, 0.78);
  color-scheme: dark;
}

.icon-defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #050403;
  color: var(--paper);
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  letter-spacing: 0;
}

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

.bg-shade {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.bg-shade {
  z-index: -2;
  background:
    radial-gradient(circle at 18% 20%, rgba(240, 121, 24, 0.2), transparent 24%),
    radial-gradient(circle at 76% 26%, rgba(132, 43, 7, 0.24), transparent 26%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.06), transparent 28%),
    linear-gradient(180deg, #090604, #040302 48%, #020201);
}

.bg-shade::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 82%, transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px clamp(18px, 4vw, 42px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 1;
  width: clamp(150px, 19vw, 240px);
}

.brand img,
.footer-brand img,
.hero-logo {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav,
.socials {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
}

.main-nav {
  justify-content: center;
}

.main-nav a {
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.main-nav a {
  position: relative;
  color: #ede6dc;
}

.main-nav a.active,
.main-nav a:hover,
.socials a:hover {
  color: var(--orange);
}

.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -18px;
  height: 3px;
  background: var(--orange);
}

.socials a {
  display: grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #e6dccb;
  background: rgba(255, 255, 255, 0.035);
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.socials a:hover {
  border-color: rgba(240, 121, 24, 0.75);
  background: rgba(240, 121, 24, 0.12);
  transform: translateY(-1px);
}

.socials svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

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

.hero {
  min-height: min(690px, calc(100vh - 72px));
  display: grid;
  place-items: center;
  align-content: center;
  gap: 14px;
  padding: 76px 0 42px;
  text-align: center;
}

.hero-logo {
  width: min(980px, 96vw);
  border-radius: 8px;
  margin: -16px auto 8px;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.84));
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: #c7661a;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow {
  font-size: clamp(0.8rem, 1.5vw, 1rem);
  letter-spacing: 0.08em;
}

.tagline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 0;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 3.5vw, 2.35rem);
  font-style: italic;
  font-weight: 900;
  color: #fff1df;
  text-shadow: 0 3px 0 #000, 0 0 18px rgba(240, 121, 24, 0.18);
}

.tagline span {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 16px;
}

.hero-track {
  width: min(620px, 100%);
  margin-top: 10px;
  padding: 10px;
  border: 1px solid rgba(240, 121, 24, 0.34);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.48);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.32);
}

.hero-track p {
  margin: 0 0 8px;
  color: #c7661a;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-track iframe {
  min-height: 152px;
}

.btn,
.outline-link {
  border-radius: 6px;
  font-weight: 900;
  text-transform: uppercase;
}

.btn {
  min-width: 230px;
  padding: 16px 22px;
  display: grid;
  gap: 2px;
  border: 1px solid var(--line);
}

.btn strong {
  font-size: 1.15rem;
}

.btn small {
  color: #fff1dc;
}

.primary {
  background: linear-gradient(180deg, #e1771d, #a33d06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.26), 0 18px 34px rgba(0, 0, 0, 0.32);
}

.ghost,
.outline-link {
  background: rgba(0, 0, 0, 0.45);
}

.ghost:hover,
.outline-link:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.meta,
.song-row small,
footer p {
  color: var(--muted);
}

.feature-grid,
.embeds,
.about,
footer {
  display: grid;
  gap: 26px;
  margin-top: 34px;
}

.feature-grid {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.25fr);
}

.release,
.listen-panel,
.embeds article,
.about,
footer {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: var(--panel);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.32);
}

.release {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  align-items: center;
  gap: 20px;
  padding: 18px;
}

.cover-art,
.song-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.74)),
    radial-gradient(circle at 50% 32%, rgba(240, 121, 24, 0.52), transparent 32%),
    linear-gradient(135deg, #1f160d, #040302 60%, #371108);
}

.cover-art {
  min-height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.cover-art img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08);
}

.release h2,
.listen-panel h2,
.about h2,
.section-heading h2,
.card-title h2 {
  margin: 8px 0;
  font-family: "Segoe UI", "Inter", Arial, sans-serif;
  font-weight: 850;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  color: var(--heading);
  text-shadow: 0 1px 0 #000;
}

.release h2 {
  font-size: clamp(1.45rem, 2.6vw, 2.15rem);
  line-height: 1.02;
  color: var(--heading-soft);
}

.about h2 {
  font-size: clamp(1.9rem, 4vw, 3.2rem);
  line-height: 0.98;
  color: var(--heading-soft);
}

.release p {
  max-width: 48ch;
  line-height: 1.45;
}

.release .meta {
  margin: 0 0 10px;
}

.outline-link {
  display: inline-flex;
  margin-top: 8px;
  padding: 12px 18px;
  border: 1px solid var(--orange);
  color: #fff4e6;
}

.listen-panel {
  padding: 28px;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.platforms a,
.platforms span {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: #fff7eb;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.platforms a:hover {
  background: rgba(240, 121, 24, 0.14);
  color: var(--orange);
}

.platforms span {
  color: rgba(243, 239, 230, 0.62);
}

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

.embeds article {
  padding: 14px;
  border-radius: 8px;
}

.card-title,
.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.card-title h2,
.section-heading h2 {
  font-size: 1.08rem;
  color: #b39f86;
}

.card-title a,
.section-heading a {
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.video-poster {
  position: relative;
  min-height: 265px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #171717;
}

.video-poster img {
  width: 100%;
  height: 100%;
  min-height: 265px;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(0.72);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-poster:hover img {
  transform: scale(1.035);
  filter: saturate(1.15) contrast(1.12) brightness(0.86);
}

.video-poster::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, 0.76));
}

.big {
  position: absolute;
  z-index: 1;
  width: 66px;
}

.video-meta {
  padding: 16px 2px 2px;
}

.video-meta h3 {
  margin: 0 0 4px;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.video-meta p {
  margin: 4px 0;
  color: var(--muted);
}

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

.short-tile {
  position: relative;
  min-height: 306px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 6px;
  overflow: hidden;
  padding: 12px 8px;
  border: 1px solid rgba(240, 121, 24, 0.32);
  border-radius: 8px;
  background: #111;
  text-align: center;
}

.short-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.06) brightness(0.62);
  transition: transform 220ms ease, filter 220ms ease;
}

.short-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.84) 58%, rgba(0, 0, 0, 0.96));
}

.short-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.16) contrast(1.12) brightness(0.78);
}

.short-tile .play,
.short-tile b,
.short-tile small {
  position: relative;
  z-index: 1;
}

.short-tile .play {
  width: 38px;
}

.short-tile b {
  max-width: 100%;
  font-size: 0.88rem;
}

.short-tile small {
  color: var(--muted);
}

iframe {
  display: block;
  width: 100%;
  border: 0;
  background: #111;
}

.songs {
  margin-top: 28px;
}

.spotify-releases {
  margin-top: 28px;
}

.section-heading {
  border-top: 1px solid var(--line);
  padding-top: 16px;
}

.release-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 16px;
}

.release-list a {
  display: grid;
  gap: 4px;
  min-height: 74px;
  padding: 14px;
  border: 1px solid rgba(240, 121, 24, 0.28);
  border-radius: 8px;
  background: rgba(12, 9, 7, 0.72);
}

.release-list a:hover {
  border-color: rgba(240, 121, 24, 0.7);
  background: rgba(240, 121, 24, 0.1);
}

.release-list span {
  color: #b97742;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.release-list b {
  color: #d2c2ac;
  line-height: 1.2;
}

.song-row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 16px;
}

.song-card {
  position: relative;
  min-height: 210px;
  display: grid;
  align-content: end;
  justify-items: center;
  gap: 8px;
  padding: 16px;
  overflow: hidden;
  text-align: center;
}

.song-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.08) contrast(1.08) brightness(0.6);
  transition: transform 220ms ease, filter 220ms ease;
}

.song-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.85) 62%, rgba(0, 0, 0, 0.94));
}

.song-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.16) contrast(1.12) brightness(0.76);
}

.song-card b,
.song-card small,
.song-card .play,
.song-links {
  position: relative;
  z-index: 1;
}

.play {
  display: grid;
  place-items: center;
  width: 46px;
  aspect-ratio: 1;
  margin-bottom: auto;
  border-radius: 50%;
  background: linear-gradient(180deg, #e1771d, #a33d06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.song-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 2px;
}

.song-links a {
  padding: 6px 9px;
  border: 1px solid rgba(240, 121, 24, 0.48);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.45);
  color: #d8cbb8;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.song-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
}

.about {
  grid-template-columns: 1fr 1.3fr;
  align-items: center;
  padding: 28px;
}

.about p:last-child {
  font-size: 1.08rem;
  line-height: 1.6;
}

footer {
  grid-template-columns: auto minmax(260px, 1fr) auto;
  align-items: center;
  margin-bottom: 26px;
  padding: 20px;
}

.footer-brand {
  width: 220px;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 12px;
  border: 1px solid rgba(240, 121, 24, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #c9bba8;
  font-size: 0.88rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: color 160ms ease, border-color 160ms ease, background 160ms ease;
}

.footer-links a:hover {
  color: var(--orange);
  border-color: rgba(240, 121, 24, 0.7);
  background: rgba(240, 121, 24, 0.1);
}

.footer-links svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: currentColor;
}

@media (max-width: 960px) {
  .site-header {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .main-nav a.active::after {
    bottom: -8px;
  }

  .feature-grid,
  .embeds,
  .about,
  footer {
    grid-template-columns: 1fr;
  }

  .song-row {
    grid-template-columns: repeat(2, 1fr);
  }

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

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

@media (max-width: 640px) {
  main,
  footer {
    width: min(100% - 22px, 1180px);
  }

  .hero {
    min-height: 620px;
  }

  .hero-logo {
    width: min(98vw, 620px);
  }

  .tagline {
    flex-wrap: wrap;
  }

  .btn {
    width: 100%;
  }

  .platforms,
  .release-list,
  .song-row,
  .release {
    grid-template-columns: 1fr;
  }

  .shorts-grid {
    grid-template-columns: 1fr;
  }

  .cover-art {
    min-height: 260px;
  }

  footer {
    text-align: center;
  }
}
