/* ==========================================================================
   FaB DRM Theme Styles
   ========================================================================== */

/* ==========================================================================
   CUSTOM PROPERTIES (Design Tokens)
   ========================================================================== */

:root {
  /* Colors - Brand */
  --color-primary: #fe6201;
  --color-accent: #fe6201;
  --color-secondary: #ffffff;

  /* Colors - Theme */
  --color-background: #22182c;
  --color-text: #f7e7d7;
  --color-text-muted: #e0c0f3;

  /* Colors - Neutral */
  --color-black: #000000;
  --color-white: #ffffff;

  /* Colors - Extended palette */
  --color-orange-200: oklch(90.1% 0.076 70.697);
  --color-orange-300: oklch(83.7% 0.128 66.29);
  --color-orange-400: oklch(75% 0.183 55.934);
  --color-slate-400: oklch(70.4% 0.04 256.788);
  --color-slate-800: oklch(27.9% 0.041 260.031);

  /* Typography - Font families */
  --font-sans: "Mona Sans", ui-sans-serif, system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;

  /* Typography - Font sizes */
  --text-xs: 0.75rem; /* 12px */
  --text-sm: 0.875rem; /* 14px */
  --text-base: 1rem; /* 16px */
  --text-lg: 1.125rem; /* 18px */
  --text-xl: 1.25rem; /* 20px */
  --text-2xl: 1.5rem; /* 24px */
  --text-3xl: 1.875rem; /* 30px */
  --text-4xl: 2.25rem; /* 36px */
  --text-5xl: 3rem; /* 48px */
  --text-6xl: 3.75rem; /* 60px */
  --text-9xl: 8rem; /* 128px */

  /* Typography - Font weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Typography - Line heights */
  --leading-none: 1;
  --leading-tight: 1.25;
  --leading-snug: 1.375;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;

  /* Typography - Letter spacing */
  --tracking-tighter: -0.05em;
  --tracking-tight: -0.025em;
  --tracking-normal: 0em;
  --tracking-wide: 0.025em;
  --tracking-wider: 0.05em;

  /* Spacing scale (based on 0.25rem = 4px) */
  --space-1: 0.25rem; /* 4px */
  --space-2: 0.5rem; /* 8px */
  --space-3: 0.75rem; /* 12px */
  --space-4: 1rem; /* 16px */
  --space-5: 1.25rem; /* 20px */
  --space-6: 1.5rem; /* 24px */
  --space-8: 2rem; /* 32px */
  --space-10: 2.5rem; /* 40px */
  --space-12: 3rem; /* 48px */
  --space-16: 4rem; /* 64px */
  --space-20: 5rem; /* 80px */
  --space-24: 6rem; /* 96px */
  --space-32: 8rem; /* 128px */
  --space-64: 16rem; /* 256px */

  /* Border radius */
  --radius-sm: 0.25rem; /* 4px */
  --radius-md: 0.375rem; /* 6px */
  --radius-lg: 0.5rem; /* 8px */
  --radius-xl: 0.75rem; /* 12px */
  --radius-2xl: 1rem; /* 16px */
  --radius-full: 9999px;

  /* Container widths */
  --container-xs: 20rem; /* 320px */
  --container-sm: 24rem; /* 384px */
  --container-md: 28rem; /* 448px */
  --container-lg: 32rem; /* 512px */
  --container-xl: 36rem; /* 576px */
  --container-2xl: 42rem; /* 672px */
  --container-3xl: 48rem; /* 768px */
  --container-4xl: 56rem; /* 896px */
  --container-5xl: 64rem; /* 1024px */
  --container-max: 2400px;

  /* Transitions */
  --transition-fast: 150ms;
  --transition-normal: 300ms;
  --transition-slow: 500ms;
  --ease-default: cubic-bezier(0.4, 0, 0.2, 1);

  /* Z-index scale */
  --z-base: 0;
  --z-above: 10;
  --z-overlay: 20;
  --z-modal: 50;

  /* Video hero */
  --max-height-hero: 170vw;
}

