﻿:root {
  color-scheme: dark;
  --bg: #030303;
  --panel: #090909;
  --line: rgba(255, 255, 255, 0.16);
  --text: #f2f2f2;
  --muted: #b7b7b7;
  --dim: #747474;
  --red: #ef180f;
  --red-dark: #7d0d09;
  --max: 1180px;
  --header: 82px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 24% 18%, rgba(239, 24, 15, 0.12), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #000 48%, #050505 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

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

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;
}

[id] {
  scroll-margin-top: calc(var(--header) + 24px);
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header);
  display: grid;
  grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 48px);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.28), transparent);
  transition: background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(3, 3, 3, 0.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.news-inline {
  width: min(100%, 420px);
  margin: 16px auto 0;
  padding: clamp(14px, 2.4vw, 20px);
  border: 1px solid rgba(239, 24, 15, 0.86);
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.18), rgba(0, 0, 0, 0.94) 42%),
    #050505;
  color: var(--text);
  display: grid;
  gap: 12px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.52), 0 0 34px rgba(239, 24, 15, 0.14);
}

.news-inline h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3.2vw, 2.15rem);
  line-height: 0.95;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.news-inline p:not(.section-label) {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.news-cover {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
}

.news-cover img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.12) brightness(0.82);
}

.brand {
  width: clamp(104px, 11vw, 146px);
  height: 58px;
  display: block;
  overflow: hidden;
  color: transparent;
  background: url("assets/floced-header-logo.jpeg") left center / contain no-repeat;
  font-size: 0;
  line-height: 0;
  transition: opacity 160ms ease;
}

.brand:hover,
.brand:focus-visible {
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 4vw, 52px);
}

.site-nav a,
.header-social a,
.platform-link,
.outline-button,
.release-card strong,
.release-card span,
.section-label,
.site-footer {
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 0.72rem;
  font-weight: 800;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  transition: color 160ms ease, text-shadow 160ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  width: 100%;
  min-width: 46px;
  height: 10px;
  background: url("data:image/svg+xml,%3Csvg width='92' height='12' viewBox='0 0 92 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 6 H16 C20 6 20 1 24 1 C28 1 28 11 32 11 C36 11 36 3 40 3 C44 3 44 9 48 9 C52 9 52 1 56 1 C60 1 60 11 64 11 C68 11 68 6 72 6 H91' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 100% 100% no-repeat;
  filter: drop-shadow(0 0 7px rgba(255, 255, 255, 0.58));
  opacity: 0;
  transform: translateX(-50%) scaleX(0.42);
  transform-origin: center;
  transition: opacity 160ms ease, transform 180ms ease;
}

.site-nav a[href="#home"] {
  color: var(--red);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--red);
  text-shadow: 0 0 14px rgba(239, 24, 15, 0.42);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a[href="#home"]::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

.header-social {
  position: absolute;
  top: calc(100% + 30px);
  right: clamp(170px, 20vw, 330px);
  display: flex;
  align-items: center;
  justify-content: center;
  width: clamp(170px, 15vw, 230px);
  min-height: 52px;
  gap: 14px;
  padding: 12px 18px;
  background: rgba(0, 0, 0, 0.86);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
  will-change: opacity, transform;
}

.header-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #fff;
  letter-spacing: 0;
  font-size: 0.62rem;
}

.header-social img {
  width: 17px;
  height: 17px;
  object-fit: contain;
}

.site-header.is-scrolled .header-social {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  visibility: hidden;
}

.header-social a:hover,
.header-social a:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
}

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

.hero {
  position: relative;
  min-height: 80vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: var(--header) 20px 40px;
}

.hero-art,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-art {
  inset: 0 auto 0 50%;
  width: min(100% - 40px, var(--max));
  background-image: url("assets/floced-hero-fx.png");
  background-size: cover;
  background-position: 43% center;
  filter: saturate(1.28) contrast(1.22) brightness(1.08);
  transform: translateX(-50%);
}

.hero-art::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.08) 48%, rgba(0, 0, 0, 0.88) 100%),
    radial-gradient(circle at 48% 48%, transparent 0 24rem, rgba(0, 0, 0, 0.28) 42rem);
}

.hero-shade {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: screen;
  opacity: 0.22;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 920px);
  text-align: center;
}


