/* ═══════════════════════════════════════════════════════════
   THE DIAMOND — Premium Music Artist Template
   A Young Black Man Inc. Product
   Palette: Deep Navy · Diamond White · Electric Cyan · Prismatic
   Font: Space Grotesk (Google Fonts)
═══════════════════════════════════════════════════════════ */

/* ─── GOOGLE FONTS ─────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&display=swap');

/* ─── DESIGN TOKENS ────────────────────────────────────── */
:root {
  /* Palette */
  --navy:        #050d1a;
  --navy-mid:    #0a1628;
  --navy-light:  #0d1f3c;
  --diamond:     #f0f4ff;
  --cyan:        #00d4ff;
  --cyan-dim:    rgba(0,212,255,0.12);
  --cyan-glow:   rgba(0,212,255,0.25);
  --purple:      #7b2ff7;
  --pink:        #ff006e;
  --green:       #00ff87;
  --gold:        #ffd700;
  --white:       #ffffff;

  /* Glass surfaces */
  --glass-bg:        rgba(15, 25, 50, 0.55);
  --glass-bg-light:  rgba(20, 35, 65, 0.45);
  --glass-border:    rgba(0, 212, 255, 0.15);
  --glass-blur:      blur(14px);
  --glass-blur-sm:   blur(8px);

  /* Type */
  --font-body:    'Space Grotesk', system-ui, -apple-system, sans-serif;
  --font-display: 'Space Grotesk', system-ui, -apple-system, sans-serif;

  /* Type scale */
  --text-xs:   clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm:   clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg:   clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl:   clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl:  clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl:  clamp(2.5rem, 1rem + 4vw, 5rem);
  --text-hero: clamp(3rem, 0.5rem + 7vw, 8rem);

  /* Spacing */
  --s1: 0.25rem;  --s2: 0.5rem;   --s3: 0.75rem;
  --s4: 1rem;     --s5: 1.25rem;  --s6: 1.5rem;
  --s8: 2rem;     --s10: 2.5rem;  --s12: 3rem;
  --s16: 4rem;    --s20: 5rem;    --s24: 6rem;

  /* Radii */
  --r-sm: 0.375rem;
  --r-md: 0.625rem;
  --r-lg: 1rem;
  --r-xl: 1.5rem;
  --r-full: 9999px;

  /* Motion */
  --ease-out:  cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:   cubic-bezier(0.4, 0, 1, 1);
  --t-fast:    180ms cubic-bezier(0.16, 1, 0.3, 1);
  --t-med:     300ms cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-w: 1200px;
  --nav-h: 68px;
  --radio-h: 44px;
}

/* ─── BASE RESET ────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + var(--radio-h) + var(--s4));
  hanging-punctuation: first last;
}

body {
  min-height: 100dvh;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--diamond);
  background-color: var(--navy);
  line-height: 1.6;
  overflow-x: hidden;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

ul[role='list'], ol[role='list'] { list-style: none; }
input, button, textarea, select { font: inherit; color: inherit; }
h1, h2, h3, h4, h5, h6 { text-wrap: balance; line-height: 1.15; }
p, li, figcaption { text-wrap: pretty; max-width: 72ch; }
button { cursor: pointer; background: none; border: none; }

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--t-fast);
}

::selection {
  background: rgba(0, 212, 255, 0.25);
  color: var(--white);
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: var(--r-sm);
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ─── LAYOUT HELPERS ────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(var(--s4), 4vw, var(--s10));
}

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

/* ─── GLASS MORPHISM ────────────────────────────────────── */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
}

.glass-card {
  background: var(--glass-bg-light);
  backdrop-filter: var(--glass-blur-sm);
  -webkit-backdrop-filter: var(--glass-blur-sm);
  border: 1px solid rgba(0, 212, 255, 0.1);
  border-radius: var(--r-lg);
  transition:
    border-color var(--t-med),
    box-shadow var(--t-med),
    transform var(--t-med);
}

/* ─── PRISMATIC ANIMATIONS ─────────────────────────────── */
@property --prism-angle {
  syntax: '<angle>';
  initial-value: 90deg;
  inherits: false;
}