@media (max-width: 767px) {
  :root {
    --max-height-hero: 100svh;
  }
}

/* ==========================================================================
   BASE RESET
   ========================================================================== */

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

html {
  line-height: var(--leading-normal);
  -webkit-text-size-adjust: 100%;
  tab-size: 4;
  font-family: var(--font-sans);
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--font-sans);
  font-variation-settings:
    "wdth" 100,
    "wght" 400;
  background-image: linear-gradient(190deg, #0f030d 20%, var(--color-background) 90%, #5e2f04 100%);
  color: var(--color-text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* Links - no underlines by default */
a,
a:where(:not(.wp-element-button)) {
  color: inherit;
  text-decoration: none !important;
}

/* Headings reset */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  font-variation-settings:
    "wdth" 120,
    "wght" 700;
}

/* Lists reset */
ol,
ul,
menu {
  list-style: none;
}

/* Media elements */
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

/* Form elements */
button,
input,
select,
optgroup,
textarea {
  font: inherit;
  color: inherit;
  background-color: transparent;
}

button {
  cursor: pointer;
  border: none;
}

/* Table reset */
table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

/* Hidden elements */
[hidden] {
  display: none !important;
}

/* ==========================================================================
   TYPOGRAPHY UTILITIES
   ========================================================================== */

/* Header/footer link style */
header a,
footer .site-footer__nav a,
.marquee-content,
.dropdown__trigger {
  font-variation-settings:
    "wdth" 75,
    "wght" 500;
  text-transform: uppercase;
  letter-spacing: var(--tracking-wider);
}

.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

.tall-thin {
  font-variation-settings:
    "wdth" 75,
    "wght" 600;
  letter-spacing: 0;
}

.marquee-content {
  font-variation-settings:
    "wdth" 75,
    "wght" 800;
}

.industry-partners {
  font-variation-settings:
    "wdth" 120,
    "wght" 700;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.site-wrapper {
  max-width: var(--container-max);
  margin-inline: auto;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  max-width: var(--container-max);
  width: 100%;
  z-index: var(--z-modal);
  padding: var(--space-4) var(--space-4);
  transition: background-color var(--transition-normal) var(--ease-default);
}

/* Full-width gradient background */
.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.3) 45%, rgba(0, 0, 0, 0));
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  transition: opacity 2s var(--ease-default);
}

.site-header.scrolled::before {
  opacity: 1;
}

@media (min-width: 768px) {
  .site-header {
    padding: var(--space-6) var(--space-12);
  }
}

/* Offset header when WP admin bar is visible */
body.admin-bar .site-header {
  top: 32px;
}

@media screen and (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.site-header__logo {
  z-index: calc(var(--z-modal) + 10);
  position: relative;
}

.site-header__nav-wrapper {
  grid-auto-flow: column;
  gap: var(--space-6);
  align-items: center;
  height: 4.5rem;
  padding-inline: var(--space-6);
}

.site-header__nav-wrapper--desktop {
  display: none;
}

@media (min-width: 768px) {
  .site-header__nav-wrapper--desktop {
    display: grid;
    gap: var(--space-6);
  }
}

.site-header__nav {
  display: grid;
  grid-auto-flow: column;
  gap: var(--space-4);
  font-size: var(--text-xl);
  text-align: center;
  line-height: 1;
}

@media (min-width: 920px) {
  .site-header__nav {
    font-size: var(--text-2xl);
    gap: var(--space-6);
    word-spacing: -0.02em;
  }
}

.site-header__nav-link {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  transition: color var(--transition-fast) var(--ease-default);
}

.site-header__nav-link:hover {
  color: var(--color-accent);
}

/* Mobile Hamburger Button */
.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  width: 37px;
  height: 37px;
  padding: 8px;
  background-color: var(--color-black);
  border: 2.75px solid var(--color-white);
  box-shadow: 0 0 0 3px var(--color-black);
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition-fast) var(--ease-default);
  z-index: calc(var(--z-modal) + 10);
  position: relative;
}

