/* ================= Arxiduc Records ================= */
:root {
  --bg: #0b0d11;
  --bg-raised: #11141a;
  --sheet: #f4f2ed;
  --sheet-ink: #14161b;
  --ink: #e8e6e1;
  --ink-dim: #9aa0ab;
  --gold: #c9a35a;
  --line: rgba(255, 255, 255, 0.12);
  --line-dark: rgba(20, 22, 27, 0.14);
  --radius: 20px;
  --font-display: "Georgia", "Times New Roman", serif;
  --font-body: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

/* ================= Navigation ================= */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background 0.4s ease, box-shadow 0.4s ease;
}
.nav--solid {
  background: rgba(11, 13, 17, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 var(--line);
}
.nav__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav__mark { width: 30px; height: 30px; color: var(--gold); }
.nav__wordmark {
  font-size: 0.86rem;
  letter-spacing: 0.28em;
  font-weight: 600;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}
.nav__links a { color: var(--ink-dim); transition: color 0.25s; }
.nav__links a:hover { color: var(--ink); }
.nav__links .nav__cta {
  color: var(--bg);
  background: var(--gold);
  padding: 9px 20px;
  border-radius: 999px;
  font-weight: 600;
}
.nav__links .nav__cta:hover { color: var(--bg); filter: brightness(1.08); }

/* ================= Hero ================= */
.hero { height: 210vh; position: relative; }
.hero__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__media {
  position: absolute;
  inset: 0;
  will-change: transform;
  transform-origin: center center;
}
.hero__poster,
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__video { opacity: 0; transition: opacity 0.8s ease; }
.hero__video.is-playing { opacity: 1; }
/* Lower third fades to the page colour so the mixing console dissolves into
   the background and can run behind the headline instead of ending on a hard edge. */
.hero__vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 30%, rgba(11, 13, 17, 0.55) 100%),
    linear-gradient(to bottom,
      rgba(11, 13, 17, 0.55) 0%,
      rgba(11, 13, 17, 0.08) 26%,
      rgba(11, 13, 17, 0.18) 42%,
      rgba(11, 13, 17, 0.38) 58%,
      rgba(11, 13, 17, 0.62) 72%,
      rgba(11, 13, 17, 0.84) 85%,
      rgba(11, 13, 17, 0.96) 94%,
      rgb(11, 13, 17) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 860px;
  will-change: transform, opacity;
}
.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8.5vw, 6.4rem);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-bottom: 26px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
}
.hero__sub {
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  color: rgba(232, 230, 225, 0.85);
  max-width: 560px;
  margin: 0 auto 38px;
}
.hero__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.25s, filter 0.25s, background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn--solid { background: var(--gold); color: #14161b; }
.btn--solid:hover { filter: brightness(1.08); }
.btn--ghost {
  border: 1px solid rgba(232, 230, 225, 0.4);
  color: var(--ink);
}
.btn--ghost:hover { background: rgba(232, 230, 225, 0.1); }

.hero__scrollhint {
  position: absolute;
  bottom: 34px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px;
  height: 42px;
  border: 1.5px solid rgba(232, 230, 225, 0.5);
  border-radius: 14px;
}
.hero__scrollhint span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--gold);
  animation: scrollhint 2s ease-in-out infinite;
}
@keyframes scrollhint {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* The hero video is decoration: no native controls (their bar covers the mixing
   console and shows the clip duration) and no pointer target. */
.hero__video {
  pointer-events: none;
}
.hero__video::-webkit-media-controls,
.hero__video::-webkit-media-controls-enclosure,
.hero__video::-webkit-media-controls-panel,
.hero__video::-webkit-media-controls-start-playback-button {
  display: none !important;
  -webkit-appearance: none;
}

/* ================= Sheet (content over hero) ================= */
/* No card edge here on purpose: the hero's lower gradient ends on exactly this
   colour, so the console dissolves into the section below instead of meeting a
   rounded, shadowed border. The negative margin lengthens the blend zone. */
.sheet {
  position: relative;
  z-index: 5;
  background: var(--bg);
  margin-top: -22vh;
}

/* ================= Sections ================= */
/* Anchor targets must clear the fixed navigation, otherwise a jump hides the
   section heading behind it. */
.section { padding: 110px 0; scroll-margin-top: 90px; }
.section--dark { background: var(--bg-raised); }
.section__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
.section__eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1.15;
  max-width: 720px;
  margin-bottom: 28px;
}
.section__note {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 640px;
  margin-bottom: 48px;
  padding: 12px 18px;
  border-left: 2px solid var(--gold);
  background: rgba(201, 163, 90, 0.06);
  border-radius: 0 10px 10px 0;
}

/* ================= About ================= */
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: start;
  margin-top: 8px;
}
.about__lead { font-size: 1.15rem; color: rgba(232, 230, 225, 0.9); }
.about__facts { display: grid; gap: 26px; }
.fact { border-left: 1px solid var(--line); padding-left: 20px; }
.fact__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1.1;
}
.fact__label { color: var(--ink-dim); font-size: 0.9rem; }

.platforms {
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
.platforms__label {
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.platforms__list {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  list-style: none;
  color: rgba(232, 230, 225, 0.65);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

/* ================= Labels ================= */
.labels__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.label-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px 28px;
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}
.label-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent, var(--gold));
  background: rgba(255, 255, 255, 0.05);
}
.label-card__logo {
  height: 88px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
}
/* Wordmarks differ in aspect ratio (1 to 3 lines); cap both axes so wide marks
   fill the width and stacked marks fill the height, keeping optical weight even. */