.kicker {
  position: absolute;
  top: clamp(-34px, -2vw, -32px);
  left: 50%;
  z-index: 3;
  width: max-content;
  max-width: calc(100vw - 40px);
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0 0 10px;
  color: #f1f1f1;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: clamp(0.68rem, 1.8vw, 0.95rem);
  font-weight: 800;
  display: none;
}

.kicker span {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

h1 {
  margin: 0;
  color: transparent;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(5.2rem, 17vw, 15rem);
  font-style: italic;
  font-weight: 500;
  line-height: 0.85;
  text-shadow: none;
  user-select: none;
}

.hero-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(118px, 1fr));
  gap: 12px;
  margin: clamp(230px, 22vw, 330px) 0 0 auto;
  max-width: 680px;
}

.platform-link,
.outline-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid rgba(239, 24, 15, 0.58);
  background: rgba(7, 7, 7, 0.62);
  color: #fff;
  letter-spacing: 0.22em;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}


.hero-actions .platform-link {
  position: relative;
  min-height: 52px;
  flex-direction: column;
  gap: 6px;
  padding: 7px 16px 9px;
  border-color: rgba(239, 24, 15, 0.82);
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.22), transparent 38%),
    rgba(8, 8, 8, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), 0 16px 30px rgba(0, 0, 0, 0.32);
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}

.hero-actions .platform-link::before,
.hero-actions .platform-link::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-actions .platform-link::before {
  top: 8px;
  left: 18px;
  width: 38px;
  height: 2px;
  background: var(--red);
}

.hero-actions .platform-link::after {
  right: 14px;
  bottom: 8px;
  width: 26px;
  height: 1px;
  background: rgba(239, 24, 15, 0.72);
  transform: skewX(-28deg);
}

.platform-link img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.24));
}

.hero-actions .platform-link img {
  width: 24px;
  height: 24px;
}

.platform-link:hover,
.platform-link:focus-visible,
.outline-button:hover,
.outline-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(239, 24, 15, 0.2);
  border-color: var(--red);
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  width: 18px;
  height: 18px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
}

.content-grid {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.85fr 1.55fr 1fr;
  column-gap: clamp(34px, 5vw, 72px);
  row-gap: 0;
  padding: clamp(18px, 3vw, 38px) 0 56px;
}

.section-block {
  min-width: 0;
}

.section-label {
  position: relative;
  margin: 0 0 28px;
  color: var(--red);
  font-size: 0.82rem;
}

.section-label::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -12px;
  width: 44px;
  height: 1px;
  background: var(--red);
}

h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  line-height: 1.25;
  font-weight: 760;
}

.about-block p:not(.section-label) {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 0.98rem;
}

.about-follow-block {
  margin-top: 36px;
}

.about-follow-block .round-links {
  gap: 10px;
}

.about-follow-block .round-links a {
  width: 40px;
  height: 40px;
}

.about-follow-block .round-links img {
  width: 19px;
  height: 19px;
}

.store-block {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(220px, 1.2fr);
  gap: clamp(14px, 2vw, 22px);
  align-items: center;
  margin-top: 28px;
  padding: clamp(14px, 2vw, 22px);
  border: 1px solid rgba(239, 24, 15, 0.3);
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.12), transparent 42%),
    rgba(6, 6, 6, 0.74);
}

.store-visual {
  order: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 44%),
    rgba(255, 255, 255, 0.04);
  padding: 10px;
  overflow: visible;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.merch-item {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #fff;
}

.merch-image {
  display: grid;
  min-height: 118px;
  place-items: center;
  background: #f7f7f7;
  overflow: hidden;
}

.merch-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.merch-item strong {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.64rem, 1vw, 0.74rem);
  font-weight: 700;
  line-height: 1.35;
  text-transform: none;
  letter-spacing: 0;
}

.store-copy {
  order: 1;
  min-width: 0;
}

.store-block p:not(.section-label) {
  margin: 0 0 8px;
  max-width: 560px;
  color: var(--muted);
  font-size: 0.9rem;
}

.outline-button {
  appearance: none;
  font: inherit;
  margin-top: 14px;
  padding: 0 24px;
  cursor: pointer;
}

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

