/* ============================================================
   scoby — website
   Builds on brand-tokens.css. Warm, cinematic, immersive.
   ============================================================ */

:root {
  --nav-h: 74px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body { overflow-x: hidden; }

/* honor anchor offset under fixed nav */
section[id] { scroll-margin-top: var(--nav-h); }

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

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(20px, 5vw, 56px);
  transition: background 0.5s var(--ease), backdrop-filter 0.5s var(--ease), border-color 0.5s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--loam) 78%, transparent);
  backdrop-filter: blur(14px) saturate(1.1);
  -webkit-backdrop-filter: blur(14px) saturate(1.1);
  border-bottom-color: color-mix(in srgb, var(--whey) 10%, transparent);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 23px;
  letter-spacing: 0.01em;
  color: var(--whey);
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  pointer-events: none;
}
.nav.scrolled .nav-brand { opacity: 1; transform: none; pointer-events: auto; }
.nav-brand .disc { width: 19px; height: 19px; color: var(--brew); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 42px);
}
.nav-links a {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whey);
  opacity: 0.66;
  position: relative;
  padding: 6px 0;
  transition: opacity 0.3s var(--ease);
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--brew);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.nav-links a:hover { opacity: 1; }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a.store-link { color: var(--brew); opacity: 0.9; }

.nav-toggle { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--loam);
}

/* crawling fractal background */
.hero-fractal {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  -webkit-mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
  mask-image: linear-gradient(to bottom, black 50%, transparent 100%);
}
.hero-fractal svg { width: 100%; height: 100%; display: block; }
@media (prefers-reduced-motion: reduce) {
  .hero-fractal { display: none; }
}

.hero-eyebrow {
  font-family: var(--mono);
  font-size: clamp(10px, 1.1vw, 12.5px);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--whey-3);
  margin-bottom: clamp(26px, 4vh, 44px);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow { opacity: 0; animation: fadeUp 1.1s var(--ease) 1.5s forwards; }
}

/* ripple field + wordmark */
.hero-mark {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(72vw, 760px);
}

.wordmark {
  position: relative;
  z-index: 3;
  width: 100%;
  display: block;
  --fg: var(--whey);
  --bg: var(--loam);
}

.wordmark-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

@media (prefers-reduced-motion: no-preference) {
  .wordmark-svg {
    opacity: 0;
    transform: scale(0.965);
    transform-origin: 50% 50%;
    animation: markIn 1.7s var(--ease) 0.25s forwards;
  }
}

/* ripple rings emitted from the O / pellicle center */
.ripple-field {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.ripple {
  position: absolute;
  left: 50%; top: 50%;
  width: 12vw;
  height: 12vw;
  max-width: 130px;
  max-height: 130px;
  border-radius: 50%;
  opacity: 0;
  
  /* Forces the color to act like light, brightening the dark background */
  mix-blend-mode: screen;
  
  /* Added a 3rd shadow layer to act as the bright "crest" of the wave.
    Increased opacities across the board so the color fights the dark background.
  */
  box-shadow: 
    0 0 10px 0px color-mix(in srgb, var(--brew) 80%, transparent),     /* Bright core */
    0 0 30px 0px color-mix(in srgb, var(--brew) 40%, transparent),     /* Outer ambient glow */
    inset 0 0 20px 0px color-mix(in srgb, var(--brew) 30%, transparent); /* Inner fade */
              
  transform: translate(-50%, -50%) scale(0);
}

.ripple.go { 
  animation: waterRipple 4.5s cubic-bezier(0.1, 0.8, 0.3, 1) forwards; 
}

@keyframes waterRipple {
  0% {
    transform: translate(-50%, -50%) scale(0.1);
    opacity: 0.8;
  }
  40% {
    opacity: 0.5;
  }
  100% {
    /* Scale(20) guarantees corner-to-corner viewport coverage before fading out */
    transform: translate(-50%, -50%) scale(20); 
    opacity: 0;
  }
}

.hero-scroll {
  position: absolute;
  bottom: clamp(22px, 4vh, 40px);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--whey-3);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll { opacity: 0; animation: fadeUp 1.1s var(--ease) 2.1s forwards; }
}
.hero-scroll .line {
  width: 1px; height: 38px;
  background: linear-gradient(var(--whey-3), transparent);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-scroll .line { animation: scrollLine 2.4s ease-in-out infinite; }
}