@keyframes prism {
  0%   { --prism-angle: 90deg; }
  25%  { --prism-angle: 180deg; }
  50%  { --prism-angle: 270deg; }
  75%  { --prism-angle: 360deg; }
  100% { --prism-angle: 450deg; }
}

@keyframes prism-hue {
  0%   { filter: hue-rotate(0deg) brightness(1.1); }
  50%  { filter: hue-rotate(180deg) brightness(1.2); }
  100% { filter: hue-rotate(360deg) brightness(1.1); }
}

@keyframes prism-border {
  0%   { border-image-source: linear-gradient(90deg, #ff006e, #00d4ff, #7b2ff7, #00ff87); }
  33%  { border-image-source: linear-gradient(90deg, #00d4ff, #7b2ff7, #00ff87, #ff006e); }
  66%  { border-image-source: linear-gradient(90deg, #7b2ff7, #00ff87, #ff006e, #00d4ff); }
  100% { border-image-source: linear-gradient(90deg, #ff006e, #00d4ff, #7b2ff7, #00ff87); }
}

@keyframes shimmer-bg {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ─── UPLOAD NOTE ───────────────────────────────────────── */
.upload-note {
  font-size: var(--text-xs);
  color: rgba(0, 212, 255, 0.55);
  letter-spacing: 0.04em;
  margin-bottom: var(--s6);
  padding: var(--s2) var(--s4);
  border-left: 2px solid rgba(0, 212, 255, 0.25);
}

/* ─── SECTION SHARED ────────────────────────────────────── */
.section {
  padding-block: clamp(var(--s12), 7vw, var(--s24));
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--s12);
}

.section-title {
  font-size: var(--text-2xl);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--diamond);
  margin-bottom: var(--s3);
}

.section-sub {
  font-size: var(--text-base);
  color: rgba(240, 244, 255, 0.55);
  font-weight: 400;
}

/* ─── SCROLL REVEAL ─────────────────────────────────────── */
.reveal-item {
  opacity: 1;
  transform: scale(1);
}

.reveal-item.reveal-hidden {
  opacity: 0;
  transform: scale(0.95);
  transition:
    opacity 0.55s var(--ease-out),
    transform 0.55s var(--ease-out);
}

.reveal-item.reveal-visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger via delay class added in JS */
.reveal-item.reveal-visible.delay-1 { transition-delay: 0.05s; }
.reveal-item.reveal-visible.delay-2 { transition-delay: 0.1s; }
.reveal-item.reveal-visible.delay-3 { transition-delay: 0.15s; }
.reveal-item.reveal-visible.delay-4 { transition-delay: 0.2s; }

/* ─── DIAMOND DIVIDERS ──────────────────────────────────── */
.divider-diamond {
  width: 100%;
  line-height: 0;
  overflow: hidden;
  height: 40px;
}

.divider-diamond svg {
  width: 100%;
  height: 40px;
}

.divider-diamond--flip {
  transform: scaleY(1);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 1 — RADIO BAR
═══════════════════════════════════════════════════════════ */
.radio-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(5, 13, 26, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.18);
  transition: transform var(--t-med), height var(--t-med);
  overflow: hidden;
}

.radio-bar.collapsed {
  transform: translateY(calc(-100% + 4px));
}

.radio-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--s2) var(--s6);
  height: var(--radio-h);
  gap: var(--s4);
}

.radio-bar__left {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

.radio-bar__toggle-play {
  width: 30px;
  height: 30px;
  border-radius: var(--r-full);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--t-fast), border-color var(--t-fast);
  flex-shrink: 0;
}

.radio-bar__toggle-play:hover {
  background: rgba(0, 212, 255, 0.2);
  border-color: var(--cyan);
}

.radio-bar__track-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.radio-bar__label {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
}

.radio-bar__title {
  font-size: var(--text-xs);
  font-weight: 500;
  color: rgba(240, 244, 255, 0.8);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

.radio-bar__right {
  display: flex;
  align-items: center;
  gap: var(--s4);
}

/* Visualizer bars */
.radio-bar__visualizer {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 16px;
}

.radio-bar__visualizer span {
  width: 3px;
  border-radius: 2px;
  background: var(--cyan);
  animation: vizBar 0.8s ease-in-out infinite alternate;
  opacity: 0.7;
}
.radio-bar__visualizer span:nth-child(1) { height: 8px;  animation-delay: 0s;    }
.radio-bar__visualizer span:nth-child(2) { height: 14px; animation-delay: 0.1s;  }
.radio-bar__visualizer span:nth-child(3) { height: 6px;  animation-delay: 0.2s;  }
.radio-bar__visualizer span:nth-child(4) { height: 12px; animation-delay: 0.05s; }
.radio-bar__visualizer span:nth-child(5) { height: 10px; animation-delay: 0.15s; }

@keyframes vizBar {
  from { transform: scaleY(0.3); opacity: 0.4; }
  to   { transform: scaleY(1);   opacity: 0.9; }
}

.radio-bar.paused .radio-bar__visualizer span {
  animation-play-state: paused;
  opacity: 0.25;
}

.radio-bar__collapse {
  width: 28px;
  height: 28px;
  border-radius: var(--r-full);
  background: transparent;
  border: 1px solid rgba(0, 212, 255, 0.2);
  color: rgba(240, 244, 255, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--t-fast), border-color var(--t-fast), transform var(--t-fast);
}

.radio-bar__collapse:hover {
  color: var(--cyan);
  border-color: var(--cyan);
}

.radio-bar.collapsed .radio-bar__collapse {
  transform: rotate(180deg);
}

.radio-bar .upload-note {
  padding: var(--s1) var(--s6);
  margin: 0;
  border: none;
  border-top: 1px solid rgba(0, 212, 255, 0.08);
  font-size: 0.6rem;
  letter-spacing: 0.05em;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2 — NAV
═══════════════════════════════════════════════════════════ */
.nav {
  position: fixed;
  top: var(--radio-h);
  left: 0;
  right: 0;
  z-index: 100;
  border-radius: 0;
  border-top: none;
  border-bottom: 1px solid rgba(0, 212, 255, 0.12);
  transition: top var(--t-med), box-shadow var(--t-med);
}

.radio-bar.collapsed ~ .nav {
  top: 4px;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s6);
  height: var(--nav-h);
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: var(--s3);
  text-decoration: none;
  flex-shrink: 0;
}

.nav__logo-text {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--diamond);
  letter-spacing: 0.05em;
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s2);
  list-style: none;
}

.nav__link {
  position: relative;
  font-size: var(--text-sm);
  font-weight: 500;
  color: rgba(240, 244, 255, 0.7);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: var(--s2) var(--s3);
  transition: color var(--t-fast);
  text-decoration: none;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: var(--s3);
  right: var(--s3);
  height: 2px;
  background: linear-gradient(90deg, #ff006e, #00d4ff, #7b2ff7, #00ff87);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-med);
  border-radius: var(--r-full);
}

.nav__link:hover,
.nav__link.active {
  color: var(--diamond);
}

.nav__link:hover::after,
.nav__link.active::after {
  transform: scaleX(1);
  animation: prism-border 3s linear infinite;
}

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: var(--s4);
  flex-shrink: 0;
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  padding: var(--s2);
  border-radius: var(--r-md);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: border-color var(--t-fast);
}

.nav__hamburger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--diamond);
  transition: transform var(--t-med), opacity var(--t-fast);
  border-radius: 2px;
}

.nav__hamburger:hover {
  border-color: var(--cyan);
}

.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile menu */
.nav__mobile-menu {
  display: none;
  background: rgba(5, 13, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  padding: var(--s6) var(--s6) var(--s8);
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--t-med);
}

.nav__mobile-menu.open {
  display: block;
  max-height: 500px;
}

.nav__mobile-link {
  display: block;
  font-size: var(--text-lg);
  font-weight: 600;
  color: rgba(240, 244, 255, 0.75);
  padding: var(--s4) 0;
  border-bottom: 1px solid rgba(0, 212, 255, 0.08);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color var(--t-fast), padding-left var(--t-fast);
}

.nav__mobile-link:hover {
  color: var(--cyan);
  padding-left: var(--s4);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 — HERO
═══════════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--radio-h) + var(--s8));
}