.release-list.is-collapsed .extra-release {
  display: none;
}

.release-card {
  display: grid;
  gap: 9px;
  text-align: center;
}

.release-card img,
.generated-cover {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  object-fit: cover;
  background: #080808;
}

.release-card strong {
  margin-top: 6px;
  color: #fff;
  letter-spacing: 0.18em;
}

.release-card span {
  color: var(--muted);
  letter-spacing: 0.18em;
}

.release-card span b {
  color: var(--red);
  font-weight: 900;
}

.release-card span::first-letter {
  color: var(--red);
}

.release-style-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 0;
}

.release-style-link {
  min-height: 44px;
  border: 1px solid rgba(239, 24, 15, 0.72);
  background: rgba(8, 8, 8, 0.72);
  color: #fff;
  cursor: pointer;
  font: inherit;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 900;
  transition: border-color 160ms ease, color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.release-style-link:hover,
.release-style-link:focus-visible,
.release-style-link.is-active {
  border-color: rgba(255, 255, 255, 0.72);
  color: #fff;
  box-shadow: 0 0 18px rgba(239, 24, 15, 0.24);
  transform: translateY(-1px);
}

.release-style-link.electro { color: #f4a3c9; }
.release-style-link.post-punk { color: #74a83f; }
.release-style-link.rock { color: #fff; }
.release-style-link.other { color: #ffb000; }

.release-card.is-filtered-out {
  display: none;
}

.releases-toggle {
  display: flex;
  width: min(100%, 360px);
  margin: 18px auto 0;
}

.generated-cover {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 14px;
}

.generated-cover span {
  display: none;
}

.generated-cover::before,
.generated-cover::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.generated-cover::before {
  inset: 18%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transform: rotate(-8deg);
}

.generated-cover::after {
  width: 46%;
  height: 46%;
  border: 2px solid rgba(239, 24, 15, 0.85);
  border-radius: 50%;
  box-shadow: 0 0 34px rgba(239, 24, 15, 0.36);
}

.alt-red .generated-cover {
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.3), transparent 44%),
    radial-gradient(circle at 55% 38%, rgba(239, 24, 15, 0.42), transparent 36%),
    linear-gradient(180deg, #111, #040404);
}

.alt-grey .generated-cover {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 44%),
    radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.08), transparent 34%),
    linear-gradient(180deg, #151515, #050505);
}

.centered {
  width: min(100%, 340px);
  margin: 38px auto 0;
}

.side-column {
  display: grid;
  gap: 18px;
  align-content: start;
}

.video-frame {
  position: relative;
  display: block;
  border: 1px solid var(--line);
  background: #050505;
  overflow: hidden;
}

.video-frame img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.35) brightness(0.78);
}

.play-button {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  transform: translate(-50%, -50%);
}

.play-button::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 20px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid #050505;
}

.play-button.small {
  width: 42px;
  height: 42px;
}

.play-button.small::after {
  left: 18px;
  top: 13px;
  border-top-width: 8px;
  border-bottom-width: 8px;
  border-left-width: 12px;
}

.video-links-block {
  margin-top: 0;
}

.video-link-list {
  display: grid;
  gap: 12px;
}

.video-link-card {
  display: grid;
  grid-template-columns: minmax(112px, 0.9fr) 1fr;
  gap: 14px;
  align-items: stretch;
  border: 0;
  background: transparent;
  padding: 0;
}

.video-links-block .video-link-card {
  border: none;
  background: transparent;
  box-shadow: none;
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #050505;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  min-height: 90px;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.18) brightness(0.78);
  transition: transform 180ms ease, filter 180ms ease;
}

.video-thumb:hover img,
.video-thumb:focus-visible img {
  transform: scale(1.04);
  filter: grayscale(0) brightness(0.9);
}

.video-link-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  min-width: 0;
}

.video-link-copy strong {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.round-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.round-links a {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
}

.round-links img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.round-links a:hover,
.round-links a:focus-visible {
  border-color: var(--red);
  color: var(--red);
}

.mail-link {
  display: inline-block;
  margin-top: 22px;
  color: var(--muted);
  word-break: break-word;
}

.mail-link:hover,
.mail-link:focus-visible {
  color: var(--red);
}

.site-footer {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  padding: 24px 20px 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--dim);
  text-align: center;
  letter-spacing: 0.14em;
}