.hamburger__bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: all var(--transition-fast) var(--ease-default);
}

/* Hamburger to X animation */
.hamburger.is-active .hamburger__bar:first-child {
  transform: translateY(3px) rotate(45deg);
}

.hamburger.is-active .hamburger__bar:last-child {
  transform: translateY(-3px) rotate(-45deg);
}

/* Hide hamburger on desktop */
@media (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* Mobile Navigation */
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: var(--container-max);
  height: 100dvh;
  background-color: var(--color-black);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height var(--transition-normal) var(--ease-default),
    opacity var(--transition-normal) var(--ease-default);
  z-index: calc(var(--z-modal) + 5);
}

.mobile-nav.is-active {
  max-height: 100dvh;
  opacity: 1;
}

.mobile-nav__link {
  color: var(--color-white);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  font-size: calc(var(--text-xl) * 1.25);
  transition: color var(--transition-fast) var(--ease-default);
}

.mobile-nav__link:hover {
  color: var(--color-accent);
}

.mobile-nav__link--portal {
  color: var(--color-accent);
}

.mobile-nav__link--portal:hover {
  color: var(--color-white);
}

.mobile-nav__divider {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: var(--space-12);
  pointer-events: none;
}

/* Hide mobile nav on desktop */
@media (min-width: 768px) {
  .mobile-nav {
    display: none;
  }
}

/* Scrolled header state */
#header .scrollednav {
  backdrop-filter: blur(0px);
  transition: all var(--transition-normal) var(--ease-default);
}

#header.scrolled .scrollednav {
  background-color: color-mix(in oklab, var(--color-black) 80%, transparent);
  backdrop-filter: blur(12px);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1) var(--space-2);
  padding: var(--space-1) var(--space-5);
  border-radius: var(--radius-md);
  font-weight: var(--font-weight-medium);
  transition: all var(--transition-fast) var(--ease-default);
}