/* Floating crystal geometry */
.hero__crystals {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.crystal {
  position: absolute;
  opacity: 0;
  animation: crystalFloat 12s ease-in-out infinite;
}

@keyframes crystalFloat {
  0%   { opacity: 0; transform: translateY(0) rotate(0deg); }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-100vh) rotate(360deg); }
}

/* Crystal shapes via clip-path + borders */
.crystal--1 {
  left: 8%;  top: 70%;
  width: 18px; height: 18px;
  background: rgba(0, 212, 255, 0.15);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 0s;    animation-duration: 14s;
}
.crystal--2 {
  left: 20%; top: 80%;
  width: 10px; height: 10px;
  background: rgba(123, 47, 247, 0.2);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 2s;    animation-duration: 11s;
}
.crystal--3 {
  left: 75%; top: 90%;
  width: 24px; height: 24px;
  background: rgba(0, 212, 255, 0.1);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation-delay: 0.5s;  animation-duration: 16s;
}
.crystal--4 {
  left: 88%; top: 75%;
  width: 14px; height: 14px;
  background: rgba(255, 0, 110, 0.18);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 3s;    animation-duration: 13s;
}
.crystal--5 {
  left: 55%; top: 85%;
  width: 8px;  height: 8px;
  background: rgba(0, 255, 135, 0.2);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 1s;    animation-duration: 10s;
}
.crystal--6 {
  left: 35%; top: 95%;
  width: 20px; height: 20px;
  border: 1px solid rgba(0, 212, 255, 0.3);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 4s;    animation-duration: 15s;
}
.crystal--7 {
  left: 65%; top: 88%;
  width: 6px;  height: 6px;
  background: rgba(255, 215, 0, 0.25);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  animation-delay: 1.5s;  animation-duration: 9s;
}
.crystal--8 {
  left: 12%; top: 92%;
  width: 16px; height: 16px;
  background: rgba(123, 47, 247, 0.15);
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
  animation-delay: 5s;    animation-duration: 17s;
}

