:root {
  --bg: #090b0f;
  --bg-soft: #12141c;
  --panel: rgba(15, 19, 28, 0.78);
  --panel-strong: rgba(12, 16, 24, 0.92);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.2);
  --text: #f5f2eb;
  --muted: #c7c2bb;
  --accent-ice: #adc7da;
  --accent-olive: #7c8c5d;
  --accent-wine: #8d2f41;
  --accent-gold: #b9905c;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --radius-sm: 18px;
  --page-max: 1180px;
  --display-font: "Arial Black", "Avenir Next Condensed", "Franklin Gothic Heavy", sans-serif;
  --body-font: "Trebuchet MS", "Lucida Sans Unicode", "Lucida Grande", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--body-font);
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(173, 199, 218, 0.16), transparent 32%),
    radial-gradient(circle at 82% 12%, rgba(141, 47, 65, 0.16), transparent 30%),
    radial-gradient(circle at bottom right, rgba(124, 140, 93, 0.14), transparent 28%),
    linear-gradient(180deg, #06070a 0%, #0a0d13 45%, #090b10 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
}

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

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(173, 199, 218, 0.75);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #111111;
  z-index: 20;
}

.skip-link:focus {
  top: 16px;
}

.page-shell {
  width: min(calc(100% - 32px), var(--page-max));
  margin: 0 auto;
  padding: 10px 0 40px;
}

.site-footer,
.hero,
.release-layout,
.about-layout {
  width: 100%;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.hero-nav {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 2px;
}

.site-nav a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.site-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.08);
}

.section-block {
  margin-top: 22px;
}

.section-frame {
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01)),
    var(--panel);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 18px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 24px;
  padding: 0 12px 12px;
}

.hero-meta-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.hero-topline {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.eyebrow,
.section-kicker,
.release-label {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--accent-ice);
  font-size: 0.75rem;
}

.hero h1,
.section-heading h2,
.release-copy h3 {
  margin: 0;
  font-family: var(--display-font);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

.hero h1 {
  font-size: clamp(3rem, 18vw, 7rem);
  max-width: 8ch;
  margin-top: 8px;
}

.hero-tagline {
  margin: 0;
  font-size: clamp(1.15rem, 4.2vw, 1.65rem);
  line-height: 1.25;
  color: var(--text);
  max-width: 100%;
  text-align: left;
}

.hero-tagline p {
  margin: 0;
}

.hero-tagline p + p {
  margin-top: 1.1em;
}

.hero-summary,
.release-copy p,
.about-copy p,
.post-card p,
.contact-panel p,
.platform-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1rem;
}

.hero-actions,
.button-row,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-socials {
  display: grid;
  grid-template-columns: repeat(3, 54px);
  gap: 15px;
  width: fit-content;
  max-width: 100%;
  flex: 0 0 auto;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
}

.button-primary {
  background: linear-gradient(135deg, rgba(173, 199, 218, 0.18), rgba(185, 144, 92, 0.2));
}

.button-secondary,
.button-tertiary {
  background: rgba(255, 255, 255, 0.04);
}

.button-tertiary {
  padding-inline: 16px;
}

.hero-art {
  margin: 0;
  min-height: 380px;
  border-radius: calc(var(--radius) - 8px);
  overflow: hidden;
  position: relative;
}

.hero-art::after,
.release-image-link::after,
.post-card figure::after,
.mosaic-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(9, 11, 15, 0.02), rgba(9, 11, 15, 0.36));
  pointer-events: none;
}

.hero-art img,
.release-image-link img,
.post-card img,
.mosaic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-art img {
  object-position: 68% 52%;
}

.release-image-link img {
  object-position: 62% 55%;
}

.section-heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.section-heading h2 {
  font-size: clamp(2rem, 8vw, 3.6rem);
  max-width: 12ch;
}

.section-heading-tight h2 {
  max-width: 14ch;
}

.release-layout,
.about-layout {
  display: grid;
  gap: 18px;
}

.release-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.release-card,
.release-copy,
.post-card,
.platform-card,
.contact-panel,
.about-copy,
.mosaic-panel {
  overflow: hidden;
}

.release-card {
  position: relative;
}

.release-image-link {
  position: relative;
  display: block;
  min-height: 280px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.play-badge {
  position: absolute;
  inset: auto auto 18px 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(9, 11, 15, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-weight: 700;
}

.play-badge::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--accent-ice);
}

.embed-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.release-copy,
.about-copy,
.contact-panel {
  padding: 22px;
}

.release-copy h3 {
  font-size: clamp(1.8rem, 8vw, 3rem);
  margin: 10px 0 12px;
}

.platform-grid,
.post-grid,
.mosaic-grid {
  display: grid;
  gap: 14px;
}

.platform-card,
.post-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
  overflow: hidden;
}

.platform-card {
  padding: 22px 18px;
  min-height: 132px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  text-align: center;
}

.platform-card strong,
.post-card h3 {
  font-size: 1.2rem;
}

.platform-card .button-tertiary,
.post-card .button-tertiary {
  width: fit-content;
}

.platform-card strong {
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  min-height: 54px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  transition: transform 160ms ease, opacity 160ms ease;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
}

.hero-social-link:hover {
  transform: translateY(-2px);
  opacity: 0.88;
}

.hero-social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
}

.hero-social-link .social-icon {
  width: 32px;
  height: 32px;
}

.social-icon {
  width: 34px;
  height: 34px;
  color: var(--text);
}

.footer-links {
  align-items: center;
}

.contact-icons {
  align-items: center;
}

.footer-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.footer-icon-link .social-icon {
  width: 18px;
  height: 18px;
}

.contact-icons .footer-icon-link {
  width: 52px;
  height: 52px;
}

.contact-icons .footer-icon-link .social-icon {
  width: 22px;
  height: 22px;
}

.mosaic-panel {
  padding: 14px;
}

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

.mosaic-card {
  position: relative;
  min-height: 140px;
  border-radius: 18px;
  overflow: hidden;
}

.mosaic-card.tall {
  min-height: 210px;
}

.post-card {
  display: flex;
  flex-direction: column;
}

.post-embed-shell {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
  background: #050608;
}

.post-embed-shell iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.post-video-fallback {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #050608;
}

.post-video-fallback img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(4, 6, 8, 0.08), rgba(4, 6, 8, 0.28));
}

.post-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 78px;
  height: 54px;
  transform: translate(-50%, -50%);
  border-radius: 16px;
  background: #ff0033;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.35);
  z-index: 1;
}

.post-video-play::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 17px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 16px solid #ffffff;
}

.post-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}


.site-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 40px;
  padding: 20px 0 10px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  margin: 0;
  color: var(--muted);
}

.footer-links a {
  color: var(--muted);
}

.no-script-note {
  width: min(calc(100% - 32px), var(--page-max));
  margin: 0 auto 24px;
  color: var(--muted);
}

@media (min-width: 700px) {
  .page-shell {
    width: min(calc(100% - 48px), var(--page-max));
    padding-top: 8px;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.86fr);
    min-height: 500px;
    padding: 22px;
  }

  .hero-copy {
    padding: 6px 22px 22px;
  }

  .hero-meta-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 24px;
  }

  .hero-socials {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
    gap: 18px;
  }

  .hero-tagline {
    max-width: 100%;
  }

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

  .release-layout,
  .about-layout {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: stretch;
  }

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

  .mosaic-card.span-two {
    grid-column: span 2;
  }
}

@media (min-width: 980px) {
  .site-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .site-nav a,
  .button {
    transition: none;
  }

  .site-nav a:hover,
  .hero-social-link:hover,
  .button:hover {
    transform: none;
  }
}