.btn--primary {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--primary:hover {
  background-color: color-mix(in oklab, var(--color-accent) 90%, transparent);
}

.btn--outline {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  outline: 1px solid color-mix(in oklab, var(--color-accent) 40%, transparent);
  border-radius: var(--radius-lg);
  padding: var(--space-1) var(--space-4);
}

.btn--outline:hover {
  background-color: var(--color-accent);
  color: var(--color-white);
}

.btn--ghost {
  color: var(--color-accent);
  font-weight: var(--font-weight-semibold);
  padding: var(--space-1) var(--space-4);
}

.btn--ghost:hover {
  color: var(--color-white);
}

.btn__icon {
  width: 1rem;
  height: 1rem;
}

/* ==========================================================================
   DROPDOWN
   ========================================================================== */

.dropdown {
  position: relative;
}

.dropdown__trigger {
  cursor: pointer;
  border: none;
  border-radius: var(--radius-md);
  transition:
    border-radius var(--transition-normal) var(--ease-default),
    background-color var(--transition-fast) var(--ease-default);
}

/* When open, blend trigger into menu */
.dropdown[data-open="true"] .dropdown__trigger {
  border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.dropdown__chevron {
  transition: transform var(--transition-normal) var(--ease-default);
}

.dropdown[data-open="true"] .dropdown__chevron {
  transform: rotate(180deg);
}

.dropdown__menu {
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  padding: var(--space-1) var(--space-2) var(--space-2);
  background-color: var(--color-accent);
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  opacity: 0;
  visibility: hidden;
  max-height: 0;
  overflow: hidden;
  transform-origin: top center;
  transition:
    opacity var(--transition-normal) var(--ease-default),
    visibility var(--transition-normal) var(--ease-default),
    max-height var(--transition-normal) var(--ease-default),
    padding var(--transition-normal) var(--ease-default);
  z-index: 100;
}

.dropdown[data-open="true"] .dropdown__menu {
  opacity: 1;
  visibility: visible;
  max-height: 200px;
}

.dropdown__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  border-radius: var(--radius-sm);
  transition: background-color var(--transition-fast) var(--ease-default);
}

.dropdown__item:hover {
  background-color: color-mix(in oklab, var(--color-white) 15%, transparent);
}

.dropdown__item-icon {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  opacity: 0.8;
}

.dropdown__item:hover .dropdown__item-icon {
  opacity: 1;
}

/* ==========================================================================
   LOGO
   ========================================================================== */

.logo-container {
  position: relative;
  cursor: pointer;
}

.logo-noise,
.logo-main {
  height: 42px;
  aspect-ratio: 1905/943;
}

@media (min-width: 768px) {
  .logo-noise,
  .logo-main {
    height: 4.5rem;
  }
}

.logo-main {
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 1000ms ease-in-out;
}

.logo-container:hover .logo-main {
  opacity: 0.25;
  transition: opacity 100ms ease-in-out;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  display: grid;
  height: 95vh;
}

.hero__video-wrapper {
  grid-column-start: 1;
  grid-row-start: 1;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 95vh;
  z-index: var(--z-base);
  overflow: hidden;
  max-height: var(--max-height-hero);
}

.hero__video {
  width: 100%;
  height: 100%;
  max-height: var(--max-height-hero);
  object-fit: cover;
  filter: brightness(0.75);
  opacity: 0;
  animation: hero-fade-in 800ms ease-out 300ms forwards;
}

.hero__video-fallback {
  display: none;
  width: 100%;
  height: 100%;
  max-height: var(--max-height-hero);
  object-fit: cover;
  filter: brightness(0.75);
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: hero-fade-in 800ms ease-out 300ms forwards;
}

/* On all devices with reduced motion preference (low-power mode), show image instead of video */
@media (prefers-reduced-motion: reduce) {
  .hero__video {
    display: none;
  }

  .hero__video-fallback {
    display: block;
  }
}

@keyframes hero-fade-in {
  to {
    opacity: 1;
  }
}

.hero__fallback {
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
}

.hero__content {
  grid-column-start: 1;
  grid-row-start: 1;
  margin-inline: auto;
  max-width: var(--container-max);
  padding-inline: var(--space-4);
  position: relative;
  z-index: var(--z-above);
  display: flex;
  align-items: flex-end;
  padding-bottom: 24vh;
  width: 100%;
}

@media (min-width: 768px) {
  .hero__content {
    padding-inline: var(--space-12);
  }
}

.hero__heading {
  font-size: clamp(2.5rem, 5vw, 10rem);
  line-height: var(--leading-none);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-tight);
  text-wrap-style: balance;
  /* max-width: 20ch; */
}

.hero__heading em {
  color: var(--color-orange-300);
  font-style: normal;
}

/* Showreel video overrides */
.showreel-section {
  overflow: hidden;
  max-height: var(--max-height-hero);
}

.showreel-section video {
  height: 100%;
  max-height: var(--max-height-hero);
  filter: brightness(0.75);
}

/* ==========================================================================
   PAGE HERO IMAGE
   ========================================================================== */

.page-hero {
  position: relative;
}

.page-hero__image {
  width: 100%;
  height: 40vh;
  object-fit: cover;
}
@media (min-width: 768px) {
  .page-hero__image {
    height: 30vh;
  }
}

/* ==========================================================================
   FEATURED ARTISTS SECTION
   ========================================================================== */

.featured-artists {
  padding: var(--space-4);
  padding-inline: var(--space-6);
}

@media (min-width: 768px) {
  .featured-artists {
    margin-block: var(--space-12);
    padding-inline: var(--space-12);
  }
}

.featured-artists__header {
  display: flex;
  gap: var(--space-6);
  align-items: baseline;
  justify-content: space-between;
}

.featured-artists__title {
  font-size: var(--text-3xl);
  font-weight: var(--font-weight-semibold);
  margin-bottom: var(--space-12);
  color: var(--color-accent);
}

@media (min-width: 768px) {
  .featured-artists__title {
    font-size: var(--text-5xl);
  }
}

/* ==========================================================================
   ARTIST MARQUEE (Splide)
   ========================================================================== */