/* Center diamond decoration */
.hero__diamond-deco {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: diamondPulse 6s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

@keyframes diamondPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1);    opacity: 0.5; }
  50%       { transform: translate(-50%, -50%) scale(1.05); opacity: 0.8; }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding-inline: var(--s6);
}

.hero__eyebrow {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
  margin-bottom: var(--s6);
}

.hero__title {
  font-size: var(--text-hero);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: var(--s8);
}

/* Prismatic gradient on artist name */
.hero__name-prism {
  display: block;
  background: linear-gradient(
    135deg,
    #f0f4ff 0%,
    #00d4ff 20%,
    #7b2ff7 40%,
    #ff006e 60%,
    #00ff87 80%,
    #f0f4ff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-bg 4s linear infinite;
}

.hero__sub {
  font-size: var(--text-lg);
  font-weight: 400;
  color: rgba(240, 244, 255, 0.6);
  margin-bottom: var(--s10);
  max-width: 52ch;
  margin-inline: auto;
}

.hero__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s4);
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero__scroll-indicator {
  position: absolute;
  bottom: var(--s8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s3);
  color: rgba(0, 212, 255, 0.4);
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  z-index: 2;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(0, 212, 255, 0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50%       { opacity: 0.8; transform: scaleY(0.8); }
}

/* ─── BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s2);
  padding: var(--s3) var(--s6);
  border-radius: var(--r-full);
  font-size: var(--text-sm);
  font-weight: 600;
  font-family: var(--font-body);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition:
    background var(--t-fast),
    color var(--t-fast),
    box-shadow var(--t-fast),
    transform var(--t-fast),
    border-color var(--t-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--primary {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}
.btn--primary:hover {
  background: #22ddff;
  box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
  transform: translateY(-1px);
}

.btn--cyan {
  background: var(--cyan);
  color: var(--navy);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.2);
}
.btn--cyan:hover {
  background: #22ddff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  color: var(--diamond);
  border: 1px solid rgba(240, 244, 255, 0.3);
}
.btn--outline:hover {
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
}

.btn--ghost {
  background: rgba(240, 244, 255, 0.06);
  color: rgba(240, 244, 255, 0.6);
  border: 1px solid rgba(240, 244, 255, 0.1);
}
.btn--ghost:hover {
  background: rgba(240, 244, 255, 0.1);
  color: var(--diamond);
}

.btn--sm {
  padding: var(--s2) var(--s4);
  font-size: var(--text-xs);
}

.btn--wide {
  width: 100%;
  padding-block: var(--s4);
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4 — MUSIC STORE
═══════════════════════════════════════════════════════════ */
.music-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--s6);
}