.label-card__logo img {
  max-height: 100%;
  max-width: 88%;
  width: auto;
  height: auto;
  opacity: 0.92;
  transition: opacity 0.35s ease;
}
.label-card:hover .label-card__logo img { opacity: 1; }
.label-card__status--ai {
  border-style: solid;
  border-color: var(--accent, var(--gold));
  color: var(--accent, var(--gold));
}
.label-card__name {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.label-card__genre {
  color: var(--accent, var(--gold));
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.label-card__desc { color: var(--ink-dim); font-size: 0.95rem; margin-bottom: 20px; }
.label-card__status {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-dim);
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 5px 12px;
}

/* Per-label distribution channels (via DistroKid) */
.label-card__channels {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0 0 18px;
  padding: 0;
}
.label-card__channels li {
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  color: var(--ink-dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px 9px;
}

/* Roster group headings */
.group-heading {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink);
  margin: 8px 0 22px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.labels__grid + .group-heading { margin-top: 64px; }
.group-note {
  color: var(--ink-dim);
  font-size: 0.95rem;
  max-width: 620px;
  margin: -8px 0 26px;
}

/* ================= Releases ================= */
.releases__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 20px;
}
.release-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-raised);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.release-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.release-card__art {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(201, 163, 90, 0.18), transparent 60%),
    repeating-conic-gradient(from 0deg, rgba(255,255,255,0.03) 0deg 2deg, transparent 2deg 4deg),
    #171a21;
}
.release-card__art span {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(232, 230, 225, 0.35);
}
.release-card__meta { padding: 22px 24px; }
.release-card__meta h3 { font-size: 1.02rem; font-weight: 600; margin-bottom: 6px; }
.release-card__meta p { color: var(--ink-dim); font-size: 0.85rem; }

/* ================= Licensing ================= */
.licensing {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.licensing__text p { color: rgba(232, 230, 225, 0.85); max-width: 480px; margin-bottom: 34px; }
.licensing__points { list-style: none; display: grid; gap: 18px; }
.licensing__points li {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px 24px;
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.02);
}
.licensing__points strong { font-size: 1rem; }
.licensing__points span { color: var(--ink-dim); font-size: 0.88rem; }

/* ================= Contact ================= */
.contact { text-align: center; }
.contact .section__title { margin-left: auto; margin-right: auto; }
.contact p { color: var(--ink-dim); margin-bottom: 20px; }
.contact__mail {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  color: var(--gold);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.contact__mail:hover { border-color: var(--gold); }

/* ================= Contact form ================= */
.contact__lead { color: var(--ink-dim); max-width: 560px; margin: 0 auto 34px; }

.cform {
  max-width: 620px;
  margin: 0 auto;
  text-align: left;
  display: grid;
  gap: 18px;
}
.cform__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cform__field { display: grid; gap: 8px; }
.cform__field > span em {
  font-style: normal;
  letter-spacing: 0.08em;
  opacity: 0.6;
  text-transform: none;
}
.cform__field > span {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-dim);
}
.cform input,
.cform select,
.cform textarea {
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 13px 15px;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
}
.cform textarea { resize: vertical; min-height: 120px; }
.cform input:focus,
.cform select:focus,
.cform textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.06);
}
.cform select option { background: var(--bg-raised); color: var(--ink); }

/* Honeypot: off-screen rather than display:none, which some bots skip */
.cform__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.cform__actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 6px;
}
.cform button[disabled] { opacity: 0.55; pointer-events: none; }
.cform__status { font-size: 0.9rem; color: var(--ink-dim); margin: 0; }
.cform__status--ok { color: var(--gold); }
.cform__status--error { color: #d98c7a; }

.contact__alt { margin-top: 38px; }
.contact__alt-intro {
  font-size: 0.9rem;
  color: var(--ink-dim);
  max-width: 460px;
  margin: 0 auto 20px;
}
.contact__addresses {
  list-style: none;
  display: flex;
  gap: 14px 44px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.contact__addresses li { display: grid; gap: 3px; }
.contact__addresses a {
  color: var(--gold);
  font-size: 1rem;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s;
}
.contact__addresses a:hover { border-color: var(--gold); }
.contact__addresses span { font-size: 0.8rem; color: var(--ink-dim); }

.licensing__cta { margin-top: 26px; color: rgba(232, 230, 225, 0.85); max-width: 480px; }
.licensing__cta a { color: var(--gold); border-bottom: 1px solid transparent; }
.licensing__cta a:hover { border-color: var(--gold); }

.footer__line a { color: var(--ink-dim); border-bottom: 1px solid var(--line); }
.footer__line a:hover { color: var(--ink); }


.licensing__mail { margin-top: 16px; font-size: 0.9rem; color: var(--ink-dim); }
.licensing__mail a { color: var(--gold); }

@media (max-width: 640px) {
  .cform__row { grid-template-columns: 1fr; }
}

/* ================= Footer ================= */
.footer { border-top: 1px solid var(--line); padding: 46px 0 60px; }
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  letter-spacing: 0.28em;
  font-size: 0.8rem;
  font-weight: 600;
}
.footer__line { color: var(--ink-dim); font-size: 0.82rem; }
.footer__links { display: flex; gap: 24px; font-size: 0.82rem; color: var(--ink-dim); }
.footer__links a:hover { color: var(--ink); }

/* ================= Reveal on scroll ================= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__scrollhint span { animation: none; }
}

/* ================= Responsive ================= */
@media (max-width: 960px) {
  .labels__grid, .releases__row { grid-template-columns: repeat(2, 1fr); }
  .about__grid, .licensing { grid-template-columns: 1fr; gap: 44px; }
}
@media (max-width: 640px) {
  .nav__links { display: none; }
  .nav__inner { justify-content: center; }
  .labels__grid, .releases__row { grid-template-columns: 1fr; }
  .section { padding: 80px 0; }
  .hero { height: 180vh; }
}