/* Edge-to-edge track */
.artist-marquee {
  width: 100vw;
  margin-left: calc(50% - 50vw);
}

/* ==========================================================================
   ARTIST CARDS
   ========================================================================== */

.artist-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.artist-card--slider {
  width: 100%;
  height: 315px;
}

@media (min-width: 640px) {
  .artist-card--slider {
    height: 420px;
  }
}

.artist-card--featured {
  grid-column: span 2;
  grid-row: span 2;
}

.artist-card--wide {
  /* Is now essentially the same as featured */
  grid-column: span 2;
  grid-row: span 2;
}

/* Artist card images */
.artist-card-images {
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
}

.artist-card-img {
  border-radius: var(--radius-sm);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-normal) ease-in-out;
}

.artist-card-img-hover {
  opacity: 0;
  scale: 1;
}

.artist-card:hover .artist-card-img-hover {
  opacity: 1;
  scale: 1.02;
}

/* Artist card overlay */
.artist-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4) 50%, transparent);
  pointer-events: none;
  z-index: 10;
}

/* Artist card content */
.artist-card__content {
  position: absolute;
  left: var(--space-5);
  right: var(--space-5);
  bottom: var(--space-5);
  z-index: var(--z-overlay);
}

.artist-card__content--lg {
  font-size: var(--text-2xl);
}

@media (min-width: 768px) {
  .artist-card__content--lg {
    font-size: var(--text-3xl);
  }
}

/* Artist name and links */
.artist-name {
  position: relative;
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

.artist-links {
  position: relative;
  opacity: 1;
  margin-top: var(--space-3);
  display: flex;
  gap: var(--space-3);
}

@media (min-width: 768px) {
  .artist-name {
    position: absolute;
    left: 0;
    bottom: 0;
    transition: opacity var(--transition-normal) var(--ease-default);
  }

  .artist-links {
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
    margin-top: 0;
    transition: opacity var(--transition-normal) var(--ease-default);
  }

  .artist-card:hover .artist-name {
    opacity: 0;
  }

  .artist-card:hover .artist-links {
    opacity: 1;
  }
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

.page-id-32 .page-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2);
}
@media (min-width: 768px) {
  .page-id-32 .page-content {
    grid-template-columns: auto 1fr;
    gap: var(--space-2) var(--space-24);
  }
}

/* ==========================================================================
   SOCIAL LINKS
   ========================================================================== */

.social-link {
  transition: transform var(--transition-fast) var(--ease-default);
}

.social-link:hover {
  transform: scale(1.1);
}

.social-link__icon {
  width: 1.75rem;
  height: 1.75rem;
}

.social-link__icon--lg {
  width: 2rem;
  height: 2rem;
}

.social-link__icon--sm {
  width: 1.25rem;
  height: 1.25rem;
}

/* Platform-specific icon sizing adjustments */
.social-link--spotify svg,
.social-link--instagram svg {
  transform: scale(0.9);
}

.social-link--apple svg {
  transform: scale(1.2) translateY(-4%);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
  /* border-top: 2px solid color-mix(in oklab, var(--color-accent) 20%, transparent); */
  padding-inline: var(--space-4);
}

@media (min-width: 768px) {
  .site-footer {
    padding-inline: var(--space-12);
  }
}

.site-footer__inner {
  padding-block: var(--space-12);
  gap: var(--space-6);
  grid-template-columns: 1fr;
}

@media (min-width: 1300px) {
  .site-footer__inner {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: flex-start;
    padding-block: 7.5rem;
  }
}

.site-footer__nav {
  padding-bottom: var(--space-12);
}

.site-footer__nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--space-4);
  padding-bottom: var(--space-6);
}

.site-footer__nav-col {
  display: flex;
  flex-wrap: wrap;
  gap: 0 var(--space-4);
}

.site-footer__nav-link {
  color: var(--color-text);
  font-size: var(--text-2xl);
  transition: color var(--transition-fast) var(--ease-default);
}