.track-card {
  position: relative;
  overflow: hidden;
  cursor: default;
}

.track-card:hover {
  transform: translateY(-3px);
  border-color: transparent;
  box-shadow:
    0 8px 32px rgba(0, 212, 255, 0.12),
    0 0 0 1px transparent;
  animation: prism-card-hover 0.3s ease forwards;
}

/* Prismatic border on hover via outline+pseudo approach */
.track-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--r-lg);
  background: linear-gradient(var(--prism-angle), #ff006e, #00d4ff, #7b2ff7, #00ff87);
  z-index: -1;
  opacity: 0;
  transition: opacity var(--t-med);
  animation: prism 3s linear infinite paused;
}

.track-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

.track-card:hover .track-card__art .art-placeholder {
  animation: prism-hue 3s linear infinite;
}

.track-card__art {
  position: relative;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  border-radius: var(--r-md) var(--r-md) 0 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.art-placeholder {
  font-size: 3.5rem;
  color: rgba(0, 212, 255, 0.3);
  user-select: none;
  transition: transform var(--t-med);
}

.album-placeholder {
  text-align: center;
  font-size: 2.5rem;
  line-height: 1.3;
}

.album-placeholder small {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(0, 212, 255, 0.4);
  font-weight: 600;
}

.track-card:hover .art-placeholder {
  transform: scale(1.08);
}

.track-card__preview-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
  color: var(--cyan);
  opacity: 0;
  transition: opacity var(--t-fast);
  cursor: pointer;
  border: none;
}

.track-card:hover .track-card__preview-btn {
  opacity: 1;
}

.track-card__info {
  padding: var(--s4) var(--s5);
}

.track-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--diamond);
  margin-bottom: var(--s1);
}

.track-card__meta {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.45);
  margin-bottom: var(--s4);
}

.track-card__actions {
  display: flex;
  align-items: center;
  gap: var(--s3);
}

.track-card__price {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--cyan);
  flex: 1;
}

.price--gold {
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.price--prism {
  background: linear-gradient(90deg, #ff006e, #00d4ff, #7b2ff7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% auto;
  animation: shimmer-bg 2.5s linear infinite;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 5 — PHOTO GALLERY
═══════════════════════════════════════════════════════════ */
.masonry-grid {
  columns: 3;
  column-gap: var(--s5);
}

.masonry-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: var(--s5);
  overflow: hidden;
  cursor: pointer;
}

.masonry-item:hover {
  border-color: rgba(0, 212, 255, 0.35);
  box-shadow: 0 0 24px rgba(0, 212, 255, 0.1);
}

.masonry-item:hover .photo-overlay {
  opacity: 1;
}

.masonry-item:hover .photo-placeholder {
  transform: scale(1.04);
}

.photo-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: rgba(0, 212, 255, 0.2);
  user-select: none;
  transition: transform var(--t-med);
}

.masonry-tall .photo-placeholder {
  aspect-ratio: 2/3;
}

.masonry-wide .photo-placeholder {
  aspect-ratio: 16/9;
}

.photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 13, 26, 0.85) 0%,
    rgba(5, 13, 26, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  align-items: flex-end;
  padding: var(--s4);
  opacity: 0;
  transition: opacity var(--t-med);
  backdrop-filter: blur(2px);
}

.photo-overlay span {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--diamond);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 6 — VIDEO GALLERY
═══════════════════════════════════════════════════════════ */
.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s6);
}

.video-card {
  overflow: hidden;
  cursor: pointer;
  transition:
    transform var(--t-med),
    border-color var(--t-med),
    box-shadow var(--t-med);
}