.extension-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto clamp(36px, 6vw, 72px);
}

.extension-panel {
  position: relative;
  min-height: 0;
  padding: clamp(26px, 5vw, 58px);
  border: 1px solid rgba(239, 24, 15, 0.5);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.18), transparent 42%),
    rgba(5, 5, 5, 0.82);
}

.extension-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/floced-hero-fx.png") center / cover no-repeat;
  opacity: 0.2;
  filter: saturate(1.3) contrast(1.15);
}

.extension-copy {
  position: relative;
  z-index: 1;
}

.extension-copy p:not(.section-label) {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--muted);
}

.extension-download {
  width: min(100%, 360px);
}

.signal-separator {
  position: relative;
  width: min(100% - 40px, var(--max));
  height: clamp(44px, 6vw, 76px);
  margin: clamp(4px, 1.4vw, 16px) auto clamp(6px, 1.8vw, 20px);
  overflow: hidden;
  opacity: 0.72;
}

.signal-separator::before,
.signal-separator::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  pointer-events: none;
}

.signal-separator::before {
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
}

.signal-separator::after {
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(255, 255, 255, 0.14), transparent 58%);
  filter: blur(18px);
}

.signal-separator svg {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.signal-separator path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.42);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.18));
}

.signal-separator-hero {
  margin-top: clamp(-28px, -2.4vw, -14px);
  margin-bottom: clamp(0px, 1vw, 12px);
}

.atelier-section {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
  padding: 0 0 clamp(58px, 8vw, 96px);
}

.atelier-intro {
  display: grid;
  grid-template-columns: minmax(180px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  margin-bottom: 28px;
}

.atelier-intro .section-label {
  margin-bottom: 0;
}

.atelier-copy h2 {
  max-width: 720px;
}

.atelier-copy p {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
}

.atelier-gallery {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 16px;
}

.atelier-card {
  min-height: 280px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: rgba(6, 6, 6, 0.78);
  overflow: hidden;
  color: inherit;
  text-decoration: none;
}

.atelier-card.large {
  grid-row: span 2;
  min-height: 576px;
}

.atelier-card.studio-video-card {
  grid-column: 3;
  min-height: 280px;
}

.atelier-card img {
  width: 100%;
  height: 100%;
  min-height: 170px;
  object-fit: cover;
  background-color: #070707;
  filter: grayscale(0.45) contrast(1.1);
}

.atelier-card.large img {
  min-height: 390px;
}

.atelier-card div:last-child {
  padding: 18px;
}

.atelier-card span {
  display: block;
  margin-bottom: 8px;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.26em;
  font-size: 0.68rem;
  font-weight: 800;
}

.atelier-card h3 {
  margin: 0 0 8px;
  color: #fff;
  font-size: 1.04rem;
  line-height: 1.25;
}

.atelier-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.listen-page {
  min-height: 100vh;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), #030303 68%),
    radial-gradient(circle at 50% 0%, rgba(239, 24, 15, 0.22), transparent 30rem),
    url("assets/floced-links-artist-banner.jpg") center / cover fixed;
}

.listen-page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    rgba(0, 0, 0, 0.74);
  background-size: 3px 3px, 3px 3px, auto;
}

.listen-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(24px, 5vw, 56px) 18px;
}

.listen-brand {
  position: fixed;
  top: 24px;
  left: clamp(20px, 4vw, 48px);
  color: rgba(207, 213, 216, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-style: italic;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 18px rgba(210, 216, 220, 0.2);
}

.listen-card {
  width: min(100%, 470px);
  padding: clamp(24px, 5vw, 34px);
  border: 1px solid rgba(239, 24, 15, 0.46);
  background: rgba(3, 3, 3, 0.82);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.58);
  backdrop-filter: blur(14px);
}

.listen-kicker,
.listen-choice {
  margin: 0;
  color: var(--red);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.72rem;
  font-weight: 800;
}

.listen-card h1 {
  margin: 12px 0 0;
  color: #fff;
  text-align: center;
  font-size: clamp(2.8rem, 13vw, 5rem);
  line-height: 0.95;
  text-shadow: 0 0 32px rgba(239, 24, 15, 0.28);
}