.site-footer__nav-link:hover {
  color: color-mix(in oklab, var(--color-white) 80%, transparent);
}

.site-footer__nav-link--primary {
  color: var(--color-primary);
}

.site-footer__nav-link--primary:hover {
  color: color-mix(in oklab, var(--color-primary) 80%, transparent);
}

@media (min-width: 768px) {
  .site-footer__nav-link {
    font-size: var(--text-3xl);
  }
}

.site-footer__contact {
  display: flex;
  gap: var(--space-4);
  color: var(--color-text-muted);
}

/* Clipboard copy component */
.clipboard {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  cursor: pointer;
  transition: color var(--transition-fast) var(--ease-default);
}

.clipboard:hover {
  color: var(--color-text);
}

.clipboard__icon {
  display: inline-block;
  width: 14px;
  height: 14px;
  opacity: 0.6;
  flex-shrink: 0;
  vertical-align: middle;
  stroke: currentColor;
  transition: opacity var(--transition-fast) var(--ease-default);
}

.clipboard:hover .clipboard__icon {
  opacity: 0.6;
}

.clipboard.copied .clipboard__icon {
  opacity: 1;
  stroke: var(--color-accent);
}

/* Copied tooltip */
.clipboard::after {
  content: "Copied!";
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  padding: var(--space-1) var(--space-2);
  background-color: var(--color-accent);
  color: var(--color-white);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity var(--transition-fast) var(--ease-default),
    transform var(--transition-fast) var(--ease-default),
    visibility var(--transition-fast) var(--ease-default);
  pointer-events: none;
}

.clipboard.copied::after {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

.site-footer__social {
  display: flex;
  gap: var(--space-4);
  padding-top: var(--space-4);
}

.site-footer__social-link {
  color: var(--color-text-muted);
  transition: color var(--transition-fast) var(--ease-default);
}

.site-footer__social-link:hover {
  color: var(--color-white);
}

.site-footer__info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: var(--space-6);
}

.site-footer__logo {
  height: 3.25rem;
  width: auto;
}

@media (max-width: 767px) {
  .site-footer__logo {
    display: none;
  }
}

.site-footer__description {
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  max-width: var(--container-lg);
  margin-bottom: var(--space-4);
}

@media (max-width: 767px) {
  .site-footer__description {
    font-size: var(--text-xs);
  }
}

.site-footer__copyright,
.site-footer__terms {
  color: color-mix(in oklab, var(--color-text-muted) 50%, transparent);
  font-size: var(--text-xs);
}
.site-footer__terms {
  display: flex;
  gap: var(--space-2);
}
/* ==========================================================================
   ARTISTS PAGE
   ========================================================================== */

.artists-hero {
  position: relative;
}

.artists-hero__image {
  width: 100%;
  height: 40vh;
  object-fit: cover;
  filter: brightness(0.9);
}

.artists-hero__caption {
  position: absolute;
  bottom: var(--space-4);
  right: var(--space-4);
  background-color: var(--color-background);
  color: var(--color-white);
  font-size: var(--text-xs);
  padding: var(--space-1) var(--space-3);
  opacity: 0.5;
}

.artists-hero__image--fallback {
  background-color: var(--color-background);
}

.section__header {
  margin-top: var(--space-64);
}
.page-hero + .page-section .section__header {
  margin-top: var(--space-16);
}
.artists-section {
  padding-inline: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-20);
}

@media (min-width: 768px) {
  .artists-section {
    padding-inline: var(--space-12);
    margin-top: var(--space-12);
  }
}

/* Reusable section header */
.section__header {
  display: grid;
  gap: var(--space-4);
  margin-bottom: var(--space-12);
}

@media (min-width: 768px) {
  .section__header {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }
}

.section__title {
  font-size: clamp(2.5rem, 5vw, 10rem);
  line-height: var(--leading-none);
  font-weight: var(--font-weight-semibold);
  letter-spacing: var(--tracking-tight);
}

.section__subheader {
  font-size: 1.75rem;
  color: var(--color-text-muted);
  line-height: 1.2;
}