.video-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.3);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.1);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  overflow: hidden;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(0, 212, 255, 0.2);
  user-select: none;
}

.video-play-btn {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.35);
  color: var(--diamond);
  opacity: 0;
  transition: opacity var(--t-fast), color var(--t-fast);
  cursor: pointer;
  border: none;
}

.video-card:hover .video-play-btn {
  opacity: 1;
  color: var(--cyan);
}

.video-card__info {
  padding: var(--s4) var(--s5);
}

.video-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--diamond);
  margin-bottom: var(--s1);
}

.video-card__meta {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.4);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 7 — MERCH STORE
═══════════════════════════════════════════════════════════ */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--s6);
}

.merch-card {
  overflow: hidden;
  transition:
    transform var(--t-med),
    border-color var(--t-med),
    box-shadow var(--t-med);
}

.merch-card:hover {
  transform: translateY(-3px);
  border-color: rgba(0, 212, 255, 0.25);
  box-shadow: 0 8px 28px rgba(0, 212, 255, 0.1);
}

.merch-card__img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.merch-placeholder {
  font-size: 2.5rem;
  color: rgba(0, 212, 255, 0.2);
  user-select: none;
}

.merch-card__info {
  padding: var(--s5);
}

.merch-card__title {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--diamond);
  margin-bottom: var(--s2);
}

.merch-card__desc {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.5);
  margin-bottom: var(--s4);
}

.merch-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--s4);
}

.merch-price {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--cyan);
  transition: color var(--t-fast);
}

.merch-price.discounted {
  color: var(--green);
}

/* Discount panel */
.discount-panel {
  border-radius: var(--r-lg);
  padding: var(--s6) var(--s8);
  margin-bottom: var(--s8);
  max-width: 480px;
  margin-inline: auto;
}

.discount-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(240, 244, 255, 0.6);
  text-transform: uppercase;
  margin-bottom: var(--s3);
}

.discount-row {
  display: flex;
  gap: var(--s3);
}

.discount-input {
  flex: 1;
  padding: var(--s3) var(--s4);
  background: rgba(15, 25, 50, 0.6);
  border: 1px solid rgba(0, 212, 255, 0.2);
  border-radius: var(--r-md);
  color: var(--diamond);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  letter-spacing: 0.06em;
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}

.discount-input::placeholder { color: rgba(240, 244, 255, 0.3); }

.discount-input:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.12);
}

.discount-msg {
  margin-top: var(--s3);
  font-size: var(--text-xs);
  font-weight: 500;
  min-height: 1.2em;
}

.discount-msg.success { color: var(--green); }
.discount-msg.error   { color: #ff6b8a; }

/* ═══════════════════════════════════════════════════════════
   SECTION 8 — TOUR DATES
═══════════════════════════════════════════════════════════ */
.tour-list {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.tour-row {
  display: grid;
  grid-template-columns: 18px 72px 1fr auto;
  align-items: center;
  gap: var(--s5);
  padding: var(--s5) var(--s6);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast), background var(--t-fast);
}

.tour-row:hover {
  border-color: rgba(0, 212, 255, 0.25);
  background: rgba(0, 212, 255, 0.04);
}

/* Cyan accent dot */
.tour-row__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--r-full);
  background: var(--cyan);
  box-shadow: 0 0 8px var(--cyan);
  flex-shrink: 0;
}

.tour-row__date {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.tour-month {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--cyan);
  text-transform: uppercase;
}

.tour-day {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--diamond);
  line-height: 1;
}

.tour-row__info { flex: 1; }

.tour-venue {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--diamond);
  margin-bottom: var(--s1);
}

.tour-location {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.45);
}

.tour-row__status {
  display: flex;
  align-items: center;
  gap: var(--s3);
  flex-shrink: 0;
}

/* Tour badges */
.tour-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 2px var(--s3);
  border-radius: var(--r-full);
}

.tour-badge--on-sale {
  background: rgba(0, 255, 135, 0.12);
  color: var(--green);
  border: 1px solid rgba(0, 255, 135, 0.25);
}

.tour-badge--few-left {
  background: rgba(255, 215, 0, 0.1);
  color: var(--gold);
  border: 1px solid rgba(255, 215, 0, 0.2);
}