/* ============================================================
   keyframes
   ============================================================ */
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }
@keyframes markIn {
  from { opacity: 0; transform: scale(0.965); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes discIn {
  from { opacity: 0; transform: scale(0.6) rotate(-22deg); }
  to   { opacity: 1; transform: scale(1) rotate(0deg); }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.035); }
}
@keyframes ripple {
  0%   { transform: scale(0.3); opacity: 0; }
  12%  { opacity: 0.5; }
  100% { transform: scale(34); opacity: 0; }
}
@keyframes scrollLine {
  0%   { transform: scaleY(0.2); transform-origin: top; opacity: 0.3; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.2); transform-origin: bottom; opacity: 0.3; }
}

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.s {
  position: relative;
  padding: clamp(80px, 13vh, 168px) clamp(20px, 5vw, 56px);
}
.s-wrap { max-width: 1180px; margin: 0 auto; }

.s-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: clamp(40px, 6vw, 76px);
}
.s-head h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(30px, 4.4vw, 58px);
  letter-spacing: -0.015em;
  line-height: 1.04;
}
.s-head h2 em { font-style: italic; color: var(--brew); }
.s-num {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--whey-3);
  opacity: 0.7;
  white-space: nowrap;
  padding-top: 0.7em;
}

/* reveal on scroll — progressive enhancement: visible by default, hidden only when JS active */
.reveal { transition: opacity 1s var(--ease), transform 1s var(--ease); }
html.js .reveal { opacity: 0; transform: translateY(26px); }
html.js .reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   MUSIC
   ============================================================ */
.music { background: var(--loam); }

.featured {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 8vw, 104px);
}
.featured-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 40px 90px -40px rgba(0,0,0,0.8);
}
.featured-art img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.featured:hover .featured-art img { transform: scale(1.04); }
.featured-art::after {
  content: "";
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--whey) 9%, transparent);
  border-radius: 3px;
}

.featured-tag {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brew);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 22px;
}
.featured-tag::before { content:""; width: 28px; height: 1px; background: var(--brew); opacity: 0.7; }
.featured-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6vw, 78px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.featured-meta {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  color: var(--whey-3);
  margin-bottom: 34px;
}

.platforms { display: flex; flex-wrap: wrap; gap: 11px; }
.plat {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--whey);
  padding: 11px 20px;
  border: 1px solid color-mix(in srgb, var(--whey) 18%, transparent);
  border-radius: 100px;
  display: inline-flex; align-items: center; gap: 9px;
  transition: all 0.34s var(--ease);
}
.plat svg { width: 15px; height: 15px; fill: currentColor; opacity: 0.85; }
.plat:hover {
  border-color: var(--brew);
  color: var(--loam);
  background: var(--brew);
}
.plat.solid {
  background: var(--whey);
  color: var(--loam);
  border-color: var(--whey);
}
.plat.solid:hover { background: var(--brew); border-color: var(--brew); }

/* release grid */
.releases {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(14px, 1.6vw, 22px);
}
.release { display: block; position: relative; }
.release-art {
  position: relative;
  aspect-ratio: 1;
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 24px 50px -34px rgba(0,0,0,0.75);
}
.release-art img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.1s var(--ease), filter 0.6s var(--ease);
}
.release-art::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(to top, color-mix(in srgb, var(--loam) 88%, transparent), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.release-play {
  position: absolute;
  inset: 0;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.4s var(--ease), transform 0.5s var(--ease);
}
.release-play span {
  width: 56px; height: 56px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--whey) 70%, transparent);
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(3px);
}
.release-play svg { width: 16px; height: 16px; fill: var(--whey); margin-left: 2px; }
.release:hover .release-art img { transform: scale(1.06); }
.release:hover .release-art::after { opacity: 1; }
.release:hover .release-play { opacity: 1; transform: scale(1); }