.listen-release {
  margin: 10px 0 18px;
  color: var(--muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.84rem;
  font-weight: 800;
}

.listen-choice {
  margin-bottom: 14px;
  color: #f2f2f2;
  letter-spacing: 0.2em;
}

.spotify-embed {
  display: block;
  margin: 0 0 16px;
  border: 0;
  border-radius: 12px;
  background: #111;
}

.listen-cover {
  width: min(100%, 230px);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  object-fit: cover;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.48);
}

.listen-cover-wide {
  width: min(100%, 380px);
  aspect-ratio: 2.33;
  object-fit: cover;
  background: #000;
  padding: 0;
}

.listen-links {
  display: grid;
  gap: 10px;
}

.listen-links a {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.055);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.listen-links a:hover,
.listen-links a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--red);
  background: rgba(239, 24, 15, 0.18);
}

.listen-links span {
  display: grid;
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.listen-links img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.listen-links .spotify-mark {
  background: #1db954;
  border-color: transparent;
}

.listen-links .apple-mark {
  background: linear-gradient(135deg, #fa243c, #fb5c74 42%, #a855f7);
  border-color: transparent;
}

.listen-links .youtube-mark {
  background: #ff0000;
  border-color: transparent;
}

.listen-links .deezer-mark {
  background: linear-gradient(135deg, #a238ff, #ff2f86 48%, #ffcc00);
  border-color: transparent;
}

.listen-links .amazon-mark {
  background: #1ed7e6;
  border-color: transparent;
  color: #050505;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: lowercase;
}

.listen-links .tidal-mark {
  background: #f2f2f2;
  border-color: transparent;
}

.listen-links .tidal-mark img {
  filter: invert(1);
}

.listen-links .bandcamp-mark {
  background: #629aa9;
  border-color: transparent;
}

.listen-links .soundcloud-mark {
  background: #ff5500;
  border-color: transparent;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .brand {
    width: 118px;
    height: 52px;
  }

  .menu-button {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    background: rgba(2, 2, 2, 0.96);
    border-bottom: 1px solid var(--line);
  }

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

  .site-nav a {
    position: relative;
    padding: 18px 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav a::after {
    left: 28px;
    bottom: 9px;
    width: 74px;
    transform: scaleX(0.42);
    transform-origin: left;
  }

  .site-nav a:hover::after,
  .site-nav a:focus-visible::after,
  .site-nav a[href="#home"]::after {
    transform: scaleX(1);
  }

  .header-social {
    display: none;
  }

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

  .news-inline {
    width: min(100%, 520px);
    margin: 28px auto 0;
  }

  .store-block {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

  .extension-panel {
    grid-template-columns: 1fr;
  }

  .store-visual,
  .store-copy {
    order: initial;
  }

  .side-column {
    grid-template-columns: 1fr 1fr;
  }

  .atelier-intro,
  .atelier-gallery {
    grid-template-columns: 1fr;
  }

  .atelier-card.large {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  :root {
    --header: 70px;
  }

  .site-header {
    padding: 0 18px;
  }

  .hero {
    min-height: 88vh;
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-actions,
  .release-list,
  .side-column,
  .store-visual {
    grid-template-columns: 1fr;
  }

  .hero-actions .platform-link {
    clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  }


  .release-style-links {
    grid-template-columns: 1fr 1fr;
  }

  .video-link-card {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .platform-link,
  .outline-button {
    width: 100%;
  }

  .content-grid {
    width: min(100% - 32px, var(--max));
    padding-top: 48px;
  }

  .atelier-section,
  .extension-section {
    width: min(100% - 32px, var(--max));
  }

  .extension-panel {
    padding: 24px;
  }

  .atelier-card,
  .atelier-card.large {
    min-height: auto;
  }

  .atelier-card.large img {
    min-height: 240px;
  }

  .kicker {
    position: static;
    width: auto;
    max-width: none;
    transform: none;
    letter-spacing: 0.18em;
  }

  .listen-brand {
    position: static;
    justify-self: start;
    margin: 0 0 22px;
  }

  .listen-shell {
    align-content: start;
    place-items: stretch center;
  }

  .listen-card {
    width: min(100%, 420px);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
.contact-button {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
}

.video-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 18%, rgba(111, 183, 198, 0.12), transparent 24rem),
    radial-gradient(circle at 26% 20%, rgba(239, 24, 15, 0.14), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #000 48%, #050505 100%);
}

.video-shell {
  width: min(var(--max), calc(100% - 36px));
  margin: 0 auto;
  padding: calc(var(--header) + 70px) 0 70px;
}

.video-hero {
  max-width: 760px;
  margin-bottom: 34px;
}

.video-hero h1 {
  margin: 0 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 10vw, 8rem);
  line-height: 0.86;
  font-weight: 400;
}

.video-hero p:not(.section-label) {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.video-grid,
.channel-grid {
  display: grid;
  gap: 22px;
}

.video-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: end;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(239, 24, 15, 0.6);
  background: linear-gradient(135deg, rgba(239, 24, 15, 0.12), rgba(0, 0, 0, 0.94) 44%);
}

.video-thumb {
  position: relative;
  display: block;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #050505;
}

.video-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: grayscale(0.1) brightness(0.72);
  transition: transform 220ms ease, filter 220ms ease;
}

.video-thumb span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 10px 14px;
  border: 1px solid var(--red);
  background: rgba(0, 0, 0, 0.72);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.video-thumb:hover img,
.video-thumb:focus-visible img {
  transform: scale(1.025);
  filter: grayscale(0) brightness(0.9);
}

.video-feature h2 {
  margin: 0 0 12px;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  line-height: 0.96;
}

.video-feature p:not(.section-label),
.video-note p:not(.section-label) {
  margin: 0;
  color: var(--muted);
}

.channel-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 24px;
}

.channel-card {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 116px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(5, 5, 5, 0.78);
  transition: border-color 180ms ease, transform 180ms ease;
}

.channel-card:hover,
.channel-card:focus-visible {
  transform: translateY(-2px);
  border-color: var(--red);
}

.channel-card.atmospheres:hover,
.channel-card.atmospheres:focus-visible {
  border-color: #6fb7c6;
}

.channel-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  background: var(--red);
}

.channel-card.atmospheres .channel-icon {
  background: #406f78;
}

.channel-icon img {
  width: 24px;
  height: 24px;
}

.channel-card strong,
.channel-card small {
  display: block;
}

.channel-card strong {
  font-size: 1.2rem;
}

.channel-card small {
  color: var(--muted);
}

.video-note {
  margin-top: 24px;
  padding: 22px;
  border-left: 2px solid #6fb7c6;
  background: rgba(111, 183, 198, 0.06);
}

@media (max-width: 720px) {
  .video-feature,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .video-shell {
    width: min(100% - 28px, 620px);
    padding-top: calc(var(--header) + 36px);
  }
}
/* Floced video spacing fix */
.video-page .video-shell {
  padding-top: calc(var(--header) + 28px);
}

.video-page .video-hero {
  margin-bottom: 18px;
}

.video-page .video-hero h1 {
  display: none;
}

.video-page .video-hero p:not(.section-label) {
  margin-top: 0;
}

.video-page .video-grid {
  margin-top: 16px;
}

@media (max-width: 720px) {
  .video-page .video-shell {
    padding-top: calc(var(--header) + 20px);
  }
}
/* End Floced video spacing fix */
/* Floced language switch */
.site-nav .lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid rgba(239, 24, 15, 0.92);
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.28), rgba(0, 0, 0, 0.84)),
    #080808;
  color: #fff;
  box-shadow: 0 0 24px rgba(239, 24, 15, 0.2);
}

.site-nav .lang-switch::after {
  display: none;
}

.site-nav .lang-switch:hover,
.site-nav .lang-switch:focus-visible {
  border-color: #fff;
  background:
    linear-gradient(135deg, rgba(239, 24, 15, 0.5), rgba(0, 0, 0, 0.8)),
    #100;
}

.lang-icon {
  display: inline-grid;
  place-items: center;
  width: 18px;
  height: 18px;
  font-size: 0.95rem;
  line-height: 1;
}

@media (max-width: 980px) {
  .site-nav .lang-switch {
    justify-content: flex-start;
    margin: 10px 28px 18px;
    padding: 12px 14px;
  }
}
/* End Floced language switch */