.tour-badge--sold-out {
  background: rgba(255, 0, 110, 0.1);
  color: #ff6b8a;
  border: 1px solid rgba(255, 0, 110, 0.2);
}

/* ═══════════════════════════════════════════════════════════
   SECTION 9 — FAN WALL
═══════════════════════════════════════════════════════════ */
.fan-wall .container {
  max-width: 860px;
}

.fan-form {
  border-radius: var(--r-xl);
  padding: var(--s8) var(--s10);
  margin-bottom: var(--s8);
}

.fan-form__title {
  font-size: var(--text-lg);
  font-weight: 700;
  color: var(--diamond);
  margin-bottom: var(--s6);
  letter-spacing: -0.01em;
}

.fan-form__fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s4);
  margin-bottom: var(--s4);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--s2);
  position: relative;
}

.form-group label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(240, 244, 255, 0.55);
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  padding: var(--s3) var(--s4);
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(0, 212, 255, 0.18);
  border-radius: var(--r-md);
  color: var(--diamond);
  font-size: var(--text-sm);
  font-family: var(--font-body);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(240, 244, 255, 0.25);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.char-counter {
  position: absolute;
  bottom: var(--s3);
  right: var(--s4);
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.3);
  pointer-events: none;
}

.fan-form .btn--wide {
  margin-top: var(--s4);
  font-size: var(--text-sm);
}

/* Fan posts */
.fan-posts {
  display: flex;
  flex-direction: column;
  gap: var(--s4);
}

.fan-post {
  padding: var(--s5) var(--s6);
  border-radius: var(--r-lg);
  transition: border-color var(--t-fast);
}

.fan-post:hover {
  border-color: rgba(0, 212, 255, 0.2);
}

.fan-post.new-post {
  animation: postSlideIn 0.4s var(--ease-out) both;
}

@keyframes postSlideIn {
  from { opacity: 0; transform: scale(0.96); }
  to   { opacity: 1; transform: scale(1); }
}

.fan-post__header {
  display: flex;
  align-items: center;
  gap: var(--s4);
  margin-bottom: var(--s4);
}

.fan-post__avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--r-full);
  background: linear-gradient(135deg, var(--cyan-dim), rgba(123, 47, 247, 0.15));
  border: 1px solid rgba(0, 212, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--text-sm);
  color: var(--cyan);
  flex-shrink: 0;
}

.fan-post__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
}

.fan-post__name {
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--diamond);
}

.fan-post__location {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.4);
}

.fan-post__time {
  font-size: var(--text-xs);
  color: rgba(0, 212, 255, 0.5);
  white-space: nowrap;
}

.fan-post__text {
  font-size: var(--text-sm);
  color: rgba(240, 244, 255, 0.7);
  line-height: 1.6;
  max-width: none;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 10 — FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  border-radius: 0;
  border-top: 1px solid rgba(0, 212, 255, 0.12);
  border-left: none;
  border-right: none;
  border-bottom: none;
  padding-block: var(--s12) var(--s8);
  margin-top: var(--s8);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  gap: var(--s10);
  margin-bottom: var(--s10);
  align-items: start;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: var(--s4);
  text-decoration: none;
  margin-bottom: var(--s4);
}

.footer__logo span {
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--diamond);
  letter-spacing: 0.05em;
}

.footer__tagline {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.4);
  letter-spacing: 0.04em;
  max-width: none;
}

.footer__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s3);
}

.footer__nav a {
  font-size: var(--text-sm);
  color: rgba(240, 244, 255, 0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color var(--t-fast);
}

.footer__nav a:hover { color: var(--cyan); }

.footer__social-label {
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(240, 244, 255, 0.45);
  margin-bottom: var(--s4);
  max-width: none;
}

.footer__social-links {
  display: flex;
  gap: var(--s4);
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: var(--r-full);
  background: rgba(0, 212, 255, 0.06);
  border: 1px solid rgba(0, 212, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(240, 244, 255, 0.55);
  transition:
    background var(--t-fast),
    border-color var(--t-fast),
    color var(--t-fast),
    transform var(--t-fast),
    box-shadow var(--t-fast);
}

.social-link:hover {
  background: rgba(0, 212, 255, 0.15);
  border-color: var(--cyan);
  color: var(--cyan);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 212, 255, 0.2);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--s4);
  padding-top: var(--s6);
  border-top: 1px solid rgba(0, 212, 255, 0.08);
}