.release-info { margin-top: 14px; }
.release-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.01em;
}
.release-type {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--whey-3);
  margin-top: 5px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  position: relative;
  overflow: hidden;
  padding-top: clamp(60px, 9vh, 110px);
  padding-bottom: clamp(60px, 9vh, 110px);
}
.about > .s-wrap {
  position: relative;
  z-index: 2;
}
.about-bg {
  position: absolute; inset: 0;
  background-image: url("photos/about-bg.jpg");
  background-size: cover;
  background-position: center 30%;
  filter: saturate(0.7) contrast(1.05) brightness(0.22);
}
.about-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 50% 50%, transparent, color-mix(in srgb, var(--bark) 80%, transparent)),
    linear-gradient(color-mix(in srgb, var(--bark) 50%, transparent), color-mix(in srgb, var(--loam) 70%, transparent));
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr minmax(0, 0.82fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
}
.about-photo {
  position: relative;
  max-width: 75%;
  margin-left: 70px;
}
.about-photo img {
  width: 100%;
  display: block;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}
.about-body p {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(19px, 2.1vw, 27px);
  line-height: 1.5;
  letter-spacing: -0.005em;
}
.about-body p + p { margin-top: 1.1em; }
.about-body em { font-style: italic; color: var(--brew); }
.about-tags {
  display: flex; flex-wrap: wrap; gap: 10px;
  margin-top: 40px;
}
.about-tags span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--whey-2);
  padding: 7px 15px;
  border: 1px solid color-mix(in srgb, var(--whey) 16%, transparent);
  border-radius: 100px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--loam); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  align-items: start;
}
.contact-lead {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.015em;
}
.contact-lead em { font-style: italic; color: var(--brew); }
.contact-email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
  font-family: var(--mono);
  font-size: clamp(15px, 1.8vw, 19px);
  letter-spacing: 0.04em;
  color: var(--whey);
  border-bottom: 1px solid color-mix(in srgb, var(--whey) 26%, transparent);
  padding-bottom: 6px;
  transition: border-color 0.4s var(--ease), color 0.4s var(--ease);
}
.contact-email:hover { color: var(--brew); border-color: var(--brew); }
.contact-note {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--whey-3);
  margin-top: 18px;
}

.socials { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.social {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 19px 4px;
  border-top: 1px solid color-mix(in srgb, var(--whey) 12%, transparent);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  color: var(--whey);
  transition: color 0.3s var(--ease), padding-left 0.4s var(--ease);
}
.social:hover { color: var(--brew); padding-left: 12px; }
.social svg { width: 19px; height: 19px; fill: currentColor; flex-shrink: 0; opacity: 0.9; }
.social .grow {
  margin-left: auto;
  font-family: var(--mono);
  font-size: 16px;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.social:hover .grow { opacity: 0.7; transform: none; }

/* ============================================================
   STORE (live Fourthwall)
   ============================================================ */
.store {
  position: relative;
  padding: clamp(80px, 13vh, 168px) clamp(20px, 5vw, 56px);
  overflow: hidden;
}
.store-bg {
  position: absolute; inset: 0;
  background-image: url("photos/window.jpg");
  background-size: cover;
  background-position: center;
  filter: saturate(0.85) contrast(1.05) brightness(0.26);
}
.store-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(80% 80% at 50% 50%, transparent, color-mix(in srgb, var(--loam) 82%, transparent)),
    linear-gradient(color-mix(in srgb, var(--loam) 55%, transparent), color-mix(in srgb, var(--bark) 50%, transparent));
}
.store-wrap {
  position: relative;
  z-index: 2;
  max-width: 1180px;
  margin: 0 auto;
}

/* product grid */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: clamp(14px, 2vw, 26px);
  margin-bottom: clamp(36px, 5vw, 60px);
  min-height: 140px;
}