.artists-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--space-4);
}

/* Mobile: all cards are 4:3, single column, no spanning */
.artists-grid .artist-card {
  aspect-ratio: 4 / 3;
}

.artists-grid .artist-card--featured,
.artists-grid .artist-card--wide {
  grid-column: span 1;
  grid-row: span 1;
}

/* Tablet and up: enable grid spanning and fixed row heights */
@media (min-width: 1200px) {
  .artists-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: 300px;
  }

  .artists-grid .artist-card {
    aspect-ratio: auto;
  }

  .artists-grid .artist-card--featured,
  .artists-grid .artist-card--wide {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (min-width: 1500px) {
  .artists-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1800px) {
  .artists-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

/* ==========================================================================
   CTA CARD
   ========================================================================== */

.cta-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  width: 100%;
  height: 100%;
  background-color: color-mix(in oklab, var(--color-accent) 10%, transparent);
  padding: var(--space-6);
  color: var(--color-white);
}

.cta-card__title {
  font-size: var(--text-4xl);
}

.cta-card__text {
  font-size: var(--text-base);
  color: var(--color-accent);
  text-align: center;
}

/* ==========================================================================
   GENERIC PAGE
   ========================================================================== */

.page-section {
  padding-inline: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-20);
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .page-section {
    padding-inline: var(--space-12);
    margin-top: var(--space-12);
  }
}

.page-content {
  font-size: var(--text-lg);
  line-height: var(--leading-relaxed);
  color: var(--color-text-muted);
}

.page-content h2,
.page-content h3,
.page-content h4 {
  color: var(--color-text);
  margin-top: var(--space-8);
  margin-bottom: var(--space-4);
}
.page-id-32 .page-content h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.page-content p {
  margin-bottom: var(--space-4);
}

.page-content a {
  color: var(--color-accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover {
  color: var(--color-white);
}

.page-content ul,
.page-content ol {
  margin-bottom: var(--space-4);
  padding-left: var(--space-6);
}

.page-content li {
  margin-bottom: var(--space-2);
}

/* ==========================================================================
   FAQ PAGE
   ========================================================================== */

.faq-section {
  padding-inline: var(--space-4);
  margin-top: var(--space-6);
  margin-bottom: var(--space-20);
  max-width: 900px;
  margin-inline: auto;
}

@media (min-width: 768px) {
  .faq-section {
    padding-inline: var(--space-12);
    margin-top: var(--space-12);
  }
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.faq-accordion__item {
  border: 1px solid color-mix(in oklab, var(--color-white) 15%, transparent);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition-fast) var(--ease-default);
}

.faq-accordion__item:hover {
  border-color: color-mix(in oklab, var(--color-white) 25%, transparent);
}

.faq-accordion__item[open] {
  border-color: var(--color-accent);
}

.faq-accordion__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  font-size: var(--text-lg);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  list-style: none;
  transition: background-color var(--transition-fast) var(--ease-default);
}

.faq-accordion__question::-webkit-details-marker {
  display: none;
}

.faq-accordion__question:hover {
  background-color: color-mix(in oklab, var(--color-white) 5%, transparent);
}

.faq-accordion__icon {
  width: var(--space-6);
  height: var(--space-6);
  flex-shrink: 0;
  transition: transform var(--transition-normal) var(--ease-default);
}

.faq-accordion__item[open] .faq-accordion__icon {
  transform: rotate(180deg);
}

.faq-accordion__answer {
  padding: 0 var(--space-6) var(--space-6);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.faq-accordion__answer p {
  margin-bottom: var(--space-4);
}

.faq-accordion__answer p:last-child {
  margin-bottom: 0;
}

.faq-accordion__answer a {
  color: var(--color-accent);
  text-decoration: underline !important;
}

.faq-accordion__answer a:hover {
  color: var(--color-white);
}

/* ==========================================================================
   UTILITY CLASSES
   ========================================================================== */

.no-artists {
  color: var(--color-text-muted);
}

/* Visually hidden but accessible */
.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;
}