.footer__copy {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.35);
  max-width: none;
}

.footer__links {
  display: flex;
  gap: var(--s5);
}

.footer__links a {
  font-size: var(--text-xs);
  color: rgba(240, 244, 255, 0.35);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 500;
  transition: color var(--t-fast);
}

.footer__links a:hover { color: var(--cyan); }

/* YBM stamp */
.ybm-stamp {
  font-size: var(--text-xs);
  color: rgba(0, 212, 255, 0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  max-width: none;
  width: 100%;
  text-align: center;
  margin-top: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid rgba(0, 212, 255, 0.06);
}

/* ─── TOAST ─────────────────────────────────────────────── */
.toast {
  position: fixed;
  bottom: var(--s8);
  right: var(--s6);
  z-index: 1000;
  background: rgba(0, 212, 255, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--diamond);
  padding: var(--s4) var(--s6);
  border-radius: var(--r-lg);
  font-size: var(--text-sm);
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  pointer-events: none;
  transition:
    opacity 0.3s var(--ease-out),
    transform 0.3s var(--ease-out);
  max-width: 360px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.toast.toast--success {
  border-color: rgba(0, 255, 135, 0.35);
  background: rgba(0, 255, 135, 0.08);
}

.toast.toast--error {
  border-color: rgba(255, 0, 110, 0.35);
  background: rgba(255, 0, 110, 0.08);
}

/* ═══════════════════════════════════════════════════════════
   BODY OFFSET (sticky nav + radio bar)
═══════════════════════════════════════════════════════════ */
body {
  padding-top: calc(var(--nav-h) + var(--radio-h));
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

/* Tablet: 768-1024px */
@media (max-width: 1024px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--s8);
  }

  .footer__brand { grid-column: 1 / -1; }

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

  .masonry-grid {
    columns: 2;
  }
}

/* Mobile: ≤768px */
@media (max-width: 768px) {
  :root {
    --nav-h: 60px;
    --radio-h: 40px;
  }

  /* Nav */
  .nav__links { display: none; }
  .nav__actions .btn--sm:not(.nav__hamburger) { display: none; }
  .nav__hamburger { display: flex; }

  /* Mobile menu visible */
  .nav__mobile-menu { display: none; }
  .nav__mobile-menu.open { display: block; }

  /* Hero */
  .hero__ctas { flex-direction: column; align-items: center; }
  .hero__ctas .btn { width: 100%; max-width: 280px; }
  .hero__diamond-deco { width: 120px; height: 120px; }
  .hero__diamond-deco svg { width: 120px; height: 120px; }

  /* Grids */
  .music-grid { grid-template-columns: 1fr; }
  .video-grid { grid-template-columns: 1fr; }
  .merch-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }

  /* Tour */
  .tour-row {
    grid-template-columns: 10px 56px 1fr;
    grid-template-rows: auto auto;
    gap: var(--s3);
  }
  .tour-row__status {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  /* Fan form */
  .fan-form {
    padding: var(--s6);
  }
  .fan-form__fields {
    grid-template-columns: 1fr;
  }

  /* Footer */
  .footer__top {
    grid-template-columns: 1fr;
    gap: var(--s8);
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  /* Radio bar */
  .radio-bar__title { max-width: 160px; }

  /* Discount */
  .discount-panel { padding: var(--s5); }
}

/* Mobile: ≤480px */
@media (max-width: 480px) {
  .section-title { font-size: clamp(1.6rem, 6vw, 2rem); }
  .hero__title { letter-spacing: -0.02em; }

  .tour-row {
    grid-template-columns: 10px 1fr;
    gap: var(--s2);
  }
  .tour-row__date {
    display: none;
  }
  .tour-row__status {
    grid-column: 2;
    flex-wrap: wrap;
  }

  .footer__social-links { gap: var(--s3); }
  .social-link { width: 38px; height: 38px; }
}