/* loading state */
.merch-loading {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 64px 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--whey-3);
}
.merch-spinner {
  display: block;
  width: 18px; height: 18px;
  border: 1.5px solid color-mix(in srgb, var(--brew) 28%, transparent);
  border-top-color: var(--brew);
  border-radius: 50%;
  animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.merch-empty {
  grid-column: 1 / -1;
  text-align: center;
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 300;
  color: var(--whey-2);
  padding: 64px 0;
}
.merch-empty a { color: var(--brew); text-decoration: underline; text-underline-offset: 4px; }

/* product card */
.merch-card {
  display: flex;
  flex-direction: column;
  background: color-mix(in srgb, var(--bark) 78%, transparent);
  border: 1px solid color-mix(in srgb, var(--whey) 9%, transparent);
  border-radius: 4px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.4s var(--ease), transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  cursor: pointer;
}
.merch-card:hover {
  border-color: color-mix(in srgb, var(--brew) 55%, transparent);
  transform: translateY(-5px);
  box-shadow: 0 32px 60px -28px rgba(0,0,0,0.8);
}

.merch-img {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: color-mix(in srgb, var(--loam) 60%, var(--bark));
}
.merch-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}
.merch-card:hover .merch-img img { transform: scale(1.05); }
.merch-img-placeholder {
  width: 100%; height: 100%;
  background: color-mix(in srgb, var(--bark) 80%, var(--clay));
}

.merch-info {
  padding: 18px 20px 12px;
  flex: 1;
}
.merch-name {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.22;
  letter-spacing: 0.01em;
  color: var(--whey);
}
.merch-price {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--whey-3);
  margin-top: 8px;
}

.merch-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 20px;
  border-top: 1px solid color-mix(in srgb, var(--whey) 8%, transparent);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--brew);
  transition: color 0.3s var(--ease);
}
.merch-cta svg {
  width: 13px; height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.4s var(--ease);
}
.merch-card:hover .merch-cta { color: var(--whey); }
.merch-card:hover .merch-cta svg { transform: translateX(4px); }

/* view-all row */
.store-cta-row { text-align: center; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--loam);
  background: var(--whey);
  padding: 16px 30px;
  border-radius: 100px;
  border: 1px solid var(--whey);
  transition: all 0.4s var(--ease);
}
.btn:hover { background: var(--brew); border-color: var(--brew); color: var(--loam); transform: translateY(-2px); }
.btn svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 2; }
.btn-outline {
  background: transparent;
  color: var(--whey);
  border-color: color-mix(in srgb, var(--whey) 28%, transparent);
}
.btn-outline:hover { background: var(--brew); border-color: var(--brew); color: var(--loam); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--loam);
  padding: clamp(48px, 7vw, 76px) clamp(20px, 5vw, 56px) 40px;
  border-top: 1px solid color-mix(in srgb, var(--whey) 9%, transparent);
}
.footer-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}
.footer-mark {
  display: flex; align-items: center; gap: 13px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: 30px;
}
.footer-mark .disc { width: 26px; height: 26px; color: var(--brew); }
.footer-links { display: flex; gap: 26px; flex-wrap: wrap; }
.footer-links a {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--whey-3);
  transition: color 0.3s var(--ease);
}
.footer-links a:hover { color: var(--brew); }
.footer-base {
  max-width: 1180px;
  margin: 40px auto 0;
  padding-top: 26px;
  border-top: 1px solid color-mix(in srgb, var(--whey) 7%, transparent);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--whey-3);
  opacity: 0.7;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 880px) {
  .featured { grid-template-columns: 1fr; gap: 30px; }
  .featured-art { max-width: 440px; }
  .releases { grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .about-grid { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; gap: 44px; }
  .merch-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 620px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 10.5px; letter-spacing: 0.14em; }
  .socials { grid-template-columns: 1fr; }
  .s-head { flex-direction: column; gap: 8px; }
  .s-num { padding-top: 0; }
  .merch-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .merch-name { font-size: 15px; }
}

/* ============================================================
   SPOTIFY EMBED
   ============================================================ */
.spotify-embed {
  margin-bottom: 64px;
  border-radius: 14px;
  overflow: hidden;
}
.spotify-embed iframe {
  display: block;
  width: 100%;
  height: 380px;
  border: 0;
  border-radius: 14px;
}
