:root {
  --black: #08090a;
  --black-2: #0d0f10;
  --white: #f4f4f2;
  --muted: #b8b9b8;
  --line: rgba(255,255,255,.14);
  --gold: #dca60a;
  --max: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Space Grotesk", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 64px), var(--max));
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img { width: 150px; height: auto; }
.brand { display: inline-block; }

.nav-links {
  display: flex;
  gap: 46px;
}

.nav-links a,
.social-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .17em;
  font-size: 12px;
  transition: opacity .2s ease;
}

.nav-links a:hover,
.social-links a:hover { opacity: .62; }

.section-dark {
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.025), transparent 44%),
    linear-gradient(180deg, #0a0b0c 0%, #08090a 100%);
}

.hero {
  min-height: 650px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 44% 16% at 50% 78%, rgba(255,255,255,.055), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent 24%, transparent 78%, rgba(255,255,255,.02));
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 100px 24px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-art-wrap {
  width: min(760px, 82vw);
  margin-top: 42px;
  filter: drop-shadow(0 24px 24px rgba(0,0,0,.45));
}

.hero-art {
  width: 100%;
  transform-origin: 50% 50%;
  animation: hero-float 7s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-8px) scale(1.008); }
}

.tagline {
  margin: 24px 0 0;
  text-transform: uppercase;
  letter-spacing: .42em;
  font-size: 14px;
  color: var(--white);
}

.metal-rule {
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(220,166,10,.5);
}

.metal-rule::after {
  content: "";
  position: absolute;
  width: 132px;
  height: 5px;
  top: -2px;
  background-image: url("assets/yellow-metal.webp");
  background-size: 180px auto;
  clip-path: polygon(0 50%, 82% 50%, 88% 0, 100% 0, 93% 100%, 0 100%);
  opacity: .95;
}

.metal-rule-top { top: 96px; }
.metal-rule-top::after { right: 0; left: auto; transform: scaleX(-1); }
.metal-rule-bottom { bottom: 0; }
.metal-rule-bottom::after { left: 110px; }
.metal-rule-footer { bottom: 0; }
.metal-rule-footer::after { right: 0; left: auto; transform: scaleX(-1); }

.section-inner {
  width: min(calc(100% - 64px), var(--max));
  margin: 0 auto;
}

.narrow { max-width: 940px; }

.music {
  min-height: 315px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 58px 0 64px;
}

.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 11px;
  color: var(--gold);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: .015em;
}

.section-subtitle {
  margin: 7px 0 28px;
  font-size: 22px;
  letter-spacing: .03em;
}

.link-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
}

.link-card {
  position: relative;
  min-height: 92px;
  border: 1px solid var(--line);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 36px 0 58px;
  text-align: left;
  font-size: 16px;
  overflow: hidden;
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.link-card:hover {
  transform: translateY(-2px);
  border-color: rgba(220,166,10,.55);
  background: rgba(255,255,255,.018);
}

.texture-edge {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 12px;
  background-image: url("assets/yellow-metal.webp");
  background-position: center;
  background-size: 60px auto;
}

.arrow {
  color: var(--gold);
  font-size: 31px;
  line-height: 1;
  transition: transform .2s ease;
}
.link-card:hover .arrow { transform: translateX(5px); }

.about {
  min-height: 250px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 52px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(50px, 1fr) minmax(0, 800px) minmax(50px, 1fr);
  align-items: center;
  gap: 24px;
}

.side-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.side-rule-right { transform: scaleX(-1); }

.about-copy {
  font-size: clamp(22px, 2.25vw, 31px);
  line-height: 1.35;
}

.contact {
  min-height: 290px;
  position: relative;
  display: flex;
  align-items: center;
  text-align: center;
  padding: 48px 0 58px;
}

.contact-inner { max-width: 760px; }
.demo-line { margin: 15px 0 32px; color: #d7d7d4; }
.demo-line a {
  color: var(--gold);
  text-decoration: none;
}
.demo-line a:hover { text-decoration: underline; }

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.social-links a { display: inline-flex; align-items: center; gap: 22px; }
.social-links a span { color: var(--gold); font-size: 23px; letter-spacing: 0; }
.divider { width: 1px; height: 30px; background: rgba(220,166,10,.58); }

.site-footer {
  height: 66px;
  display: grid;
  place-items: center;
  color: #8e9091;
  font-size: 12px;
  letter-spacing: .08em;
  background: #08090a;
}

@media (max-width: 760px) {
  .site-header {
    width: min(calc(100% - 32px), var(--max));
    height: 78px;
  }
  .brand img { width: 112px; }
  .nav-links { gap: 18px; }
  .nav-links a { font-size: 10px; letter-spacing: .13em; }
  .metal-rule-top { top: 78px; }

  .hero { min-height: 560px; }
  .hero-inner { padding-top: 110px; }
  .hero-art-wrap { width: min(680px, 96vw); }
  .tagline { font-size: 11px; letter-spacing: .34em; margin-top: 24px; }

  .section-inner { width: min(calc(100% - 32px), var(--max)); }
  .music { padding: 48px 0 54px; }
  .section-subtitle { font-size: 19px; margin-bottom: 24px; }
  .link-grid { grid-template-columns: 1fr; gap: 14px; }
  .link-card { min-height: 78px; padding: 0 24px 0 42px; font-size: 14px; }

  .about { min-height: 230px; }
  .about-inner { grid-template-columns: 1fr; }
  .side-rule { display: none; }
  .desktop-break { display: none; }
  .about-copy { font-size: 22px; }

  .social-links { gap: 16px; flex-wrap: wrap; }
  .social-links a { gap: 10px; font-size: 10px; }
  .divider { height: 24px; }
}

@media (max-width: 430px) {
  .nav-links { gap: 12px; }
  .nav-links a { font-size: 9px; }
  .brand img { width: 96px; }
  .hero { min-height: 520px; }
  .hero-art-wrap { width: 104vw; }
  .tagline { letter-spacing: .28em; }
}

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